From 67b1f9a08dd9ad3aa83adfc4b8a7862eecdca0bb Mon Sep 17 00:00:00 2001 From: Julien Malka Date: Sun, 21 Apr 2024 18:32:02 +0200 Subject: [PATCH 1/2] init survey on caliban --- .../hosts/caliban.nixos.org/default.nix | 1 + .../caliban.nixos.org/limesurvey-tmp.nix | 31 + non-critical-infra/modules/limesurvey.nix | 373 +++ .../secrets/limesurvey-encryption-key.caliban | 32 + .../limesurvey-encryption-nonce.caliban | 32 + terraform/db-dump.sql | 2748 +++++++++++++++++ 6 files changed, 3217 insertions(+) create mode 100644 non-critical-infra/hosts/caliban.nixos.org/limesurvey-tmp.nix create mode 100644 non-critical-infra/modules/limesurvey.nix create mode 100644 non-critical-infra/secrets/limesurvey-encryption-key.caliban create mode 100644 non-critical-infra/secrets/limesurvey-encryption-nonce.caliban create mode 100644 terraform/db-dump.sql diff --git a/non-critical-infra/hosts/caliban.nixos.org/default.nix b/non-critical-infra/hosts/caliban.nixos.org/default.nix index 8b26854..c5ea015 100644 --- a/non-critical-infra/hosts/caliban.nixos.org/default.nix +++ b/non-critical-infra/hosts/caliban.nixos.org/default.nix @@ -13,6 +13,7 @@ ../../modules/matrix-synapse.nix ../../modules/owncast.nix ../../modules/vaultwarden.nix + ./limesurvey-tmp.nix ]; # Bootloader. diff --git a/non-critical-infra/hosts/caliban.nixos.org/limesurvey-tmp.nix b/non-critical-infra/hosts/caliban.nixos.org/limesurvey-tmp.nix new file mode 100644 index 0000000..2fae3b4 --- /dev/null +++ b/non-critical-infra/hosts/caliban.nixos.org/limesurvey-tmp.nix @@ -0,0 +1,31 @@ +# the content of this file should be put in the modules folder once the actual module has been upstreamed +# PR: https://github.com/NixOS/nixpkgs/pull/325665/ +{ config, pkgs, ... }: +{ + disabledModules = [ "services/web-apps/limesurvey.nix" ]; + + imports = [ ../../modules/limesurvey.nix ]; + + services.limesurvey = { + enable = true; + encryptionKeyFile = config.sops.secrets.limesurvey-encryption-key.path; + encryptionNonceFile = config.sops.secrets.limesurvey-encryption-nonce.path; + virtualHost = { + serverName = "survey.nixos.org"; + enableACME = true; + forceSSL = true; + }; + }; + + sops.secrets.limesurvey-encryption-key = { + format = "binary"; + sopsFile = ../../secrets/limesurvey-encryption-key.caliban; + }; + + sops.secrets.limesurvey-encryption-nonce = { + format = "binary"; + sopsFile = ../../secrets/limesurvey-encryption-nonce.caliban; + }; + + +} diff --git a/non-critical-infra/modules/limesurvey.nix b/non-critical-infra/modules/limesurvey.nix new file mode 100644 index 0000000..a799406 --- /dev/null +++ b/non-critical-infra/modules/limesurvey.nix @@ -0,0 +1,373 @@ +{ config, lib, pkgs, inputs, ... }: + +let + + inherit (lib) mkDefault mkEnableOption mkForce mkIf mkMerge mkOption mkPackageOption; + inherit (lib) literalExpression mapAttrs optional optionalString types recursiveUpdate; + + cfg = config.services.limesurvey; + fpm = config.services.phpfpm.pools.limesurvey; + + user = "limesurvey"; + group = config.services.nginx.group; + stateDir = "/var/lib/limesurvey"; + + configType = with types; oneOf [ (attrsOf configType) str int bool ] // { + description = "limesurvey config type (str, int, bool or attribute set thereof)"; + }; + + limesurveyConfig = pkgs.writeText "config.php" '' + [ + 'encryptionnonce' => \trim(\file_get_contents(\getenv('CREDENTIALS_DIRECTORY') . DIRECTORY_SEPARATOR . 'encryption_nonce')), + 'encryptionsecretboxkey' => \trim(\file_get_contents(\getenv('CREDENTIALS_DIRECTORY') . DIRECTORY_SEPARATOR . 'encryption_key')), + ] + ] + ); + ?> + ''; + + mysqlLocal = cfg.database.createLocally && cfg.database.type == "mysql"; + pgsqlLocal = cfg.database.createLocally && cfg.database.type == "pgsql"; + +in +{ + # interface + + options.services.limesurvey = { + enable = mkEnableOption "Limesurvey web application"; + + package = mkPackageOption pkgs "limesurvey" { }; + + encryptionKey = mkOption { + type = types.nullOr types.str; + default = null; + visible = false; + description = '' + This is a 32-byte key used to encrypt variables in the database. + You _must_ change this from the default value. + ''; + }; + + encryptionNonce = mkOption { + type = types.nullOr types.str; + default = null; + visible = false; + description = '' + This is a 24-byte nonce used to encrypt variables in the database. + You _must_ change this from the default value. + ''; + }; + + encryptionKeyFile = mkOption { + type = types.nullOr types.path; + default = null; + description = '' + 32-byte key used to encrypt variables in the database. + + Note: It should be string not a store path in order to prevent the password from being world readable + ''; + }; + + encryptionNonceFile = mkOption { + type = types.nullOr types.path; + default = null; + description = '' + 24-byte used to encrypt variables in the database. + + Note: It should be string not a store path in order to prevent the password from being world readable + ''; + }; + + database = { + type = mkOption { + type = types.enum [ "mysql" "pgsql" "odbc" "mssql" ]; + example = "pgsql"; + default = "mysql"; + description = "Database engine to use."; + }; + + dbEngine = mkOption { + type = types.enum [ "MyISAM" "InnoDB" ]; + default = "InnoDB"; + description = "Database storage engine to use."; + }; + + host = mkOption { + type = types.str; + default = "localhost"; + description = "Database host address."; + }; + + port = mkOption { + type = types.port; + default = if cfg.database.type == "pgsql" then 5442 else 3306; + defaultText = literalExpression "3306"; + description = "Database host port."; + }; + + name = mkOption { + type = types.str; + default = "limesurvey"; + description = "Database name."; + }; + + user = mkOption { + type = types.str; + default = "limesurvey"; + description = "Database user."; + }; + + passwordFile = mkOption { + type = types.nullOr types.path; + default = null; + example = "/run/keys/limesurvey-dbpassword"; + description = '' + A file containing the password corresponding to + {option}`database.user`. + ''; + }; + + socket = mkOption { + type = types.nullOr types.path; + default = + if mysqlLocal then "/run/mysqld/mysqld.sock" + else if pgsqlLocal then "/run/postgresql" + else null + ; + defaultText = literalExpression "/run/mysqld/mysqld.sock"; + description = "Path to the unix socket file to use for authentication."; + }; + + createLocally = mkOption { + type = types.bool; + default = cfg.database.type == "mysql"; + defaultText = literalExpression "true"; + description = '' + Create the database and database user locally. + This currently only applies if database type "mysql" is selected. + ''; + }; + }; + + virtualHost = mkOption { + type = types.submodule ( + recursiveUpdate + (import "${inputs.nixpkgs}/nixos/modules/services/web-servers/nginx/vhost-options.nix" { inherit config lib; }) + { } + ); + example = literalExpression '' + { + serverName = "survey.example.org"; + forceSSL = true; + enableACME = true; + } + ''; + description = '' + Nginx configuration can be done by adapting `services.nginx.virtualHosts.`. + See [](#opt-services.nginx.virtualHosts) for further information. + ''; + }; + + poolConfig = mkOption { + type = with types; attrsOf (oneOf [ str int bool ]); + default = { + "pm" = "dynamic"; + "pm.max_children" = 32; + "pm.start_servers" = 2; + "pm.min_spare_servers" = 2; + "pm.max_spare_servers" = 4; + "pm.max_requests" = 500; + }; + description = '' + Options for the LimeSurvey PHP pool. See the documentation on `php-fpm.conf` + for details on configuration directives. + ''; + }; + + config = mkOption { + type = configType; + default = { }; + description = '' + LimeSurvey configuration. Refer to + + for details on supported values. + ''; + }; + }; + + # implementation + + config = mkIf cfg.enable { + + assertions = [ + { + assertion = cfg.database.createLocally -> cfg.database.type == "mysql"; + message = "services.limesurvey.createLocally is currently only supported for database type 'mysql'"; + } + { + assertion = cfg.database.createLocally -> cfg.database.user == user; + message = "services.limesurvey.database.user must be set to ${user} if services.limesurvey.database.createLocally is set true"; + } + { + assertion = cfg.database.createLocally -> cfg.database.socket != null; + message = "services.limesurvey.database.socket must be set if services.limesurvey.database.createLocally is set to true"; + } + { + assertion = cfg.database.createLocally -> cfg.database.passwordFile == null; + message = "a password cannot be specified if services.limesurvey.database.createLocally is set to true"; + } + { + assertion = cfg.encryptionKey != null || cfg.encryptionKeyFile != null; + message = '' + You must set `services.limesurvey.encryptionKeyFile` to a file containing a 32-character uppercase hex string. + + If this message appears when updating your system, please turn off encryption + in the LimeSurvey interface and create backups before filling the key. + ''; + } + { + assertion = cfg.encryptionNonce != null || cfg.encryptionNonceFile != null; + message = '' + You must set `services.limesurvey.encryptionNonceFile` to a file containing a 24-character uppercase hex string. + + If this message appears when updating your system, please turn off encryption + in the LimeSurvey interface and create backups before filling the nonce. + ''; + } + ]; + + services.limesurvey.config = mapAttrs (name: mkDefault) { + runtimePath = "${stateDir}/tmp/runtime"; + components = { + db = { + connectionString = "${cfg.database.type}:dbname=${cfg.database.name};host=${if pgsqlLocal then cfg.database.socket else cfg.database.host};port=${toString cfg.database.port}" + + optionalString mysqlLocal ";socket=${cfg.database.socket}"; + username = cfg.database.user; + password = mkIf (cfg.database.passwordFile != null) "file_get_contents(\"${toString cfg.database.passwordFile}\");"; + tablePrefix = "limesurvey_"; + }; + assetManager.basePath = "${stateDir}/tmp/assets"; + urlManager = { + urlFormat = "path"; + showScriptName = false; + }; + }; + config = { + tempdir = "${stateDir}/tmp"; + uploaddir = "${stateDir}/upload"; + userquestionthemerootdir = "${stateDir}/upload/themes/question"; + force_ssl = mkIf (cfg.virtualHost.addSSL || cfg.virtualHost.forceSSL || cfg.virtualHost.onlySSL) "on"; + config.defaultlang = "en"; + }; + }; + + services.mysql = mkIf mysqlLocal { + enable = true; + package = mkDefault pkgs.mariadb; + ensureDatabases = [ cfg.database.name ]; + ensureUsers = [ + { + name = cfg.database.user; + ensurePermissions = { + "${cfg.database.name}.*" = "SELECT, CREATE, INSERT, UPDATE, DELETE, ALTER, DROP, INDEX"; + }; + } + ]; + }; + + services.phpfpm.pools.limesurvey = { + inherit user group; + phpPackage = pkgs.php81; + phpEnv.DBENGINE = "${cfg.database.dbEngine}"; + phpEnv.LIMESURVEY_CONFIG = "${limesurveyConfig}"; + # App code cannot access credentials directly since the service starts + # with the root user so we copy the credentials to a place accessible to Limesurvey + phpEnv.CREDENTIALS_DIRECTORY = "${stateDir}/credentials"; + settings = { + "listen.owner" = config.services.nginx.user; + "listen.group" = config.services.nginx.group; + } // cfg.poolConfig; + }; + systemd.services.phpfpm-limesurvey.serviceConfig = { + ExecStartPre = pkgs.writeShellScript "limesurvey-phpfpm-exec-pre" '' + cp -f "''${CREDENTIALS_DIRECTORY}"/encryption_key "${stateDir}/credentials/encryption_key" + chown ${user}:${group} "${stateDir}/credentials/encryption_key" + cp -f "''${CREDENTIALS_DIRECTORY}"/encryption_nonce "${stateDir}/credentials/encryption_nonce" + chown ${user}:${group} "${stateDir}/credentials/encryption_nonce" + ''; + LoadCredential = [ + "encryption_key:${if cfg.encryptionKeyFile != null then cfg.encryptionKeyFile else pkgs.writeText "key" cfg.encryptionKey}" + "encryption_nonce:${if cfg.encryptionNonceFile != null then cfg.encryptionNonceFile else pkgs.writeText "nonce" cfg.encryptionKey}" + ]; + }; + + + services.nginx = { + enable = true; + virtualHosts.${cfg.virtualHost.serverName} = lib.mkMerge [ + cfg.virtualHost + { + root = lib.mkForce "${cfg.package}/share/limesurvey"; + locations = { + "/" = { + index = "index.php"; + tryFiles = "$uri /index.php?$args"; + }; + + "~ \.php$".extraConfig = '' + fastcgi_pass unix:${config.services.phpfpm.pools."limesurvey".socket}; + ''; + "/tmp".root = "/var/lib/limesurvey"; + "/upload/".root = "/var/lib/limesurvey"; + + }; + } + ]; + }; + + systemd.tmpfiles.rules = [ + "d ${stateDir} 0750 ${user} ${group} - -" + "d ${stateDir}/tmp 0750 ${user} ${group} - -" + "d ${stateDir}/tmp/assets 0750 ${user} ${group} - -" + "d ${stateDir}/tmp/runtime 0750 ${user} ${group} - -" + "d ${stateDir}/tmp/upload 0750 ${user} ${group} - -" + "d ${stateDir}/credentials 0700 ${user} ${group} - -" + "C ${stateDir}/upload 0750 ${user} ${group} - ${cfg.package}/share/limesurvey/upload" + ]; + + systemd.services.limesurvey-init = { + wantedBy = [ "multi-user.target" ]; + before = [ "phpfpm-limesurvey.service" ]; + after = optional mysqlLocal "mysql.service" ++ optional pgsqlLocal "postgresql.service"; + environment.DBENGINE = "${cfg.database.dbEngine}"; + environment.LIMESURVEY_CONFIG = limesurveyConfig; + script = '' + # update or install the database as required + ${pkgs.php81}/bin/php ${cfg.package}/share/limesurvey/application/commands/console.php updatedb || \ + ${pkgs.php81}/bin/php ${cfg.package}/share/limesurvey/application/commands/console.php install admin password admin admin@example.com verbose + ''; + serviceConfig = { + User = user; + Group = group; + Type = "oneshot"; + LoadCredential = [ + "encryption_key:${if cfg.encryptionKeyFile != null then cfg.encryptionKeyFile else pkgs.writeText "key" cfg.encryptionKey}" + "encryption_nonce:${if cfg.encryptionNonceFile != null then cfg.encryptionNonceFile else pkgs.writeText "nonce" cfg.encryptionKey}" + ]; + }; + }; + + systemd.services.nginx.after = optional mysqlLocal "mysql.service" ++ optional pgsqlLocal "postgresql.service"; + + users.users.${user} = { + group = group; + isSystemUser = true; + }; + + }; +} + diff --git a/non-critical-infra/secrets/limesurvey-encryption-key.caliban b/non-critical-infra/secrets/limesurvey-encryption-key.caliban new file mode 100644 index 0000000..e3c5de4 --- /dev/null +++ b/non-critical-infra/secrets/limesurvey-encryption-key.caliban @@ -0,0 +1,32 @@ +{ + "data": "ENC[AES256_GCM,data:dV2y0TNxJ4prwwmKI9U1V+gVuO4AInOW4rRNl55jg4X+FyI81K6xGWFnmTwgvPornrGslw7KXnX03LNsA8HAyWE=,iv:arEPrkNSzi1lUUc0Lutfa1pDFrEKe6GQdhm2bHsZ8AE=,tag:n2Q9TQS8/b7Lbun4qK3pjA==,type:str]", + "sops": { + "kms": null, + "gcp_kms": null, + "azure_kv": null, + "hc_vault": null, + "age": [ + { + "recipient": "age1sv307kkrxwgjah8pjpap5kzl4j2r6fqr3vg234n7m32chlchs9lsey7nlq", + "enc": "-----BEGIN AGE ENCRYPTED FILE-----\nYWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IFgyNTUxOSB0WmxKM2wvS29WMitIUGdP\ncFNGU1l4QllmNXM4d01GV1dOQ09ZY0pIaUZNCkExV1NKMDRtN2dlZUx3Q3Vab013\ncTB2VHBUci8vckNFbzV5RWl6K1lHNWsKLS0tIHZQMlRjczBtWDB1N3cvSkZWeS9m\nczI4aEdRQzJlcGpEelBhWTJYQnVLL2cK852vurEJeIV31PthknDZT9FAOf7mnu4n\nW596ge/xVlNVcXqQaoLZzt/Ndm8ZaRg6xz/CztOZZiQ8MzHYqSILrA==\n-----END AGE ENCRYPTED FILE-----\n" + }, + { + "recipient": "age1j3mkgedmeru63vwww6m44zfw09tg8yw6xdzstaq7ejfkvgcau40qwakm8x", + "enc": "-----BEGIN AGE ENCRYPTED FILE-----\nYWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IFgyNTUxOSBzd05xa0hjVXRPTEtIbU9F\nbXRWTFBlUkxYNW1lN0t0a1ppN3BvUTFwVTBzCmdRRVN2K00xOVJ1aDZobG1NUC9X\nTVluZVJmaXg0SnNUaUJUV0dzQmx3RU0KLS0tIFBnVlcrOEd5SnczSlFXYkxTR21C\nSFpQVkhqdUt1ZW0vNkduYTBBVHpQN2MKUVpKaUE0+ZYmT0TKdbvsKEWn/KnJhX6I\nJcigMBkg+l6u83s64Uz7sBMrh48Ab4rdfnMv0G3bTjEBqGAG2SFHNw==\n-----END AGE ENCRYPTED FILE-----\n" + }, + { + "recipient": "age1qlwzeg37fwwn2l6fm3quvkn787nn0m89xrjtrhgf9uedtfv2kqlqnec976", + "enc": "-----BEGIN AGE ENCRYPTED FILE-----\nYWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IFgyNTUxOSBJL1BGMWZZakRIT2lkb2hT\nc3dBL2VTQ0xWcEVCWXBUaU1LdlRQUHg3ZWg4CkhaS2YvMzRiRWVwd3RwYTBFRnJT\nbVNaR0lNRG0zWjlWMUprQ2x2cU1nVU0KLS0tIG52MmRkQkFVYTdnQ1BTVG1TaTU1\naEN5YWw1QktoWnc4YlRvWGh4T1BMbU0KFKc/frIPVeTELKXawQz0P8PhtW67NF1z\n5+d2XKxL/VQIUNGx4551Ofx+V5FqJejjvtkZixdzWGh+Izez/nqhUQ==\n-----END AGE ENCRYPTED FILE-----\n" + }, + { + "recipient": "age1jrh8yyq3swjru09s75s4mspu0mphh7h6z54z946raa9wx3pcdegq0x8t4h", + "enc": "-----BEGIN AGE ENCRYPTED FILE-----\nYWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IFgyNTUxOSBjS1JSbHJaRU5YQzVZLzJS\ndGJ3R1ZUamRtZUxVMjV5VERLeGN5ZW9paHg0ClJMZUhTaytPWkpQdUZ4WUdiMjZT\nc0F5UVJqb01IRlY0aHJwWCt1VG52N1kKLS0tIEVPRmc1ZlVrUmdCb0I4dllnNzND\nRHpqbXNYU1Qza0NweWJnMEJVRGhqSzAKuqXPT4CK8WEQ+vVrH6qpvqZsMHbuNf+b\n6ra4xetfIo+gczDBlXpYi5d0W+UWFjfi32h6y9daVP8MabBb2R1tHw==\n-----END AGE ENCRYPTED FILE-----\n" + } + ], + "lastmodified": "2024-07-15T11:56:59Z", + "mac": "ENC[AES256_GCM,data:k8dCiufWeCKrgj+fTGRphr832bGlXza03F4PgaWkfI7IAZQ97iWRD6wO6fko9GKlKBeEy7e/n6Hm8k4F74l9giKTdXq4lhQ3GqdV7h9JzJATxnKs9JYtjd44ihNIiLwBofHDOGq1BEIY/BTn2Z6EqGlwyaK/2EJIXXm56y7UpoI=,iv:zt0itYzXcTVlfGr8l4kL/fBeTjE7r9+fdv5BiBx3lf0=,tag:9dhatpgwMLmTz5XNu9uaag==,type:str]", + "pgp": null, + "unencrypted_suffix": "_unencrypted", + "version": "3.8.1" + } +} \ No newline at end of file diff --git a/non-critical-infra/secrets/limesurvey-encryption-nonce.caliban b/non-critical-infra/secrets/limesurvey-encryption-nonce.caliban new file mode 100644 index 0000000..f439022 --- /dev/null +++ b/non-critical-infra/secrets/limesurvey-encryption-nonce.caliban @@ -0,0 +1,32 @@ +{ + "data": "ENC[AES256_GCM,data:oimvox9BzWi6Ho5F8itxFWKEr2xfL2gKTlQUpvNJmbhm3qo8YN3FFmoowJVFwMYlcg==,iv:LLSZ9m/aMOQkqd16K0p2xjWBL/EKyn8RE7VZmHAhkcU=,tag:wFOZfp5NQUNpP8NmRWGRxg==,type:str]", + "sops": { + "kms": null, + "gcp_kms": null, + "azure_kv": null, + "hc_vault": null, + "age": [ + { + "recipient": "age1sv307kkrxwgjah8pjpap5kzl4j2r6fqr3vg234n7m32chlchs9lsey7nlq", + "enc": "-----BEGIN AGE ENCRYPTED FILE-----\nYWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IFgyNTUxOSA4V1daYkxVWlBmcEN0V25r\nVzVDb3c1UnB0RlkxQ0owRFF4MWgrdGN2VmxBCjNZMTkvV0xkQ1pLaHdyOXl5KzM2\nQ3RYY2Y0OXY2aGU5ckxCb3pNNzF6UUUKLS0tIEcvUDNSTm9sbDVwQkVyemIzaFd1\ncVhGOE9ET1BqcHdKMk5QdzFVOTdnblUKv6HaoDUXBSK8kGXMdD5jG4Z5/0ata06d\nF3peMh6Eskfo+x6iS+goqsaZQS+QuCTkecEUqvgtwa586H4BjzBHaw==\n-----END AGE ENCRYPTED FILE-----\n" + }, + { + "recipient": "age1j3mkgedmeru63vwww6m44zfw09tg8yw6xdzstaq7ejfkvgcau40qwakm8x", + "enc": "-----BEGIN AGE ENCRYPTED FILE-----\nYWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IFgyNTUxOSBtdStmZWk4RG00WGtLdnRx\nQ1o3M0d0Mi9XNldoSkFsVTZoTU1MRmFhYlUwCk1GdnZTeHlsVVlaNDg4SGJ3Rk5B\ndnVOTVBWd1Z1dy94c3lyVlpub1Y3TkUKLS0tIElkWlRaSzVvWjhLR2VsRHVObm54\nSmhMZHdOVkpJNE5VdGdmdVIyMW5JWFkKmiNeh3bRixVDzl6UbsU/250RckJJA/Ki\nl7V3C2YnsndU4N/0nedy2Zsy9hjVWNonO3eDnNKzW1ayRYnmXShzjQ==\n-----END AGE ENCRYPTED FILE-----\n" + }, + { + "recipient": "age1qlwzeg37fwwn2l6fm3quvkn787nn0m89xrjtrhgf9uedtfv2kqlqnec976", + "enc": "-----BEGIN AGE ENCRYPTED FILE-----\nYWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IFgyNTUxOSBHbUtWbHg4U2NzL2NQUmdT\nUlR5RUdFWEZBWk1jdGpNa2ZYSGdoeXR0blZBCkF4SVQvQ0tTdFR6aHgzdWdKZmxC\nSkVGbS84dkExVyszSm1ocVdScVJjck0KLS0tIGRodm5sTjRsZ2lmRmhzV05OekFH\nQ2dYNThzUU1kU3ZBTDV0ZmU5T1RpUzgK+Y+Ka+t/Zh3lO6xCvctZXNKuW+NDKnBL\nOTzZ6ZpAjY2X6JcJqVQJOU/3NXnTvOiTWKrIRao316O1mysYe0rbWw==\n-----END AGE ENCRYPTED FILE-----\n" + }, + { + "recipient": "age1jrh8yyq3swjru09s75s4mspu0mphh7h6z54z946raa9wx3pcdegq0x8t4h", + "enc": "-----BEGIN AGE ENCRYPTED FILE-----\nYWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IFgyNTUxOSAvc2FXMkN0SGRBZUFwaW1E\nL1p1NmV2cjhmN3BTMHptUURLRHN6TFV1Q0VNCmcyNGo3bXFKblFzc2hROFVmNE5a\nR0pFenY4YXljZkVNUEhvYisyUXVuMDgKLS0tIHZVK2V2T24rU1RRby9SL1VpT3du\nUmxObExlVWdMNFNvOElVU3BkSFlNQlEKp9hrLKiu72qRniD4i7oU+zOujUY5CiN4\nyajcqJmq31LOVOHHv2/kcozS4smqlidGU/PwqK03GhSWkBXoG+E81g==\n-----END AGE ENCRYPTED FILE-----\n" + } + ], + "lastmodified": "2024-07-15T11:56:30Z", + "mac": "ENC[AES256_GCM,data:j+Wql6qwEKcZOgOWAYs5MhtbsvUNzjXjst7ge5hxdvqS13iFTfKsiUSpmG/K1Nrxz4swCI9N4VVov9Brg7LuDIP4v4b5r5BEhGDMkSvJKarSfVddEkwcw/HYYpILQUKc+cogLZ2CqctiMB4ViD0+XX1Nl/1+IO5JvMLSjHkqPMo=,iv:7WQ6kw10TrgJdZjaTFHnzzFRzHhS5i1O97vw3md4fKI=,tag:iq5Wx4SYpoDXWe7Wq3M9ww==,type:str]", + "pgp": null, + "unencrypted_suffix": "_unencrypted", + "version": "3.8.1" + } +} \ No newline at end of file diff --git a/terraform/db-dump.sql b/terraform/db-dump.sql new file mode 100644 index 0000000..e52bd67 --- /dev/null +++ b/terraform/db-dump.sql @@ -0,0 +1,2748 @@ +-- MariaDB dump 10.19 Distrib 10.6.5-MariaDB, for Linux (x86_64) +-- +-- Host: localhost Database: limesurvey +-- ------------------------------------------------------ +-- Server version 10.6.5-MariaDB + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8mb4 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `limesurvey_answers` +-- + +DROP TABLE IF EXISTS `limesurvey_answers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_answers` ( + `qid` int(11) NOT NULL, + `code` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL, + `answer` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, + `sortorder` int(11) NOT NULL, + `assessment_value` int(11) NOT NULL DEFAULT 0, + `language` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', + `scale_id` int(11) NOT NULL DEFAULT 0, + PRIMARY KEY (`qid`,`code`,`language`,`scale_id`), + KEY `limesurvey_answers_idx2` (`sortorder`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_answers` +-- + +LOCK TABLES `limesurvey_answers` WRITE; +/*!40000 ALTER TABLE `limesurvey_answers` DISABLE KEYS */; +INSERT INTO `limesurvey_answers` VALUES (846,'A4','Could not',4,0,'en',0),(824,'A3','Partially',3,0,'en',0),(824,'A2','No',2,0,'en',0),(824,'A1','Yes',1,0,'en',0),(813,'A3','Both',3,0,'en',0),(813,'A2','Private',2,0,'en',0),(813,'A1','Professional',1,0,'en',0),(812,'A7','7 (or more)',7,0,'en',0),(812,'A1','1',1,0,'en',0),(812,'A2','2',2,0,'en',0),(812,'A3','3',3,0,'en',0),(812,'A4','4',4,0,'en',0),(812,'A5','5',5,0,'en',0),(812,'A6','6',6,0,'en',0),(846,'A3','Do not prefer',3,0,'en',0),(810,'A7','>16 hours',7,0,'en',0),(810,'A6','<16 hours',6,0,'en',0),(810,'A1','<1 hour',1,0,'en',0),(810,'A2','<3 hours',2,0,'en',0),(810,'A3','<6 hours',3,0,'en',0),(810,'A4','<9 hours',4,0,'en',0),(810,'A5','<12 hours',5,0,'en',0),(664,'A25','Other',25,0,'en',0),(664,'A26','Nim',24,0,'en',0),(799,'A25','Other',25,0,'en',0),(799,'A26','Nim',24,0,'en',0),(799,'A24','Elixir',23,0,'en',0),(664,'A20','Clojure',19,0,'en',0),(664,'A21','R',20,0,'en',0),(799,'A8','Swift',8,0,'en',0),(799,'A9','Go',9,0,'en',0),(799,'A10','PHP',10,0,'en',0),(799,'A11','Scala',11,0,'en',0),(799,'A12','F#',12,0,'en',0),(764,'A7','I don\'t use channels',7,0,'en',0),(664,'A2','Python',2,0,'en',0),(664,'A1','JavaScript (TypeScript, ...)',1,0,'en',0),(664,'A24','Elixir',23,0,'en',0),(655,'A11','Other',11,0,'en',0),(658,'A8','Oceania',8,0,'en',0),(800,'A1','I just use software with Nix ',1,0,'en',0),(800,'A2','I develop software with Nix',2,0,'en',0),(800,'A3','I contribute packages or patches to Nixpkgs',3,0,'en',0),(800,'A4','I actively maintain packages in Nixpkgs',4,0,'en',0),(800,'A5','I have merge access to Nixpkgs',5,0,'en',0),(800,'A6','I develop a tool based on or integrating with Nix',6,0,'en',0),(799,'A23','Erlang',22,0,'en',0),(799,'A13','Haskell',13,0,'en',0),(799,'A7','Ruby',7,0,'en',0),(799,'A6','C#',6,0,'en',0),(799,'A5','Java',5,0,'en',0),(799,'A4','C++',4,0,'en',0),(799,'A3','C',3,0,'en',0),(799,'A2','Python',2,0,'en',0),(799,'A1','JavaScript (TypeScript, ...)',1,0,'en',0),(799,'A22','Zig',21,0,'en',0),(799,'A21','R',20,0,'en',0),(799,'A20','Clojure',19,0,'en',0),(799,'A19','Kotlin',18,0,'en',0),(799,'A18','Perl',17,0,'en',0),(799,'A17','Lua',16,0,'en',0),(799,'A15','Rust',15,0,'en',0),(799,'A14','OCaml',14,0,'en',0),(664,'A6','C#',6,0,'en',0),(664,'A7','Ruby',7,0,'en',0),(664,'A8','Swift',8,0,'en',0),(664,'A9','Go',9,0,'en',0),(664,'A10','PHP',10,0,'en',0),(664,'A11','Scala',11,0,'en',0),(664,'A12','F#',12,0,'en',0),(664,'A13','Haskell',13,0,'en',0),(664,'A14','OCaml',14,0,'en',0),(664,'A15','Rust',15,0,'en',0),(664,'A17','Lua',16,0,'en',0),(664,'A18','Perl',17,0,'en',0),(664,'A19','Kotlin',18,0,'en',0),(664,'A3','C',3,0,'en',0),(664,'A4','C++',4,0,'en',0),(656,'A12','Stabilise content-addressed derivations',12,0,'en',0),(656,'A13','Improvements to the Nix language',13,0,'en',0),(656,'A14','Better learning resources',14,0,'en',0),(656,'A15','Other',15,0,'en',0),(664,'A23','Erlang',22,0,'en',0),(664,'A22','Zig',21,0,'en',0),(664,'A5','Java',5,0,'en',0),(656,'A1','IPFS support',1,0,'en',0),(656,'A2','Granular incremental builds',2,0,'en',0),(656,'A3','Better programming language support for packaging',3,0,'en',0),(656,'A4','Better error messages',4,0,'en',0),(656,'A5','Better documentation',5,0,'en',0),(656,'A6','First class support for secrets',6,0,'en',0),(656,'A7','First class support for permissions (ACLs, ...)',7,0,'en',0),(656,'A8','Stabilise Flakes',8,0,'en',0),(656,'A9','Stabilise new command line interface',9,0,'en',0),(656,'A10','Windows support',10,0,'en',0),(656,'A11','Dynamic build graphs (RFC 92, recursive Nix, ...)',11,0,'en',0),(655,'A10','Package configurability',10,0,'en',0),(655,'A9','Binary cache',9,0,'en',0),(655,'A5','Source distribution',8,0,'en',0),(655,'A8','Building container images',7,0,'en',0),(655,'A7','Atomic deployment and rollback',6,0,'en',0),(655,'A6','Cross-platform support',5,0,'en',0),(655,'A4','Distributed builds',4,0,'en',0),(655,'A3','Ad hoc environments (nix-shell, nix develop)',3,0,'en',0),(655,'A1','Package availability (Nixpkgs)',1,0,'en',0),(655,'A2','Declarative environments (shell.nix, flake.nix)',2,0,'en',0),(764,'A6','nixpkgs-(release)-darwin',6,0,'en',0),(764,'A5','nixos-(release)-small',5,0,'en',0),(523,'A1','Less than 6 months',1,0,'en',0),(523,'A2','6 months - 1 year',2,0,'en',0),(523,'A3','1 year - 3 years',3,0,'en',0),(523,'A4','3-6 years',4,0,'en',0),(523,'A5','6-10 years',5,0,'en',0),(523,'A6','10+ years',6,0,'en',0),(518,'A4','Occasionally',4,0,'en',0),(518,'A3','Monthly',3,0,'en',0),(518,'A2','Weekly',2,0,'en',0),(518,'A1','Daily',1,0,'en',0),(520,'A1','Less than 6 months',1,0,'en',0),(520,'A2','6 months - 1 year',2,0,'en',0),(520,'A3','1 year - 3 years',3,0,'en',0),(521,'A4','Occasionally',4,0,'en',0),(521,'A3','Monthly',3,0,'en',0),(521,'A2','Weekly',2,0,'en',0),(521,'A1','Daily',1,0,'en',0),(504,'fem','Female',1,0,'en',0),(504,'male','Male',2,0,'en',0),(528,'A1','East Asia and Pacific',1,0,'en',0),(503,'A4','35-44 years',4,0,'en',0),(503,'A3','25-34 years',3,0,'en',0),(503,'A2','15-24 years',2,0,'en',0),(503,'A6','55-64 years',6,0,'en',0),(503,'A5','45-54 years',5,0,'en',0),(528,'A2','Europe and Central Asia',2,0,'en',0),(503,'A7','65+ years',7,0,'en',0),(528,'A7','Sub-Saharan Africa',7,0,'en',0),(528,'A6','South Asia',6,0,'en',0),(528,'A5','North America',5,0,'en',0),(528,'A4','Middle East and North Africa',4,0,'en',0),(528,'A3','Latin America and the Caribbean',3,0,'en',0),(503,'A1','5-14 years',1,0,'en',0),(520,'A4','3-6 years',4,0,'en',0),(520,'A5','6-10 years',5,0,'en',0),(520,'A6','10+ years',6,0,'en',0),(1147,'A21','Source code (C++ Nix)',21,0,'en',0),(1147,'A22','Discourse conversations',22,0,'en',0),(1147,'A23','Press information',23,0,'en',0),(1147,'A24','Reviews and testimonials',24,0,'en',0),(1147,'A25','Community updates',25,0,'en',0),(1147,'A26','Lore, jokes, memes',26,0,'en',0),(1147,'A27','Release notes',27,0,'en',0),(1147,'A28','Additional tools',28,0,'en',0),(1147,'A29','Job postings',29,0,'en',0),(1147,'A30','Paid support offers',30,0,'en',0),(1148,'A15','Others',15,0,'en',0),(1147,'A1','Package search (package names, program names)',1,0,'en',0),(1147,'A2','NixOS option search (option names, option documentation)',2,0,'en',0),(1147,'A3','NixOS configuration examples',3,0,'en',0),(1147,'A4','Package examples',4,0,'en',0),(1147,'A5','Package parameters',5,0,'en',0),(1147,'A6','Development environments',6,0,'en',0),(1147,'A7','nix.dev',7,0,'en',0),(1146,'A12','Searching (e.g. on Google)',12,0,'en',0),(1146,'A11','Academic Research (referenced in paper, conference talk)',11,0,'en',0),(1146,'A10','On a blog',10,0,'en',0),(1146,'A1','At work',1,0,'en',0),(883,'f2','Woman',2,0,'en',0),(1146,'A2','In my education (School/University/...)',2,0,'en',0),(1146,'A3','From a friend',3,0,'en',0),(1146,'A4','YouTube',4,0,'en',0),(1146,'A5','Reddit',5,0,'en',0),(1146,'A6','Hacker News',6,0,'en',0),(1146,'A7','Twitter/X',7,0,'en',0),(1146,'A8','LinkedIn',8,0,'en',0),(1146,'A9','Other social media',9,0,'en',0),(882,'A5','45-54 years old',5,0,'en',0),(907,'A11','Eastern Europe',11,0,'en',0),(907,'A12','Western Europe',12,0,'en',0),(907,'A13','Middle East',13,0,'en',0),(907,'A14','Northern Africa',14,0,'en',0),(907,'A15','Southern Africa',15,0,'en',0),(907,'A16','Prefer not to respond',16,0,'en',0),(883,'f4','Prefer not to respond',4,0,'en',0),(882,'A6','55-64 years old',6,0,'en',0),(882,'A7','65 years or older',7,0,'en',0),(882,'A8','Prefer not to respond',8,0,'en',0),(883,'f3','Non-binary/non-conforming',3,0,'en',0),(907,'A10','Southern Europe',10,0,'en',0),(883,'f1','Man',1,0,'en',0),(1145,'A2','NixOS',2,0,'en',0),(1142,'A2','No',2,0,'en',0),(1145,'A1','Nix',1,0,'en',0),(1142,'A1','Yes',1,0,'en',0),(1141,'A1','I have never used Nix',1,0,'en',0),(1141,'A2','Beginner',2,0,'en',0),(1141,'A3','Intermediate',3,0,'en',0),(1141,'A4','Advanced',4,0,'en',0),(1140,'A1','I don\'t use Nix',1,0,'en',0),(1140,'A2','Less than 1 year',2,0,'en',0),(1140,'A3','1 to 2 years',3,0,'en',0),(1140,'A4','2 to 3 years',4,0,'en',0),(1140,'A5','3 to 5 years',5,0,'en',0),(1140,'A6','5 to 10 years',6,0,'en',0),(1140,'A7','10 to 20 years',7,0,'en',0),(885,'A13','Cloud infrastructure engineer',13,0,'en',0),(885,'A14','Data scientist or machine learning specialist',14,0,'en',0),(885,'A15','Data or business analyst',15,0,'en',0),(885,'A16','System administrator',16,0,'en',0),(885,'A17','Database administrator',17,0,'en',0),(885,'A18','Security professional',18,0,'en',0),(885,'A19','Academic researcher',19,0,'en',0),(885,'A20','Research & development role',20,0,'en',0),(885,'A21','Scientist',21,0,'en',0),(885,'A22','Educator',22,0,'en',0),(885,'A23','Project manager',23,0,'en',0),(885,'A24','Engineering manager',24,0,'en',0),(885,'A25','Senior executive (C-suite, VP, etc.)',25,0,'en',0),(885,'A26','Product manager',26,0,'en',0),(885,'A27','Developer experience',27,0,'en',0),(885,'A28','Developer advocate',28,0,'en',0),(885,'A29','User experience',29,0,'en',0),(885,'A30','Designer',30,0,'en',0),(885,'A31','Marketing or sales professional',31,0,'en',0),(885,'A32','Student',32,0,'en',0),(885,'A1','Developer, full-stack',1,0,'en',0),(885,'A2','Developer, back-end',2,0,'en',0),(885,'A3','Developer, front-end',3,0,'en',0),(885,'A4','Developer, desktop or enterprise applications',4,0,'en',0),(885,'A5','Developer, mobile',5,0,'en',0),(885,'A6','Developer, embedded applications or devices',6,0,'en',0),(885,'A7','Developer, quality assurance or testing',7,0,'en',0),(885,'A8','Developer, game or graphics',8,0,'en',0),(885,'A9','Engineer, hardware',9,0,'en',0),(885,'A10','Engineer, data',10,0,'en',0),(885,'A11','Engineer, site reliability',11,0,'en',0),(885,'A12','DevOps specialist',12,0,'en',0),(884,'A1','I never programmed',1,0,'en',0),(884,'A2','Less than 1 year',2,0,'en',0),(884,'A3','1 to 4 years',3,0,'en',0),(884,'A4','5 to 9 years',4,0,'en',0),(884,'A5','10 to 24 years',5,0,'en',0),(884,'A6','25 to 49 years',6,0,'en',0),(884,'A7','More than 50 years',7,0,'en',0),(907,'A9','Northern Europe',9,0,'en',0),(882,'A4','35-44 years old',4,0,'en',0),(882,'A3','25-34 years old',3,0,'en',0),(882,'A1','0-18 years old',1,0,'en',0),(882,'A2','18-24 years old',2,0,'en',0),(907,'A1','North America',1,0,'en',0),(907,'A2','South America',2,0,'en',0),(907,'A3','Central America',3,0,'en',0),(907,'A4','Caribbean',4,0,'en',0),(907,'A5','Central & South Asia',5,0,'en',0),(907,'A6','Northeastern Asia',6,0,'en',0),(907,'A7','Southeastern Asia',7,0,'en',0),(907,'A8','Australia and Oceania',8,0,'en',0),(881,'A1','> 10 years',1,0,'en',0),(881,'A2','5 - 10 years',2,0,'en',0),(1161,'A6','Almost never',6,0,'en',0),(1161,'A5','Sometimes',5,0,'en',0),(1161,'A4','Half of the time',4,0,'en',0),(1161,'A1','Every time',1,0,'en',0),(1161,'A2','Almost every time',2,0,'en',0),(1161,'A3','Most of the time',3,0,'en',0),(1148,'A9','Twitter',9,0,'en',0),(1148,'A10','Stack Overflow',10,0,'en',0),(1148,'A11','Discord (unofficial)',11,0,'en',0),(1148,'A12','Reddit (unofficial)',12,0,'en',0),(1148,'A13','Wiki (nixos.wiki, unofficial)',13,0,'en',0),(1148,'A1','nix.dev',1,0,'en',0),(1148,'A2','Reference manuals (Nix/Nixpkgs/NixOS)',2,0,'en',0),(1148,'A3','NixOS Wiki (wiki.nixos.org, official)',3,0,'en',0),(1148,'A4','Discourse',4,0,'en',0),(1148,'A5','Matrix channels',5,0,'en',0),(1148,'A6','GitHub issues',6,0,'en',0),(1147,'A15','Command-line interface',15,0,'en',0),(1147,'A16','Nix standalone installer',16,0,'en',0),(1147,'A17','NixOS installer',17,0,'en',0),(1147,'A13','Function documentation',13,0,'en',0),(1147,'A14','Nix language functions',14,0,'en',0),(1148,'A7','Source code',7,0,'en',0),(1147,'A12','Troubleshooting tips',12,0,'en',0),(1147,'A11','Answers to questions',11,0,'en',0),(1147,'A10','Manuals',10,0,'en',0),(1147,'A9','How-to guides',9,0,'en',0),(1147,'A8','Tutorials',8,0,'en',0),(1148,'A14','Blog posts',14,0,'en',0),(1148,'A8','Mastodon',8,0,'en',0),(1147,'A18','Security notifications',18,0,'en',0),(1147,'A19','Source code (package)',19,0,'en',0),(1147,'A20','Source code (module)',20,0,'en',0),(881,'A3','4 - 5 years',3,0,'en',0),(881,'A4','3 - 4 years',4,0,'en',0),(881,'A5','2 - 3 years',5,0,'en',0),(881,'A6','1 - 2 years',6,0,'en',0),(881,'A7','< 1 year',7,0,'en',0),(881,'A8','Never',8,0,'en',0),(862,'A4','Never Used/Just Started',4,0,'en',0),(862,'A3','Beginner',3,0,'en',0),(862,'A2','Intermediate',2,0,'en',0),(862,'A1','Expert',1,0,'en',0),(861,'A2','No',2,0,'en',0),(861,'A1','Yes',1,0,'en',0),(860,'A2','No',2,0,'en',0),(860,'A1','Yes',1,0,'en',0),(859,'A2','No',2,0,'en',0),(859,'A1','Yes',1,0,'en',0),(867,'A3','Other',3,0,'en',0),(867,'A2','No',2,0,'en',0),(867,'A1','Yes',1,0,'en',0),(878,'A3','Not sure',3,0,'en',0),(878,'A1','Yes',1,0,'en',0),(878,'A2','No',2,0,'en',0),(846,'A1','Strongly prefer',1,0,'en',0),(846,'A2','Would travel here',2,0,'en',0),(827,'A8','Central Mexico',8,0,'en',0),(827,'A9','West Mexico',7,0,'en',0),(827,'A7','East Mexico',6,0,'en',0),(826,'A72','Yucatán Peninsula',72,0,'en',0),(826,'A71','Southern Highlands',71,0,'en',0),(826,'A70','Gulf Coastal Plain',70,0,'en',0),(826,'A69','Cordillera Neo-Volcánica',69,0,'en',0),(826,'A68','Sierra Madre Occidental',68,0,'en',0),(826,'A67','Sierra Madre Oriental',67,0,'en',0),(833,'A3','No',3,0,'en',0),(833,'A1','Yes',1,0,'en',0),(829,'A1','Less than 50 miles',1,0,'en',0),(829,'A2','51-100 miles',2,0,'en',0),(829,'A3','101-300 miles',3,0,'en',0),(829,'A4','301-500 miles',4,0,'en',0),(829,'A5','More than 500 miles',5,0,'en',0),(833,'A2','Maybe, tell me more',2,0,'en',0),(827,'A2','Eastern United States',1,0,'en',0),(827,'A3','Western United States',2,0,'en',0),(827,'A4','Central United States',3,0,'en',0),(827,'A5','Eastern Canada',4,0,'en',0),(827,'A6','Western Canada',5,0,'en',0),(826,'A10','Florida',9,0,'en',0),(826,'A11','Georgia',10,0,'en',0),(826,'A12','Hawaii',11,0,'en',0),(826,'A13','Idaho',12,0,'en',0),(826,'A14','Illinois',13,0,'en',0),(826,'A15','Indiana',14,0,'en',0),(826,'A16','Iowa',15,0,'en',0),(826,'A17','Kansas',16,0,'en',0),(826,'A18','Kentucky',17,0,'en',0),(826,'A19','Louisiana',18,0,'en',0),(826,'A20','Maine',19,0,'en',0),(826,'A21','Maryland',20,0,'en',0),(826,'A22','Massachusetts',21,0,'en',0),(826,'A23','Michigan',22,0,'en',0),(826,'A24','Minnesota',23,0,'en',0),(826,'A25','Mississippi',24,0,'en',0),(826,'A26','Missouri',25,0,'en',0),(826,'A27','Montana',26,0,'en',0),(826,'A28','Nebraska',27,0,'en',0),(826,'A29','Nevada',28,0,'en',0),(826,'A30','New Hampshire',29,0,'en',0),(826,'A31','New Jersey',30,0,'en',0),(826,'A32','New Mexico',31,0,'en',0),(826,'A33','New York',32,0,'en',0),(826,'A34','North Carolina',33,0,'en',0),(826,'A35','North Dakota',34,0,'en',0),(826,'A36','Ohio',35,0,'en',0),(826,'A37','Oklahoma',36,0,'en',0),(826,'A38','Oregon',37,0,'en',0),(826,'A39','Pennsylvania',38,0,'en',0),(826,'A40','Rhode Island',39,0,'en',0),(826,'A41','South Carolina',40,0,'en',0),(826,'A42','South Dakota',41,0,'en',0),(826,'A43','Tennessee',42,0,'en',0),(826,'A44','Texas',43,0,'en',0),(826,'A45','Utah',44,0,'en',0),(826,'A46','Vermont',45,0,'en',0),(826,'A47','Virginia',46,0,'en',0),(826,'A48','Washington',47,0,'en',0),(826,'A49','West Virginia',48,0,'en',0),(826,'A50','Wisconsin',49,0,'en',0),(826,'A51','Wyoming',50,0,'en',0),(826,'A52','Alberta',51,0,'en',0),(826,'A53','British Columbia',52,0,'en',0),(826,'A54','Manitoba',53,0,'en',0),(826,'A55','New Brunswick',54,0,'en',0),(826,'A56','Newfoundland and Labrador',55,0,'en',0),(826,'A57','Northwest Territories',56,0,'en',0),(826,'A58','Nova Scotia',57,0,'en',0),(826,'A59','Nunavut',58,0,'en',0),(826,'A60','Ontario',59,0,'en',0),(826,'A61','Prince Edward Island',60,0,'en',0),(826,'A62','Quebec',61,0,'en',0),(826,'A63','Saskatchewan',62,0,'en',0),(826,'A64','Yukon',63,0,'en',0),(826,'A73','Baja California',64,0,'en',0),(826,'A65','Pacific Coastal Lowlands',65,0,'en',0),(826,'A66','Mexican Plateau',66,0,'en',0),(826,'A2','Alabama',1,0,'en',0),(826,'A3','Alaska',2,0,'en',0),(826,'A4','Arizona',3,0,'en',0),(826,'A5','Arkansas',4,0,'en',0),(826,'A6','California',5,0,'en',0),(826,'A7','Colorado',6,0,'en',0),(826,'A8','Connecticut',7,0,'en',0),(826,'A9','Delaware',8,0,'en',0),(634,'male','Male',2,0,'en',0),(658,'A7','Sub-Saharan Africa',7,0,'en',0),(633,'A4','35-44 years',4,0,'en',0),(633,'A3','25-34 years',3,0,'en',0),(633,'A2','15-24 years',2,0,'en',0),(633,'A6','55-64 years',6,0,'en',0),(633,'A5','45-54 years',5,0,'en',0),(658,'A6','South Asia',6,0,'en',0),(633,'A7','65+ years',7,0,'en',0),(658,'A1','East Asia and Pacific',1,0,'en',0),(658,'A2','Europe and Central Asia',2,0,'en',0),(658,'A3','Latin America and the Caribbean',3,0,'en',0),(658,'A4','Middle East and North Africa',4,0,'en',0),(658,'A5','North America',5,0,'en',0),(633,'A1','5-14 years',1,0,'en',0),(650,'A4','3-6 years',4,0,'en',0),(650,'A5','6-10 years',5,0,'en',0),(650,'A6','10+ years',6,0,'en',0),(764,'A1','nixpkgs-unstable',1,0,'en',0),(764,'A2','nixos-unstable',2,0,'en',0),(764,'A3','nixos-unstable-small',3,0,'en',0),(764,'A4','nixos-(release)',4,0,'en',0),(634,'fem','Female',1,0,'en',0),(651,'A1','Daily',1,0,'en',0),(651,'A2','Weekly',2,0,'en',0),(648,'A3','Monthly',3,0,'en',0),(648,'A2','Weekly',2,0,'en',0),(648,'A1','Daily',1,0,'en',0),(650,'A1','Less than 6 months',1,0,'en',0),(650,'A2','6 months - 1 year',2,0,'en',0),(650,'A3','1 year - 3 years',3,0,'en',0),(651,'A4','Occasionally',4,0,'en',0),(651,'A3','Monthly',3,0,'en',0),(653,'A6','10+ years',6,0,'en',0),(653,'A4','3-10 years',5,0,'en',0),(653,'A3','1-3 years',4,0,'en',0),(653,'A2','6 months - 1 year',3,0,'en',0),(653,'A1','1-6 months',2,0,'en',0),(653,'A7','less than a month',1,0,'en',0),(648,'A4','Occasionally',4,0,'en',0); +/*!40000 ALTER TABLE `limesurvey_answers` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_assessments` +-- + +DROP TABLE IF EXISTS `limesurvey_assessments`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_assessments` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `sid` int(11) NOT NULL DEFAULT 0, + `scope` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL, + `gid` int(11) NOT NULL DEFAULT 0, + `name` text COLLATE utf8mb4_unicode_ci NOT NULL, + `minimum` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, + `maximum` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, + `message` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, + `language` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', + PRIMARY KEY (`id`,`language`), + KEY `limesurvey_assessments_idx2` (`sid`), + KEY `limesurvey_assessments_idx3` (`gid`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_assessments` +-- + +LOCK TABLES `limesurvey_assessments` WRITE; +/*!40000 ALTER TABLE `limesurvey_assessments` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_assessments` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_asset_version` +-- + +DROP TABLE IF EXISTS `limesurvey_asset_version`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_asset_version` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `path` text COLLATE utf8mb4_unicode_ci NOT NULL, + `version` int(11) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_asset_version` +-- + +LOCK TABLES `limesurvey_asset_version` WRITE; +/*!40000 ALTER TABLE `limesurvey_asset_version` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_asset_version` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_boxes` +-- + +DROP TABLE IF EXISTS `limesurvey_boxes`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_boxes` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `position` int(11) DEFAULT NULL, + `url` text COLLATE utf8mb4_unicode_ci NOT NULL, + `title` text COLLATE utf8mb4_unicode_ci NOT NULL, + `ico` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `desc` text COLLATE utf8mb4_unicode_ci NOT NULL, + `page` text COLLATE utf8mb4_unicode_ci NOT NULL, + `usergroup` int(11) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_boxes` +-- + +LOCK TABLES `limesurvey_boxes` WRITE; +/*!40000 ALTER TABLE `limesurvey_boxes` DISABLE KEYS */; +INSERT INTO `limesurvey_boxes` VALUES (1,1,'admin/survey/sa/newsurvey','Create survey','icon-add','Create a new survey','welcome',-2),(2,2,'admin/survey/sa/listsurveys','List surveys','icon-list','List available surveys','welcome',-1),(3,3,'admin/globalsettings','Global settings','icon-settings','Edit global settings','welcome',-2),(6,6,'admin/themeoptions','Themes','icon-templates','Themes','welcome',-2); +/*!40000 ALTER TABLE `limesurvey_boxes` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_conditions` +-- + +DROP TABLE IF EXISTS `limesurvey_conditions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_conditions` ( + `cid` int(11) NOT NULL AUTO_INCREMENT, + `qid` int(11) NOT NULL DEFAULT 0, + `cqid` int(11) NOT NULL DEFAULT 0, + `cfieldname` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `method` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `value` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `scenario` int(11) NOT NULL DEFAULT 1, + PRIMARY KEY (`cid`), + KEY `limesurvey_conditions_idx` (`qid`), + KEY `limesurvey_conditions_idx3` (`cqid`) +) ENGINE=MyISAM AUTO_INCREMENT=179 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_conditions` +-- + +LOCK TABLES `limesurvey_conditions` WRITE; +/*!40000 ALTER TABLE `limesurvey_conditions` DISABLE KEYS */; +INSERT INTO `limesurvey_conditions` VALUES (118,675,645,'2023X38X645','==','Y',1),(117,675,659,'2023X38X659','==','N',1),(116,646,645,'2023X38X645','==','Y',1),(115,660,645,'2023X38X645','==','N',1),(107,664,670,'2023X39X670','==','Y',1),(106,663,670,'2023X39X670','==','Y',1),(99,662,670,'2023X39X670','==','Y',1),(88,646,659,'2023X38X659','==','N',1),(89,671,670,'2023X39X670','==','N',1),(90,672,670,'2023X39X670','==','N',1),(91,672,671,'2023X39X671','==','N',1),(92,673,670,'2023X39X670','==','N',1),(93,673,671,'2023X39X671','==','Y',1),(94,647,670,'2023X39X670','==','N',1),(95,647,671,'2023X39X671','==','Y',1),(96,651,670,'2023X39X670','==','Y',1),(97,661,670,'2023X39X670','==','Y',1),(98,652,670,'2023X39X670','==','Y',1),(114,645,659,'2023X38X659','==','N',1),(112,674,670,'2023X39X670','==','Y',1),(110,667,670,'2023X39X670','==','Y',1),(108,665,670,'2023X39X670','==','Y',1),(111,676,670,'2023X39X670','==','Y',1),(105,657,670,'2023X39X670','==','Y',1),(133,667,800,'2023X39X800','==','A1',1),(101,653,670,'2023X39X670','==','Y',1),(102,654,670,'2023X39X670','==','Y',1),(103,655,670,'2023X39X670','==','Y',1),(104,656,670,'2023X39X670','==','Y',1),(113,660,659,'2023X38X659','==','N',1),(47,516,529,'2022X33X529','==','N',1),(48,541,540,'2022X34X540','==','N',1),(49,542,540,'2022X34X540','==','N',1),(50,542,541,'2022X34X541','==','N',1),(51,543,540,'2022X34X540','==','N',1),(52,543,541,'2022X34X541','==','Y',1),(53,517,540,'2022X34X540','==','N',1),(54,517,541,'2022X34X541','==','Y',1),(55,521,540,'2022X34X540','==','Y',1),(56,531,540,'2022X34X540','==','Y',1),(57,522,540,'2022X34X540','==','Y',1),(58,532,540,'2022X34X540','==','Y',1),(59,537,536,'2022X34X536','==','N',1),(60,523,540,'2022X34X540','==','Y',1),(61,524,540,'2022X34X540','==','Y',1),(62,525,540,'2022X34X540','==','Y',1),(63,526,540,'2022X34X540','==','Y',1),(64,527,540,'2022X34X540','==','Y',1),(65,533,540,'2022X34X540','==','Y',1),(66,534,540,'2022X34X540','==','Y',1),(67,535,540,'2022X34X540','==','Y',1),(68,536,540,'2022X34X540','==','Y',1),(69,537,540,'2022X34X540','==','Y',1),(70,546,540,'2022X34X540','==','Y',1),(71,544,540,'2022X34X540','==','Y',1),(72,530,529,'2022X33X529','==','N',1),(73,515,529,'2022X33X529','==','N',1),(74,530,515,'2022X33X515','==','N',1),(75,516,515,'2022X33X515','==','Y',1),(76,545,529,'2022X33X529','==','N',1),(77,545,515,'2022X33X515','==','Y',1),(78,519,529,'2022X33X529','==','Y',1),(79,518,529,'2022X33X529','==','Y',1),(80,520,529,'2022X33X529','==','Y',1),(81,508,529,'2022X33X529','==','Y',1),(82,507,529,'2022X33X529','==','Y',1),(83,509,529,'2022X33X529','==','Y',1),(84,510,529,'2022X33X529','==','Y',1),(85,511,529,'2022X33X529','==','Y',1),(86,513,529,'2022X33X529','==','Y',1),(87,514,529,'2022X33X529','==','Y',1),(119,649,659,'2023X38X659','==','Y',1),(120,648,659,'2023X38X659','==','Y',1),(121,650,659,'2023X38X659','==','Y',1),(122,638,659,'2023X38X659','==','Y',1),(123,637,659,'2023X38X659','==','Y',1),(124,639,659,'2023X38X659','==','Y',1),(125,640,659,'2023X38X659','==','Y',1),(126,641,659,'2023X38X659','==','Y',1),(127,643,659,'2023X38X659','==','Y',1),(128,644,659,'2023X38X659','==','Y',1),(129,789,656,'2023X39X6561','==','A15',1),(131,789,656,'2023X39X6562','==','A15',2),(132,789,656,'2023X39X6563','==','A15',2),(134,667,800,'2023X39X800','==','A2',1); +/*!40000 ALTER TABLE `limesurvey_conditions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_defaultvalues` +-- + +DROP TABLE IF EXISTS `limesurvey_defaultvalues`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_defaultvalues` ( + `qid` int(11) NOT NULL DEFAULT 0, + `scale_id` int(11) NOT NULL DEFAULT 0, + `sqid` int(11) NOT NULL DEFAULT 0, + `language` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, + `specialtype` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `defaultvalue` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`qid`,`specialtype`,`language`,`scale_id`,`sqid`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_defaultvalues` +-- + +LOCK TABLES `limesurvey_defaultvalues` WRITE; +/*!40000 ALTER TABLE `limesurvey_defaultvalues` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_defaultvalues` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_expression_errors` +-- + +DROP TABLE IF EXISTS `limesurvey_expression_errors`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_expression_errors` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `errortime` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `sid` int(11) DEFAULT NULL, + `gid` int(11) DEFAULT NULL, + `qid` int(11) DEFAULT NULL, + `gseq` int(11) DEFAULT NULL, + `qseq` int(11) DEFAULT NULL, + `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `eqn` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `prettyprint` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_expression_errors` +-- + +LOCK TABLES `limesurvey_expression_errors` WRITE; +/*!40000 ALTER TABLE `limesurvey_expression_errors` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_expression_errors` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_failed_login_attempts` +-- + +DROP TABLE IF EXISTS `limesurvey_failed_login_attempts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_failed_login_attempts` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `ip` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL, + `last_attempt` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, + `number_attempts` int(11) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_failed_login_attempts` +-- + +LOCK TABLES `limesurvey_failed_login_attempts` WRITE; +/*!40000 ALTER TABLE `limesurvey_failed_login_attempts` DISABLE KEYS */; +INSERT INTO `limesurvey_failed_login_attempts` VALUES (8,'98.234.180.165','2023-09-22 20:20:33',2),(10,'82.67.34.230','2024-07-08 22:07:05',1); +/*!40000 ALTER TABLE `limesurvey_failed_login_attempts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_groups` +-- + +DROP TABLE IF EXISTS `limesurvey_groups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_groups` ( + `gid` int(11) NOT NULL AUTO_INCREMENT, + `sid` int(11) NOT NULL DEFAULT 0, + `group_name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `group_order` int(11) NOT NULL DEFAULT 0, + `description` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `language` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', + `randomization_group` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `grelevance` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`gid`,`language`), + KEY `limesurvey_idx1_groups` (`sid`), + KEY `limesurvey_idx2_groups` (`group_name`), + KEY `limesurvey_idx3_groups` (`language`) +) ENGINE=MyISAM AUTO_INCREMENT=55 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_groups` +-- + +LOCK TABLES `limesurvey_groups` WRITE; +/*!40000 ALTER TABLE `limesurvey_groups` DISABLE KEYS */; +INSERT INTO `limesurvey_groups` VALUES (50,2024,'Nix Community Survey',1,'','en','',''),(47,248687,'Content',1,'','en','',''),(49,248687,'General',2,'','en','',''),(44,248687,'Attendee Information',0,'','en','',''),(42,239157,'General',2,'','en','',''),(43,346552,'NixCon North America',1,'','en','',''),(31,2022,'Background Information',1,'','en','',''),(32,2022,'Thank You!',5,'Thank you for completing the survey','en','',''),(33,2022,'NixOS User Questions',3,'','en','',''),(34,2022,'Nix User Questions',2,'Questions about the Nix command line. (We\'ll ask about NixOS specifically on the next page.)','en','',''),(35,2022,'Misc. Questions',4,'','en','',''),(41,239157,'Travel and location of origin',1,'Please share some details about how you arrived, how long it took you and where you are travelling from. This will be used to help us gather information on future NixCon locations.','en','',''),(38,2023,'NixOS User Questions',3,'','en','',''),(39,2023,'Nix User Questions (not NixOS)',2,'Questions about Nix and the Nix ecosystem.

We\'ll ask about NixOS specifically on the next page.','en','',''),(40,2023,'Misc. Questions',4,'','en','',''),(37,2023,'Thank You!',5,'Thank you for completing the survey','en','',''),(36,2023,'Background Information',1,'','en','',''); +/*!40000 ALTER TABLE `limesurvey_groups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_labels` +-- + +DROP TABLE IF EXISTS `limesurvey_labels`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_labels` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `lid` int(11) NOT NULL DEFAULT 0, + `code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `sortorder` int(11) NOT NULL, + `language` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', + `assessment_value` int(11) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `limesurvey_idx1_labels` (`code`), + KEY `limesurvey_idx2_labels` (`sortorder`), + KEY `limesurvey_idx3_labels` (`language`), + KEY `limesurvey_idx4_labels` (`lid`,`sortorder`,`language`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_labels` +-- + +LOCK TABLES `limesurvey_labels` WRITE; +/*!40000 ALTER TABLE `limesurvey_labels` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_labels` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_labelsets` +-- + +DROP TABLE IF EXISTS `limesurvey_labelsets`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_labelsets` ( + `lid` int(11) NOT NULL AUTO_INCREMENT, + `label_name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `languages` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT 'en', + PRIMARY KEY (`lid`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_labelsets` +-- + +LOCK TABLES `limesurvey_labelsets` WRITE; +/*!40000 ALTER TABLE `limesurvey_labelsets` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_labelsets` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_map_tutorial_users` +-- + +DROP TABLE IF EXISTS `limesurvey_map_tutorial_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_map_tutorial_users` ( + `tid` int(11) NOT NULL, + `uid` int(11) NOT NULL, + `taken` int(11) DEFAULT 1, + PRIMARY KEY (`uid`,`tid`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_map_tutorial_users` +-- + +LOCK TABLES `limesurvey_map_tutorial_users` WRITE; +/*!40000 ALTER TABLE `limesurvey_map_tutorial_users` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_map_tutorial_users` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_notifications` +-- + +DROP TABLE IF EXISTS `limesurvey_notifications`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_notifications` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `entity` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL, + `entity_id` int(11) NOT NULL, + `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, + `message` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, + `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'new', + `importance` int(11) NOT NULL DEFAULT 1, + `display_class` varchar(31) COLLATE utf8mb4_unicode_ci DEFAULT 'default', + `hash` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `created` datetime DEFAULT NULL, + `first_read` datetime DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `limesurvey_notifications_pk` (`entity`,`entity_id`,`status`), + KEY `limesurvey_idx1_notifications` (`hash`) +) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_notifications` +-- + +LOCK TABLES `limesurvey_notifications` WRITE; +/*!40000 ALTER TABLE `limesurvey_notifications` DISABLE KEYS */; +INSERT INTO `limesurvey_notifications` VALUES (4,'user',2,'Password warning',' Warning: You are still using the default password ('password'). Please change your password and re-login again.','new',1,'default','20a3e365c5a36c7cc8c47eaa0effcd0f6274e5831ad3a80701bac913a9f896cb','2022-02-18 20:50:26','2022-02-18 19:50:34'); +/*!40000 ALTER TABLE `limesurvey_notifications` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_old_survey_2023_20230517111549` +-- + +DROP TABLE IF EXISTS `limesurvey_old_survey_2023_20230517111549`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_old_survey_2023_20230517111549` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `submitdate` datetime DEFAULT NULL, + `lastpage` int(11) DEFAULT NULL, + `startlanguage` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, + `seed` varchar(31) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X658` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X633` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X634` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X634other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ009` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ010` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ011` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ012` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ013` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ014` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ015` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ016` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ017` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ018` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ019` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ020` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ021` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ022` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ023` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X670` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X671` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X672` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X673` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X651` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X652SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X652SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X652SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X652other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X653` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X654` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X655SQ001` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X655SQ002` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X655SQ003` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X656` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X657` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X664` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X665SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X665SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X665SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X665other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X666` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X667` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X659` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X645` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X660` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X646` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X675` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X648` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X649SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X649SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X649SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X649other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X650` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X637` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X639SQ001` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X639SQ002` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X639SQ003` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X640` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X641` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X644SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X644SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X644SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X644other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X40X668` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X40X669` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X37X642` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_old_survey_2023_20230517111549` +-- + +LOCK TABLES `limesurvey_old_survey_2023_20230517111549` WRITE; +/*!40000 ALTER TABLE `limesurvey_old_survey_2023_20230517111549` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_old_survey_2023_20230517111549` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_old_survey_2023_20230524184227` +-- + +DROP TABLE IF EXISTS `limesurvey_old_survey_2023_20230524184227`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_old_survey_2023_20230524184227` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `submitdate` datetime DEFAULT NULL, + `lastpage` int(11) DEFAULT NULL, + `startlanguage` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, + `seed` varchar(31) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X658` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X633` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X634` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X634other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ009` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ010` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ011` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ012` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ013` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ014` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ015` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ016` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ017` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ018` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ019` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ020` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ021` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ022` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ023` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X670` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X671` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X672` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X673` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X651` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X652SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X652SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X652SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X652other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X653` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X654` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X655SQ001` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X655SQ002` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X655SQ003` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X656` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X657` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X664` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X665SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X665SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X665SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X665other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X666` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X667` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X659` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X645` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X660` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X646` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X675` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X648` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X649SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X649SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X649SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X649other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X650` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X637` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X639SQ001` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X639SQ002` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X639SQ003` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X640` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X641` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X644SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X644SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X644SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X644other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X40X668` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X40X669` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X37X642` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_old_survey_2023_20230524184227` +-- + +LOCK TABLES `limesurvey_old_survey_2023_20230524184227` WRITE; +/*!40000 ALTER TABLE `limesurvey_old_survey_2023_20230524184227` DISABLE KEYS */; +INSERT INTO `limesurvey_old_survey_2023_20230524184227` VALUES (1,'1980-01-01 00:00:00',5,'en','325631429','A2','A2','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','','Y','','','','','Y','','Y','Y','','Y','','','Y','Y','','Y','','','','','','','','','','Y','Y','','Y','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','Y','','Y','Y','','Y','','','','','','','Y','','','Y','','','','','Y','','','','',''),(2,NULL,3,'en','1380785','A2','A2','male','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','','','','','','Y','','Y','','Y','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),(3,NULL,4,'en','544136625','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(5,NULL,1,'en','445203000','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +/*!40000 ALTER TABLE `limesurvey_old_survey_2023_20230524184227` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_old_survey_2023_20230525220003` +-- + +DROP TABLE IF EXISTS `limesurvey_old_survey_2023_20230525220003`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_old_survey_2023_20230525220003` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `submitdate` datetime DEFAULT NULL, + `lastpage` int(11) DEFAULT NULL, + `startlanguage` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, + `seed` varchar(31) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X658` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X633` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X634` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X634other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ009` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ010` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ011` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ012` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ013` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ014` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ015` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ016` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ017` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ018` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ019` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ020` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ021` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ022` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ023` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X670` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X671` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X672` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X673` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X651` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X652SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X652SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X652SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X652other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X653` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X654` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X655SQ001` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X655SQ002` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X655SQ003` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X656` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X657` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X764` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X664` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X665SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X665SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X665SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X665other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X666` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X667` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X659` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X645` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X660` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X646` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X675` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X648` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X649SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X649SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X649SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X649other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X650` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X637` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X639SQ001` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X639SQ002` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X639SQ003` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X640` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X641` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X644SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X644SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X644SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X644other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X40X668` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X40X669` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X37X642` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_old_survey_2023_20230525220003` +-- + +LOCK TABLES `limesurvey_old_survey_2023_20230525220003` WRITE; +/*!40000 ALTER TABLE `limesurvey_old_survey_2023_20230525220003` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_old_survey_2023_20230525220003` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_old_tokens_2023_20230514142748` +-- + +DROP TABLE IF EXISTS `limesurvey_old_tokens_2023_20230514142748`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_old_tokens_2023_20230514142748` ( + `tid` int(11) NOT NULL AUTO_INCREMENT, + `participant_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `firstname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `lastname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `email` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `emailstatus` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `token` varchar(35) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, + `language` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `blacklisted` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `sent` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', + `remindersent` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', + `remindercount` int(11) DEFAULT 0, + `completed` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', + `usesleft` int(11) DEFAULT 1, + `validfrom` datetime DEFAULT NULL, + `validuntil` datetime DEFAULT NULL, + `mpid` int(11) DEFAULT NULL, + PRIMARY KEY (`tid`), + KEY `idx_token_token_2023_15027` (`token`), + KEY `idx_email` (`email`(30)) +) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_old_tokens_2023_20230514142748` +-- + +LOCK TABLES `limesurvey_old_tokens_2023_20230514142748` WRITE; +/*!40000 ALTER TABLE `limesurvey_old_tokens_2023_20230514142748` DISABLE KEYS */; +INSERT INTO `limesurvey_old_tokens_2023_20230514142748` VALUES (1,NULL,'i','j','','OK','yTdxfo6bGcUCR5X','en',NULL,'N','N',0,'N',1,NULL,NULL,NULL); +/*!40000 ALTER TABLE `limesurvey_old_tokens_2023_20230514142748` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_old_tokens_2023_20230514143042` +-- + +DROP TABLE IF EXISTS `limesurvey_old_tokens_2023_20230514143042`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_old_tokens_2023_20230514143042` ( + `tid` int(11) NOT NULL AUTO_INCREMENT, + `participant_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `firstname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `lastname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `email` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `emailstatus` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `token` varchar(35) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, + `language` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `blacklisted` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `sent` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', + `remindersent` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', + `remindercount` int(11) DEFAULT 0, + `completed` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', + `usesleft` int(11) DEFAULT 1, + `validfrom` datetime DEFAULT NULL, + `validuntil` datetime DEFAULT NULL, + `mpid` int(11) DEFAULT NULL, + PRIMARY KEY (`tid`), + KEY `idx_token_token_2023_34383` (`token`), + KEY `idx_email` (`email`(30)) +) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_old_tokens_2023_20230514143042` +-- + +LOCK TABLES `limesurvey_old_tokens_2023_20230514143042` WRITE; +/*!40000 ALTER TABLE `limesurvey_old_tokens_2023_20230514143042` DISABLE KEYS */; +INSERT INTO `limesurvey_old_tokens_2023_20230514143042` VALUES (1,NULL,'','','','OK','2O8ZyP4wlTRVPAm','en',NULL,'N','N',0,'N',1,NULL,NULL,NULL); +/*!40000 ALTER TABLE `limesurvey_old_tokens_2023_20230514143042` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_old_tokens_2023_20230517111549` +-- + +DROP TABLE IF EXISTS `limesurvey_old_tokens_2023_20230517111549`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_old_tokens_2023_20230517111549` ( + `tid` int(11) NOT NULL AUTO_INCREMENT, + `participant_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `firstname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `lastname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `email` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `emailstatus` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `token` varchar(35) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, + `language` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `blacklisted` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `sent` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', + `remindersent` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', + `remindercount` int(11) DEFAULT 0, + `completed` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', + `usesleft` int(11) DEFAULT 1, + `validfrom` datetime DEFAULT NULL, + `validuntil` datetime DEFAULT NULL, + `mpid` int(11) DEFAULT NULL, + PRIMARY KEY (`tid`), + KEY `idx_token_token_2023_14211` (`token`), + KEY `idx_email` (`email`(30)) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_old_tokens_2023_20230517111549` +-- + +LOCK TABLES `limesurvey_old_tokens_2023_20230517111549` WRITE; +/*!40000 ALTER TABLE `limesurvey_old_tokens_2023_20230517111549` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_old_tokens_2023_20230517111549` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_old_tokens_2023_20230525220003` +-- + +DROP TABLE IF EXISTS `limesurvey_old_tokens_2023_20230525220003`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_old_tokens_2023_20230525220003` ( + `tid` int(11) NOT NULL AUTO_INCREMENT, + `participant_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `firstname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `lastname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `email` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `emailstatus` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `token` varchar(35) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, + `language` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `blacklisted` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `sent` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', + `remindersent` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', + `remindercount` int(11) DEFAULT 0, + `completed` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', + `usesleft` int(11) DEFAULT 1, + `validfrom` datetime DEFAULT NULL, + `validuntil` datetime DEFAULT NULL, + `mpid` int(11) DEFAULT NULL, + PRIMARY KEY (`tid`), + KEY `idx_token_token_2023_39722` (`token`), + KEY `idx_email` (`email`(30)) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_old_tokens_2023_20230525220003` +-- + +LOCK TABLES `limesurvey_old_tokens_2023_20230525220003` WRITE; +/*!40000 ALTER TABLE `limesurvey_old_tokens_2023_20230525220003` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_old_tokens_2023_20230525220003` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_old_tokens_987549_20220202225037` +-- + +DROP TABLE IF EXISTS `limesurvey_old_tokens_987549_20220202225037`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_old_tokens_987549_20220202225037` ( + `tid` int(11) NOT NULL AUTO_INCREMENT, + `participant_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `firstname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `lastname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `email` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `emailstatus` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `token` varchar(35) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, + `language` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `blacklisted` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `sent` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', + `remindersent` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', + `remindercount` int(11) DEFAULT 0, + `completed` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', + `usesleft` int(11) DEFAULT 1, + `validfrom` datetime DEFAULT NULL, + `validuntil` datetime DEFAULT NULL, + `mpid` int(11) DEFAULT NULL, + PRIMARY KEY (`tid`), + KEY `idx_token_token_987549_21634` (`token`), + KEY `idx_email` (`email`(30)) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_old_tokens_987549_20220202225037` +-- + +LOCK TABLES `limesurvey_old_tokens_987549_20220202225037` WRITE; +/*!40000 ALTER TABLE `limesurvey_old_tokens_987549_20220202225037` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_old_tokens_987549_20220202225037` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_participant_attribute` +-- + +DROP TABLE IF EXISTS `limesurvey_participant_attribute`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_participant_attribute` ( + `participant_id` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, + `attribute_id` int(11) NOT NULL, + `value` text COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`participant_id`,`attribute_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_participant_attribute` +-- + +LOCK TABLES `limesurvey_participant_attribute` WRITE; +/*!40000 ALTER TABLE `limesurvey_participant_attribute` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_participant_attribute` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_participant_attribute_names` +-- + +DROP TABLE IF EXISTS `limesurvey_participant_attribute_names`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_participant_attribute_names` ( + `attribute_id` int(11) NOT NULL AUTO_INCREMENT, + `attribute_type` varchar(4) COLLATE utf8mb4_unicode_ci NOT NULL, + `defaultname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, + `visible` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`attribute_id`,`attribute_type`), + KEY `limesurvey_idx_participant_attribute_names` (`attribute_id`,`attribute_type`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_participant_attribute_names` +-- + +LOCK TABLES `limesurvey_participant_attribute_names` WRITE; +/*!40000 ALTER TABLE `limesurvey_participant_attribute_names` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_participant_attribute_names` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_participant_attribute_names_lang` +-- + +DROP TABLE IF EXISTS `limesurvey_participant_attribute_names_lang`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_participant_attribute_names_lang` ( + `attribute_id` int(11) NOT NULL, + `attribute_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, + `lang` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`attribute_id`,`lang`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_participant_attribute_names_lang` +-- + +LOCK TABLES `limesurvey_participant_attribute_names_lang` WRITE; +/*!40000 ALTER TABLE `limesurvey_participant_attribute_names_lang` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_participant_attribute_names_lang` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_participant_attribute_values` +-- + +DROP TABLE IF EXISTS `limesurvey_participant_attribute_values`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_participant_attribute_values` ( + `value_id` int(11) NOT NULL AUTO_INCREMENT, + `attribute_id` int(11) NOT NULL, + `value` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`value_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_participant_attribute_values` +-- + +LOCK TABLES `limesurvey_participant_attribute_values` WRITE; +/*!40000 ALTER TABLE `limesurvey_participant_attribute_values` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_participant_attribute_values` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_participant_shares` +-- + +DROP TABLE IF EXISTS `limesurvey_participant_shares`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_participant_shares` ( + `participant_id` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, + `share_uid` int(11) NOT NULL, + `date_added` datetime NOT NULL, + `can_edit` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`participant_id`,`share_uid`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_participant_shares` +-- + +LOCK TABLES `limesurvey_participant_shares` WRITE; +/*!40000 ALTER TABLE `limesurvey_participant_shares` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_participant_shares` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_participants` +-- + +DROP TABLE IF EXISTS `limesurvey_participants`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_participants` ( + `participant_id` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, + `firstname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `lastname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `email` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `language` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `blacklisted` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL, + `owner_uid` int(11) NOT NULL, + `created_by` int(11) NOT NULL, + `created` datetime DEFAULT NULL, + `modified` datetime DEFAULT NULL, + PRIMARY KEY (`participant_id`), + KEY `limesurvey_idx1_participants` (`firstname`), + KEY `limesurvey_idx2_participants` (`lastname`), + KEY `limesurvey_idx3_participants` (`language`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_participants` +-- + +LOCK TABLES `limesurvey_participants` WRITE; +/*!40000 ALTER TABLE `limesurvey_participants` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_participants` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_permissions` +-- + +DROP TABLE IF EXISTS `limesurvey_permissions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_permissions` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `entity` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, + `entity_id` int(11) NOT NULL, + `uid` int(11) NOT NULL, + `permission` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, + `create_p` int(11) NOT NULL DEFAULT 0, + `read_p` int(11) NOT NULL DEFAULT 0, + `update_p` int(11) NOT NULL DEFAULT 0, + `delete_p` int(11) NOT NULL DEFAULT 0, + `import_p` int(11) NOT NULL DEFAULT 0, + `export_p` int(11) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `limesurvey_idx1_permissions` (`entity_id`,`entity`,`permission`,`uid`) +) ENGINE=MyISAM AUTO_INCREMENT=436 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_permissions` +-- + +LOCK TABLES `limesurvey_permissions` WRITE; +/*!40000 ALTER TABLE `limesurvey_permissions` DISABLE KEYS */; +INSERT INTO `limesurvey_permissions` VALUES (1,'global',0,1,'superadmin',0,1,0,0,0,0),(238,'survey',2022,10,'survey',0,1,0,0,0,0),(236,'survey',2022,10,'surveyactivation',0,0,1,0,0,0),(146,'template',0,8,'fruity',0,1,0,0,0,0),(237,'survey',2022,10,'surveycontent',1,1,1,1,1,1),(144,'survey',239157,1,'tokens',1,1,1,1,1,1),(143,'survey',239157,1,'surveylocale',0,1,1,0,0,0),(142,'survey',239157,1,'surveysettings',0,1,1,0,0,0),(141,'survey',239157,1,'surveysecurity',1,1,1,1,0,0),(140,'survey',239157,1,'survey',0,1,0,1,0,0),(139,'survey',239157,1,'surveycontent',1,1,1,1,1,1),(138,'survey',239157,1,'surveyactivation',0,0,1,0,0,0),(137,'survey',239157,1,'statistics',0,1,0,0,0,0),(136,'survey',239157,1,'responses',1,1,1,1,1,1),(135,'survey',239157,1,'quotas',1,1,1,1,0,0),(134,'survey',239157,1,'translations',0,1,1,0,0,0),(133,'survey',239157,1,'assessments',1,1,1,1,0,0),(232,'survey',2022,10,'translations',0,1,1,0,0,0),(220,'survey',2022,7,'quotas',1,1,1,1,0,0),(216,'global',0,6,'auth_db',0,1,0,0,0,0),(218,'survey',2022,7,'assessments',1,1,1,1,0,0),(219,'survey',2022,7,'translations',0,1,1,0,0,0),(110,'survey',2023,1,'assessments',1,1,1,1,0,0),(111,'survey',2023,1,'translations',0,1,1,0,0,0),(112,'survey',2023,1,'quotas',1,1,1,1,0,0),(113,'survey',2023,1,'responses',1,1,1,1,1,1),(114,'survey',2023,1,'statistics',0,1,0,0,0,0),(115,'survey',2023,1,'surveyactivation',0,0,1,0,0,0),(116,'survey',2023,1,'surveycontent',1,1,1,1,1,1),(117,'survey',2023,1,'survey',0,1,0,1,0,0),(118,'survey',2023,1,'surveysecurity',1,1,1,1,0,0),(119,'survey',2023,1,'surveysettings',0,1,1,0,0,0),(120,'survey',2023,1,'surveylocale',0,1,1,0,0,0),(121,'survey',2023,1,'tokens',1,1,1,1,1,1),(123,'template',0,7,'fruity',0,1,0,0,0,0),(231,'survey',2022,10,'assessments',1,1,1,1,0,0),(229,'survey',2022,7,'tokens',1,1,1,1,1,1),(228,'survey',2022,7,'surveylocale',0,1,1,0,0,0),(227,'survey',2022,7,'surveysettings',0,1,1,0,0,0),(226,'survey',2022,7,'surveysecurity',1,1,1,1,0,0),(225,'survey',2022,7,'survey',0,1,0,0,0,0),(215,'global',0,7,'auth_db',0,1,0,0,0,0),(221,'survey',2022,7,'responses',1,1,1,1,1,1),(222,'survey',2022,7,'statistics',0,1,0,0,0,0),(223,'survey',2022,7,'surveyactivation',0,0,1,0,0,0),(224,'survey',2022,7,'surveycontent',1,1,1,1,1,1),(97,'template',0,6,'fruity',0,1,0,0,0,0),(239,'survey',2022,10,'surveysecurity',1,1,1,1,0,0),(235,'survey',2022,10,'statistics',0,1,0,0,0,0),(234,'survey',2022,10,'responses',1,1,1,1,1,1),(233,'survey',2022,10,'quotas',1,1,1,1,0,0),(214,'global',0,8,'auth_db',0,1,0,0,0,0),(156,'survey',346552,1,'assessments',1,1,1,1,0,0),(157,'survey',346552,1,'translations',0,1,1,0,0,0),(158,'survey',346552,1,'quotas',1,1,1,1,0,0),(159,'survey',346552,1,'responses',1,1,1,1,1,1),(160,'survey',346552,1,'statistics',0,1,0,0,0,0),(161,'survey',346552,1,'surveyactivation',0,0,1,0,0,0),(162,'survey',346552,1,'surveycontent',1,1,1,1,1,1),(163,'survey',346552,1,'survey',0,1,0,1,0,0),(164,'survey',346552,1,'surveysecurity',1,1,1,1,0,0),(165,'survey',346552,1,'surveysettings',0,1,1,0,0,0),(166,'survey',346552,1,'surveylocale',0,1,1,0,0,0),(167,'survey',346552,1,'tokens',1,1,1,1,1,1),(168,'global',0,9,'auth_db',0,1,0,0,0,0),(169,'template',0,9,'fruity',0,1,0,0,0,0),(171,'survey',346552,9,'assessments',1,1,1,1,0,0),(172,'survey',346552,9,'translations',0,1,1,0,0,0),(173,'survey',346552,9,'quotas',1,1,1,1,0,0),(174,'survey',346552,9,'responses',1,1,1,1,1,1),(175,'survey',346552,9,'statistics',0,1,0,0,0,0),(176,'survey',346552,9,'surveyactivation',0,0,1,0,0,0),(177,'survey',346552,9,'surveycontent',1,1,1,1,1,1),(178,'survey',346552,9,'survey',0,1,0,0,0,0),(179,'survey',346552,9,'surveysecurity',1,1,1,1,0,0),(180,'survey',346552,9,'surveysettings',0,1,1,0,0,0),(181,'survey',346552,9,'surveylocale',0,1,1,0,0,0),(182,'survey',346552,9,'tokens',1,1,1,1,1,1),(185,'global',0,10,'auth_db',0,1,0,0,0,0),(184,'template',0,10,'fruity',0,1,0,0,0,0),(187,'survey',346552,10,'assessments',1,1,1,1,0,0),(188,'survey',346552,10,'translations',0,1,1,0,0,0),(189,'survey',346552,10,'quotas',1,1,1,1,0,0),(190,'survey',346552,10,'responses',1,1,1,1,1,1),(191,'survey',346552,10,'statistics',0,1,0,0,0,0),(192,'survey',346552,10,'surveyactivation',0,0,1,0,0,0),(193,'survey',346552,10,'surveycontent',1,1,1,1,1,1),(194,'survey',346552,10,'survey',0,1,0,0,0,0),(195,'survey',346552,10,'surveysecurity',1,1,1,1,0,0),(196,'survey',346552,10,'surveysettings',0,1,1,0,0,0),(197,'survey',346552,10,'surveylocale',0,1,1,0,0,0),(198,'survey',346552,10,'tokens',1,1,1,1,1,1),(199,'global',0,11,'auth_db',0,1,0,0,0,0),(200,'template',0,11,'fruity',0,1,0,0,0,0),(202,'survey',346552,11,'assessments',1,1,1,1,0,0),(203,'survey',346552,11,'translations',0,1,1,0,0,0),(204,'survey',346552,11,'quotas',1,1,1,1,0,0),(205,'survey',346552,11,'responses',1,1,1,1,1,1),(206,'survey',346552,11,'statistics',0,1,0,0,0,0),(207,'survey',346552,11,'surveyactivation',0,0,1,0,0,0),(208,'survey',346552,11,'surveycontent',1,1,1,1,1,1),(209,'survey',346552,11,'survey',0,1,0,0,0,0),(210,'survey',346552,11,'surveysecurity',1,1,1,1,0,0),(211,'survey',346552,11,'surveysettings',0,1,1,0,0,0),(212,'survey',346552,11,'surveylocale',0,1,1,0,0,0),(213,'survey',346552,11,'tokens',1,1,1,1,1,1),(240,'survey',2022,10,'surveysettings',0,1,1,0,0,0),(241,'survey',2022,10,'surveylocale',0,1,1,0,0,0),(242,'survey',2022,10,'tokens',1,1,1,1,1,1),(244,'survey',2022,6,'assessments',1,1,1,1,0,0),(245,'survey',2022,6,'translations',0,1,1,0,0,0),(246,'survey',2022,6,'quotas',1,1,1,1,0,0),(247,'survey',2022,6,'responses',1,1,1,1,1,1),(248,'survey',2022,6,'statistics',0,1,0,0,0,0),(249,'survey',2022,6,'surveyactivation',0,0,1,0,0,0),(250,'survey',2022,6,'surveycontent',1,1,1,1,1,1),(251,'survey',2022,6,'survey',0,1,0,0,0,0),(252,'survey',2022,6,'surveysecurity',1,1,1,1,0,0),(253,'survey',2022,6,'surveysettings',0,1,1,0,0,0),(254,'survey',2022,6,'surveylocale',0,1,1,0,0,0),(255,'survey',2022,6,'tokens',1,1,1,1,1,1),(257,'survey',2023,7,'assessments',1,1,1,1,0,0),(258,'survey',2023,7,'translations',0,1,1,0,0,0),(259,'survey',2023,7,'quotas',1,1,1,1,0,0),(260,'survey',2023,7,'responses',1,1,1,1,1,1),(261,'survey',2023,7,'statistics',0,1,0,0,0,0),(262,'survey',2023,7,'surveyactivation',0,0,1,0,0,0),(263,'survey',2023,7,'surveycontent',1,1,1,1,1,1),(264,'survey',2023,7,'survey',0,1,0,0,0,0),(265,'survey',2023,7,'surveysecurity',1,1,1,1,0,0),(266,'survey',2023,7,'surveysettings',0,1,1,0,0,0),(267,'survey',2023,7,'surveylocale',0,1,1,0,0,0),(268,'survey',2023,7,'tokens',1,1,1,1,1,1),(270,'survey',2023,10,'assessments',1,1,1,1,0,0),(271,'survey',2023,10,'translations',0,1,1,0,0,0),(272,'survey',2023,10,'quotas',1,1,1,1,0,0),(273,'survey',2023,10,'responses',1,1,1,1,1,1),(274,'survey',2023,10,'statistics',0,1,0,0,0,0),(275,'survey',2023,10,'surveyactivation',0,0,1,0,0,0),(276,'survey',2023,10,'surveycontent',1,1,1,1,1,1),(277,'survey',2023,10,'survey',0,1,0,0,0,0),(278,'survey',2023,10,'surveysecurity',1,1,1,1,0,0),(279,'survey',2023,10,'surveysettings',0,1,1,0,0,0),(280,'survey',2023,10,'surveylocale',0,1,1,0,0,0),(281,'survey',2023,10,'tokens',1,1,1,1,1,1),(283,'survey',2023,6,'assessments',1,1,1,1,0,0),(284,'survey',2023,6,'translations',0,1,1,0,0,0),(285,'survey',2023,6,'quotas',1,1,1,1,0,0),(286,'survey',2023,6,'responses',1,1,1,1,1,1),(287,'survey',2023,6,'statistics',0,1,0,0,0,0),(288,'survey',2023,6,'surveyactivation',0,0,1,0,0,0),(289,'survey',2023,6,'surveycontent',1,1,1,1,1,1),(290,'survey',2023,6,'survey',0,1,0,0,0,0),(291,'survey',2023,6,'surveysecurity',1,1,1,1,0,0),(292,'survey',2023,6,'surveysettings',0,1,1,0,0,0),(293,'survey',2023,6,'surveylocale',0,1,1,0,0,0),(294,'survey',2023,6,'tokens',1,1,1,1,1,1),(296,'survey',239157,8,'assessments',1,1,1,1,0,0),(297,'survey',239157,8,'translations',0,1,1,0,0,0),(298,'survey',239157,8,'quotas',1,1,1,1,0,0),(299,'survey',239157,8,'responses',1,1,1,1,1,1),(300,'survey',239157,8,'statistics',0,1,0,0,0,0),(301,'survey',239157,8,'surveyactivation',0,0,1,0,0,0),(302,'survey',239157,8,'surveycontent',1,1,1,1,1,1),(303,'survey',239157,8,'survey',0,1,0,0,0,0),(304,'survey',239157,8,'surveysecurity',1,1,1,1,0,0),(305,'survey',239157,8,'surveysettings',0,1,1,0,0,0),(306,'survey',239157,8,'surveylocale',0,1,1,0,0,0),(307,'survey',239157,8,'tokens',1,1,1,1,1,1),(308,'global',0,12,'auth_db',0,1,0,0,0,0),(309,'template',0,12,'fruity',0,1,0,0,0,0),(310,'survey',964172,1,'assessments',1,1,1,1,0,0),(311,'survey',964172,1,'translations',0,1,1,0,0,0),(312,'survey',964172,1,'quotas',1,1,1,1,0,0),(313,'survey',964172,1,'responses',1,1,1,1,1,1),(314,'survey',964172,1,'statistics',0,1,0,0,0,0),(315,'survey',964172,1,'surveyactivation',0,0,1,0,0,0),(316,'survey',964172,1,'surveycontent',1,1,1,1,1,1),(317,'survey',964172,1,'survey',0,1,0,1,0,0),(318,'survey',964172,1,'surveysecurity',1,1,1,1,0,0),(319,'survey',964172,1,'surveysettings',0,1,1,0,0,0),(320,'survey',964172,1,'surveylocale',0,1,1,0,0,0),(321,'survey',964172,1,'tokens',1,1,1,1,1,1),(323,'survey',964172,12,'assessments',1,1,1,1,0,0),(324,'survey',964172,12,'translations',0,1,1,0,0,0),(325,'survey',964172,12,'quotas',1,1,1,1,0,0),(326,'survey',964172,12,'responses',1,1,1,1,1,1),(327,'survey',964172,12,'statistics',0,1,0,0,0,0),(328,'survey',964172,12,'surveyactivation',0,0,1,0,0,0),(329,'survey',964172,12,'surveycontent',1,1,1,1,1,1),(330,'survey',964172,12,'survey',0,1,0,1,0,0),(331,'survey',964172,12,'surveysecurity',1,1,1,1,0,0),(332,'survey',964172,12,'surveysettings',0,1,1,0,0,0),(333,'survey',964172,12,'surveylocale',0,1,1,0,0,0),(334,'survey',964172,12,'tokens',1,1,1,1,1,1),(335,'global',0,13,'auth_db',0,1,0,0,0,0),(336,'template',0,13,'fruity',0,1,0,0,0,0),(337,'survey',248687,1,'assessments',1,1,1,1,0,0),(338,'survey',248687,1,'translations',0,1,1,0,0,0),(339,'survey',248687,1,'quotas',1,1,1,1,0,0),(340,'survey',248687,1,'responses',1,1,1,1,1,1),(341,'survey',248687,1,'statistics',0,1,0,0,0,0),(342,'survey',248687,1,'surveyactivation',0,0,1,0,0,0),(343,'survey',248687,1,'surveycontent',1,1,1,1,1,1),(344,'survey',248687,1,'survey',0,1,0,1,0,0),(345,'survey',248687,1,'surveysecurity',1,1,1,1,0,0),(346,'survey',248687,1,'surveysettings',0,1,1,0,0,0),(347,'survey',248687,1,'surveylocale',0,1,1,0,0,0),(348,'survey',248687,1,'tokens',1,1,1,1,1,1),(350,'survey',248687,13,'assessments',1,1,1,1,0,0),(351,'survey',248687,13,'translations',0,1,1,0,0,0),(352,'survey',248687,13,'quotas',1,1,1,1,0,0),(353,'survey',248687,13,'responses',1,1,1,1,1,1),(354,'survey',248687,13,'statistics',0,1,0,0,0,0),(355,'survey',248687,13,'surveyactivation',0,0,1,0,0,0),(356,'survey',248687,13,'surveycontent',1,1,1,1,1,1),(357,'survey',248687,13,'survey',0,1,0,1,0,0),(358,'survey',248687,13,'surveysecurity',1,1,1,1,0,0),(359,'survey',248687,13,'surveysettings',0,1,1,0,0,0),(360,'survey',248687,13,'surveylocale',0,1,1,0,0,0),(361,'survey',248687,13,'tokens',1,1,1,1,1,1),(363,'survey',248687,11,'assessments',1,1,1,1,0,0),(364,'survey',248687,11,'translations',0,1,1,0,0,0),(365,'survey',248687,11,'quotas',1,1,1,1,0,0),(366,'survey',248687,11,'responses',1,1,1,1,1,1),(367,'survey',248687,11,'statistics',0,1,0,0,0,0),(368,'survey',248687,11,'surveyactivation',0,0,1,0,0,0),(369,'survey',248687,11,'surveycontent',1,1,1,1,1,1),(370,'survey',248687,11,'survey',0,1,0,1,0,0),(371,'survey',248687,11,'surveysecurity',1,1,1,1,0,0),(372,'survey',248687,11,'surveysettings',0,1,1,0,0,0),(373,'survey',248687,11,'surveylocale',0,1,1,0,0,0),(374,'survey',248687,11,'tokens',1,1,1,1,1,1),(376,'survey',248687,9,'assessments',1,1,1,1,0,0),(377,'survey',248687,9,'translations',0,1,1,0,0,0),(378,'survey',248687,9,'quotas',1,1,1,1,0,0),(379,'survey',248687,9,'responses',1,1,1,1,1,1),(380,'survey',248687,9,'statistics',0,1,0,0,0,0),(381,'survey',248687,9,'surveyactivation',0,0,1,0,0,0),(382,'survey',248687,9,'surveycontent',1,1,1,1,1,1),(383,'survey',248687,9,'survey',0,1,0,1,0,0),(384,'survey',248687,9,'surveysecurity',1,1,1,1,0,0),(385,'survey',248687,9,'surveysettings',0,1,1,0,0,0),(386,'survey',248687,9,'surveylocale',0,1,1,0,0,0),(387,'survey',248687,9,'tokens',1,1,1,1,1,1),(388,'survey',2024,1,'assessments',1,1,1,1,0,0),(389,'survey',2024,1,'translations',0,1,1,0,0,0),(390,'survey',2024,1,'quotas',1,1,1,1,0,0),(391,'survey',2024,1,'responses',1,1,1,1,1,1),(392,'survey',2024,1,'statistics',0,1,0,0,0,0),(393,'survey',2024,1,'surveyactivation',0,0,1,0,0,0),(394,'survey',2024,1,'surveycontent',1,1,1,1,1,1),(395,'survey',2024,1,'survey',0,1,0,1,0,0),(396,'survey',2024,1,'surveysecurity',1,1,1,1,0,0),(397,'survey',2024,1,'surveysettings',0,1,1,0,0,0),(398,'survey',2024,1,'surveylocale',0,1,1,0,0,0),(399,'survey',2024,1,'tokens',1,1,1,1,1,1),(400,'survey',2024,7,'assessments',1,1,1,1,0,0),(401,'survey',2024,7,'translations',0,1,1,0,0,0),(402,'survey',2024,7,'quotas',1,1,1,1,0,0),(403,'survey',2024,7,'responses',1,1,1,1,1,1),(404,'survey',2024,7,'statistics',0,1,0,0,0,0),(405,'survey',2024,7,'surveyactivation',0,0,1,0,0,0),(406,'survey',2024,7,'surveycontent',1,1,1,1,1,1),(407,'survey',2024,7,'survey',0,1,0,0,0,0),(408,'survey',2024,7,'surveysecurity',1,1,1,1,0,0),(409,'survey',2024,7,'surveysettings',0,1,1,0,0,0),(410,'survey',2024,7,'surveylocale',0,1,1,0,0,0),(411,'survey',2024,7,'tokens',1,1,1,1,1,1); +/*!40000 ALTER TABLE `limesurvey_permissions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_plugin_settings` +-- + +DROP TABLE IF EXISTS `limesurvey_plugin_settings`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_plugin_settings` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `plugin_id` int(11) NOT NULL, + `model` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `model_id` int(11) DEFAULT NULL, + `key` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, + `value` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_plugin_settings` +-- + +LOCK TABLES `limesurvey_plugin_settings` WRITE; +/*!40000 ALTER TABLE `limesurvey_plugin_settings` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_plugin_settings` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_plugins` +-- + +DROP TABLE IF EXISTS `limesurvey_plugins`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_plugins` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, + `active` int(11) NOT NULL DEFAULT 0, + `version` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_plugins` +-- + +LOCK TABLES `limesurvey_plugins` WRITE; +/*!40000 ALTER TABLE `limesurvey_plugins` DISABLE KEYS */; +INSERT INTO `limesurvey_plugins` VALUES (1,'Authdb',1,NULL),(2,'AuditLog',0,NULL),(3,'AuthLDAP',0,NULL),(4,'ComfortUpdateChecker',0,NULL),(5,'oldUrlCompat',0,NULL),(6,'Authwebserver',0,NULL),(7,'ExportSTATAxml',0,NULL),(8,'ExportR',0,NULL); +/*!40000 ALTER TABLE `limesurvey_plugins` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_question_attributes` +-- + +DROP TABLE IF EXISTS `limesurvey_question_attributes`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_question_attributes` ( + `qaid` int(11) NOT NULL AUTO_INCREMENT, + `qid` int(11) NOT NULL DEFAULT 0, + `attribute` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `value` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `language` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`qaid`), + KEY `limesurvey_idx1_question_attributes` (`qid`), + KEY `limesurvey_idx2_question_attributes` (`attribute`) +) ENGINE=MyISAM AUTO_INCREMENT=255 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_question_attributes` +-- + +LOCK TABLES `limesurvey_question_attributes` WRITE; +/*!40000 ALTER TABLE `limesurvey_question_attributes` DISABLE KEYS */; +INSERT INTO `limesurvey_question_attributes` VALUES (191,664,'max_subquestions','23',NULL),(144,541,'display_type','1',NULL),(147,540,'display_type','1',NULL),(142,536,'display_type','1',NULL),(141,529,'display_type','1',NULL),(140,528,'hide_tip','1',NULL),(139,528,'alphasort','1',NULL),(138,525,'text_input_columns','11',NULL),(137,525,'label_input_columns','1',NULL),(136,525,'display_rows','2',NULL),(135,515,'display_type','1',NULL),(134,509,'text_input_columns','11',NULL),(133,509,'label_input_columns','1',NULL),(132,509,'hide_tip','1',NULL),(131,509,'display_rows','2',NULL),(130,506,'other_replace_text','Other','en'),(129,505,'display_columns','3',NULL),(128,504,'hide_tip','1',NULL),(127,503,'hide_tip','1',NULL),(222,885,'other_replace_text','Other','en'),(254,883,'hide_tip','1',NULL),(253,882,'hide_tip','1',NULL),(215,828,'location_country','1',NULL),(214,828,'location_state','1',NULL),(213,828,'location_city','1',NULL),(218,826,'alphasort','1',NULL),(201,801,'location_mapzoom','8',NULL),(200,801,'location_nodefaultfromip','1',NULL),(199,801,'location_mapservice','100',NULL),(198,801,'location_country','1',NULL),(197,801,'location_city','1',NULL),(193,664,'max_subquestions','24',NULL),(192,799,'max_subquestions','24',NULL),(175,799,'max_answers','3',NULL),(176,799,'random_order','1',NULL),(178,656,'max_subquestions','15',NULL),(179,664,'max_subquestions','21',NULL),(180,799,'max_subquestions','21',NULL),(185,655,'max_subquestions','10',NULL),(186,655,'max_subquestions','10',NULL),(189,664,'max_subquestions','21',NULL),(190,799,'max_subquestions','21',NULL),(164,670,'display_type','1',NULL),(183,658,'alphasort','1',NULL),(184,658,'hide_tip','1',NULL),(162,659,'display_type','1',NULL),(177,655,'max_subquestions','10',NULL),(196,656,'random_order','1',NULL),(156,645,'display_type','1',NULL),(194,655,'max_answers','3',NULL),(195,656,'max_answers','3',NULL),(155,639,'text_input_columns','11',NULL),(154,639,'label_input_columns','1',NULL),(152,639,'display_rows','2',NULL),(153,639,'hide_tip','1',NULL),(151,636,'other_replace_text','Other','en'),(166,635,'display_columns','3',NULL),(148,633,'hide_tip','1',NULL),(149,634,'hide_tip','1',NULL),(251,907,'alphasort','1',NULL),(252,907,'hide_tip','1',NULL); +/*!40000 ALTER TABLE `limesurvey_question_attributes` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_questions` +-- + +DROP TABLE IF EXISTS `limesurvey_questions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_questions` ( + `qid` int(11) NOT NULL AUTO_INCREMENT, + `parent_qid` int(11) NOT NULL DEFAULT 0, + `sid` int(11) NOT NULL DEFAULT 0, + `gid` int(11) NOT NULL DEFAULT 0, + `type` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'T', + `title` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `question` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, + `preg` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `help` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `other` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', + `mandatory` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `question_order` int(11) NOT NULL, + `language` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', + `scale_id` int(11) NOT NULL DEFAULT 0, + `same_default` int(11) NOT NULL DEFAULT 0, + `relevance` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `modulename` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`qid`,`language`), + KEY `limesurvey_idx1_questions` (`sid`), + KEY `limesurvey_idx2_questions` (`gid`), + KEY `limesurvey_idx3_questions` (`type`), + KEY `limesurvey_idx4_questions` (`title`), + KEY `limesurvey_idx5_questions` (`parent_qid`) +) ENGINE=MyISAM AUTO_INCREMENT=1306 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_questions` +-- + +LOCK TABLES `limesurvey_questions` WRITE; +/*!40000 ALTER TABLE `limesurvey_questions` DISABLE KEYS */; +INSERT INTO `limesurvey_questions` VALUES (555,505,2022,31,'T','SQ012','Developer, mobile',NULL,'','N','N',12,'en',0,0,'1',''),(554,505,2022,31,'T','SQ007','Developer, desktop or enterprise applications',NULL,'','N','N',7,'en',0,0,'1',''),(553,505,2022,31,'T','SQ005','DevOps specialist',NULL,'','N','N',5,'en',0,0,'1',''),(552,505,2022,31,'T','SQ004','Data scientist or machine learning specialist',NULL,'','N','N',4,'en',0,0,'1',''),(551,505,2022,31,'T','SQ023','System administrator',NULL,'','N','N',23,'en',0,0,'1',''),(549,505,2022,31,'T','SQ006','Developer, back-end',NULL,'','N','N',6,'en',0,0,'1',''),(550,505,2022,31,'T','SQ017','Linux enthusiast',NULL,'','N','N',17,'en',0,0,'1',''),(548,505,2022,31,'T','SQ009','Developer, front-end',NULL,'','N','N',9,'en',0,0,'1',''),(547,505,2022,31,'T','SQ010','Developer, full-stack',NULL,'','N','N',10,'en',0,0,'1',''),(546,0,2022,34,'M','experimentalNix','Which experimental Nix features do you use?','','','Y','N',15,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',''),(545,0,2022,33,'T','triedStopTrialNixOS','What would cause you to try NixOS again?','','','N','N',4,'en',0,0,'((2022X33X515.NAOK == \"Y\") and (2022X33X529.NAOK == \"N\"))',''),(544,0,2022,34,'M','useNix','What do you use Nix for?','','','Y','N',11,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',NULL),(543,0,2022,34,'T','triedStopTrialNix','What would cause you to try Nix again?','','','N','N',4,'en',0,0,'((2022X34X540.NAOK == \"N\") and (2022X34X541.NAOK == \"Y\"))',''),(542,0,2022,34,'T','trialNix','What would cause you to try Nix?','','','N','N',2,'en',0,0,'((2022X34X540.NAOK == \"N\") and (2022X34X541.NAOK == \"N\"))',NULL),(541,0,2022,34,'Y','triedStopNix','Did you try and stop using Nix at any point in the past?','','','N','N',1,'en',0,0,'((2022X34X540.NAOK == \"N\"))',''),(540,0,2022,34,'Y','regularUseNix','Do you regularly use Nix in any form (including NixOS)?','','','N','N',0,'en',0,0,'1',''),(539,0,2022,35,'T','triedStopOther','What other projects/products in the Nix ecosystem that we haven’t asked about have you tried and stopped using?','','','N','N',1,'en',0,0,'1',''),(538,0,2022,35,'T','regularOther','What other projects/products in the Nix ecosystem that we haven’t asked about do you use regularly?','','','N','N',0,'en',0,0,'1',''),(537,0,2022,34,'T','notContribNix','What’s stopping you from contributing to Nixpkgs?','','','N','N',20,'en',0,0,'((2022X34X536.NAOK == \"N\") and (2022X34X540.NAOK == \"Y\"))',''),(536,0,2022,34,'Y','contribNix','Do you contribute to Nixpkgs?','','','N','N',19,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',''),(747,674,2023,39,'T','SQ005','System configuration and administration (nixos-rebuild, home-manager, nix-darwin)',NULL,'','N','N',4,'en',0,0,'1',NULL),(535,0,2022,34,'M','extendNix','How do you extend Nixpkgs?','','','Y','N',18,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',NULL),(534,0,2022,34,'T','twonixNix','Which “2nix” tools do you use? (Please provide URLs if possible)','','','N','N',17,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',NULL),(533,0,2022,34,'M','ciNix','What CI do you use with Nix?','','','Y','N',16,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',NULL),(532,0,2022,34,'M','environNix','In what environments do you use Nix?','','','Y','N',10,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',NULL),(531,0,2022,34,'M','osNix','On which platforms do you use Nix? (Apart from NixOS. We\'ll ask about NixOS later.)','','','Y','N',9,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',''),(530,0,2022,33,'T','trialNixOS','What would cause you to try NixOS?','','','N','N',2,'en',0,0,'((2022X33X515.NAOK == \"N\") and (2022X33X529.NAOK == \"N\"))',NULL),(529,0,2022,33,'Y','regularNixOS','Do you use NixOS regularly?','','','N','N',0,'en',0,0,'1',''),(528,0,2022,31,'!','region','Which region do you live in?','','','N','N',0,'en',0,0,'1',''),(748,643,2023,38,'T','SQ001','nixos-rebuild',NULL,'','N','N',1,'en',0,0,'1',NULL),(527,0,2022,34,'T','insteadNix','If Nix didn\'t exist, what would you use instead?','','','N','N',14,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',''),(526,0,2022,34,'T','dislikeNix','If you had a magic wand, what would you add, change, or remove from Nix?','','','N','N',13,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',''),(525,0,2022,34,'Q','likeNix','

What are the top three features/functionalities provided to you by Nix?

\n\n

Please order them from most to least important.

\n','','','N','N',12,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',''),(524,0,2022,34,'T','rznNix','Why did you start using Nix? Tell us the story.','','','N','N',8,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',''),(523,0,2022,34,'L','durationNix','How long have you been using Nix?','','','N','N',7,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',''),(522,0,2022,34,'M','contextNix','In what contexts do you use Nix?','','','Y','N',6,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',''),(521,0,2022,34,'L','frequencyNix','How often do you use Nix?','','','N','N',5,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',''),(520,0,2022,33,'L','durationNixOS','How long have you been using NixOS?','','','N','N',7,'en',0,0,'((2022X33X529.NAOK == \"Y\"))',''),(519,0,2022,33,'M','contextNixOS','In what contexts do you use NixOS?','','','Y','N',6,'en',0,0,'((2022X33X529.NAOK == \"Y\"))',''),(518,0,2022,33,'L','frequencyNixOS','How often do you use NixOS?','','','N','N',5,'en',0,0,'((2022X33X529.NAOK == \"Y\"))',''),(517,0,2022,34,'T','triedStopRznNix','Why did you stop using Nix?','','','N','N',3,'en',0,0,'((2022X34X540.NAOK == \"N\") and (2022X34X541.NAOK == \"Y\"))',''),(516,0,2022,33,'T','triedStopRznNixOS','Why did you stop using NixOS?','','','N','N',3,'en',0,0,'((2022X33X515.NAOK == \"Y\") and (2022X33X529.NAOK == \"N\"))',''),(515,0,2022,33,'Y','triedStopNixOS','Did you try and stop using NixOS at any point in the past?','','','N','N',1,'en',0,0,'((2022X33X529.NAOK == \"N\"))',''),(514,0,2022,33,'M','desktopNixOS','Which desktop environment or window managers do you use?','','','Y','N',14,'en',0,0,'((2022X33X529.NAOK == \"Y\"))',''),(513,0,2022,33,'M','deploymentsNixOS','Which deployment tools do you use with NixOS?','','','Y','N',13,'en',0,0,'((2022X33X529.NAOK == \"Y\"))',''),(750,643,2023,38,'T','SQ003','morph',NULL,'','N','N',3,'en',0,0,'1',NULL),(512,0,2022,32,'T','end','Anything else that you want to tell us?','','','N','N',0,'en',0,0,'1',''),(749,643,2023,38,'T','SQ002','NixOps',NULL,'','N','N',2,'en',0,0,'1',NULL),(511,0,2022,33,'T','insteadNixOS','If NixOS didn\'t exist, what would you use instead?','','','N','N',12,'en',0,0,'((2022X33X529.NAOK == \"Y\"))',''),(510,0,2022,33,'T','dislikeNixOS','If you had a magic wand, what would you add, change, or remove from NixOS?','','','N','N',11,'en',0,0,'((2022X33X529.NAOK == \"Y\"))',''),(509,0,2022,33,'Q','likeNixOS','

What are the top three features/functionalities provided to you by NixOS?

\n\n

Please order them from most to least important.

\n','','','N','N',10,'en',0,0,'((2022X33X529.NAOK == \"Y\"))',''),(508,0,2022,33,'M','environNixOS','In what environments do you use NixOS?','','','Y','N',9,'en',0,0,'((2022X33X529.NAOK == \"Y\"))',''),(507,0,2022,33,'T','rznNixOS','Why did you start using NixOS? Tell us the story.','','','N','N',8,'en',0,0,'((2022X33X529.NAOK == \"Y\"))',''),(506,0,2022,31,'M','os','Which operating systems do you use at least weekly? (We’ll ask about Nix/NixOS later)','','','Y','N',4,'en',0,0,'1',''),(503,0,2022,31,'!','age','How old are you?','','','N','N',1,'en',0,0,'1',''),(504,0,2022,31,'L','gender','What is your gender identity?','','','Y','N',2,'en',0,0,'1',''),(505,0,2022,31,'M','occupation','Which of the following best describes your current job? ','','','Y','N',3,'en',0,0,'1',''),(793,676,2023,39,'T','SQ009','Dynamic derivation support (dynamic-derivations)',NULL,NULL,'N',NULL,9,'en',0,0,'1',NULL),(794,676,2023,39,'T','SQ010','Discarding build output references (discard-references)',NULL,NULL,'N',NULL,10,'en',0,0,'1',NULL),(781,673,2023,39,'T','SQ001','Better learning resources and documentation',NULL,NULL,'N',NULL,1,'en',0,0,'1',NULL),(782,673,2023,39,'T','SQ002','More packages',NULL,NULL,'N',NULL,2,'en',0,0,'1',NULL),(783,673,2023,39,'T','SQ003','Better performance',NULL,NULL,'N',NULL,3,'en',0,0,'1',NULL),(784,673,2023,39,'T','SQ004','Support in the workplace',NULL,NULL,'N',NULL,4,'en',0,0,'1',NULL),(785,673,2023,39,'T','SQ005','Availability of ready-made solution for my use case',NULL,NULL,'N',NULL,5,'en',0,0,'1',NULL),(792,676,2023,39,'T','SQ008','Overriding daemon trust settings (daemon-trust-override)',NULL,NULL,'N',NULL,8,'en',0,0,'1',NULL),(791,676,2023,39,'T','SQ007','Cgroup support (cgroups)',NULL,NULL,'N',NULL,7,'en',0,0,'1',NULL),(788,674,2023,39,'T','SQ006','Nix language for programming tasks (nix repl, nix-instantiate, nix eval)',NULL,NULL,'N',NULL,6,'en',0,0,'1',NULL),(789,0,2023,39,'T','wishlistOther','Specify the other change you would like to see.','','','N','N',15,'en',0,0,'((2023X39X6561.NAOK == \"A15\")) or ((2023X39X6562.NAOK == \"A15\") and (2023X39X6563.NAOK == \"A15\"))',NULL),(787,647,2023,39,'T','SQ010','Security concerns',NULL,NULL,'N',NULL,9,'en',0,0,'1',NULL),(770,672,2023,39,'M','SQ002','A gentle introduction',NULL,NULL,'N',NULL,3,'en',0,0,'1',''),(764,0,2023,39,'L','whichChannel','Which nixpkgs channel do you mainly use?','','','N','N',17,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(762,661,2023,39,'T','SQ006','Containers',NULL,'','N','N',5,'en',0,0,'1',NULL),(761,676,2023,39,'T','SQ002','Flakes and related commands (flakes)',NULL,'','N','N',4,'en',0,0,'1',''),(760,676,2023,39,'T','SQ003','Experimental Nix commands (nix-command)',NULL,'','N','N',5,'en',0,0,'1',''),(759,676,2023,39,'T','SQ004','Disabling URL literals (no-url-literals)',NULL,'','N','N',1,'en',0,0,'1',''),(758,676,2023,39,'T','SQ005','Content-Addressable Derivations (ca-derivations)',NULL,'','N','N',2,'en',0,0,'1',''),(756,644,2023,38,'T','SQ008','XFCE',NULL,'','N','N',3,'en',0,0,'1',''),(757,676,2023,39,'T','SQ001','Recursive Nix (recursive-nix)',NULL,'','N','N',3,'en',0,0,'1',''),(755,644,2023,38,'T','SQ002','KDE',NULL,'','N','N',2,'en',0,0,'1',''),(754,644,2023,38,'T','SQ001','Gnome',NULL,'','N','N',1,'en',0,0,'1',''),(753,643,2023,38,'T','SQ006','Homegrown solution',NULL,'','N','N',6,'en',0,0,'1',NULL),(752,643,2023,38,'T','SQ005','colmena',NULL,'','N','N',5,'en',0,0,'1',NULL),(751,643,2023,38,'T','SQ004','deploy-rs',NULL,'','N','N',4,'en',0,0,'1',NULL),(632,531,2022,34,'T','SQ006','Containers',NULL,'','N','N',5,'en',0,0,'1',NULL),(631,546,2022,34,'T','SQ002','Flakes and related commands (flakes)',NULL,'','N','N',5,'en',0,0,'1',''),(630,546,2022,34,'T','SQ003','Experimental Nix 2.4 commands (nix-commands)',NULL,'','N','N',4,'en',0,0,'1',''),(629,546,2022,34,'T','SQ004','Disabling URL literals (no-url-literals)',NULL,'','N','N',3,'en',0,0,'1',''),(628,546,2022,34,'T','SQ005','Content-Addressable Derivations (ca-derivations)',NULL,'','N','N',2,'en',0,0,'1',''),(626,514,2022,33,'T','SQ008','XFCE',NULL,'','N','N',3,'en',0,0,'1',''),(627,546,2022,34,'T','SQ001','Recursive Nix (recursive-nix)',NULL,'','N','N',1,'en',0,0,'1',''),(625,514,2022,33,'T','SQ002','KDE',NULL,'','N','N',2,'en',0,0,'1',''),(624,514,2022,33,'T','SQ001','Gnome',NULL,'','N','N',1,'en',0,0,'1',''),(623,513,2022,33,'T','SQ006','Homegrown solution',NULL,'','N','N',6,'en',0,0,'1',NULL),(622,513,2022,33,'T','SQ005','colmena',NULL,'','N','N',5,'en',0,0,'1',NULL),(621,513,2022,33,'T','SQ004','deploy-rs',NULL,'','N','N',4,'en',0,0,'1',NULL),(620,513,2022,33,'T','SQ003','morph',NULL,'','N','N',3,'en',0,0,'1',NULL),(619,513,2022,33,'T','SQ002','NixOps',NULL,'','N','N',2,'en',0,0,'1',NULL),(618,513,2022,33,'T','SQ001','nixos-rebuild',NULL,'','N','N',1,'en',0,0,'1',NULL),(617,544,2022,34,'T','SQ005','Declarative system or server configuration/management (e.g. NixOS)',NULL,'','N','N',5,'en',0,0,'1',NULL),(616,544,2022,34,'T','SQ004','Build container images',NULL,'','N','N',4,'en',0,0,'1',NULL),(615,544,2022,34,'T','SQ003','Build and package software (e.g. nix-build)',NULL,'','N','N',3,'en',0,0,'1',NULL),(614,544,2022,34,'T','SQ002','Declarative environment management (e.g. nix-shell, nix-dev)',NULL,'','N','N',2,'en',0,0,'1',NULL),(613,544,2022,34,'T','SQ001','Imperative package management (e.g. nix-env)',NULL,'','N','N',1,'en',0,0,'1',NULL),(612,535,2022,34,'T','SQ003','Maintaining a fork',NULL,'','N','N',3,'en',0,0,'1',NULL),(611,535,2022,34,'T','SQ002','Flakes',NULL,'','N','N',2,'en',0,0,'1',NULL),(610,535,2022,34,'T','SQ001','Overlays',NULL,'','N','N',1,'en',0,0,'1',NULL),(609,533,2022,34,'T','SQ007','buildKite',NULL,'','N','N',7,'en',0,0,'1',NULL),(608,533,2022,34,'T','SQ006','Circle CI',NULL,'','N','N',6,'en',0,0,'1',NULL),(607,533,2022,34,'T','SQ005','Github Actions',NULL,'','N','N',5,'en',0,0,'1',NULL),(606,533,2022,34,'T','SQ004','Jenkins',NULL,'','N','N',4,'en',0,0,'1',NULL),(605,533,2022,34,'T','SQ003','Gitlab CI',NULL,'','N','N',3,'en',0,0,'1',NULL),(604,533,2022,34,'T','SQ002','Hercules',NULL,'','N','N',2,'en',0,0,'1',NULL),(603,533,2022,34,'T','SQ001','Hydra',NULL,'','N','N',1,'en',0,0,'1',NULL),(602,532,2022,34,'T','SQ006','Embedded/IoT devices (e.g. RPi)',NULL,'','N','N',6,'en',0,0,'1',''),(601,532,2022,34,'T','SQ005','Mobile devices',NULL,'','N','N',5,'en',0,0,'1',''),(600,532,2022,34,'T','SQ004','Production servers',NULL,'','N','N',4,'en',0,0,'1',''),(599,532,2022,34,'T','SQ003','Home servers',NULL,'','N','N',3,'en',0,0,'1',''),(598,532,2022,34,'T','SQ002','Continuous integration servers',NULL,'','N','N',2,'en',0,0,'1',''),(597,532,2022,34,'T','SQ001','Development machines',NULL,'','N','N',1,'en',0,0,'1',''),(596,531,2022,34,'T','SQ005','Windows Subsystem for Linux (WSL)',NULL,'','N','N',4,'en',0,0,'1',''),(595,531,2022,34,'T','SQ004','FreeBSD',NULL,'','N','N',3,'en',0,0,'1',''),(594,531,2022,34,'T','SQ003','GNU/Linux',NULL,'','N','N',2,'en',0,0,'1',''),(593,531,2022,34,'T','SQ002','MacOS',NULL,'','N','N',1,'en',0,0,'1',''),(592,508,2022,33,'T','SQ006','Embedded/IoT devices (e.g. RPi)',NULL,'','N','N',6,'en',0,0,'1',''),(591,508,2022,33,'T','SQ005','Mobile devices',NULL,'','N','N',5,'en',0,0,'1',''),(590,508,2022,33,'T','SQ004','Production servers',NULL,'','N','N',4,'en',0,0,'1',''),(589,508,2022,33,'T','SQ003','Home servers',NULL,'','N','N',3,'en',0,0,'1',''),(588,508,2022,33,'T','SQ002','Continuous integration servers',NULL,'','N','N',2,'en',0,0,'1',''),(587,508,2022,33,'T','SQ001','Development machines',NULL,'','N','N',1,'en',0,0,'1',''),(586,506,2022,31,'T','SQ005','FreeBSD',NULL,'','N','N',5,'en',0,0,'1',''),(585,505,2022,31,'T','SQ022','Student',NULL,'','N','N',22,'en',0,0,'1',NULL),(584,525,2022,34,'T','SQ003','3',NULL,'','N','N',3,'en',0,0,'1',''),(582,509,2022,33,'T','SQ003','3',NULL,'','N','N',4,'en',0,0,'1',''),(583,522,2022,34,'M','SQ003','For school projects',NULL,'','N','N',3,'en',0,0,'1',''),(700,636,2023,36,'T','SQ002','Windows',NULL,'','N','N',1,'en',0,0,'1',''),(701,636,2023,36,'T','SQ003','Windows Subsystem for Linux (WSL)',NULL,'','N','N',2,'en',0,0,'1',''),(702,636,2023,36,'T','SQ004','GNU/Linux',NULL,'','N','N',3,'en',0,0,'1',''),(703,639,2023,38,'Q','SQ001','1',NULL,'','N','N',1,'en',0,0,'1',''),(576,522,2022,34,'M','SQ001','For work',NULL,'','N','N',1,'en',0,0,'1',''),(577,525,2022,34,'Q','SQ001','1',NULL,'','N','N',1,'en',0,0,'1',''),(574,509,2022,33,'Q','SQ002','2',NULL,'','N','N',2,'en',0,0,'1',''),(575,519,2022,33,'M','SQ001','For work',NULL,'','N','N',1,'en',0,0,'1',''),(573,509,2022,33,'Q','SQ001','1',NULL,'','N','N',1,'en',0,0,'1',''),(572,506,2022,31,'T','SQ004','GNU/Linux',NULL,'','N','N',4,'en',0,0,'1',''),(570,506,2022,31,'T','SQ002','Windows',NULL,'','N','N',2,'en',0,0,'1',''),(571,506,2022,31,'T','SQ003','Windows Subsystem for Linux (WSL)',NULL,'','N','N',3,'en',0,0,'1',''),(746,674,2023,39,'T','SQ004','Building container images (nix bundle)',NULL,'','N','N',5,'en',0,0,'1',NULL),(745,674,2023,39,'T','SQ003','Building and packaging software (nix-build, nix build)',NULL,'','N','N',3,'en',0,0,'1',NULL),(744,674,2023,39,'T','SQ002','Development environments (nix-shell, nix shell)',NULL,'','N','N',2,'en',0,0,'1',NULL),(743,674,2023,39,'T','SQ001','Install software as a user (nix-env, nix-profile)',NULL,'','N','N',1,'en',0,0,'1',NULL),(742,665,2023,39,'T','SQ003','Maintaining a fork',NULL,'','N','N',3,'en',0,0,'1',NULL),(718,638,2023,38,'T','SQ002','Continuous integration servers',NULL,'','N','N',2,'en',0,0,'1',''),(740,665,2023,39,'T','SQ001','Overlays',NULL,'','N','N',1,'en',0,0,'1',NULL),(741,665,2023,39,'T','SQ002','Flakes',NULL,'','N','N',2,'en',0,0,'1',NULL),(739,663,2023,39,'T','SQ007','buildKite',NULL,'','N','N',7,'en',0,0,'1',NULL),(737,663,2023,39,'T','SQ005','Github Actions',NULL,'','N','N',5,'en',0,0,'1',NULL),(736,663,2023,39,'T','SQ004','Jenkins',NULL,'','N','N',4,'en',0,0,'1',NULL),(735,663,2023,39,'T','SQ003','Gitlab CI',NULL,'','N','N',3,'en',0,0,'1',NULL),(733,663,2023,39,'T','SQ001','Hydra',NULL,'','N','N',1,'en',0,0,'1',NULL),(731,662,2023,39,'T','SQ005','Mobile devices',NULL,'','N','N',5,'en',0,0,'1',''),(728,662,2023,39,'T','SQ002','Continuous integration servers',NULL,'','N','N',3,'en',0,0,'1',''),(729,662,2023,39,'T','SQ003','Home servers',NULL,'','N','N',2,'en',0,0,'1',''),(730,662,2023,39,'T','SQ004','Production servers',NULL,'','N','N',4,'en',0,0,'1',''),(727,662,2023,39,'T','SQ001','Laptops, Desktops, Workstations, Development machines',NULL,'','N','N',1,'en',0,0,'1',''),(726,661,2023,39,'T','SQ005','Windows Subsystem for Linux (WSL)',NULL,'','N','N',4,'en',0,0,'1',''),(724,661,2023,39,'T','SQ003','GNU/Linux',NULL,'','N','N',2,'en',0,0,'1',''),(721,638,2023,38,'T','SQ005','Mobile devices',NULL,'','N','N',5,'en',0,0,'1',''),(722,638,2023,38,'T','SQ006','Embedded/IoT devices',NULL,'','N','N',6,'en',0,0,'1',''),(720,638,2023,38,'T','SQ004','Production servers',NULL,'','N','N',4,'en',0,0,'1',''),(719,638,2023,38,'T','SQ003','Home servers',NULL,'','N','N',3,'en',0,0,'1',''),(694,635,2023,36,'T','SQ016','Engineer, site reliability',NULL,'','N','N',16,'en',0,0,'1',''),(695,635,2023,36,'T','SQ020','Scientist',NULL,'','N','N',20,'en',0,0,'1',''),(569,506,2022,31,'T','SQ001','MacOS',NULL,'','N','N',1,'en',0,0,'1',''),(667,0,2023,39,'T','notContribNix','What’s stopping you from contributing to Nixpkgs?','','','N','N',24,'en',0,0,'((2023X39X670.NAOK == \"Y\") and (2023X39X800.NAOK == \"A1\" or 2023X39X800.NAOK == \"A2\"))',''),(581,519,2022,33,'T','SQ003','For school projects',NULL,'','N','N',4,'en',0,0,'1',''),(580,519,2022,33,'T','SQ002','For personal projects',NULL,'','N','N',2,'en',0,0,'1',''),(579,525,2022,34,'Q','SQ002','2',NULL,'','N','N',2,'en',0,0,'1',''),(578,522,2022,34,'M','SQ002','For personal projects',NULL,'','N','N',2,'en',0,0,'1',''),(568,505,2022,31,'T','SQ015','Engineer, data',NULL,'','N','N',15,'en',0,0,'1',''),(567,505,2022,31,'T','SQ003','Data or business analyst',NULL,'','N','N',3,'en',0,0,'1',''),(565,505,2022,31,'T','SQ020','Scientist',NULL,'','N','N',20,'en',0,0,'1',''),(564,505,2022,31,'T','SQ016','Engineer, site reliability',NULL,'','N','N',16,'en',0,0,'1',''),(773,647,2023,39,'T','SQ001','Packages I needed were not available',NULL,NULL,'N',NULL,1,'en',0,0,'1',''),(665,0,2023,39,'M','extendNix','How do you extend Nixpkgs?','','','Y','N',22,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',NULL),(563,505,2022,31,'T','SQ021','Senior Executive (C-Suite, VP, etc.)',NULL,'','N','N',21,'en',0,0,'1',''),(562,505,2022,31,'T','SQ001','Academic researcher',NULL,'','N','N',1,'en',0,0,'1',''),(717,638,2023,38,'T','SQ001','Laptops, Desktops, Workstations, Development machines',NULL,'','N','N',1,'en',0,0,'1',''),(715,635,2023,36,'T','SQ022','Student',NULL,'','N','N',22,'en',0,0,'1',''),(713,652,2023,39,'M','SQ003','For school projects',NULL,'','N','N',3,'en',0,0,'1',''),(712,639,2023,38,'T','SQ003','3',NULL,'','N','N',4,'en',0,0,'1',''),(711,649,2023,38,'T','SQ003','For school projects',NULL,'','N','N',4,'en',0,0,'1',''),(710,649,2023,38,'T','SQ002','For personal projects',NULL,'','N','N',2,'en',0,0,'1',''),(686,635,2023,36,'T','SQ008','Developer, embedded applications or devices',NULL,'','N','N',8,'en',0,0,'1',''),(674,0,2023,39,'M','useNix','What do you use Nix for?','','','Y','N',12,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',NULL),(672,0,2023,39,'M','trialNix','What would cause you to try Nix?','','','Y','N',3,'en',0,0,'((2023X39X670.NAOK == \"N\") and (2023X39X671.NAOK == \"N\"))',''),(670,0,2023,39,'Y','regularUseNix','Do you regularly use Nix in any form (including NixOS)?','','','N','N',1,'en',0,0,'1',''),(738,663,2023,39,'T','SQ006','Circle CI',NULL,'','N','N',6,'en',0,0,'1',NULL),(734,663,2023,39,'T','SQ002','Hercules',NULL,'','N','N',2,'en',0,0,'1',NULL),(732,662,2023,39,'T','SQ006','Embedded/IoT devices',NULL,'','N','N',6,'en',0,0,'1',''),(725,661,2023,39,'T','SQ004','FreeBSD',NULL,'','N','N',3,'en',0,0,'1',''),(723,661,2023,39,'T','SQ002','MacOS',NULL,'','N','N',1,'en',0,0,'1',''),(716,636,2023,36,'T','SQ005','FreeBSD',NULL,'','N','N',5,'en',0,0,'1',''),(683,635,2023,36,'T','SQ005','DevOps specialist',NULL,'','N','N',5,'en',0,0,'1',''),(639,0,2023,38,'Q','likeNixOS','

What are the top three features/functionalities provided to you by NixOS?

\n\n

Please order them from most to least important.

\n','','','N','N',10,'en',0,0,'((2023X38X659.NAOK == \"Y\"))',''),(708,652,2023,39,'M','SQ002','For personal projects',NULL,'','N','N',2,'en',0,0,'1',''),(688,635,2023,36,'T','SQ019','Product manager',NULL,'','N','N',19,'en',0,0,'1',''),(689,635,2023,36,'T','SQ011','Developer, game or graphics',NULL,'','N','N',11,'en',0,0,'1',''),(561,505,2022,31,'T','SQ002','Database administrator',NULL,'','N','N',2,'en',0,0,'1',''),(560,505,2022,31,'T','SQ014','Educator',NULL,'','N','N',14,'en',0,0,'1',''),(559,505,2022,31,'T','SQ011','Developer, game or graphics',NULL,'','N','N',11,'en',0,0,'1',''),(558,505,2022,31,'T','SQ019','Product manager',NULL,'','N','N',19,'en',0,0,'1',''),(557,505,2022,31,'T','SQ013','Developer, QA or test',NULL,'','N','N',13,'en',0,0,'1',''),(705,649,2023,38,'M','SQ001','For work',NULL,'','N','N',1,'en',0,0,'1',''),(706,652,2023,39,'M','SQ001','For work',NULL,'','N','N',1,'en',0,0,'1',''),(704,639,2023,38,'Q','SQ002','2',NULL,'','N','N',2,'en',0,0,'1',''),(699,636,2023,36,'T','SQ001','MacOS',NULL,'','N','N',4,'en',0,0,'1',''),(698,635,2023,36,'T','SQ015','Engineer, data',NULL,'','N','N',15,'en',0,0,'1',''),(697,635,2023,36,'T','SQ003','Data or business analyst',NULL,'','N','N',3,'en',0,0,'1',''),(566,505,2022,31,'T','SQ018','Marketing or sales professional',NULL,'','N','N',18,'en',0,0,'1',''),(696,635,2023,36,'T','SQ018','Marketing or sales professional',NULL,'','N','N',18,'en',0,0,'1',''),(693,635,2023,36,'T','SQ021','Senior Executive (C-Suite, VP, etc.)',NULL,'','N','N',21,'en',0,0,'1',''),(691,635,2023,36,'T','SQ002','Database administrator',NULL,'','N','N',2,'en',0,0,'1',''),(692,635,2023,36,'T','SQ001','Academic researcher',NULL,'','N','N',1,'en',0,0,'1',''),(690,635,2023,36,'T','SQ014','Educator',NULL,'','N','N',14,'en',0,0,'1',''),(687,635,2023,36,'T','SQ013','Developer, QA or test',NULL,'','N','N',13,'en',0,0,'1',''),(685,635,2023,36,'T','SQ012','Developer, mobile',NULL,'','N','N',12,'en',0,0,'1',''),(684,635,2023,36,'T','SQ007','Developer, desktop or enterprise applications',NULL,'','N','N',7,'en',0,0,'1',''),(677,635,2023,36,'T','SQ010','Developer, full-stack',NULL,'','N','N',10,'en',0,0,'1',''),(678,635,2023,36,'T','SQ009','Developer, front-end',NULL,'','N','N',9,'en',0,0,'1',''),(679,635,2023,36,'T','SQ006','Developer, back-end',NULL,'','N','N',6,'en',0,0,'1',''),(680,635,2023,36,'T','SQ017','Linux enthusiast',NULL,'','N','N',17,'en',0,0,'1',''),(681,635,2023,36,'T','SQ023','System administrator',NULL,'','N','N',23,'en',0,0,'1',''),(682,635,2023,36,'T','SQ004','Data scientist or machine learning specialist',NULL,'','N','N',4,'en',0,0,'1',''),(776,647,2023,39,'T','SQ005','No support in the workplace',NULL,NULL,'N',NULL,4,'en',0,0,'1',''),(777,647,2023,39,'T','SQ006','Problems with installing or deploying Nix',NULL,NULL,'N',NULL,5,'en',0,0,'1',''),(676,0,2023,39,'M','experimentalNix','Which experimental Nix features do you use?','','','Y','N',18,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(675,0,2023,38,'T','triedStopTrialNixOS','What would cause you to try NixOS again?','','','N','N',4,'en',0,0,'((2023X38X645.NAOK == \"Y\") and (2023X38X659.NAOK == \"N\"))',''),(775,647,2023,39,'T','SQ003','Performance issues',NULL,NULL,'N',NULL,3,'en',0,0,'1',''),(673,0,2023,39,'M','triedStopTrialNix','What would cause you to try Nix again?','','','Y','N',5,'en',0,0,'((2023X39X670.NAOK == \"N\") and (2023X39X671.NAOK == \"Y\"))',''),(671,0,2023,39,'Y','triedStopNix','Did you try and stop using Nix at any point in the past?','','','N','N',2,'en',0,0,'((2023X39X670.NAOK == \"N\"))',''),(669,0,2023,40,'T','triedStopOther','What other projects/products in the Nix ecosystem that we haven’t asked about have you tried and stopped using?','','','N','N',1,'en',0,0,'1',''),(668,0,2023,40,'T','regularOther','What other projects/products in the Nix ecosystem that we haven’t asked about do you use regularly?','','','N','N',0,'en',0,0,'1',''),(774,647,2023,39,'T','SQ002','It took too much time to get things done',NULL,NULL,'N',NULL,2,'en',0,0,'1',''),(664,0,2023,39,'R','twonixNix','Which programming languages do you use in combination with Nix? Pick only the ones relevant for you. Order from most to least important.','','','N','N',20,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(663,0,2023,39,'M','ciNix','What CI do you use with Nix?','','','Y','N',19,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',NULL),(662,0,2023,39,'M','environNix','In what environments do you use Nix?','','','Y','N',11,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',NULL),(778,647,2023,39,'T','SQ007','Limited support for graphical applications',NULL,NULL,'N',NULL,6,'en',0,0,'1',''),(661,0,2023,39,'M','osNix','On which platforms do you use Nix? (Apart from NixOS. We\'ll ask about NixOS later.)','','','Y','N',10,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(660,0,2023,38,'T','trialNixOS','What would cause you to try NixOS?','','','N','N',2,'en',0,0,'((2023X38X645.NAOK == \"N\") and (2023X38X659.NAOK == \"N\"))',NULL),(772,672,2023,39,'M','SQ003','General curiosity',NULL,NULL,'N',NULL,4,'en',0,0,'1',''),(659,0,2023,38,'Y','regularNixOS','Do you use NixOS regularly?','','','N','N',0,'en',0,0,'1',''),(658,0,2023,36,'!','region','Which region do you live in?','','','N','N',0,'en',0,0,'1',''),(771,672,2023,39,'M','SQ004','Following a recommendation',NULL,NULL,'N',NULL,2,'en',0,0,'1',''),(657,0,2023,39,'T','insteadNix','If Nix didn\'t exist, what would you use instead?','','','N','N',16,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(779,647,2023,39,'T','SQ008','Found a better solution',NULL,NULL,'N',NULL,7,'en',0,0,'1',''),(656,0,2023,39,'R','dislikeNix','Which changes to Nix would you most like to see implemented? Rank from most to least important for you.','','','N','N',14,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(655,0,2023,39,'R','likeNix','

Of the features that Nix currently provides, which of them are most important for you?

\r\n','','','N','N',13,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(654,0,2023,39,'T','rznNix','Why did you start using Nix? Tell us the story.','','','N','N',9,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(780,647,2023,39,'T','SQ009','Too hard to understand',NULL,NULL,'N',NULL,8,'en',0,0,'1',''),(653,0,2023,39,'L','durationNix','How long have you been using Nix?','','','N','N',8,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(786,673,2023,39,'T','SQ006','',NULL,NULL,'N',NULL,6,'en',0,0,'1',NULL),(652,0,2023,39,'M','contextNix','In what contexts do you use Nix?','','','Y','N',7,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(651,0,2023,39,'L','frequencyNix','How often do you use Nix?','','','N','N',6,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(650,0,2023,38,'L','durationNixOS','How long have you been using NixOS?','','','N','N',7,'en',0,0,'((2023X38X659.NAOK == \"Y\"))',''),(556,505,2022,31,'T','SQ008','Developer, embedded applications or devices',NULL,'','N','N',8,'en',0,0,'1',''),(649,0,2023,38,'M','contextNixOS','In what contexts do you use NixOS?','','','Y','N',6,'en',0,0,'((2023X38X659.NAOK == \"Y\"))',''),(647,0,2023,39,'P','triedStopRznNix','Why did you stop using Nix? Specify details in the comments if needed.','','','Y','N',4,'en',0,0,'((2023X39X670.NAOK == \"N\") and (2023X39X671.NAOK == \"Y\"))',''),(648,0,2023,38,'L','frequencyNixOS','How often do you use NixOS?','','','N','N',5,'en',0,0,'((2023X38X659.NAOK == \"Y\"))',''),(636,0,2023,36,'M','os','Which operating systems do you use at least weekly? (We’ll ask about Nix/NixOS later)','','','Y','N',4,'en',0,0,'1',''),(637,0,2023,38,'T','rznNixOS','Why did you start using NixOS? Tell us the story.','','','N','N',8,'en',0,0,'((2023X38X659.NAOK == \"Y\"))',''),(646,0,2023,38,'T','triedStopRznNixOS','Why did you stop using NixOS?','','','N','N',3,'en',0,0,'((2023X38X645.NAOK == \"Y\") and (2023X38X659.NAOK == \"N\"))',''),(645,0,2023,38,'Y','triedStopNixOS','Did you try and stop using NixOS at any point in the past?','','','N','N',1,'en',0,0,'((2023X38X659.NAOK == \"N\"))',''),(644,0,2023,38,'M','desktopNixOS','Which desktop environment or window managers do you use?','','','Y','N',14,'en',0,0,'((2023X38X659.NAOK == \"Y\"))',''),(643,0,2023,38,'M','deploymentsNixOS','Which deployment tools do you use with NixOS?','','','Y','N',13,'en',0,0,'((2023X38X659.NAOK == \"Y\"))',''),(642,0,2023,37,'T','end','Anything else that you want to tell us?','','','N','N',0,'en',0,0,'1',''),(641,0,2023,38,'T','insteadNixOS','If NixOS didn\'t exist, what would you use instead?','','','N','N',12,'en',0,0,'((2023X38X659.NAOK == \"Y\"))',''),(640,0,2023,38,'T','dislikeNixOS','If you had a magic wand, what would you add, change, or remove from NixOS?','','','N','N',11,'en',0,0,'((2023X38X659.NAOK == \"Y\"))',''),(638,0,2023,38,'M','environNixOS','In what environments do you use NixOS?','','','Y','N',9,'en',0,0,'((2023X38X659.NAOK == \"Y\"))',''),(633,0,2023,36,'!','age','How old are you?','','','N','N',1,'en',0,0,'1',''),(769,672,2023,39,'M','SQ001','Dissatisfaction with current tooling',NULL,NULL,'N',NULL,1,'en',0,0,'1',''),(634,0,2023,36,'L','gender','What is your gender identity?','','','Y','N',2,'en',0,0,'1',''),(635,0,2023,36,'M','occupation','Which of the following best describes your current occupation? ','','','Y','N',3,'en',0,0,'1',''),(797,676,2023,39,'T','SQ013','Passing installables to nix repl (repl-flake)',NULL,NULL,'N',NULL,13,'en',0,0,'1',NULL),(796,676,2023,39,'T','SQ012','Impure derivations (impure-derivations)',NULL,NULL,'N',NULL,12,'en',0,0,'1',NULL),(795,676,2023,39,'T','SQ011','builtins.fetchClosure (fetch-closure)',NULL,NULL,'N',NULL,11,'en',0,0,'1',NULL),(790,676,2023,39,'T','SQ006','Automatic allocation of UIDs (auto-allocate-uids)',NULL,NULL,'N',NULL,6,'en',0,0,'1',NULL),(801,0,239157,41,'S','location','Select the rough area of origin.','','','N','N',1,'en',0,0,'1',NULL),(799,0,2023,39,'R','plWishList','For which programming languages would you like to have better Nix support? Order from most to least important.','','','N','N',21,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(800,0,2023,39,'L','involvement','Which of these best describes your involvement with the Nix ecosystem?','','','Y','N',23,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(802,0,239157,41,'M','methodoftravel','What method of travel did you use to get to the event?','','','Y','N',2,'en',0,0,'1',''),(804,802,239157,41,'T','SQ001','Bicycle',NULL,NULL,'N',NULL,1,'en',0,0,'1',NULL),(805,802,239157,41,'T','SQ002','Walking',NULL,NULL,'N',NULL,2,'en',0,0,'1',NULL),(806,802,239157,41,'T','SQ003','Car',NULL,NULL,'N',NULL,3,'en',0,0,'1',NULL),(807,802,239157,41,'T','SQ004','Airplane',NULL,NULL,'N',NULL,4,'en',0,0,'1',NULL),(808,802,239157,41,'T','SQ005','Train',NULL,NULL,'N',NULL,5,'en',0,0,'1',NULL),(809,802,239157,41,'T','SQ006','Bus',NULL,NULL,'N',NULL,6,'en',0,0,'1',NULL),(810,0,239157,41,'L','traveltime','How long did you travel until you reached the location / your hotel / accomodation?','','','N','N',7,'en',0,0,'1',NULL),(811,0,239157,41,'Y','vacation','Did you combine your visit to NixCon with a vacation?','','','N','N',8,'en',0,0,'1',''),(812,0,239157,42,'L','nixconcount','How many NixCon\'s did you visit including this years event?','','','N','N',1,'en',0,0,'1',NULL),(813,0,239157,42,'L','professional','Are you visiting NixCon in a professional or personal capacity?','','','N','N',2,'en',0,0,'1',''),(814,0,239157,42,'5','enjoy','

On a scale from 0 to 5 how much did you enjoy your time at the event?

\r\n\r\n

5 being the best, 0 the worst score.

\r\n','','','N','N',3,'en',0,0,'1',NULL),(815,0,239157,41,'5','travelcosts','

How affordable was the travel for you (monetary)?

\r\n\r\n

1 = not affordable, 5 = very affordable

\r\n\r\n

If your employers paid your travel expenses, please select the approximate value (if you had to pay from your own money) or abstain from answering.

\r\n','','','N','N',9,'en',0,0,'1',''),(816,0,239157,41,'5','hotecosts','

How affordable was the accommodation for you (monetary)?

\r\n\r\n

 

\r\n\r\n

1 = not affordable, 5 = very affordable

\r\n\r\n

If your employers paid your accommodation expenses, please select the approximate value (if you had to pay from your own money) or abstain from answering.

\r\n','','','N','N',10,'en',0,0,'1',''),(817,0,239157,42,'5','enjoytalks','Did you enjoy talks? (0 = not at all, 5 = very much)','','','N','N',4,'en',0,0,'1',''),(818,0,239157,42,'5','hallway','

How much did you participate in the hallway track?

\r\n\r\n

0 = not at all

\r\n\r\n

5 = only hallway track

\r\n','','','N','N',5,'en',0,0,'1',''),(819,0,239157,41,'N','daysbefore','

How many days before the event did you arrive.

\r\n','','','N','N',11,'en',0,0,'1',''),(820,0,239157,41,'N','daysafter','

How many days after the even are you departing?

\r\n','','','N','N',12,'en',0,0,'1',''),(821,0,239157,42,'T','dislike','What did you dislike about the event?','','','N','N',6,'en',0,0,'1',NULL),(822,0,239157,42,'T','like','What did you like about the event?','','','N','N',7,'en',0,0,'1',NULL),(823,0,239157,42,'T','missing','What did you miss at the event?','','','N','N',8,'en',0,0,'1',NULL),(824,0,239157,42,'L','training','Did you attend the training?','','','N','N',9,'en',0,0,'1',NULL),(825,0,346552,43,'M','usertype','What\'s your Nix status?','','','Y','N',0,'en',0,0,'1',''),(826,0,346552,43,'!','userlocation','

Which state/province/territory are you located in?

\r\n\r\n

(Areas across Canada, USA, and Mexico)

\r\n','','','Y','N',3,'en',0,0,'1',''),(827,0,346552,43,'L','eventlocation','Which region would you be most likely to attend a NixCon event in?','','','Y','N',4,'en',0,0,'1',''),(828,0,346552,43,'S','locationcity','Do you have a specific city in mind that would be ideal for hosting NixCon North America?','','','N','N',5,'en',0,0,'1',''),(829,0,346552,43,'L','traveldistance','How far would you be willing to travel for the event?','','','Y','N',6,'en',0,0,'1',NULL),(830,0,346552,43,'M','eventweekday','Which days of the week are most convenient for you to attend the event?','','','N','N',7,'en',0,0,'1',''),(831,830,346552,43,'T','SQ001','Weekdays',NULL,'','N',NULL,1,'en',0,0,'1',''),(832,830,346552,43,'T','SQ002','Weekends',NULL,'','N',NULL,2,'en',0,0,'1',NULL),(833,0,346552,43,'L','volunteer','Would you be interested in volunteering for the event?','','','N','N',8,'en',0,0,'1',NULL),(834,0,346552,43,'T','comments','Do you have any other comments or suggestions for NixCon North America?','','','N','N',9,'en',0,0,'1',NULL),(835,825,346552,43,'T','SQ001','Just getting started with Nix!',NULL,'','N',NULL,2,'en',0,0,'1',''),(836,825,346552,43,'T','SQ002','Advanced Nix user ',NULL,'','N',NULL,4,'en',0,0,'1',''),(837,825,346552,43,'T','SQ003','Heard about it',NULL,'','N',NULL,1,'en',0,0,'1',''),(838,0,346552,43,'M','attendenceReason','What is the main reason you\'d want to attend NixCon in North America?','','','Y','N',1,'en',0,0,'1',''),(840,838,346552,43,'T','SQ002','Meet more Nixers',NULL,'','N',NULL,1,'en',0,0,'1',''),(841,838,346552,43,'T','SQ003','Learn Nix basics and attend Nix trainings',NULL,'','N',NULL,2,'en',0,0,'1',''),(842,838,346552,43,'T','SQ004','Learn advanced Nix topics',NULL,'','N',NULL,3,'en',0,0,'1',''),(843,838,346552,43,'T','SQ005','Hack on Nix',NULL,'','N',NULL,4,'en',0,0,'1',''),(844,838,346552,43,'T','SQ006','Find a Nix job',NULL,'','N',NULL,5,'en',0,0,'1',''),(845,825,346552,43,'T','SQ004','Contributor',NULL,'','N',NULL,3,'en',0,0,'1',NULL),(846,0,346552,43,'H','locationpreference','Where would you like or be able to attend?','','','N','N',2,'en',0,0,'1',NULL),(847,846,346552,43,'T','SQ001','US West Coast',NULL,'','N',NULL,1,'en',0,0,'1',NULL),(848,846,346552,43,'T','SQ002','US Midwest',NULL,'','N',NULL,2,'en',0,0,'1',NULL),(849,846,346552,43,'T','SQ003','US South',NULL,'','N',NULL,3,'en',0,0,'1',NULL),(850,846,346552,43,'T','SQ004','US East Coast',NULL,'','N',NULL,4,'en',0,0,'1',NULL),(851,846,346552,43,'T','SQ005','Canada',NULL,'','N',NULL,5,'en',0,0,'1',NULL),(852,846,346552,43,'T','SQ006','Mexico',NULL,'','N',NULL,6,'en',0,0,'1',NULL),(853,846,346552,43,'T','SQ007','Central America',NULL,'','N',NULL,7,'en',0,0,'1',NULL),(854,846,346552,43,'T','SQ008','South America',NULL,'','N',NULL,8,'en',0,0,'1',NULL),(855,0,248687,44,'S','jobtitle','What is your job title?','','','N','N',1,'en',0,0,'1',''),(856,0,248687,44,'S','companyname','What is the name of the company you work for?','','','N','N',2,'en',0,0,'1',''),(857,0,248687,44,'T','howhear','How did you hear about NixCon?','','','N','N',3,'en',0,0,'1',''),(858,0,248687,44,'T','whyattend','Why did you attend NixCon?','','','N','N',4,'en',0,0,'1',''),(859,0,248687,44,'L','usenixbefore','Have you used Nix before?','','','Y','N',5,'en',0,0,'1',''),(860,0,248687,44,'L','usenixhome','Do you use Nix at home?','','','Y','N',6,'en',0,0,'1',''),(861,0,248687,44,'L','usenixwork','Do you use Nix at work?','','','Y','N',7,'en',0,0,'1',''),(862,0,248687,44,'L','howfamiliarnix','How familiar are you with Nix?','','','N','N',8,'en',0,0,'1',''),(863,0,248687,47,'A','contentlikertscale','Rate the following with 1 being negative and 5 being positive.','','','N','N',1,'en',0,0,'1',''),(867,0,248687,47,'O','enoughtimediscussion','Was there enough time for discussion?','','','N','N',4,'en',0,0,'1',''),(864,863,248687,47,'A','SQ001','In your opinion, did the conference meet its objectives?',NULL,'','N',NULL,1,'en',0,0,'1',''),(865,863,248687,47,'A','SQ003','How well was the conference structured?',NULL,'','N',NULL,2,'en',0,0,'1',''),(866,863,248687,47,'A','SQ002','How satisfied are you with the variety of topics presented at the conference?',NULL,'','N',NULL,3,'en',0,0,'1',''),(868,0,248687,47,'T','mostvaluablesession','Which session did you find most valuable?','','','N','N',5,'en',0,0,'1',NULL),(869,0,248687,47,'T','futuretopics','Which topics would you like to see covered at future conferences?','','','N','N',6,'en',0,0,'1',NULL),(870,0,248687,49,'A','generallikertscale','Rate the following with 1 being negative and 5 being positive.','','','N','N',1,'en',0,0,'1',NULL),(871,870,248687,49,'T','SQ001','How would you rate your overall experience at the event?',NULL,'','N',NULL,1,'en',0,0,'1',NULL),(872,870,248687,49,'T','SQ004','How satisfied were you with the networking opportunities provided?',NULL,'','N',NULL,2,'en',0,0,'1',NULL),(873,870,248687,49,'T','SQ003','How likely are you to recommend this event to a friend?',NULL,'','N',NULL,3,'en',0,0,'1',NULL),(874,870,248687,49,'T','SQ002','Were you able to easily find all of the information you need about our event?',NULL,'','N',NULL,4,'en',0,0,'1',NULL),(875,0,248687,49,'T','eventlikemost','What did you like most about the event?','','','N','N',5,'en',0,0,'1',NULL),(876,0,248687,49,'T','eventlikeleast','What did you like least about the event?','','','N','N',6,'en',0,0,'1',NULL),(877,0,248687,49,'T','eventimprovefuture','How could we improve future events?','','','N','N',7,'en',0,0,'1',NULL),(878,0,248687,49,'L','plantoreturn','Are you planning to return next year?','','','N','N',8,'en',0,0,'1',''),(879,0,248687,49,'T','bigtakeaway','What was your biggest takeaway from this event?','','','N','N',9,'en',0,0,'1',NULL),(881,0,248687,44,'L','howmanyyears','How many years have you used Nix?','','','N','N',9,'en',0,0,'1',NULL),(882,0,2024,50,'L','q02','What is your age?','','','N','N',2,'en',0,0,'1',''),(883,0,2024,50,'L','q03','How do you identify?','','','Y','N',3,'en',0,0,'1',''),(884,0,2024,50,'L','q04','Including any education, how many years have you been programming in total?','','','Y','N',4,'en',0,0,'1',''),(885,0,2024,50,'L','q05','Which of the following describes your main occupation?','','','Y','N',5,'en',0,0,'1',''),(1214,1040,2024,50,'T','SQ005','iOS',NULL,'','N',NULL,5,'en',0,0,'1',NULL),(1212,1040,2024,50,'T','SQ003','Windows',NULL,'','N',NULL,3,'en',0,0,'1',NULL),(1213,1040,2024,50,'T','SQ004','BSD',NULL,'','N',NULL,4,'en',0,0,'1',NULL),(1296,1149,2024,50,'T','SQ001','I don\'t plan to contribute.',NULL,'','N',NULL,1,'en',0,0,'1',''),(1161,0,2024,50,'L','q26','When you need to get help with Nix or NixOS, how often do you find an acceptable answer?','','','N','N',26,'en',0,0,'1',''),(1298,1149,2024,50,'T','SQ003','I would like to contribute, but I don\'t know how to get started.',NULL,'','N',NULL,3,'en',0,0,'1',''),(1297,1149,2024,50,'T','SQ002','Everything I want to contribute to is already being worked on and I don\'t feel the need to get involved.',NULL,'','N',NULL,2,'en',0,0,'1',''),(891,0,2024,50,'T','q27','How can we improve this survey?','','','N','N',27,'en',0,0,'1',''),(1299,1149,2024,50,'T','SQ004','I tried to contribute something, but got stuck after I started.',NULL,'','N',NULL,4,'en',0,0,'1',''),(1300,1149,2024,50,'T','SQ005','I received unhelpful feedback.',NULL,'','N',NULL,5,'en',0,0,'1',''),(1301,1149,2024,50,'T','SQ006','It took longer than I expected to receive feedback.',NULL,'','N',NULL,6,'en',0,0,'1',''),(1302,1149,2024,50,'T','SQ007','I want to get involved in something being worked on, but don\'t know how to start.',NULL,'','N',NULL,7,'en',0,0,'1',''),(1303,1149,2024,50,'T','SQ008','I can\'t contribute because my company forbids it.',NULL,'','N',NULL,8,'en',0,0,'1',''),(1291,1077,2024,50,'T','SQ049','Swift',NULL,'','N',NULL,49,'en',0,0,'1',''),(1290,1077,2024,50,'T','SQ048','Solidity',NULL,'','N',NULL,48,'en',0,0,'1',''),(1289,1077,2024,50,'T','SQ047','Scala',NULL,'','N',NULL,47,'en',0,0,'1',''),(1288,1077,2024,50,'T','SQ046','SQL',NULL,'','N',NULL,46,'en',0,0,'1',''),(1287,1077,2024,50,'T','SQ045','SAS',NULL,'','N',NULL,45,'en',0,0,'1',''),(1286,1077,2024,50,'T','SQ044','Rust',NULL,'','N',NULL,44,'en',0,0,'1',''),(1285,1077,2024,50,'T','SQ043','Ruby',NULL,'','N',NULL,43,'en',0,0,'1',''),(1284,1077,2024,50,'T','SQ042','Raku',NULL,'','N',NULL,42,'en',0,0,'1',''),(1292,1077,2024,50,'T','SQ050','TypeScript',NULL,'','N',NULL,50,'en',0,0,'1',''),(1293,1077,2024,50,'T','SQ051','VBA',NULL,'','N',NULL,51,'en',0,0,'1',''),(1294,1077,2024,50,'T','SQ052','Visual Basic (.Net)',NULL,'','N',NULL,52,'en',0,0,'1',''),(1295,1077,2024,50,'T','SQ053','Zig',NULL,'','N',NULL,53,'en',0,0,'1',''),(1077,0,2024,50,'M','q18','Which software ecosystems do you use Nix with?','','','N','N',18,'en',0,0,'1',''),(907,0,2024,50,'L','q01','Where do you live?','','','N','N',1,'en',0,0,'1',''),(1304,1149,2024,50,'T','SQ009','I was able to contribute on my own.',NULL,'','N',NULL,9,'en',0,0,'1',''),(1076,0,2024,50,'S','q16','Which version of Nix do you use? (only write the SemVer, e.g. \"2.18.11\", get it with `nix-env --version`)','','','N','N',16,'en',0,0,'1',''),(1075,1067,2024,50,'T','SQ007','Embedded/IoT devices',NULL,'','N',NULL,7,'en',0,0,'1',''),(1074,1067,2024,50,'T','SQ006','Mobile devices',NULL,'','N',NULL,6,'en',0,0,'1',''),(1071,1067,2024,50,'T','SQ003','Home servers',NULL,'','N',NULL,3,'en',0,0,'1',''),(1072,1067,2024,50,'T','SQ004','Continuous integration servers',NULL,'','N',NULL,4,'en',0,0,'1',''),(1073,1067,2024,50,'T','SQ005','Production servers',NULL,'','N',NULL,5,'en',0,0,'1',''),(1070,1067,2024,50,'T','SQ002','Laptops, Desktops, Workstations, Development machines',NULL,'','N',NULL,2,'en',0,0,'1',''),(1235,1059,2024,50,'T','SQ005','BSD',NULL,'','N',NULL,5,'en',0,0,'1',''),(1234,1059,2024,50,'T','SQ004','Windows (via WSL)',NULL,'','N',NULL,4,'en',0,0,'1',''),(1233,1059,2024,50,'T','SQ003','macOS',NULL,'','N',NULL,3,'en',0,0,'1',''),(1232,1059,2024,50,'T','SQ002','GNU/Linux',NULL,'','N',NULL,2,'en',0,0,'1',''),(1231,1059,2024,50,'T','SQ001','I don\'t use Nix',NULL,'','N',NULL,1,'en',0,0,'1',''),(1067,0,2024,50,'M','q15','In what environments do you use Nix?','','','N','N',15,'en',0,0,'1',''),(1069,1067,2024,50,'T','SQ001','I don\'t use Nix',NULL,'','N',NULL,1,'en',0,0,'1',''),(1236,1059,2024,50,'T','SQ006','Android',NULL,'','N',NULL,6,'en',0,0,'1',''),(1226,1052,2024,50,'T','SQ001','A. I love the idea behind Nix',NULL,'','N',NULL,1,'en',0,0,'1',''),(1059,0,2024,50,'M','q13','On which operating systems do you use Nix currently?','','','N','N',13,'en',0,0,'1',''),(1229,1052,2024,50,'T','SQ004','D. I (want to) work on Nix',NULL,'','N',NULL,4,'en',0,0,'1',''),(1227,1052,2024,50,'T','SQ002','B. I\'m curious how Nix works',NULL,'','N',NULL,2,'en',0,0,'1',''),(1228,1052,2024,50,'T','SQ003','C. I use Nix to get things done',NULL,'','N',NULL,3,'en',0,0,'1',''),(1052,0,2024,50,'M','q12','

Which user types do you identify with? Select all that apply

\r\n\r\n
    \r\n
  • Type A: You love the idea behind Nix or NixOS.
    Maybe you spread the word among friends and coworkers.
    Maybe you are interested in or enthusiastic about any of the following:\r\n
      \r\n
    • Free and open source software
    • \r\n
    • Linux
    • \r\n
    • Home automation
    • \r\n
    • Online communities
    • \r\n
    • Distro-hopping
    • \r\n
    \r\n
  • \r\n
  • Type B. You’re here because you’re curious about Nix and how it works.
    Maybe you enjoy or want to learn functional programming, or you just want to learn new things.
    Maybe you identify yourself as:\r\n
      \r\n
    • Nix-curious developer
    • \r\n
    • Student of a technical field
    • \r\n
    • Educator
    • \r\n
    • Academic researcher
    • \r\n
    \r\n
  • \r\n
  • Type C: You use Nix or NixOS to get things done or boost your team’s productivity, you learn it to grow your career opportunities, or you have to use it on the job because someone said so.
    Maybe you identify yourself as:\r\n
      \r\n
    • System administrator
    • \r\n
    • Employee developer
    • \r\n
    • DevOps engineer
    • \r\n
    • Natural scientist
    • \r\n
    • Open source software author
    • \r\n
    • Early-career professional
    • \r\n
    \r\n
  • \r\n
  • Type D: You work or want to work on the Nix ecosystem rather than just with it.
    You are at least one of the following:\r\n
      \r\n
    • Aspiring contributor
    • \r\n
    • Novice contributor
    • \r\n
    • Drive-by contributor
    • \r\n
    • Package maintainer
    • \r\n
    • Code owner
    • \r\n
    • Community team member
    • \r\n
    • Sponsor
    • \r\n
    \r\n
  • \r\n
  • Type E: You make the strategic decisions for your team or company: which technologies to adopt, which skills to train your employees in, which projects to support or invest in, which services or products to offer.
    Maybe you’re a:\r\n
      \r\n
    • Entrepreneur
    • \r\n
    • Team lead
    • \r\n
    • Software architect
    • \r\n
    • CTO
    • \r\n
    • Sales executive
    • \r\n
    • Public service administrator
    • \r\n
    \r\n
  • \r\n
\r\n','','','N','N',12,'en',0,0,'1',''),(1225,1041,2024,50,'T','SQ010','I develop a tool based on or integrating with Nix, Nixpkgs, or NixOS',NULL,'','N',NULL,10,'en',0,0,'1',NULL),(1224,1041,2024,50,'T','SQ009','I have merge access to Nixpkgs',NULL,'','N',NULL,9,'en',0,0,'1',NULL),(1223,1041,2024,50,'T','SQ008','I actively maintain packages in Nixpkgs',NULL,'','N',NULL,8,'en',0,0,'1',NULL),(1222,1041,2024,50,'T','SQ007','I contribute packages or patches to Nixpkgs',NULL,'','N',NULL,7,'en',0,0,'1',NULL),(1211,1040,2024,50,'T','SQ002','macOS',NULL,'','N',NULL,2,'en',0,0,'1',NULL),(1305,1149,2024,50,'T','SQ010','I was able to contribute with assistance from others in the community.',NULL,'','N',NULL,10,'en',0,0,'1',''),(1149,0,2024,50,'M','q25','If you want to contribute or have contributed in the past to Nixpkgs, please select all that apply:','','','N','N',25,'en',0,0,'1',''),(1221,1041,2024,50,'T','SQ006','I develop software with Nix',NULL,'','N',NULL,6,'en',0,0,'1',NULL),(1215,1040,2024,50,'T','SQ006','Android',NULL,'','N',NULL,6,'en',0,0,'1',NULL),(1040,0,2024,50,'M','q06','Which operating systems do you currently use?','','','N','N',6,'en',0,0,'1',''),(1041,0,2024,50,'M','q07','Which of these best describe your involvement with the Nix ecosystem?','','','N','N',7,'en',0,0,'1',NULL),(1217,1041,2024,50,'T','SQ002','I don\'t use NixOS',NULL,'','N',NULL,2,'en',0,0,'1',NULL),(1218,1041,2024,50,'T','SQ003','I use NixOS',NULL,'','N',NULL,3,'en',0,0,'1',NULL),(1219,1041,2024,50,'T','SQ004','I manage or develop for machines running NixOS',NULL,'','N',NULL,4,'en',0,0,'1',NULL),(1220,1041,2024,50,'T','SQ005','I use Nix to install software',NULL,'','N',NULL,5,'en',0,0,'1',NULL),(1148,0,2024,50,'R','q24','

When you need to get help with Nix or NixOS, which resources do you use most often?

\r\n\r\n

If you always start with a web search, please choose which resources you go to most often among the results.

\r\n','','','N','N',24,'en',0,0,'1',''),(1147,0,2024,50,'R','q23','Which objects do you interact with or search for most often across the ecosystem?','','','N','N',23,'en',0,0,'1',''),(1146,0,2024,50,'L','q11','How did you find out about it?','','','N','N',11,'en',0,0,'1',''),(1145,0,2024,50,'L','q10','

Did you hear about Nix or NixOS first?

\r\n\r\n

If you heard about both at the same time, select which one first made you interested in the Nix ecosystem.

\r\n','','','N','N',10,'en',0,0,'1',''),(1144,0,2024,50,'T','q22','If you want to use NixOS but can\'t use NixOS, please tell us what prevents it and what would help you.','','','N','N',22,'en',0,0,'1',''),(1143,0,2024,50,'T','q21','If Nix is not part of your usual set of tools, please tell us what prevents it and what would help you.','','','N','N',21,'en',0,0,'1',''),(1142,0,2024,50,'L','q20','Do you currently consider Nix as part of your usual set of tools?','','','N','N',20,'en',0,0,'1',''),(1141,0,2024,50,'L','q09','How would you describe your skill level with Nix?','','','N','N',9,'en',0,0,'1',''),(1132,0,2024,50,'M','q14','How did you install Nix?','','','N','N',14,'en',0,0,'1',''),(1241,1132,2024,50,'T','SQ005','From source',NULL,'','N',NULL,5,'en',0,0,'1',''),(1240,1132,2024,50,'T','SQ004','With DeterminateSystems/nix-installer',NULL,'','N',NULL,4,'en',0,0,'1',''),(1239,1132,2024,50,'T','SQ003','With another package manager',NULL,'','N',NULL,3,'en',0,0,'1',''),(1238,1132,2024,50,'T','SQ002','With the official installer',NULL,'','N',NULL,2,'en',0,0,'1',''),(1237,1132,2024,50,'T','SQ001','NixOS',NULL,'','N',NULL,1,'en',0,0,'1',''),(1140,0,2024,50,'L','q08','For how many years have you been using Nix in total?','','','N','N',8,'en',0,0,'1',''),(1243,1077,2024,50,'T','SQ001','I don\'t use Nix',NULL,'','N',NULL,1,'en',0,0,'1',''),(1244,1077,2024,50,'T','SQ002','NixOS configurations',NULL,'','N',NULL,2,'en',0,0,'1',''),(1245,1077,2024,50,'T','SQ003','APL',NULL,'','N',NULL,3,'en',0,0,'1',''),(1246,1077,2024,50,'T','SQ004','Ada',NULL,'','N',NULL,4,'en',0,0,'1',''),(1247,1077,2024,50,'T','SQ005','Apex',NULL,'','N',NULL,5,'en',0,0,'1',''),(1248,1077,2024,50,'T','SQ006','Assembly',NULL,'','N',NULL,6,'en',0,0,'1',''),(1249,1077,2024,50,'T','SQ007','Bash/Shell (all shells)',NULL,'','N',NULL,7,'en',0,0,'1',''),(1250,1077,2024,50,'T','SQ008','C',NULL,'','N',NULL,8,'en',0,0,'1',''),(1251,1077,2024,50,'T','SQ009','C#',NULL,'','N',NULL,9,'en',0,0,'1',''),(1252,1077,2024,50,'T','SQ010','C++',NULL,'','N',NULL,10,'en',0,0,'1',''),(1253,1077,2024,50,'T','SQ011','Clojure',NULL,'','N',NULL,11,'en',0,0,'1',''),(1254,1077,2024,50,'T','SQ012','Cobol',NULL,'','N',NULL,12,'en',0,0,'1',''),(1255,1077,2024,50,'T','SQ013','Crystal',NULL,'','N',NULL,13,'en',0,0,'1',''),(1256,1077,2024,50,'T','SQ014','Dart',NULL,'','N',NULL,14,'en',0,0,'1',''),(1257,1077,2024,50,'T','SQ015','Delphi',NULL,'','N',NULL,15,'en',0,0,'1',''),(1258,1077,2024,50,'T','SQ016','Elixir',NULL,'','N',NULL,16,'en',0,0,'1',''),(1259,1077,2024,50,'T','SQ017','Erlang',NULL,'','N',NULL,17,'en',0,0,'1',''),(1260,1077,2024,50,'T','SQ018','F#',NULL,'','N',NULL,18,'en',0,0,'1',''),(1261,1077,2024,50,'T','SQ019','Flow',NULL,'','N',NULL,19,'en',0,0,'1',''),(1262,1077,2024,50,'T','SQ020','Fortran',NULL,'','N',NULL,20,'en',0,0,'1',''),(1263,1077,2024,50,'T','SQ021','GDScript',NULL,'','N',NULL,21,'en',0,0,'1',''),(1264,1077,2024,50,'T','SQ022','Go',NULL,'','N',NULL,22,'en',0,0,'1',''),(1265,1077,2024,50,'T','SQ023','Groovy',NULL,'','N',NULL,23,'en',0,0,'1',''),(1266,1077,2024,50,'T','SQ024','HTML/CSS',NULL,'','N',NULL,24,'en',0,0,'1',''),(1267,1077,2024,50,'T','SQ025','Haskell',NULL,'','N',NULL,25,'en',0,0,'1',''),(1268,1077,2024,50,'T','SQ026','Java',NULL,'','N',NULL,26,'en',0,0,'1',''),(1269,1077,2024,50,'T','SQ027','JavaScript',NULL,'','N',NULL,27,'en',0,0,'1',''),(1270,1077,2024,50,'T','SQ028','Julia',NULL,'','N',NULL,28,'en',0,0,'1',''),(1271,1077,2024,50,'T','SQ029','Kotlin',NULL,'','N',NULL,29,'en',0,0,'1',''),(1272,1077,2024,50,'T','SQ030','Lisp',NULL,'','N',NULL,30,'en',0,0,'1',''),(1273,1077,2024,50,'T','SQ031','Lua',NULL,'','N',NULL,31,'en',0,0,'1',''),(1274,1077,2024,50,'T','SQ032','MATLAB',NULL,'','N',NULL,32,'en',0,0,'1',''),(1275,1077,2024,50,'T','SQ033','Nim',NULL,'','N',NULL,33,'en',0,0,'1',''),(1276,1077,2024,50,'T','SQ034','OCaml',NULL,'','N',NULL,34,'en',0,0,'1',''),(1277,1077,2024,50,'T','SQ035','Objective-C',NULL,'','N',NULL,35,'en',0,0,'1',''),(1278,1077,2024,50,'T','SQ036','PHP',NULL,'','N',NULL,36,'en',0,0,'1',''),(1279,1077,2024,50,'T','SQ037','Perl',NULL,'','N',NULL,37,'en',0,0,'1',''),(1280,1077,2024,50,'T','SQ038','PowerShell',NULL,'','N',NULL,38,'en',0,0,'1',''),(1281,1077,2024,50,'T','SQ039','Prolog',NULL,'','N',NULL,39,'en',0,0,'1',''),(1282,1077,2024,50,'T','SQ040','Python',NULL,'','N',NULL,40,'en',0,0,'1',''),(1283,1077,2024,50,'T','SQ041','R',NULL,'','N',NULL,41,'en',0,0,'1',''),(1210,1040,2024,50,'T','SQ001','GNU/Linux',NULL,'','N',NULL,1,'en',0,0,'1',NULL),(1216,1041,2024,50,'T','SQ001','I don\'t use Nix',NULL,'','N',NULL,1,'en',0,0,'1',NULL),(1179,0,2024,50,'M','q17','Which NixOS releases do you use?','','','N','N',17,'en',0,0,'1',''),(1181,1179,2024,50,'T','SQ001','unstable',NULL,'','N',NULL,1,'en',0,0,'1',''),(1182,1179,2024,50,'T','SQ002','24.05',NULL,'','N',NULL,2,'en',0,0,'1',''),(1183,1179,2024,50,'T','SQ003','23.11',NULL,'','N',NULL,3,'en',0,0,'1',''),(1184,1179,2024,50,'T','SQ004','23.05',NULL,'','N',NULL,4,'en',0,0,'1',''),(1185,1179,2024,50,'T','SQ005','older',NULL,'','N',NULL,5,'en',0,0,'1',''),(1186,1179,2024,50,'T','SQ006','I don\'t know',NULL,'','N',NULL,6,'en',0,0,'1',''),(1187,1179,2024,50,'T','SQ007','I don\'t use NixOS',NULL,'','N',NULL,7,'en',0,0,'1',''),(1188,0,2024,50,'M','q19','Which Nix experimental features do you use?','','','N','N',19,'en',0,0,'1',''),(1190,1188,2024,50,'T','SQ001','Automatic UID allocation (`auto-allocate-uids`)',NULL,'','N',NULL,1,'en',0,0,'1',''),(1191,1188,2024,50,'T','SQ002','Content-addressed derivations (`ca-derivations`)',NULL,'','N',NULL,2,'en',0,0,'1',''),(1192,1188,2024,50,'T','SQ003','Use cgroups in execution environments (Linux) (`cgroups`)',NULL,'','N',NULL,3,'en',0,0,'1',''),(1193,1188,2024,50,'T','SQ004','Allow impure environment variables in the execution environment (`configurable-impure-env`)',NULL,'','N',NULL,4,'en',0,0,'1',''),(1194,1188,2024,50,'T','SQ005','Allow forcing trust settings for the Nix daemon (`daemon-trust-override`)',NULL,'','N',NULL,5,'en',0,0,'1',''),(1195,1188,2024,50,'T','SQ006','Dynamic derivations (`dynamic-derivations`)',NULL,'','N',NULL,6,'en',0,0,'1',''),(1196,1188,2024,50,'T','SQ007','`builtins.fetchClosure` (`fetch-closure`)',NULL,'','N',NULL,7,'en',0,0,'1',''),(1197,1188,2024,50,'T','SQ008','`builtins.fetchTree` (`fetch-tree`)',NULL,'','N',NULL,8,'en',0,0,'1',''),(1198,1188,2024,50,'T','SQ009','Flakes (`flakes`)',NULL,'','N',NULL,9,'en',0,0,'1',''),(1199,1188,2024,50,'T','SQ010','Git hashing for store objects (`git-hashing`)',NULL,'','N',NULL,10,'en',0,0,'1',''),(1200,1188,2024,50,'T','SQ011','Impure derivations (`impure-derivations`)',NULL,'','N',NULL,11,'en',0,0,'1',''),(1201,1188,2024,50,'T','SQ012','Local overlay store (`local-overlay-store`)',NULL,'','N',NULL,12,'en',0,0,'1',''),(1202,1188,2024,50,'T','SQ013','Mounted SSH store (`mounted-ssh-store`)',NULL,'','N',NULL,13,'en',0,0,'1',''),(1203,1188,2024,50,'T','SQ014','`nix` command line tools (`nix-command`)',NULL,'','N',NULL,14,'en',0,0,'1',''),(1204,1188,2024,50,'T','SQ015','Disallow literal URL (`no-url-literals`)',NULL,'','N',NULL,15,'en',0,0,'1',''),(1205,1188,2024,50,'T','SQ016','Allow parsing timestamps in `builtins.fromTOML` (`parse-toml-timestamps`)',NULL,'','N',NULL,16,'en',0,0,'1',''),(1206,1188,2024,50,'T','SQ017','Allow `read-only` on local stores `(`read-only-local-store`)',NULL,'','N',NULL,17,'en',0,0,'1',''),(1207,1188,2024,50,'T','SQ018','Allow derivation builders to call Nix (`recursive-nix`)',NULL,'','N',NULL,18,'en',0,0,'1',''),(1208,1188,2024,50,'T','SQ019','Verify Git commit signatures with `builtins.fetchGit` (`verified-fetches`)',NULL,'','N',NULL,19,'en',0,0,'1',''),(1230,1052,2024,50,'T','SQ005','E. I\'m a decision-maker',NULL,'','N',NULL,5,'en',0,0,'1',''),(1242,1132,2024,50,'T','SQ006','Other',NULL,'','N',NULL,6,'en',0,0,'1',''); +/*!40000 ALTER TABLE `limesurvey_questions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_quota` +-- + +DROP TABLE IF EXISTS `limesurvey_quota`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_quota` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `sid` int(11) DEFAULT NULL, + `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `qlimit` int(11) DEFAULT NULL, + `action` int(11) DEFAULT NULL, + `active` int(11) NOT NULL DEFAULT 1, + `autoload_url` int(11) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `limesurvey_idx1_quota` (`sid`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_quota` +-- + +LOCK TABLES `limesurvey_quota` WRITE; +/*!40000 ALTER TABLE `limesurvey_quota` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_quota` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_quota_languagesettings` +-- + +DROP TABLE IF EXISTS `limesurvey_quota_languagesettings`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_quota_languagesettings` ( + `quotals_id` int(11) NOT NULL AUTO_INCREMENT, + `quotals_quota_id` int(11) NOT NULL DEFAULT 0, + `quotals_language` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', + `quotals_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `quotals_message` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, + `quotals_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `quotals_urldescrip` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`quotals_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_quota_languagesettings` +-- + +LOCK TABLES `limesurvey_quota_languagesettings` WRITE; +/*!40000 ALTER TABLE `limesurvey_quota_languagesettings` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_quota_languagesettings` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_quota_members` +-- + +DROP TABLE IF EXISTS `limesurvey_quota_members`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_quota_members` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `sid` int(11) DEFAULT NULL, + `qid` int(11) DEFAULT NULL, + `quota_id` int(11) DEFAULT NULL, + `code` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `limesurvey_idx1_quota_members` (`sid`,`qid`,`quota_id`,`code`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_quota_members` +-- + +LOCK TABLES `limesurvey_quota_members` WRITE; +/*!40000 ALTER TABLE `limesurvey_quota_members` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_quota_members` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_saved_control` +-- + +DROP TABLE IF EXISTS `limesurvey_saved_control`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_saved_control` ( + `scid` int(11) NOT NULL AUTO_INCREMENT, + `sid` int(11) NOT NULL DEFAULT 0, + `srid` int(11) NOT NULL DEFAULT 0, + `identifier` text COLLATE utf8mb4_unicode_ci NOT NULL, + `access_code` text COLLATE utf8mb4_unicode_ci NOT NULL, + `email` varchar(192) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `ip` text COLLATE utf8mb4_unicode_ci NOT NULL, + `saved_thisstep` text COLLATE utf8mb4_unicode_ci NOT NULL, + `status` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `saved_date` datetime NOT NULL, + `refurl` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`scid`), + KEY `limesurvey_idx1_saved_control` (`sid`), + KEY `limesurvey_idx2_saved_control` (`srid`) +) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_saved_control` +-- + +LOCK TABLES `limesurvey_saved_control` WRITE; +/*!40000 ALTER TABLE `limesurvey_saved_control` DISABLE KEYS */; +INSERT INTO `limesurvey_saved_control` VALUES (1,2022,834,'cole-h','$2y$10$sGqFWIT6hRtiZ83vCuODF.KainsakU7lxUGW4XoJ88by.IqWwlucy','cole.e.helbling@outlook.com','','3','S','2022-03-02 16:00:15','https://t.co/'),(2,2022,912,'Sealed','$2y$10$Q9W6Ngl4Of62tPSZAfgev.GPVzICWkZ4suqJ/hrkwIkPOWY.7QVDu','lab.sealedsensesproject@gmail.com','','5','S','2022-03-02 18:36:01','https://survey.nixos.org/2022'),(10,2023,1551,'dgdkeifbsvsnkcbs','$2y$10$VZ8G5dEYmhLvaX2NGSxbOOEC.C0/qHtxUa5SWu54Kef8o7I/Rq842','','','4','S','2023-07-05 10:02:11','https://t.co/'),(7,2022,1808,'lilyinstarlight','$2y$10$MIu1xtphXI831yx5UKtsbOd32i53/ZepyHYOrMvKNPVt4bCGWeI1u','lily@lily.flowers','','2','S','2022-03-14 14:54:42','https://discourse.nixos.org/'),(9,2023,1052,'Joe','$2y$10$rAZ3TQXJfemyhdPeKhaNjuZivowpjxqt80uwQaBALrZriL99s1Hiu','joe-nixos-org@elem.com','','3','S','2023-06-16 19:47:27','https://discourse.nixos.org/'),(6,2022,1410,'Marc Schulz','$2y$10$yJNGUHJwXSsg0DKsq0ARgOmJjrxMOuqSlTyVAfndSY55.LKh7U6Y6','marcleonschulz@gmail.com','','3','S','2022-03-05 08:38:18','https://nixos.org/'),(14,248687,24,'Diamond','$2y$10$bJH6Xpz5UdgJ/GaaZwPVyeE6O9hRWSYnmrxY..dJ91Ie8Dre7P4L6','diamond@libdb.so','','3','S','2024-03-15 18:52:08','https://survey.nixos.org/248687'); +/*!40000 ALTER TABLE `limesurvey_saved_control` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_sessions` +-- + +DROP TABLE IF EXISTS `limesurvey_sessions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_sessions` ( + `id` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, + `expire` int(11) DEFAULT NULL, + `data` longblob DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_sessions` +-- + +LOCK TABLES `limesurvey_sessions` WRITE; +/*!40000 ALTER TABLE `limesurvey_sessions` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_sessions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_settings_global` +-- + +DROP TABLE IF EXISTS `limesurvey_settings_global`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_settings_global` ( + `stg_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `stg_value` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`stg_name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_settings_global` +-- + +LOCK TABLES `limesurvey_settings_global` WRITE; +/*!40000 ALTER TABLE `limesurvey_settings_global` DISABLE KEYS */; +INSERT INTO `limesurvey_settings_global` VALUES ('DBVersion','366'),('AssetsVersion','30225'),('defaultlang','en'),('restrictToLanguages',''),('sitename','NixOS Surveys'),('defaulthtmleditormode','inline'),('defaultquestionselectormode','default'),('defaultthemeteeditormode','default'),('javascriptdebugbcknd','0'),('javascriptdebugfrntnd','0'),('defaulttheme','fruity'),('x_frame_options','sameorigin'),('force_ssl','on'),('loginIpWhitelist',''),('tokenIpWhitelist',''),('admintheme','Sea_Green'),('emailmethod','smtp'),('emailsmtphost','smtp.gmail.com'),('emailsmtppassword','1ga9rba8s2'),('bounceaccounthost',''),('bounceaccounttype','off'),('bounceencryption','off'),('bounceaccountuser',''),('bounceaccountpass',''),('emailsmtpssl','ssl'),('emailsmtpdebug','0'),('emailsmtpuser','rok.garbas'),('filterxsshtml','1'),('siteadminbounce','your-email@example.net'),('siteadminemail','webmaster@nixos.org'),('siteadminname','NixOS Marketing team'),('shownoanswer','0'),('showxquestions','choose'),('showgroupinfo','choose'),('showqnumcode','choose'),('repeatheadings','25'),('maxemails','50'),('iSessionExpirationTime','7200'),('ipInfoDbAPIKey',''),('pdffontsize','9'),('pdfshowsurveytitle','Y'),('pdfshowheader','N'),('pdflogowidth','50'),('pdfheadertitle',''),('pdfheaderstring',''),('bPdfQuestionFill','1'),('bPdfQuestionBold','0'),('bPdfQuestionBorder','1'),('bPdfResponseBorder','1'),('googleMapsAPIKey',''),('googleanalyticsapikey',''),('googletranslateapikey',''),('surveyPreview_require_Auth','0'),('RPCInterface','off'),('rpc_publish_api',''),('add_access_control_header','1'),('characterset','auto'),('sideMenuBehaviour','adaptive'),('timeadjust','+0 minutes'),('usercontrolSameGroupPolicy','1'),('last_question_gid_5','32'),('last_survey_1','2024'),('show_logo','show'),('boxes_by_row','3'),('boxes_offset','3'),('last_question_6_2023','800'),('last_survey_5','2022'),('last_question_2_2022_gid','34'),('last_question_5','512'),('last_question_gid_6','39'),('last_question_2_2022','540'),('last_survey_6','2023'),('last_question_gid_2','34'),('last_question_6','800'),('last_question_sid_5','2022'),('last_question_2','540'),('last_question_sid_2','2022'),('last_survey_4','2022'),('last_question_sid_6','2023'),('last_survey_2','2022'),('last_question_5_2022','512'),('last_question_5_2022_gid','32'),('last_question_6_2023_gid','39'),('last_survey_7','2024'),('last_question_8_239157','819'),('last_question_sid_8','239157'),('last_question_gid_8','41'),('last_question_8','819'),('last_question_8_239157_gid','41'),('last_survey_8','239157'),('last_survey_9','346552'),('last_survey_11','346552'),('last_question_9','827'),('last_question_sid_9','346552'),('last_question_gid_9','43'),('last_question_9_346552','827'),('last_question_9_346552_gid','43'),('last_survey_10','346552'),('last_question_10','838'),('last_question_sid_10','346552'),('last_question_gid_10','43'),('last_question_10_346552','838'),('last_question_10_346552_gid','43'),('last_survey_12','964172'),('last_survey_13','248687'),('last_question_13','881'),('last_question_sid_13','248687'),('last_question_gid_13','44'),('last_question_13_248687','881'),('last_question_13_248687_gid','44'),('last_question_7_2024','907'),('last_question_sid_7','2024'),('last_question_gid_7','50'),('last_question_7_2023','662'),('last_question_7_2023_gid','39'),('last_question_7','907'),('last_question_7_2024_gid','50'); +/*!40000 ALTER TABLE `limesurvey_settings_global` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_settings_user` +-- + +DROP TABLE IF EXISTS `limesurvey_settings_user`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_settings_user` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `uid` int(11) NOT NULL, + `entity` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `entity_id` varchar(31) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `stg_name` varchar(63) COLLATE utf8mb4_unicode_ci NOT NULL, + `stg_value` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `limesurvey_idx1_settings_user` (`uid`), + KEY `limesurvey_idx2_settings_user` (`entity`), + KEY `limesurvey_idx3_settings_user` (`entity_id`), + KEY `limesurvey_idx4_settings_user` (`stg_name`) +) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_settings_user` +-- + +LOCK TABLES `limesurvey_settings_user` WRITE; +/*!40000 ALTER TABLE `limesurvey_settings_user` DISABLE KEYS */; +INSERT INTO `limesurvey_settings_user` VALUES (1,2,NULL,NULL,'quickaction_state','1'),(2,1,NULL,NULL,'quickaction_state','1'),(3,3,NULL,NULL,'quickaction_state','1'),(4,4,NULL,NULL,'quickaction_state','1'),(5,5,NULL,NULL,'quickaction_state','1'),(6,6,NULL,NULL,'quickaction_state','1'),(7,7,NULL,NULL,'quickaction_state','1'),(8,8,NULL,NULL,'quickaction_state','1'),(9,9,NULL,NULL,'quickaction_state','1'),(10,11,NULL,NULL,'quickaction_state','1'),(11,10,NULL,NULL,'quickaction_state','1'),(12,12,NULL,NULL,'quickaction_state','1'),(13,13,NULL,NULL,'quickaction_state','1'); +/*!40000 ALTER TABLE `limesurvey_settings_user` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_survey_2022` +-- + +DROP TABLE IF EXISTS `limesurvey_survey_2022`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_survey_2022` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `submitdate` datetime DEFAULT NULL, + `lastpage` int(11) DEFAULT NULL, + `startlanguage` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, + `seed` varchar(31) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X528` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X503` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X504` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X504other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ009` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ010` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ011` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ012` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ013` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ014` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ015` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ016` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ017` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ018` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ019` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ020` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ021` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ022` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505SQ023` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X505other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X506SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X506SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X506SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X506SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X506SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X31X506other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X540` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X541` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X542` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X517` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X543` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X521` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X522SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X522SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X522SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X522other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X523` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X524` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X531SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X531SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X531SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X531SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X531SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X531other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X532SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X532SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X532SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X532SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X532SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X532SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X532other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X544SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X544SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X544SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X544SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X544SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X544other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X525SQ001` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X525SQ002` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X525SQ003` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X526` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X527` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X546SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X546SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X546SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X546SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X546SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X546other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X533SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X533SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X533SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X533SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X533SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X533SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X533SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X533other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X534` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X535SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X535SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X535SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X535other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X536` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X34X537` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X529` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X515` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X530` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X516` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X545` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X518` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X519SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X519SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X519SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X519other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X520` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X507` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X508SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X508SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X508SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X508SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X508SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X508SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X508other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X509SQ001` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X509SQ002` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X509SQ003` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X510` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X511` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X513SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X513SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X513SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X513SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X513SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X513SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X513other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X514SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X514SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X514SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X33X514other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X35X538` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X35X539` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2022X32X512` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM AUTO_INCREMENT=2205 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_survey_2022` +-- + +LOCK TABLES `limesurvey_survey_2022` WRITE; +/*!40000 ALTER TABLE `limesurvey_survey_2022` DISABLE KEYS */; +INSERT INTO `limesurvey_survey_2022` VALUES (1,NULL,1,'en','1089832840','A2','A3','male','','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,'1980-01-01 00:00:00',5,'en','2093425183','A2','A3','male','','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Back at uni, I was shown this weird but funny thing by a friend, and since I had a lot of free time I tried it, just out of curiosity. Never looked back','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','','Y','','Isolated development environments','Sandboxed builds','Declarative system configuration','Not add anything fancy, but stabilize the existing (flakes, ca-derivations, and also make the whole thing more robust in general)','Pen and paper? abacus? No idea tbh','','Y','','Y','Y','','Y','','','','Y','','','','None on a regular basis right now. In the past I’ve used https://github.com/svanderburg/node2nix and https://github.com/nix-community/poetry2nix/ a bit','Y','Y','','','N','My own laziness','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same as Nix','Y','','Y','','','','','Declarative system configuration','Ease of setting-up new services (well, it’s not always true, but when it is, it’s magical)','Possibility to easily maintain a whole network','Dunno. Probably make the module system less magical one way or another','Duh. Probably something mainstream like Ubuntu and complain about it all day long','Y','Y','','','','Y','','Y','','','sway','None that I can think of','Same','💜 NixOS'),(3,NULL,1,'en','1166500186','A2','A3','male','','','Y','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,'1980-01-01 00:00:00',5,'en','2053364864','A5','A4','male','','','Y','Y','','Y','Y','Y','Y','Y','Y','','','Y','','','Y','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was looking for a more sane way to build my Haskell project.','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Reproducible OS configuration','Up to date software','','','Chef','','','','Y','Y','','','','Y','','Y','','','','bundix https://github.com/nix-community/bundix','Y','Y','','the applyPatches trivial builder','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I didn\'t like how old the packages were on Ubuntu so I switched to Arch and then I didn\'t like how I had to imperatively configure Arch, so I switched to NixOS which had declarative configuration and more up to date packages.','Y','Y','Y','Y','','Y','','Rollbacks','More turn-key setup of popular open source services','Building most services from source allows easier patching','Finish up transition to Markdown docs','A flavor of Arch Linux','Y','Y','','','','','','Y','','Y','','agenix\r\nCachix','deploy-rs',''),(5,'1980-01-01 00:00:00',5,'en','1863928487','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','','','Generic labor work','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','','','Y','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','Y','','','','','','','','','','Y','','','','','','','','','','Sway','','',''),(6,'1980-01-01 00:00:00',5,'en','1619380728','A2','A3','male','','','','','','Y','Y','','Y','','Y','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Always liked the concept, bounced off multiple times because of the learning curve, but now I\'m here. ','Y','Y','','Y','','','Y','','Y','Y','','Y','','','Y','Y','','Y','','Configuration as code','Remote deployments','Reproducible builds','I don\'t have a good solution here, but I think we need better ways to teach Nix, and a Nix that is easier to teach. ','Arch with Docker, probably','','','','Y','Y','','','','Y','','','','','','poetry2nix, naersk, occasionally node2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','NixOS was actually what got me into Nix. ','Y','','Y','Y','','Y','','Configuration as code','Ability to roll back a bad deployment easily','Reusing configuration across multiple hosts','Make the config system more understandable ','Still Arch + Docker','Y','','','Y','','','','','Y','','KDE is not a desktop environment, Plasma is','','',''),(7,'1980-01-01 00:00:00',5,'en','1787952371','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using NixOS prior to any \"Nix but not NixOS\" uses. However, my first use case of Nix outside of NixOS was creating devshell environments for software developers and interns.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','Y','','shell/devshell','flakes (reusable components)','modules (configuration options)','For Nix specifically, better offline support. Easier methodology for pinning and managing the registry. Better documentation of function schemas.','(Docker) containers','Y','Y','','Y','Y','','','','','','','','','','node2nix https://github.com/svanderburg/node2nix\r\ncomposer2nix https://github.com/svanderburg/composer2nix\r\n','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I first used NixOS to configure a Prometheus/Alertmanager instance in AWS after finding a guide that used NixOS. About a year latter I used a NixOS for a development server used by interns. At the same time I migrated all of my personal workstations from Archlinux to NixOS using the flake template DevOS. My main motivation was having a single declarative config and was generally unsatisfied with the more opinionated distros like Ubuntu yet I knew the management overhead of using Archlinux was not ideal.','Y','','Y','Y','','','','modules (configuration options)','flakes','change tracking using nix-diff & nvd','Better integration with tools like k8s and terraform. ','K8s, docker.','Y','','','Y','','','','','','','sway','DevOS (recently merged into library digga) https://github.com/divnix/digga/tree/main/examples/devos\r\ndevshell https://github.com/numtide/devshell\r\nagenix https://github.com/ryantm/agenix\r\nterranix https://github.com/terranix/terranix\r\nnvd https://gitlab.com/khumba/nvd\r\nnix-diff https://github.com/Gabriel439/nix-diff','Non-flake / old standalone NixOS configurations.\r\nAny tool that is difficult to use with flakes.',''),(8,'1980-01-01 00:00:00',5,'en','873658930','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to have a dotfile manager that was able to deal with arch Linux as well as Ubuntu *and* not only manages dotfiles but packages as well, that\'s why I started using Home-Manager and felt in love with it. Half a year later my laptop\'s disk broke and I installed nixos straight away without regret. Since then I use it when and wherever I can.','','','','Y','','','Y','','Y','','','','Desktop Machines','','Y','Y','','Y','','Reproducible builds','Declarative builds','Being sure that builds are \"self contained\"','`nix-env` as a high level tool. ','Pacman I think, though could have went back to emerge eventually, or have tried guix.','','','','Y','Y','','Y','','','','Y','','','','Poetry2nix, but very rarely.','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because my arch laptops hard disk broke and I installed nixos on it after having used Home-Manager already for a couple of months.','Y','','Y','','','','Desktop Machines','Declarative configuration','Reproducible configuration','Shared configuration across hosts through modules','The fact that `nixos-rebuild` ignores `nixos-config` in the nix path or equivalent env vars if `/etc/nixos/flake.nix` does exist.','Still arch Linux, or I might have went back to funtoo or Gentoo. Maybe I\'d even be using a red hat distribution, as the company I\'m working for has a heavy focus on them.','Y','','','','','Y','','','','','Awesome WM','','Hydra',''),(9,NULL,1,'en','449441515','A5','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Noticed an uptick of Nix-related content on social media, decided to check it out. I tried out on my personal systems and it made it much easier to manage everything so I stuck with it.','','Y','','','Y','','Y','Y','Y','','Y','Y','','Y','Y','Y','','Y','','Ephemeral development environments/shells. I work on a lot of other people\'s codebases at work, and may need version X of interpreter Y, and runtime dependency Z to build/run their code. nix-shell makes it easy!','Declarative system management (NixOS). I write it once and forget about it, but all system configuration is encapsulated and discoverable now.','Easier hacking on other projects (ex: adding custom patches, using different sources, etc)','','Ansible/Terraform for declarative config, containers for ephemeral dev envs, ','','','','','','','','','Y','','','','','','','Y','','Y','Contributing','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','Y','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(10,NULL,1,'en','1804043122','A5','A4','male','','','','','','Y','Y','Y','','','Y','','','','','','Y','','','Y','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(11,NULL,2,'en','72674448','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I wanted to try a different linux distro, with a truly unique package manager / set of tools. I found out the distro, then, I experienced nix-tools and only recently I started making good progress in writing nix modules etc.','','Y','','','','','Y','','Y','Y','','','','','','','Y','Y','','System changes right in front of my eyes, with no need to reboot, by just hitting nixos-rebuild','At every config change, I can always rollback to another config state','If correctly configured: stability. Never had to reinstall anything. Still usieg my very first install. ','Not nix itself related: a small, pratical, good guide. The wiki is good, but everything would have been much more simple with a guide about nix. The only thing I could find months ago were some very big pdfs, they were \"thesis\" from some of the nix devs. Good, well explained, but hundreds of pages and some of the concepts would be pretty hard to grasp for a non-CS student','Fedora, as daily driver. I would like to say Gentoo since I like to configure my machine from the top to the bottom, but it was very time consuming.','','','','','Y','','Y','','','','','','','','','','','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(12,'1980-01-01 00:00:00',5,'en','610704255','A3','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','My Arch install broke, and people have been telling me good things about nixos','','','','','','only nixos','Y','','Y','','','Y','','','Y','Y','','Y','','The vast amount of packages','How easy it is to extend/modify my packages','cross compilation, plus the easy combination with qemu if needed','I would make the error messages better','a normal linux distribution','','','','Y','Y','','','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Someone told me about it, and my other linux install broke','Y','','Y','','','Y','','Declarative system configuration','integration with nix','remote deployment','Add more modules, for more things, e.g. pihole','A normal distribution','Y','','','','','','','','','','i3','','','The distinction between nix and nixos is a bit confusing, especially since you have to use nix if you use nixos'),(13,'1980-01-01 00:00:00',5,'en','25662144','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','When I got a new laptop, I had to decide what OS to put onto it.\r\n\r\nI had been a happy Debian user for more than a decade. One of the reasons I\'m excited about open source is because it blurs the lines between \'developers\' and \'users\': users can actively participate in the development process. However, this was getting less and less the case with Debian: you have to choose between \'stable\' or \'unstable\', and even when choosing \'unstable\' the round-trip time between contributing something and actually using it in practice is rather long, especially if you\'re not a Debian Developer.\r\n\r\nFor this reason, I first tried Arch. I was turned off by their active resistance against making things easier to use. Debian isn\'t that easy to use either, but at least they\'re appropriately embarrassed by it and welcome initiatives to make things better. Also, I found their packaging tooling for maintainers (both \'official\' and AUR) not very conductive to collaboration on packaging, which I think is important for sustainability.\r\n\r\nI had always been intrigued by Nix, but using it outside of NixOS (and having many libraries on your system twice: once distro-provided and one for Nix) never sounded all that appealing. Also not having FHS paths sounded like a huge headache building stuff. Still, I decided to take the plunge.\r\n\r\nI was happily surprised with how well things worked in practice, even though the installation was somewhat painful because it wasn\'t particularly well-documented that a default installation wouldn\'t include WiFi drivers, so that took some work to go back and fix that.\r\n\r\nSince then I\'ve been a happy user of NixOS unstable. It provides a great balance between easily being able to experiment with things, but also always being able to revert to a \'known-good\' state if you want to get back to actually getting work done. The ease of contributing by forking nixpkgs, working from the fork locally, and then creating a PR based on that is amazing. The community is friendly. The tooling for collaborating on packaging is great.\r\n\r\nOnce I got familiar with Nix through NixOS, I\'ve also used it to create Docker images (and later also disk and other container images): the unreproducibility of building a Docker image through a Dockerfile has always annoyed me, and Nix solves this problem really nicely once you\'re ready to give it a serious look.','','Y','','','Y','','Y','','Y','','','Y','','','Y','','Y','Y','','A declaratively-managed desktop OS','A way to create declaratively-managed container images','','NixOS modules often contain infrastructure to generate configuration files to run something for a particular purpose (e.g. Nginx). However, those are not accessible outside of the module (for example in a nix-shell or in a \'distroless\' container image. This possibly also applies to home-manager, but I don\'t use that, so I\'m not sure). Having a nicer way so share that infrastructure (and having only the really NixOS-specific parts, like systemd integration etc, in the module) seems like it\'d be really nice.','Maybe Guix? Haven\'t looked at it.','','','','','','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started with Nix by starting with NixOS, so please see my answer to that question :)','Y','','','','','','','having declaratively-managed system configuration, easy to update and troubleshoot','rolling back to previous profiles','\'git bisect\' to find since when something I use broke','','Maybe Guix? Haven\'t used it','Y','','','','','','','','','','notion','','','I don\'t understand why \'nix-env\' shows up in so many places, it seems worse than nix-shell for basically every purpose. Am I missing something?'),(14,'1980-01-01 00:00:00',5,'en','670557563','A2','A3','male','','Y','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','wanted to have a declarative reproducible system','','','','','Y','','','','Y','Y','','','','','','','','Y','','having multiple channels','having overlays to configure the packages how I want','reproducible on other systems','the nix language is not my favorite','probably arch-linux','','','','Y','Y','','Y','','','','Y','','','','none','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','declarative reproducible system','Y','','Y','Y','','','','different channels','overlays','very easy to contribute','nothing','arch-linux','Y','','','','','','','','','','sway','-','-','keep up the great work'),(15,'1980-01-01 00:00:00',5,'en','1414705066','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','N','Y',NULL,'I tried to use Nix on Arch in an effort to learn the language and \'slowly\' moving to NixOS. I wanted to remove packages from Arch then install them via Nix and later lustrate the system. But I could not figure out how to get some applications working. e.g. I could not get nixpkgs.horizon-eda to find its icons. So I am currently trying to set up NixOS directly in a VM.','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','I am currently trying to move from Arch to Nixos because the aur often has broken dependencies and my computer science lectures\' software requirements often put me in dependency hell. I hope that nixos will help me with that.','Y','','','','','','','I have good integration of nix, one package manager with which I can manage all my dependencies, and can (hopefully) throw away all this pip, npm, etc shit','if you fuck up your system setup, you can easily roll back by selecting a boot option (have not tried that yet)','if I lose my laptop pc, I can easily resurrect my system from my configuration.nix ','I have never had a question left unanswered by the Arch wiki. The nixos wiki is way less complete. When I am more confident with my nix skills, I will try to contribute to that.','I would keep using Arch ','Y','','','','','','','Y','','','none+i3','','',''),(16,'1980-01-01 00:00:00',5,'en','64140792','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Nix had popped into my bubble a few times and I felt pretty confident it was just a better management model (but I was in not-yet mode). I think the most-acute reason is that I have always hated the process of moving systems or wiping it clean; it makes me anxious about losing things. I\'d end up spending days if not weeks hand-auditing what was on the old system and getting everything set up right on the new one. \r\n\r\nIn early 2018 the motherboard in my old Windows system flamed out. Since it was a sudden transfer I didn\'t have time to prepare for I decided it was a tolerable time to give NixOS a try.','Y','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','cross-platform declarative system config','garbage collection','an ur-glue-language/toolkit (like Shell supercharged by internalizing dependency specification--instead of Shell disempowered by externalizing dependency specification on implicit global state)','Oof. IDK. Imperative package management via nix-env has always struck me as a misfeature. I do have a few container CI jobs that use nix-env imperatively, so I guess my beef with it is more about doing a better job of telegraphing to newbies that nix-env probably isn\'t the place to start (not to mention how laden it is with gotcha performance problems if you don\'t know the right flags...). But, of course, part of the problem here is that Nix has left a power vacuum in the declarative package management space. I haven\'t learned enough about flakes to understand how they\'ll affect this situation.','A rusty knife.','','','','','','','','','Y','','Y','','','','https://github.com/DavHau/mach-nix\r\nhttps://github.com/kolloch/crate2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','It is mainly my \"fun\" machine; I do like 99%+ of my \"work\" in macOS','A4','I started using Nix when I started using NixOS; see answer to equivalent Nix question.','Y','','','','','','','declarative config','atomic updates','garbage collection','I wouldn\'t really call this a change to NixOS, but I feel like as you move out beyond basics that some combination of Nix + nixpkgs + NixOS are hampered by how the global ~service model in NixOS is implemented? \r\n\r\nThe ecosystem might be a little better if the NixOS modules were building atop readily-accessible utility functions alongside the package. This could, for example, help close the gap between being able to enable a service (perhaps postgres or nginx...) in NixOS, and figuring out how to build a shell.nix that starts an ephemeral server for working on a project and halts it on exit.\r\n\r\nPhrased around, this would be about ensuring the work that goes into NixOS maximizes leverage across the ecosystem.','Hard to say. Given when I first tried NixOS, I\'d probably still be using Windows on my desktop. I don\'t think I would see all of the papercuts associated with desktop Linux as a good use of my time/energy without the affordances that come with Nix and NixOS.','Y','','','','','','','','Y','','','nix-darwin','Not sure if this is in-scope since they had a separate question, but like almost everyone I had to fumble through a sequence of x2nix projects before finding something workable.','I would love to see the project take user experience around onboarding and offboarding (especially install/uninstall) more seriously (more resources/organization/attention, less indifference). \r\n\r\nMinimizing papercuts around these is probably a hybrid effort focused on ensuring things like:\r\n- the documentation is lucid enough for newbies to understand what to do\r\n- the documentation is clear and accurate about which systems/shells it will work on (mainly Nix?)\r\n- the installers are as easy to understand/use as is feasible\r\n- instructions for installing/uninstalling are complete (i.e., both up-to-date now, and not broken for people with older installs)\r\n- the installer runs cleanly across a spectrum of systems and preconditions (mainly Nix, but this may apply WRT hardware issues for NixOS as well)\r\n- the installer detects and reports as many precondition problems as is feasible before completing (users shouldn\'t immediately step on a rake if the installer claimed to run OK)\r\n- failed installs avoid the user-hostile antipattern of leaving partial state that will cause the next install attempt to fail until the user manually cleans it up\r\n- both installer and build error messages are clear enough for people to solve simple problems themselves without waiting for feedback\r\n- installer problems that only bite a subset of users get fixed rather than festering for years\r\n\r\n Since it looks like a hybrid effort that likely draws on information the marketing team gathers--and likely affects metrics the marketing team cares about--it makes sense to me as an incubator for such efforts (least in the absence of a more-appropriate home--perhaps a UX team).'),(17,NULL,1,'en','920574554','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','Y','Consultant','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18,'1980-01-01 00:00:00',5,'en','617557026','A2','A4','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because I liked the concept and I wanted something better than Homebrew on macOS ','Y','','','','','','Y','','Y','','','','','Y','Y','','','Y','','Reproducible Dev Environments','Reproducible machine configuration','','','','','','','Y','Y','','','','','Y','','','','','cabal2nix\r\npoetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','Y','','','','','','','','','','Y','','','','','','','','','','','emacs-overlay\r\nnix-darwin','',''),(19,NULL,2,'en','1895241653','A5','A2','-oth-','enby','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','dependancy resolution','reproducible/declarative systems','flakes','FreeBSD support','I\'d probably end up sacrificing language flexibilty to just use languages with decent package managers (rust, go, etc - no C/C++)','','','','Y','Y','','','','Y','','Y','','','','','','Y','','','N','need - there are so many contributors that every time i notice something old or wrong, there\'s already a PR.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(20,NULL,2,'en','619192717','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','Honestly? I was looking for a new OS for my laptop and am still trapped 5 years later :P','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','Nixpkgs','nix-shell / nix develop','NixOS','The split interface, everything would be / would\'ve always been the new interface (which would have feature parity with the old interface)','Arch I guess? And a mess of build software... It wouldn\'t be pretty','','','','Y','Y','','Y','','','','Y','','','','-','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','Because I was looking for a new OS for my laptop, see above','Y','','','','','','','','','','','','Y','','','','','','','','','','',NULL,NULL,NULL),(21,'1980-01-01 00:00:00',5,'en','255658999','A1','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','It provides all the features I want to manage things from a little personal project to an entire GNU/Linux OS.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','declarative','isolation','centralized management of state','I would make it easy to use an old version of certain program.','ansible and homemade scripts','','','','Y','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I have always wanted to write some text files that can declare an entire OS.','Y','','Y','','','','','centralized management of state','versatile modules','easy rollback','https://guix.gnu.org/en/blog/2020/grafts-continued/','Arch Linux','Y','','','','','','','','','','Sway','home-manager','NUR',''),(22,NULL,NULL,'en','2067281100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(23,'1980-01-01 00:00:00',5,'en','272705908','A2','A3','male','','Y','','','Y','','Y','','','','','','','','','','','Y','','','Y','','','Y','','','Y','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','Y','Y','','Y','','','Y','Y','','Y','','Repeatability','Easy config for many systems','Awesome community','more documentation concerning nix flakes (especially more advanced configurations)\r\nmore/better documentation for nixpkgs for specialized mk-derivations \r\na working and easy to use python environment (machNix and poetry2nix are ones I use and they both don\'t work really well..)','Debian','','Y','','Y','Y','','Y','','','','','','','','poetry2nix\r\nyarn2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','Y','','Y','','Easy configuration','One git repo to maintain the config of all machines ','','','','Y','','','Y','','','','','','','i3','','',''),(24,'1980-01-01 00:00:00',5,'en','616786853','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','NixOS has an easy way to customize and add new packages/service. On top of it it is completely declarative.','','','','','','','Y','','Y','','','','Main workstation','','Y','','Y','Y','','Declarative system configuration','nix-shell for temporary environments','Declarative home configuration (home-manager)','','','','','','','','','','','','','','','','','node2nix, go2nix','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Wanted a rolling release system, with declarative configuration, roll-back and easy to add custom packages','Y','','Y','','','','Main workstation','Declarative system configuration','Declarative home configuration (home-manager)','Roll-back','crosvm with system integration like somelier','Guix','Y','Y','','','','','','','','','Sway','','',''),(25,'1980-01-01 00:00:00',5,'en','1253782099','A4','A2','-oth-','Non-binary','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I read Xe\'s blog posts and slowly got sucked in: https://christine.website/blog','','','','','','','Y','Y','Y','Y','Y','Y','','','Y','Y','','Y','','I don\'t like this question. There\'s no three features that sold me on Nix, it\'s how well it all fits together.','','','What do you get from knowing this? It\'s not like you control what other people will decide to PR. And this isn\'t an RFC form. And what I want from Nix is not what Nix\'s overall goals are/should be.','I used Arch, docker-compose and a lot of symlinks before. It was messy.','','','','Y','Y','','','','','','Y','','','Crappy custom mess I wrote','yarn2nix (in nixpkgs)','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Same as the other question. Xe\'s blog posts: https://christine.website/blog','Y','Y','Y','Y','Y','Y','','','','','','','','','Y','','','Y','','','','','i3','- https://github.com/nix-community/nix-doom-emacs since I maintain it, https://github.com/nix-community/emacs-overlay since nix-doom-emacs uses that.\r\n- https://github.com/nix-community/home-manager for obvious reasons','','Building a survey is probably much harder than critiquing it but I honestly can\'t see what the motives behind a lot of the questions were.\r\n\r\nAnnd you didn\'t really mention home-manager at all which seems odd.\r\n\r\n(@ckie:ckie.dev)'),(26,'1980-01-01 00:00:00',5,'en','487196627','A2','A3','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','sane ci dependency management and caching','installing software unavailable on other distros (nixpkgs is so big!)','cross compilation','remove nix-env\r\nadd documentation (on nixpkgs more than nix, maybe)\r\nmake it clear on search.nixos.org what packages are meant to be used with nix-shell, with a dedicated nixos module (like apache) or \"normally\" with nix-env/environment.systemPackages\r\nmake lists take a separator (comma or whatever) instead of forgetting to add parens\r\nmake nix the language typed, and make adding misspelled attributes to mkDerivation and the like not be \"ignored\"','normal distros and toolchains, maybe gnu stow to replace home-manager.','','','','Y','','','','','Y','','Y','','','','crate2nix https://github.com/kolloch/crate2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','','','','','declarative configuration shared among machines. I started really customizing with computer thanks to NixOS because I no longer had the fear that if I had to reinstall, I would not know how to reapply the customization anymore.','ease of trying configuration changes and not commit the change if not satisfying/not working. ease of trying new programs in nix-shell and not have the change be persistent. no risk in upgrading.','ease of mixing stable and unstable (I have borked many debian installs trying to do the debian equivalent)','migration of state (notably: database migrations on update) in nixos modules is mostly ignored and should be addressed in a uniform and principled way. stateVersion should probably be made per-module.\r\nfix no such space left on device on rebuild in /boot\r\nadd an equivalent of home-manager news\r\npre-install home-manager on nixos and tell people it is officially endorsed as part of nixos, and the one true way to replace nix-env.\r\nprobably something similar should happen with sops-nix or agenix once the community clearly chooses one.','debian testing','Y','','','','','','','','','Y','','home-manager\r\nlorri\r\nniv\r\ncrate2nix\r\nnix-user-chroot\r\n','dconf2nix\r\nopam2nix',''),(27,'1980-01-01 00:00:00',5,'en','1174607615','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','Built into NixOS','','Y','','','','','Y','','Y','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','I don\'t follow upstream close enough to know when a new version is released and the package is usually updated by someone else pretty quickly. (I only mainly use a few very popular applications).','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I like NixOS having my entire configuration declarative. Easy to wipe and reinstall, easy to undo changes, easy to replicate to multiple machines.','Y','','Y','','','','','','','','Add Snap support. ','Arch Linux and evaluate Guix.','','','','','','','','','Y','','','','',''),(28,'1980-01-01 00:00:00',5,'en','1358614300','A5','A3','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Learned of nix through haskell subreddit in ~2016, then had it on my backlog of things to learn until 2018. Have been using it ever since then.','Y','Y','','Y','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Declarative configuration','reproducibility','composibility of packages/services','Add gradual typing or stronger type machinery.','Sadness.','','','','Y','Y','','Y','','','','Y','','Y','','https://github.com/fzakaria/mvn2nix\r\nhttps://github.com/zaninime/sbt-derivation','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started with wanting to use nix for development environments on Ubuntu. One day, ubuntu decided to die, and decided that the next linux OS would be NixOS.','Y','Y','Y','','','','','Declarative+congruent configuration','VCS-friendly configuration','Package+service composibility','More contributors?','Sadness.','Y','','','Y','','','','','','','i3-gaps','https://github.com/Mic92/nixpkgs-review\r\nhttps://github.com/jonringer/nix-template','','Nix, to the moon!'),(29,'1980-01-01 00:00:00',5,'en','557365296','A2','A4','male','','','','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Workplace had a test environment using nix that I ended up maintaining.','','','','','','','Y','Y','Y','','','','','','Y','Y','','','test builds','automatic build and caching of dependencies','slightly more workable language than at least make','','better integration with \"unsafe\" or \"non-deterministic\" code, eg. getting random more easily (run same test multiple times, even nixos could use this feature) or invoke external build service as a part of a build.','probably make, and regret it','','','','Y','','','','','','Y','','','','','','','','','overrides','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Work test system was nix on nixos','Y','Y','Y','','','','','easy accountability of system files with volatile rootfs','easy to have system description in git','rollbacks are nice, though generally of less value than one would have thought','all mergeable lists in modules as sets or other structures that would allow partial overrides','I used to use debian with setup scripts','Y','','','','','Y','','','','Y','sway','nixpkgs-fmt','nixfmt',''),(30,'1980-01-01 00:00:00',5,'en','1732005268','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','','','','','Y','','','','','','','Y','','','','Y','','simple system configuration','','','more Dokumentation','archlinux','','','','','','','','','','','','','','','','','','','','N','Dokumentation','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','One config file, simple rolebacks','Y','','','','','','','','','','Dokumentation','archlinux','Y','','','','','','','','','','','','',''),(31,NULL,NULL,'en','1109858097',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(32,'1980-01-01 00:00:00',5,'en','478565833','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I have background as both DevOps/SRE and application developer and I find maintaining reliable, consistent-over-time, repeatable software environments to be super frustrating, both before and after the advent of Docker. Commonly organizations supply their developers with Apple hardware, and using tools like Homebrew or ASDF to try to maintain our development environment is completely unsustainable over enough time or enough variation of MacOS version/hardware.','Y','Y','','','Y','','Y','','Y','','','','','','Y','Y','Y','Y','','Declarative builds of software from many languages/ecosystems','Transparent, safe-ish binary caching and immediate fallback to building from source','Safe, concurrent use of contradictory versions of software and libraries without polluting the global OS environment','I have adapted to it myself but I find Nix-the-language to be a significant roadblock to work adoption, even at organizations using functional-programming languages like Elixir, but Nix the tool/workflow is the actual desire/goal. I don\'t know what would be \"better\" and still satisfy the same constraints, but a less niche language would possibly ease adoption.','Guix, Docker. I\'d never use Snaps/Flatpaks/AppImages, though.','','','','Y','Y','','Y','','','','','','','','cargo2nix, crate2nix, yarn2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','Y','','','','','Reproducible, declarative machine-level configuration','Elimination of dependency hell once something is successfully packaged for Nix in general','Easy rollback after configuration mistakes or distaste','','','Y','','','','','','','','','','bspwm','home-manager, nix-direnv, emacs-overlay, nixfmt, hydra-check, statix, pre-commit-hooks.nix','niv, carnix, fenix, nixpkgs-fmt, lorri, naersk, linuxkit-nix, kubenix, dhall-nix',''),(33,NULL,1,'en','2929980','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34,'1980-01-01 00:00:00',5,'en','126986400','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Engineering Manager','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Wanted to build perfect all-in-one NAS & home server','','Y','','','','','','','Y','','','','','','Y','','','Y','','Repeatable','Declarative','Cross-platform','Switching to using a normal programming language','Combination of apt, ansible and custom scripts','','','','Y','','','','','','Y','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Build perfect all-in-one NAS & home server','','','Y','','','','','Declarative','Easy to rollback/repair','Latest packages','I would add better structure to the configuration and out of the box golden configurations to achieve different use cases','Ubuntu','Y','','','','','','','','','','','','nixops',''),(35,'1980-01-01 00:00:00',5,'en','854818489','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Disappointed by the previous generation of configuration management that basically implemented \"configuration drift management\", where NixOS would result in a declarative setup with a better vertical integration between package, configuration and resulting deployment.','','','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','Remote building','Throwaway-Environments with `nix-shell -p`','','Create a parallel implementation in Rust, so that nix would have to compete for being the BiS implementation.','','','','','','','','','','Y','','Y','','','','node2nix\r\nyarn2nix ','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Possibility to manage all machines, workstations and infrastructure in the same, declarative way.','Y','Y','Y','Y','','Y','','Vertical integration between packaging, configuration and deployment hardening','NixOS Tests','Low barrier to contribution due to most definitions being part of the nixpkgs mono repo','Reduce weird dependency chains in basic deployments, like how easy you get a system that depends on webkitgtk, or political issues like hard dependencies on polkit. Ideally something like USE-Flags.','Probably Debian for servers, Arch for workstations.','','','Y','','Y','','','','','','Sway','Home-Manager\r\nHydra\r\nnix-output-monitor\r\nNUR\r\n','lorri',''),(36,'1980-01-01 00:00:00',5,'en','2146796742','A5','','male','','','','','','','','','','','','','','','','','','','','','','','','','industry researcher','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','To have a single way to do package downloads and builds, regardless of platform, OS, language.','Y','','','','','','Y','','','','','','','Y','Y','Y','','','','rollback and reproducibility','downloading packages','development shell','The Nix language is very hard to use ---- it is especially hard to decipher to a newbie.\r\n','Guix, stack, cabal, npm, etc.','','','','','Y','','','','','','','','','','cabal2nix\r\n\r\nhpack\r\n','','Y','','','N','I do not know what I am doing (yet).','N','N','When/if I stop using MacBooks.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://github.com/utdemir/nix-tree\r\n\r\nhpack\r\n\r\n','niv\r\n','Please put more inline comments in the examples.\r\n\r\nFor example, when first encountering an overlay, without know what it is, \"final: prev: ...\" is pretty mysterious.'),(37,'1980-01-01 00:00:00',5,'en','777602229','A2','A2','male','','','','','','Y','Y','','','Y','Y','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'d heard about home-manager for declarative configs and then I looked more into home-manager and nixos as a whole','Y','Y','','','Y','','Y','','Y','','','','Containers','','Y','Y','Y','Y','','Reproducibility ','\"Provenance\" via Drv','Hermetic builds','Make the nodejs ecosystem less awful in nixpkgs :(','There isn\'t really an equivilent, especially for my expected uses for a secure supply-chain. You\'d have to use bubblewrap for denying network on demand within build environments. Maybe wrap builds with https://github.com/testifysec/witness\r\n\r\nOr just use Guix but that feels like cheating','','','','Y','Y','','','','','','Y','','','Tekton','node2nix sometimes','Y','Y','','NUR','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'d heard about home-manager for declarative configs and then I looked more into home-manager and nixos as a whole','Y','','Y','','','','','Declarative environments','Direct control over dependencies & things are either packaged properly or not','Very easy to configure most services','Stop nixos-unstable from being clogged up for longer than a day','Maybe fedora silverblue or just Arch','Y','','','Y','','','','','Y','','i3wm riverwm','I really like trustix but it needs more focus','I\'ve stopped using vulnix because of false positives and it keeps breaking on unstable','Please focus on software supply-chain. Nix has the cleanest solution to almost all the problems people are looking to solve via SLSA (https://slsa.dev/) and SBOM but people don\'t know about nix\'s power'),(38,'1980-01-01 00:00:00',5,'en','1577733485','A2','A3','male','','','','','','Y','Y','Y','Y','','','Y','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','Referential transparency','String context','Build cahcing','Remove flakes\r\nModernize Nix code base and add proper tests\r\nFix memory leaks','Goats','','','','','','','','','','','','','','Systemd timers, drone','Npmlock2nix','Y','','Y','applying patches in my custom tooling','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','Y','Y','Y','Y','','Atomic system switches','Rollbacks','Sending system closures to remote machines','Remove crytocurrencies\r\nRemove non-free software\r\nDefine Maintainerships for modules and packages, right now it isn\'t worth the byteels it takes to declare\r\nRun test on hardware for releases\r\nRemove cloud stuff that nobody in the active committees is using/maintaining','Fedora','','','Y','','','Y','','Y','','','sway','','','Don\'t make Nix a product or at least try to get it out of the academic YOLO mode first.'),(39,'1980-01-01 00:00:00',5,'en','1845841114','A5','A3','male','','','','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I learned functional programming via Haskell years ago, and I\'ve been a Linux distro enthusiast since high school. I had always found managing Linux distros painful when dealing with upgrades, so I tried combinations of ansible, chef, docker, etc. I saw a post about Nix on hacker news, and Nix checked all the boxes for my interests: functional programming, reliable/reproducible builds, etc.','','Y','','','','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','','','','1) have recursive nix / plan dynamism be stable/performant to replace most uses of IFD and be used by all the *2nix projects.\r\n2) clarity around the move to Nix flakes--concerns about ending up with a million versions of nixpkgs.','Docker :(','','','','Y','Y','','Y','','','','Y','Y','','','poetry2nix https://github.com/nix-community/poetry2nix','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same as previous','Y','Y','Y','Y','Y','Y','','','','','1) actually reliable updates that could also snapshot the state of various services and rollback if things go poorly.','Arch','Y','','','','Y','Y','','','','','i3','','',''),(40,'1980-01-01 00:00:00',5,'en','765243246','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Pentester','','Y','','Y','','','N','Y',NULL,'Strange syntax, Ansible + Docker is inferior but good enough ','Better usability, better integration into language ecosystems, mature flakes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Missing support for Secure Boot & TPMs','Generell improvements in the Nix language usability ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','home manager','Keep up the great work!'),(41,'1980-01-01 00:00:00',5,'en','764271105','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Due to easier Haskell package management','','Y','','','','','Y','','','','','','','','Y','Y','','','','Reproducibility','Hermetic packages','Rollbacks','Remove nix-env','GNU Guix','','','','Y','','','','','','','','','','','','','','','','N','I haven\'t had a need to package anything yet','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Due to better Haskell package management','Y','','','','','','','Reproducibility','Hermetic packages','rollbacks','Remove nix-env','GNU Guix','Y','','','','','','','','Y','','','','',''),(42,'1980-01-01 00:00:00',5,'en','1794921277','A2','A4','male','','','Y','Y','','Y','Y','','','Y','Y','','','Y','','Y','Y','Y','','','','Y','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I found the idea intriguing. And nix seems further along than guix.','','Y','','','Y','','Y','','Y','Y','Y','Y','','','Y','','','Y','','declarativity','reproducibility','large library of packaged software and related nixos configuration of services','Fix the documentation. Fix flakes and the new nix-stuff and rewrite documentation so that old stuff isn\'t mentioned anymore. Better development tools for nix the language to make it easier to use (I\'m not a fan, but I don\'t hate it either).','Guix? I used debian before.','','Y','','Y','Y','','','','','','','','','drone','python, go, rust','Y','Y','','','N','My skills','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','Y','Y','','declarativity','reproducibility','lots of software and related services','The documentation.','Guix. I used debian before.','','','','','','Y','','','','','notion','nixfmt, home-manager','','Keep on the good work!'),(43,'1980-01-01 00:00:00',5,'en','1296792175','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','','','','N','N','Selling point for me is that I can turn off my machine thinking that it will definitely boot again up. Also I can create my own iso very easily.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I want to have choice what packages will end up in store. for example I want to use python pip without nix knowing about it, but sometimes I want it to be reconfigurable. Long story Short, Nixos lacks choice'),(44,'1980-01-01 00:00:00',5,'en','2136373594','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I liked the ideas of reproducibility and good build caching.','Y','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Local shells','Reproducibility','Portability','Make the review process more approachable, ensure there\'s no nitpicking. Prioritize trivial PRs like package updates, generally reduce the barrier to entry.','Probably brew.','','','','Y','Y','','','','','','Y','','','','crate2nix\r\nnode2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','I wanted an easy way to configure my home server. NixOS enabled trivially deploying changes to networking config, systemd services, installed programs etc.','','','Y','','','','','Declarative configuration','Rollbacks','Feeling of stability (if things work once, they keep working later)','Add first-class macOS support','hard drugs (nothing else can alleviate the pain)','Y','','','','','Y','','','','','','home-manager\r\nnix-top, nix-tree - I\'d love if these were built in\r\nnix-darwin','nix-gui - no support for home-manager / nix-darwin','I want to see Nix succeed and I\'m committed to helping make that happen, also I\'m working on a book for beginners/early-intermediate users.'),(45,'1980-01-01 00:00:00',5,'en','668441273','A2','A6','male','','','','','','','','','','','','','','','','','','Y','','','','','','','servicedesk','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','learning Nix','A3','After breaking a successful install of a Kolab mailserver, the thing exploded when setting up the ssl certs, the IRC chat provided me the \"re-install\" answer.\r\nThat would mean to type xxx commands in following the install instructions again, that was the moment I began to search for \"versioned systems\" to get to a previous working state of a system.\r\nFound out about Nilfs(2) and that\'s where NixOS was mentioned https://en.wikipedia.org/wiki/NILFS#OS_compatibility\r\nSince then i\'m hooked and trying to get productive with Nix(OS)','','Y','','','','','','','Y','','Y','','','','Y','','Y','Y','','Declarative system config','Nix build','Functional programming lanquage','I would like to add more financial support to get the foundation/community the things they need.','Debian, OpenSuse','','','','Y','Y','','Y','','','','Y','','','','','','','','','N','Knowledge, I was thinking about starting a topic on Discourse about a beginners guide to Nixos.\r\nThen i Found someone who has started this already - https://github.com/kstenerud/nixos-beginners-handbook/blob/main/README.md','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','Y','','','','','','','','Y','Y','','Y','','','','','Y','','','Flox','',''),(46,NULL,NULL,'en','1675188561',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(47,'1980-01-01 00:00:00',5,'en','297744529','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','Because it\'s part of NixOS.','','Y','','','','','','','','Y','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','My custom packages are just .nix files in my repo with my NixOS configuration.','N','I think I would need to spend a lot more time on my packages to make them acceptable.','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','I heard about NixOS at the same time as I was choosing an OS for my new server.','','','','Y','','','','stability','configuration as code','it\'s easy to run common services (like Nextcloud), they\'re kind of preconfigured and it\'s all well document in NixOS Manual','I found it hard to set up a Python web application that was not a package but was just checked out from git in a directory in $HOME and had its Python dependencies installed using python38.withPackages and home-manager and yeah... it just took me a while to put all the pieces together. Dunno what exactly could be improved there though.','Guix or Docker','Y','','','','','Y','','','','','','','','Keep up the good work!'),(48,'1980-01-01 00:00:00',5,'en','584360496','A2','A2','male','','Y','','','','Y','Y','','','','','','','Y','','','Y','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Someone dared me to replace Gentoo with NixOS. Was a die-hard Gentoo fan before. How the turntables...','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','Declarative configuration of everything','Ephemeral shell environments (both development shells and \"oh I need this one-off tool for a second\" situations)','\"Magical\" package installation via ${} string interpolation in configuration files','I would improve the new-style CLI, first and foremost. Removing the need for the few commands that still require the v1 commands. Things like:\r\n - nix-shell -p (as in, a \"nix shell\" that also runs setup hooks)\r\n - various nix-store query commands\r\n - nix profile, especially an equivalent to \"nix-env --set\", so nix-env can finally be removed, and then use nix profile internally where nix-env is currently in use, such as nixos-rebuild\r\nAnd in general, making flakes stable and first-class.','Portage and (begrudgingly ;)) Docker.','','','','Y','Y','','Y','Y','Y','','','','','','https://github.com/nix-community/dream2nix\r\nhttps://github.com/fzakaria/mvn2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I\'ve been dared to replace my Gentoo with NixOS and I ended up liking it.','Y','Y','Y','Y','','','','Declarative configuration of everything','\"Magical package installation via string interpolation\" via ${pkgs.package} in a config file','Opt-out ','- Add multi-instantiable modules\r\n- \"NixOS a la carte\" (https://github.com/NixOS/nixpkgs/pull/148456)\r\n- Change the nixos-rebuild CLI (maybe rename the command to \"nixos\", make flake-style configuration first-class, i.e. no --flake, no /etc/nixos/configuration.nix)\r\n','Gentoo or a custom build of Fedora Silverblue','Y','','','Y','','Y','','Y','','','','home-manager','Hydra. Hydra feels like the Jenkins of the Nix world. Kind of clunky and doesn\'t integrate all too well into Git web services. Still in use here because there\'s no real replacement for it (fully self-hostable, private Nix-first CI).','I hope all the feedback collected from this survey helps bring Nix forward. You all have created something incredible. It would be a shame if it were to fade into obscurity.'),(50,'1980-01-01 00:00:00',5,'en','2110207521','A4','A4','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','','Y','Y','','','','','Y','Y','Y','Y','','Reproducibility','Declarative package management','Consistency','- Better error messages and debugging info.\r\n- Better documentation.','I find it hard to go back to any linux distro with traditional package management. If Nix didin\'t exist, maybe something like GNU Guix?','','','','','Y','','','','','','','','','','poetry2nix\r\n','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','Reproducibility','Declarative system management','Consistency','- Better error messages,\r\n- Better docs.','GNU guix, maybe?','Y','','','Y','','','','Y','Y','Y','and WM like: Sway, i3, xmonad','','','No! Thank you!'),(51,NULL,4,'en','921134745','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Engineering Manager ','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','','','','','Y','','','','','','','','Y','Y','Y','Y','','','','','Remove Flakes and spend time to improve the existing UX instead ','','','','','','','','','','','','Y','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A5','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL),(59,NULL,1,'en','1506953960','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(52,'1980-01-01 00:00:00',5,'en','2063862762','A2','A3','male','','','Y','','','','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Nix, or especially NixOS, started popping up more frequently on this very orange website. This lit the spark of my interest and I found myself fascinated with Nix\'s reproducibility and the implication that packets working on the maintainer\'s machine will also work on mine.','','','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','reproducibility','the Nix language','huge set of already existing packages and functions to build on','I would like to improve the documentation and add a more human-friendly search engine for the builtin functions on top. Sometimes it is hard finding something within the documentation, even when used multiple times before.','For packaging, perhaps ArchLinux\'s pacman or Alpine\'s apk as it is very easy to package some software.\r\n\r\nFor deployment, I would either use Puppet or Ansible.','','','','','','','','','','','Y','','','Travis CI','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','NixOS started popping up more frequently on this very orange website. This lit the spark of my interest and I found myself fascinated with Nix\'s reproducibility, the implication that packets working on the maintainer\'s machine will also work on mine, and the possibility to roll back to an older system generation in case of a f*ck up.','Y','','Y','Y','','','','Truly declarative system configuration in one place','Ability to easily overlay the nixpkgs with modified or even own packages','Huge community-driven nixpkgs repository','As for Nix, I would increase the documentation regarding to end users, not only developers.\r\n\r\nI also would like to have a more unified way to define systemd units, especially regarding systemd\'s security features. Some modules are restricting services through an extra user, seccomp, and even landlock (both through systemd) while others are just executed as the root user. A common ground would be nice. In this spirit, I would love to see a good AppArmor or SELinux integration.\r\n\r\nI would remove or alter the way how one can contribute to the nixpkgs. The current Pull Request-based approach is overrun by its huge user base. This results in lots of Pull Requests being ignored. As the maintainer of some packages, it annoys me when a simple version bump for one of my packages is just ignored and falls through, sometimes even for security-relevant fixes. I would really like to be able to at least alter \"my own\" packages without waiting, sometimes for months.','Depending on the context, it would be either Debian, ArchLinux, Alpine or OpenBSD. For servers, I would add Ansible or Puppet on top to get at least some reproducibility. Oh, and containers, I\'d guess.','Y','','','','','Y','','','','','dwm','agenix\r\nSimple Nixos Mailserver\r\nNUR, Nix User Repositories','','Thanks a lot for all Nix and NixOS users, contributors and developers for all their effort.'),(53,NULL,1,'en','1077577150','A2','A3','male','','Y','','','','','Y','Y','Y','Y','Y','','','Y','','','','Y','','','Y','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(54,NULL,1,'en','1570955253','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(55,'1980-01-01 00:00:00',5,'en','1240758923','A2','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','','','','','Y','','','','','','Pacman','','','','','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','Arch Linux','Y','','','','','','','Y','','','','','',''),(56,'1980-01-01 00:00:00',5,'en','1008110925','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Reproducible build environments.','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','Y','','Reproducible builds + build environments','Flakes','Binary cache','Put someone in charge of overhauling the documentation + website. They\'d be responsible for it, would be able to make controversial changes, and we would see some progress.\r\n\r\nI would improve the DX, by looking at other CLI tools.\r\n\r\nI would add a Rust backend to (parts of) Nix, to increase velocity.\r\n\r\nI would create a CEO position, separate from BDFL (= eelco). Someone with great project management skills.','Homebrew on macOS, probably. Or maybe Guix? But it wouldn\'t exist either.','','','','Y','Y','','','Y','','','Y','','','','https://github.com/nix-community/dream2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Declarative system configuration. I was always forgetting how I had achieved a certain setup on my Linux boxes. NixOS changed that.','Y','','','Y','','','','Declarative system config','Ease of sharing configurations','Rollbacks','The module system\'s code is very arcane, and apparently very few people really understand it fully. I would simplify it/document it.','macOS','Y','','','','','','','','','','sway','- Home Manager\r\n- nixos-hardware\r\n- rnix-lsp\r\n- nixbuild.net','- niv\r\n- nixops','This is great!'),(57,'1980-01-01 00:00:00',5,'en','993367559','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','Y','Y','','','','','','Y','','','Y','','','','','','','','','','Y','','','','','Y','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','',''),(58,NULL,NULL,'en','1400397373',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(60,NULL,1,'en','1515845934','A1','A7','-oth-','just testing the form, disregard this','','','','','','','','','','','','','','','','','','','','','','','','just testing the form, disregard this','','','','','','just testing the form, disregard this',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(61,'1980-01-01 00:00:00',5,'en','1438936673','A5','A5','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A2','I needed to try another OS. ','','Y','','','','','','','Y','','','','Test','','','Y','','Y','','','','','','Self written software','','','','','','','','','Y','','','','','','','','Y','','','N','Lack of time','N','N','More time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Thanks for asking'),(62,NULL,3,'en','2120481992','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(63,NULL,4,'en','224134807','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','Y','Y','','','Y','Y','Y','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(64,'1980-01-01 00:00:00',5,'en','1264179663','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was using arch back when it had a bunch of system configuration in 1 file (rc.conf), notably what daemons to start.\r\nThe idea of having much of the system declared in a single place really appealed to me.\r\nBut they moved away from that when they switched to systemd.\r\nShort after I found nixos, which does is a lot better :)','','','','Y','','','Y','','Y','Y','','','','','','','','Y','For nix home manager','All configuration is done in a single place','Easy to install new software without having to worry that it leaves random system files around after uninstall','System rollback in boot menu','The language. I really like the syntax, but it rarely happens that I have to write anything complicated. As a result I keep forgetting how to do those things and have to look it up every single time. That would be less of an issue if a more mainstream language was used. And also related: better documentation on what functions nixpkgs has to offer and how to use those.','guix probably :)','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was using arch back when it had a bunch of system configuration in 1 file (rc.conf), notably what daemons to start.\r\nThe idea of having much of the system declared in a single place really appealed to me.\r\nBut they moved away from that when they switched to systemd.\r\nShort after I found nixos, which does is a lot better :)','Y','','Y','Y','','','','All configuration is done in a single place','Easy to install new software without having to worry that it leaves random system files around after uninstall','System rollback in boot menu','The language. I really like the syntax, but it rarely happens that I have to write anything complicated. As a result I keep forgetting how to do those things and have to look it up every single time. That would be less of an issue if a more mainstream language was used. And also related: better documentation on what functions nixpkgs has to offer and how to use those.','guix probably :)','Y','','','','','','','','Y','','I3','home-manager','',''),(65,'1980-01-01 00:00:00',5,'en','11713359','A2','A3','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I always wanted to get more involved into my personal Linux system, but failed with Arch as I couldn\'t get hold of the system state for the live of it.\r\nA friend told me about NixOS and its guarantees about configuration and reproducibility. I realised that this was exactly what I was looking for in order to get a better understanding of operating systems and switched all my systems to NixOS in a few months.','','Y','','','','','Y','','Y','Y','','Y','','','Y','Y','','Y','','A unified model for how build steps are done, that is both flexible and easy to reason about.','Strong reproducibiltiy guarantees through it\'s model.','Strong security guarantees for source builds through sandboxing and output signing.','Make evaluation much faster/more cachable. If I just could evaluate my NixOS systems in milliseconds instead of ~30sec my life would just get much easier.\r\nEvaluation caching by Flakes already helps here, but isn\'t enough for it to make work really pleasant.\r\n\r\nAlso of course make flakes stable and widely accepted in the community ;) The fact that it\'s hidden behind an experimental flag is the single most important reason why I can\'t easily recommend Nix to friends/coworkers.','Frankly I probably wouldn\'t use a build system at all, as Nix was my gateway into building open source software. For package management I\'d probably still be stuck with something Debian based.','','','','Y','Y','','Y','','','','','','','','https://github.com/kolloch/crate2nix\r\nhttps://github.com/cachix/elm2nix\r\nhttps://github.com/svanderburg/node2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','See my \"Why did you start using Nix?\" answer.','Y','','Y','Y','','','','Truly reproducible system configuration, deploy systems from a git repository.','Access to a huge catalogue of deployment abstractions and packages','Composable system modules','I\'d provide a decent user interface for configuration so I won\'t need to maintain the Linux Mint and Ubuntu installations of my friends anymore.\r\n\r\nFaster security updates, e.g. through hourly channel upgrades and better testing, so channels never need to block.','Probably Linux Mint? My computer usage would be very different.','','','','','','Y','','Y','','','Sway','https://gitlab.com/simple-nixos-mailserver/nixos-mailserver\r\nhttps://github.com/nix-community/home-manager\r\nhttps://github.com/Gabriel439/nix-diff\r\nhttps://github.com/Mic92/nix-update\r\nhttps://github.com/jtojnar/nixpkgs-hammering\r\nhttps://github.com/ryantm/agenix','NixOps, when I reaiised that it does much too much magic for my purposes.\r\nA variety of rust2nix projects.\r\nnix-top, as it did weird stuff to my terminal\r\n',''),(66,'1980-01-01 00:00:00',5,'en','317024944','A5','A2','male','','','','','','','','','','','','','','','Y','','','Y','','Y','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I started experimenting with Nix in the hopes to switch to NixOS. It was a much more stable package manager than pacman and I could configure packages a lot easier.','','Y','','Y','','','Y','','Y','','Y','','','','Y','Y','Y','Y','','Easy configuration of from-source packages: can just override the nix expression','Reproducible development environments','A continuously growing and up to date package ecosystem','Break up nixpkgs into many flakes, assuming flakes was standardized','Not sure, maybe docker, gobolinux, anaconda or a mix of many solutions','Y','','','Y','Y','','','','Y','','Y','','','','node2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was using archlinux and I started to get frustrated with how much work was needed just to maintain the system. It always felt like there was something that was not working and no one was able to help me solve it since my system was likely so different than theirs. I saw the appeal of nixos and a system that can be described with nix code. From there I started experimenting with nix on archlinux before making the switch to nixos.','Y','','Y','','Y','','','Declarative system/application configuration... configure it once and it works forever','Stability with rolling release due to the checks performed by hydra','Documentation: once you understand nix code, NixOS is actually the best documented distro there is, since I can look up in a git repository how every part of the distro is configured and there are option descriptions for eerything','Improve the speed of rebuilding my operating system','Archlinux','Y','','','Y','','','','Y','Y','','','flake-utils-plus\r\ndivnix/digga\r\nmach-nix\r\nhome-manager','NixOps\r\nmobile-nixos(hope to try again soon)\r\n',''),(67,'1980-01-01 00:00:00',5,'en','73029023','A1','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I\'d long been annoyed with Gentoo not being able to track necessary rebuilds through compiler or `CFLAGS` changes. Nix looked like the only build tool which tracks dependencies \"properly\". NixOS providing fully-declarative systems is just a bonus.','Y','Y','','','','','Y','Y','','','','','','','Y','Y','','Y','','Binary caches for dev shells and deployment.','Proper dependency tracking... of everything.','Reproducible builds, and at least some pretense of bootstrappability.','Lists should not be space-separated. Remove the `with` keyword. Remove everything pre-flakes. Make `nix run` not redownload the flake as often. Being able to cache evaluations between Github Actions runs would be awesome.','Probably a combination of docker, bazel, and a good psychologist.','','','','Y','Y','','','','','','Y','','','','cabal2nix, hackage2nix (indirectly, though IOHK\'s haskell.nix project)','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I had time at a new job to dig in and learn it, and I was sick of trying to reprovision my machines with ansible or other inferior tools.','Y','','Y','','','','','Declarative system configuration.','Reproducible system configuration - I can go travelling with a throwaway image on my machine, and easily replace it with my true machine image as soon as I return','','','Gentoo','Y','','','','','Y','','','','','i3','IOHK\'s haskell.nix','nixpkgs\' haskellPackage set. While it\'s great for OS end-use, it is too limited for complicated dependencies in larger Haskell projects.',''),(68,NULL,NULL,'en','1085501919',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(69,NULL,1,'en','792225903','A3','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70,'1980-01-01 00:00:00',5,'en','581856564','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','A coworker cleaned up some development environments with Nix. The intention was to parlay that into production usage, but that did not pan out. I basically make small tweaks to the existing configurations.','Y','Y','','','','','Y','','','Y','','','','','Y','Y','Y','Y','','Great local development','Declarative package management','','Replace the Nix language probably, with something easier to grok. The functional/ML-esque thing is fine, but the language and how files work together is kinda confusing at a glance. It\'d be nice if documentation was better, too. A book would be nice, as well, if only to make Nix feel more official to managers and people you try to sell the concept to.','I guess Guix would be the closest, but I\'d probably just stick to Docker, Vagrant, or just some Makefile action.','','','','Y','Y','','','','','','','','','','Mostly Python stuff at work, e.g., poetry2nix and the like','Y','Y','','','N','Mostly being lazy and not feeling committed to it. I think it\'s nice but sometimes I feel like, at work at least, we have bigger fish to fry. Having a repeatable, declarative build is cool, but it doesn\'t seem to do much for our software sucking. I felt like a lot of time was spent on Nix initially, and the learning curve feels steep now for anyone else to maintain it. The developer who brought Nix in is leaving now.','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A1','The Nix guy at work wanted to set up the machines with GPUs in Nixos. So we\'ve done that.','Y','','','Y','','','','Declarative','Control over packages (maybe?)','','Same thing as Nix','Some other Linux thing','Y','','','','','Y','','','','','','','','Nix is really cool, thanks for all the work! I just wish it was a little easier to dip your toe into.'),(71,'1980-01-01 00:00:00',5,'en','1015690906','A2','A3','male','','','','','','Y','','','Y','','','','','Y','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I tried out various package managers to build, package, and deploy custom software.\r\n\r\nNix/NixOS seems to be the best solution, yet.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','declarative system management','packaging software','newest software packages','Content addressable.\r\nBetter CI.','portage, guix','','','','Y','Y','','','','','','','','','','poetry2nix\r\n','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I used Ansible to deploy infrastructure and tried out various package managers to build, package, and deploy custom software.\r\n\r\nNix/NixOS seems to be the best solution, yet.','Y','','Y','Y','','','','declarative system management','packaging software','extendability','Better system and service hardening.\r\nSELinux support.','Ansible, portage, guix, fedora','Y','','','','','','','Y','','','','','','5/5 Stars. Very helpful, open, and friendly community. Would recommend.'),(74,'1980-01-01 00:00:00',5,'en','235141631','A5','A6','male','','','','','','','','','','','Y','','','','','','','','','','','','','','private researcher','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','stumbled upon, amazed that had not known more sooner','','','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','declarative','rollback, failsafe','reproducibility','','used to use debian','','','','','','','','','','','','','','','dub2nix, but now mostly build statically from downloading any external depends','Y','Y','Y','','N','time, experience (possibly imagined beaurocracy), working mostly in private (as opposed to online)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','stumbled upon, surprised did not know of sooner, declarative was enough for me, there is much icing reproducible, rollback','Y','','Y','Y','','','','','','','focus or favoring particular languages and tools though I understand it is difficult to avoid this','used to use debian','Y','','','','','','','','','','i3 wm and selected tools tilix alacritty tmux (doom) emacs nvim vim etc','','',''),(72,'1980-01-01 00:00:00',5,'en','823521900','A5','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I wanted reproducible builds that avoid the pain points of modern package management (dependency hell, implicit dependencies, etc.)','Y','Y','','','','','Y','','','','','','','','Y','','','','','Reproducible builds','Declarative environment management','Declarative OS and system management (like NixOS and home-manager)','Better centralized documentation','GNU Guix','','','','Y','Y','','','','','','','','','','','','Y','','','N','I have never found Nixpkgs to be lacking anything I wanted','N','Y',NULL,'I was spending too much time trying to figure out how to do system management instead of getting work done','Easier installation, more automation + documentation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(73,'1980-01-01 00:00:00',5,'en','355408254','A5','A3','male','','Y','Y','','','','Y','Y','Y','Y','Y','','Y','','','','','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because I can\'t stand Docker and wanted a long term deployment solution for my personal projects!','','Y','','Y','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','Declarative environments','Declarative builds','','More tools to make managing systems and environments easier for people who don\'t know Nix like I do','Nothing, I can\'t stand Docker','','','','Y','Y','','Y','','','Y','','','','','yarn2nix, poetry2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I got into it because my Linux deployment story was atrocious and wanted a long term solution for the next 5-10 years','Y','Y','Y','Y','Y','Y','','Declarative OS configuration','NixOS containers','Declarative deployment','Compatibility with existing Linux binaries without needing a FHS environment','Arch','Y','','','Y','','','','','','','Enlightenment','deploy-rs for deployment','NixOps, because deploy-rs supports flakes','Nix has changed development and OS deployment more than any software I have tried in the past decade. Outstanding work, documentation still sucks though.'),(75,NULL,1,'en','944749027','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','virusmaker (in the past)','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(76,'1980-01-01 00:00:00',5,'en','531655787','A2','A5','male','','','Y','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','','Y','Y','','','','','Y','','Y','','','','','Y','Y','','','','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(77,'1980-01-01 00:00:00',5,'en','2042904338','A2','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Out of the need to create a stable environment for scientific software.','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','reproducible builds','NixOS','reproducible environments','Make flakes a stable feature and fix its shortcomings. Allow structured package sets in flakes (instead of just flat ones, i.e. allow more than just derivations in `packages.`).\r\nAdd feature to the new `nix` interface to allow it for use in shell script shebangs (like the old nix-shell).','?','','','','','','','Y','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','Y','','','','','','','','','Y','','Y','','','Y','Y','','','','',''),(78,'1980-01-01 00:00:00',5,'en','1888607317','A2','A3','male','','','','','','','Y','Y','','Y','Y','','Y','','','','','Y','','Y','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted to setup my devices in a declaritive way.\r\n\r\n- laptop\r\n- servers\r\n- ..','','Y','','','','','Y','','Y','Y','','Y','','','Y','','','Y','','Nixos','','','Better updated documentation.\r\nFocus on flakes, there are too many different ways to setup.\r\nDeprecate imperative\r\n','Fedora, arch, debian','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','See previous','Y','','Y','Y','','Y','','Declarative setup','','','See previous','See previous','Y','','','','','','','','','','swaywm','Flake-utils-plus\r\n','','Thank you, I <3 nixos'),(79,'1980-01-01 00:00:00',5,'en','61864664','A5','A4','male','','','','','','','Y','','','','Y','','','Y','','','','Y','','','Y','','','','','Y','','','Y','','Android','N','Y',NULL,'I found it much too hard to get started, even on my macOS device.','Improvements to the configuration language? Better macOS support and make NixOS work on my Debian image within ChromeOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Difficulty getting started, even in containers.','Make it easier to use alongside other packaging systems.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Flakes, home-manager, etc. NixOps.','I would love to talk more about this. yonkeltron@gmail.com.\r\n\r\nThanks,\r\n+Jonathan'),(80,'1980-01-01 00:00:00',5,'en','1122111205','A2','A5','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','Because of NixOS, no need to use it elsewhere so far.','','','','','','','Y','','','','','','','','Y','','','Y','','Declarative system management','Possibility to use multiple package versions/channels','Temporary environments','Proper --help option for Nix commands instead of just dumping man pages.\r\nFHS support: Programs having trouble to find necessary stuff in standard locations or the necessity to run applications in special nix-shell environments just because they need some Python library is annoying and a big waste of time.','I\'m not familiar with anything comparable.','','','','','','','','','','','','','','','','','','','','N','Lack of expertise and lack of time. Both amplified by the fact that Nix/NixOS uses a web forum instead of mailing lists, which makes it difficult to follow and gather knowledge continuously (Discourse e-mail notifications are poorly implemented and not well usable) ; the result is that I can watch just announcements.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Because I needed to use a sufficiently stable and usable GNU/Linux distribution other than Debian.','Y','','','','','','Desktop computers','Fairly complete and reasonable stable system','Declarative system and package management','Rollbacks','Besides the things already listed for Nix:\r\n\r\n- A longer transition period between versions. AFAIK once a new NixOS version is released, the old one is supported only for about one month, which makes NixOS unusable for me on servers.\r\n- Better descriptions of packages, it\'s sometimes difficult to identify which package to use or which is the right one to use.','Debian','Y','','','','','','','','Y','','','','',''),(81,'1980-01-01 00:00:00',5,'en','866224718','A2','A4','male','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I heard a talk about it on binaergewitter podcast','','Y','','','','','Y','','Y','Y','','Y','','','Y','','','Y','','Declarative package configuration and environments','Easy Rollbacks','Independence from main system',' Better documentation, more examples','pkgsrc','','','','Y','Y','','','','','','','','','','mach-nix','','','','','N','I have nothing to contribute, time constraints','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I heard a talk on binaergewitter podcast and was intrigued','Y','','Y','Y','','Y','','Declarative system configuration','Extendability (home-manager)','Easy rollbacks','Better compatibility with random binaries for testing','Arch','Y','','','','','','','Y','','','','home-manager','',''),(82,'1980-01-01 00:00:00',5,'en','565257704','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I’m tired of mutable state.','','','','','','','Y','','','','','','','Y','Y','','','','','declarative management of development environments','side-by-side installations of different versions of the same software','','seamless compatibility with existing codebases that manage dependencies via a language-specific package manager (npm, Yarn, Cargo, Bundler, Pip, etc.)','probably a smattering of rbenv, nvm, etc. with direnv on Debian','','','','','','','','','','','','','','','yarn2nix and bundix from nix-pkgs','','','','','N','Nothing to contribute yet.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I’m tired of mutable state.','Y','','','','','','','declarative system configuration','up-to-date packages, especially relating to Wayland','','better reporting of what’s about to happen during a system update','probably Debian, but Fedora Silverblue sounds interesting','','','','','','','','Y','','','','','',''),(83,'1980-01-01 00:00:00',5,'en','1102705851','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','A friend recommended NixOS for system configuration when I first set up a NAS. I contributed a NixOS module to nixpkgs for a package that had already been added. I haven\'t used Nix for development in any significant capacity.','','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','Enduring standards. There is not one consistent \"right way\" to use Nix tools across the sparse official documentation, the wiki, and whatever personal blogs and git repos show up on Google when you google \"nixos \". Niv, channels and pinning, flakes, the nix command vs the nix-* commands, load-bearing third-party repos like flake-utils, several different deployment tools, etc. all make it hard to build \"muscle memory\" with how to use nix tooling with a project from start to finish. There needs to be one standard way that works for most people, and then there needs to be a couple of years of consolidating around that standard to build inertia.','For Python, I\'d just install poetry into the system env. For services, I\'d just install them manually.','','','','Y','Y','','','','','','','','','','https://github.com/nix-community/poetry2nix','','','','I don\'t know how','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','A friend recommended NixOS for system configuration when I first set up a NAS.','Y','','Y','','','','','Centralized configuration management','Ease of enabling services','','','Ubuntu server and manually install things','Y','','','','','','','Y','','','','','',''),(84,NULL,1,'en','153828089','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(85,'1980-01-01 00:00:00',5,'en','613342016','A2','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','ChromeOs','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reading NixOS\' Options is really what brought me into the Nix ecosystem, but then I started to find testing iterative changes to packages by working with nix-shell, etc, very convenient and no longer feel the need to work with everything as a complete NixOS configurations.','','','','','','','Y','','','Y','','Y','','','Y','Y','','Y','','Ease of moving a shell between many custom versions of packages','A full featured but small DSL with syntax similar to ML, etc.','Support for many architectures.','A more unified/integrated mechanism to refer to clustered configurations of multiple systems so tasks like always starting a group of local virtual machines, NixOS\' testing of things in groups of virtual machines and deploying to a NixOps cluster are in normal capabilities.','I was using Debian to get a basic system image and packages followed by building the most important packages from git using ansible or bash scripts.','','','','','Y','','Y','','','','Y','','','','node2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was always unhappy with the situation of system packages and /etc. When I saw NixOS Options Search I very quickly switched over my own desktop first and later moved production systems to NixOps.','Y','','','Y','','Y','','Moving between builds from channels or local git','Methods like infect to convert cloud systems','Portability of a configuration.nix across very different systems, updates, etc.','Configuration would be oriented around dependencies in clusters of systems so starting up a lot of local virtual machines on boot, nixos-tests, VPN setups, and multiple host production NixOps setups would all be similar and feel entirely first class.','Guix? Less ideally Terraform and Ansible.','','Y','','','','','','','','','Xmonad','NixOps, nixos-infect, Mobile NixOS','',''),(86,'1980-01-01 00:00:00',5,'en','54764557','A5','A4','male','','','','','','Y','Y','Y','','Y','Y','','Y','','','','','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A2','I started a new job, and the company already used Nix to manage package dependencies for a full-stack web app.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','I love the fundamental concept of managing every build and run-time dependencies down to `ls` and `grep`','I love the functional-first approach','','It\'s too complicated and has a terrible developer experience. It is a decent v1, but I feel it has to be rebuilt a couple of times before it\'s better/easier to use. Take for example Git and Docker. They are 2nd or 3rd+ generations of version control and container orchestration, respectively.','The current Linux distro package managers and Docker.','','','','','','','','','','','Y','','','','','','','','','N','Don\'t have the time or energy.','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A2','Because I did not want to install nix on my macOS MacBook. So I run NixOS in a VM on my mac. And I also use the nixos docker image.','Y','Y','','','','','','','','','See my previous answer to the nix package manager.','Debian or Ubuntu','','','','','','','','','','','','','',''),(87,'1980-01-01 00:00:00',5,'en','572256434','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','As part of Cyberpipe I had influence from Domen Kozar, Matija Suklje and Rok Garbas who later showed me how to make my first Nix package which was my first contribution to nixpkgs','Y','Y','','Y','Y','','Y','','Y','','','','','Y','Y','Y','','Y','','Declarative management','Templating capabilities','Environment building','Add multi language support, like for example Pulumi has.','Docker\r\nLxc\r\nLinux namespaces','','','','Y','Y','','Y','','','','Y','','','','A lot, depends on the language packages that I need that day','','','Y','','N','- Not enough time because of job and life\r\n- no wish to argue with people why I did something like I did','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','Just installed it because of search of perfect Linux distro, NixOS is not perfect but comes closer to perfection than other distros or even OSes.','Y','','Y','','','','','Stability - even on unstable channel - if it builds it usually just works','','','Module system is something that needs attention, it needs to support different backends not just systemd','Fedora Silverblue probably','Y','','','','','Y','','Y','','','','Home manager','Flakes',''),(88,'1980-01-01 00:00:00',5,'en','1950328192','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Software ARchitect & Team Lead','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Initially got to hear about the name on the Pharo Smalltalk mailinglist.\r\nAt some point I started to try it and installed it on my new laptop and since then sticked with it.\r\nThe original person from which I heard the NixOS name first apparently moved away from NixOS at some point.\r\n\r\nWith using NixOS you do not get around to not use Nix.','','Y','','Y','','','Y','','','','','Y','','Y','Y','Y','','Y','','declarative package configuration','dependency closures without hidden dependencies','reproducible build environments','more ergonomic flakes (e.g. built-in flakes-utils)','difficult call\r\nsomething that takes dependency management serious and is based on the correct theoretical foundation (i.e. SAT-solvers) ','','','','','Y','','','','Y','','','','','Woodpecker CI','','','Y','','','N','I would be able to provide single package versions but do not have the time to maintain it and update to the package to newly released versions','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Initially got to hear about the name on the Pharo Smalltalk mailinglist.\r\nAt some point I started to try it and installed it on my new laptop and since then sticked with it.\r\nThe original person from which I heard the NixOS name first apparently moved away from NixOS at some point.','Y','','','','','Y','','Nix package manager','reproducable system configuration as code','no-pain rollback to older versions','built in declarative user/home-directory configuration management (home directory, dot files, ...)','tough call\r\nmaybe ArchLinux\r\nmaybe Ubuntu','Y','','','','','','containers','Y','','','','','','NixOS and Nix are awesome.\r\nThanks for making and improving it and I am glad that I can support a bit financially.\r\n\r\nMaybe at some point I get the chance to get it into the scope of my company.'),(89,NULL,1,'en','2024221745','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90,'1980-01-01 00:00:00',5,'en','1417278532','A4','A1','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','','','','','','','','','','','','','','','','DWM','','',''),(91,'1980-01-01 00:00:00',5,'en','702448587','A2','A4','male','','','Y','Y','','Y','Y','','','Y','Y','','','Y','','','Y','','','','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Sounded an interesting tech\r\nMy main project is a big Rail app, with dependencies managed in a mix of homebrew and docker. Docker was eating my MacBook’s battery, getting away from having to run that 24/7 was a big reason to switch.','Y','','','','','','Y','','','','','','','Y','Y','','','','','Declaratively set up dependencies for my main rails app and share it between a MacMini and Macbook','Nix-shell+direnv integration','Jumping between different library versions to test, eg Ruby 2 vs Ruby 3','Better support for Rubygems, both when installing ad-hoc (gem install foo) or when in a Bundler project,\r\nFor a while there was bundix but it feels like it’s suffering from a lack of maintainer focus. ','Homebrew+docker','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'N','N','For personal devices, not much - if Apple stopped making hardware, sure.\r\n\r\nFor servers… if it didn’t feel like such a niche environment I could maybe justify rolling it out more, but that’s a bit of a chicken and egg thing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Does direnv count..?','',''),(92,'1980-01-01 00:00:00',5,'en','1462956854','A2','A4','male','','','Y','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','The idea of having one configuration file managing everything on my little home server was very appealing, making it easier to get an overview of the configuration of the machine and be able to back it up easily and reuse if I had to reinstall it.','','','','','','','','','Y','','','','','','','','','Y','','Declarative system configuration','Consolidation of all system configuration in one place','Ease of configuring new services via nixpkgs','I\'ve never got fully to grips with the language syntax, so that would perhaps be something to improve. I\'m however sure it would become more normal to me if I just were to use it more regularly.','Probably Arch Linux and Ansible :/','','','','','','','','','','','','','','','','Y','','','','N','I haven\'t spent enough time on Nix(OS) yet that I\'ve had a need that wasn\'t already fulfilled.','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','Same as for Nix, for running on a home server where I liked the idea of having one configuration file which contained the entire configuration of the machine.','','','Y','','','','','Declarative system configuration','The availability of packages in nixpkgs and how easy it makes using a new package','Ability to roll back to previous versions','nixos-rebuild can take up a lot of RAM for my small Raspberry Pi 3B+ server, which slows it down a lot and makes it take quite a hit. It would be great if it wasn\'t as resource hungry.','Probably Arch Linux and Ansible :/','Y','','','','','','','','','','','','','The search site (https://search.nixos.org/) is great!'),(93,'1980-01-01 00:00:00',5,'en','860181265','A6','A2','male','','Y','','','','','','','','Y','Y','','Y','','Y','','','Y','','Y','','','Y','','','','Y','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I\'m way too scared of dealing with issues in most rolling-releases distributions, and at one time, my hard drive broke, and I decided to see if there is something worth giving a try. And of course, not to mess things up from upgrades to upgrades.','Y','','','','','','','Reproducible','Neat configuration','Extensible','','Fedora Silverblue or Manjaro','Y','','','','','','','','Y','','','','',''),(94,'1980-01-01 00:00:00',5,'en','583009211','A5','A4','male','','Y','','','','','','','','','','','','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I had read articles about it on hacker news and was curious','','','','','','','Y','','Y','','','Y','','','Y','','','Y','','Rollback','Human readable consistent managed configuration ','Ease of troubleshooting','I’d make the documentation better and make the conmand line interface more ergonomic, I’d make flakes more prominent, and error messages more obvious','Probably lots of docker containers on ubuntu','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','Y','','Rollback','Configuration management','Ease of troubleshooting','Better documentation, more intuitive conventions and commands, more prominent flakes','Ubuntu with lots of docker containers','Y','','','','','','','','','','I3 ','','','I love nix'),(95,NULL,1,'en','1671527341','A2','A4','male','','','','','','','Y','Y','','Y','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(96,NULL,1,'en','2014308202','A2','A4','male','','','Y','','','Y','Y','','','Y','Y','','','','','','Y','Y','','','','','','Y','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(97,'1980-01-01 00:00:00',5,'en','758713262','A3','A3','male','','','','','','Y','Y','Y','','','Y','','','','','Y','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','CTO ordered to migrate the company, then found it amazing and super reliable and adopted it for personal use as well','','Y','','','Y','','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','Y','','sandboxed builds','declarative configuration','reliability','I would create a core team of full-time, aligned people with clear product vision and goals,\r\nso that we can execute that vision as a high performance, coordinated, elite team and takeover the world\r\n\r\nI would add to the core team: influencers and more marketing people\r\n\r\nI would make Nix (the tool) a standalone small, modern, unprivileged, statically linked binary without a daemon (just download and run)\r\n\r\nI would strip all the redundant weight from Nix and place it somewhere else: nix-env, daemon, profiles,\r\nand focus on what makes us special and different: nix-build, nix develop, fetchers infrastructure (~flakes) and NixOS, anything else can be derived from this but should be done outside of Nix itself. This would allow to simplify Nix, reduce bugs, reduce maintenance, and move forward faster, without loosing features\r\n\r\nI would remove C++ from the codebase','ubuntu, bazel, OCI containers','','Y','','Y','Y','','Y','','Y','','Y','','Y','','https://github.com/fluidattacks/makes','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted more Nix (the concepts and value), NixOS was the logic next step','Y','Y','Y','','','','','declarative configuration','.enable=true ease of use','reproducibility','I would make easier for barbie-like operative systems people (windows/ubuntu/debian/mac) to try NixOS:\r\n- simple installation as windows (no manually formatting disks for instance)\r\n- out-of the box ubuntu-like look and feel, so they don\'t feel we are ugly or less user-friendly\r\n- more modules (more .enable=true and have fun)\r\n- hardware compatibility\r\nOnce they are able to try and feel the power of NixOS by themselves, it\'s hard not to pick it as daily driver','ubuntu :(','Y','','','','','','terraform','','','','i3','nixos-generators\r\nhome-manager\r\nfenix\r\n2nix tooling','',''),(98,'1980-01-01 00:00:00',5,'en','1456542656','A2','A3','male','','','','','','Y','','Y','Y','','','','','Y','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I like reproducible systems and generating my system from a config file.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Upstreaming and maintaining packages','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I like reproducible systems and generating my system from a config.','Y','Y','Y','Y','','Y','','','','','','Arch Linux.','Y','Y','Y','Y','','','','Y','Y','','i3, sway','','','MOOAAAR NIX!!'),(99,'1980-01-01 00:00:00',5,'en','1690449120','A5','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','When I was living in Auckland, NZ, Utku Demir got me interested in it when we were hanging out at the Auckland Functional Programming meetup group. He sold me on it, and the rest is history.','Y','','','','','','Y','','','','','','','','Y','Y','','Y','','Declarative project development environments','Declarative system environments','','I would remove all the imperative nix-env stuff so that people only focus on the declarative side of things. While I now understand and like the Nix language, I would do away with the Nix language and find a better way to lower the barrier to entry for everyday developers. I would also have simple CLI wizards for generating projects in popular languages / frameworks so that the experience is Rails-/Elixir-like: it\'s plain, and it does the work for you.','Everything for my projects would be pure docker + scripts. For my macOS system, it\'d be scripts + homebrew (although I still do use homebrew with nix-darwin).','','','','Y','Y','','','','','','Y','','','','cabal2nix','Y','Y','Y','','Y',NULL,'N','Y',NULL,'I\'m a seasoned web developer who has used primarily macOS for the last decade, and I could never figure out how to set up NixOS -- even on a VM -- so I gave up, as it was a waste of time. I\'ve tried a handful of times, and it\'s never been a good experience. This is also probably because I haven\'t used Linux distros before, but still... it\'s easy to see why more people aren\'t using NixOS.','Pre-install it on a laptop and send it to me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-darwin, flake-utils, cachix','','I love Nix and can\'t go back, but I\'m also on the lookout for things that build on top of Nix\'s concepts but do things differently across the board. I have a feeling a lot of other people are, too, but I don\'t want to be half-in, half-out the Nix door -- I want to be fully bought in! I know that being a community-driven project makes this hard and all, so I\'ll keep spreading the word and contributing where I can.'),(100,NULL,1,'en','689261672','A2','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(101,NULL,NULL,'en','263680350',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(102,'1980-01-01 00:00:00',5,'en','1100472423','A2','A2','-oth-','deeply confused','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','','Y','','','','','','Y','','','Y','','Y','also some cloud-hosted boxes for tinkering but not necessarily production','','Y','','','Y','','','','','','','','','','Y','Y','','Y','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','','Y','','','non-production cloud boxes for tinkering','','','','','','Y','','','','','','','Y','','','Sway','nix-darwin','',''),(103,NULL,NULL,'en','1933094312',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(104,'1980-01-01 00:00:00',5,'en','405516847','A2','A3','-oth-','nonbinary','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','People were talking about it, so I decided to check it out','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','I\'d stabilize flakes, removing the shortcomings currently present ','Guix','','','','Y','Y','','','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was already using Nix, and based on my experience with it, I thought NixOS would be a good idea ','Y','','Y','','','','','','','','','Guix','Y','','','','','','','','Y','','','Home Manager','',''),(105,NULL,NULL,'en','917847067',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(106,NULL,2,'en','638277255','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It\'s the only project that can configure systems as code, in a reliable manner.','Y','Y','','Y','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','A composable build system','With lots of packages','And reproducible builds','Remove nix-env, channels and impure eval in general.','I would use a shovel in the field because I would stop using computers.','','','','Y','','','','Y','Y','','Y','','Y','','poetry2nix, npmlock2nix, ...','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(107,NULL,1,'en','1845129210','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(108,'1980-01-01 00:00:00',5,'en','1226149873','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','','Y','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','Dev environment','Container build','NixOS','-I would decrease its learning curve...\r\n- I would make Nix installable with distribution package manager (apt,...)','Debian and containers','','','','','Y','','Y','','','','','','','','poetry2nix','','Y','','Sometimes, i fetch nixpkgs (with niv) and patch it','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A5','','Y','','Y','','','','','Declarative/versionnable','Rollbacks','Testable (though NixOS tests)','','Debian + containers','Y','','','','','Y','','','','','sway','','',''),(109,'1980-01-01 00:00:00',5,'en','833021523','A4','A5','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','Docker','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','','Fedora','','','','Y','','','','Y','','','','home-manager\r\nemacs-overlay\r\ndwarffs','',''),(110,NULL,1,'en','294226762','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(111,'1980-01-01 00:00:00',5,'en','248689041','A2','A2','fem','','','','','','Y','Y','Y','','','Y','','Y','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Friend recommended it!','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Declarativeness','Dependency tracking','Mostly unified configuration language','Remove flakes as a language feature and stop it from being required for every new nix command.','Alpine','','','','','','','','','','','','','','Buildbot','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Friend recommended it.','Y','Y','Y','Y','','','','Rollbacks','Unified configuration language','','Banish the fixpoint config system.','..Alpine?','Y','','','','','Y','','','','','awesomewm','','',''),(112,NULL,NULL,'en','2012685319',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(113,'1980-01-01 00:00:00',5,'en','670201919','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was attracted by the declarative approach, and there seemed to be a general vibe that nix is the future. So at 34C3 I went to the NixOS assembly and asked for guidance in setting up nixos over my Debian machine - I haven\'t looked back. ','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','Composable packaging','Declarative system configuration','shell.nix','By far: add types to nix the language (see nickel), and a way to document attributes, and build language server features on that. Discovery and documentation accessibility (both reading and writing) are two of nix\'s biggest shortcomings, and I believe this would be a huge help in a way that suits the nixpkgs community (unlike \"we should totally write more documentation\"). ','Would probably still hang out on Debian','','','','Y','Y','','','','Y','','','','','','Would like to use yarn2nix, but couldn\'t figure it out. ','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','See previous :) ','Y','','','','','','','','','','','Debian','Y','','','','','','','','','','bspwm','direnv, home-manager (can\'t believe that wasn\'t an option before?) ','','Thank you guys specifically for working on nix\'s public relations! You rock 🤘 '),(114,'1980-01-01 00:00:00',5,'en','469262032','A5','A3','male','','','','','','','Y','','','','Y','Y','Y','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Smart people seemed to be recommending it. Probably first heard through Gabriella Gonzalez?','Y','Y','','','','','Y','','','Y','','','','Y','Y','','','Y','','shell.nix','shell.nix','shell.nix','Sane CLI.','Long “dependencies” section in a README.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','I submitted a trivial patch once; it languished in eternity. Seems like a lot of emotional labor to poke strangers for review.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','','','','Y','','','','Ability to reproduce my setup on a brand new machine','','','','Probably still be on arch','Y','','','','','','','','','','','','','I wish the nix —help commands used troff to layout text sanely. Huge step down from man pages'),(115,'1980-01-01 00:00:00',5,'en','354191915','A2','A4','male','','','','','','','Y','','','Y','Y','','','','','Y','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I had seen it multiple times in news sites and social media, was tired of using different tools for each language to get dev environments and build environments and tried nix-shell, from then on I use it for all dev/build envs','','Y','','','','','Y','Y','','','','','','','Y','','','','','reproducible development environment','reproducible build environment','try things without poluting my machine','easier to understand the nix language','I would try guix, not sure it if would be able to replace my usage of nix','','','','','','','','','','','','','','','','','','','','N','don\'t know much of the language','N','N','not much, I\'m ok with ubuntu',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','thanks!'),(117,'1980-01-01 00:00:00',5,'en','199808152','A2','A3','male','','','','','','','','','Y','','','','','Y','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','Via curiosity about NixOS','','','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','Ability to specify steps for how to build essentially anything (package, service, system, configuration, ...)','Compared to other config/customization options, the ability to abstract with functions','\'nix-shell -p\' for ad-hoc shells with a set of packages in scope','I feel like there\'s a lot of historical baggage/cruft in Nix (which is understandable given how long-running the project is). It would have been nice if different components (the store, the daemon, the nixlang implementation) were more separate from one another, smaller and more self-contained with clear boundaries. As it is, it feels like there\'s a lot of historical warts in the syntax & semantics, and hard to fix those without breaking nixpkgs (which is kind of a non-starter at this point).','In practice, probably still Arch rather than NixOS, and probably not have realised the general paradigm of nix-style declarative build specification existing.\r\n\r\nThis kind of also blends into the previous section, but.. apart from Nix & Guix, the general paradigm space which they occupy feels underexplored. There\'s been a couple other hobby projects in the same space cropping up in recent years that I\'ve noticed, and I\'m hoping for more general exploration and research in that area. Of course nixpkgs gives Nix a big headstart in terms of offering derivations for a large set of packages already, so in practice I don\'t see myself switching to anything else anytime soon for any stable systems.','','','','Y','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Curiosity about NixOS and the stateless/declarative way of managing systems. Lots of friends using NixOS.','Y','','Y','','','Y','','Ability to specify and realise a full system config, with serivces & their configs','Ability to roll back changes/manage generations','','The module system gives me somewhat mixed feelings... with that modules are \"singletons\" (compared to nixpkgs package derivations where it\'s straightforward to have several differently-parameterised versions in parallel), and config that\'s tightly coupled to the modules and module system.','Arch linux still, probably. Or perhaps have distrohopped to something else, dunno..','Y','','','','','Y','','','','','hikari (wayland)','','',''),(118,NULL,NULL,'en','643563835',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(119,'1980-01-01 00:00:00',5,'en','1055091843','A2','A5','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','','','','','','','','','','Testbed (Grid\'5000)','Y','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','Y','','Y','','','','','Y','Y','','NUR','N','2 PRs stalled without clear reasons ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','research','A4','','Y','','','','','','testbed(Grid\'5000)','','','','','','Y','','','','','','nixos-compose','Y','','','','','',''),(120,NULL,2,'en','1579150151','A5','A3','-oth-','stop asking if im male or female im just normal','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','for looser definitions of \"use\": plan9, openbsd, ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','a bunch of my irc friends woulden\'t shut up about it and after my boyfriend went sicko mode on it for 2 weeks it was inevitable','Y','Y','','','Y','i used the broccoli one (https://github.com/tazjin/nixery) once','Y','Y','Y','Y','','','','','Y','','','Y','','nix-shell','nix-shell','nixos-lustrate','the like 5 different shasum variants idk just settle on one come on','probably no equivalent personally and in work environments i\'d probably have to suffer through puppet or ansible or something ','','','','','','','','','','','','','','i think we rolled our own at work','https://github.com/tazjin/buildGo.nix','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(121,'1980-01-01 00:00:00',5,'en','27860662','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','Y','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','Wanted to see what all the fuss was about, and so threw it on an old laptop','','','','','','','Y','','','','','','','','','','','Y','','repeatability','discoverability - i like the idea that i can go to one place to find out about the whole system','breadth of possibilities - i like using the linux port of cwm(1), which just happened to be available as an option fo X window manager','i would replace the DSL with a Scheme','What i\'ve always used - alpine, debian, or openbsd','','','','','','','','','','','','','','','','','','','','N','unfamiliar with the language and don\'t have the time to pick up yet another lang','N','Y',NULL,'barrier to entry is fairly high','if a server completely blew up and i didn\'t have backups. that would cause me to angrily reach for a tool that, with significant startup costs in terms of time and learning the nix language, would let me avoid configuration drift/loss in the future',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(122,'1980-01-01 00:00:00',5,'en','1747897228','A2','A2','male','','Y','Y','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','','','Y','Y','Y','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','idea sounded nice, so I gave it a shot, fell in love and stayed','','Y','','Y','Y','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','nix-env','nix-shell','nixOS declarative config/management','foreign package interface so the Nix can be wrapped around different kinds of package, maybe recompile it for our arch. and, I have no idea what to say there lmfao','nothing - I lived quite long before I knew Nix, but I don\'t want to even imagine what would be, if Nix didn\'t exist at all in the first place','Y','Y','Y','Y','Y','','Y','','','','Y','','','','cabal2nix mostly','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','sounded cool','Y','','Y','Y','','','','I have no idea, but I love the declarative configuration and management of NixOS','','','more packages and integrations (looks at VMware, which I\'m just used to, tho rn got used to KVM/Qemu, because NixOS forced me to haha)','dunno, I use Bedrock+Nix combo on a daily basis, so I\'d probably use that...','Y','Y','','','','','','','','','xmonad','dunno','dunno','have a great day!'),(123,NULL,1,'en','1805591435','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(124,'1980-01-01 00:00:00',5,'en','1569288727','A1','A5','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducibility','','','','','','Android','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','Y','','Reproducibility','Declarative system management','Haskell support','Nix would be replaced with Haskell. It needs to be a functional programming language.','Propeller on Debian (configuration management written in Haskell).','','','','Y','Y','','Y','','','','','','Y','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducibility','Y','Y','Y','Y','Y','Y','','Reproducibility','Declarative system management','Flakes','See earlier answers','See earlier answers','','Y','','Y','','','','','Y','','Xmonad','','',''),(125,NULL,1,'en','1088871549','A5','A3','male','','Y','','','','','Y','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(126,'1980-01-01 00:00:00',5,'en','1974109630','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was searching for something easier to use then Arch Linux.','','','','','','NixOS','Y','','','','','','Laptop','','Y','','','','','Easy configuration in configuration.nix with nixos.','nix shell with direnv','I would love to it to build java tomcat applications or npm webapps. But it is very complex and https://github.com/NixOS/templates does not have templates easy templates to use.','Add a wiki like Arch Linux. Add more templates to https://github.com/NixOS/templates.','Arch Linux','','','','','Y','','','','','','','','','','I tried maven2nix for a tomcat application, but did not find out how to use it. Also node2nix to get a reproducible build environment but also did not get it to work.','','Y','','','N','Nearly all needed packages are already there. For the ones that are not it is easier to create a nix-shell and use it once.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was searching for something easier to use then Arch Linux.','Y','','','','','','Desktop','Easy configuration in configuration.nix with nixos.','nix shell with direnv','I would love to it to build java tomcat applications or npm webapps. But it is very complex and https://github.com/NixOS/templates does not have templates easy templates to use.','Add a wiki like Arch Linux. Add more templates to https://github.com/NixOS/templates.','Arch Linux','Y','','','','','','','','Y','','','home-manager','','I love the idea. Configurationg my desktop pc is super easy. But learning any other feature is extreme complex.'),(127,'1980-01-01 00:00:00',5,'en','1802103043','A2','A3','fem','','Y','','','','','','','','','Y','','','','Y','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I started using NixOS.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducibility','Nixpkgs is huge','Separate development environments.','I\'d change nix to be a sane programming language.','A whole smattering of tools like rvm and nvm.','','','','Y','Y','','','','','','Y','','','','yarn2nix\r\nbundix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I don\'t remember how I found NixOS originally, but I do know that I was immediately enamored by it. I\'ve always liked functional programming and I\'d consider myself an amateur sysadmin, so that combination attracted me a lot.','Y','','Y','','','','','Declarative','NixOS modules contain a *lot*.','Rollbacks','Generic init system base.','Probably still Arch for dev machines and Debian with a lot of docker for servers.','Y','','','','','Y','','','','','Sway','direnv\r\nhome-manager\r\nemacs-overlay','nixops','Nix is great!'),(128,NULL,NULL,'en','929767177',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(129,NULL,2,'en','448549361','A5','A4','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I use NixOS on a couple of cloud-hosted VMs. I previously had an installation of NixOS on an old desktop but never migrated it after the hardware failed.\r\n\r\nI also use Nix as an additional package manager on an Arch Linux laptop and a Debian desktop.','','Y','','','','','Y','','Y','','','','','Y','','','','Y','','Safe rollbacks in NixOS.','Declarative package & configuration management through NixOS.','','I feel that there is a huge documentation gap from the Nix Pills to actually using Nix that could be addressed. So long as the packages & configuration I want are already managed in NixOS, I am fine. But as soon as a package breaks, or I need to do anything even slightly non-standard, it immediately becomes so confusing that I give up in 99% of situations.','Most likely I would use something like Ansible or Puppet for server management and would not even try to have a declarative setup for my non-server machines.','','','','','Y','','','','','','','','','','','','','','','N','Lack of expertise + cumbersome employer policies around contributing to open source even outside of work hours.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(130,'1980-01-01 00:00:00',5,'en','1823772887','A5','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I heard about NixOS and liked the idea of a declarative and reproducible OS. So I started with nix as a side effect of using NixOS.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','Y','','','','Y','','','','crate2nix, composer2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I heard about NixOS and liked the idea of a declarative and reproducible OS.','Y','Y','Y','Y','','','','','','','','','Y','','','','Y','','','','Y','','','','',''),(131,'1980-01-01 00:00:00',5,'en','472671732','A2','A3','-oth-','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','A completely reproducible (and version-controllable) Operating System seemed promising to me','','','','','','','Y','','Y','','','','','','Y','','','Y','','Self-Containment','Declarative Nature','Shareability','I\'d love to have a better language','Probably containers in many more places','','','','','Y','','Y','','','','Y','','','','poetry2nix (https://github.com/nix-community/poetry2nix)\r\npnpm2nix (https://github.com/nix-community/pnpm2nix)','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','It seemed appealing to have a completely declarative and version-controllable OS with built-in rollbacks','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','Y','','','',''),(132,'1980-01-01 00:00:00',5,'en','1171545935','A2','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','','Y','Y','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','Y','','','','','','','','','','Y','','','Y','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','','Y','Y','Y','Y','','','','','','','','','Y','Y','','','','','','','','','','','',''),(133,NULL,4,'en','359830282','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(134,'1980-01-01 00:00:00',5,'en','1818446794','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I started using NixOS as I needed a way to deploy some servers while exactly knowing their configuration, and at the same time, I had to package many applications both in a minimalist and reproducible way. Nix was ticking all the boxes and I installed it as my main desktop OS to get familiar with it.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','reproducible builds ','simple+efficient dependency tracking (no more broken dependencies/incompatible packages)','cross compilation toolchains (rust+c)','debugability. A way to interactively understand/observe how expressions are evaluted.','bazel / rpm-ostree / fedora coreos / fedora silverblie / docker','','','','Y','Y','','','','','','','','','drone','cargo2nix https://github.com/cargo2nix/cargo2nix','','','','none','N','I do not understand in which files/folder I must add my new package definition.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','rollback (generation)','a single configuration language','single source of trust configuration','a standard way to share more easily/adapt my configuration across my machines.','fedora silverblue / fedora coreos','Y','','','','','','','','','','sway','','',''),(135,'1980-01-01 00:00:00',5,'en','1854978','A5','A5','male','','','','','','Y','Y','','','Y','Y','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Don\'t recall when I heard about it first, but it was (almost) love at first sight. I love the declarative nature of NixOS and use it daily. I\'m exploring uses for work servers too.','','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','declarative OS configs','consistent package builds','profile history (NixOS)','Quicker and more reliable builds so unstable is as current as say Arch Linux. I\'m exploring ways to run immutable servers on NixOS and I\'ve had some success in this regard, but pinning channel versions AND/OR package versions is a must and is more difficult than is should be in Nix IMO.','I still use plenty of other distros including (but not limited to): Void, Arch, Ubuntu, CentOS. I distro hop frequently on my own equipment and may of these other distros have some really great features.','','','','','','','','','','','','','','','','','','','','N','Mainly a fear that I\'ll submit something but then abandon it as my needs/desires change over time.','Y',NULL,NULL,NULL,NULL,'A1','','','','','A2','','Y','','Y','','','','','declarative OS configs','profile history','consistent package builds','Better package version pinning... I often don\'t care much what is needed outside the requirements for a specific package version (or two).','Arch, Void, Ubuntu, CentOS','Y','Y','','','Y','','','Y','','Y','I3','home-manager','','NixOS is a solid OS. I\'m hoping that package and nixpkgs version pinning become first-class citizens in Nix. I\'m currently vetting out the possibility to run completely immutable servers (some PXE boot, some with limited on-disk persistence) using NixOS. The main drawbacks are tracking very specific server software versions and/or Kernel versions. Ideally a package version could be specified in config and then the nixos-rebuild would either grab the pre-built binary package or, in the case when that version isn\'t in nixpkgs it would be built automatically and added to the result.\r\n\r\nBetter documentation around best practices for creating slight variations of existing packages (could be as small as a minor version change). Duplicating .nix files in the nixpkgs repo seems like a lot of unnecessary duplication.'),(136,'1980-01-01 00:00:00',5,'en','1653517064','A5','A2','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Several of my friends, along with a number of other people I really respect, use NixOS and spoke about it to me. Eventually, I expressed interest and my friends offered to help get me set up with NixOS and Morph.','','','','','','','','','Y','','','','Desktops','','','','','Y','','The ability to easily share working packages with friends (excited for non-experimental flakes to make this easier!)','The assurance that unrelated system changes won\'t break a package','','','Probably Ubuntu.','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Same as Nix itself - friends and influential figures talking about it, friends offering to help.','','','Y','','','','Desktops','The ability to reconfigure multiple machines to matching configurations with a few commands','The ability to easily share configuration snippets with friends','','I would prefer to have Home Manager as a core part of NixOS, and if possible, I would like to be able to manage KDE settings though NixOS. Unfortunately, I think this is a pretty monumental task.','Probably Ubuntu.','Y','','Y','','','','','','Y','','','','I tried to use nixops, but it didn\'t work well for me.',''),(137,'1980-01-01 00:00:00',5,'en','150259044','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','Desktop environment of my personal computers','A3','Heard about the declarative system configurations which is a feature I missed in all operating systems I had used before.','','Y','','','','','Y','','Y','','','','Personal computers','','Y','Y','','Y','','Declarative system configuration','Declarative development environments, and automatically (un)loading them with direnv','Isolation, having multiple versions of software at the same time on the same machine','I would not make big changes, but I do feel like a lot of areas could use more polish. It is as if when something is \"good enough\" people will move on to work on the next thing, and it is not really looked at anymore. This I think is what makes it most difficult for newcomers to start using nix.','Too much of my time, configuring Ubuntu each time again when it eventually breaks.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','I don\'t use nix for work, and because nix does basically everything I need from it, I find it difficult to contribute to it in my free time.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','Desktop environment for my personal computers.','A3','I was interested in the declarative system configuration that I could share over multiple devices with a version control system.','Y','','Y','','','','','Declarative system configuration','Easy sharing of configuration between multiple machines','Easy deployment of configuration on multiple machines','','Ubuntu','Y','','','','','Y','','','','','Herbstluftwm','https://github.com/nix-community/home-manager\r\nhttps://github.com/nix-community/impermanence\r\nhttps://github.com/nix-community/fenix\r\nhttps://github.com/Mic92/sops-nix\r\n','','I accidentally clicked the back button of my mouse during this survey which deleted all my answers after showing me a very helpful message that I should not have used the back button...'),(138,NULL,NULL,'en','1376877163',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(140,'1980-01-01 00:00:00',5,'en','768956126','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','Y','Y','Y','','iOS, iPadOS','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','A friend showed me his NixOS setup and told me about generations and reproducible builds, etc.\r\nI was instantly sold.','','Y','','Y','','','Y','','','Y','','','','','Y','Y','Y','Y','',' Declarative system or server configuration/management (e.g. NixOS) ','Declarative environment management (e.g. nix-shell, nix-dev)','Build container images and packages','Rewrite it to Python, only half kidding here.\r\nThe syntax of the language is so foreign and I really miss the explicity from Python.\r\nSome arguments just seem to appear from nowhere.\r\nThe part I would change first though is replacing spaces with parentheses and commas, often it\'s just really hard to see which part belong to a function or a list or whatnot.','Ansible, make (I still use it but maybe dev-shell will replace it), virtualenv, Docker, ...','','','','','Y','','','','','','','','','','https://github.com/DavHau/mach-nix','Y','','','','N','I\'m still learning how to do all the things but I\'ve already seen a few packages I could provide some input.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Same as with Nix.','Y','','Y','Y','','','','Declarative Config','Generations','','See Nix.','Ubuntu LTS.','Y','','','','','Y','','','','','Qtile','Does flake-utils count?\r\nhttps://github.com/numtide/flake-utils\r\nAnd home-manager of course.\r\nIMO those two should be integrated by default.','','I love the idea behind Nix/NixOS.\r\nGetting started was quite easy but then it got quickly really difficult and confusing.\r\nI\'m still working my way through the Nix Pills which explain some concepts but sometimes just go into so much detail that I doubt that is still relevant for system and project configuration, however there a lot of great points in it.\r\nThe video series from Will Taylor is a great place to start and helped me a lot.\r\nhttps://www.youtube.com/watch?v=QKoQ1gKJY5A&list=PL-saUBvIJzOkjAw_vOac75v-x6EzNzZq-'),(139,NULL,2,'en','1735760436','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Declarative desktop management, system config in git','','Y','','','','','Y','','Y','','','','','','','','','Y','','Declarative system configuration','System rollbacks','Temporary packages / build environments','Probably replace the Nix language which something that can be better analyzed or statically typed, so that I grok package definitions better. More intuitive command line','Some hobbled together mix of docker and flatpak','','','','','Y','','','','','','','','','','','Y','','','','N','Almost all packages I use are already maintained, so not much to do for me. No interest in maintaining packages I do not use.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(141,'1980-01-01 00:00:00',5,'en','503737976','A2','A4','male','','','','','','','Y','','Y','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','learning to use if effectively','A3','Ansible did not have reasonable way to recover failed run, and using cloud-init to always fully rebuild VM did not work very well.\r\nNoticed vpsfree.cz built their thing on nixos, and started exporing it...\r\nLooked like a reasonable way to split building the application itself (configured using CMakeLists.txt) from fetching & building its dependencies (better done by nix)\r\nAlso seems like simplest solution for building compiler toolchains for embedded systems.','','','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Rebuild whole system from nixos configuration stored from git.','cross compilation (though it would be nice, if there were no difference between \"natively-build arm\"(or build using arm emulation) vs \"cross-compiled arm\")','Nix flakes - still learning it, already like the ability to build from exactly the same version of dependencies.\r\n(and seems like perfect way to build LXC containers for proxmox)','1) easier way to edit .nix files (language server?) - too often ending up browsing nixpkgs github repo in a web browser\r\n(maybe also add command to \'cd\' to Path provided by \"nix flake metadata whatver\")\r\n\r\n2) add types to the language. coming from c++ and scala it is really hard to get used to variables without types (especially when even code assigning to the variable often does not help. is it assigned a created object or function that has to be evaluated)\r\n\r\n3) enable packaging for \"rebuild from scratch\" - e.g. for given flake allow generating \"minimal live-dvd\" that would contain all the sources to i) rebuild the same dvd from _sources_, and ii) build the flake from sources\r\nthat would ensure that it is always possible to rebuild the flake in its original form (even in air-gapped environment) and that it is always possible to build fixed version of the flake - by patching its source or its dependencies\' sources\r\n\r\n4) option to hide/lockout imperative package management - or some other way to ensure that environment is used as declaratively configured, not modified nix-env (or at least warn that it is not)','mainly CMake\'s FetchContent\r\n\r\nand learn bazel.build','','','','','Y','','','','Y','','','','','','none','Y','Y','','','N','Still very unsure in correct use nix language... took me incredibly long time to figure out, that following 6 lines are required for localized firefox\r\n\r\nnixpkgs.overlays = [\r\n (self: super: {\r\n firefox-bin-unwrapped =\r\n super.firefox-bin-unwrapped.override { systemLocale = \"cs\"; };\r\n })\r\n ];\r\n\r\n(that was more than year ago, not sure if it is still needed)\r\n\r\ncode completion support (for an editor or IDE) and support for (optional) types would make it much easier.\r\n','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started reading about nix, found there is nixos, and it seemed like the best way to learn nix is to start with nixos (and avoid possible issues between host files and nix files).\r\nCurrently runs on home server, thin client, laptop and soon will replace ubuntu as primary desktop VM.','Y','Y','Y','','','','','configuration of multiple machines in single git tree','The ease of running patched packages.\r\n(e.g. on update, automatically build home server\'s kernel with additional patches)\r\nor even add custom/private packages to the system','avoid conflicts with multiple versions of same software','0) add better local documentation (and inform about it on console login)\r\n- nixos module options (once i found something that work like search.nixos.org/options, but forgot its name and cannot find it again)\r\n- unlike slackware (first linux distribution i used), it is _impossible_ to learn it locally or offline from an installed system.\r\n- not sure if there is \"nix manual\" and \"nixos manual\" installed by default, but it is not discoverable (unlike slackwares /usr/doc)\r\n- having both manuals and some popular tutorials (nix pills, etc.) installed and referenced in desktop environment shortcuts and after-console-login message would be great !\r\n\r\n1) split nixpkgs and \"lib\"\r\nit is difficult to understand how nixpkgs works when it is intermixed with something that is more or less \"language support library\"\r\n\r\n2) add better \"nixos-rebuild\" for files that end up outside /nix\r\n1.1) \"nixos-rebuild\" to update raspberrypi configuration on boot partition\r\n1.2) \"nixos-rebuild boot\" does not work in NixOS LXC container running on Proxmox (next boot boots old version), only \"nixos-rebuild switch\" ensures that updated version starts on next boot\r\n\r\n3) add easy way to sandbox a package - make resulting package run like it would in a very restricted (flatpak-like?) container\r\ne.g. allow steam access only to /nix and ~/.steam, no access to other files in ~, or connecting network servers running on the machine\r\n\r\n4) add clean handling of binary packages and \"allowUnfree\" packages\r\neg. \"brave browser\" is actually not build. it just downloads a binary (yet it is not marked unfree)\r\n(if i wanted to patch its source, unlike free nixos packages it is not easily possible with what is in github at the moment)\r\nat least firefox has \"firefox\" and \"firefox-bin\"\r\nbut it would be nice to have \"allowBin\" for packages that are downloaded as binaries, not build from source.\r\n\r\n4) add common behavior for packages that require webserver\r\n(unless i\'m mistaken, some require nginx, some support different servers, ....)\r\n\r\n4) NixOS-FreeBSD or NixOS-Illumos :)','probably fedora silverblue / kinoite, although there was also a recent slackware release...','Y','','','','','','','','Y','','icewm','home-manager (configured from the same git-repo that configures the system)\r\n\r\nhttps://search.nixos.org/options (default sort should be \"Alphabetically Ascending\" !)\r\n\r\nsearching https://github.com/NixOS/nixpkgs/ (there really should be better way to figure out what is available, and what is configurable - e.g. systemd-networkd unit options for configuring bonded network required referencing github) ','nixos weekly - it seems to have died. having a digest of what is going on was nice. (better than sometimes catching nixos-related blog post on lobste.rs)\r\n\r\nnixos for raspberrypi - nixos-rebuild on machine itself was too slow, and building using binfmt emulated native arm compiler was beyond my abilities in nix language.','Slackware was/is great first linux distribution, because it is simple enough do be explored, discovered and understood (with the help of installed documentation / howtos).\r\n\r\nNixOS has very good chance of being great last linux distribution. Declarative system configuration avoids issues that plague ansible workflows (non-idempotency, impossible rollbacks) and can paper-over stateful tasks using scripts in custom systemd-units.\r\n\r\nThe trouble is, one has to clearly see what would be possible using NixOS, and then keep that goal firmly in mind and use that to power through learning _untyped_ language with no code-completion. And then still spend lot of time wander through nixpkgs github, where comments are rare.\r\n\r\nEven though I started exploring nixos ecosystem close to two years ago, I do not have enough knowledge to help with\r\n- esp platform / toolchain https://github.com/NixOS/nixpkgs/pull/112401\r\nor\r\nfigure out how to use emscripten platform to build existing packages in nixpgs ? if i make an sdl application and package it using a flake, how to make it generate .html + .wasm file ?\r\n(it looks like wasm/emscriptem is packaged but not a \'platform\' in nixpkgs. but not really sure)\r\n\r\n\r\nChapter 9. Cross-compilation in the manual is a start, but even after reading it, and reading nixpkgs/lib/systems I know that I\'m still missing an enormous amount.\r\ne.g. cross-compilation toolchains for embedded systems have: 1) compiler 2) some sort of or subset of standard C library, and a 3) kernel (freertos/zephyr/etc...) headers/libraries.\r\nlike wasm it should be possible to create additional nixpkgs \"toolchain\"/\"double\"/\"platform\" (what even is the correct name for the thing I\'m trying to create ?)\r\nand then compile a user (embedded) application using that toolchain while re-using package compliation recipes from nixos (e.g. zlib, nanopb,...) optionally patching using overlays to build in the embedded environment.\r\n\r\nI\'m guessing it should be possible to define \"platform\" (using overlay) inside the flake compiling the embedded application, but at the moment i have no idea how to define the platform even by just modifying nixpkgs git checkout.\r\n\r\nMost documentation i have found about NixOS is written \"in order to do A following is required\" (specific recipe) or \"B does foo\" (description of an element).\r\nBut no virtually no documentation describes how the elements fit together.\r\nNix Pills was _the_ _best_ _thing_ _available_ for understanding how nix/nixpkgs is put together, but still not enough - unfortunately it stopped short of handling toolchains/platforms/cross-compilation, creating plaftorms.\r\n\r\nThe best documentation does not show \"in order to do A perform actions B,C and D\". The best documentation builds the simplest possible \"prototype\", explains it and its limitations. Then extends it, shows it, explains it and its limitations - and the cycle repeats until result matches actual software being documented.\r\n(It ignores or only mentions dead-ends and deprecated parts).\r\nThat results in reader having the knowledge of the whole system (incl. why was something done, and ideally why that way) ready to work on it - because the reader read about its development from scratch!\r\n\r\ncurrently the knowledge used to build the system is _hidden_ - only \"available\" in code in untyped language with no documentation - therefore it is insanely difficult to obtain\r\n\r\nThe issue with code written in nix language being hard to understand (missing types, every contract is implicit and not documented) and non-package parts of nixpkgs repo being underdocumented (mainly cross compilation, but nixos modules documentation is also lacking) is a very _real_ problem.\r\nI think that i have a reasonable tolerance for complexity - reading/writing templated C++ code (in times when SFINAE was the best option available) and reading/writing Scala code (and using the DSL monster named \"sbt\"), yet I feel _beaten_ by nixpkgs.\r\n\r\nI know what should be possible to achieve using nix/nixpkgs/nixos ecosystem (which is great and mostly unavailable by using other technologies - and I want to achieve it), I read practically everything about nixos I discover, yet I\'m still unable to understand parts of nixpkgs repo that are not \'package recipes\' or \'very simple nixos modules\'. In the end I\'m not proficient nor effective in nix language / nixpkgs repo and do not see a reasonable way to get there...\r\n\r\nI\'m still trying, but increasingly I thing _really_ hard about writing a library in Scala language to generate .drv files and use \'nix store --add\' to use them and sidestepping nixpkgs altogether.\r\n(scala is typed, has ide/code-completion support, and using \"ammonite.io\" it may be possible to use it event interactively)'),(142,'1980-01-01 00:00:00',5,'en','1915295201','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','','','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','',''),(143,NULL,1,'en','571873525','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(144,'1980-01-01 00:00:00',5,'en','1912382911','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Through NixOS, I will add more detail in that section','','','','','','','Y','','','','','','','','','','','Y','','','','','A command to show the available updates (akin to the list of available packages, the download size and the installed size when running pacman -Syu on arch)','Probably pacman, or just any of the more traditional package managers','','','','','','','','','','','','','','','','','','','','N','Lack of confidence','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Mainly out of curiosity and because I happened to dabble in Haskell just before I first heard about Nix (or NixOS, to be more precise), so the functional approach caught my attention. It is also a pain to set up a system to work in a specific way (e.g. choosing one of the dozens of ways to install a Haskell development environment) and then having to remember the individual steps when you notice you\'d like to have the same setup on another device.','Y','','','','','','','Declarative and reproducible configuration','Rollback capabilities','Installing different versions of the same package, e.g. because two programs have different requirements','That view updates feature, that a certain person that might have been me added to the nix feature list','I would probably continue using Arch, or have a look at OpenSuse Tumbleweed','Y','','','','','','','','Y','','','','',''),(145,'1980-01-01 00:00:00',5,'en','178862946','A5','A3','fem','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','OpenBSD','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(146,NULL,1,'en','852017468','A5','A3','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(147,'1980-01-01 00:00:00',5,'en','479357139','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I started with Nix on MacOS after dissatisfaction with ports, brew, et al. After using it to manage packages, I quickly discovered how useful the ability to reproduce working environments was via nix-darwin. That made for a pretty obvious gateway to NixOS on my servers and desktop machines. Along the way what definitely kept Nix convincing was the ease of packaging. Nothing from BSD ports to Portage to APT/RPM has ever been quite as low-friction as Nix in terms of going from zero to deployable package.','Y','','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Ease of packaging','Ease of creation of entire environments','Reproducibility of entire environments','I would change the way stdenv.mkDerivation processes its attributes such that such that adding in a platform-specific hotfix would no longer have the potential to cause massive rebuilds and need to go into staging.\r\n\r\nI\'d add single-letter equivalents to various longopt-only flags. nix-shell --command to nix-shell -c as the former kind of makes me want to die every time I have to type it all out, etc.\r\n\r\nI\'d add some sort of library to nixpkgs for generating configuration files that isn\'t just nested autoindent strings, so output could be effortlessly human-readable with proper indentation and so on. Much complexity could be factored out of the way NixOS generates Xorg configs, etc.\r\n\r\nOftentimes, declaring an overlay within package sets like pythonPackages or haskellPackages can be messy. You wind up having to restate segments of all-packages.nix.\r\n\r\nIn general, I\'d restructure nixpkgs such that monkey-patching nixpkgs can more frequently be achieved with straightforward overlays. The situation is pretty good by and large, but often enough to be painful, one really has to bite the bullet and conclude it\'s simpler to fork a revision of nixpkgs, edit the file in question, and evaluate nixpkgs twice during every rebuild, if now just maintaining a personal fork/patchset of a channel altogether.','Likely BSD ports/Portage/Macports and chef/puppet/ansible. I would not be nearly as happy, that\'s for sure.','','','','Y','','','','','','','','','','','cabal2nix, crate2nix, dconf2nix, and go2nix as already packaged in nixpkgs; no external ones that need to be linked.','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','My earlier story about Nix covers this','Y','','Y','Y','','','','Ability to comprehensively specify environments','Ease of creating modules','Ease of disaster recovery','I would force a sync on /boot when switching to a new configuration. The number of times I\'ve experimented with system-crashing configurations only to have to repair GRUB from another machine after giving the machine the big button is kind of wild. Naturally, I\'m pleased that recovery is as easy to perform as it is, but I\'d still rather not have to.','Some BSD, probably. NixOS makes the complexity of modern Linux abstractable and manageable.','Y','','','','','Y','','Y','','Y','i3 ','nix-darwin, home-manager, random bits and pieces of people\'s personal module and package collections, TVL monorepo','none','Nix has really been a revolution in quality-of-life for me and eliminated so many frustrations I\'ve had.\r\n\r\nGovernance and maintenance for nixpkgs are a little wonky sometimes, I won\'t lie. Regressions can get merged fast, sometimes even self-merged, and fixes can sometimes go through comparatively more red tape. In that respect, contributing can sometimes be a little frustrating. I have no magic solution to propose on that front, though.\r\n\r\nBy comparison, contributing to Nix proper is significantly more pleasant, I suppose owing to its smaller scale.\r\n\r\nI\'m looking forward to seeing Nix on more platforms.\r\n\r\nMuch love, keep at it y\'all!'),(148,NULL,NULL,'en','1028477685',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(149,'1980-01-01 00:00:00',5,'en','532215757','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','A colleague introduced nix-shell for dependency management.','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','nix-shell','Substitute builders','remote build artifact caching','Use a more widely known language instead of the Nix Expression Language.\r\nVastly improve the documentation itself and its \"up-to-dateness\".','Docker containers for multilanguage dependency management.\r\nConda for Python dependency management.\r\nOpenSuse Snapper for operating system management. ','','','','Y','','','Y','','','','','','','','','Y','','','','N','Not enough experience with Nix','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','A colleague introduced nix for dependency management at work. After using nix on CentOS and Ubuntu I wanted to try out NixOS at home.','','','Y','','','','','','','','Improve it\'s documentation.','OpenSuse','Y','','','','','','','Y','','','','','',''),(150,'1980-01-01 00:00:00',5,'en','1060391985','A2','A4','male','','','','','','','','','','','Y','Y','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','See NixOS story','','','','','','','Y','','','','','','','','Y','Y','','Y','','Development environment shell','','','Strong typing in the Nix language maybe? The pain points are probably in the language, but I haven\'t really dived deep yet. Type system might help discoverability...','Ansible or maybe just shell scripts','','','','','Y','','','','','','','','','','I\'ve never heard of 2nix.','Y','','','I don\'t really know how, I think I cobbled together some sort of overlay thing once or twice','N','I don\'t understand all the Nix machinery involved with nixpkgs, hard to learn the language/system.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Was tired of reconfiguring my Linux box every time I reinstall the OS to get the settings just right. Figured I\'d use Ansible to write a script to set up my box, went back to the github of the guy whose Ansible setups I\'d bookmarked half a year earlier and there was a note saying he\'d jumped ship to NixOS. Decided to try NixOS, haven\'t looked back.','Y','','','','','','','Reproducible Linux box configuration','','','','Arch Linux','Y','','','','','','','','','','i3wm','','Nix on a non-NixOS (Debian) box. Didn\'t bother figuring out conflicts between nix-installed and apt-installed stuff. A pain.',''),(151,'1980-01-01 00:00:00',5,'en','920761314','A2','A2','male','','','','','','Y','Y','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','Back then (2015) it was the only painfree way to have Haskell development environments without compiling the same packages over and over yourself, one thing led to the other.','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','','Y','','','','','Remove flakes.\r\nSpeed up the evaluator.','Potentially Bazel or another build system by Google; or just plain unwrapped make, CMake, cabal-install, …','','','','','','','Y','','','','Y','','Y','','cabal2nix (https://github.com/nixos/cabal2nix)\r\nnapalm (https://github.com/nix-community/napalm/pulls)\r\nnaersk (https://github.com/nix-community/naersk/)\r\nProfpatsch\'s yarn2nix (https://github.com/Profpatsch/yarn2nix)','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','Got curious after using Nix for Haskell development environments initially, some friends were already using it.','Y','','','Y','','','','','','','Replace the module system with something that\'s quicker and less reliant on an ominous global fixpoint.','ArchLinux or Void Linux','Y','','','','','','','','','','sway','nman (https://github.com/openlab-aux/vuizvui/tree/master/pkgs/profpatsch/nman)\r\nemacs-overlay (https://github.com/nix-community/emacs-overlay)','Nix >= 2.4\r\nnpmlock2nix (https://github.com/nix-community/npmlock2nix)',''),(152,'1980-01-01 00:00:00',5,'en','504125606','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','Y','Y','Y','Y','Y','','','Y','Y','','Y','','Reproducibility','Recipes','Hermeticity','','','','','','Y','Y','','','','','Y','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','Y','Y','Y','','','','','','','Y','','','','','','','','','','sway','','',''),(153,'1980-01-01 00:00:00',5,'en','1210065817','A6','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','After having bad experiences with ubuntus apt get i decided to explore nix','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','To stop having to configure my system again and again ','Y','','','','','','','Truly independent package installation','Updated packages','Ability to define system declaratively','','','','','','','','','','','','','I3','','',''),(154,NULL,3,'en','583782487','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','My collegae used it, and recommended it to me.','','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Configuration','Rollbacks','','Make nixpkgs more uniform in the different languages/packages (e.g each language does it slightly differently).','Arch linux probably','','','','Y','Y','','Y','','','','','','','','pip2nix\r\nnpm2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Collegae used it, and recommended it.','Y','','Y','','','','','Rollbacks','Unified config','','Add better support for Intellij & KDE (and other programs that don\'t really work with the NixOS philosophy).','Arch linux','Y','','','','','','','','Y','','',NULL,NULL,NULL),(155,NULL,1,'en','811244849','A2','A2','-oth-','','','Y','','','Y','Y','','','','Y','','','','','Y','','Y','','','','','','Y','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(156,NULL,2,'en','1578276862','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(158,NULL,NULL,'en','912060876',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(157,'1980-01-01 00:00:00',5,'en','1240107741','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I placed a new SSD in my laptop and I wanted to briefly experiment with nixOS. It stuck arround and now my servers are also running nix','','','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','eclarative confguration','Rollbacks','','','Arch','','','','','Y','','Y','','','','Y','','','','yarn2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I tried it out after some nuding from a friend. \r\nI needed to installe a new OS because I changed my SSD, and I tried it.\r\nIt stuck arround... Now it runs on all my servers.','Y','','Y','Y','','','','Declararivity','Rollbacks','','Better support for remote deployment of flakes','','','','','','','','','','','','Sway','','',''),(159,'1980-01-01 00:00:00',5,'en','623046957','A2','A5','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','Y',NULL,'Too hard to figure out. Difficult to understand how NixOS, Nix, HomeManager, Flakes, Whathaveyou all are supposed to work together.','Less complicated tooling, more concise/consistent/simple documentation. When something like \'Nix for users\' exists, as opposed to just \'Nix for developers\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Unclear how to use it in a consistent and productive way. Too complicated and unclear documentation.','Better docs, better tooling. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'HomeManager','HomeManager','Would love to use Nix, but the experience isn\'t very good.'),(162,'1980-01-01 00:00:00',5,'en','1920430729','A2','A2','male','','','','','Y','Y','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I\'ve seen it somewhere on YouTube and it just intrigued me','','','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative configuration','','','','Guix','','','','','Y','','','','','','','','','','Machnix','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','Y','','','','','','','','','','','','','Y','','','','','','','awesomewm','','',''),(161,'1980-01-01 00:00:00',5,'en','426223053','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','','','NixOS','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','N','knowledge :)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','','Y','','','','','','','','','','Y','','','','','','','','','','','nix-darwin\r\nhome-manager','',''),(160,'1980-01-01 00:00:00',5,'en','1148119381','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','ChromeOS','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','ChromeOS','Y','','Y','','','','','','Y','','','Y','','','','','','Guix','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','I would like to, but not sure how welcoming it is, or where to get started. I have packages or version bumps that I could contribute right now.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','','','','','','','','','','','','','bspwm','','','Flakes! More flakes! Everywhere!'),(163,NULL,NULL,'en','1822614855',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(164,NULL,NULL,'en','1501420395',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(165,'1980-01-01 00:00:00',5,'en','1852422667','A2','A4','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','My source-based distribution (Gentoo) did not provide usable binary caches for heavyweight packages like firefox. When I occasionally got them broken I had no simple way to install working version without waiting 20 minutes. I started using `nix` as a way to get binaries quickly while I\'m recovering the tool.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Ability to mix multiple package versions on a single system (easy rollbacks and regression tracking).','Support for binary substitutions.','Predictable build environment for packages.','I would like `nix develop` / `genericBuild` (or the equivalent) to be closer to `nix build` build environment. So far it\'s very hard to debug failures if they are related to containers provided by `nix-daemon`. `guix environment --container` is a good tool to compare against.','Gentoo.','','Y','','Y','','','Y','','','','Y','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Desktop OS','A2','I was a Gentoo user (and developer) for 10 years :)\r\n\r\nMultiple issues user-facing accumulated over time and were a part of the decision to switch:\r\n- default packages manager `emerge` became so slow that it started taking tens of minutes to resolve all dependencies on my desktop; i needed more interactivity\r\n- inability to roll glibc upgrade back (or similar core packages) causes consistent problems; creating a system with old glibc out of a new one is manual and tedious\r\n- performing unattended upgrades for kernel is not very easy\r\n\r\nI ported most of my Gentoo user experience to NixOS without problems.\r\n\r\n','Y','Y','Y','','','','','Declarative reproducible configuration','Atomic upgrades and rollbacks','Fast packages install from binary caches','I\'d like `nixpkgs` to be more consistent in various interface parts, like `python.withPackages` / `haskellPackages.ghcWithPackages` / `(pidgin.override { plugins = [ pidgin-window-merge ]; })`.','Gentoo.','Y','','','','','','','','','','i3+none','nixpkgs','',''),(166,'1980-01-01 00:00:00',5,'en','598107944','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','Y','','','','','Y','','','Y','','full system configuration','nix-shell -p','','Simpler and more consistent command line interface. \'nix-shell -p vim\' vs \'nix run pkgs.vim\'','apt + home-brew','','','','','','','','','','','','','','','','Y','','','','N','Huge learning curve, quickly evolving best practices, nix is a confusing language','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted a declarative system. I got sick and tired of conflicting packages, confusingly inconsistent configuration, etc...','Y','','Y','Y','','','','','','','','Arch Linux or an Ubuntu derivative','Y','','','','','','','Y','Y','','','','nixops, flakes',''),(167,'1980-01-01 00:00:00',5,'en','120464282','A2','A2','','','Y','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Friends told me about it. Sounded interesting and I need something like NixOS.','','Y','','','Y','','Y','Y','Y','','','Y','Routers','','Y','Y','Y','Y','','Reproducible and more or less customizable builds from source without a binary cache','Trying out software risk-free without compiling in my home directory but instead in a restricted build environment','Multiple versions of the same software side by side without breaking anything and installation without root privileges','Remove bugs of course, stabilize currently experimental features such as flakes, content-addressed derivations and most importantly the new cli. Maybe rewrite it in Rust ;)','Guix','','Y','','Y','Y','','Y','','Y','','','','','','crate2nix, naersk','Y','Y','Y','','N','Lack of time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Had multiple devices on different Linux distros with a pretty extensive dot file repo that reached its limits when I head of NixOS. Being able to have the same configuration across multiple devices without fear of a non-bootable configuration got me sold instantly.','Y','Y','Y','','','Y','Routers','Declarative and portable system configuration without fear of a non-bootable configuration','Tmpfs as root file system','Vast knowledge base of configuration options for software I use and host','Get rid of the defaultPackages. Make environment.systemPackages an AttrSet to be able to null out packages. Rewrite wrappers like nixos-rebuild in Perl and Bash to something else. Disable caching of sources in hydra to make the sha256sums in nixpkgs more recent. Make the system closure size smaller by removing unnecessary dependencies and split nixpkgs into more smaller flakes. Tackle most FIXMEs that have been in the core of nixpkgs since 9 years.','Guix System','Y','','','Y','','Y','','','','','Sway','patchelf I guess. nixos-search, mobile-nixos, nixos-weekly','Hydra because it couldn\'t build all of my content-addressed derivations. NixOps because it didn\'t have the \"magic rollback\" feature of deploy-rs.','Thank you for all your effort. It really makes my life better and even if sometimes some things don\'t work, I love NixOS.'),(168,'1980-01-01 00:00:00',5,'en','2089590575','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Declarative configuration seemed amazing. Was my first main Linux distribution to switch from Windows ','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','','Declarative system configuration ','Reproducible packaging builds ','','Would make usability of Nix(OS) as user friendly as rustup/cargo. Sorry for the Kool-aid ','Guix(?). I have no idea. ','','','','Y','Y','','Y','','','','','','','','Cargo2nix\r\nMach-nix','Y','Y','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','Y','Y','','','','','','Y','','','','','',''),(169,'1980-01-01 00:00:00',5,'en','1854078614','A2','A3','male','','','','','Y','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I was distro hopping a lot, and found the concept of nixos and mix interesting, so I gave it a try, and got stuck. I liked the concept of reproducible builds and being able to make several versions of a library coexist on the same system.','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative environment management','Declarative configuration','Nixpkgs','Better documentation, especially about flakes. Less obscure terminology (like derivation and FP verbiage). Make nix search stop sending request to servers even when the cache is up to date. ','Anaconda/poetry/pyenv/docker for declarative environment. \r\n\r\nAnsible for declarative configuration\r\n\r\n','','','','Y','','','','','','','','','','','','Y','','Y','','N','Burden of maintenance, complexity of writing a package.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I was distro hopping a lot, and found the concept of nixos and mix interesting, so I gave it a try, and got stuck. I liked the concept of reproducible builds and being able to make several versions of a library coexist on the same system. The possibility to roll back, and a declarative configuration was also a really great experience. ','Y','','Y','','','','','Declarative configuration','Coexistence of different system configuration in grub','Rollbacks','Gnome as first class citizens (I get a lot of breakage when updating, not s big deal thanks to rollbacks, but a bit frustrating).\r\n\r\nBetter discoverability of options. ','Another Linux distribution, maybe fedora or arch. ','Y','','','','','','','Y','','','','home-manager','','Keep doing the great work, I\'m sure things will improve. '),(171,'1980-01-01 00:00:00',5,'en','240795741','A2','A3','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','','Y','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','Y','building embedded systems','(Assuming nixpkgs is included in \"Nix\" here) comprehensive distribution of software of all kinds','Reproducibility','Declarative config','The stabilisation of Flakes would stop. People are using it and completely ignoring that it\'s an experimental feature and subject to change, _depending_ on it. Flakes feels like it\'s being brought to us by the faceless gods who decide where Nix is going (Eelco is the only one clearly involved, but it feels like there\'s a secret in-group) and not designed with the community.','Probably Guix? Or sadness.','','','','Y','Y','','Y','','Y','','','','','','yarn2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','Y','Y','','Declarative config for the whole system','Fearless experimentation','Complete software inventory control','Faster evaluation and build.','Guix probably','','Y','','','Y','Y','','','','','sway','','Phasing out nixops.\r\nnox\r\nProbably more I can\'t think of now',''),(170,NULL,1,'en','288999809','A5','A2','fem','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(172,NULL,1,'en','998104273','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(173,'1980-01-01 00:00:00',5,'en','1070613927','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I started using Nix when I installed NixOS (Randomly interested to the concept of a \"functionally pure Linux distro\" after I had a blast discovering Haskell)','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Hermeticity and reproducibility','Declarative system configuration, declarative build recipes','Generation and evaluation of arbitrarily complicated build graphs','I\'d remove C++ in order to help broaden the range of people that may contribute. (This applies to me!)','Debian/apt and language-dependent package managers','','','Y','Y','Y','','','','Y','','','','','','Naersk','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','Randomly interested to the concept of a \"functionally pure Linux distro\" after I had a blast discovering Haskell','Y','','Y','','','','','Declarative configuration','Remote building','Very large package set','','Debian','Y','','','','','','','','','','sway','I use nix-build.net regularly.','',''),(174,'1980-01-01 00:00:00',5,'en','507615934','A6','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','','','','','','','','','Y','Y','','Y','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','','','','','','','Y','','','','','','','','','','only i3','','',''),(175,'1980-01-01 00:00:00',5,'en','187850443','A2','A3','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted a good cross-platform package manager, and an easy wau to handle upgrades rollbacks and dotfiles. Especially removal of old conf files was a hassle with previous setup (brew + bash scripts).','Y','','','','Y','','Y','','Y','','','Y','','','Y','','','','','Flakes and easily pinning dependencies. ','Easy dotfile/package setup with possibility for per-system variation with home-manager. ','','Better macOS support. Especially packages from nixpkgs available on macOS.\r\n\r\nEasier way to get a specific version of a package. Possible with multiple channels and overlays in a flake, but usually quite a hassle to do it.','Brew + bash scripts. Possibly Guix.','','','','Y','Y','','','','','','','','','','Node2nix','Y','Y','','','Y',NULL,'N','N','Non-mac development laptop. Time to migrate home servers/rpi to nixos.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Home-manager, flake-utils, nixpk.gs','Nix-darwin ',''),(176,'1980-01-01 00:00:00',5,'en','474431262','A5','A5','fem','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','','Y','','Y','Y','Y','Y','','','','','Y','','','Y','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','Y','Y','','','','','','','','','Y','','','','','','','','','','','','',''),(177,'1980-01-01 00:00:00',5,'en','669837960','A2','A3','-oth-','Non-Binary','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','','','private laptop','A1','At the moment, I use nix only on my NixOS systems.','','','','','','','','','','Y','','','private laptop','Y','','','','Y','','','','','Add more docs and beginner tutorials.','Probably Ansible and if that would not exist maybe Salt or Bash scripts.','','','','','','','','','','','','','','','','','','','','N','I still have to learn much about nix, nixpkgs and flakes to feel comfortable contributing.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','private laptop and server','A1','Friends told me about NixOS some years ago, even tried it a few years ago but I failed to configure vim and gave up.\r\n\r\nLast December, a close friend started to write NixOS configuration for all his computers. I got interested again and tried it out on an old, unused computer. Having some experience with Salt, Ansible and Terraform, I was fascinated by the idea of managing most parts of my system with a declarative configuration. For me its easier to use than Salt and Ansible (at least for most parts) and it solves one of the problems I encountered on Arch Linux: easily reinstall/reproduce a system with all its packages and (global) configuration. Also for my server it came in quite handy.\r\n\r\nNow I\'m running my new laptop on NixOS and 2 NixOS-VMs on my private server.','Y','','','Y','','','private laptop','Describing the system including installed packages and systemwide configuration in a declarative, reproducible manner','','','more up-to-date Wiki arcticles, add more How tos\r\n\r\nimprove display of what is updated when running nixos-rebuild switch --upgrade','Arch Linux, which I have been using since 2014 and still use today','Y','','','','','','','','','','Sway','','',''),(178,NULL,1,'en','1861655619','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(179,'1980-01-01 00:00:00',5,'en','1194099043','A2','A3','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend (also a developer) of mine introduced me to Nix, specifically NixOS.','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','declarative package management','reproducible builds','declarative system configuration','Embrace flakes as the default (though, I guess that\'s where it\'s heading already).','Nothing really. I\'d install dependencies manually & have loose system configurations.','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend of mine introduced me to it and I was intrigued by it.','Y','Y','Y','','','','','declarative system configuration','reproducible builds','atomic upgrades','Require less rebuilding (thus more caches) e.g. for custom home assistant configurations.','Other Linux distribution, probably a rolling release distro to get up-to-date packages.','Y','','','','','','','Y','','','','home-manager\r\nrycee/nur-expressions (for Firefox add-ons)','NixOps (lack of flake support)',''),(180,NULL,1,'en','1849919868','A5','A3','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(181,'1980-01-01 00:00:00',5,'en','626632722','A2','A4','male','','','','','','Y','Y','','','','Y','Y','Y','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Found out that bleeding edge doesn\'t necessarily means unstable. Felt in control of my system.','Y','','','','','','Y','','Y','','','','','','Y','Y','','Y','home-manager','Share environments with others','Rollback with ease','','Replace nix-env and nix profile with commands to add packages to system/home configuration.','ArchLinux. Docker?','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','Bleeding edge while being confident I can switch to an earlier version of my configuration','Sharing of configuration','Ease of system configuration','Add recommended profiles, like nixos-hardware, but for (for instance) Wayland/Sway. Currently requires a lot of options to be set.','ArchLinux, MacOS','Y','','','','','','','','','','i3 / Sway','home-manager\r\nnixos-hardware\r\n','Nixops, nix-env, nix-channel','It\'s a bit baffling that home-manager is still not adopted as a standard Nix tool.'),(182,NULL,NULL,'en','2044976549',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(183,'1980-01-01 00:00:00',5,'en','1548056127','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was intrigued by reproducible system configurations.','','Y','','','Y','','Y','Y','Y','','Y','','','','Y','Y','Y','Y','','nix flakes','casync','','Splitup nixpkgs, establish a stable but far smaller base (with LTS if possible), move as much as possible to external flakes.','guix','Y','','','','Y','','Y','','','','','','','','node2nix, poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','Y','','','','','','','','guix-sd','','','','','Y','','','Y','','','','nix-on-droid, home-manager','',''),(184,NULL,1,'en','1256863815','A2','A3','-oth-','genderfluid','','','','Y','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(185,'1980-01-01 00:00:00',5,'en','918874798','A2','A2','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','Y',NULL,'Some libraries(I\'ve meant boost library) didn\'t have enough support for my tools. Other causes were general problem integration NixOS with IDE(mainly Jetbrains IDEs)','Definitely I wanna back to NixOS and nix eco-system, but I need some time to finish my dotfiles and other things',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'same reason as in the previous question','same reason as in the previous question',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(186,NULL,NULL,'en','98275989',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(187,NULL,NULL,'en','430495823',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(188,'1980-01-01 00:00:00',5,'en','2024985316','A5','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','Y','Y','','Y','','','Y','','Y','','','','','Y','Y','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','N','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(189,'1980-01-01 00:00:00',5,'en','1708445628','A5','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I really wanted to have all my configuration in a single place. Still not there yet, because of Plasma configs, but it\'s so much easier to restore machines from a Nix configuration than a list of debs.','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative management','Reproducible builds','','','Guix, probably, but if Nix never existed, that wouldn\'t either.','','','','Y','Y','','','','','','','','','','mix2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','','','','','','','Y','','','','','','','Y','','','home-manager\r\nnix-direnv','Lorri',''),(190,'1980-01-01 00:00:00',5,'en','164502046','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','cabal2nix, node2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A3','','Y','Y','','','','','','','','','','','Y','','','','','Y','','Y','','','','nix-darwin, home-manager','',''),(191,'1980-01-01 00:00:00',5,'en','133371771','A5','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Refugee from chef and wanting a fully declarative system for managing my hosts','','Y','','','','','Y','','Y','','','Y','','','Y','','','Y','','Whole system state defined in configs','Ability to roll back','Customization ','Less obtuse error reporting and a mechanism for propagating discovered hosts info like facter and ohai in the puppet and chef worlds','Chef with a constant annoyance that it is owned by progress software','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','Time and willingness to dig into that surface area of the community','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Was building a home lab setup and found continuing with chef unappealing and the current docker and kubernetes approaches contained far too much complexity and a focus on things I didn\'t care about like load balancing and deploying multiple versions of a service','Y','','Y','','','Y','','Whole infra management from a git repo','Roll backs','Rolling updates','Less obtuse errors when writing configs','Ubuntu and chef','Y','','','Y','','','','Y','','','','Nothing offhand','Haven\'t really churned through projects, devos and surrounding tools has worked well for me','Thanks from a fan'),(192,'1980-01-01 00:00:00',5,'en','966313305','A2','A3','male','','Y','','','','','','','','','Y','','','','Y','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was searching for a declarative system administration tool that would enforce state.','Y','','','','','','','','','','','','Home laptop','','Y','Y','','Y','','system management','package management','build system','more ergonomic tooling with better documentation','make?','','','','','Y','','','','','','Y','','','','yarn2nix\r\ncargo2nix','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was searching for a better alternative to ansible,','Y','','Y','','','','','shared configuration between machines','extendability','flawless rollback','runit istead of systemd, better nixpkgs documentation','Alpine Linux','Y','','','','','Y','','','','','XMonad','Agenix\r\nHome-manager','NixOps',''),(193,'1980-01-01 00:00:00',5,'en','1690125208','A2','A4','male','','','Y','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','interesting concepts to keep track of all deps','','Y','','','','','Y','','','Y','','','','','Y','','','Y','nix flakes','reproducibility (flake)','declarative','revertible','add more docks and samples','Archlinux and Pacman','','','','','Y','','','','','Y','','','','','poetry2nix','Y','Y','Y','','N','Quite new to the ecosystem have to better understand how it works. Specially not familiar with nix language ','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','reproducible, declarative OS system sound to good to be true ','Y','Y','','Y','','','','reproducible','declarative','rollback','Docs, docs docs','Debian for production, Arch for dev','Y','','','','','','','','','','i3','none','none','hard to follow the ideas'),(195,'1980-01-01 00:00:00',5,'en','1534581856','A5','A5','male','','','','','','','Y','','Y','','','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','Attempted to use NixOS for a work station. Ended up too difficult to deal with the company python environment. Still tinker with straight Nix as a package manager for WSL and Synology environments.','','Y','','Y','','','Y','','Y','','','','','','Y','','','','Home manager','Declarative package management','Easy roll forward and back','','Far better UX/DX, with much more consistent interfaces. Integrated home-manager. More up to date docs. Consistent messaging around flakes and better docs for transition from pre-flake tutorials. Much less boilerplate for flake usage, especially in simple packages.','Currently use a mixture of os level package management with asdf-vm and pipx to manage python environments.','','','','Y','Y','','','','','','','','','','','','Y','','','N','Lack of consistency and simplicity.','N','Y',NULL,'Managing python for work environments was too difficult.','Radical streamlining of the user and Deb experience, especially for dealing with non-nix native packages.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(196,'1980-01-01 00:00:00',5,'en','1605918025','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Arch Linux Install got borked too many times then found out about nixos','Y','Y','','','Y','','Y','Y','Y','','','Y','','Y','Y','Y','Y','Y','','','','','Remove nix-env. Nuke all its references from docs.\r\n\r\nChange docs to be better.\r\n\r\nRemove nix-channel','Guix','','','','Y','Y','','','','','','Y','Y','','','node2nix, cabal2nix, naersk, buildGoModule','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I borked my arch Linux install','Y','','Y','','','Y','','Declarative config','Large module set','Rollbacks','Change the nscd kerkuffle, get rid of global path /etc/Nixos . Integrate nixos-rebuild into nix command or explain people what nixos-rebuild does .\r\n\r\nMove to networkd networking,\r\n\r\nAdd systemd based initrd','Arch Linux ','Y','','','','','','','Y','','','','Niv','Home-manager',''),(197,NULL,1,'en','1590357111','A2','A3','male','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(198,NULL,2,'en','628682851','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Nix seemed like a great idea so I installed NixOS 18.09 on a ThinkPad E365.','','Y','Y','','','','Y','','Y','','','','','','Y','','','Y','','Nix generations help keep NixOS stable','Declarative system management','Everything basically works well','Add more resources for SELinux and other secure configuration like possibly some way to integrate it with OpenSCAP.','Guix','','','','','','','','','','','','','','','','','','Y','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(199,'1980-01-01 00:00:00',5,'en','1003978532','A5','A2','fem','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Flakes!','Overlays are useful for compiling packages with custom options/optimisations, which I tend to do a lot.','The 2.4 print-dev-env command','- Make it easier to do cross-compilation with flakes\r\n- Get rid of channels','Probably apt/dpkg, along with manually compiling nightly builds of software.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I was sick of dealing with broken Ubuntu systems, and had heard of NixOS a few months earlier, so I decided to give it a try.','Y','','','','','','','Overlays','Multiple generations','','I just want the modules system to be faster, as it can take a full minute to evaluate the system on my thinkpad x140e.','Probably Ubuntu or Debian','Y','','','','','','','','','','sway','direnv\r\nhome-manager\r\nragenix','',''),(200,'1980-01-01 00:00:00',5,'en','1561204404','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','sway','','',''),(201,'1980-01-01 00:00:00',5,'en','411356437','A2','A3','male','','','','','','','','Y','','','Y','','Y','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','NixOS sounded like a great idea.','','','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','nix-shell','Nix language','build sandbox','Finally having content-addressed derivations in production would be nice. Also a coherent CLI API but that might be even harder problem.','Probably combination of something ostree-based, toolbx, Docker and suffering.','','','','Y','Y','','','','','','Y','','','','https://github.com/nix-community/naersk\r\nhttps://github.com/nix-community/napalm\r\nhttps://github.com/NixOS/nixpkgs/tree/master/pkgs/development/tools/yarn2nix-moretea\r\n','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I was tired of having to install everything over again each time I upgraded PC, my legacy distro-based system was getting polluted, and Nix felt like a reasonable approach coming from a Haskell background.','Y','','Y','Y','','','','Functional approach to building system root (mutation is bad)','Declarative configuration','nixos-rebuild build-vm','Granular personalized channels blocking on tests for all software I use and nothing more.','Perhaps something ostree-based like Fedora Silverblue. But I am not sure I would even be aware of this mindset without NixOS.','Y','','','','','Y','','Y','','','','https://github.com/edolstra/dwarffs\r\nhttps://github.com/nmattia/niv\r\nhttps://github.com/ryantm/agenix','',''),(202,'1980-01-01 00:00:00',5,'en','1648897216','A2','A2','male','','','','','','','','','','','Y','Y','Y','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','Y','','','','','','','','','Y','','','Y','','','','Y','','','','','',''),(203,'1980-01-01 00:00:00',5,'en','1671696378','A5','A4','male','','','Y','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I really liked the idea of per-project locked development dependencies. I also loved the idea of using home manager for dotfiles, etc.','Y','Y','','','Y','','Y','','','','','','','','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','poetry2nix','Y','Y','','','N','I have no idea how I would go about it.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','arion','nixos-shell, it just wouldn\'t run for me, unfortunately',''),(204,'1980-01-01 00:00:00',5,'en','373986359','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(205,'1980-01-01 00:00:00',5,'en','1779450158','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Easy dev environments','Y','','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','Nix develop','','','Rewrite documentation like rails guides','The usual crap that programming langs offer','','Y','','Y','Y','','','','','','','','','','','Y','Y','','','N','Too complex','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Mac tools are too esoteric ','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','','Tmux','','',''),(206,NULL,1,'en','1646487878','A2','A4','male','','','','','','','Y','','','','Y','','','','','','Y','','','','','','','Y','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(207,'1980-01-01 00:00:00',5,'en','892683282','A5','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I liked the idea of reproducibility and declarative configuration of entire systems.','Y','','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Declarative configuration of systems via NixOS','Declarative configuration of home directories via home-manager','Flakes','I\'d make the documentation perfect, especially for new users (I\'ve wanted to introduce friends to Nix and I\'ve always stressed that it will take time to learn).','MacPorts on macOS, maybe Arch Linux or Debian for servers.','','','','Y','Y','','','','','','','','','','https://github.com/svanderburg/node2nix\r\nhttps://github.com/winterqt/nuget2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','Y','Y','','','','','','','','','Y','','','','Y','Y','','','','','','','','Thanks for everything. ❤️'),(208,'1980-01-01 00:00:00',5,'en','2056143948','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','N','Y',NULL,'I stopped needing software I could only install easily with nix','Needing to use software that\'s only packaged nicely with nix again',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I couldn\'t understand the docs despite my best efforts. I think the representation I had in my mind of how nixos was supposed to behave was actually very different from how it really works under the hood.','Finding beginner level docs that make me understand how basic everyday operations should be done',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','nix-env, (or was it nix-shell?) or was that the topic of the previous questions ?','🍕'),(209,'1980-01-01 00:00:00',5,'en','1032375004','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','As a way to have more up-to-date packages on a debian install.','','Y','','','','','Y','','','','','','','','Y','','','Y','','the \"fearless experimentation\" thing.','per-project dependencies with nix-shell','rollbacks','The language is kind of weird.','Guix, maybe.','','','','Y','','','','','','','','','','','','','','','','N','Haven\'t needed to yet, everything I\'ve used is already present and up-to-date.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Had some new hardware to setup, figured I would try nixos.','Y','','','','','','','system rollbacks','very up to date software','','maybe integrate things like home-manager?','guix, maybe.','','','','','','','lorri','','','Y','cinnamon, i3 ','home-manager. That\'s primarily how I use nix on non nixos systems.','None, I\'ve only really used home-manager and lorri and have had good experience with both.','Thank you for nix :-)'),(210,NULL,1,'en','1213683925','A5','A4','fem','','','','','','','Y','Y','Y','Y','Y','Y','','','','','','','','','','','','Y','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(211,'1980-01-01 00:00:00',5,'en','643085919','A5','A4','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','When I first heard how nix worked, it just sounded obviously \"right\" I kept track of it and switched to using it as my daily driver as soon as (nearly) all of the packages I rely on were in nixpkgs','','Y','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','Flexible declarative configuration & management for my machine','Single format for build environments that can pull in cross-language dependencies','nix-ops','I would kill nix-env (while keeping buildEnv). I ran into so many problems with nix-env and I eventually replaced my .nix-profile with the output of my own nix expression that called pkgs.buildEnv. having to delete packages by name was the biggest problem, but I ran into others as well.\r\n\r\nI replaced nix-env with about 5 lines of nix and 5 lines of shell and I\'ve never been happier!','Either Gentoo or Guix; I\'ve never used the latter, but it promises to do all the things that Nix does','','','','','','','','','Y','Y','','','','','','','','','callPackage inside my declarative buildEnv','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Started with Nix (see my answer there), tried NixOS a couple of times until it felt \"ready\" then slowly moved every machine I run to NixOS.','Y','','Y','','','','','configuration all in one place','rollbacks','declarative configuration','','Gentoo or Guix','Y','Y','','','','','','','Y','','FVWM','','',''),(212,NULL,NULL,'en','1094615786',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(213,NULL,2,'en','1911335537','A1','A3','-oth-','Enby Femme','','','','','Y','Y','','Y','','','','','Y','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','Desktop OS','A4','Needed something reproducible for work at the time, tried out NixOS in a VM and then decided to run it as my daily driver at home.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Declaritive OS Definitions','Reproducible Package Management','Variable Interpolation (for defining shared values among programs configs)','I would remove GNU/Linux from Nix, and instead base NixOS on top of 9front or Plan9. I believe the mechanics of Plan9\'s kernel are a very good for for Nix and vice-versa, and the lack of established software (alsmost all are self-contained plan9 C programs) means we wouldnt need to alter the design to accomodate programs that werent designed to be sandboxed.','Guix (if that counts), otherwise I would simply be sad at the lack of a decent reproducible and declaritive OS','','','','Y','Y','','Y','','','','','','','','cabal2nix https://github.com/NixOS/cabal2nix','Y','Y','','','N','I dont feel like I understand the packaging well enough to do things the \"proper\" way, and I dont have any software worth packaging to NixOS (theyre all small personal projects)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(214,'1980-01-01 00:00:00',5,'en','342526537','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It came with NixOS.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','','','','','Quick development environment.','Reproducibility.','Read-only system.','Add: debug symbols. This is a very big missing feature. Nix(OS) users cannot provide upstream with backtraces.\r\nAdd: sandboxes for all packages. Block all network, file and devices by default and whitelist some.\r\n\r\nRemove: dependence on GitHub, so I can contribute without Microsoft as a middle man. Be a real community.','Guix, SuSE, Debian, Docker, drugs.','','','','Y','Y','','','','Y','','','','','','crate2nix','Y','Y','Y','','N','GitHub. I keep local patches/branches and sometimes send a mail.\r\n','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','Linux','KDE Plasma','nvim','Add: debug symbols for all packages\r\nAdd: easy way to write many tests for regressions of personal way of using packages. (Does X still do Y?)\r\nRemove: dependency on GitHub.','Guix, Debian, Docker, food stamps.','Y','','','','','','','','Y','','sway','Nix REPL, Nix LSP\r\n','NixOps','Thank you for Nix!'),(215,'1980-01-01 00:00:00',5,'en','1431176018','A5','A3','fem','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','At a former workplace, my manager and a couple of coworkers were very enthusiastic and knowledgeable about Nix. When I was setting up my work laptop, they offered me a NixOS config with various customizations to make it work nicely with the company\'s IT infrastructure, and were using Nix for building the main project I was working on. It took a while before I got confident exploring Nix beyond basic surface-level tasks like installing and upgrading software, but I started to really appreciate the power and flexibility it offered, along with the convenience and reusability of configuration-as-code. About a year ago I started using NixOS for my personal laptop too, and for my work computer at my next job, as well as using Nix in various other personal projects.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Overriding derivations (applying custom patches, backporting features or newer releases, etc)','Flakes and reproducibility','Copying closures between systems','It\'s awkward how, if I want to enter an environment with a non-free package using `nix shell`, I need to set the environment variable to allow non-free packages *and* pass the `--impure` flag so that environment variable isn\'t just discarded. I\'d love to be able to run \"pure\" builds that rely on external environment variables not to change the output, but to allow the build to take place at all.','Probably Ansible for managing server configs, Arch Linux for my personal computers, and building software using whatever dependency management tools a given language has available (cargo, yarn, stack, etc)','','','','Y','Y','','','','','','','','','','https://github.com/kolloch/crate2nix\r\nhttps://github.com/nix-community/npmlock2nix\r\nhttps://github.com/tweag/gomod2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','(see answer for Nix)','Y','','Y','Y','','','','Declarative system configurations','Easy rollbacks of the entire system','Out-of-the-box ZFS support, plus availability of related tools/services like znapzend','I\'d love to see better ways for handling secrets in NixOS, both in terms of access controls on the Nix store and in terms of encrypting secret values in version-controlled repos. It\'d be awesome to have a library function that takes an encrypted value and decrypts it using a passphrase supplied on the command-line at build time, so individual attrs within an attrset could be encrypted, while using MACs or hashes to validate the passphrase so the build is still consistent.','Probably Arch Linux for home machines and Ansible for configuring servers.','Y','','','','','','','','','','swaywm','https://github.com/musnix/musnix\r\nhttps://github.com/nix-community/home-manager\r\nhttps://github.com/nix-community/emacs-overlay\r\nhttps://github.com/oxalica/rust-overlay','',''),(216,NULL,1,'en','122625620','A1','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(217,'1980-01-01 00:00:00',5,'en','1630825382','A2','A2','male','','','','','','Y','Y','','Y','','','','','','','','','Y','','','','','Y','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Read about it on Hacker News and figured it might be a good way to obsolete the flaky Ansible-based config management for my PC and servers.','Y','Y','','','Y','','Y','','Y','','','','','Y','Y','','','Y','','Reproducibility','Ease of packaging','Size of nixpkgs','* ','Probably Docker or Toolbox containers for dev environments, Ansible on top of traditional Linux distro for config managemement.','','','','Y','Y','','','','Y','','Y','','','','* https://github.com/tweag/gomod2nix\r\n* https://github.com/DavHau/mach-nix\r\n* https://github.com/svanderburg/node2nix\r\n* https://github.com/nix-community/naersk','Y','Y','','','N','* Lack of time\r\n* Many parts seem under-documented and filled with \"tribal knowledge\" (especially cross-compilation stuff)','N','Y',NULL,'* Problems with applications downloading binaries from the Internet (especially VSCode)\r\n* Lack of quality documentation, lots of copy-pasting from random Github repos to get things working','* More effort invested into fixing broken nixpkgs packages\r\n* Better documentation, especially for \r\n* Better support for vscode extensions shipping native binaries',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'* home-manager\r\n','* nix-on-droid',''),(218,'1980-01-01 00:00:00',5,'en','470447327','A5','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','N','Y',NULL,'Too hard to get started.','Better container tooling and support for macOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'The config language was too hard.','Perhaps an intermediate language?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','NixOps and Flakes.','I really want to like NixOS but it\'s just so awkward to get started with. I have tried several times.'),(219,'1980-01-01 00:00:00',5,'en','2030944793','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Developer Environments with nix-shell','System Configuration','Building Projects','- Project generators for common setups\r\n- Have new cli be usable without flakes\r\n','asdf','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','Daily Driver','A3','','Y','','','','','','','Easy Management of Services and Desktop Environments/Window Managers via builtin modules','NixOS generations','Centralized Configuration ','A Gui installer for NixOS\r\nRemove The global flake registry','Fedora','Y','','','','','','','Y','','','SwayWM','niv\r\nhome-manager\r\nflake-utils\r\nmanix','node2nix\r\nlorri',''),(220,'1980-01-01 00:00:00',5,'en','1051954744','A2','A3','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I liked the reproducabillity of an OS, to be able to share configs through git an be able to share it between system. So when I solve an issue or atdd a feature on one system, its usable everywhere.','','','','','Y','','Y','','Y','','','','','Y','Y','','','Y','','Declarative configuration','Reproducible dev environment','Easy package testing/using through nix-shell -p without cluttering my system','Better documentation, currently it\'s fragmented, out of date or non existent.','Rust/cargo.toml, cmake with hunter, arch/pacman','','','','','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I liked the reproducabillity of an OS, to be able to share configs through git an be able to share it between system. So when I solve an issue or atdd a feature on one system, its usable everywhere.','Y','','Y','','','','','Declarative os configuration','Reproducible dev environment','Easy package testing/using through nix-shell -p without cluttering my system','Better documentation, currently it\'s fragmented, out of date or non existent.','Arch','Y','','','','','','','','','','i3','','',''),(221,'1980-01-01 00:00:00',5,'en','1868835391','A5','A3','male','','','Y','','','Y','Y','Y','','Y','Y','','Y','Y','','','Y','','Y','Y','','','','Y','','','Y','','Y','','','N','Y',NULL,'I had over 1000 generations before I stopped using NixOS for the following reasons: Upgrade process wasn\'t clear (and borked my system, which was the straw which broke my camel\'s back), packages were frequently out-of-date, many idioms were not obvious, wasn\'t a fan of the Nix language, documentation was the worst I had ever seen, error messages were *completely* unhelpful, not being able to simply follow steps in Github repos to test something became a nuisance, no built-in way to manage home directory... that\'s all I can recall at the moment.','A language change with easy discoverability and good error messages at build time would at least make me interested enough to give it another go. Also, an examples section which shows users how to do common tasks (with comments) instead of making us look at what other people have done on random Github repos would be great. Home management is stupidly vital, have it built-in.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I just answered this.','I just answered this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None, since as I stated, I no longer use NixOS.','I only really used home-manager (which without, I would have quit a lot sooner). Never got around to trying nix-flakes.','You have the right idea, but you need to find people both smarter and dumber to help you simplify every single thing about the OS, language, and ecosystem. A focus on server management would be vital, as a good system with easy rollbacks is what every single sysadmin wants, but you aren\'t going to get them to learn so many things in one go. It\'s honestly heartbreaking to see such a revolutionary idea go to waste because no one\'s been smart enough to simplify it.'),(222,NULL,NULL,'en','895417244',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(223,'1980-01-01 00:00:00',5,'en','302304522','A1','A4','male','','','','','','Y','Y','Y','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','Y','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','dev shells','huge package set','','better documentation','','','','','Y','Y','','','','','','Y','','Y','','cabal2nix, haskell.nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','declarative config','','','','','Y','','','','','','','','','','xmonad','','',''),(224,'1980-01-01 00:00:00',5,'en','392611270','','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','N','Y',NULL,'Too complicated to package lxde given too many patches needed.','Support for micro-architectural package like amd64-v3 to have better performance on newer systems.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Packaging lxde is too hard, need too many patches.','Support for micro-architecture like amd64-v3 to have better performance on newer systems.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I wish nixos supports x86_64-v3, that would be a deal breaker over many distros.'),(225,'1980-01-01 00:00:00',5,'en','1853371090','A2','A3','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Recommendation of a friend','Y','Y','','Y','','','','','Y','','','Y','','','Y','Y','Y','Y','','Repeatable builds','Declarative management of installed software, with clean removal when things are removed correctly','Rollback-able Nix environments','The community divide between Flakes and non-Flakes users','Docker containers','','','','Y','','','','','Y','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Recommendation of a friend! Interested in fully repeatable machine setup, and having all my machine configs live in a VCS repo that could be correctly used','','','Y','','','Y','','Declarative package installation, with removal meaning clean uninstallation','Comprehensive set of modules for configuring a wide variety of software','Great nginx configuration support','','','','','','','','Y','','','','','i3 + sway','Home Manager','',''),(226,'1980-01-01 00:00:00',5,'en','1536737373','A1','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(227,NULL,1,'en','572717954','A2','A2','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','Y','','','','','','Y','','Android',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(228,'1980-01-01 00:00:00',5,'en','1284778648','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I have been on and off different distros for a long time. I love trying new and interesting things.\r\nI heard about two friends using NixOS so I tried it.\r\nNever left :)','','Y','','','Y','','Y','','Y','','','','Laptop and home machine','Y','Y','Y','Y','Y','','I really love the fact that you can version control your setup through git, and revert to old versions etc. very easily. And also that I have a single place where I can actually read through everything that is installed on my machine, and I can also comment config so that I remember why I installed certain things.','Nix shells so that I don\'t have to install packages system wide when developing stuff with dependencies, it also makes spinning projects up on different machines trivial.','Nix env so that I can try out packeges before installing them, or run them once if I only need them once','I would make flake default, or at least make a work around so that you don\'t have to add the flake declaration in the config and run it before you add your flake stuff to the config.\r\nI love the idea that I can take my current config, past it in to a brand new machine, and get the exact same setup. However, now I need to first install a dummy config with:\r\nnix = {\r\n package = pkgs.nixUnstable; # or versioned attributes like nix_2_4\r\n extraOptions = \'\'\r\n experimental-features = nix-command flakes\r\n \'\';\r\n };\r\n\r\nbecause if I don\'t do this first my config failes when trying to install it.','Arch pacman','','','','','Y','','','','','','','','','','','','Y','','','N','I\'m scared of doing something improper when creating my packages.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Same as Nix','Y','','Y','','','','laptop and desktop','same as nix','','','same as nix','Arch','','','','','','','','Y','','','Sway','','','I love NixOS, keep up the great work guys! :)'),(229,'1980-01-01 00:00:00',5,'en','657861283','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Package management in haskell. Reproducability. Functional and declarative programming','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Configuration management ','Declarative environment','Very large nixpkgs repository.','The cli application and language inconsistencies.','Guix for similiar features.\r\nFedora workstation for convenience.','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I liked nix-env and wanted to step up from home-manager to a system wide configuration.nix','Y','','Y','','','','','System-wide configuration ','Containers','Size of nix-packages','cli and language inconsistencies','Guix','','','','','','','','','Y','','Xmonad','home-manager.\r\ncomma for one-time use instead of nix-shell','','Thanks for the great work. I\'m looking forward to the future of the nix-ecosystem'),(230,NULL,NULL,'en','305563328',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(233,NULL,2,'en','1953522457','A5','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I heard rumors about declarative configuration management w/ NixOS and now I\'m too invested to stop :(','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','','Package isolation','Declarative config management','','A simplified declarative DSL instead of forcing everyone to learn a bespoke functional language just to make packages or configure their system.\r\n\r\nBarring that, more concise reference documentation about the Nix stdlib.','Shell scripts and containers.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','I would have to interact with Nix users.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Oh wait I answered this in the Nix question, well, same answer.','Y','','Y','','','','','','','','','','Y','','','','','','','','','','',NULL,NULL,NULL),(234,'1980-01-01 00:00:00',5,'en','2136009048','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','','','for my own NixOS desktop','A4','Tired to maintain Ansible/Saltstack automation/homegrown script etc to deploy my home infra I\'ve casually encountered NixOS and decide that while I can\'t digest the language the idea is superb and the implementation is mature and maintained enough to be a daily driver.','','Y','','','','','','','Y','','','','Desktop','','Y','','','Y','','Declarative *full* OS config (NixOS)','Easy creation of custom ISO','nix-shell','The language. It\'s really indigestible for me... Guix can\'t be compared since it\'s far from being equally mature, but Scheme/Lisp family languages are FAR more digestible for me.\r\n\r\nIn change terms: the documentation. Nix ecosystem evolve quickly but almost anything beyond the basic it\'s not really documented enough in a way that a newcomer can simply read something like a book and have essentially all he/she need to operate NOT ONLY for basic stuff.','I can\'t say Guix since it\'s a fork of Nix at start, so I\'d use homegrown scripts and \"modern\" automation (Salt/Ansible) as I\'ve used before choosing NixOS. They have more overhead in human terms, they are less reliable, a bit more flexible, even if in general in non-positive ways, and with them an infra/a single system can be maintained in \"code\" in a similar way.','','','','','Y','','Y','','','','','','','','none','','','','imported .nix files in configuration.nix','N','I\'ve just contribute a hyper-stupid fix time ago, the main thing stopping me is the nix language itself, I can\'t make quality contribution without mastering the language. Another is the choice of being tied to GitHub: for me being tied on third party service, a single one, it a very big weakness, I do not really care how simple, nice etc GitHub is and I do not also care who is it\'s owner, it doesn\'t matter. What\'s matter is using not just a third party code host, so multiple are possible, switching from one to another is simple etc, but using specific features like PR witch means being tied to one and only one service.\r\n\r\nThese days most people do not care until something happen, like when an account get suspended for no reasons, when during an experiment the developers of a \"fully decentralized p2p system\" discover that their own system does not work without a third party services etc, but I do care, much.','Y',NULL,NULL,NULL,NULL,'A1','','','','personal Desktop, an experimental home server','A4','It\'s my Nix story, I never used Nix on some other distro/OSes, I\'ve just started with NixOS. My story in that sense is simple: I feel the need of something I can maintain at home without replicate a big infra setup. I\'ve tried few options and all are simply overburden, NixOS is simple enough to have a config tangle-ed from org-mode files, make a custom iso to be passed to ventoy and done. Nothing more, nothing less.','','','Y','','','','Desktop','Declarative configuration','Easy and quick custom iso with just a simple config and a oneliner to generate them','Nix-shell for quick testing or for unported software that demand an FHS environment with relevant deps ','Again, the nix language, substituted with some Lisp-ic one, perhaps something integrated in Emacs\r\n\r\nDocumentation. Too limited beyond the basic usage','Homegrown scripts and Ansible/Salt','Y','','','','','Y','','','','','EXWM','None...','I\'ve tried NixOps, it seems dead unfortunately but you mention it even if only one time...','Thanks :-)'),(231,'1980-01-01 00:00:00',5,'en','213736077','A2','A3','male','','','Y','','','Y','Y','Y','Y','Y','Y','','','Y','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','','','I\'d like to use arbitrary HTTP resources as flake inputs; that way all inputs of my NixOS inputs would be managed by the flake.','AFAICT GNU Guix is the only other alternative','','Y','','Y','Y','','Y','','Y','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','For one, it\'s actually much easier to use declarative configs; NixOS flattens out most of the kinks Linux has. For another, having reproducible, as-code config is in itself useful.','Y','','Y','','','','','Config-as-Code','Ease of use','Reproducibility','','','Y','Y','','','','','','','','','xmonad','pre-commit-hooks.nix','',''),(232,NULL,NULL,'en','2053865837',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(235,NULL,4,'en','1236698174','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','Y','','','','','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','home-manager','',NULL),(236,'1980-01-01 00:00:00',5,'en','1213157161','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Saw a friend using it, decided to jump into the cold water of NixOS and liked it','','','','','','only NixOS','','','','','','','','','','','','','','','','','Remove imperative packaging functions','Probably Debian\'s apt','','','','','','','','','','','','','','','Basically none as they are generally very hard to use and don\'t integrate well.','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Jumped into the cold water of replacing my OS after seeing it used by a friend.','Y','','Y','Y','','','Desktop','Reliability of expressions - Set it up once and it\'ll basically work \"forever\"','Low effort to migrate to new NixOS versions - just build it, take care of warnings/errors during build, then when it\'s convenient, reboot into it','Single source of \"truth\" about the full system in the form of configuration.nix','Change the module system to allow more flexibility with modules and have all non-system modules expose a package option to replace the default package being used','Probably Debian with APT and Ansible','Y','Y','','','','','','','Y','','','- https://github.com/NixOS/nixos-hardware\r\n- NUR','Pretty much all 2nix variants as those are often unusuable without in-depth knowledge about the details of the wrapped build systems and the projects I would like to see wrapped.\r\nAnd don\'t even start about projects that use multiple build systems...',''),(237,'1980-01-01 00:00:00',5,'en','1975291499','A5','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got frustrated with other package managers; found Nix, seemed cool. Spoiler alert: it was :)','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Lightweight development environments','Declarative package and config managment','Rich stdlib and excellent ecosystem','Better error messages and easier-to-grok traces; —i-am-a-dummy.','fpm, Ansible, … I am already exhausted thinking about it.','','','','Y','Y','','','','Y','','','','','','bundix','Y','Y','','','N','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got frustrated with other package manager; found Nix; thought it looked cool; it was.','Y','Y','Y','Y','','Y','','Lightweight development environments','Declarative package and config management','Rich stdlib and ecosystem','Easier-to-grok errors/traces; —i-am-a-dummy.','fpm, Ansible, … I am getting exhausted just thinking about it.','Y','','','Y','','','','','','Y','I3','niv, arion','',''),(238,NULL,1,'en','1213438461','A3','A2','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(239,NULL,2,'en','1974873861','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','','Y','','','','Y','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(240,'1980-01-01 00:00:00',5,'en','1791909704','A1','A4','male','','','','','','Y','Y','Y','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','As a replacement for constant issues with homebrew library updates.','Y','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Version pinning for specific packages','','','Validation closer to the issue. For example currently you can get a trace with an internal error and none of the frames coming from the code you wrote. Instead, the errors should be caught at user/nixpkgs boundary.\r\nOr even better, the goods ideas from nix could be moved to a project which does not use nix throughout but instead has packages and other options as first class objects with strict boundaries.','Alcohol','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'N','N','A lot of people having success with it with daily usage. If it requires more effort than Fedora, I\'m not interested.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I don\'t understand the expectations for nixpkgs contributions. I\'ve got security fixes, new packages, bugfixes and issues in current packages open for weeks with no response. Is there just not enough maintainers? Should I constantly poke people? Am I doing something wrong?'),(241,NULL,4,'en','7330895','A5','A3','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','Y','','Y','','','','','','','Y','','','','Y','','','','','','','','',NULL),(242,'1980-01-01 00:00:00',5,'en','684284735','A1','A3','male','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I joined a company which used Nix intensively. Nix shell for development, and VM for deployment.','','Y','','Y','','','Y','','','','','','','','Y','Y','Y','Y','','Reproducibility','Binary cache','Nix shell','I\'d like to add a type system and also a language server based on that.','For Haskell development, probably stack. For package management, probably just apt.','','','','Y','Y','','','','','','','','Y','','https://github.com/NixOS/cabal2nix\r\nhttps://github.com/nix-community/poetry2nix','','Y','','','N','It feels very hard to debug nix in general.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I joined a company which uses nix, so I started to use NixOS for better integration.','Y','','','','','','','Ease to configure','Reproducibility','Profile management (roll back)','I would like an \"configuration explorer\", which enumerates possible configurations. Currently, I often have to resort to reading the code.','Ubuntu','','','','','','Y','','','Y','','','home-manager','',''),(244,NULL,NULL,'en','1263656176',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(243,NULL,2,'en','69375747','A5','A4','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was introduced to nix in 2015, then a few years later I decided to try it out. I’ve been hooked ever since','','','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Declarative semantics','Nix Store','Reproducibility','Standardize .drv file format for integration with other ecosystems','Arch, I guess?','','','','Y','Y','','','','','','','','','','yarn2nix (moretea)\r\nMach-nix\r\n','Y','Y','','','N','Either y’all have the packages I need, or I can’t figure out how to package something so there’s nothing to contribute',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(246,NULL,NULL,'en','2092883377',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(247,'1980-01-01 00:00:00',5,'en','1259154179','A5','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','','','Nix build with cgroups (systemd slices or something) so I can limit resource usage.','','','','','Y','Y','','','','','Y','Y','','Y','','','Y','Y','Y','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','','','','','','Y','Y','','','','Y','','','','','','','',''),(248,'1980-01-01 00:00:00',5,'en','1733833378','A1','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','','','','Replace Nix Expression Language with Haskell','Guix','','Y','','Y','Y','','','','','','','','','','','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','','','','','Gnu Guix System','Y','','','','','','','Y','','','','','',''),(249,NULL,NULL,'en','2113873662',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(250,NULL,NULL,'en','1950634473',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(251,NULL,1,'en','1959930512','A5','A3','male','','Y','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(252,'1980-01-01 00:00:00',5,'en','236906710','A3','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was initially drawn in by the \"separate environments\" point, but it has gotten me into functional programming in general.','','','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','Reproducibility','Declarative package and system management','Relative program isolation (PATH and such)','I would make it have a more \"normal\" syntax','Guix with Scheme, or something ostree-based','','Y','','Y','Y','','','','','','Y','','','','I\'ve used gomod2nix previously','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I heard about the declarative package and system management and decided to try it, found it to be extremely straightforward.','Y','','','','','','','Declarative system management','Extremely up-to-date packages','','I\'d overhaul the system configuration to be more consistent, at least for the syntax. For example: declaring the use of GDM uses \'services.xserver\' even if it doesn\'t actually launch XOrg. I\'d also make it so it doesn\'t assume/need the default shell to be Bash.','Guix System, ostree-based OSes','Y','','','','','','','','','','Sway','','','NixOS is a truly great operating system, and Nix itself is a revolutionary breakthrough in the idea of environment management.'),(253,'1980-01-01 00:00:00',5,'en','1746156535','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Got fed up with arch Linux breaking on updates, so I decided to try the weird distro that let me configure everything declaratively ','','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','Declarative configuration ','Declarative package management ','Effortless rollbacks ','I would make flakes into à first-class feature, and improve documentation ','Probably a mix of shell scripts and technology like Ansible.','','','','Y','Y','','','','','','','Y','','','','Y','Y','','','N','Honestly I just haven’t had the patience to figure out how to properly add myself as a maintainer to Nixpkgs. Also, since most of my packages are for proprietary software with no stable URLs, I don’t believe I could maintain the level of reproducibility required by Nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I wanted a way to configure everything from one place, and NixOS (along with home-manager) provided the solution.','Y','','Y','','','Y','','Declarative system configuration, including all programs','','','Modules for every single thing out there. A nice, comprehensive list of vim packages.','Fedora, probably.','Y','','','','','','','','Y','','','Home-manager and Nixvim','NixOps (ended up being too complicated for my needs, and the required state made it unsuitable for me)',''),(254,NULL,1,'en','1167609724','A5','A3','male','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(255,'1980-01-01 00:00:00',5,'en','634965795','A1','A3','male','','Y','','','Y','','Y','Y','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Nix is declaratetive reproducable. Nixpkgs has programs I need, which are cuda, python, and otrher mache learning stuff. Also I have several servers to regulate. And packaging and testing programs is awesome.\r\nNix helps me with these.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','flake for project config','flake for systems config','remote build','add better debug or trace info\r\nadd better lsp and other tools for writing nix\r\nadd some compilation optimization, e.g. lto and pgo\r\nadd more manpower for github issue and pr','gentoo conda','','','Y','Y','Y','','','','','','Y','','','','mach-nix https://github.com/DavHau/mach-nix#configure-providers','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','the same as \"Why did you start using NixOS? Tell us the story.\"','Y','','Y','Y','','','','rollback','','','rollback data\r\nmore manpower for github issue and pr','gentoo ansible','Y','','','Y','','','','Y','','','','home-manager\r\nnix-direnv\r\nemacs-overlay\r\nnixgl\r\nmach-nix','','improve the state of github issue and pr, maybe change the work flow to something like linux kernel?'),(256,'1980-01-01 00:00:00',5,'en','133095674','A5','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started with NixOS on my work laptop, and eventually started to use nix for development environments with nix-shell.','Y','','','','','','Y','','Y','','','Y','','','Y','','','Y','','Declaritive reproducible dev environments','Create temporary environments for development/experimentation','Override parts of nixpkgs to solve issues when newer software has bugs','I\'d like a build system that compliments nix well and perhaps shares a cache, so incremental builds could be part of nix build. Dependencies could be extracted from source files, and handled similarly to build inputs in Nix.','Shell scrips for personal use, perhaps Ansible, as I ran into many problems with SaltStack.','','','','Y','Y','','','','','','','','','','node2nix: https://github.com/svanderburg/node2nix\r\npoetry2nix: https://github.com/nix-community/poetry2nix\r\nrust-overlay: https://github.com/oxalica/rust-overlay (not sure if that counts)','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I had been administering linux servers for a while with tools like Chef, and SaltStack and shell scrips which had many problems that Nix/NixOS seem to solve. While I used MacOS for my personal and work laptops, there wasn\'t much hardward that was interesting from Apple for a period, so I decided to use Linux again for my OS. I had been hearing about NixOS for a while and decided to give it a try based on seeing how it did a better job than those other administration tools.','Y','','Y','','','Y','','Declaritive configuration that can be saved in a version control','Create reusable modules for different configurations','Using overlays to deal with problems','I\'d like the Module system to be a little more composable, it seems that enabling a service can have a fairly deep impact enabling several other modules which intern install many other packages, and it feels a bit like altering a lot of global state making it difficult to understand the full impact of enabling something without doing a lot of tracing through the nixpkgs source code. I\'m not sure how to improve this situation but I think that would be desirable.','Probably Ubuntu, though I wanted a change from that, installing a deb that automatically starts a service before you can configure it was always a source of pain for me.','Y','','','','','','','','','','sway','home-manager','',''),(257,'1980-01-01 00:00:00',5,'en','1655294499','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','','','','','Y','','Y','','','','','','','Y','','','','','','','','Likely multiple things. ','Y','','','','Y','','','','','','','','','','','Y','Y','','','N','Time','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','','Y','','','','','','','','','Y','','','','','','','','','','sway','','',''),(258,'1980-01-01 00:00:00',5,'en','1179471476','A5','A3','-oth-','nb, also male and female are sexes not genders probably','','','','','','Y','','','','','','','','','Y','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','my laptop runs nixos','A2','to maintain my server and set up new laptops i had a creaking pile of ansible that i didn\'t like working with, embedded in some emacs org-mode documents. Now I have a bunch of nix derivations in those same org-mode documents, and it works a lot better and does more than just configure new machines.','','Y','','','','','Y','','Y','','','Y','','','Y','Y','Y','Y','','declarative declarative declarative!','micro-communities like emacs-overlay, i would absolutely never bother compiling emacs-gcc or kernel myself but now it\'s straightforward.','(binary) cache is king','i don\'t think it\'s unfair to expect a magnitude order improvement in the runtime performance of the nix language itself. it\'s a really beautiful language, but the time spent evaluating on every command is a millstone around its neck. \r\n\r\nbuild in something like flake-utils particularly eachDefaultSystem\r\n\r\nofc it\'s possible to say \"well you should just boilerplate this flake input in and it\'s fine\" but this is another problem i see: the amount of a-priori design patterns, functions, etc which are present inside of nixpkgs. the section.md does help, but browsing those sucks, and browsing the \"one big html page\" output also sucks unless you\'re some kind of goblin who keeps the nixpkgs, nixos, and nix manuals in pinned tabs. documentation of these things, more things which point to best practices in clear language would help people become less afraid/put off by learning the language and learning how nixpkgs works. recently have been watching a friend move a bunch of buildbot python over to their own nixpkgs, they would hit a stumbling point and i would say \"oh this sounds like the sort of thing that $pattern in nixpkgs would be good for\" and a lightbulb goes off in their head where a bunch of stuff clicks. we need more of those potholes paved over. perhaps i should be paving more potholes.','i\'d be an unhappy user of fedora and ansible still, maybe i\'d figure out how to be happy with silverblue. maybe copy a dotfiles repo from someone','','','','Y','Y','','','','','','','','','','my immediate response was \"what the fuck is 2nix\" -- considering my last point in \"add/remove/change\" question here... maybe i\'m just dull\r\n\r\nnode2nix\r\npoetry2nix\r\nemacsWithPackagesFromUsePackage in emacs-overlay is a 2nix imho\r\n\r\n','','Y','','i have a highly chaotic nixos configuration.nix generator which can include my own pkgs','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','i started with home-manager on fedora on my workstation just long enough to get my system encoded in nixos and to validate my thesis that nix\'s philosophy and maturity were up to my needs -- i don\'t have enough time to maintain a lot of packages -- and to extend my existing \"build system\" to generates configuration.nix etc from metadata in my org-mode notes. i was quite ready to jump off of fedora and a move to a fully declarative system is a no-brainer. I think over the last five years especially working in microservices, cloud, etc at my last job with thousands of servers in a fleet managed by a mess of puppet and docker i came to conclusions that align with the philosophy of nix, and at the same time nixpkgs has become quite mature and has nearly everything i care about packaged. \r\n\r\nThe only fedora machine left in my fleet is my personal webserver, which has been slowly coming together as I build nixpkgs for the handful of services that aren\'t packaged. And meanwhile more of them become available as the community picks up momentum. it\'s nice.','Y','','Y','Y','','','','declarative configuration, esp with home-manager multiplies my abilities','system rollbacks let me be a lot more confident with my fleet\'s deployment. running unstable becomes feasible if you can rollback without fear, especially with flake removing the need for managing non-declarative channels it\'s quite easy to manage too','nixpkgs, obviously. listen, i maintained spec files and they were a lot better than debian packaging, but i mostly don\'t need to. i guess i have like a half dozen of them and keep meaning to move them in to nixpkgs.... ENOTIME','an auto-installer or at least an auto-formatter. i use https://github.com/cleverca22/nix-tests/blob/master/kexec/justdoit.nix right now and it\'s great but i have to customize it and bake an image for each machine i install','probably whatever version of guix works with steam, i guess? guix wouldn\'t exist without nix, though, so i\'d be writing a pile of un-testable creaking ansible scripts on fedora like i had.','','','Y','','','Y','','','Y','','i3wm','morph or similar is really important. the state of nixops is sad, the rewrite to py3 has been a bit stutter-stepped and lost a lot of trust.\r\nemacs-overlay, zig-overlay, rust-overlay -- the language overlays are nice playgrounds for nixpkgs functionality','aforementioned nixops','i\'m quite bullish on the future of nix, nixpkgs & nixos but for someone who is not a github native it\'s a bit hard to not feel like an outsider\r\n\r\ni\'m a bit worried about how the community will handle new users, even as a relative newcomer, and how governance structures will come together. the github organized anarchy is beautiful to see, but it\'s also at a certain point a lot of context to keep in a single repository, and to have that community exist de-facto within that single repository\'s proprietary metadata services. \r\ni fear supply chain attacks performed through nixpkgs or any number of random 3rd party github dependencies being compromised. i don\'t know what to do about these things, though. i use the 3rd party emacs packages and archives and npm in fear too, it\'s not like nixpkgs is unique here.'),(259,NULL,2,'en','127390043','A5','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Someone was adding Azure support, I tried it, got sucked it and now I\'m trapped ;)','','Y','','','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','I use terranix to also do /better/ declarative terraform deployment','The hermetic properties of nix (with pure eval :snowflake:)','\"built from source, but with binary caching\"','the visibility of it all - when I\'m building a nixos image, it\'s trivial to do things like customize the initrd, build a one-off with a custom kernel config, etc, etc, etc.','Rewrite in Rust. Spec out the daemon properly. Go back in times and do flakes the right way. Write a better build planner / scheduler.','Don\'t make me think about such things. I don\'t know.','','','','Y','Y','','Y','','','','Y','','','','none, but I anticipate using cargo-nix-integration a lot more in the future.','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(260,'1980-01-01 00:00:00',5,'en','603633429','A5','A4','male','','Y','','','Y','','','','','','Y','','','','Y','','','','','','Y','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Haskell packages I need to use are too complex to set up without nix','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','','','','Reproducible environments','Easily sharing environments','Easy to set up dev environments','Non-root installs','Docker','','','','Y','Y','','Y','','','','Y','Y','','','','Y','Y','','','N','Lack of information and clear howtos on how to do so.','N','Y',NULL,'Complexity. Lack of simple support for outside binaries. Lack of documentation.','A large collection of howtos, in the format of \"you want to X, do it with Y\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Nix documentation is disastrously bad. Much of it is in the form of long tracts about Nix philosophy.\r\n\r\nPlease focus on simple tutorials: you want to do X, here is how. No background, no explanations, just hundreds of clear recipes.'),(262,'1980-01-01 00:00:00',5,'en','1849685835','A2','A2','-oth-','non-binary','','','','','','','Y','Y','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Somebody showed me nix-shell -p','','Y','','','','NetBSD','Y','Y','Y','Y','','','','','Y','Y','','Y','','Reproducible builds','Cross-compilation','Transient environments','Remove flakes (especially the global registry), focus Nixpkgs on bootstrappability.','Guix, pkgsrc.','','','','Y','','','','','','','','','','nix-build in a git hook','https://github.com/nix-community/bundix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Declarative configuration','Y','Y','','Y','','','','Declarative configuration','','','','Guix','Y','','','','','','','','','','sway','pr-tracker, OfBorg, nix-top','nix-darwin','We need better community management. Without active moderation (with consequences, including for committers), the loudest / most argumentative people win, and make the community less welcoming. Dismissive attitudes, victim blaming, and lack of leadership support and moderation are the biggest Nix turn-offs for people I\'ve tried to introduce to it, especially women. It doesn\'t happen often, but the examples aren\'t difficult to find, people do find them, and when they do I\'m not able to reassure them it\'ll go better next time.'),(263,'1980-01-01 00:00:00',5,'en','319334193','A1','A6','male','','','','','','','','','','','','','','','','','','','','','','','','','other','','','','','','only NixOS','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','NixOS','','','','','','','laptops','Y','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','I don\'t like GitHub','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','laptops','','','','','','Y','','','','','','','Y','','','','','Home Manager\r\nNixOps',''),(266,NULL,NULL,'en','60756679',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(264,NULL,1,'en','552493063','A3','A4','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Nixos',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(265,NULL,NULL,'en','961398323',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(267,NULL,2,'en','1429746452','A2','A3','male','','','','','','','','Y','','','Y','','','','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(268,NULL,NULL,'en','2139406166',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(269,'1980-01-01 00:00:00',5,'en','1527645594','A2','A4','male','','','','','','','','Y','','','','Y','','','','','','','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A5','Determinism; clear uninstalls; easy copying of config; unified config.','Y','Y','','','','','Y','','','','','','','Y','Y','','','Y','','home-manager','nix-env','flakes','Better documentation. Static type system. CUE. Faster feedback loop when changing config. Easier discovery of options to change. Unified handling of app plugins (e.g. for vim, Firefox, etc). Unified handling of libraries between different tech stacks (npm, Go, Python, etc, etc). GUI for searching and installing packages. Easier OpenGL integration.','Docker, Ubuntu, https://github.com/capr/mgit, 0install','','','','Y','Y','','','','','','','','','','what are \"2nix tools\"??','Y','Y','','','N','Fear of having to maintain. Bad expriences from many years ago with PRs not being merged for long time.','N','Y',NULL,'Challenges with installing software not present in Nixpkgs. Challenges with configuring some aspects of the GUI Desktop environment(s). Fear of the OS breaking after an upgrade.','I do sometimes use it, it seems in better shape recently than a few years ago. Also, flakes help with determinism and strongly reduce fear of upgrading.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager; Nix Hound','cachix; node2nix','Thank you! <3'),(270,'1980-01-01 00:00:00',5,'en','10042464','A1','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','NixOS for my own machines','A2','I\'ve used Puppet for many years to manage my own machines. Once nixpkgs became stable enough in 2021 I was able to move to a radically smaller and less complex configuration with a very similar feature set using NixOS.','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','Reproducibility','Speed, because of nixpkgs and Cachix','Simplicity, once I figure out how to do something','I\'d slowly restructure the language to be user friendly. For example, currently there are many ways to do common things, and some of those are just less user friendly than others. For example, each function taking a single argument. Either change that to any number of arguments (like basically every other language) or unconditionally take a single dictionary argument. Make \".\" work as the current directory. Make it obvious how to cache nix-shell results. Most importantly, don\'t be afraid to remove existing features to make it simpler for the vast majority of projects.\r\n\r\nPay a few dozen full-time package maintainers to add basically every package under the sun and keep them up to date.\r\n\r\nGenerate API documentation from the code with links back to the code for reference.','Puppet. It\'s much more verbose, and much more tedious to do anything non-trivial, but it does kinda work.','','','','','','','','','Y','','Y','','','','https://github.com/nix-community/poetry2nix\r\nhttps://github.com/nix-community/bundix','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Because using Nix on Ubuntu felt like a glass-half-full situation, and I wanted to learn Nix faster.','Y','','Y','','','','','Reproducibility','Safety because of the generations system','','In addition to my Nix answer:\r\n\r\n- Better garbage collection (such as boot menu entries)\r\n- Better nixpkgs testing, to avoid any package breakage\r\n- I\'d probably change to a rolling release with no \"stable\" points, since in my limited experience with Arch Linux it\'s much more stable than big bang updates.','Arch Linux, my daily driver for the last few years.','Y','','','','','','','Y','','','','','',''),(271,NULL,NULL,'en','1327511225',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(272,'1980-01-01 00:00:00',5,'en','1717192576','A5','A4','male','','','Y','','','Y','Y','','','Y','','','','','','','Y','Y','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Originally as a replacement for homebrew that worked more consistently on both Mac and Linux so that I could guarantee the same version of unison on both sides, because it\'s incredibly picky about both its own version as well as the version of the ocaml compiler used.','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','Repeatability','Customization (e.g. being able to override a package)','Separation (e.g. using direnv+nix-shell to have virtualenvs for every language)','Probably improvements in the deployments space. I use nixops and it\'s much better than other configuration management schemes I\'ve used, but I can\'t imagine trying to use it with a sizable team in a production environment. I\'ve also looked at morph and deploy-rs and probably a few other things and they don\'t seem to solve the larger-scale issues.','I had been using homebrew on Mac, and a variety of Linux distributions, mostly managed by Ansible.','','','','','','','','','','','','','','','I\'ve tried to use some of the nodejs ones with varying success. And I think some of the python ones, but it\'s been a while.','Y','','','I have local package definitions that my modules can refer to.','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Wanting to get the benefits I got from nix+home-manager on a higher level.','Y','','Y','','','','','Repeatability','Customization','Ease of upgrade','uhhh. deployment as I mentioned in the last one I guess. Not sure that actually applied to Nix as a ... package manager? Language? Unsure now what the prior page was supposed to be for','I used to use Ubuntu and Fedora','Y','Y','','','','','','','','','Pretty much entirely headless. I have a setup on my Windows machine with hyper-v and x410, but it\'s just for emacs with no (linux-side) WM.','','I think I lightly tried flakes at some point but didn\'t understand them. Hoping for better documentation as it stabilizes.',''),(273,NULL,3,'en','1982031310','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Because I was tired with the difficulty of managing things. ','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','nixos modules','reproducible','large number of packages available','I would make flakes the default since the beginning.','Guix but Guix wouldn\'t be possible without Nix. Probably very fragile bash scripts.','','','','','Y','','','','','','','','','','','Y','Y','','','N','All the packages I need are already there. I have no need.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Heard about its benefits on some link aggregator. Decided to try it after being frustrated with Arch Linux.','Y','','Y','','','','','modules','reproducible','large package repository','improve documentation','fragile bash scripts','Y','','','','','','','','','Y','','','',NULL),(274,'1980-01-01 00:00:00',5,'en','2079135742','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','In wanted arch with a rollback button','','Y','','','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','drone','yarn2nix (might need a yarn2 version)\r\nCrate 2nix\r\nCrane\r\n','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted arch with an undo button','Y','Y','Y','Y','Y','Y','','','','','','','Y','','','Y','','','','Y','','','sway','Home manager','','Be excellent to each others'),(275,'1980-01-01 00:00:00',5,'en','917525107','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','N','N','Good docs, finalized design, less broken setups & horror stories. Debian still seems to work more stable than hacking your setup/buildprozess into an under-construction language',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(276,NULL,NULL,'en','461149749',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(277,NULL,1,'en','1666532173','A5','A5','male','','','','','','','','','','','','','','','','','','','','','','','','','Engineering Manager','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(278,'1980-01-01 00:00:00',5,'en','1132237053','A3','A4','male','','Y','','','','','','Y','','','Y','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(279,NULL,1,'en','1519804216','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(280,NULL,1,'en','550391125','A5','A4','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(281,'1980-01-01 00:00:00',5,'en','268993338','A5','A4','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','tried nixos for the declarative, functional configuration','Y','Y','','','','','','','Y','','','','','Y','Y','','','Y','','atomic upgrades','declarative configuration','portability to macos','1. make it easy to run binaries compiled on non-nix systems\r\n2. improve documentation\r\n3. add a channel that points to latest channel (like /stable as alias to /21.11 but will update later)','guix would be great if it worked on macos','','','','','','','','','','','','','','','','','','','','N','lack of documentation, coding conventions, clear process','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','Y','','','','','bspwm, mate','','',''),(282,NULL,2,'en','1500581681','A5','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to make my shell scripts more reproducible.','Y','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Declarative system management','Reliable configuration rollback','Relatively easy build language','A way to use a flake with nix develop without copying the whole repository to the nix store. It makes it incompatible with large monorepos.','A combination of Debian, Saltstack, Joey Hess’ Propellor, and ad-hoc scripting.','','','','Y','Y','','','','','','','Y','','','https://github.com/tweag/gomod2nix','Y','Y','','','N','Nothing, just hasn’t happened yet',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(283,'1980-01-01 00:00:00',5,'en','307395163','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','I decided to try NixOS and almost immediately started having to learn Nix. But I was a professional Haskell developer for a while, so it wasn\'t a huge leap for me.','','Y','','','Y','','Y','','','Y','','','','','Y','Y','Y','Y','','','','','I\'d add static types and more development aids to Nix. The nixpkgs repo has so much code; having better support for understanding large codebases written in this language would be a huge deal.\r\n\r\nPut another way, I\'d focus on UX for the Nix language, like the kinds of things the Rust folks keep working at: good error messages, IDE integration, etc. I think static types could help those efforts, or I wouldn\'t bother listing that as a goal.','I started building my own Nix-like thing in 2009, so I guess I\'d get back to that eventually.','','','','','','','','','','','','','','','This question was confusing because I wasn\'t sure what \"2nix\" referred to, but I guess you mean these:\r\nhttps://github.com/oxalica/rust-overlay\r\nhttps://github.com/nix-community/poetry2nix\r\n\r\nAlso, occasionally bundix and cabal2nix.','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I\'d been meaning to try NixOS for a while, so when I got a new laptop I decided to give it a try, and pretty quickly decided that it was what I really wanted a Linux distro to be. I\'d been using Debian for close to 20 years before that.','Y','','','','','','','','','','I\'d improve documentation. The NixOS manual is great, but there are so many undocumented tricks and insights I\'ve found necessary for daily use.\r\n\r\nI\'ve had the idle thought that, with all the autogenerated information out of the NixOS module system, some sort of interactive typed configuration editor might be feasible and useful.','I started building my own Nix-like thing in 2009 and wanted to make a distro from it. If NixOS didn\'t exist I guess I\'d go back to that project eventually.','Y','','','','','','','Y','','','','https://direnv.net/\r\nhttps://github.com/nmattia/niv\r\nhttps://github.com/nix-community/lorri\r\nhttps://github.com/bennofs/nix-index\r\n','','I hope you get helpful insights from this survey! Nix and NixOS are great, and I look forward to seeing them get ever better.'),(284,NULL,3,'en','523569047','A6','A2','male','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','Y','','','Y','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(285,NULL,1,'en','1571362321','A2','A3','male','','','','','','','','','Y','','Y','','','','','','','','','','','','','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(286,NULL,4,'en','1616982361','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(287,'1980-01-01 00:00:00',5,'en','531501973','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Prior to NixOS I had been using Arch on all my computers (and the computers of family members I managed). I always dreaded reinstalling the OS or doing any complicated system configuration because I knew it would eventually break and by then I would have forgotten what files I put where and how it all works. So then I started using Ansible to manage my Arch system, which was an improvement because now this all lived in Git and at least I\'d know what files I have touched and what files are managed. Still, I hated running it and maintaining it since it was slow and broke often, so I wouldn\'t put everything into it. Plus regardless of how well I did my Ansible stuff, a kernel update could break booting at any time, requiring me to dig out that old USB drive with Arch on it so I could arch-chroot and fix my system somehow.\r\n\r\nEventually I heard about NixOS and how literally everything goes into a configuration file and it creates boot entries for each system generation so if something goes wrong I can just boot into the previous generation and I was sold. I installed NixOS on my laptop and Nix on my Arch desktop.','Y','Y','','','Y','','Y','','Y','Y','Y','','','','Y','Y','','Y','','Declarative system or server configuration/management','Declarative environment management','Build and package software','Build on a more common programming language that has typing so we can have IDE support (types, go to definition, autocomplete, etc.). Also change the name, since people often use \"*nix\" when talking about Linux and Unix in general so searching for anything is hard. I often have to experiment with using \"nixpkgs\" or \"nixos\" in the search, even if my search is about the language. Also on the topic of naming, the language, the package manager, and the OS kinda have different names but kinda not.','Arch + Ansible I guess.','','','','Y','','','','','Y','Y','Y','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Prior to NixOS I had been using Arch on all my computers (and the computers of family members I managed). I always dreaded reinstalling the OS or doing any complicated system configuration because I knew it would eventually break and by then I would have forgotten what files I put where and how it all works. So then I started using Ansible to manage my Arch system, which was an improvement because now this all lived in Git and at least I\'d know what files I have touched and what files are managed. Still, I hated running it and maintaining it since it was slow and broke often, so I wouldn\'t put everything into it. Plus regardless of how well I did my Ansible stuff, a kernel update could break booting at any time, requiring me to dig out that old USB drive with Arch on it so I could arch-chroot and fix my system somehow.\r\n\r\nEventually I heard about NixOS and how literally everything goes into a configuration file and it creates boot entries for each system generation so if something goes wrong I can just boot into the previous generation and I was sold. I installed NixOS on my laptop and Nix on my Arch desktop.','Y','','Y','Y','','','','Declarative system configuration','Boot into different generations','Overlays allowing me to update my system but still pin or fix particular packages','Secrets management','Arch + Ansible','Y','','','','','Y','','Y','','','','home-manager, nixpkgs-review, alejandra, vscode-nix-ide, nixos-generators, oxalica rust overlay','nixfmt, nixpkgs-fmt',''),(288,NULL,1,'en','415402120','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(289,'1980-01-01 00:00:00',5,'en','110514025','A3','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(290,'1980-01-01 00:00:00',5,'en','1464929401','A1','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','N','Y',NULL,'complexity. the nix language is a huge hurdle. I just want to install some packages, this seems like a straightforward thing to do, and I like the promises of Nix/nixos. I just can\'t dedicate the hours to learn to use it properly.','Dropping or drastically simplifying the nix language and using something closer to a configuration format or build format people are actually familiar with',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'poor documentation','better documentation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(291,'1980-01-01 00:00:00',5,'en','2025775944','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','','Y','','','','','','Y','','','Y','','Reproducible builds','Complete system configuration','','I would have the Nix community aligned around a clear plan for future developments, e.g. flakes, content-addressable derivations, etc. I would have the Nix team consider user experience to be a key priority.','Homebrew, Docker, dotfiles','','','','','','','','','','','Y','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A2','I wanted to declaratively set up some servers.','','','Y','','','','','','','','','','','','','','','Y','','','','','','','',''),(292,'1980-01-01 00:00:00',5,'en','1108707652','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','When I started using NixOS. Sort-of had to.','','Y','','','Y','','Y','','Y','','','','','','Y','Y','','Y','','Decently reproducible environments.','','','I\'d improve nixpkgs. Having a poorly-document, haphazardly built library is a bit of a drag when it\'s pretty much the \"standard library\" of Nix.','Probably Alpine. Maybe Ansible.','','','','Y','Y','','','','','','','','','','','','Y','','','N','Lack of time. Lack of willingness to try too hard, there\'s plenty of other stuff I\'d rather do instead of fiddling with computer infrastructure.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','When someone else had it on their laptop, I figured I\'d give it a try. Using anything else for my personal devices feels strictly worse now. I\'m trapped.','Y','','Y','','','','','Reproducible laptop install.','Decently easy to test stuff that\'ll go on a server on my local machine (though not always possible).','','','I assume Guix wouldn\'t exist. So probably Alpine. Maybe OpenBSD.','Y','','','','','','','Y','','','','','direnv integration.',''),(293,'1980-01-01 00:00:00',5,'en','1684685691','A5','A4','male','','','','','','','Y','','','Y','Y','Y','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend of mine who is a professional Haskell programmer convinced me to give NixOS a try on my new Linux work laptop in 2018. It was rough at first, but I haven\'t looked back. It\'s only gotten better as I\'ve learned more and more about how it works.','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','Painless consistent rollbacks','Reproducible builds with Flakes','Self-contained dev environments for any language','Make Flakes (or something like it) \"the way\".','Not sure what I would replace Nix itself with.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','My additions have been personal projects and version pinning (mostly changing versions to get a newer one while waiting for an update in Nixpkgs), nothing that would need to be put into Nixpkgs. Maybe some day.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend of mine who is a professional Haskell programmer convinced me to give NixOS a try on my new Linux work laptop in 2018. It was rough at first, but I haven\'t looked back. It\'s only gotten better as I\'ve learned more and more about how it works.','Y','','Y','','','','','Painless simple rollbacks','Reproducible system configurations with Flakes','Unified configuration for all my NixOS systems. Having one configuration repo that makes all my machines be configured roughly the same.','Better documentation. It took me until this year (and I started in 2018) to get to where I feel like I know exactly what is happening in a system configuration build. I\'d also like a good way to look up library function definitions. I\'m used to being able to easily navigate a codebase using IDEs like the ones from Jetbrains and not having anything near that makes it hard to work with. Maybe a LSP server for Nix and Nixpkgs?','Not sure, some other distro. I haven\'t thought about it.','Y','','','','','','','','','','herbstluftwm','I use cachix, but only for nix-community. Not much interaction there.','Nothing that I can think of.','I love NixOS. I don\'t really understand the complaints about the Nix expression language itself. \r\n\r\nThat said, it\'s taken me from 2018 until 2021 to have a good mental model of how system configurations work. I think somehow I missed the description of how modules work. I\'m still not sure of some things like, if I have a project that has a `flake.nix`, what\'s the right way to refer to it from a Nixpkgs derivation and build and install it?\r\n\r\nI think how things like `nixos-rebuild` works aren\'t clear, and sometimes it\'s not clear what arguments are passed or are available in a system configuration module.\r\n\r\nSo I feel like the documentation and onboarding side of it could use some work. It\'s something I\'ve considered trying to tackle myself, but I don\'t have all the answers. I\'m not sure the Nix Pills do the best job, but maybe they\'ve improved. It\'s been a while since I read them.'),(294,'1980-01-01 00:00:00',5,'en','1430542057','A6','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Got sick of being afraid of updating my OS because I had too much important stuff to lose from one bad update turning up black screen.','','Y','','','','','Y','','Y','','','Y','','','Y','','Y','Y','','Atomic rollback','Declarative configuration','Easy to read package derivations','Remove Nix the language. Its UX is very foreign from anything else I know. I would NOT replace it with TOML/YAML etc. After using Nix I now understand why turing-complete language makes sense here.','Docker','','Y','','Y','Y','','','','','','','','','','Cargo2Nix, CL2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Got sick of being afraid to update my machine.','Y','','Y','','','Y','','Atomic rollback','Declarative configuration','Easy to read examples from other people','Make the documentation nicer and more Emacs-like.','Fedora Silverblue','Y','','','','','','','','Y','','','Emacs-overlay from Nix-community','NixOps, Morph, other deployment tools.',''),(295,'1980-01-01 00:00:00',5,'en','726708928','A2','A3','male','','','','','','','Y','','Y','','','','','','','','','','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','','','Y','','','','','','','Y','Y','','','','Y','','','','Y','','','','','- add Better progress indicator (what each job is doing)\r\n- add TUI (e.g. for store operations)\r\n','','','','','','','','','','','','','','','','','','','','','N','Time allocation failure.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','','Y','Y','','','','','','','','','Y','','','','','','','','','','','','',''),(296,NULL,1,'en','1422500948','A5','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(297,'1980-01-01 00:00:00',5,'en','1376882986','A5','A2','male','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I started using Nix because I started using NixOS.','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','nixpkgs','nix-shell','flakes','Improve documentation coverage and findability. Many times, in order to figure out how to do something you often have to search for a public repository that happens to do the thing you want and end up reading lots of Nix code, because the thing is undocumented or you didn\'t know the keywords to find the thing in one of the manuals. This has become less of an issue as I\'ve become more experienced, but it\'d still be really nice to have ArchWiki levels of documentation accessibility.','apt and yum','','','','Y','Y','','','','','','','','','','https://github.com/nix-community/poetry2nix\r\nhttps://github.com/nix-community/yarn2nix','Y','Y','','','N','I\'m not really sure what the process is or where to even start. When I do run into issues, it\'s usually pretty easy to create a temporary overlay until the issue is resolved by someone else.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I started using NixOS because I heard it could manage system configuration in a way that is declarative, version controllable, and revertible. That sounded appealing to me, so I installed it on a VM and started messing with it until I slowly got it how I wanted. After a few months, I made the jump to install it bare metal on my desktop and laptop, replacing Manjaro. I later started using it to replace some Ubuntu servers and on my work Mac too.','Y','','Y','','','','','Declarative system configuration','Version controllable','Roll backs','Improve documentation coverage and findability. Many times, in order to figure out how to do something you often have to search for a public repository that happens to do the thing you want and end up reading lots of Nix code, because the thing is undocumented or you didn\'t know the keywords to find the thing in one of the manuals. This has become less of an issue as I\'ve become more experienced, but it\'d still be really nice to have ArchWiki levels of documentation accessibility.','Ansible and a bunch of handmade bash and Python scripts on top of Manjaro (desktop) and Ubuntu (server)','Y','','','','','','','','','Y','','https://github.com/nix-community/home-manager\r\nhttps://gitlab.com/simple-nixos-mailserver/nixos-mailserver\r\nhttps://github.com/LnL7/nix-darwin','','Keep up the good work :^)'),(298,'1980-01-01 00:00:00',5,'en','1955478030','A5','A3','male','','','Y','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Experimenting for personal projects followed by bringing it to work to build container images with large dependency trees for batch image processing','Y','Y','','','Y','','Y','Y','','Y','','Y','','','Y','Y','Y','','','buildLayeredImage','overlays / easy customization to remove unused dependencies from packages','reproducible / hermetic builds','1. Improve docker building support (e.g. better layer splitting for > 125 layers, improve speed vs piping to docker load)\r\n2. Finish content-addressed store\r\n3. Tools or funding to make nixpkgs PR reviews faster \r\n4. Easier integration with language package manager ecosystems\r\n5. Improve documentation','large messy dockerfiles','','','','Y','','','','','','Y','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','','','','Y','','Declarative configuration','','','Better documentation\r\nImprove ARM64 / embedded board support','bitbake','','','','','','','','','','','','direnv','',''),(299,'1980-01-01 00:00:00',5,'en','177714946','A6','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Turned out to be the best way to manage Haskell projects.','Y','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','','Y','','Flakes','Profiles','Channels','Fix the Nix language','Guix','','Y','Y','Y','Y','','','','','Y','Y','','','','- dream2nix: https://github.com/DavHau/dream2nix\r\n- machnix: https://github.com/DavHau/mach-nix\r\n- crate2nix\r\n- crane: https://github.com/ipetkov/crane','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I wanted to manage my local machine\'s dotfiles using home-manager. I wanted to simplify my home-server\'s configuration.','Y','','Y','','','','','Declarative configuration management','Abstraction over systemd','Ability to rollback changes','','Guix','Y','','','','','','','','','','2bwm','- statix: https://github.com/nerdypepper/statix\r\n- rnix-lsp: https://github.com/nix-community/rnix-lsp\r\n- nixpkgs-fmt: https://github.com/nix-community/nixpkgs-fmt\r\n- alejandra: https://github.com/kamadorueda/alejandra','- niv: https://github.com/nmattia/niv\r\n- naersk: https://github.com/nmattia/naersk','Thank you!'),(300,NULL,0,'en','1220122142','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(301,'1980-01-01 00:00:00',5,'en','2120809973','A5','A3','-oth-','Nonbinary','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Docker pissed me off one too many times','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','','Reproducibility','Security','Predictability','I\'d have a grafting tool to allow openssl/glibc patches without having to rebuild the world','Probably guix','','','','Y','Y','','','','','','','','','`nix build` from a webhook','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I got nerd-sniped into it from a friend and now it has ruined me to the point that other distributions are brittle and hard to reason about.','Y','','Y','','','','','Reproduciblity','Declarative Config','Pushing system closures','A security team and mailing list so that I could use it at work in production. An LTS branch wouldn\'t hurt too.','Probably Arch or something','','','Y','Y','','Y','','Y','Y','','','','','I hope this survey helps to make Nix and NixOS better for everyone :)'),(303,'1980-01-01 00:00:00',5,'en','1398025246','A6','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','N','Y',NULL,'Lack of comprehensive and official documentation, too many options for performing a specifc tasks (such as installing a package), the package manager was slower than I like (similar to dnf)','Comprehensive and official documentation, faster package management, lesser learning curve',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','The same issues outlined for the Nix package manager. Providing `#!/bin/bash` would also be a good step.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(302,'1980-01-01 00:00:00',5,'en','857546489','A5','A3','male','','','','','','','','','','','Y','','','Y','','','','','','','','','','','','Y','Y','','','','','N','Y',NULL,'I use it occasionally to set up software in a home lab for personal use, but documentation is mostly vague and i need to rely on word of mouth help or a lot of trial and error','Better documentation would make me more eager to use it',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Userspace maturity and more documentation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(304,NULL,1,'en','971435783','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(305,'1980-01-01 00:00:00',5,'en','1084852064','A5','A3','male','','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A2','The cofounder for our startup introduced me to Nix and it is the only linux distribution that hasn\'t bricked itself upon installing nvidia graphics drivers. We use it whenever possible to ensure our internal projects are reproducible and are trying to figure out a way to set up distributed nix profiles for our employees. We also use it on all of our company cloud VMs by taking advantage of the declarative system configuration.','','','','Y','Y','','Y','Y','','Y','','','','','Y','Y','Y','Y','','Declarative and deterministic system configuration','Declarative and deterministic package management','','I would rip out the entire configuration language and replace it with something that isn\'t demonic filth fished from the depths of hell itself. The issues the configuration language has are too numerous to list, but the top issues are lists separating things by space instead of by comma, and when separating arguments for a function definition, in a file it uses a comma, but when defining it, it uses semicolons! WHY?!','Windows (or ubuntu if I absolutely had to run a linux based program)','','Y','','','Y','','Y','','','','','','','','','','Y','','','N','Your fucking configuration language','N','Y',NULL,'The configuration language','Fixing your fucking configuration language.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','','FIX THE CONFIGURATION LANGUAGE FOR THE LOVE OF GOD'),(306,NULL,3,'en','620341951','A3','A3','-oth-','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','','N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(307,NULL,1,'en','1730039686','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(308,'1980-01-01 00:00:00',5,'en','214436496','A3','A3','male','','','','Y','Y','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','N','Time to toy with that. Packaging a missing software.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','To stop worrying about tracking all my installed software in case of re-installing it.','','','','','','','Work machine','reproducibility','number of packages','','Remove the ; from the nix syntax\r\nImprove the documentation (specially in other languages like spanish)\r\nGUI installer','Debian, probably with guix','Y','','','','','','','','','','i3','','Popcorn Time\r\nMVT https://github.com/mvt-project/mvt','Thank you for make and mantain NixOS'),(309,NULL,1,'en','1011187906','A5','A3','male','','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(311,NULL,1,'en','1435396754','A5','A2','fem','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','Y','','','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(312,NULL,NULL,'en','1675486451',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(313,NULL,NULL,'en','1129002549',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(314,NULL,1,'en','136256449','A5','A4','fem','','','','','','','Y','','','','Y','','','','','','','','','','','','','','Developer, libraries / frameworks','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(315,NULL,2,'en','1170112423','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','','Y','','','','','Y','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(316,'1980-01-01 00:00:00',5,'en','1509718946','A2','A6','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','','',''),(317,'1980-01-01 00:00:00',5,'en','711933194','A5','A2','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted more powerful consistent environments across my machines. My git-based dotfiles setup worked, but required manual work on each new machine. I also had to install all the programs by hand every time. Nix solved this for me.','','Y','','','','','Y','Y','Y','','','','','','Y','','','Y','','Declarative system specification','Reproducibility (hermeticity not a top priority for me)','Portability in non-NixOS environments','Please use a configuration language that the world understands. Please present better onramp documentation. It took me a year to learn to even use Nix fluently for personal needs. I nearly gave up several times, but ended up learning enough at work to take another shot.','probably guix','','','','','','','','','','','','','Y','','','Y','','','','N','i don\'t understand the language or builds enough. feels like i should use the functions that auto-build, but when the environment differs somewhat from the standard default environment, i\'m not sure how to proceed.','N','Y',NULL,'i needed to run binaries that were not packaged in nixos. i could not figure out how to setup a fhs env that supported these binaries','a feeling of confidence in being able to conveniently run binaries outside of nix ecosystem. i still don\'t know how to run semgrep in nix unless i whip out docker',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(318,NULL,1,'en','710131394','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(319,NULL,4,'en','779129052','A1','A2','male','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','Y','Y','Y','','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','A need for Nix that Guix couldn’t solve, be it in non-free software or working with others that prefer Guix. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Na','NA',NULL),(320,'1980-01-01 00:00:00',5,'en','385108568','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Came for its first class support of Haskell (using nix-shell under Debian back then).','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Customizable','Declarative','Reproducible','The language. I would use a stronger type system to catch errors and remove some oddities. Maybe just Haskell tagless-final embedded DSL, leveraging existing tools and knowledge about Haskell. I know it would be much slower, but still. I prefer correctness and sane debugging over speed.','Ansible','','','','','Y','','','','','','','','','','cabal2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Configuring a new computer. This was a natural move after using nix-env under Debian for a few months.','Y','','Y','Y','','','','Customizable','Declarative','Reproducible','I would add a graphical user interface to generate a configuration.nix so that mere mortals can benefit from NixOS without depending that much on a geek to help them.','Debian','Y','','','','','Y','','','','','Xmonad','home-manager','nixops','Thanks for your work.'),(321,NULL,NULL,'en','1972558843',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(322,'1980-01-01 00:00:00',5,'en','1523780978','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','Y','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Curiosity at first. Following the footsteps of somebody mone daring than I was, who confirmed NixOS was usable day to day.','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','Lower day-to-day maintenance','Rollbacks','Soo many pre-packaged software and services in Nixpkgs','I\'d make channels and all pre-flakes stuff disappear overnight, closing this parenthesis. I\'d add way more documentation, mostly example-based, and publish best practices docs.','pacman','','','','','Y','','','','Y','','','','','','cabal2nix ','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Curiosity','Y','','Y','','','','','','','','','Archlinux or Gentoo','Y','Y','Y','','','','','','','','XMonad','','nixops','Keep going\r\n\r\nAlso, seek better implantation in software companies, for this some guarantees are often sought like solid partners and vetting, support for SELinux and some other nonsense.'),(323,'1980-01-01 00:00:00',5,'en','348583740','A5','A3','male','','Y','','','Y','','Y','Y','Y','','Y','','','','','','','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(324,NULL,1,'en','1258033503','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(325,'1980-01-01 00:00:00',5,'en','2087242902','A1','A3','male','','','','','Y','','','','','','Y','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Mostly for NixOS','Y','Y','','','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','Reproducibility/declarativity, they feed into each other so I\'m not ranking them','','Street cred','I love the Nix language, I love the core ideas of Nix, but I think everything else kind of sucks. Documentation and the CLI interface are fractured and inconsistent, flakes are amazing in theory but meh in practice, nixpkgs can be extremely convoluted. I would fix those, if only they weren\'t very difficult problems.','whatever mac people use these days','','','','','Y','','','','','','Y','','Y','','haskell.nix, if that counts','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I had been developing on OS X, which was nice but ultimately too closed. Linux would need a very good value proposition to be worth the comfort I\'d be sacrificing, Nix was that value proposition.','Y','Y','Y','Y','Y','Y','','Same as Nix, just for an OS','','','','MacOS','Y','','','','','','','','','','xmonad','Cachix, direnv-nix, haskell.nix','Niv',''),(326,NULL,3,'en','374799057','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(327,NULL,1,'en','1510952193','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(328,'1980-01-01 00:00:00',5,'en','259446178','A6','A3','male','','','','','','Y','','','','','Y','','','','','','Y','Y','','','','','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','Y','','Y','','Y','','','','','Y','Y','','Y','Y','','system immutability','nix-shell','flakes','would add a better documentation','guix','','','','Y','Y','','Y','','Y','','','','','','gomod2nix: https://github.com/tweag/gomod2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','Y','Y','','','','','','Y','','','','','',''),(329,'1980-01-01 00:00:00',5,'en','2073431987','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','','','','','','','','','Y','Y','','Y','','','','Y','','','','crate2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','Y','','','','','','','Y','','','','Y','','','','','','awesomewm','','',''),(330,'1980-01-01 00:00:00',5,'en','880181029','A2','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Because science need reproducibility and our previous solution wasn\'t cutting it.','','Y','','','','','Y','','','Y','','','','','Y','Y','Y','Y','','Reproducibility ','Flakes','','Remove bislang for something battle hardened (I have had the interprete segfault on me). Rework the standardlib so all the map functions compose better.','A home grown solution with similar goals','','Y','','Y','Y','','','','','','Y','','','','Mach-nix https://github.com/DavHau/mach-nix\r\nNaersk https://github.com/nix-community/naersk','','Y','','','N','Haven\'t found a need for it yet. Slow or reviews are dampening my enthusiasm.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Because my Ubuntu stopped supplying updates and could not be upgraded in place.','Y','Y','','','','','','Reproducibility ','','','','Ubuntu ','Y','','','','','','','Y','','','i3','','',''),(331,'1980-01-01 00:00:00',5,'en','796197940','A5','A4','male','','','Y','','','Y','Y','Y','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was tired of server config management that tries to rein in the chaos of imperative distributions. NixOS\'s promise of a fully (or as much as possible) declarative system with rollbacks was amazing.','','','','','','','Y','','Y','','','','','','Y','','','Y','','Hermetic builds','Reproducible builds','Very wide selection of up-to-date packages','I would hire a UX designer and make them BDFL of the project, with veto power over changes. Nix badly, _badly_ needs to become less user-hostile.','Arch linux. Package freshness and some care about reproducibility, and hope for the best with ZFS snapshotting to have rollbacks.','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','See previous answer about Nix. I started using Nix because of NixOS, to get declarative servers at home.','Y','','Y','','','','','Declarative system config','Seamless rollbacks','','Same comment as Nix, make a UX expert BDFL and let them veto terrible UI/UX. Also do UX studies with system administrators to be less operator-hostile, and standardize on core tooling for deployment rather than rely on 15 incompatible third-party tools with no obvious winner.','','','','','','','Y','','','','','i3','','',''),(332,'1980-01-01 00:00:00',5,'en','1228637288','A5','A3','-oth-','Nonbinary Trans Woman','Y','','','Y','','','','Y','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I read a blog post about it (probably this one: https://christine.website/blog/i-was-wrong-about-nix-2020-02-10 ) just as I was becoming irritated by having to reconfigure a new system, so I decided to try NixOS','','Y','','','','','Y','','Y','','','Y','','Y','Y','Y','','Y','','Declarative environment management','Declarative system configuration','Software building/packaging','Clearer, more organized documentation (it feels a bit ridiculous to have to search through both the manual and github:nixos/nixpkgs to find standard library documentation, and I\'m still not entirely sure what is and isn\'t a builtin function)\r\n\r\nBetter error messages, because, currently, they\'re usually either incomprehensible or unrelated to the actual problem\r\n\r\nStrong typing, because I think it would help alleviate both (it\'s easier to reason about unfamiliar code if you know the expected types of the inputs and outputs, and, in my experience, languages with stronger typing usually output error messages more relevant to their root cause)','Guix, probably','','','','Y','Y','','Y','','','','','','','','cabal2nix\r\nnix-cargo-integration https://github.com/yusdacra/nix-cargo-integration','Y','Y','','','N','I\'ve contributed a tiny bit to github:mozilla/nixpkgs-mozilla, but:\r\n* I haven\'t really had the time for anything more substantial recently\r\n* While I have overridden packages from github:nixos/nixpkgs to fix problems I\'d been having, I\'m not sure whether those overrides were necessary or if I was just doing something else incorrectly, so I\'m not confident that I could make a useful contribution','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I like having a declarative system configuration, because I recreate machines pretty frequently','Y','','Y','Y','','','','Declarative system configuration','Rollback','','The same things I\'d change about Nix as a language','Probably Arch','','','','Y','','','','','','','XMonad','','',''),(333,'1980-01-01 00:00:00',5,'en','1636217458','A5','A3','male','','Y','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','painless rollback','isolated declarative build/dev environments','declarative system configuration','types','silverblue. cry a lot','','','','Y','','','','','','','','','','','cabal2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','','Y','Y','','','','','','','','','Y','','','','','','','','','','xmonad','nix-direnv','',''),(334,'1980-01-01 00:00:00',5,'en','85539407','A4','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Came from Arch, found the story of \"you cannot irrevocably screw up your system\" compelling','','','','','','','Y','','','','','','','','Y','','','Y','','Declarative system configuration','Reproducibility / \"it just works\"','Share dependency pinning with other developers','The lang2nix story is horribly underdeveloped. I don\'t run Haskell, my company mostly builds Scala, but even poetry2nix worked on a NixOS machine but not on Darwin. nix-shell is a great starting point, but if I can\'t use nix to build the services, then I can\'t use Nix to build a container around it either, or think about using NixOps to run the service in production, etc.\r\n\r\nNot the Nixpkgs manual, which is a reference, not a tutorial. Not GitHub READMEs. Focus on the persona of a developer using a top 5 language on StackOverflow. For example, imagine a developer who builds a NodeJS project with TypeScript. It\'s well known that the JS ecosystem build systems are horrible, so maybe I\'m looking at Nix as an alternative. How do I get started? What friendly resource tells me what to do to get my project built with Nix? How does Nix help me run my service in production? Today, that resource does not exist. The developer experience (DX) needs a lot of work.','Maybe Guix?','','','','','','','','','','','','','','','','','','','','N','I tried, but basically, I had no idea what the hell I was doing. Something wasn\'t building right and I ran out of patience to try and get it to work, so I abandoned it.\r\n\r\nI understand enough about Nixpkgs to understand that the various functions exist to drastically (90+%) reduce the amount of code in what is already one of the largest repositories on GitHub. At the same time, the documentation is nowhere near complete. For example, I was trying to update a Go package, and the dependencies changed, so the hash of the dependencies needed to change. The documentation tells me that it\'s the hash of the dependencies but doesn\'t tell me how to get that hash. Eventually I gave up trying to find the hash and just downloaded the statically linked binary from the vendor\'s site.\r\n\r\nThere should be some way for a PR to be labeled as \"hi I\'m a newbie, I need some help\" so that the PR can be reviewed by someone who can help answer questions and build up the confidence of new contributors','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Found the \"you cannot screw up your system\" story compelling (coming from Arch).','Y','','','','','','','Declarative system configuration','Choose the system configuration from the GRUB boot list','Save system configuration in private GitHub repository for backing up','home-manager should be an official tool, integrate it better with NixOS. I am the only user on my laptop. When I do nixos-rebuild, it should rebuild my home too.','Maybe Guix?','Y','','','','','','','Y','','','','home-manager','NixOps\r\nBuilding containers / services with Nix',''),(335,NULL,1,'en','1512426867','A2','A3','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','Y','OpenBSD','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(336,NULL,1,'en','259769780','A2','A4','male','','','','','','','Y','Y','','','','','','Y','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(337,'1980-01-01 00:00:00',5,'en','947583608','A2','A3','male','','Y','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was looking for an alternative to build docker containers instead of using Dockerfiles','Y','','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Pinning all kinds of dependencies','Having a clean build sandbox to run shell scripts in','','Improve evaluation time and memory usage. Improve build sandbox instantiation time and allow to create text files with dependencies without having to create a nix sandbox.','bazel?','','','','Y','Y','','','Y','Y','','Y','','Y','','dream2nix','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was looking for an alternative to my LXC server setup. I installed nix and later switched to NixOS completely after finding about native zfs support in NixOS.','Y','Y','Y','Y','','Y','','Easiest and fastest configuration management','Well maintained nixos modules for everything','The module system','Modules should not be all imported at once. C++ implementation of the module system to improve performance.','archlinux','Y','','','','','Y','','Y','','','sway','cachix\r\nnix-update\r\nnixpkgs-review\r\nnixos-shell\r\nnixos-generators\r\n','',''),(338,NULL,NULL,'en','513806780',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(339,'1980-01-01 00:00:00',5,'en','1342457709','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The appeal of reproducibility and development shells I could share with my team. ','','Y','','','Y','','Y','','Y','','','','','','Y','Y','Y','Y','','Reproducibility ','Ease of packaging software ','User experience ','Better support for the JVM ecosystem (Java, Scala, Clojure, etc) such as management of internal dependencies and use Nix as a build tool. ','I\'d be lost... Probably Guix. ','','','','Y','Y','','','','','','Y','','','','cabal2nix, dconf2nix, elm2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It was the natural transition after using Nixpkgs for a while. ','Y','','Y','','','','','Reproducibility ','Rollbacks','ISO Generation ','User-friendly installation process (e.g. UI wizard as Ubuntu and other OSS) ','Some flavor of Debian','Y','','','','','','','','','','XMonad','nix-direnv','lorri',''),(340,'1980-01-01 00:00:00',5,'en','1003207674','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','nix-direnv','',''),(341,'1980-01-01 00:00:00',5,'en','448653376','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','The radical idea seemed interesting at the time','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Atomicity','Pinning','Binary cache','','Guix','','','','','Y','','','','Y','','Y','','','','Cabal2nix','Y','Y','','','N','I do the occasional issue and pull request, but otherwise it\'s so complete and stable that there are no low hanging fruit','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','The idea seemed interesting','Y','Y','Y','Y','','','','Atomicity','Pinning','Binary cache','','Guix','Y','','','','','','crops','','','','xmonad','Home-manager\r\nNix-du','',''),(342,NULL,NULL,'en','1471856258',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(343,'1980-01-01 00:00:00',5,'en','1901250200','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','My interest got piqued after getting tired of software updates breaking other software in unforeseen/uncontrollable ways (like changing libc version).\r\n\r\nSo a year or so ago I started out with NixOS on a laptop. Back in October I got to install it on my server. Thereafter followed learning Nix flakes and converting the rest of my laptops/desktops/servers to flaked NixOS/home-manager. ','','Y','','','','','Y','','Y','Y','','','','','Y','','','Y','','Hermetically sealed software/versions. ','Fully declarative/versionable OS/OS settings. (This also applies to home-manager, albeit to a lesser extent). ','The ability to configure whatever you\'d want. ','More documentation aimed at lowering barrier of entry, such like this PR: doc: https://github.com/NixOS/nixpkgs/pull/145011','Dotfiles of some sort/flavor','','','','Y','Y','','','','','','','','','','https://github.com/nix-community/naersk and derivatives\r\nhttps://github.com/nix-community/poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','See the nixpkgs story ','Y','','Y','','','','','See the nixpkgs answers','See the nixpkgs answers','See the nixpkgs answers','See the nixpkgs answers','Dunno tbh. ','','','','Y','','','','','','','Sway ','','NixOS for Raspberry Pi',''),(344,'1980-01-01 00:00:00',5,'en','1233220982','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','Y','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Nix plus direnv = easily synced dev environments','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Reproducible declarative environments','Can add/modify packages easily','Rollbacks','Replace language with something strongly typed.','Docker probably','','','','Y','Y','','','','','','','','','','Cabal2nix','Y','Y','','','N','I don\'t understand the architecture and what is actually wante.d in the repo(vs just my personal additions)\r\n\r\nI have no idea what level of testing is expected\r\n\r\nI\'m having a hard time generalizing my additions so they\'re not specific to me.\r\nWhen I get errors from the depths of nixpkgs i usually give up or randomly change things until it works.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Wanted declarative home server config','','','Y','','','','','Declarative system config','Rollbacks','','Better did how different settings fit together. Individual die are good, but it\'s hard to grasp the bigger picture sometimes','Debian with Ansible or maybe puppet','','','','','','','Scp && ssh nixos-rebuild switch','','','','None','Home-manager, lorri','Flakes, because I didn\'t understand how they worked, but I\'m looking into them again now.','Nix should quit on ctrl-c (this should go to a github issue though)'),(345,NULL,1,'en','840122367','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(346,NULL,3,'en','126042295','A5','A2','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(347,NULL,1,'en','1755496467','A4','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(349,NULL,2,'en','639823323','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','The appeal of managing system configuration','','','','','','','Y','','Y','','','','','Y','Y','','','Y','','Declarative Systems','','','Integrate home-manager als an official NixOS Project','Guix, Containers/APT','','','','Y','Y','','Y','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(350,'1980-01-01 00:00:00',5,'en','775752917','A2','A2','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Declarative ','Easy to patch applications ','Support for Linux and macOS ','Fix Garbage collector, fix sigint response ','','','','','Y','Y','','Y','','Y','','Y','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','Declarative ','Transient (remove foreign files at boot)','Flakes','Fix ZFS broken tag for unstable kernel','Arch','Y','','','','','','','','','','','nixfmt \r\n','niv,',''),(351,'1980-01-01 00:00:00',5,'en','1261173554','A5','A3','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','To manage development environments between projects. Then to manage whole machines. I like the declarative nature of it.','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','Time and experience with nix','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted declarative system management and access to the latest versions of packages. The low barrier to entry to contributing to adding software that wasn\'t already included into nixpkgs or upgrade packages myself if need be was a big plus as well.','Y','','Y','','','','','','','','','Fedora or Arch','Y','','','','','','','','','','Sway','home-manager','lorri','Y\'all are going great work, thank you to everyone who contributes!'),(352,'1980-01-01 00:00:00',5,'en','310398828','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started to have a Linux and a mac but wanted to keep the configuration the same for my terminal. Nix seemed a nice solution for that ','Y','','','','','','Y','Y','','','','','','','Y','Y','','','','Nix shell','Flake files ','Home manager','Easier user experience \r\nNix shell should not fetch the tarball all the time','Custom script’s ','','','','Y','Y','','','','','','Y','','','','Yarn2nix\r\nElm2nix','Y','Y','','','N','Company policy ','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I wanted to setup a small server on the internet. Nixos makes this a bit too easy','Y','','Y','','','','','','','','','','','','','','','Y','','','Y','','','','',''),(353,NULL,1,'en','635890772','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(354,NULL,NULL,'en','765378651',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(355,NULL,3,'en','5302188','A5','A2','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','','','','Y','','','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(356,'1980-01-01 00:00:00',5,'en','245804897','A5','A4','-oth-','It\'s complicated (femme)','','','','','','','','','','','','','','','','','','','','','','','','Privacy consultant','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I heard about it through friends in academic circles, and it was immediately obvious that its approach is the future. So I wanted to learn as much about it as I can, and the best way to do that is by using it.','','','','','Y','','Y','','Y','Y','Y','Y','','','Y','Y','Y','Y','','Hermetic builds.','Pure-functional language.','Command-line interface.','I\'m very conflicted about the \"with\" construct, which serves an important purpose but makes it harder for both humans and hypothetical static analysis tools to follow symbol references.','Debian. Or maybe guix.','','','','Y','','','','','','','','','','','crate2nix https://github.com/kolloch/crate2nix/\r\n\r\nnode2nix (I think it\'s in nixpkgs?)','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same reasons as Nix. Can\'t remember any more details.','Y','','Y','Y','Y','Y','','Declarative, system-wide configuration.','One-stop shopping in the nixpkgs repo code for anything I want to know about how low-level aspects of the system are implemented.','Full control over where package definitions and other code are sourced from and how they\'re updated.','I still don\'t understand flakes.','Probably Debian, or guix. (Same answer as for Nix.)','Y','','','','','Y','','','','','i3wm','nix-shell is great! I use it constantly. Also lorri.','I tried the experimental new unified \"nix\" command a few times but at the time, it didn\'t give me a way to get all the debug messages for failed builds that I\'m used to with nix-build, so I stopped.','A proper, comprehensive demographics section would be amazing in future iterations of this survey. Questions about culture and inclusivity would also be very welcome.'),(357,NULL,NULL,'en','1805809212',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(358,'1980-01-01 00:00:00',5,'en','1507415376','A5','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(359,'1980-01-01 00:00:00',5,'en','1489573461','A2','A4','male','','Y','','','','Y','Y','','Y','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','New notebook, a conference and a person willing to teach','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','Sandboxing','Reproducibility','','Better support for IFD','ArchLinux + Salt stack + Scripts','Y','','','Y','Y','','Y','','','','','','','Drone','Npmlock, ','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A new notebook, a conference and a person willing to teach','Y','Y','Y','Y','','Y','','Modules','Type checks','Abstractions and reusability','','ArchLinux + Saltstack','','','Y','','','','','','','','I3wm','Nix-diff, niv','Nixops',''),(360,NULL,4,'en','1407963788','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','Heard about it from Haskell people. Loved the abstract vision for how computer dependencies _could_ be managed (in theory)','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Declaratively manage whether a tool/library is some project\'s $PATH','Access bleeding edge package versions in multiple ecosystems','Apply local patches to system packages in a declarative way.','Remove nix-env. Magic caching for nix-builds (annoying to wait for a full package source build and get a compiler error). ','Docker','','','','','','','','','','','Y','','','','','','','','','Y',NULL,'N','Y',NULL,'1. Disk scratching noises on my laptop (think it was ssd twitching or some driver issue.\r\n\r\n2. NixOS doesn\'t help manage the big programs on my laptop (kde, firefox/thunderbird, spacemacs, gimp, etc). \r\n\r\n3. I can get the features using the Nix tool on a simpler stable KUbuntu instance. \r\n','When I setup my homeserver / private-servers I\'ll try to use nixos. Makes more sense for the daemons and mostly console UI. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','niv, python2nix, haskell2nix, rust2nix, yarn2nix, etc.\r\n\r\nI found it more conveineint for small projects to use nix to import the language package manager and then build the project. ',NULL),(361,NULL,1,'en','182549587','A2','A4','male','','Y','','','','','','','','','','','','','Y','','','','','','Y','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(362,'1980-01-01 00:00:00',5,'en','752644738','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','','','Y','','Y','','','Y','Y','','Y','','','','','Y','','','Y','','Declarative development environment (not covered with nix flakes)','Declarative server configuration with rollback (in case)','Fast CI caching of builds (kind of - it\'s getting harder with nix flakes as it\'s going kind of too pure)','Coupling nix flakes to Git.','Alpine Linux + Bash only','','','','Y','Y','','','','Y','','','','','','None of them - this approach is too much for my taste.','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Rollbacks','','','','Y','','','','Declarative server configuration','Rollback','','Make it slimmer.','Alpine Linux','Y','','','','','','','','','','','','','Keep going. It\'s cool. Thx.'),(363,'1980-01-01 00:00:00',5,'en','543314804','A5','A3','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','','','','','Y','','','','','','','Y','Y','','','','','Composing dotfiles for different machines','Easily trying software','','I would improve the CLI so it\'s much easier to know what to do.','','','','','','','','','','','','','','','','','','','','','N','I struggle with the language','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','Y','','','','','','','','','','','','','','','','','','','','DWM','','',''),(364,'1980-01-01 00:00:00',5,'en','15799624','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started out for personal usage out of growing interest on Lobste.rs and HN. I didn\'t have a good dotfiles solution at the time. I started out with nix-darwin / home-manager and grew my configuration to replace pretty much all of my dotfiles and Homebrew installations.\r\n\r\nLater started introducing NixOS for my own cloud VM, and an open-source project a volunteer for. (portier.io)\r\n\r\nLater started using it at work, where we run a lot of per-client servers. These are small, isolated installations that don\'t benefit from e.g. Kubernetes or Nomad. We switched these from Debian to NixOS at my direction, and manage them using Terraform plus some in-house tooling.\r\n\r\nNote that, for work, we still use Docker for actual application deployments. The barrier to entry is simply a lot lower for my coworkers.','Y','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Declarative configuration','Deterministic builds','Nixpkgs','A very low barrier to entry. Outside of NixOS, the Nix installer works well but is invasive. I feel like I cannot really tell others to just try it, when it makes a whole bunch of changes to system configuration that many developers don\'t even understand the impact of. For myself, running it the first time felt like a gamble.','Docker for deployments, Debian plus some scripts for management, Ansible for automating deployments. (Kind of what it looks like now when we have to interact with non-NixOS stuff.)','','','','Y','Y','','','','','','Y','','','','I use two that are my own creation:\r\n- https://github.com/stephank/yarn-plugin-nixify\r\n- https://github.com/stephank/composer-plugin-nixify\r\n\r\nAlso working on a third, but that\'s not yet mature:\r\n- https://github.com/stephank/yarn-nixpkgs','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Needed a better way to manage systems than Debian plus some scripts.','','','Y','Y','','','','Declarative configuration','Automated upgrades that I can integrate into my application deployments','The best systemd integration in any distribution','Some sort of configuration diff viewer, so it\'s clearer what will happen before switching to a new configuration.','Probably still Debian plus some scripts.','','','','','','Y','','','','','','nix-darwin & home-manager for my main machine','Nixops. We needed something that\'d integrate with Terraform, plus something our team could work on, not all of who have Nix installed. So we use a homegrown tool instead. (May try to open-source it at some point, but time is limited.)',''),(365,'1980-01-01 00:00:00',5,'en','202393956','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','Was frustrated with python packaging and wanted to build something similar to Nix. Luckily I can across Nix.','Y','','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Reproducibility','One tool instead of many tools for packaging / building your project','','Rewrite Nix in Rust\r\nImprove the Nix installer\r\nReorganize documentation\r\nFinish flakes :)\r\nMake it work on Windows native instead of via WSL','Docker and VMs I guess','','Y','','Y','Y','','Y','','Y','','Y','Y','Y','','poetry2nix\r\nsbt2nix\r\nnpmlock2nix\r\nyarn2nix\r\nclj2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was using Nix on OSX at the time and once I see how nice it is to manage whole system via Nix I couldn\'t resist but to give it a try.','Y','Y','Y','Y','','Y','','Declarative specification of your system','Testability of my system','Easy to share parts of my config','Have more active security team\r\nHave a subset of high quality services\r\nTutorial based documentation','Probably Arch or Gentoo. Might also end up on BSD ','Y','Y','Y','','','Y','','','','','i3','','disnix',''),(366,NULL,1,'en','123417562','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(367,NULL,NULL,'en','316782956',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(368,NULL,NULL,'en','637363137',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(369,'1980-01-01 00:00:00',5,'en','2105874776','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Wanted to have a clean home server setup. Was a great experience, so I switched to it on nearly all devices.','','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','Reproducibility','Modularity ','Ability to share configs','Removing nix-env. It commonly causes confusion and does not help new users.','Ansible','','','','Y','Y','','','','Y','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Wanted to use nix, didn\'t know the difference and disliked the idea of having multiple package manager on one system. For the rest, see \"WHT did you start using nix\"','Y','','Y','','','Y','','','','','','','','','','','Y','','','','Y','','xmonad','Tow-boot\r\nHome-Manager\r\n','',''),(370,NULL,NULL,'en','76707621',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(371,NULL,1,'en','963136017','A2','A2','male','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(372,'1980-01-01 00:00:00',5,'en','312800733','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','N','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(373,'1980-01-01 00:00:00',5,'en','1814977609','A2','A2','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I went down the functional rabbit hole :).','','Y','','','Y','','Y','Y','Y','','','Y','','Y','Y','Y','Y','Y','','Declarative system management','Rollbacks','The Nix DSL','I\'d make the daemon more language agnostic. So that it\'d be easier for other languages to use/build on Nix.','Guix ;) I took the functional pill, can\'t go back now.','','','','Y','Y','','Y','','Y','Y','Y','','','','https://github.com/nix-community/dream2nix\r\nhttps://github.com/nix-community/poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got tired of machines breaking on me when I was experimenting with them. Came across NixOS and ot seems to scratch that itch.','Y','Y','Y','','','Y','','The community, just amazing','The declarative nature of it','The Nix DSL','The Nix DSL, and make the daemon accept something more generalized. Like in the previous answer','Guix-SD ;)','Y','','','','','','','Y','','','','home-manager\r\nThe emacs community overlay\r\nnixos-hardware','None as far as I can remember','Keep up the amazing work! :)'),(374,'1980-01-01 00:00:00',5,'en','120512319','A1','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Saw Mitchell Hashimoto from Hashicorp tweet about using nixos vm on Mac.\r\n\r\nNew job had Mac instead of Linux so thought perfect to try. \r\nPorted dotfiles and never looked back. Converted Ubuntu and other machines to nixos.','','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Declarative','Flakes for composition','Open source','Make flakes first class. \r\n\r\nProvide patterns/ examples on usage, overrides, secrets, etc','Make and shell scripts','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','N','Haven\'t found need to yet but getting familiar with structure and feel could bump or contribute if want. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Saw Mitchell Hashimoto from Hashicorp tweet about nixos vm on Mac. ','Y','','Y','','','','','Declarative','Flakes for composition','Open source','Flakes first class','Ubuntu','Y','','','','','','','','','','I3','','','Brilliant thank you'),(375,NULL,NULL,'en','758603827',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(376,NULL,1,'en','1635673857','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(377,'1980-01-01 00:00:00',5,'en','1310428265','A3','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','To create dev envs for Haskell and for work.','','Y','','','','','Y','Y','','','','','','','Y','Y','','Y','','Repro system configuration','dotfile management','reproducible and cached development shells','I dont know enough to answer','dotfiles and apt-based OSs.','','','','','','','','','','','Y','','','','cabal, node, purescript (dont know if it counts)','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','To learn more nix and try home-manager.','Y','','','','','','','rollbacks','declarative system config','','','Debian GNU/Linux','Y','','','','','','','Y','','','','haskell.nix','',''),(378,'1980-01-01 00:00:00',5,'en','1409431466','A1','A5','male','','','','','','Y','Y','','','','Y','','','Y','','','','','','','','','','','','Y','','','','','','N','Y',NULL,'I coukd never get it properly working on OSX in an easy fashion - and didn\'t have the time to explore further at the time.','Portable nix is looking nice - but afaik doesn\'t work on macOs yet',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(379,'1980-01-01 00:00:00',5,'en','1710462428','A2','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Curiosity and the will to make a deep dive into functional programming.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','Universal package management','Nix language ','Ease of use','I would definitely rewrite the naming of some terms, and the documentation. What are the difference between nix shell and nix develop ? I would make plenty of real use case examples on how to use the Nix programming language, with proper explanations. In order to make adoption of nixos, I would create a basic UI installer as well.','Gentoo','','','','Y','Y','','','','','','Y','','','','composer2nix','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I wanted to learn FP and learn something else than Gentoo.','Y','','Y','','','','','Reproductibility ','Stability','Ease of use','Enable flake by default and provide a UI for installation!','Gentoo','Y','','','','','','','','Y','','','','','Thanks for making Nix ecosystem so great ! I\'m Pol Dellaiera and trying to push it for adoption at European Commission. It\'s hard to make the lines moving !'),(380,'1980-01-01 00:00:00',5,'en','2136485041','A1','A2','male','','Y','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking for solution to dependency hell at the time I used Arch Linux. Then came across Lethalman post about NixOS. I research at first, then learning the language, then start installing it into my machine using YouTube guide. I succeed and fascinated with the ','Y','','','','','','Y','','','','','','','Y','Y','Y','','','','Nix shell development isolation, both for simple \"run the app from source\" or \"full scale development\"','Python virtual env shell','Flake','- Content addressable perfect implementation, so that we can start \"download\" package like debian and rpm do.\r\n- Packages automatic discovery from build system.\r\n- Good compiler error reports and tracing like in Rust compiler.\r\n- Package \"API\" for deep integration to pip, cargo, stack, gnome software, etc.','Docker (?) but it\'s not quite solving dependency hell.','','Y','','Y','','','Y','','','','','','','','- Mach Nix (Python) - https://github.com/DavHau/mach-nix\r\n- NPM2nix - https://github.com/svanderburg/node2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same as Nix.','Y','','Y','','','','','Declarative machine definition (I git-ed my machines definition and very fast recover my machine when something when wrong with all feature intact)','Overlay to patch app','Unstable channel to test latest version','- Tools to install package from .deb / .rpm / .flathub / etc, but still in declarative manner.','Arch Linux with many tweaks','Y','','','','','','','Y','','','Pantheon','- Mach Nix\r\n- Lorri','- Flake, it is too complex and I\'m still satisfied with Nix shell','NixOS is a game changer for me. But it still rather hard to install NixOS from scratch.'),(381,NULL,NULL,'en','952410941',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(382,'1980-01-01 00:00:00',5,'en','1743380334','A5','A3','male','','','Y','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was unable to keep up with completely insane Debian packaging. I was maintaining 70 forked packages with the patches I needed, and it was extremely cumbersome compared to rebasing patches on top of nixpkgs.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','Being able to patch anything easily','Being able to rebuild everything in a standardized way','','Make it run a little faster & add a feature to automatically update the sha256 = .\r\n\r\nMake ca-derivations actually work properly when upgrading existing systems to it & fix https://github.com/NixOS/nix/issues/4493','I honestly don\'t want to think about it. Maybe an OpenSUSE or Gentoo or something else that I can completely rebuild from source','','','','Y','','','Y','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wrote a whole configuration management system for Debian and I was patching and rebuilding 70 Debian packages. I eventually realized that NixOS would do all of that better and with a superior configuration management system.','Y','Y','Y','Y','','','','','','','','','Y','','Y','','','','','','','','','','','It would be nice to be able to produce Go and Rust binaries outside nixpkgs and not have them break when the old libc gets GCed'),(383,NULL,NULL,'en','745281088',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(384,NULL,NULL,'en','1769591875',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(385,NULL,NULL,'en','968383254',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(386,NULL,1,'en','1442857194','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(387,NULL,NULL,'en','1838897823',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(388,'1980-01-01 00:00:00',5,'en','1584839663','A2','A4','-oth-','Non-binary ','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','','Y','Y','','','','','Y','Y','Y','Y','','','','','Types ','Guix???','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','Y','','','','','Still types.','','Y','','','','','','','','','','bspwm ','','morph, nixops',''),(389,NULL,2,'en','93189617','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Y','','','Y','','','','','','','Y','Y','','Nixos - declarative system configuration','','','','Probably some config management tool (Ansible, Saltstack).','','','','','','','','','','','','','','','','','','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(390,'1980-01-01 00:00:00',5,'en','1622711386','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','all time time!','A3','I\'ve started new job and, having had to clone my current setup (Ubuntu, back them) onto work machine, I\'ve started to look at options that could make it easier.','','Y','','','','','Y','','Y','Y','','','','Y','','Y','Y','Y','','nixpkgs is a fantastic source of packages, basically 99% of my stuff is installed & kept up-to-date thanks to it','Ability to `nix-build` / `nix build` on a remote machine (e.g. I usually re-build my NixOS on a home server, since it\'s faster than my laptop -- and compiling Emacs from sources takes a while!)','I like Nix Flakes - they make managing dependencies way easier than it used to be','I\'d add more documentation (although I understand it costs a lot to develop a good one); lacking docs have been the top-one source of frustration across my friends who had the opportunity to use Nix.','Carefully crafted selection of bash scripts and rsync tricks; maybe Ansible or a similar technology.','','','','Y','Y','','','','','','','','','','Question took a while to understand! As a Rust developer, I\'m using https://github.com/nix-community/naersk','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as with Nix itself - I wanted to have a reproducible home <-> work environment','Y','','Y','','','','','nixos-rebuild switch','systemd management','nixos-containers','','Ubuntu, most likely','Y','','','','','','','','','','Sway','home-manager','NixOps (feels to contrived for my relatively simple home-server setup + I\'m not totally sold on the state file idea it uses)','Have a great day & take care!'),(391,NULL,2,'en','1804653384','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','Y','','','','','','','Y','','','','','','Y','','','Y','','Declarative system configuration','Simple testing of new packages','','','Ansible on debian, VMs/containers','','','','','','','','','','','','','','','','','','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(392,'1980-01-01 00:00:00',5,'en','87971258','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','','N','N','Great GUI to manage everything',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Great GUI to manage everything',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Fedora silverblue (kinoite)','',''),(393,'1980-01-01 00:00:00',5,'en','1734474783','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Hacker News blog posts about how great it is (I forget which)','Y','','','','','','Y','','','','','','','','Y','Y','','','','Packages don\'t trample over each other','\"Instant\" shell configurations with the right packages in','The speed at which people incorporate updates into nixpkgs','\"Dynamically-typed and lazy\" combines LISP\'s static analysability with Haskell\'s debuggability, it\'s a uniquely painful combination','Homebrew','','','','Y','Y','','','','','','','','','','','Y','','','','Y',NULL,'N','Y',NULL,'Ran out of personal time for the project I was using it for, it\'s not NixOS\'s fault','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-darwin, home-manager','',''),(394,'1980-01-01 00:00:00',5,'en','19362495','A2','A3','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','Y','','Reproducibility ','Rollbacks ','Isolation ','Nix expression language ','docker','','','','Y','Y','','','','Y','','','','','','poetry2nix\r\nnpm2nix','','Y','','','N','Don\'t know how, the overhead to get started seems massive ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','Rollbacks','Reproducibility via flake support','Nixpkgs are huge and well maintained ','I would improve wayland support ','Debian or arch','Y','','','','','','','Y','','','','Mach-nix\r\nRnix-lsp','',''),(395,'1980-01-01 00:00:00',5,'en','998177306','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','Y','','','','','','','Y','','','','','','','','','the mess','','','','','','','','','','','','','','','','','','','','','Y',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(396,'1980-01-01 00:00:00',5,'en','2022573080','A1','A4','male','','','','','','','Y','','Y','Y','Y','','Y','','','','Y','','','','','','','Y','','Y','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because we didn\'t want to have to deal with Windows in CI.','Y','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Development environment provisioning','Declarative system management','Barely acceptable CI solution','- Fix the interpreter, make `nix` fast.\r\n- Have high quality profiling/analysis tools.\r\n- Drop Perl from Hydra.','Not computers.','','','','Y','Y','','Y','','Y','','Y','','','','iohk\'s haskell.nix (with nix-tools); serokell\'s npm-build-package; naersk','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Needed to provision servers, did not want to deal with debian or similar stateful systems.','','Y','Y','Y','','Y','','Describe the system; ignore the hardware.','','','It works for me.','macOS','','Y','','','Y','','','','','','','It\'s not really a project/product, but I use nix\'s cross compilation facilities extensively.','Nix built in solutions for\r\n- haskell (packages.haskell.*)\r\n- nodejs (mkYarnPackage)',''),(397,'1980-01-01 00:00:00',5,'en','1989471622','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Arch + GNU Stow got boring','','Y','','','','','Y','','Y','','','','Recreational PC','','Y','','','Y','','Declarative system configuration','Streamlined interface to all my settings','Packaging is just bash on steroids','Add a simple way to run applications that want a standard environment (like steam) in a less hacky way.\r\nAdd Julia packaging (like python).','Probably still arch + gnu stow and debian for servers (maybe guix but this wouldn\'t exist then, too)','','','','Y','Y','','','','','','','','','','I tried julia2nix https://github.com/codedownio/julia2nix , but it didn\'t work as I wanted so I manually did what I needed','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Just for fun','Y','','Y','','','','','Same as nix','','','again, same as nix: Julia packaging and a compatibility layer/runtime for applications expecting the standard filesystem layout (like steamruntime but more reliable)','Arch + GNU Stow','Y','','','','','','','Y','','','','digga, home-manager, nvfetcher, emacs-overlay, nixos-mailserver, nix-matrix-appservices','','The documentation could be a bit more concise and easier accessible offline. \r\nI.e. without grepping nixpkgs.'),(398,NULL,1,'en','1092213727','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(399,NULL,2,'en','953852792','A2','A3','-oth-','enby ','Y','','','','Y','Y','','','','','','','Y','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because the elegance of the concepts filled me with joy.','','Y','','','','','Y','Y','Y','','','Y','','','Y','Y','','Y','','repeatability ','auditability','dev shells','make evaluation at least 10x faster ','maybe some kind of terraform / packer style solution. ','','','','Y','Y','','','','','','Y','','','','cabal2nix','','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(400,NULL,2,'en','186750564','A2','A4','male','','','','Y','','','Y','','','Y','Y','','','','Y','Y','','Y','','Y','','','','','','','Y','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','','Y','','','Y','','Declarative system configuration/management','Declarative development environments','Huge number of available packages in nixpkgs','','Arch Lunix and OpenBSD','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(401,'1980-01-01 00:00:00',5,'en','732986655','A2','A4','male','','','','','Y','Y','Y','','Y','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Needed reproducible dev environments and got tired of the pseudo-reproducibility of docker.','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Reproducibility ','Unified dependency management ','','Rebuild nixpkgs from scratch to to lessen the amount of undocumented bash magic that makes the level of entry high.','Probably docker or some kind of containers ','','','','','Y','','','','Y','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','Configuration as code','Reproducibility ','','','Probably any Linux distribution and a combination of terraform/ansible ','Y','Y','','','','','','','','','xmonad','home-manager, lorri ','deploy-rs','I think there’s a strong lack of documentation on how nixpkgs is built up. All the abstractions used by it, all the magic environment variables set and used by builders and so on.'),(402,NULL,1,'en','1328423619','A2','A2','male','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(403,NULL,1,'en','2031191999','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(404,'1980-01-01 00:00:00',5,'en','679643388','A5','A3','male','','','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','','','','','','','Y','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','1. nix-shell provides a way to reliably build projects from source, and get helpful compile errors in build scripts that indicate environmental dependencies. This helps when working on the build script for an open source project to be portable even to *non* linux platforms.\r\n2. nixpkgs has multiple versions of things, making more packages readily available, and again helping open source projects build from source using the exact desired version\r\n3. provided me a mostly painless way to configure my linux system only once and then keep reusing my config','','Y','','','','','Y','','Y','','','','my main email server','','Y','','','Y','','nix-shell','/etc/nixos/configuration.nix','a nixpkgs policy that is less strict than Debian Free Software Guidelines, allowing multiple versions of stuff and not having rules about vendoring and packages that are too small, etc. For example packaging a node.js application is trivial on nixpkgs but near impossible with debian.','I would change the nix language to be a more mainstream language. The syntax and semantics are unintelligible to me. I have survived only by sloppily copying working examples from other people and then very delicately modifying them.','Debian','','','','','','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I already answered this question','Y','','Y','','','','main email server','I already answered this','','','I already answered this','I already answered this','Y','','','','','','','','','Y','','','','I\'m happy with nixos and I have no intention to switch away any time soon.'),(405,'1980-01-01 00:00:00',5,'en','764543078','A4','A2','fem','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','','','','','Y','','','N','Y',NULL,'I was using it as a daily driver and almost every update needed webkit/webkit2gtk to be compiled except my laptop gives OOM in the process (16GiB RAM if it helps)','Binary availability without being obsolete instantly?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I was using it as a daily driver and almost every update needed webkit/webkit2gtk to be compiled except my laptop gives OOM in the process (16GiB RAM if it helps)','Binary cache availability without being obsolete instantly',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Flakes','Hydra',''),(406,'1980-01-01 00:00:00',5,'en','1584903609','A1','A2','fem','','','','','','','','','','','','','','','','','','','','','','','','','Pentester/security consultant','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','','','','Massive performance improvements to evaluation, especially of multiple NixOS machine closures.','','','','','','','','Y','','','','','','','','crate2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','','','','A way to get PRs into nixpkgs without them getting overlooked and ignored - perhaps a smoother process for fully automated package updates to reduce merger workload','','','Y','','','','','','','Y','','i3','niv ','flakes - i really don’t like the direction they’re taking the ecosystem, and wish they had gone through an RFC process instead of being snuck in :(',''),(407,NULL,2,'en','1783913968','A2','A2','male','','','','','','','','','','Y','','Y','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I have 3 computers. It was annoying to set up every change separately 3 times.','','','','','','','Y','','Y','','','','','','','','','Y','','repeatability ','','','Better documentation. It\'s very hard for me to package applications. And it\'s the most annoying thing.','Arch Linux','','','','','','','Y','','','','','','','','','Y','','','','N','It\'s hard to package an applications. I would happily do it, but there is a lack of tutorials. There are a few, but if you encounter anything different, then you are out of luck.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(408,'1980-01-01 00:00:00',5,'en','1556783284','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was distrohopping and ended up on NixOS; I liked it but decided it wasn\'t for me. Then I installed Nix on another distro and now I use NixOS on all my machines.','','Y','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','Declarive package management','Virtual environments ','Flakes','A dedicated flake output for Home Manager.','Flatoack or appimages, and direnv','Y','Y','','Y','Y','','','','','','Y','','','','node2nix, yarn2nix both in nixpkgs','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','','','','Centralised, declarative configuration','Reproducibility','Rollbacks','','Fedora silverblue','Y','','','','','','','','Y','','Swaywm','Home Manager, nix-direnv, sops-nix, NUR','','You\'re great, thank you.'),(409,NULL,1,'en','407469568','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(410,'1980-01-01 00:00:00',5,'en','646746951','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Security Analyst','','Y','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Because of the different approach to package management.','','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','','Y','','Package and service management','Configuration management','','Replace the language which something that this is easier to approach.','Don\'t know.','','','','','','','Y','','','','','','','','None','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','','','','','','','Y','','','','','Y','','Y','','','','','',''),(411,NULL,1,'en','776549153','A2','A3','male','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(412,NULL,NULL,'en','324156692',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(413,'1980-01-01 00:00:00',5,'en','1503126153','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I learned Nix because we were using at work. I now use it everywhere. It still has rough edges, but it\'s better than the alternative. ','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','','','','','','','','','','','Y','','','','Y','','','','cabal2nix https://github.com/NixOS/cabal2nix\r\ncrate2nix https://github.com/kolloch/crate2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','At work, we use NixOS for our CI machine (to run hydra and other services), it is quite impressive how the configuration can be stored in a repo which makes it possible to use our usual workflows (CI, PRs, PR reviews...).\r\n\r\nI also wanted to see what it was like to use Nix to manage everything on my personal laptop. Overall, I\'m quite happy with the approach, to the extent that I started using home-manager on both my NixOS and non NixOS machines to manage all my user software.','Y','Y','','','','','','','','','','Some stable Linux distro with home-manager to manage my software.','Y','','','','','','nix-deploy','','Y','','','home-manager','lorri\r\n',''),(414,NULL,1,'en','510792458','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(415,'1980-01-01 00:00:00',5,'en','1186139670','A2','A5','male','','','Y','','','Y','Y','Y','','Y','Y','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','I started with guix, but I code in Haskell and the ecosystem was more mature in Nix : and here I am.','','Y','','Y','Y','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','declarative configuration','reproductability','composition','Change nix the language : it is very difficult to understand what\'s going on when reading a source file if you don\'t know the context.\r\n\r\nAnd few things in the language give context : the language is thus hard to learn','Guix','','','','Y','Y','','','','Y','','','','','','https://github.com/NixOS/cabal2nix','Y','Y','','','N','Lack of understanding ','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','I discovered the principle behind modules with home-manager on my debian laptop.\r\nThen a mini-project at work :\r\nThe nginx module and acme integration are fantastic\r\nI deployed a reverse proxy with lua code to do openid-connect authentication.\r\n\r\nFrom there, I am currently growing my knowledge of nix to write code of my own.','Y','','Y','Y','','','','modules','simply overwrite a given configuration','reproductability','Add basic possibility to reuse NixOS module in a docker container. \r\nRemove the heavy dependancy on systemd','Guix\r\npuppet/ansible and other similar tools','Y','Y','','','','','','Y','','','','nix-copy-clojure to quickly deploy from my laptop to a production server','','The community is quite engaging !'),(416,'1980-01-01 00:00:00',5,'en','1394540430','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted declarative and reprodicuble environment configuration','','Y','','','','','Y','','','','','','','','Y','','','Y','','Declarative configuration','Easy rollbacks','Sharing the configuration between machines','I would add a static type system ','Whatever package manager was in the distro I would end up using','','','','','Y','','','','','','','','','','','','Y','','','N','Haven\'t had a reason yet, but also I don\'t feel comfortable enough with Nix/Nixpkgs','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','I wanted declarative system configuration','Y','','','','','','','Declarative system configuration','Easy rollbacks','Sharing configuration between machines','Probably just better documentation or installer, so it gets more popular','No idea, I would probably distro hop a lot, fortunately I don\'t have too since I tried NixOS','Y','','','','','','','','','','i3','None','None','Thank you for Nix(OS), it\'s awesome :)'),(417,'1980-01-01 00:00:00',5,'en','2082063107','A2','A4','male','','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','N','N','If I would see the need for it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Declarative configuration','','','','Y','Y','','','Declarative configuration','Ability to switch back to previous configurations','','','Debian','','','','','','Y','','Y','','','','','','Great project, thank you!'),(418,'1980-01-01 00:00:00',5,'en','2021966805','A5','A2','male','','Y','','','','Y','','','','','','','','','Y','','','Y','','','','','Y','Y','','Y','Y','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','','','','','','','Y','Y','','','','','','','Y','Y','','','','','Delete everything that happened before flakes. The tooling from before then is just too confusing and I don\'t want it to exist.','Ubuntu','','','','','Y','','','','','','','','','','','','Y','','','N','Nothing really, it seems welcoming.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I wanted solid technical infrastructure, and Ansible / Puppet / etc seemed hacky at best. I think the right thing to do is actually generate config from some DSL, which nix does. Unfortunately, I ran into a lot of trouble with tooling, but I\'m too lazy to reinstall my OS so I just run my services in ubuntu in kvm / libvirt.','Y','','Y','Y','','','','','','','','','Y','','','','','','','Y','Y','','','','',''),(419,NULL,1,'en','1076532620','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(420,NULL,NULL,'en','1384701521',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(421,'1980-01-01 00:00:00',5,'en','1654355232','A2','','','','Y','','','Y','','Y','','','','','','','','','Y','','Y','','','Y','','','Y','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using NixOS because it matched my view of what an OS should be, pretty much immediately switched to it as my daily driver, going all the way into immutability by using a tmpfs root.\r\nUsing it to deploy machines online too.\r\nNever used Nix on its own.','','','','','','','Y','','Y','Y','','','','Y','Y','','Y','Y','','Hash-based dependencies management','Declarative configuration language','NixOS','','Would probably try guix.','','','','','','','','','','','','','','','','Y','','','','N','IIRC, went to submit some small pull request to fix some doc when I started, realized that there was an existing pull request fixing the same issue that was months old and still waiting. Felt like massive inertia.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using NixOS because it matched my view of what an OS should be, pretty much immediately switched to it as my daily driver, going all the way into immutability by using a tmpfs root.\r\nUsing it to deploy machines online too.','Y','','Y','Y','','','','Hash-based dependencies management, immutability','Declarative configuration language','Large depth of tools to tackle any problems, large package database.','Would make the creation of NixOS qcow disk images faster and the result much smaller.','Would try guix','Y','','','','','','terraform, ssh','','','','i3','','NixOPS, awesome tool, but was broken.','Thank you! NixOS is awesome.'),(422,NULL,1,'en','1996890906','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Network Technician Trainee','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(423,NULL,NULL,'en','2141955863',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(424,NULL,1,'en','549904145','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(425,'1980-01-01 00:00:00',5,'en','2026066725','A2','A5','male','','','','','','Y','Y','','','','','','','Y','','','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Curiosity. Then reproducibility and ease of use','Y','Y','','','','','Y','','','','','','','Y','Y','','','Y','','Reproducibility','Up-to-date versions (on nixpkgs--unstable)','','I would add dovumentation','','','','','','','','','','','','','','','','','Y','','','','N','Everything I need is already there','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Like Nix itself: First curiosity, then reproducibility and reliability. ','Y','','','','','','','Reproducibility','Reliability','Uo-to-date versions (nixos-unstable)','','Ubuntu + Ansible','Y','','','','','','','Y','','','Plain i3','home-manager ---- game changer! Keeps my environment aligned in macOS and Linux','','Thanks for making Nix/NixOS happen!'),(429,NULL,1,'en','1066062147','A2','A4','-oth-','non-binary','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(426,'1980-01-01 00:00:00',5,'en','237231761','A2','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','Y','','','','','','','Y','','','','Y','','Reproducibility','Atomic updates','Package choice','Using Dhall as the langage powering Nix','Guix','','','','Y','','','','','','','','','','','','','','','','N','Too early in the learning process','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','Declarative configuration','Atomic updates','Package choice','Automatic installer','Debian testing','Y','','','','','','','Y','','','','','',''),(427,'1980-01-01 00:00:00',5,'en','1385012794','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Infosec','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I saw Mitchellh ´s demonstration and ripped his config','Y','','','','','','Y','','','','','','','Y','Y','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','','I3','','',''),(428,'1980-01-01 00:00:00',5,'en','90830852','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','For configuration management mostly.','','Y','','','Y','','Y','','Y','','','','','','Y','','','Y','','nixpkgs','Flakes','Configuration management','Switch to Guile for the language.','Guix','','','','Y','Y','','','','Y','','Y','','','','poetry2nix\r\nyarn2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Configuration management and NixOps','','','Y','','','','','nixpkgs','Configuration management','Rollback','Switch to Guile for language','Debian','','Y','','','','','','','','','i3','','niv\r\nmorph',''),(430,NULL,NULL,'en','2044304190',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(434,'1980-01-01 00:00:00',5,'en','791713481','A1','A4','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','I never planned to, Like a lot of people was curious that everything in hackage had a nix package.\r\n\r\nI\'ve been a staunch debian user for 13years before that none of the distros where the same, gentoo had some appeal but compiling wasn\'t attractive.\r\n\r\nI tried it and never looked back. While nix(os) has its pain points I have definitely learned a lot more with the time I played with it.','Y','','','','','','Y','','Y','','Y','Y','','','Y','Y','','Y','','Reproducibility','Declarative','Open Source','Windows support. While I don\'t use windows personally, this will be a game changer\r\nFaster evaluation time\r\nLower memory footprint\r\nFirst class secrets support\r\nSELinux support\r\nFirst-class OpenGL/ssl/quirks on non-nixos\r\nExtendable nixos module system\r\nTerraform-ish imperative resources\r\nBetter nixops experience\r\nUnpopular opinion: lets not encourage flakes everywhere. home-manager nixpkgs nixos-hardware nur, its really messy just to setup my machine','Nothing. I don\'t think there is anything with level of vertical-integration we have.','','','','Y','','','Y','','','','','','','','cabal2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A6','','Y','Y','Y','','Y','Y','','Reproducibility','Declarative','Open Source','Windows support. While I don\'t use windows personally, this will be a game changer\r\nFaster evaluation time\r\nLower memory footprint\r\nFirst class secrets support\r\nSELinux support\r\nFirst-class OpenGL/ssl/quirks on non-nixos\r\nExtendable nixos module system\r\nTerraform-ish imperative resources\r\nBetter nixops experience\r\nUnpopular opinion: lets not encourage flakes everywhere. home-manager nixpkgs nixos-hardware nur, its really messy just to setup my machine','Nothing. I don\'t think there is anything with the level of vertical-integration we have.','Y','','','','Y','','','','','','xmonad','mobile-nixos','terrafomo RIP\r\nNixOps, I still have high hopes for this','Keep it up marketing team!'),(432,NULL,NULL,'en','641499862',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(433,'1980-01-01 00:00:00',5,'en','1559689485','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','Y','Y','','Android','N','N','I\'m not sure, change in leadership for Arch Linux?\r\n\r\nMy study at university is more important than what OS I use, most of the time my laptop is just a display for PDF\'s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','(didn\'t I already answer this question?)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none','none','the configuration files on nixos.org look confusing, I haven\'t even got my head around unrelated projects such as Ansible yet!'),(435,NULL,1,'en','1743671258','A2','A5','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(436,NULL,1,'en','1268538447','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(437,'1980-01-01 00:00:00',5,'en','1946150170','A2','A4','fem','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','I heard about it like 5 years ago but did not really understand it.\r\n\r\nThen someone explained nixos to me and I fell in love.','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','','','','','','','','','','Y','','','','Y','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','Router','Declarative description of a system','','','','Arch','Y','','Y','','','Y','','','','Y','Sway','','',''),(438,'1980-01-01 00:00:00',5,'en','2047303701','A2','A2','male','','Y','','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','When I started using NixOS (see next answers)','','','','','','','Y','','','','','','','','Y','','','Y','','Declarative configuration','Bleeding edge packages','The way packages are managed (nix store, symlinks...), the core of what Nix is !','Nixpkgs are great, but they sometimes break (less on the 21.11 branch than on unstable but it happens). So I would fix that.\r\nDocumentation is crucial and, although it is improving very fast on Nix and NixOS, there is still work to do.\r\nShoutout to all the community, devs and enhusiasts who share their knowledge on discourse, reddit, videos...','I would use a different OS than NixOS (Arch I think), but I could not really \"replace\" Nix as a whole as it is so unique !','','','','','Y','','','','','','','','','','','Y','','','','N','First, I never faced a crucial need for me.\r\nThe few time I could have wanted to package something, I didn\'t feel like investing the time.\r\n\r\nI sometimes participate on the issues on the nixpkgs github (bugs, outdated packages...)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I switched from Arch Linux to NixOS.\r\nI heard of it on forums and reddit.\r\nThe possibility to have a stateless system of which the configuration was declared in a configuration file really got me in.\r\nIt was hard at the beginning and needed to some time but since them, I had no regrets of investing my time !','Y','','','','','','','Declarative configuration','Minimal and really up to date distro','Nix','','Arch Linux, with some scripts and/or Ansible...\r\nBut now that I know NixOS, I would never do that !','Y','','','','','','','','','','bspwm','','Poetry2nix.\r\nFor python development, I ended up using a nix-shell and a conventional venv inside it (with pip requirements.txt)','Thank you very much for working on this masterpiece of software.\r\nWhat a great idea ! What a great project ! Good luck and have fun for the following years that I hope will see Nix succeed even more !'),(440,'1980-01-01 00:00:00',5,'en','368591099','A2','A3','male','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Liked the concept of deduplicated separate per user package management and the promise of being able to resolve dependencies differently in different contexts across language bondaries. Additionally had lots of nixos users around me. Took me two attempts to switch from archlinux nevertheless.','','Y','','','','','Y','','Y','','Y','','','','Y','Y','','Y','home-manager','single source machine configuration','deduplicated dependency store','','Remove all the imperative impure stuff (including nix-channels), unify the user interface add some graphical visualisations and tooling to automate recurring tasks, add content addressing and ipfs (or a simillar p2p mechanism), better home-manager integration.','Probably would have stayed with ArchLinux','','','','Y','','','Y','','','','','','','','mvn2nix','Y','','Y','manual package overrides in configuration','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because the experience is much smoother than with nix on non-nixos and you get all the declarative configuration perks.','Y','','Y','','Y','','','','','','better home-manager integration, allowing each user to manager their own configuration on top of the system configuration while being able to access the machine configuration, machine rebuilds and nixpkgs bumps should automatically rebuild the user environments, but users should be able to rebuild on their own.','Archlinux','Y','','','','','','','','Y','','i3wm, sway','nix-bundle, nix-du, nix-visualize','nixops',''),(441,'1980-01-01 00:00:00',5,'en','679805274','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','','','Y','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','Y','','','','','','','','Debian','Y','','','','','','','','','','xmonad','','',''),(442,'1980-01-01 00:00:00',5,'en','1898989935','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Deterministic configuration. For home-cloud and safe upgrades in remote location remotly.','','Y','','','Y','','Y','','Y','','','Y','','','Y','','Y','Y','','Declarative configuration ','Easy rollback','Good configs for services like nextcloud','- The high count of open issues on GitHub is concerning. Are security updates applied in a reasonable time frame?\r\n- faster switch to systemd-nspawn containers\r\n- integrated support for encrypted secrets in the nix store','Fedora linux with shell scripts / ansible','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','Not enough time but it\'s planned.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Management of rasperry pis. Declarative configuration, determinism, easy recovery. Safe updates for a remote router/server.','Y','','Y','','','Y','','Declarative configuration','Easy rollback','Good service configurations for e.g. nextcloud','- High issue count on GitHub is concerning\r\n- Are all security update really always fixed on time, especially for the stable channel?\r\n- nixos-containers using systemd-nspawn\r\n- integrated secrets management, encrypted in store','Fedora Linux with scripts / ansible','Y','','','','','Y','','Y','','','LXQT','nixos-containers module\r\nflakes flakes flakes','nix-env\r\nchannels','Thanks for all your hard work.\r\nI love Nix/NixOS!'),(443,'1980-01-01 00:00:00',5,'en','864505304','A2','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','Y','Y','','Y','','','N','Y',NULL,'Lack of commitment in stability. Things that worked before, stopped working.\r\n\r\nNo easy way to set up builders on Kubernetes. \r\n\r\nNix interpreter is too slow for complicated code and misses standard debugging tools.\r\n\r\nIFDs are not well supported, e.g. force sequential builds. But I needed them due to the slow interpreter. ','Limited use :\r\n\r\nCommitment to stability and a general spirit that this is meant for production.\r\n\r\nKubernetes builders.\r\n\r\nGoing full in :\r\n\r\nFast nix interpreter with some static type checking. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Too much time spent on updates or tools that didn\'t support NixOS. ','Main stream adoption or easy escape hatches for software from other distributions.\r\n\r\nConfig stability. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','crate2nix',''),(444,'1980-01-01 00:00:00',5,'en','1632821156','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I started using NixOS and nix just made sense for my projects ','','','','','','HyperV VM setup similar to WSL ','Y','','','','Y','','','','Y','Y','','Y','','Declarative system or server configuration/management','Declarative environment management','Build and package software','Channels being blocked is obviously bad but I\'m not smart enough to figure that out. :)','I would try Guix, but might just go back to arch since the ecosystem doesn\'t appear to be anywhere near as complete as Nix','','','','Y','Y','','','','','','','','','','','Y','','','','N','I want to contribute but am still learning the language. The Nix language has a steep learning curve especially coming from imperative programming languages, I think more examples (real world packages) with good comments would help me and others learn, it can be very overwhelming to read a package source and actually understand what is happening.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I used to use arch but got tired of maintaining a couple machines, using git to track my entire system\'s config (NixOS and Home Manager) is a godsend. Also, arch broke my laptop way too many times.','Y','','','','Y','','','Declarative System Configuration','Rollbacks','Ability to boot with only /boot and /nix','Some of the NixOS config options seems kind misleading (needing xserver options to use Gnome wayland), but overall everything seems really solid. ','Probably arch','Y','','','','','','','Y','Y','','','Home manager\r\nImpermanence','','Thank you for all of your hard work, NixOS is in its own league and I don\'t think I can ever look back'),(445,NULL,NULL,'en','2056633048',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(446,NULL,NULL,'en','884347592',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(447,NULL,NULL,'en','941849493',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(448,'1980-01-01 00:00:00',5,'en','1524376591','A2','A3','male','','','Y','','','','Y','Y','','','Y','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','Y','','','',''),(449,NULL,1,'en','1536751268','A2','A4','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','','Y','','Y','','android',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(450,NULL,1,'en','152937197','A2','A4','male','','','Y','','','Y','Y','','','Y','Y','','','','','','Y','','','','','','','Y','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(451,'1980-01-01 00:00:00',5,'en','1992737012','A1','A6','male','','Y','','','','','','','','Y','','','','','Y','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','(On Mac) As an alternative package manager to brew. (On ArchLinux) to install the latest versions.','Y','Y','','','','','Y','','Y','','','','','Y','','Y','','','','Making installation simple, easy, and uniform.','Version-controlled profiles','the number of supported packages.','Change the syntax of Nix language. ','guix (reluctantly)','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','On Mac, as an alternative package manager to brew.\r\nOn ArchLinux, to install the latest packages.','Y','','Y','','','','','Making software installation simple, easy, and uniform.','Version-controlled profiles','The number of packages.','The syntax of Nix language.','guix','','','','','','','','Y','','','','','',''),(452,'1980-01-01 00:00:00',5,'en','1449926570','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Honestly don\'t remember. Probably saw something on Reddit mentioning centralized declarative reproducible system config, and was instantly sold','','Y','','','','','Y','','Y','','Y','','','','Y','Y','Y','Y','','reproducible and isolated development environments','ability to move/rebuild a machine by just copying one configuration file','uncluttering $PATH, least power principle, ...','- I\'m a bit worried about the flake/nix 2.4 (is it 2.4?) bruhaha, and I would wish the transition process to be swift if not over already (I\'m in the camp that didn\'t feel the need for flakes, to be honest, but maybe I\'m not a power-enough user :) )\r\n- It\'s annoying that sometimes even in nix you can get conflicts in python dependencies/versions -- but that\'s on python, not nix, I think\r\n- I would love to have a complete-ish devops solution (last time I checked, nixops was not really recommended, and the other solutions were small and fragmented)\r\n- dealing with the nixpkgs git repo is getting horribly slow, but not sure how that can be fixed\r\n- in general, maybe it\'s me not finding it, but mid-level documentation (of the nix language, of typical solutions to typical problems, ...) is not really handy (where do I import this function from? ...), and the Discourse instance often doesn\'t help','Debian? Arch? Guix :P ? No idea','','','','','','','','','','','','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','Y','','','','','','','','Y','','','','','','','','','','sway','','',''),(453,NULL,1,'en','1697328197','A6','A4','male','','','','','Y','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(454,NULL,1,'en','1371801027','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Started with Manjaro as my first Linux distribution but messed things up several times with updates and using specific versions of packages. Found out about NixOS from DistroTube, switched and loved it immediately.','','','','','','','Y','','','','','','','','Y','Y','','Y','','Safety of upgrades and package installation','Home Manager','Ephemeral shells','- Documentation for configuration, especially configuring specific programs in Home Manager\r\n- Better integration of home.nix into configuration.nix so they shared the same generations and didn\'t need to duplicate all nix-env commands','Gnu Guix','','','','','','','','','','','','','','','cabal2nix: https://github.com/NixOS/cabal2nix\r\nnode2nix: https://github.com/svanderburg/node2nix\r\ndconf2nix: https://github.com/gvolpe/dconf2nix','Y','','','','N','Lack of knowledge on how to do it','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(455,'1980-01-01 00:00:00',5,'en','479187738','A2','A3','male','','','','','','Y','','','','','Y','','','Y','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Saw a poster at university while doing a thesis on a functional programming language, idea of declarative package manager spoke to me.','','','','','','','Y','','','','','','','','Y','','','Y','','','','','','pacman','','','','','','','','','','','','','','','','','','','','N','Not enough time to learn nix language','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Saw a poster at university while doing a thesis on a functional programming language, idea of declarative OS spoke to me.','Y','','','','','','','','','','','Arch Linux','Y','','','','','','','','','','i3','','',''),(456,'1980-01-01 00:00:00',5,'en','1135816615','A5','A3','male','','Y','','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','For ML research. Easiest way to do reproducible research in my experience.','Y','Y','','','','','Y','Y','','','','','','','Y','Y','','Y','','nix-shell','reproducibility','','In rough descending order of importance,\r\n* Hydra building and caching of software that depends on CUDA.\r\n* NVIDIA \"data center\" drivers for V100/A100 GPUs.\r\n* Better nixGL support, eg. cudatoolkit support.\r\n* Fix the confusion between \"nix-foo\" commands and \"nix foo\" commands. What is what? Which should I use? When will things finally be stabilized?\r\n* Remove imperative nix-env commands.','I would just cry and stop using computers.','','','','Y','','','','','','','Y','','','','none','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','First got into Nix on macOS, then starting using Nix on a remote ubuntu machine. Then transitioned into using NixOS on the remote machine. Later discovered that NixOS doesn\'t support NVIDIA \"data center\" drivers for V100/A100 GPUs, so I\'ve had to switch back to ubuntu on the remote machine.','Y','','','','','','','Declarative configuration','','','* NVIDIA \"data center\" drivers for V100/A100 GPUs.\r\n* Better support and tutorials for spinning up servers on the AWS/GCP/Azure.','Ubuntu','','','','','','','','Y','','','','nixGL, home-manager','','Nixpkgs is the best package system because it\'s fully hosted on GitHub, making it super easy to contribute! It also has the added benefit of making it easy to build automation, which is something that I\'ve made good use of.\r\n'),(457,NULL,1,'en','1746752450','A2','A3','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(458,'1980-01-01 00:00:00',5,'en','1871112103','A1','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Was introduced to it by a friend and colleague. After 18 years of mostly Ubuntu as my personal workstation, I\'ve switched fully to NixOS unstable and home-manager.','','','','','','','Y','','Y','','','','Smart TV','','Y','','','Y','','System and home management using code','Development environments using lorri','Huge selection of mostly up-to-date software packages with cached binaries','Statically typed language. Lack of static type checking is felt. I love Rust, by the way.','I\'d look into anything similar. I heard of GNU Guix. Is there an alternative to NixOS? Pff, probably not a practical one.','','','','Y','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','Smart TV','','','','','','Y','','','','','','','','','','sway','lorri','',''),(459,'1980-01-01 00:00:00',5,'en','763775950','A2','A4','male','','','Y','','','Y','Y','','','','Y','','','','','','Y','Y','','Y','','Y','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Reliability, speed of implementing stuff, management of variations of things','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','variation management through the checksumming in a store / parallel versions + atomic upgrades','independence of userland from runtimes (physical, virtual, container, shell, ...)','hydra','better integration of non-nix stuff (CMMI installs) ','no idea. we came from using Gentoo and maybe we\'d end up using ubuntu + docker instead','','','','','','','Y','','','','','','','','I think we use pypi2nix and maybe some node stuff.','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Gentoo+Puppet allowed for a lot of variability but upgrades where a big pain and managing state was just impossible in a growing (multiple hundred machines) environment. Turnaround time for config management was insane (puppet runs took 5min+ for NOOPs)','Y','Y','Y','Y','','','','argh ... didn\'t I just answer this question on the previous page?','','','this was here twice, too, wasn\'t it?','this was here twice, too, wasn\'t it?','Y','','','','','','','','','','','','','I think the survey is broken with duplicate questions ... that almost made me abort it ... '),(460,'1980-01-01 00:00:00',5,'en','1337090152','A2','A2','-oth-','enby','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','','','android','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','arch broke packages, and i got upset and wanted to move distros. someone told me to install nixos so i did','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','nix-shell, i can temporarily have a package for something i want to do now, without worrying about it later','i can make a build script which doesn\'t need to make assumptions about the user\'s distro (other than nix)','idk but see the next answer','make nix features more discoverable (i keep getting told about things i didn\'t know). make the documentation more searchable, and maybe interactive','idk i\'d be probably doing manually-written shell scripts and makepkg scripts and other shenanigans in arch, or whatever they do in void if i went for that','','','','','Y','','','','','','','','','','','Y','Y','','idk it\'s been a while since i did either of these things','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','see nix','Y','','Y','','','','','i can copy a config to another machine, and if i carefully tread past machine differences i can basically clone a service config with minimal effort','idk i feel like i\'m having a worse experience on nixos than arch, even though it\'s technically better','','if i could easily find exactly which module takes care of a particular setting, option and action, that\'d be cool. also, one of the things i\'m loath to do is basically reimplementing nixos modules just to have them separate from the system-wide config, cuz the system config takes way too long to build and makes me scared of doing anything on my system ever. it\'s hard to integrate them back into the system, too, i have to put a systemd config in the system config, fragmenting the module into separate parts i need to look after','arch or void or alpine or smth i\'d be writing shell scripts instead of nix config all day','Y','','','','','','','','Y','','i3wm, i\'d use sway but it\'s too much for my hardware still','search.nixos.org is cool, but could be smarter than it is rn','','writing type-safe modules as a wrapper for a simple text config is hard af, is there a tutorial for that?'),(461,'1980-01-01 00:00:00',5,'en','1243830948','A2','A4','male','','','','','','','Y','Y','Y','','','','Y','','','','','Y','','','','','','Y','','Y','','','Y','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(462,NULL,1,'en','632824188','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(463,'1980-01-01 00:00:00',5,'en','450029505','A2','A5','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','Y','','','','','','','','','i3','','',''),(464,'1980-01-01 00:00:00',5,'en','941420674','A2','A4','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because or NixOS','Y','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','Easy contribution via pull request','Availabilty of packages on different distros','Dev environment with nix shell','Make packaging even easier.\r\nAdd nix as a package to all distros so it is available via the package manager.','Probably homebrew/linuxbrew','','','','','','','','','Y','','','','','','none so far','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','We needed a system where we could easily patch every component of the system, including the kernel and deploy it to production. Easy roll back was a blessing.','','Y','Y','','','Y','','Declarative config','Source based allows patching of everything','Easy to contribute via pull request','Ability to run standart software out of the box. ','Debian + Ansible','Y','Y','','','','','','','Y','Y','','','home-manager',''),(465,'1980-01-01 00:00:00',5,'en','1990777552','A2','A3','male','','','Y','','','Y','Y','','','Y','Y','','','Y','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','','','','','Y','','Y','Y','','','','','','','','','Woodpecker','https://github.com/svanderburg/composer2nix\r\nhttps://github.com/svanderburg/node2nix\r\nhttps://github.com/nix-community/napalm\r\nhttps://github.com/fossar/composition-c4','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','','','','','','','','','Y','','Y','','','','','sway','','',''),(466,NULL,NULL,'en','630141597',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(467,'1980-01-01 00:00:00',5,'en','1979775901','A1','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','My colleague rewrote my project\'s Docker-based build system for me in Nix. Once I saw it the advantages were obvious.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','Y','','','','','I would replace the Nix language with https://github.com/purenix-org/purenix','','','Y','','Y','Y','','','','Y','','','','Y','','https://github.com/svanderburg/node2nix\r\nhttps://github.com/justinwoo/spago2nix\r\nhttps://github.com/NixOS/cabal2nix\r\nhttps://github.com/cdepillabout/cabal2nixWithoutIFD (not actually but I wish)','Y','Y','','','N','It\'s so easy to just keep my improvements to myself in our private repos. I\'m ashamed.','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A1','My team put NixOS on all of our servers.','','Y','','','','','','','','','I would replace the Nix language with https://github.com/purenix-org/purenix','','','','','','','','','Y','','','','','','Thank you!'),(468,NULL,NULL,'en','2014326457',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(469,'1980-01-01 00:00:00',5,'en','1616963874','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Because of its determinism','','Y','','','','','','','Y','','','','','','','','','Y','','Rfc 92','Flakes','','Nix is bloated right now with all of it\'s experimental features. I would either finalize them an decide on which to throw out and which to keep or change the \"experimental feature\" process to something else. ','I wouldn\'t use something else','','Y','','Y','Y','','','','','','','','','','dream2nix','','Y','','','N','The size of the monorepo. It should be a lot more modular and compostable as planned with flakes. ','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','Y','','','','','Nixos modules','','','I would make nixos modules more ergonomic to write and compose','','Y','','','','','','','','','','server only','','',''),(470,'1980-01-01 00:00:00',5,'en','1351627180','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','The premise of a fully declarative, immutable system seemed very interesting.','','Y','','','','','Y','','Y','','','Y','','','Y','','Y','Y','','Declarativity','Reproducibility','Isolated environments/coexisting packages','A definitive approach to secrets management which doesn\'t store them in the Nix store. Seems like Morph et al. do have some solutions, but it still feels like an open problem.','Podman nad Ansible.','','','','','Y','','','','','','','','','','https://git.sr.ht/~remexre/clnix\r\nI use various js/python 2nix tools very rarely when I want to locally package something not in nixpkgs, so I always look what\'s currently the \"best\" option.','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Installed NixOS on a new laptop I got when i decided to try Nix to get the full experience.','Y','','Y','','','','','Declarativity','Reproducibility','Isolated environments/coexisting packages','Improved language support, the two main languages I use (C# and Common Lisp) are in a not so great state. There\'s some great work for CL being done with clnix by @remexre.','Assuming Guix isn\'t an option, probably Arch or Fedora.\r\n','Y','','','','','','','','','','sway','rnix-lsp, nix-direnv, emacs-overlay, home-manager','lorri, only because I\'ve replaced it with flakes.',''),(471,NULL,NULL,'en','1167346837',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(472,'1980-01-01 00:00:00',5,'en','1283797303','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I think I stumbled over some blog posts and immediately got excited about the concept during a time when everybody build castles around fat VMs and containers. Nix is conceptually a lot simpler and orthogonal to other solutions.','Y','Y','','','','','Y','','','','','','','Y','Y','','','','','reproducible development envs that are disposable','Homebrew replacement','','More stable nixpkgs or at least make it easier / better documented to mix and match. \r\n\r\nBetter defaults / best practices\r\n\r\nRemove the old CLI and focus on the new one\r\n\r\nProbably find a better way to steer the whole project. At the moment, it does develop so many things at the same time that it’s hard to notice the improvements. ','Containers, Homebrew','','','','Y','Y','','','','','','','','','','','','','Y','','Y',NULL,'N','Y',NULL,'I’m using macOS as my main OS and a VM just for development started to annoy me. ','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(473,'1980-01-01 00:00:00',5,'en','1982223605','A1','A2','male','','','','','','','','Y','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','As a frequent user of the AUR, I was enticed by the concept of Nixpkgs as \"AUR + reproducible builds\".','','Y','','','Y','','','Y','Y','','','','','Y','Y','Y','','','','nix-shell -p for temporary installation','Content-addressed derivations','The Nix language as a lingua franca of build scripts','Do away with Bash and Bashisms','Arch Linux Package Manager + chroot','','Y','','Y','','','','','Y','','','','','','[nuget-to-nix](https://github.com/NixOS/nixpkgs/blob/21.11/pkgs/build-support/nuget-to-nix)','Y','','','','N','My inexperience; a lack of documentation for .NET','N','N','System updates to my Arch-based daily driver causing problems, which has already happened and already convinced me to switch as soon as I get time :)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N/A','N/A','<3'),(474,'1980-01-01 00:00:00',5,'en','1778605397','A2','A2','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My PhD advisor showed me, I tried it and now there is no going back!\r\nthe peace of mind of using Nix is really something else','','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','flakes','nixos rollback','building and trying new nixos configuration in vms','the fact that flakes needs the set of derivations to be flatten.\r\nI would really love to have some hierarchy\r\n(there is the `flattenTree` function from https://github.com/numtide/flake-utils, but it is not really satisfactory) ','If guix exists, i guess guix.\r\nOtherwise, something debian-based probably','','','','Y','Y','','','','Y','','','','','','none\r\n(i tried https://github.com/cargo2nix/cargo2nix tho)','Y','Y','','','N','I have my own flake with the packages i need that are not in nixpkgs.\r\n','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My PhD advisor showed me, and i loved it','Y','','Y','','','','','easy rollbacks','easy to try/test configurations','can easily deploy my config to another machine','nothing comes to mind at the moment ...','debian (or ubuntu)','Y','','','','','','','','','','i3','arion: https://github.com/hercules-ci/arion/\r\nnixos-generators: https://github.com/nix-community/nixos-generators\r\nflake-utils: https://github.com/numtide/flake-utils\r\n\r\n(I will try home-manager at some point: https://github.com/nix-community/home-manager)','','I love the work you are doing!'),(475,NULL,1,'en','2105962861','A5','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','Y','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(476,'1980-01-01 00:00:00',5,'en','1178068077','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','N','N','Just starting to learn Nix and nixpkgs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Just starting to learn NixOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(477,'1980-01-01 00:00:00',5,'en','1008350256','A2','A2','male','','','','','','','Y','','','Y','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I have just built a new desktop PC and was looking for a distro to install, since I did not want to use windows anymore.\r\n\r\nOne of my friends told me about NixOS, but he wasn\'t using it he had also just heard about it. Checked it out on the website and looked cool.\r\n\r\nDownloaded it and installed it, and thought it was pretty cool. It was kinda hard using it in the beginning and also the docs wasn\'t that easy to follow on some points.\r\n\r\nBut 6 months ago I also installed it on my laptop and I am now using Nixos on all my systems, including my home server.','','','','','','','Y','','Y','','','','My personal computer','','Y','Y','','Y','','Declarative system management and nix collect garbage works wonderfully to keep a clean system','','','I would remove nix-channel.\r\nI would make flakes stable.\r\nI would make it easier for contributes to have changes to modules merged','Probably use the default package manager on whatever distro','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Told it on the nix part','Y','','Y','','','','Personal computer','Declarative system management, and nix collect garbage. To always have a clean system','','','I would make it easier to install packages. By using a command instead of having to open a text editor and rebuilding every time','Probably Manjaro or Arch or Gentoo or void','','','','Y','','','','','','','dwm','Nur\r\nFenix','',''),(478,'1980-01-01 00:00:00',5,'en','27970314','A2','A3','male','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started with Nix (not NixOS) as an alternative to homebrew on Mac. Eventually switched to home-manager. I then recently experimented with NixOS which has worked well. Nix-darwin did not work out well.','Y','','','','','','Y','','Y','','','','','','Y','','','Y','','nix-shell -p -- running software without permanently installing it','Declarative system config (home-manager on Mac, and nixos)','Flexibility - I really can represent most of the things I need in nix. Not limited to just installing packages. I was even able to setup some custom LUKS logic on NixOS.','Better discovery of options instead of relying on the online search. Easier debuggability. Frozen versions by default - instead of relying on whatever version happened to be current at the time of channel setup.','A hodgepodge of scripts, perhaps a config management tool like cfengine or ansible.','','','','Y','','','','','','','','','','','cabal2nix','Y','','','','N','Already high quality - limited opportunity to improve things. As to new software packages - too busy to fiddle with it, better just use homebrew for those. On NixOS I can find everything I need in nixpkgs, and if I don\'t find something then there will at least be a good alternative.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','After using nix for a while, I tried out NixOS and liked it.','Y','','Y','','','','','Declarative system config.','Easily managing a fleet of machines.','','A safer way to deploy configs to headless machines. I\'d like to be able to switch to a config for the next boot, but not subsequent boots. Or some other way to fallback without having to attach a keyboard/mouse/screen or KVM.\r\n\r\nAn easier way to automate the installation of NixOS onto a machine.\r\n\r\nMore official support in cloud environments.','Ubuntu or Fedora','Y','','','','','Y','git push + pssh to run git pull && nixos-rebuild','','Y','','','home-manager','nix-darwin',''),(479,NULL,1,'en','2067898348','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(480,'1980-01-01 00:00:00',5,'en','318621768','A5','A3','-oth-','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I thought the community was cool, and d wished to spend less time configuring arch, most of it consisting of copy-pasting commands from stack overflow or random blogs. Now, I just flip on a NixOS option and say a small prayer to all the maintainers who made it possible. If the option does not exist, I write it and contribute to nixpkgs when possible. ','','Y','','','','','Y','','','','','','','','Y','','','Y','','NixOS options system, all my configs in a git repository ','nix-shell (both with & without the -p flag)','Generations / rollbacks','I would push flakes over the finish line, officially recommend it, and then unify the CLI to be more consistent. After that, docs.','Not sure. Maybe arch.','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I said it in the previous section :C','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','The Rust overlay, agenix','','The community + RFC #98 are very important to me, and are as important to my involvement with Nix as any of its technical advances.'),(481,'1980-01-01 00:00:00',5,'en','1887493217','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','N','Y',NULL,'Installation on macOS was painful','Streamlining integration with macos, providing clear direction on replacing brew with nix. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I think you’ve got a brilliant foundation and am eager to adopt when it becomes easier'),(482,'1980-01-01 00:00:00',5,'en','2055337406','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Immutable OS ','','Y','','','','','Y','','','','','','','Y','Y','','','Y','','Declarative build recipe','Binary cache ','','The language - can we just use a proper language? :D I still don\'t completely follow nix and have to do copy paste dev, with no ide support ','I\'d find it then...','','','','','','','Y','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Immutable OS ','Y','','','','','','','','','','','','Y','','','','','','','','','','Xmonad','','',''),(483,'1980-01-01 00:00:00',5,'en','598172288','A2','A5','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was looking for GNU Stow but couldn\'t remember its name. Googling brought me to Nix','Y','','','','','','Y','','Y','','Y','Y','','Y','Y','Y','','Y','','Congruent configuration management','Cross compilation \"just works\"','Derivations describe *all* dependencies of a program I\'m building, nothing is implicit','Make it possible to use `lib` without importing all of nixpkgs. ','Guix, but I guess that wouldnt exist either. Debian, Postmarketos','','','','','','','','','','','','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','Y','Y','','','','','','','Y','','','','','Y','','','','','labwc (Wayland)','Mobile nixos, nixwrt','Hydra self-install',''),(484,'1980-01-01 00:00:00',5,'en','84265485','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','To try out new software without messing up the whole operating system','','','','','','Only through NixOS','Y','','','','','','As my main laptop','','','','','Y','','Reproducible','Single file to configure the whole desktop','','Faster update cycles for the software (maybe community maintained like AUR?)\r\nAn easier language','Arch','','','','','','','','','','','','','','','','Y','','','','N','Slow and centralized repository\r\nI think Flakes solve this but still not used widely ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I used Arch but had to reformat every 6 months or so because of some packages leftovers and hand-made global configurations that led to inconsistencies','Y','','','','','','','','','','','Arch','Y','','','','','','','','','Y','Mate, i3','','',''),(485,'1980-01-01 00:00:00',5,'en','301661892','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Not much of a story really, decided to give it a look after a mixture of casual exposure on various discussion forums/irc online over the years, and found the idea of functional package management exciting/persuasive.','','Y','','','','','Y','','','','','','','','Y','Y','Y','Y','','Purity.','`nix-shell` and `nix develop`','`nix run` and `nix shell`','Content-addressed by default.','Arch Linux with Pacman and too many language specific package managers/virtual environment providers.','','','','Y','Y','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Not much of a story really, decided to give it a look after a mixture of casual exposure on various discussion forums/irc online over the years, and found the idea of functional package management exciting/persuasive.','Y','','','','','','Generic desktops/laptops','Declaratively and programmatically defining a complete system.','Atomic updates.','Overlays.','I would merge the boot counting pr.','Arch Linux. Still do, because I\'m too lazy to switch over some machines.','Y','','','','','','','','','','','Lorri.','',''),(486,'1980-01-01 00:00:00',5,'en','665590692','A2','A4','male','','','','','Y','','','Y','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','Botched Ubuntu upgrade was the trigger','','Y','','','','','Y','','','Y','','','Home desktop + laptops','Y','Y','Y','','Y','','Declarative & reproducible whole system configuration ','Nixpkgs being a single repo, all versions determined by single hash (git bisect etc)','Ease of adding/maintaining packages','Somehow we need a solution for faster rebuilds upon CVEs. Also would be nice if there was a tool that could tell me how many CVEs are present in a given nixpkgs hash (filterered for the ones I\'ve installed)','I\'d be sad but probably Debian.','','','','Y','','','Y','','','','','','','','','','','Y','override derivation & add packages via nixpkgs config ','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Ubuntu botched upgrade ','Y','','','Y','','','all home desktops + laptops','Declarative & reproducible configuration ','Nixpkgs monorepo pins everything with single hash (git bisect etc)','Atomic upgrades with rollback','More support for analysis of which CVEs are present in git hash / environnement.','Would be sad but use Debian','Y','','','','','Y','','','','Y','i3','','','Thank you for everything!'),(487,NULL,NULL,'en','1044362776',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(488,'1980-01-01 00:00:00',5,'en','1481515859','A2','A3','-oth-','','Y','','','','Y','Y','','Y','','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','N','Y',NULL,'configuration is very counter intuitive','I like the idea and will try again in the future',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','simpler configuration file formats',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix shell to have common dependencies for scripts','creating oci containers from nix but they were huge in comparison. Also the dockerfile format is way simpler compared to the configuration file format of nix. There were no good documentation on how to achieve what I wanted to get in multiple cases.',''),(489,'1980-01-01 00:00:00',5,'en','2026697649','A5','A4','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','All the great blog posts (eg christine.website) on lobste.rs','','Y','','','','','Y','','Y','','','','','','','','','Y','','Easy, reproducible server configuration ','','','Ease of use, more docs','More Docker','','','','','Y','','','','','','','','','','','','','','','N','Still learning how to use Nix, haven’t needed anything not in Nixpkgs (yet!)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','','','','','','Y','','','','','Y','','','','','','','',''),(490,NULL,1,'en','820277792','A2','A4','male','','','','','','Y','','','','','Y','','','','','','Y','','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(491,'1980-01-01 00:00:00',5,'en','699854520','A2','A4','male','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I ditched MacOS around 2014 because it was becoming too bloated and slow. I had been an occasional Linux user since the early 2000s but now started using it to actually be productive. I used Arch and Debian, but I was frustrated with these systems and how they would inevitability come to be composed by a series of one-off fixes and workarounds that were impossible to keep track of, even with etckeeper and playbooks. This got me intererested in GNU Guix. In 2018, I tried to install GuixSD on a laptop but found it lacked hardware support, so I gave NixOS a try instead and liked it enough that I now run it on 3 different machines, including a server that hosts a variety of services for a small research group.','','','','','','','Y','Y','','Y','','','','Y','Y','','','Y','','Reproducible project environments with nix-shell','Good selection of packages','System configuration with rollbacks','I would prefer writing scheme to nix.','Probably Debian with guix','','','','','','','','','Y','','','','','','I have tried poetry2nix but didn\'t get very far','Y','','','','N','Big repo seems a bit overwhelming. I also find the github workflow more intimidating than emailing patches.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same as beforw','Y','Y','','Y','','','','','','','See above','See above','Y','','','','','','','','','','i3','Direnv','',''),(492,'1980-01-01 00:00:00',5,'en','149724642','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started to work on a project using Nix.','','Y','','','','','Y','','','','','','','','Y','Y','','','','Nix-shell for development, no need to install all dependencies by hand.','Easy sharing/usability of a project to other machines/other people, with project packaged in Nix','','','','','','','','','','','','','','','','','','poetry2nix','','','','','N','Do not have personal packaging to share.','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Easy system configuration among different machines, no need to manually re-install all all utility softwares.','Y','','','','','','','Easy system configuration, combined with versioned config file.','Easy \"roll back\" to previous version of our system config if anything goes wrong','','Easier management of config files for installed softwares (currently stored in read-only /nix, compared to ~/ which can be easily edited in linux distros)','Linux mint or ubuntu','Y','','','','','','','','Y','','','','',''),(493,NULL,1,'en','1283703960','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(494,'1980-01-01 00:00:00',5,'en','2088651','A2','A3','male','','Y','','','','','','','','','','','','','','Y','','Y','','','Y','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It is widely used at my lab, and now I am convinced of its usage.','','Y','','Y','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','Declarative configuration','Collaborative work (via a nur repository) and thanks to nix distributed architecture.','(With flake) software traceability','I would change rust and R packaging. Rust because I don\'t understand how it works, and I often get errors about cargo registry.\r\nR, because, it doesn\'t seem to have a binary cache for R dependencies (I always re-compile tidyverse).\r\n\r\nAlso, I would add an abstraction (or at least a comprehensive documentation) about runtime dependencies.','IDK, probably depends on the language I am using, and the distribution I am running on.','','','','Y','Y','','','','Y','','Y','','','','cargo2nix','Y','Y','','','N','I never really thought about it.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','my server','A4','A colleague installed NixOS on the laptop they attributed to me at work.','Y','','Y','','','','','Declarative configuration','Service declaration/management made easy','Rollback for the win','Add a way to manage MIME types. ','debian / arch','Y','','','Y','','','','','','','i3','','lorri',''),(495,NULL,1,'en','48586139','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(496,'1980-01-01 00:00:00',5,'en','1380055084','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to solve a problem with state, I was using ansible before but that doesn’t hold state in check as we know. Found NixOS, followed the tutorials and the rest is history ','Y','Y','','Y','','','Y','','Y','Y','','','','','','','','Y','','Stateful configuration ','Up to date packages','Home-manager','There isn’t much I’d change, maybe improve the documentation/tutorials on offer for newbies','CentOS/openSUSE & ansible','','','','','Y','','','','','','Y','','','','','Y','Y','','','N','I haven’t fully worked out how to write my own derivation yet but I am working on it','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Resolving issues with state','Y','','Y','Y','','','','','','','','','','','','Y','','','','','','','','','',''),(497,NULL,1,'en','1909805234','A1','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(498,NULL,NULL,'en','1391206735',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(499,'1980-01-01 00:00:00',5,'en','1721318935','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Some friends had suggested it','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Consistent semi-reproducible environment management','Easy system configuration','Software updates','Make reproducibility a priority instead of an afterthought. Make the language less weird. ','guix','','','','','','','','','','','Y','','','','cabal2nix','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Some friends suggested it','Y','Y','Y','','','','','','','','','guix','Y','','','','','','','','','','sway','niv','flakes, nixops',''),(500,NULL,1,'en','717446042','A2','A3','male','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(501,NULL,1,'en','1335775794','A2','A3','male','','','Y','','','Y','Y','','','Y','Y','','','','','Y','Y','Y','','Y','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(502,'1980-01-01 00:00:00',5,'en','1644009336','A4','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','Flakes','Stability','Rollbacks','Deprecate the old command line interface\r\nFinalize flakes and the new CLI\r\nImprove documentation on system wide nixos flake','Arch with btrfs and snapshots','','','','Y','Y','','','','','','','','','','Crate2nix\r\nMachnix','Y','Y','','','N','Takes way too long for changes to take effect.\r\nMaintaining my own fork is way easier','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','Stability','Rollbacks','isolation','Improve nixos system flake','Arch with btrfs','Y','','','','','','','','Y','','','MachNix\r\nCrate2Nix\r\nCachix\r\n','',''),(503,NULL,2,'en','565653341','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Reproduceable builds','Isolation so rollbacks are easy ','Pinning of inputs for dev shells the same as for container builds','Documentation to help with onboarding ','ArchLinux with custom image builder and lots of scripts ','','','','Y','Y','','','','','','Y','','','','https://github.com/svanderburg/composer2nix','Y','Y','','','N','Lack of time ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(504,'1980-01-01 00:00:00',5,'en','356174244','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was attracted to the declarative aspect of it, so I migrated from arch to NixOS, and never went back.','','Y','','Y','','','Y','','','','','Y','','Y','Y','','','Y','','Declarative configuration and package management','Fearless upgrades with easy rollbacks','Integration with SystemD','Either standardized home management, or better devops integration (nixops is not great due to the manual restarts)','Probably ASDF for managing multiple projects with different dependencies. \r\nFor package management I would probably have kept arch/pacman, or be tempted by exherbo\'s cave','','','','Y','Y','','','','','','','','','','crate2nix (I think) https://github.com/kolloch/crate2nix','Y','','','','N','The speed at which it evolves, I fear it would take too much time to keep a PR up-to-date before maintainers have time to look at it\r\n','N','Y',NULL,'Got a Windows work laptop, and I didn\'t want to install a dualboot on it (for better cleanup afterwards). Besides, WSL works well enough','More work on my personal laptop (which has nixos dualboot)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','* https://github.com/nix-community/NixOS-WSL the hack to make systemd work introduced weird terminal issues, and ubuntu+nix works well enough for me\r\n* https://github.com/matthewbauer/nixiosk I tried to use nixiosk to build raspberry pi images for an open source ventilator for covid (https://makair.life/), but couldn\'t make rhe rust ui launch ','Thanks for this great package manager and OS, and thanks to several people for helping with the promotion and documentation, mainly: \r\n* Xe Iaso https://christine.website/\r\n* Domen Kožar https://nix.dev/ https://www.cachix.org/\r\n* Graham Christensen, on Twitter \r\n* Jonas Chevalier, aka @zimbatm on Twitter\r\n* Tweag and tailscale'),(505,'1980-01-01 00:00:00',5,'en','1649131835','A2','A2','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','','','','','','','','','Y','','','','','Y','','','','',''),(506,'1980-01-01 00:00:00',5,'en','1411349801','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Accidentally spotted it somewhere and I fell in love.','Y','','','','','','Y','','','','','','','','Y','','','Y','','Multi-version management while keeping the dependencies related (for example Elixir and Erlang version match).','One-place configuration of different parts of the environment.','Configurability of the environment when needed (for example use different SSL library for Erlang).','Add auto-generated documentation to the core and make it easier to navigate through all derivations. It is often pretty irritating to find what and how can be configured. Also Erlang packages are just \"regular set\", and overriding it with new packages is currently PITA (I have created issue for that, but I haven\'t got time to work on it). Also I think that BSD-based distribution of NixOS would be nice.','Probably I would use ASDF','','','','Y','Y','','','','Y','','Y','Y','','','','Y','Y','','','Y',NULL,'N','N','I need more time to prepare my home server and personal server with Nix. For sure better support from cloud providers would be a great help.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not really Nix ecosystem, but Direnv.','',''),(507,'1980-01-01 00:00:00',5,'en','576808136','A2','A2','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','','','Y','','Y','','Y','','','','','Y','Y','','Y','Y','','','','','I would have Nix not be written in bash','GNU Guix or Arch Linux','','','','','','','','','Y','','','','','','','','','','','N','Nix seems very complex compared to something like PKGBUILD from Arch. There also isn\'t a wiki comparable to the ArchWiki to guide me through creating packages.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','','','','','','','Y','','','','','','','','','LeftWM','','',''),(508,NULL,1,'en','653133355','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Network Engineer','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(509,'1980-01-01 00:00:00',5,'en','941978502','A2','A3','male','','Y','','','','Y','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','For reproducible research and shareable development environments.','','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','Y','','Reproducible builds','Well-defined shareable environments','Customizable packages (via function inputs or definition overriding)','I would add arguments to flakes whose value can be overridden by a command-line argument (similar to nix-build --arg and --argstr). It would enable me to use them conveniently for my local testing / CI needs (combination of build system/compiler flags, whether coverage should be done in my pipeline or not, whether tests are run in valgrind or not...)\r\n\r\nI would also improve/debug something around R packages, as I must compile locally most of the packages I use (notably those from tidyverse) when I install a fresh NixOS.\r\n\r\nI would make ccache (or a similar mechanism) work again, to avoid the huge number of unneeded recompilations of the same sources I do everyday.\r\n\r\nI would understand what\'s going on with cargoSha256 (had reproducibility issues when packaging rust projects).','Probably just Docker for CI environments. And nothing clean for shareable development environments :/.','','','','Y','Y','','','','Y','','Y','','','','','','Y','','NUR (I maintain NUR-Kapack)','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I switched to Nix to execute my scientific workflows with better reproducibility. I then switched to Nix to create well-defined shareable environments for the various developments I do.\r\n\r\nI then switched to NixOS (from Arch Linux) to:\r\n- avoid package duplication between Nix and my base distribution\r\n- benefit from transactional system upgrades\r\n- easily deploy similar environments on several machines','Y','','','','','','','Transactional system upgrades (and rollbacks that work)','Easily tune the version of a package if needed. e.g., use old pango/cairo to avoid bad regressions, tuning kernel version becomes trivial with NixOS...','Sharing well-configured systems becomes easy','','Arch Linux','Y','','','','','','','','','','i3','','','Thanks for your work!'),(510,NULL,NULL,'en','1844528715',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(511,'1980-01-01 00:00:00',5,'en','1189706647','A5','A3','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Continued frustrations managing local patches to Arch packages (and rebuilding them when pacman installed an update) pushed me towards nixpkgs/home-manager. From there expanded to nix-shell for projects, and nixpkgs to build projects.','','','','','Y','','','Y','Y','Y','','','','','Y','Y','Y','Y','','Declarative builds','Shell virtualenvs','Easy of patching programs','More end-user documentation. Getting friends to try it out is an uphill battle.','Back to Bazel.','','','','','','','','','','','','','','','- [npmlock2nix](https://github.com/nix-community/npmlock2nix), after switching from npm2nix.\r\n- [mach2nix](https://github.com/DavHau/mach-nix), though this has been pretty buggy lately.','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I got a taste with nixpkgs/home-manager and using nix for virtualenvs, and got hooked.','Y','','Y','Y','','','','Declarative systems','Fast updates','Single for for entire system','','Likely would have gone back to Gentoo.','Y','','','','','','','','','','herbstluftwm','home-manager, nixos-infect','NixOps',''),(512,'1980-01-01 00:00:00',5,'en','1342534345','A5','A2','-oth-','Non-binary ','','','','','','','','','','','','','','','','','','','','','','','','Multidisciplinary Artist ','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','','','','','','Y','Y','','Y','Y','','','','','','','','','','','Y','Y','Y','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','','Y','','','','','','','','','','Y','','','','','Y','','Y','','','Pantheon','','',''),(513,'1980-01-01 00:00:00',5,'en','955040810','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','best gaming platform ever','A2','So i was kinda tired of having to do stuff for my configurations to work and i accidentaly borked my arch linux install. So i just decided to use nixos instead. Once i got past the barrier of \"i have no idea what i\'m doing\" it has been so much easier than crap where bleeding edge packages are able to brick your system.','','Y','','','','','','','','','','','','Y','','','','Y','gaming','The configuration file to just enable services and drivers etc.','Home manager(don\'t know if this counts) to not have to deal with a million configs in a million different folders and the quicker install process than system packages.','The stable and bleeding edge rolling release model.','I sat here for about and hour before figuring out the following:\r\nA clearer way to make two packages talk/communicate with eachother. I know this is possible but maybe a clearer way to do it. Something like a portal between them. And i also had an issue installing pygame with pip because it didn\'t find it (python compiler) this is probably related.','package manager probably arch pacman just because i need bleeding edge packages and alot of them easily accessable.\r\nMaybe something like debian withmostly flatpaks because i hate having to deal with a broken system and flatpaks are waay more stable than arch pacman.','','','','','Y','','','','','','Y','','','','','','Y','','','N','I have to little knowledge in nix to be able to.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','gaming','A2','didn\'t i answer this','Y','','','','','','','','','','','','Y','','','','','','','Y','','','xmonad','','nix-env home manager is miles better','awesome os and package manager please keep up the amazing work'),(514,'1980-01-01 00:00:00',5,'en','1921091792','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was curious about configuring my system with a single file. I started testing it out at the last Chaos Communication Congress in Leipzig, Germany. There was a NixOS group of hackers and I asked them to help me to setup NixOS on my laptop','','','','','','','Y','','Y','Y','','Y','','','Y','Y','','Y','','Declarative system management','Module system','Reproducibility','A simpler and more user friendly interface like \'apt\' or \'pacman\'.','Puppet or Ansible','','','','Y','Y','','Y','','Y','','','','','','node2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','Same as before on Nix','','','Same as before for Nix','Same as before for Nix','Y','Y','','','','','','','','','Sway','nixos-shell','',''),(515,'1980-01-01 00:00:00',5,'en','426523903','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','N','Y',NULL,'I had a few issues with games and Steam in the past and ended up reverting back to PopOS (hassle free NVIDIA drivers helped a bit)','I am already trying to use Nix again - I have installed it on my personal laptop and was planning on using Nix on some personal side projects to play around with it a bit more',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I already hinted on this, but there were some issues with Steam in the past that I wasn\'t able to fix','I just installed earlier this week! :)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'I am trying to play around with flakes with my new NixOS install','',''),(516,NULL,NULL,'en','249616815',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(517,'1980-01-01 00:00:00',5,'en','910029344','A4','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I was using Ubuntu for about 6 years. Last year, a driver update broke the machine and I had a really hard time fixing it. I started looking for alternatives, and found GNU Guix. I tried it for a while, but the software availability sucks there. So the first thing I looked at was NixOS, since GNU Guix said they are inspired by NixOS. I found what I want in NixOS, great software availability, and functional OS.','','','','','','NixOS','Y','','','','','','','','Y','Y','','Y','','Declarative Configuration','Rollback','Customizability','It\'s not an addition in itself, but I would create a comprehensive course on how to write package definitions, and contribute to the community in general.','Arch Linux','','','','','Y','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','','AwesomeWM','home-manager nix-direnv','',''),(518,'1980-01-01 00:00:00',5,'en','1046881022','A2','A2','male','','','','','','','','Y','','','','','','Y','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','To install emacs 27.1 on ubuntu without building locally or adding a PPA','','Y','','','','','Y','','','','','','','Y','','','','','','Up to date packages','','','Not enough experience with Nix to have a useful opinion. Maybe more documentation on nix command and flakes since that gets talked about a lot these days.','','','','','','','','','','','','','','','','','','','','','N','','N','N','I don\'t see many benefits of replacing Ubuntu on my personal machine',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(519,'1980-01-01 00:00:00',5,'en','850615319','A2','A3','male','','Y','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','For managing all my devices & servers','A3','I was really frustrated at reproducible builds. This is the main reason I tried Nix.\r\nI stayed for the expressivity and declarativity.','','Y','','','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','','Y','','Reproducible builds','Declarative configuration','Expressivity: Being able to do so many things with little amount of code','A more regular way of describing everythine in nixpkgs. There\'s a billion different ways of doing things and some things are specific and buggy. For example, the way the different version of the package \'ocamlformat\' are exposed.\r\nI think we need a way to expose all the past versions of a package, in a concise and consistent way.\r\n','Makefiles and tears. Nix is solving a real issue for me.\r\nI guess the question imply that Guix wouldn\'t exist either.','','','','Y','','','','','','','Y','','','','opam2nix, which has a lot of rough edges.','Y','','','I pin nixpkgs and apply patches','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','For home and servers','A3','I was really excited by Nix and I immediately wanted to use the paradigm for my system too.','Y','','Y','Y','','','','Declarative','No inconsistent state','Composable and easy to extend','I\'d move more things to the hardware-configuration so the conf is less specific. (eg. networking, root hashed password, hostname, stateVersion)\r\nThe hardware-configuration is important for me because the first thing I do to a fresh system is to download it and it\'s the last time I log in onto it. I\'ve made systems misbehave in the past because of careless tweaking of configuration or forgetting to imports everything.','Guix I guess.','','','','','','Y','','','','','no DE + custom config + xmonad','nix-workspaces, home-manager, nixos-hardware.','nixops','Nix and NixOS are really a step forward and will continue to be ahead for years. Nixpkgs is a mess.'),(520,'1980-01-01 00:00:00',5,'en','1620901706','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Once I started using NixOS on my laptop (because I became convinced that declarative system configuration was the way), I had no choice but to learn Nix to setup development environments','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Flakes and their lockfiles for reproducibility','Development environments in each project','','Add: better error messages for the language\r\nRemove: nix-env and its pitfalls\r\nChange: the fragmentation of documentation','Maybe Guix, but that wouldn\'t exist without Nix, so probably Docker.','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Had a self hosted server with about 10 services deployed, each service configuration versioned in docker-compose files. Got tired of it all, redeployed everything with NixOS.','Y','','Y','','','','','Declarative configuration','I could completely wipe my disk and have the exact same working environment ready to go in a few minutes','','','Archlinux','Y','','','','','','','','','','i3','','',''),(521,NULL,1,'en','882290791','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','Y','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(522,'1980-01-01 00:00:00',5,'en','754097230','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I don\'t rememeber','','','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Declarative, versioned configuration management','Reproducability','Uniform configuration language/style','Make flakes be the standard everywhere, unify their interface, improve their documentation and tutorials','Ansible, and a tissue to wipe my tears of sadness.','','','','Y','Y','','Y','','','','Y','','','drone CI','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I don\'t remember, sorry','Y','Y','Y','Y','','Y','','Reproducible and versioned configuration management','','','Better flake integration, make it the default. Fix and extend networking modules. ','guix','Y','','','','Y','','krops','','','','awesomeWM','https://search.nixos.org','nixops','Thanks for the great work!'),(523,'1980-01-01 00:00:00',5,'en','2120071269','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','It was advertised by friends. All the features of Nix and the cross platformness made it seem like a better option than Arch Linux\' package manager which I was using at the time. I also heard about Home Manager and how it could replace my dotfiles manager which was GNU stow at the time.','','','','','','Android','Y','','Y','','Y','Y','','Y','','','','Y','','cross platform','package recipe','system configuration','','The Arch Linux package manager.','','','','','Y','','','','','','','','','','','','Y','Y','Contributing packages','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Since I had already bee using Nix on Arch Linux NixOS seemed like the next step.','Y','','Y','','','Y','','system configuration','rolling back','','','Arch Linux','Y','','','','','','Home Manager','','','','Sway','','','I have no plans to switch away from NixOS. It\'s great.'),(524,'1980-01-01 00:00:00',5,'en','99853928','A2','A3','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','i really like the idea of having a reproducible system, defined by text files that i could then comment so i wouldn\'t forget why things were configured a certain way','','','','','','','Y','','','','','','','','Y','Y','','Y','','a declarative way to define my environment','ability to not clutter my environment when i need a one-off tool for a specific project','easy rollbacks','would be nice if the documentation was a bit more approachable - things like changing the stdenv to use clang instead of gcc or overriding a derivation with some local patches/version bump took me an embarassingly long time to figure out, and only thanks to nix chatlogs and forum posts','i would try to make docker containers with the right tools inside to build all my projects','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','i don\'t want to have the responsibility of maintaining something for others at the moment, i\'m using nix/nixos fairly casually','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','as a mainly windows user i\'ve slowly been drawn to linux over the years, but unfortunately each time i reinstalled linux there were always more steps than anticipated in order to have my machine working as i wanted. stuff like having a wifi card with drivers that weren\'t in the kernel, etc. \r\ni would always forget/get nervous about the random changes i would do to my system right after i reinstalled in order to have it working. the idea of being able to reliably reproduce those changes from files really appealed to me.','Y','','','','','','','the ability to figure something out once, and then i don\'t have to worry about it anymore because it\'s in a file i wrote and commented','being able to setup something that is as \"complex\" as nvidia prime offload with some very simple exposed options because someone smarter than me figured it out','easy rollbacks','i\'m a bit overwhelmed by all the different ways to do the same thing (flakes vs not, home-manager or not) though i do understand a part of this is because nix seems to be in a big transition phase to flakes','probably an easy to install distribution like antergos or manjaro, and hope that my hardware is supported','Y','','','','','','','','Y','','','','','i love the idea of nix/nixos! i really do think this is the future though i\'m probably barely scraping the surface of what nix allows me to do because i\'m a bit overwhelmed by how to do things the \"right\" way'),(525,NULL,2,'en','718786307','A2','A3','fem','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','The first time I started using NixOS, I was procrastinating during my PhD, but stopped using it. Later, I fell into an unhealthy relationship with GCL, and NixOS was a way to feed my habit after I left Google.','','Y','','','','','Y','','Y','','','Y','Any Linux machine I can.','','','','','Y','','Declarative lazy config language & module system.','Rollbacks.','Unified build frontend (make/maven/etc ugliness can be hidden).','Decouple it from the /nix store path, either for $HOME/nix/ or some entirely different store (S3 or whatever).','Debian + ugly shell scripts.','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(526,'1980-01-01 00:00:00',5,'en','1385684712','A6','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Cleanest dependency management\r\n\r\nCleanest package manager\r\n\r\nSold on the philosophy\r\n\r\nFlake is a godsend','Y','Y','','','','','Y','','','','','','','','Y','Y','','Y','declarative package management using Flakes','Flakes','Environment management','Project dependency management','Have a much better nix lsp, with autocompletion, intellisense, static analysis, etc.\r\nDocument the useful internal functions.\r\nWave away pre-flake stuff.\r\nUse either a statically-typed ML-like language (eg., OCaml) instead of Nix or a lisp\r\n','Guix?','','','','Y','Y','','','','','','','','','','','','Y','','','Y',NULL,'N','Y',NULL,'Mainly using macOS right now, with Nix package manager as the driver.\r\n\r\nMy non-mac machine is NixOS.\r\n\r\nIf I were to move off macOS, I would go back to NixOS.','Mainly using macOS right now, with Nix package manager as the driver.\r\n\r\nMy non-mac machine is NixOS.\r\n\r\nIf I were to move off macOS, I would go back to NixOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-direnv','',''),(527,NULL,1,'en','1932239440','A2','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(528,'1980-01-01 00:00:00',5,'en','600612741','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','','IT Architect','','Y','','Y','','iOS, Android','N','Y',NULL,'I don’t enough time to learn the language.','Interested in declarative configuration.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I don’t have enough time to learn the language.','Interested in declarative configuration for operating system.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(529,'1980-01-01 00:00:00',5,'en','1733192146','A2','A3','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','The fact that customizing existing packages is trivial because you always start from a working build. With other package managers, you would first need to set up a building environment which is often tricky to get right.','nix-diff','behavioral reproducability','I\'ve become increasingly convinced that content hashing schemes used in various kinds of lock files should have support added in Nix. E.g. Golang and Elixir lock files which are otherwise hard to emulate.\r\n\r\nI think they are best supported through plugins enabled by default since that means that future plugins can be added to the first version of Nix supporting hashing plugins and updating Nix to access the newest languages isn\'t necessary.','Whatever package manager is included in the distro or language I\'d use, plus extensive documentation of manual steps.','','','','','','','Y','','','','','','','','https://github.com/serokell/nix-npm-buildpackage\r\nhttps://github.com/NixOS/cabal2nix\r\nhttps://github.com/nix-community/poetry2nix\r\n','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I\'d heard it\'s good from a friend but got stuck installing it on getting full disk encryption right. After I got a Nix job I had enough time to work it out and have used it ever since.','Y','Y','Y','Y','','','','Configuration using a single language with good abstraction.','Atomic upgrades and rollbacks.','Testing a system configuration in a VM is trivial.','','Void Linux or FreeBSD.','','','','','','Y','','','','','i3','nixpkgs, nixfmt, nix-diff','NixOps','I feel some of the core C/C++ build mechanisms, like cc-wrapper and @REPLACEMENTS@ are too arcane and/or undocumented. I really would like to understand my entire system and those parts are my biggest obstacle to that.'),(530,NULL,NULL,'en','1697174348',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(531,'1980-01-01 00:00:00',5,'en','1833345951','A1','A2','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','ArchLinux','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Declarative',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(532,'1980-01-01 00:00:00',5,'en','1962773316','A2','A3','male','','','','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I\'ve been a Gentoo user before, but since I also have Gentoo on my work laptop, I didn\'t want to manage both of those. I decided for NixOS because the laptop is unlikely to be rendered unusable while also be at least as configurable as Gentoo, in some ways it is even more configurable.','','','','','','','private laptop','Rollbacks','Configurability','Packaging is relatively easy once you get past the steep learning curve of the Nix language','system wide use flags from Gentoo, but I miss them too much, and I understand that it\'s not viable to have all combinations built by hydra','Gentoo or Debian','Y','','','','','','','Y','','','','','',''),(533,'1980-01-01 00:00:00',5,'en','624182619','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I saw that some Haskell people were using Nix. It looked interesting and I really liked the idea of reproducibility and declarative definition of packages and systems. I started with Nix pills but really got into Nix when I moved my development environment configuration into Nix. ','','Y','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','Declarative configuration','Support for almost every package/language','Reproducibility','Support for catching builds on a file level to avoid full rebuilds to make builds on CI actually fast.','Guix, Bazel, or some home-spun shell scripts','','','','Y','Y','','','','Y','','','','','','spago2nix','Y','Y','','','N','Nothing really, I guess I\'m just shy.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I started using NixOS after using Nix for a while and wanting to go all-in.','','','Y','','','','','Declarative configuration','Rollbacks','Having my system configuration version controlled','An automated installer that you can configure with Nix.','Arch Linux, Ubuntu','Y','','','Y','','','','Y','','','','NixOS Options Search, NixOS package search, Niv','Haskell.nix','Keep up the great work!'),(534,'1980-01-01 00:00:00',5,'en','1847217645','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I like the idea.','','','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative system management','Declarative, ad-hoc environment management','','I would add much more documentation.','','','','','Y','','','','','','','','','','','Python, though that seems to be outdated.','Y','','','','N','I just haven\'t had to.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','Y','','','','','StumpWM','niv','','Thank you for doing this survey! :)'),(535,'1980-01-01 00:00:00',5,'en','1584259326','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend told me about it.','','','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','declarative system configuration','single point of entry for development','reproducible environments','add documentation','apt + /etc as git repo + a lot of sweat and tears','','','','Y','Y','','','','','','','','','simple self-written systemd units','','','Y','Y','','N','not knowing how to do something \"right\", what is the canonical way to add packages/overlays (code structure, conventions), too many ways to achieve one thing','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','a friend told me about it','Y','','Y','','','Y','','declarative system configuration','single point of entry','reproducible system states','add documentation','apt + /etc as git repo','Y','','','','','','','','','','xmonad','agenix','','keep up the great work!'),(537,'1980-01-01 00:00:00',5,'en','1060633702','A1','A2','male','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Curiosity','','Y','','','','','Y','Y','','','','','','','Y','','','Y','','Declarative configuration and packages','Atomic update and rollback','Nix shell','Native IPFS caching','Guix','','','','','','','','','','','','','','builds.sr.ht','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Curiosity','Y','Y','','','','','','Declarative configuration and packages','Atomic update and rollback','Nix shell','IPFS caching','Guix System','Y','','','','','','','','','','awesome','','mobile-nixos (lacking maturity; I might look into it again in the future)',''),(538,NULL,NULL,'en','274294126',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(539,NULL,NULL,'en','1712482614',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(558,'1980-01-01 00:00:00',5,'en','1083164070','A2','A3','male','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','Y','','','Easy rollbacks','Reproducibility','Easy to share configs between machines','100% somehow make nix work nicely with other package managers so that we didn\'t have npm2nix, node2nix, yarn2nix, bundlix, something for Rust, another thing for elixir... I know it\'s complicated, but it\'s extremely frustrating that everything has it\'s own specific flow that very often doesn\'t work (just take a look at open issues in various projects).\r\n\r\nAfter 6 months with Nix, I still cannot fully stop using asdf to install ruby and node because some npm package just cannot run when it\'s installed via nix. https://github.com/svanderburg/node2nix/issues/275 ','The thing I had before - combination of Ansible, some scripts and lots of docker containers (still do)','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','N','Lots of noise, pace of change, and nixpkg has its own way of doing many things, very often in various ways. It feels like each bigger module has its own system/approach. ','N','N','It firstly would have to work flawlessly standalone, I mean just nix+home-manager. My biggest worry then, Steam, it would probably take a lot of time to get everything run correctly in order to run \"complicated\" games like Sims or Cyberpunk. I\'m also using NVIDIA GPU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','node2nix, bundle2nix, bundix - lots of configuration, lots of \"noise\" when I simply want to installed dependencies for some random github project.','I love the ideas behind nix, but I\'m currently only half convinced \"nix\" in the current form is the way and I\'m unsure if it\'s worth the learning effort... '),(540,'1980-01-01 00:00:00',5,'en','206226974','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I stumbled across it together with NixOS (I don\'t know where), tried it for a while on my personal machine and got convinced to introduce it in our company, especially to make it easier to create test environments for less technical people on their MacBooks and to easily run legacy projects using pinned nixpkgs.','Y','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','Flakes, especially with pinned nixpkgs','Reproduce builds on any machine','Easy dev environments that can be separated per project','Interactive flake scaffolding. Apt-get update like preview of to be upgraded packages ','Regular Linux I guess','','','','Y','Y','','','','Y','','','','','','Node\r\nGo','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Stumbled across it and it grabbed my attention while shopping around as a distro to play with on my new desktop','Y','Y','Y','','','','','Generations and thus safe updates','Central configuration','Easy upgrades','','Arch','Y','','','','','','','','','','bspwm','','',''),(541,'1980-01-01 00:00:00',5,'en','1507489814','A2','A4','male','','','','','','Y','Y','','','','','','','','','Y','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using nix primarily in the context of NixOS, because I was fed up with my systems slowly degrading to the point of unusability and for the magic ability to recreate my current system (which is heavily customized to my needs) with a single command on a new machine.','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Declarative system configuration','Deterministic development shells','Ease of deployments (by just copying closures)','With a magic wand I\'d add a type system, since I\'d expect that to improve the discoverability of nixpkgs','- probably still Arch as the OS\r\n- containers to distribute applications\r\n- containers for CI\r\n- sweat, blood and language specific tools for development environments\r\n','','','','Y','Y','','','','Y','','','','','','poetry2nix https://github.com/nix-community/poetry2nix\r\nsbt-derivation https://github.com/zaninime/sbt-derivation','Y','Y','','','N','Didn\'t have the need until now','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','see my answer to the same question concerning my usage of Nix','Y','Y','Y','','','','','','','','','Arch','Y','','','Y','','','','','','','xmonad','flake-utils\r\nflake-compat\r\nnixos-shell\r\nnixos-generators\r\nnumtide/devshell\r\nMic92/sops-nix\r\nserokell/vault-secrets','',''),(542,NULL,1,'en','1009745453','A2','A4','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(543,'1980-01-01 00:00:00',5,'en','521003251','A2','A4','male','','','','Y','','','','','','','Y','','','','','Y','','Y','Y','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','company used it.','','Y','','','','','Y','','','','','','','','Y','Y','Y','Y','','declarative project environments','reproducibility','','add user friendliness and simplicity\r\nenhanced portability, at least to mac\r\nkeep power user capacities','Ubuntu package manager\r\nanaconda and ecosystem package managers','','','','Y','Y','','','','','','','','','','poetry2nix\r\nstackcabal2nix\r\nnode2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','felt natural after using nix as package manager, because I started managing everything with it.','Y','','','','','','','reproducibility','overrides','ease of pinning specific versions','','','','','','','','Y','','Y','','','','direnv integration','',''),(544,'1980-01-01 00:00:00',5,'en','747486849','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Got hooked by the reproducible aspect','','Y','','Y','Y','','Y','','','','','','HPC experiment','','Y','Y','Y','Y','','The nix store and everything around unique identifier','flakes','nix shells','Nix with types','guix','','','','','Y','','','','','','','','','','https://github.com/nix-community/poetry2nix','Y','Y','','','N','Did not needed yet','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was attracted by the configuration aspect, reproducible and all in one place.','Y','','','','','','HPC experiments','ease of configuration','','package availability (not really nixos related tho)','','Fedora','Y','','','','','','','Y','','','','','','Keep up the good work'),(545,'1980-01-01 00:00:00',5,'en','1113617538','A2','A4','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','','','','','','Y','','','Y','','Stateless rootfs (tmpfs)','Git bisectable','Easy to contribute','nixpkgs is *huge* and does not scale well (e.g. slow CI roundtrip times, having to wait 2 weeks for an update to nixos-unstable!), so I think it should be split into smaller repos (which is in the spirit of flakes anyway)','Obarun','','','','Y','Y','','','','Y','','Y','','','','crate2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(546,NULL,NULL,'en','1761935378',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(547,'1980-01-01 00:00:00',5,'en','825305860','A5','A3','male','','','','','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Haskell bandwagon was strong.\r\n\r\nI don\'t use Haskell much now, but stuck with Nix. ','Y','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','Reproducible builds','Strict dependency tracking ','Hash magic ','Use `bear` style build tracing in a FHS container to detect ( most ) dependencies.\r\nBasically you can just `ptrace` and `grep` file read attempts to scrape the bulk of them.\r\n\r\nDrastically improve documentation. ','I would have to use a dozen different tools to fill that gap.\r\n\r\nI\'d honestly wind up creating shit loads of VMs or user profiles like I did previously.','Y','Y','','Y','Y','','Y','','','','Y','','','','Node2nix\r\nYarn2nix ( broken now ) \r\nCabal2nix\r\nGem2nix ( or whatever the broken ruby one used to be )','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Ubuntu blew up and all the Haskell nerds were using NixOS. ','Y','Y','Y','Y','','Y','','','','','Building \"chunks\" of a system within a single config. Home Manager helped here; but with flakes there\'s no separation anymore. ','Debian ','Y','Y','','','','Y','','','','','DWM, XMonad ','','NixOps','You have something in your teeth '),(548,'1980-01-01 00:00:00',5,'en','447917873','A2','A3','male','','','','','','Y','','','Y','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was on Gentoo before discovering NixOS. The package manager kept breaking and required more and more manual interventions. I liked the philosophy of the Nix package manager, and also having administered some GNU/Linux servers of different distributions (and also having quite a bit of dotfiles), the declarative configuration of NixOS seemed particularly interesting. I haven\'t left NixOS as a primary distro since, and am currently working on a Nix packaging solution for internal use at my company, that might hopefully be useful in the future outside in the scientific field.','','Y','','Y','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','','Y','','reproducibility','easy deployment of a closure','flakes','- Better documentation (user documentation, developer documentation, references, guides)\r\n- Stabilized Nix flakes\r\n- A clearer way of packaging apps using flakes (overlay vs. package)\r\n- More consistent reviewers and mergers','Traditional deb/rpm packaging? Or maybe flatpak.','','','','Y','Y','','Y','','Y','','','','','','- poetry2nix: https://github.com/nix-community/poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was on Gentoo before discovering NixOS. The package manager kept breaking and required more and more manual interventions. I liked the philosophy of the Nix package manager, and also having administered some GNU/Linux servers of different distributions (and also having quite a bit of dotfiles), the declarative configuration of NixOS seemed particularly interesting. I haven\'t left NixOS as a primary distro since, and am currently working on a Nix packaging solution for internal use at my company, that might hopefully be useful in the future outside in the scientific field. NixOS is currently only used for CI (Gitlab CI).','Y','Y','Y','','','','','the module system','NixOS tests','rollbacks','- Better documentation (user documentation, developer documentation, references, guides)\r\n- More consistent reviewers and mergers\r\n- RFC42 everywhere\r\n- Long-term support releases, for adoption in companies','Probably Debian for servers and Arch for desktop','Y','','','','','Y','','','','','sway','- home-manager: https://github.com/nix-community/home-manager/\r\n- NUR: https://github.com/nix-community/NUR\r\n- musnix: https://github.com/musnix/musnix\r\n- flake-utils: https://github.com/numtide/flake-utils/\r\n- robotnix: https://github.com/danielfullmer/robotnix','','Thank you so much for your work! I think a community survey is quite welcome'),(549,NULL,NULL,'en','1208217700',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(550,NULL,NULL,'en','1865418683',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(551,'1980-01-01 00:00:00',5,'en','1762235352','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Macports was broken more and more, came across nix, read good things about it and got it running quick.','Y','Y','','','Y','','Y','Y','','','','','','','Y','','','Y','','pinning exact versions','nix shell ','nix shell in the hashbang of e.g. python scripts','Better documentation with more examples\r\nnix installer should also be runnable as root\r\na static analyzer for derivations, e.g. warn when there were unused attributes. i spent hours chasing a \"bug\" when it was only a typo in an overridden attribute','guix?\r\nzypper\r\nmacports','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'homa-manager\r\ndarwin-nix\r\nemacs-overlay','',''),(552,NULL,4,'en','1341458549','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(553,NULL,2,'en','1703187624','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','Hobbyist programmer','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','','','To manage my system via flakes','A2','I love the reproducibility\r\nLegit makes my life more convenient, even if I still have a lot to learn, and I struggle to understand some concepts, but that is fine. ','','Y','','','','','','','','','','','Home desktop','','Y','','','Y','','How easy it is to use ZFS, no need to worry about kernel mismatch and such','Ability to declaratively configure system','Ability to specify what I want to use for nixpkgs, e.g whether to use unstable, or 21.11, without much issues','Not per se add, but more of, create more, easily accessible tutorials, with low entry level. While documentation is nice, tutorials also can be very helpful, especially to the ones that need some practice, to see how things are done first to really get grasp on things','Gentoo, But that is because its about second distro that I like most, and ZFS also was pretty pain-free to set up there.','','','','','Y','','','','','','','','','','','','Y','','','N','Lack of my understanding, and maybe resources to actually understand those things properly,\r\nBut that will change with time, I Just need to work on it myself more',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(554,NULL,2,'en','557311162','A2','A4','male','','','','','','Y','Y','Y','Y','Y','Y','','','','','','','Y','','','','','','','','Y','Y','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I dove deep into functional programing, mainly using Haskell.\r\nNixOS is frequently used by that community and it caught my interest due to it\'s declarative and reproducible nature.\r\n\r\nSo I started using it mainly as a package manager and system configuration tool on my MacOS machines.\r\n\r\nI\'m using NixOS and NixOps to manage a small number of Raspberry Pi:s for different home automation tasks at 2 locations.\r\n\r\nI have later also switched one of my personal non Mac systems over to NixOS.','Y','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','Declarative system configuration and management','Software packaging and build tool','Ease of mind with regards to any fears related to upgrades and experimentation','- Make cross-compiling to AArch64 always work.\r\n- No more breaking package builds on Darwin.\r\n- Improve the static verification of the Nix programs. Maybe some kind of static type system.','I have used tools like Vagrant and Ansible to solve these tasks previously. I would probably be stuck there if Nix didn\'t exist.','','','','','Y','','','','Y','','','','','','npm2nix\r\ngo2nix','Y','Y','','','N','Haven\'t had the time or energy to produce anything of the quality that I feel are appropriate.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(555,NULL,4,'en','1248149921','A2','A3','male','','','Y','Y','Y','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y','','Y','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','Y','','A2','','Y','Y','','','','','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(556,NULL,NULL,'en','977640127',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(557,NULL,2,'en','188913812','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','N','N','More tutorials -- time is at a premium, need to know there\'s a guide that\'ll take me to where I want to get.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(559,NULL,0,'en','1425979976','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(560,'1980-01-01 00:00:00',5,'en','882520057','A2','A2','male','','Y','Y','','','','Y','','','Y','','','','','','','','','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I loved Haskell and a friend recommended Nix to me. I found out I also loved Nix.','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','','','','','','','krops','','','','I3','','',''),(561,NULL,2,'en','1208352503','A2','A2','male','','','','','','','','','','Y','Y','','','','','','','Y','','','','','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was developing a Haskell project and was disappointed with Windows and Arch Linux.','','','','','','','Y','','','','','','','Y','Y','Y','','Y','','nix develop (nix-shell with flakes)','Declarative system management (NixOS)','nix profile (nix-env with flakes)','','I\'d stick to other minimal Linux distros and I\'d try Guix','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','I didn\'t find a package I missed in nixpkgs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(562,'1980-01-01 00:00:00',5,'en','1838761698','A2','A4','male','','','Y','','','Y','Y','Y','','','Y','','','','','Y','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','i love declarative stuff, and geeky, minimalistic, programmable OS installs','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','reproducibility','declarative as code (and via flakes)','being able to reproduce a complete multi-stack dev setup, iso-prod','more docs/how-to that *still works* after 6 months, far better error messages.','docker(-compose), still do sometimes due to its omnipresence and simplicity','','','','','Y','','','','','','Y','','','','haskell2nix','Y','Y','','','N','I wanted to, but I stopped because I didn\'t want to do the trial and error loop locally (bad idea). I wanted hydra to tell me, but it took to much time and abandonned since. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I loved using nix to manage reproducible haskell/rust/... projects for dev environments/CI and wante to apply the idea further.','Y','','Y','','','','','immutable, rollbackable boot','minimalism, grow by composition of multiple decentralized sources (flakes)','big package set, nicely activable in a unified config','more packages, faster feedback loop for nix rebuild switch, better error messages, better, more stable docs.','arch, (defunct) coreos, linuxkit, rancher-os','Y','','','','','','','','','','i3 + some gtk/gnome stuff','','','thanks :) nix is an amazing idea!'),(563,NULL,2,'en','1093397793','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','','Y','','Y','','','Y','Y','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','N','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(564,'1980-01-01 00:00:00',5,'en','1721003449','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','an evangelist forced it on us','','Y','','Y','','','Y','Y','Y','','','','','Y','Y','Y','','Y','','atomicity','dependency','no damage to the system','better caching wihtout using experimental flakes\r\nno functional programming','nothing','','','','','Y','','','','Y','','','','','','go\r\npython','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','tried all linux distros, nixos is better to work with nix','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(565,'1980-01-01 00:00:00',5,'en','107445835','A6','A3','fem','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Was frustrated at Arch suddenly not working one day and I couldn\'t rollback.','Y','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Reproducibility and the ability to rollback.','Easy system configuration using modules.','Huge number of packages.','- A typed configuration language with first-class IDE support\r\n- Make everything flake-first\r\n- Borrow ideas from Guix heavily','Guix\r\nArch','','','','Y','Y','','','','','','Y','','','','https://github.com/DavHau/mach-nix/','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Sway','home-manager','',''),(566,'1980-01-01 00:00:00',5,'en','684075117','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(567,'1980-01-01 00:00:00',5,'en','1701690760','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','was pulled in by the concept of nixos, a declarative, reproducible configuration for my system and have been hooked ever since','','Y','','','','','','','','','','','','','Y','','','Y','','declarative configuration for my system with nixos','nix development shells','source based package management providing easy modifications','definitely documentation of some of the less documented features like flakes','','','','','','Y','','','','','','','','','','','Y','Y','','','N','recently started using nix and hence lacking in the required knowledge','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','pulled in by the novel concept of a declarative configuration and had an itch to try something different from the rest of the distributions','','','','','','','home pc','a single configuration file to manage my entire system with rollback functionality','easy way to modify packages','reproducibility','documentation for flakes and the other less documentated features like specifications','Fedora linux','Y','','','','','','','Y','','','i3/sway','home manager','not really any','you are doing a great job! i hope to be able to contribute in some way in the future'),(568,'1980-01-01 00:00:00',5,'en','1258770366','A2','A3','male','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','Y','','Declarative change mamagement','','','','','','','','','Y','','','','','','','','','','yarm2nix','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','Y','Y','','Y','','Y','','','Y','','i3','','',''),(569,'1980-01-01 00:00:00',5,'en','114860531','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Initially got interested as Nix seemed to be the only sane way to use GHCJS, then got sucked into using the Nix package manager for more and more things, and finally migrated everything to NixOS :)','Y','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Declaratively specifying software environments','Reproducibility','Caching','Add some form of type system to Nix (cf. Nickel)','It feels hard to go back to anything else, so right now, I would probably check out Guix ','','','','Y','Y','','Y','','','','Y','','Y','',' - haskell.nix https://github.com/input-output-hk/haskell.nix\r\n - npmlock2nix https://github.com/nix-community/npmlock2nix\r\n - naersk https://github.com/nix-community/naersk','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','On local machines: Got tired of using a usual dotfiles approach of sharing configuration between different files (not all config is part of dotfiles; often, small modifications on some machine are necessary which is quite ugly to accomplish without weird templating/lots of copying).\r\nOn personal servers: Losing track on what I installed on which server, not being able to share e.g. port values between different configuration bits\r\n\r\nNixOS solves all of these issues and much more!','Y','Y','Y','','','','','Sharing Nix code between different machine setups','Atomic upgrades and rollbacks','Easily patching installed packages (older/newer versions), without having to worry about compatibility','Some magic form of garbage collection/deduplication','Probably going back to Arch','Y','','','Y','','','','','','','i3',' - home-manager https://github.com/nix-community/home-manager/\r\n - nix-direnv https://github.com/nix-community/nix-direnv\r\n - emacs-overlay https://github.com/nix-community/emacs-overlay/ (especially the use-package integration)\r\n - the easy-{purescript,dhall}-nix projects are nice when nixpkgs is lacking behind\r\n - Cachix\r\n - nix-index and comma\r\n - nixpkgs-fmt https://github.com/nix-community/nixpkgs-fmt','',''),(570,'1980-01-01 00:00:00',5,'en','364153548','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','functionnal','Y','Y','','','','','Y','Y','','','','','','Y','Y','','','Y','','nix-shell','nix-env','RO and functionnal system for nixos','','OpenBSD or guix','','','','','','','Y','','','','','','','','','Y','','','','N','time','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','using nix-shell for build stabillity over different build env','Y','Y','','','','','','RO system','Configuration from /etc/nix','','','OpenBSD','Y','','','','','','','','','','spectrwm','','',''),(571,NULL,-1,'en','420936468','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(572,'1980-01-01 00:00:00',5,'en','427010314','A5','A3','male','','','','','','','','Y','','','','','','','','','','','','','','','','','Twitch Streamer','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Gaming','A1','I was an arch user for ages, and I saw Nix, and decided to give it a shot. Long story short, I discovered I loved being able to configure my system from a config file basically and that sold me.','','Y','','','','','Y','','Y','','','','Gaming PC','','Y','','','Y','','Ready-to-Use almost immediately','Local Environments','Reproducibility.','A GUI package manager, or at least a simpler way of building a system - Right now it\'s quite verbose, and it feels like it could be simplified without compromising the quality of the OS. For example, a the GUI could load your Nix files, and by reading it represent the objects within it as, for example, checkboxes for booleans, submenu\'s for included files, and so on. It could allow easy modifications, and prevent syntax errors. It could even offer autocomplete in terms of saying \"I want this package\" and it could provide a bunch of defaults for the user to configure.','Arch Linux','','','','Y','Y','','','','','','','','','','dotnet2nix - The one suggested in the manual.','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Gaming','A1','I liked the idea.','Y','','Y','','','','Gaming','','','','','Arch','','','','','Y','','','Y','','','I\'d love to use Budgie','','deploy-rs',''),(573,'1980-01-01 00:00:00',5,'en','499447903','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Back in 2019, I got a brand new laptop (Dell XPS13) and if I recall clearly, the latest NixOS image was the only one which worked right out of the box. Also, I was seeing more and more people talking about it online, so I wanted to try it. ','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','','','Y','','nix-shell with a shell.nix + direnv','nix-shell to test packages easily','','','Guix or Debian + ansible','','','','','','','','','Y','','','','','','','Y','','','','N','I\'m not sure I would have the time maintaining them correctly afterwards.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same story as nix :-)','Y','Y','Y','Y','','','','Declarative configuration (configuration.nix / home-manager)','Complexity is well hidden for a lot of things','','I would like something like `guix deploy` but easier to configure. It\'s been a while since I last tested nixops and morph, so maybe these projects could fit the bill now.','Debian','','','','','','Y','','','','','bspwm','home-manager','','Thanks you for Nix and NixOS!'),(574,'1980-01-01 00:00:00',5,'en','1034935891','A2','A4','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','because it looks like a good idea','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','Arch Linux','','','','','Y','','','','','','','','','','','Y','','','','N','- Maybe I underestimate my Nix skills\r\n- I am using NixOS stable on my machines, I think contributions will go to unstable, so it will have to maintain my own overlay anyways\r\n Maybe this can be worked around somehow using flakes but I don\'t understand it well enough.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Tired of long setup of new machines or porting configuration snippets between machines.','Y','','Y','','','','','','','','','','','','','','','','','','','','i3wm','','',''),(575,NULL,1,'en','2008901491','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(576,'1980-01-01 00:00:00',5,'en','485379939','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','To have less state on my personal machine','','Y','','','','','Y','','','','','','','','Y','','','Y','','Declarative system configuration','Large, up-to-date package selection','Easy roll-back','Reduce complexity of tooling','Ubuntu or Arch (with traditional package managers)','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','To have less state on my machine and to learn about Nix','Y','','','','','','','Declarative configuration','Large, up-to-date package selection','Easy roll-back','Reduce size of Nix store','Ubuntu or Arch','','','','','','','','','','','Sway','','',''),(577,'1980-01-01 00:00:00',5,'en','1168751331','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Developer, build systems','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I originally tried nix 6~7 years ago, when I wanted a way to install more up-to-date versions of git and emacs on my accounts on university computers without constantly manually building them. Sadly there was a file quota as well as a disk space quota, which nix blew through very quickly with its symlink farms, especially at the time, so it left a bad impression and I left for a gentoo prefix quite quickly.\r\n\r\nThen a few years ago I met a few people from CERN (if I recall correctly) at a conference, who were apparently using nix and explained it to me from a different perspective. That got me much more interested.\r\n\r\nI\'ve always needed a way to make my dotfiles work on many devices with minor patches between all of them, and was getting tired of rebasing branches against each other. I was also interested in managing my VPSes declaratively, which I was pretty sure was impossible after trying Fedora silverblue, kubernetes & co, which I found to largely only help with declaratively managing services, not the hosts themselves. I\'ve never liked ansible conceptually either.\r\n\r\nNix + home-manager seemed to fill that former niche perfectly, and once I started using it for the former use case I quickly realized just how powerful nix was, and how many of my gripes with traditional OS management NixOS solves. Within a couple of months I\'d installed NixOS everywhere and it became my go-to for everything (hopefully even my phone one day!) - pure nix still sees use where I can\'t control the OS of course :)','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','Y','','The declarative configuration management that makes NixOS/home-manager possible','Transient, shareable development environments using nix-shell/nix develop','(Mostly) reproducible software builds. It falls a bit short due to the common use of FODs and lack of convenient source mirroring, but is better than bazel and more readily usable than buildstream.','I\'d really consider removing nix-env, or at least magically turn it into less of a footgun for new users.','*Maybe* ansible, assuming guix doesn\'t exist either?','','','Y','Y','Y','','','','','','Y','','','','https://github.com/svanderburg/node2nix\r\nhttps://github.com/nix-community/naersk - intend to move to cargo2nix one day\r\nhttps://github.com/tadfisher/gradle2nix - well, at least I try and fail to package something Java related every few months','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','This is a copy of my nix story, since I of course use them at the same time - after learning how powerful nix is and experimenting with home-manager on Arch, I quickly switched to NixOS everywhere.','Y','','Y','Y','','','','Convenient, traceable downstream modifications, from configuration to packages','Usable mixing of stable/unstable packages','Declarative, minimal creation of container images (both NixOS containers and dockertools-based ones)','I\'d add a useful way to build, install and manage flatpaks.','If guix doesn\'t exist either, probably gentoo/arch, perhaps I\'d give Fedora silverblue another shot.','Y','','','','','','','','','','stumpwm','https://github.com/nix-community/home-manager\r\nhttps://github.com/berberman/nvfetcher','https://github.com/tadfisher/gradle2nix - gradle\'s fault for being unusable\r\nhttps://github.com/DavHau/mach-nix - nixpkgs\' python support is good enough for me most of the time\r\nhttps://github.com/NixOS/hydra - lacked a way to declaratively define a gitea access key without exposing it to the nix store at the time (and still does? I think I opened an issue...)','Thanks for all these cool projects :)'),(578,NULL,2,'en','980864449','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','In the beginning it was about exploring something new. I was distro-hoping, and I think that I felt that I didn\'t see much new when switching distros then.','','Y','','','','','Y','','','','','','Allround PC','','Y','Y','','Y','','Almost total control of my system','Access to an insanely huge package repository','Easily create development environments that doesn\'t pollute the rest of the system.','I feel that it\'s hard to read and understand Nix code. I don\'t know if it\'s the result of how the language itself, or lack of development tools and documentation. I get the feeling that whenever I read some nontrivial Nix code, a lot of stuff happens in the background so I don\'t know what context stuff is.','Would Nix have existed, and then disappeared? Or the concepts of Nix never had been developed?\r\n\r\nGuix, or something similar, in the first case.\r\n\r\nOtherwise I don\'t really know. Fedora or Void I think.','','','','Y','Y','','Y','','','','','','','','I probably use a lot of them, but I don\'t know a method for searching for them in the Nix store.','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(579,NULL,NULL,'en','1601692502',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(580,'1980-01-01 00:00:00',5,'en','287444862','A2','A3','male','','','','','','','','','Y','','Y','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','Declarative and unified system configuration','Easy to deploy to other machines with tools like NixOps','','- Better support for language-specific dependency management; the *2nix tools are not particularly pleasant to use\r\n- Make buildRustPackage (and similar language-specific) packages reproducible\r\n- Support or at least documentation for building projects that use than one language e.g. backend with bundled frontend\r\n- A syntax revision of the Nix expression language similar to ReasonML/ReScript\r\n- Add types to the Nix expression language\r\n- Better documentation and discoverability for the stdlib functions and everything used to build packages','','','','','','','','','','','','','','','','opam2nix (https://github.com/timbertson/opam2nix), buildGoModule, buildRustPackage','Y','','','','N','Packages for my personal overlay are usually highly specific to my setup and I\'m not particularly willing to spend time on making them generic enough to have a place on Nixpkgs.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','I was drawn in by the promise of having a single configuration file for the whole system. I always disliked the mess of software wanting custom installation methods that lived outside of the package manager and all the little tweaks to /etc files I\'d make and then forget every time, and since NixOS had a solution to that I started using it on my laptop.\r\nFurther down the line I also started using it for my servers because it makes it easy to tell what I\'m actually running on a server; I tend to just leave them running for months and sometimes I forget how to even access them so when I have to make changes I can easily tell what\'s going on by just looking at the configuration file.','Y','','Y','','','Y','','','','','','','','Y','','','','','','','','','XMonad','','',''),(581,NULL,1,'en','382687754','A2','A4','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(582,'1980-01-01 00:00:00',5,'en','26557852','A2','A4','-oth-','non-binary','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I learned of NixOS at FOSDEM 2011 or 2012, and as a way to learn it, immediately replaced the OS on my work laptop (Ubuntu at the time) with NixOS to force myself to have to learn.\r\n\r\nI never went back; it\'s now on personal and work laptops, home server, cloud servers and raspberry pis.','','','','','Y','','Y','','Y','Y','','Y','','','Y','Y','','Y','','','','','','apt/ubuntu','','','','','','','','','','','','','','','node2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I learned of NixOS at FOSDEM 2011 or 2012, and as a way to learn it, immediately replaced the OS on my work laptop (Ubuntu at the time) with NixOS to force myself to have to learn.\r\n\r\nI never went back; it\'s now on personal and work laptops, home server, cloud servers and raspberry pis.','Y','','Y','Y','','Y','','','','','','','Y','Y','','','','','','','','','i3wm','home-manager','',''),(583,NULL,1,'en','1054550552','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(584,'1980-01-01 00:00:00',5,'en','208271339','A1','A4','male','','','','','','','','','','Y','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Grew up with Windows, had tried various linux distros over the years, but none stuck with me. Liked the direction WSL was headed in but was frustrated with the limited Linux experience WSL offered; found NixOS, and the way it lets me mess up and roll back (especially with the OS config under git version control) gave me the confidence to switch to NixOS full time.\r\nOnly two things keep me dual-booting to Windows; the desire to keep work and home separate, and not enough disk space to keep both Steam and a lenient NixOS garbage collector.','','Y','','','','','Y','','Y','','','','','','Y','','Y','Y','','Determinism (\"what\'s in this file is *all* you need, now and ever, to do the things described in the README\")','Painless experimenting & rollback, like \"nixos-rebuild test\" and the \"generation\" option offered at boot time','A neat way to output multiple json/yaml/whatever files, without introducing the drama of an effectful turing-complete language','I would add some kind of context-aware \"intellisense\" feature to the tools that edit `.nix` files.','probably WSL2 + multiple (identical?) distros','','','','','Y','','','','','','','','','','https://github.com/cachix/elm2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Grew up with Windows, had tried various linux distros over the years, but none stuck with me. Liked the direction WSL was headed in but was frustrated with the limited Linux experience WSL offered; found NixOS, and the way it lets me mess up and roll back (especially with the OS config under git version control) gave me the confidence to switch to NixOS full time.\r\nOnly two things keep me dual-booting to Windows; the desire to keep work and home separate, and not enough disk space to keep both Steam and a lenient NixOS garbage collector.','Y','','Y','','','','','Determinism (\"what\'s in this file is *all* you need, now and ever, to do the things described in the README\")','Painless experimenting & rollback, like \"nixos-rebuild test\" and the \"generation\" option offered at boot time','Painless experimenting & rollback, like \"nixos-rebuild test\" and the \"generation\" option offered at boot time','I would add some kind of context-aware \"intellisense\" feature to the tools that edit `.nix` files.','probably WSL2 + multiple (identical?) distros','Y','','','','','','direnv','','Y','','','','home-manager',''),(585,'1980-01-01 00:00:00',5,'en','565740588','A5','A2','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I\'ve always despised installing software, I can\'t stand normal package managers putting files all over the filesystem. I found nixos 3-5 years ago, but it was over my head, but I kept taking stabs at it intermittently in hopes that I could make it work. Recently, I needed to completely redo my home server, and I took the opportunity to make it Nixos instead of FreeBSD. That snowballed, and I switched my main personal laptop from Gentoo to Nixos. Ever since, I\'ve been starting my programming projects with default.nix or more recently flake.nix.','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','reproducible builds','declarative environments','Independently updatable programs (via flakes)','Nix needs static typing. It can be very aggravating to track down type errors, especially in nixos modules, without static type checking. ','Docker','','','','Y','Y','','','','','','','','','','n/a','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I found nixos 3-5 years ago, but it was over my head. The promise of a single configuration file to describe a whole system was too good to pass up, so I kept taking stabs at it intermittently in hopes that I could make it work. Recently, I needed to completely redo my home server, and I took the opportunity to make it Nixos instead of FreeBSD. That snowballed, and I switched my main personal laptop from Gentoo to Nixos. In the process, I learned a lot about managing NixOS, and it\'s made all the difference.','Y','','Y','','','','','Centralized, declarative configuration','Modules','Rollbacks','Conventions between the different modules vary greatly, leading to an inconsistent experience. When I set up my servers, I\'ve often resorted to reading the module\'s source.\r\n\r\nI think NixOS would benefit greatly from some standardized conventions and better documentation.','I don\'t think there\'s any alternative to Nixos, so I\'d probably just settle for Debian and compartmentalize with VMs or containers to make management easier.','Y','','','','','','','','','','Sway','home-manager','','I really like flakes, but the way they were introduced and the conflict they created makes me a little worried about the future of the project. I think changes are best made well after everyone\'s tired of waiting. Maybe not as slow as Go is (see generics proposal), but certainly closer to their approach is better, in my opinion.'),(586,'1980-01-01 00:00:00',5,'en','1832711303','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I want full reproducibility of my entire environment everywhere I go.','','Y','','','','','Y','Y','','','','','','','Y','','','Y','','nix-shell','nix flakes','nix run','better documentation, --> EXAMPLES! <-- on how to use various functions of the nix language. It\'s super hard to find out how to use `buildGoModule`, or some other in-built function.\r\n','idk, would probably google some substandard environment manager and use that - I\'m really tired of nvms/pyenvs and what not. Doing dev stuff inside a container, maybe?','','','','','Y','','','','','','','Y','','','','','Y','','','N','poor documentation of nix functionalities, especially - lack of examples','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','told ya - I want my environment to be reproduced exactly, wherever I go.','Y','Y','','','','','','','','','Please, provide people with an easy way to install .deb packages the same way one can \"fetchFromGitHub\" - or, more generally, stuff that\'s been compiled and dynamically linked for the \"regular\" GNU/linux distributions. Preferably with a clear, full-featured example on your wiki.','guix. Or maybe artix','Y','','','','','','','','','','bspwm','','various $2nix projects - they\'re simply undocumented or plain outright deprecated.','just three things:\r\n- EXAMPLES, EXAMPLES, EXAMPLES! I love the way terraform docs do it, for instance\r\n- easy way to install \".deb\" packages\r\n- let us run stuff that\'s been dynamically compiled for other distros - such as ubuntu/debian. Some premade \"compat\" flake?\r\nThank you for your work, guys! You people are awesome.'),(587,'1980-01-01 00:00:00',5,'en','158356901','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Started using NixOS and Nix as a result of that','','','','','','','Y','','','','','Y','','','Y','Y','','Y','','Home Manager configuration','Ephemeral shells/nix-shell','Integration with languages/toolchains (*Packages.*)','Improved documentation for specific Home Manager modules, especially for adding missing packages/extensions','GNU Guix package manager','','','','','','','','','','','','','','','cabal2nix https://github.com/NixOS/cabal2nix\r\nnode2nix https://github.com/svanderburg/node2nix\r\ndconf2nix https://github.com/gvolpe/dconf2nix','','','','','N','Lack of knowledge/skill','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Started with Manjaro as first Linux distribution but got frustrated with the method of package management and moved onto NixOS after seeing a video by DistroTube. Haven\'t been back to Windows or FHS since.','Y','','','','','Y','','Declarative + safe configuration with configuration.nix','Integration with Home Manager','Rolling back from the boot menu','- Making it easier to sort out problems with running standard executables, e.g. those that IDEs like Intellij IDEA download automatically\r\n- Quick modular/testing rebuilds to quickly try small changes before turning it into a full generation','Guix System','Y','','','','','','','','','','Openbox, Sway','Home Manager','','Nix, NixOS, Home Manager, etc. are amazing contributions to the Linux and MacOS community, especially given they\'re free!'),(588,'1980-01-01 00:00:00',5,'en','1396689801','A2','A4','male','','Y','','','Y','','','','','','','','','','Y','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','deterministic builds','','','switch from nix to PureNix','Guix','','','','Y','Y','','','','','','','','','','poetry2nix\r\nmachnix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','full system rollback','development environments','','switch from nix to PureNix','Guix','Y','','','','','','','Y','','','','','',''),(589,'1980-01-01 00:00:00',5,'en','1367741259','A1','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I\'ve started to use Nix with NixOS, so I will post full story on next page','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Nix develop and nix-shell -p','','','Fully-typed language with IDE-like autocomplete. Maybe something like Typescript for Nix.','Docker and probably Ansible','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted to create personal vpn server, and was looking for a way to escape imperative configuration and package management. I already used Docker containers at work and thought of using Docker here as well, but luckily I\'ve stumbled onto some nix-related HN post. After successfully installing my VPN and using it for a couple of months, I\'ve switched my work machine to NixOS as well.','Y','','Y','','','','','Declarative configuration and package management','NixOS generations rollbacks','','Fully-typed language with IDE-like autocomplete. Maybe something like Typescript for Nix.','Arch Linux','Y','','','','','','','','Y','','','Nixpkgs','',''),(590,'1980-01-01 00:00:00',5,'en','359527626','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','The initial reason I forgot, but it was to use NixOS and I enjoyed the declarative nature and being able to roll back breaking changes at startup. I was probably also using nix with haskell. I stopped using it for a few years and now I\'m back, and this time initially started using it to manage my dotfiles with home-manager, now I\'m managing all my machines (except the one windows gaming drive) with nix config in git.','','','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','','','','Finish Nickel and replace the Nix language with it.\r\n\r\nA more polished version of https://github.com/nix-gui/nix-gui seems like it could massively improve adoption among more typical linux users. ','Maybe Guix but I\'m not familiar with it. Excluding that, probably Arch for personal machines and Debian with docker for servers.','','','','Y','Y','','','','Y','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','','','','','','','','','','Y','','Y','','','','','Y','','','Sway','home-manager','NixOps',''),(591,'1980-01-01 00:00:00',5,'en','313761800','A2','A3','male','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','Y','','','','','','','','','','Y','','','Y','','Y','','','','','XMonad','','',''),(592,'1980-01-01 00:00:00',5,'en','1788986762','A2','A2','male','','','','','','Y','','','','','','','','Y','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A couple of students from my school used it so I switched. Was hard to get in but was very interesting. No regrets.','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','','','- more documentation\r\n- faster language interpretation\r\n- cleaner errors messages','Other IaC tools, like ansible, GNU Stow, etc.','','','','Y','Y','','','','','','','','','Drone','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Couple of people from my schools used it, so I switched :).','Y','Y','Y','Y','','','','reproducible builds','extremely customizable distribution / packages','a lot of things are already packaged for NixOS (and others I try to contribute)','- more documentation about the language and nixpkgs idiomatisms\r\n- Better errors messages\r\n- faster nix evaluation','Other IaC tools like Ansible, Packer, Docker etc.','Y','','','','','Y','','','','','i3','Not much I can think of.','Not much I can think of.','Let\'s keep on the good work !'),(593,NULL,1,'en','895237619','A1','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','Y','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(594,'1980-01-01 00:00:00',5,'en','1615938646','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A3','Project at work was configured to build release version with nix','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','','','','package management','flakes as declarative and complete definition of dev environment','flakes as a mean to build project for further deployment','1. LSP for nix (language)\r\n2. some notion of type-checking - as a beginner in writing complete flakes I made many errors that could have been avoided if only there was typechecking in place','Mix of three:\r\n - encapsulation tools offered by language-specifing tooling (npm + nvm, the way sbt works, rustup, etc.)\r\n - Docker \r\n - ansible + (maybe) some form of containers','','','','Y','Y','','','','','','','','Y','','node2nix (https://github.com/svanderburg/node2nix)\r\nsbt-derivation (https://github.com/zaninime/sbt-derivation)\r\n','','','','','N','My personal usage of nix is still very limited, so I haven\'t run yet into situations, where I would need to contribute','N','N','Being in possession of Linux workstation or official \"NixOs on macOS\" thing. As a mac owner, who values the UX and UI of macOS, where things work for me \"good enough\" for my needs - I find it hard to find motivation (and time) to try even the Home Manager.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'This documentation of builtin functions - https://teu5us.github.io/nix-lib.html#nix-builtin-functions. I find it very helpful, and yet I was somewhat surprised it\'s not part of official documentation.','sbtix',''),(595,'1980-01-01 00:00:00',5,'en','1333791019','A2','A2','-oth-','Feminin non-binary','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','In 2017 a friend in a hackspace set up a NixOS machine to host the local git service and I got interested. Then he guided me through an installation on my old laptop. I used it for a few months, then ended up back at Arch. At some point in the beginning of the pandemic I switched to NixOS again, when we started using Nix at work to run large Mail and DNS setups.','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','nix-shells to grab software on the go and have the garbage collector bringing it out again later','Building and packaging janky software becomes less of a pain','Proper working dev environments on all my and my colleagues computers!','','I used a lot of Ansible before.','','','','','Y','','','','','','','','','','pip2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','In 2017 a friend in a hackspace set up a NixOS machine to host the local git service and I got interested. Then he guided me through an installation on my old laptop. I used it for a few months, then ended up back at Arch. At some point in the beginning of the pandemic I switched to NixOS again, when we started using Nix at work to run large Mail and DNS setups.','Y','Y','Y','Y','','','','Reproducibility of my computers: My desktop feels exactly the same as my laptop and work laptop.','Easy Rollbacks','Easy Overlays/patches for stuff that’s broken on upstream. Try that on Ubuntu..','','Arch Linux','Y','','Y','','','','','','','','Sway','','','meow <3'),(596,'1980-01-01 00:00:00',5,'en','2034105111','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','N','time','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','','','','standardized templates for setting up machines instead of everyone doing things slightly different','gentoo (still use it for some systems)','','','','','','Y','','','','','sway','','',''),(597,NULL,1,'en','539789822','A1','A3','male','','','','','','','','','','','Y','','Y','','','','','Y','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(598,NULL,1,'en','194700797','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(599,NULL,NULL,'en','1710032537',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(600,'1980-01-01 00:00:00',5,'en','185995541','A2','A2','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','To have a reproduceable system.','','Y','','Y','','','','','','','','','Personal Computer','','Y','','','Y','','Automatisation','Reproduceability','','I would add a wrapper around nix, so that i could use whatever Configuration / Programming language i would be comfortable with.\r\nAlso; improving the documentation as well as (most likely) embed the home-manager natively.','I don\'t think there is something similar to Nix, so i am not sure.','','','','','','','','','','','','','','','','','','','','N','My lack of knowledge in Nix.\r\nI am looking forward in improving Nixpkgs in the future.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','The same reason as i started using nix.\r\nI want to have a reproduceable, automated system.','','','','','','','Personal Computer','Automatisation','Reproduceability','','Being able to set up a temporary environment in which i can e.g. communicate with the x-server and / or wayland.\r\n','Either GUIX, or i would just stick to Windows.','Y','','','','','','','','','','As of rn: LeftWM (x11)','','',''),(601,NULL,1,'en','1606819507','A2','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(602,NULL,2,'en','671465462','A2','A2','male','','','','','','','','Y','','','','','Y','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Wanted to stop having my config all over the place, wanted to be able to worry less about how to redeploy my server after catastrophic failure.','','Y','','','','','','','Y','','','','','Y','Y','','','Y','','Package management','having multiple versions of same dependency without issues','Immutability','','Guix','','','','','','','','','','','','','','','','','','','','N','Still getting to know nix(OS)','Y',NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(603,'1980-01-01 00:00:00',5,'en','2077606075','A2','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Flakes became stable enough that I could give it a go. Found it much more straightforward than the old way of doing things, which I had tried and given up.\r\n','Y','Y','','','','','Y','','','','','','','','Y','Y','','','','Complete environment definition on a build','Simple language (Nix itself, not considering Nixpkgs functions)','Fast switch between projects','* Remove non-flakes \"legacy\" documentation from initial tutorials\r\n* Add types to Nix itself\r\n* Provide easier way to discover code than `nix repl` and tab-completing things from Nixpkgs','Guix','','','','Y','Y','','','','','','','','','Drone','','','Y','','','N','Intellectual property waive from employer','N','Y',NULL,'Setting up desktop environment was cumbersome','Either better tiling support on KDE or Pop_OS! making it easy to integrate their tiling for GNOME elsewhere.\r\nI was an XMonad user for many years, and Haskeller, but stopped using both. I don\'t have the time or energy anymore. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Nixops, as it didn\'t support launch templates for autoscaling groups on AWS. I can imagine hacking together something with Ignition and Nix flakes directly, though.','Flakes were the best thing to ever happen to Nix. I always wanted to use Nix and felt a barrier.\r\nNow it feels pleasant and I can\'t imagine developing software without it anymore.\r\nThe only missing thing is easy docker builds for Linux from macOS, but I feel like it\'s almost there.'),(604,'1980-01-01 00:00:00',5,'en','1576995241','A4','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','I got hired as a backend developer in a company that used Nix for the build and test configuration of the product. Started tweaking the .nix files and fell in love with it after a while. Now I bring Nix wherever I go.','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','The wide array of packages available in nixpkgs and other repositories that I can just grab and reliably depend on everywhere','Hack once, use everywhere','dockerTools','I would implement the NixOS of Kubernetes (or some other orchestration infrastructure). I.e. a declarative way to specify an entire system where something like Kubernetes takes the role of systemd in NixOS.','I would stop using computers and take up carpentry','','','','Y','','','','','','Y','','','','A fully custom CI server for dev team','cabal2nix\r\nhaskell.nix\r\nyarn2nix\r\npip2nix','Y','','Y','','Y',NULL,'N','N','Hearing from enough people that I won\'t have trouble setting up graphics drivers, wifi drivers, desktop managers and all the world of complexity that comes with a personal computing environment. I love Nix and fiddling with it for development / packaging software, but I have very low bandwidth for setting up a smooth desktop experience, so I just go with whatever comes out of Linux Mint.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I don\'t use most of the experimental but awesome features of Nix, *because* they\'re experimental and not because I don\'t think they\'re awesome. I think recursive Nix and content addressable derivations are fantastic and flakes look great from a distance too, I\'m looking forward to them becoming standard so that I can invest in them.'),(605,'1980-01-01 00:00:00',5,'en','1245988060','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted to fix the environment mess on my Arch system, and prevent it from happening ever again.','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducible pure environments','Easy server/software management and deployment','Easy inspection of how to build packages','Disallow imperative management (nix-env, nix profile install, ...), make flakes non-experimental, and standardize some form of IFD/computed derivations','Nothing; Nixpkgs is essential to me','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I wanted to fix my Arch environment mess, so NixOS it was','Y','','Y','','','','','Reproducible pure environments','Easy management of servers','Easy system introspection (i.e. it\'s easy to see environment configuration)','Fix the issue where old generations fill up /boot','There is no other suitable alternative','Y','','','','','Y','','','','','xmonad','','','Thank you for making Nix!'),(606,NULL,NULL,'en','969825728',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(607,'1980-01-01 00:00:00',5,'en','355217520','A2','A4','male','','','','','','','Y','','Y','','','','','Y','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Initially it was looked at to create both a development environment and identical production environment w.r.t. package dependencies on CentOS. Although many of us were happy a number of problems remains unsolved and it this approach has now been frozen. Problems are in the are of authentication of private repos, secrets management, interaction of nixpkgs packages on host system (libgl, suid etc) that doesn\'t work.','','Y','','','','','Y','','','','','','','','','Y','','Y','','Addresses the problems with Linux FHS (package isolation)','Reproducibility','','Address secrets management and information leakage to nix store.','','','','','Y','Y','','Y','','','Y','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Have used nix on CentOS for years but never made the full transition to NixOS for my workstation until recently. I couldn\'t imagine using imperative configy anymore so there was no other good option. The various other config mgmt solutions like Puppet or Ansible is just terrible when compared to NixOS.','','','','','','','Work laptop (which is mostly not the development machine).','Riskless changes with rollback','Extensive set of modules','Allows use of e.g. home-manager','','','Y','','','','','','','Y','','','','','','I❤️nix\r\nThanks for the great community and the work you put in!'),(608,'1980-01-01 00:00:00',5,'en','323785951','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','','','Managing personal/work mixed use devices','A6','After running an A/BLFS system with union FS to separate packages, Nixpkgs looked like a cleaner package path separation solution with significant work already done','','Y','','','','','Y','','','Y','Y','','','','Y','','','Y','Transient environments','Avoidance of package conflicts','Fast environment switches on upgrade/downgrade','','Drop boolean literals, create at least a tristate in its place.\r\n\r\nMore separation of concerns; possibly up to separation of evaluation and instantiation (with cacheable evaluation). Maybe partial evaluation caching (with the magic wand readied to undo if it goes wrong).\r\n\r\nSplit as much as possible into separate packages. Both to be able to release compatible improvements to one component without negotiating the schedule with features in the other components, and to define which interfaces are lower churn so the other side can be replaced.\r\n\r\nRevise whether external assumptions are baked in. Configurable extra hash command support, pure mode without assuming specific VCS, maybe configurable sandboxing as an invokable program.\r\n\r\nUpdated daemon model, with handover of running build from a failed connection to another one still needing the same build.','Guix, assuming it appeared despite non-existence of Nix (or before it?).\r\n\r\nIf not, whatever would try to be GoboLinux but done right / containers but with sharing. \r\n\r\nFailing that, probably Debian or Arch packages with something about containers and union FS and custom boot scripts','','','','','','','','','','','','','','','Mainly quicklisp-to-nix (inside Nixpkgs lisp infrastructure)\r\npypi2nix','','','','Personal tree of expressions importing Nixpkgs','Y',NULL,'N','Y',NULL,'systemd became too unusable for my workflow preferences;\r\n preferred boot settings getting harder to describe in NixOS than in plain shell;\r\n module system is not how I want the system to be structured anyway;\r\n\r\n(I do use some of the config generators in NixOS to build my system with Nix)','Pluggable service supervision systems separated from init; \r\npreferably module system revision (or going full-overlay closer to Nixpkgs style)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(609,'1980-01-01 00:00:00',5,'en','1790035248','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','Y','Y','','','N','Y',NULL,'Comlexity of the nix language and lack of good docs','Better docs. The docs need to contain an easy explanation of the basic terms with examples and all builtin functions and development utility packages need to be exactly documented (what parameters goes in a function, what goes out, and a short, pregnant description of what it does). It\'s very hard for beginners to grasp the language espacially if there are no good ressources and docs. In my opinion the number of cli tools is also too large. There should be one cli tool to manage the os and one like home-manager. It should be trivially possible to track your config with git without the (most of the time) hacky solutions.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Regularly nothing. When i was on nixos: home-manager','','I love the concepts of nix but for me as a beginner the language is frustrating and stops the enthusiasm for the distro tbh. I think i\'m not the only one who thinks that, so this really needs to be adressed in some way or another.\r\nImo it\'s a good idea to keep track of what the community wants, but i\'d suggest more specific questions in this survey about the tools and topics.'),(610,'1980-01-01 00:00:00',5,'en','1978629007','A3','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I was searching for a way to configure development environments.','','Y','','Y','Y','','Y','Y','','','','','','','Y','Y','Y','Y','','Flakes!','nix shell','nix run','I\'d change the language. Use a lisp like Guix or a ML-like with static typing.','Docker or Fedora Silverblue','','','','','Y','','','','Y','','Y','','','builds.sr.ht','poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Declarative configuration','Y','Y','','','','','','','','','','','Y','','','','','','','Y','','','','Home Manager, nix-community in general','',''),(611,NULL,4,'en','1450088472','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','N','N','my new laptop I\'ll get in a month or two ^^',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(612,'1980-01-01 00:00:00',5,'en','450210652','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','','','Add Support for Private files in /nix/store\r\nParallel Downloads (In general better download experience)\r\nAnd just loads of bug fixes (submodules, symlinks, yada)','','','','','Y','Y','','','','Y','','Y','','','','dconf2nix: https://github.com/gvolpe/dconf2nix','Y','Y','','','N','Lack of time','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','GUI Management Tools\r\nSecure Boot Support\r\n\r\nBut as is, NixOS is pretty solid','','Y','','','Y','','','','Y','','','','Formatter: https://github.com/kamadorueda/alejandra\r\nHome Manager: https://github.com/nix-community/home-manager\r\nFlake Utils Plus: https://github.com/gytis-ivaskevicius/flake-utils-plusv','',''),(613,'1980-01-01 00:00:00',5,'en','1113709880','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','','','Y','','','','','','','','','','Y','Y','','Y','','','','Y','','','','haskell2nix','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','','niv',''),(614,'1980-01-01 00:00:00',5,'en','1440620456','A3','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A friend recommended it to me after I complained about APT.','','Y','','','','','Y','','','','','Y','','','Y','Y','Y','Y','','Organization of the dotfiles','Easy to handle multiple packages','','The syntax of the language.','Guix','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted a system where I could declare packages','Y','','','','','Y','','The ease of handling drivers','The system states','','Nothing','Guix','Y','','','','','','','Y','','','i3','None.','None.',''),(615,'1980-01-01 00:00:00',5,'en','126977485','A2','A2','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend recommended it to me','Y','Y','','','','','Y','Y','','','','','Gaming PC','Y','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','Arch','Y','','','','','','','','Y','','','','',''),(616,'1980-01-01 00:00:00',5,'en','1257036841','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Migrated from Gentoo and never looked back. :)','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','Y','','Systems, packages and development environments are reproducible.','Configuration can be stored in a VCS, easy backups and rollbacks.','Ad-hoc access to packages via nix shell without installation.','Better documentation. :)\r\n\r\n- The Nix manual itself is mostly OK for learning the language, but to really understand how Nix works, one has to read Nix Pills and edolstra\'s PHD thesis. Wish there were a single comprehensive Nix Book that would explain the motivation of Nix and its design principles, than teach the language itself, step by step, textbook style. Should also include an up-to-date chapter about flakes. :)\r\n\r\n- Nixpkgs could be better documented too, especially the NixOS module system and the library stuff. Wish there were a Nixpkgs Book. :)','GNU Guix :)','','','','Y','Y','','','','Y','','','','','','naersk\r\npoetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Migrated from Gentoo and never looked back. :)','Y','Y','','Y','','','','','','','Better documentation. :)','GNU Guix System :)','Y','','Y','Y','','','','','Y','','','','NixOps - tries to cover too much stuff at once but does but have manpower for that.',''),(617,NULL,3,'en','1016361627','A1','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','','','','','','N','N','The idea of declarative system is great',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(618,'1980-01-01 00:00:00',5,'en','1288502496','A2','A4','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Suffered through Python and Ruby\'s package tooling and decided enough is enough. Fell in love with nix-shell.','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','nix-shell','nixos modules e.g. nextcloud','reproducibility and nixpkgs pinning','Nix the language should have been statically typed.','FreeBSD probably. Nix is likely the last thing keeping me in Linux-land.','','','','Y','Y','','','','','','','','','','Never heard of 2nix before.','Y','Y','','','N','The process is unclear and intimidating. Way easier to just fork packages locally and fix them for me.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I started with a WooCommerce site for my wife that I shipped as a set of Nix packages on Ubuntu LTS. At one point I realized I was reinventing NixOS and just stopped. My next project is a family Nextcloud server running on NixOS proper and it\'s much easier to manage.','','','Y','','','','','The large collection of modules.','Trivial nginx + let\'s encrypt suport.','Easy declarative systemd service management.','Static typing and better documentation for module configurations.','FreeBSD','','','','','','Y','','','Y','','','home-manager. Duh!','Many -to-nix converters are crude and incomplete. We need better developer tools that interoperate with pip/npm/composer/rubygems, so you can go from dev shell to deployable derivation in minutes.','Nix outside of NixOS (both Linux and Darwin) needs more love. More GUI packages and dev tools (e.g. DB servers) should work out of the box as that is a unique gateway drug for many people.'),(619,'1980-01-01 00:00:00',5,'en','1906952388','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I had a friend telling me to use it. They said it was great and after some convincing I gave it a try.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Easy to re-use the same configuration across machines','Reproducible builds of systems built on said config','Control of how and when my system changes','I would want the nix project to spend less time bothering to implement experimental features that sometimes breaks for users of non-experimental things.\r\n\r\nI would also like to see the nix project embrace rust to try to clean up the mess of a C++ that has been created.','Probably Arch Linux.','','','','','','','','','','','','','','','node2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend told me how great it was for some time, after some convincing I tried it out and do like it.','Y','','Y','Y','','','','The module system to define which services should run and to configure them.','','','','Probably Arch Linux','Y','','','','','','NixUS: https://github.com/Infinisil/nixus','','','','Sway','','I tried using flakes, then I stopped using it because it wasn\'t there or ready. It\'s also an experimental feature that haven\'t been accepted but still made it mainline and started breaking things in nix. So I went back to basics.','I don\'t like how flakes have been managed or developed.'),(620,NULL,1,'en','2057225077','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(621,NULL,NULL,'en','968546823',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(622,NULL,2,'en','1229780632','A1','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','','','','','','','','','','Y','','','','','','','','','Y','','declarative config','user package repository','','better docs','arch','','','','','','','','','','','','','','','','','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(623,NULL,NULL,'en','1268072151',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(624,'1980-01-01 00:00:00',5,'en','655648422','A1','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','purity','binary cache','','','','','','Y','Y','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Sway','','Home Manager',''),(625,'1980-01-01 00:00:00',5,'en','1608576031','A2','A5','male','','','','','','','Y','','Y','Y','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','','Y','Y','','Y','','','Y','Y','','Y','','','','','Add: type system, or something else that localises errors to where you fix them, not some lib function 20 stack frames deeper\r\n\r\nChange: ease of learning ','I find it hard to imagine. Probably more docker/VMs with build scripts, but that world is extremely bleak. ','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','Y','','Declarative ','Reproducible ','Rollback (even though I never use it, knowing I can is so liberating)','','','Y','','','','','','','','','','','direnv with nix-direnv-flakes\r\nVSCode nix environment plugin\r\ncachix\r\nnixpkgs-fmt ','nix-index\r\ncomma','Nix is amazing, and I could never go back, but the learning curve is so steep that I haven’t yet had the fortitude to introduce it at work (even though I have the influence)'),(626,'1980-01-01 00:00:00',5,'en','1345108549','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','Busybox/Linux :) (Openwrt)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was fascinated by the concept of IPFS. I imagined a package manager where decentralised builders would vote on a mapping between the inputs and outputs of a build. My package manager could then decide to trust the mapping and then trustlessly download the output via IPFS or any other method. I read about Nix somewhere and while it didn\'t quite fit this model, it was the closest thing yet and also had some other nice properties, so I installed it on my main macOS machine.\r\nNow that ca-derivations are being worked on, the dream of separating the cache from the trust by trusting only the mapping between input and output and then fetching the output without trust seems closer.','Y','','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','The ability to patch or otherwise customise packages without them silently breaking on the next update or having to recompile them manually','The ability to mix packages from the unstable and stable channels without breakage','','Some Nix packages with a GUI that run on macOS (e.g. kitty) are apps very similar to normal macOS apps. Unfortunately, installing them via nix-env for example doesn\'t make them appear in the Applications directory. They are just symlinked into ~/.nix-profile/Applications. It would be nice if Nix could also create a symlink in /Applications, so that such Nix packages are more similar to Homebrew Casks. This would not be an atomic operation but it would be worth it IMO.\r\nThe Nix evaluator uses an insane amount of memory. This makes it difficult to run NixOS on a Raspberry Pi or a small VM. It would be nice if Nix used less memory.','Pacman and Homebrew','','Y','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','After I gained some experience and confidence with Nix on macOS, the logical next step was to replace ArchLinux on my home server with NixOS and now I never want to go back again.','','','Y','','','','','The ability to automatically recompile the ZFS kernel module on updates and fail very explicitly if this fails, so that my server always remains bootable','The ability to declaratively configure the entire system','Rollbacks','It would be nice if I could somehow select a different generation to boot in the grub menu over the network, without attaching a keyboard and display.','Arch Linux','Y','','','','','','','','','','','','I tried using mobile NixOS on a PinePhone but I didn\'t manage to configure the filesystems mounted on boot for some reason. I plan to try this gain some time.','I don\'t like this survey website. When I took too long to fill out the survey the first time, my session expired and I had to start again. I almost didn\'t continue because of this. There is a \"Resume later\" button button but I need to manually press it and would have to create an account for that. It would not be hard to just store the progress using cookies or local storage. I also had a problem when I tried to type the character ~. On my machine, I have to press ctrl+alt+n to create this character but this survey website recognised the key combination as \"go to the next page\", maybe (ctrl+n).'),(627,'1980-01-01 00:00:00',5,'en','124567743','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I first heard about Nix because I really like functional programming and I saw quite a few people talking about it in that space.\r\nAs I was doing some DevOps and am a Linux enthusiast, Nix ideas immediately got me interested as it elegantly solves many frustration I had with my tools.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Reproducibility','nix-shell for project dependencies','Easily and safely playing around with new tools','Better documentation (even though it already got a lot better).','Bash scripts, Ansible and Docker.','','','','','','','','','Y','','','','','','None as I mainly work with Scala and support for the JVM ecosystem is not quite there yet','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Soon after I started using Nix I gave NixOS a try. As I was already managing all my machines using Ansible (on Gentoo), NixOS allowed me to greatly simplify my setup while also improving its reliability and keeping the flexibility. Moving all my machines to NixOS was therefore an obvious choice.','Y','Y','Y','Y','','','','Declarative configuration','Safe rollback','Up to date dependencies','Better documentation.','Archlinux and Gentoo as OS.\r\nAnsible as deployment tool.','','','','Y','','','','','','','xmonad','','','Thank you for all the work you do! Nix community is awesome!'),(628,NULL,2,'en','419062991','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','To try a new and unusual Linux distro. Also the way of rolling back and package management seems interesting.','','Y','','','','','','','Y','','','','','Y','','','','','','Generations','Package management','','','Arch linix','','','','','','','','','','','','','','','','','','','','N','Still learning the basics.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(629,NULL,1,'en','2005083419','A2','A3','fem','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(630,'1980-01-01 00:00:00',5,'en','2090984885','A2','A4','male','','','','','','','Y','','Y','','Y','','','Y','Y','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','controlling dependencies, reproducible build environments','','Y','','','','','Y','','Y','','','Y','','','Y','','','Y','','Declarative/reproducible development environments for my own projects (nix-shell).','Declarative/reproducible user environments (home-manager)','Build systems for embedded products (replacing Yocto or similar)','Flatten the learning curve.','Virtualenvs for project environments. Arch Linux for personal machines. Yocto or similar for building embedded products.','','','','Y','','','','','','','','','','home-grown CI running build jobs in a Slurm cluster','','Y','','','','N','I find it extremely hard to get a proper overview and comprehensive understand of the various parts of Nix and its ecosystem. I don\'t yet feel familiar and competent enough to contribute things back to the community.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Declarative and reproducible system definitions. I threw myself into NixOS to force myself to learn how Nix worked, so that I could help introduce/teach Nix at $dayjob to improve dev environments and speed up builds.','Y','','Y','','','Y','','Declarative system definitions.','Keep machine configurations colocated in one repo, instead of spread across machines.','','A common convention/organization for collecting multiple (physical) machine definitions inside a Git repo, and more easy deploy/setup onto those machines.','Arch Linux on personal boxes, CentOS or Debian on servers, probably.','Y','','','','','','','','Y','','','home-manager','lorri, direnv','I fear that the Nix community is too busy playing 4D chess with all the new/exciting stuff that is possible. Meanwhile the rest of the world is stuck playing tic-tac-toe, and it\'s very hard to cross the widening chasm between the two. We need more focus on building bridges, so that we can bring our colleagues (whose main focus is _not_ Nix itself) along for the ride, and make them _competent_ at Nix.\r\n\r\nCurrently, trying to introduce Nix at $dayjob is a recipe for burnout, as on one hand you\'re trying to explain and motivate concepts like reproducibility and functional/composable package definitions (along with a new and strange programming language) to a developer population (that naturally will take some time to convince), while on the other hand you\'re trying to keep track of the Nix community developments (e.g. flakes).'),(631,'1980-01-01 00:00:00',5,'en','304568168','A4','A2','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','i heard about it from hacker news and i thought the idea behind nix is very cool, next day i downloaded nixos and tried on my laptop, the initial reaction was good i loved that i have control over everything in a reproducible way that i can copy to any of my other machines and thought it would even be better for my servers, after a while though i got tired of fighting nix all the time and went to another linux distro, but i have missed the way i control the system in nixos and returned to it again and i am using it now for awhile, still think the idea is cool but the user experience and the way we configure the system and packages need much iprovemnents','','Y','','','','','Y','','Y','','','','','','Y','','Y','Y','','Declarative system configuration','consistent development environments with nix-shell','being a perfect playground for server configuration as i can do what ever i want and can revert to a previous configuration if something went wrong','the way we configure the system, the configuration file should at least have auto complete, so i don\'t always have to search for options and packages names','- Pop OS For my personal laptop\r\n- any lightweight linux os with good support for docker for my servers','','','','','Y','','','','Y','','Y','','','Azure Devops','node2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(632,'1980-01-01 00:00:00',5,'en','653733694','A2','A3','male','','Y','','','Y','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Declarative package management + reproducible development environments.','','','','','','','Y','','','','','','','','Y','Y','','','','Declarative package management ','Reproducible development environments','-','Improved documentation','Probably just arch Linux (pacman)','','','','','Y','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Declarative system configuration and dotfile management','Y','','','','','','','Declarative (and reproducible) system configuration','Declarative dotfile management (technically home-manager)','','Improved documentation','Arch linux','Y','','','','','','','','','','Bspwm + sxhkd','Home-manager','Any python environment wrappers (poetry2nix / mach-nix)',''),(633,NULL,1,'en','669841199','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(634,'1980-01-01 00:00:00',5,'en','723149675','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','','','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','','Y','','Ease of contributing to nixpkgs/NixOS','Distributed building and caching.','Ease of patching any software (including nixpkgs/NixOS)','Proper RPC protocol for remote builders, stores and caches. A responsive and well functioning core development team for Nix.','I don\'t know.','','','','Y','Y','','','','','','Y','','','','cabal2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','','Y','Y','Y','Y','','','','Simple to \"roll your own\" OS. Simple to take apart and research boot process etc.','NixOS module system','Rollbacks','','I don\'t know','Y','','','','','Y','','','','','Xmonad','nixbuild.net','Hydra, nixops',''),(635,'1980-01-01 00:00:00',5,'en','1986866051','A4','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','First I try to learn the Nix package manager and the Nix programming language and then I will install the Nix distribution ','','Y','','','','','','','','','','','Not yet I\'m trying to learn a package manager right now','Y','Y','','','','','Nix-env, Nix-shell','Nix configurations','simple language','Actually I liked Knicks a lot, but I found it some difficulty and not friendly-used to it like\r\nNix-shell, nix-build, nix-env,nix-channel,...\r\nSo it would be better if there were a few commands to manage the package manager like Guix','I\'m currently using Pacman but for me the best package manager is guix','','','','','','Not yet','','','','','','','','Not yet','Not yet','','','','Not yet','N','I haven\'t learned the Nix language yet','N','N','love of exploration',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nothing','Nothing','You better make nix simple enough'),(636,'1980-01-01 00:00:00',5,'en','1479207547','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','','','','Enable reuse of data in download from binary caches, that would be nice for everyone and especially for people on bad internet access.\r\n\r\nAt some point, stop being compatible with old Nix/Nixpkgs versions and solve all the relative issues.\r\n\r\nHave a decent stdlib in Nix (better than the current one in Nixpkgs, and in a separate repo).\r\n\r\nHave more purity. Don\'t use channels. Enable caching of pure evaluations (and that\'s comming :) ).\r\n\r\nFor nixpkgs: don\'t put mkDerivation\'s attributes into the build environment by default. This would allow to change things in mkDerivation (like rename buildInputs*, or huge changes) without triggering mass rebuilds.','','','','','Y','Y','','Y','','Y','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','Y','Y','Y','','Y','','','','','Better abstractions (like for systemd services)\r\n\r\nMore consistency\r\n\r\nLess opinionated configurations that are hard to change without a fork / More options to tweak configurations options.\r\n\r\nMore/Better profiles (minimal system, server, etc...)','Archlinux? Alpine?\r\n\r\nGuix ;)','Y','','','','','Y','','','','','herbstluftwm','','Nixops','Thanks!'),(637,'1980-01-01 00:00:00',5,'en','303831211','A5','A3','-oth-','non-binary','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted reproducible configured linux systems and this seemed to be the project closest to accomplishing that out of the box ','','','','Y','','','Y','','Y','','','','','','Y','','Y','Y','','Reproducibility','Functional data-oriented configuration','Easy rollbacks','I don\'t dislike the Nix language but I find that at least the way it\'s documented now can make it confusing for people to pick up, myself included ','Docker with some random configuration tool ','','','','Y','','','','','','','','','','','','Y','','','','N','Haven\'t had the time of day','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A2','Wanted reproducibly configured linux machines, this seemed to be the only tool that did it','','','Y','','','','','','','','Secret management is a must-have feature that requires either homebrew solutions or bolting on some poorly documented/maintained deployment tool which itself started as a homebrew solution','FreeBSD, which I\'d love to configure a la NixOS','','Y','','','','','','','','','','','NixOps','Much love to all who put their work into Nix and NixOS. While the tooling can at times feel like a confusing work in progress this project can go a really long way in fulfilling something the world of software deployment and system configuration has needed for a some time. Given how receptive the project on the whole seems to be to evolving and trying new things, I feel really optimistic for the future of this awesome software. Keep up the incredible work!'),(638,NULL,NULL,'en','1974736490',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(639,'1980-01-01 00:00:00',5,'en','1413730388','A1','A3','male','','','','','','','Y','','Y','Y','Y','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Because it was part of NixOS.','','','','Y','','','Y','','Y','','','Y','','','Y','Y','','Y','','Declarative, reproducible operating system configuration, including user stuff with home-manager.','Multiple versions of packages, system configurations, and other things like that, that can be pulled in on demand into different nix-shell environments or system configs.','','Make the Nix evaluation error messages more helpful - eg. the stack traces are sometimes really long, and it\'s not clear how my code caused the issue or where my code even is in the trace.','I\'d look into Fedora Silverblue, Gobo Linux, or still be on Arch Linux with a dotfiles repo and installation bootstrap scripts.','','','','Y','Y','','','','','','','','','','https://github.com/DavHau/mach-nix in https://github.com/mirrexagon/nixpkgs-esp-dev\r\n\r\nhttps://github.com/svanderburg/node2nix in packaging my Rust-JS hybrid application: https://github.com/mirrexagon/commboard/tree/299ed95d786966e13929ad4387140e8cfadcd9b4','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Having a declaratively-configured operating system seemed cool and useful as opposed to having to set up a system after reinstall manually or even with simple scripts to install things. Now I can\'t go back!','Y','','Y','','','Y','','Declarative, reproducible, easily kept in Git operating system configurations, including user stuff with home-manager.','Nice, easily composable module system with the imports and merging system that I can easily extend in my own configurations.','','Built-in easy remote system config deployment in eg. nixos-rebuild, without the full weight of NixOps. nixos-rebuild does have some capability for this but it is a bit limited - I wrote a bash script to do it.','I\'d look into Fedora Silverblue, Gobo Linux, or still be on Arch Linux with a dotfiles repo and installation bootstrap scripts. Maybe look into Ansible and the like.','Y','','','','','Y','','','','','Sway','home-manager','NixOps: it seemed too complex and too much to learn for my use case of managing and being able to remote deploy configurations to a home server, a laptop, desktop, and tablet.',''),(641,NULL,NULL,'en','1649073318',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(640,NULL,3,'en','35053218','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','for open-source projects','A2','Friends. I did try, install it and go back. Then I did it again and laster longer, maybe 3 months before giving up again. I did start using nixos in the end of last year but to be honest, I\'m still not sure the stark complexity is worth it.','','','','','','','Y','','','','','','','','Y','','','Y','loosing time having to package the world and its dog (steam-run doesn\'t cut it)','Config in a single place','Pain with prebuilt binaries (this is a cons, not an advantage)','Ability to mix versions on different places','I would make flakes/the new nix command use my system channel by default. And pin the system flake repository. Beside being really wasteful bandwidth-wise, I chose NixOS-21.11 for a reason.\r\n\r\nYes I can do it manually, but we should provide sane defaults. No, I don\'t believe pulling things straight from master by default is sane.\r\n\r\nOn another topic, I\'m uncomfortable with a (recently worsened?) tendency of pulling things straight from the internet, with the only safety being hoping github and github\'s https don\'t get compromised. Other distros do have signing keys and that kind of stuff. Nix, even on NixOS, doesn\'t check binaries, doesn\'t check definitions, doesn\'t check anything beside the https cert.\r\n\r\nOn a related issue, I have the impression way too many people have push or merge powers to (e.g.) nixpkgs. I\'m wondering if this isn\'t lacking some basic hygiene too.','Debian','','','','Y','Y','','','','Y','','','','','','','','','','I did package some piece of software','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(642,'1980-01-01 00:00:00',5,'en','1843217432','A2','A2','fem','','','','','','Y','','','','','Y','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','Y','','Y','Y','','Y','','','Y','','','Y','','','','','','Private: Arch/Alpine with Ansible\r\nWork: Debian/Alpine for server; Arch for personal workspace; Docker (-compose) for dev workspaces\r\n','','','','','','','','','','','','','','','','Y','','','','N','I have yet to come across a package that I want to use but is not available in nixpkgs.\r\nBut I do want to contribute in the future and I keep an eye on the repo ever now and then :)\r\n','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','','','','','ArchLinux or Alpine with Ansible as much as possible','Y','','','','','','','','','','i3','home-manager','','Thank you so much :)\r\nI am so glad I came across Nix!'),(643,NULL,1,'en','2056113287','A2','A4','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(645,NULL,1,'en','274914787','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(646,NULL,2,'en','1648600650','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I want to use linux, and I have tried ubuntu, arch... And for me,nixos is best because I can switch different generations\r\nWhen I broke my system,I can go to a former one','','Y','','','','','Y','','','','','','','','','','','Y','','Reproducible ','all my system can be configured using nix(dotfiles)','nixpkg provide newer packages,and has many pkgs other linux distros don\'t have ','','for os, maybe macos or archlinux\r\n\r\nfor others,maybe docker','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(647,'1980-01-01 00:00:00',5,'en','1956349054','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(648,'1980-01-01 00:00:00',5,'en','1305396363','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','Y','','Y','','Y','','','','','Y','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','cwm','','',''),(649,'1980-01-01 00:00:00',5,'en','226168082','A2','A2','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','having used both apt-get and pacman based distros, I wanted something with both the stability and the bleeding edge opportunity without applications breaking due to changes others needed','','Y','','','','','Y','','','','','Y','','','Y','','','Y','','Textual overview of system configuration ','System rollbacks','Version pinning per-application','Improve the error messages, Nix is complex enough for new people (especially as a statically typed language enthusiast) without confusing error messages for which I rely on the forums for help with','Suck it up and use plain Arch','','Y','','Y','','','','','','','','','','','','Y','','','','N','Opportunity hasnt arisen ','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','Due to hardware difficulties, I wanted a declarative way of configuring the system so I could easily maintain a working system.','Y','','','','','Y','','Declarative OS/kernel/hardware configuration ','Full system rollbacks','Easy kernel pinning','Improved kernel configuration, required a lot of reboots to finally get some kernel setting to be set that wasnt available through the typed/named approach (think it was kernel timing?)','Again suck it up and use Arch','','','','','','','','','','','Sway','The nix language server, as basic as it unfortunately is','','Please improve the gap between the basics of the language and the more complete examples, there\'s a weird gap between \"this is a function\" and \"this is how you make overlays\" for example '),(650,NULL,1,'en','1835144491','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(651,'1980-01-01 00:00:00',5,'en','790199022','A5','A2','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Crate2nix\r\nDream2nix\r\nPoetry2nix\r\nCrane\r\nNode2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','Y','','','','','','','','Y','','','Y','','','','','','','Xmonad','','',''),(652,'1980-01-01 00:00:00',5,'en','993732750','A2','A3','male','','Y','Y','','','','Y','Y','','','Y','','','','Y','','','Y','','','Y','','','Y','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Became tired of maintaining the same environment over different Debian machines, found Nix and haven\'t looked back since.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','software I build can be built reproducibly','I can trust that my colleagues use the same environment as I do, and so does the CI','reuse is as simple as adding another flake input','','Various language-specific build tools','','','Y','Y','Y','','','','','','Y','','','','mvn2nix\r\ncargo2nix\r\npoetry2nix','Y','Y','','','N','Mostly missing spare time to actually get around to doing it.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Became tired of keeping the config on my Debian machines in sync, found NixOS and haven\'t looked back since','Y','Y','Y','Y','','','','fully declarative description of the system, allowing easy reinstalls/rollbacks','I have the same environment across all my machines, without any hassle','packaging custom software is easy','','Likely guix, or still Debian','Y','','','','','Y','','','','','xmonad','sops-nix','',''),(653,'1980-01-01 00:00:00',5,'en','1999660911','A3','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','It all started with this article: https://medium.com/@MrJamesFisher/nix-by-example-a0063a1a4c55\r\nThen I installed nix on xubuntu and three days later after get the feeling i jumped into the rabbit hole. Code from that time is still available in https://github.com/lucasew/nixcfg','','Y','','','','','Y','Y','','','','','Google Colab','Y','Y','Y','','Y','Bundle whole environments as nar files for my colleagues to use without waiting a lot to download individual things ','Packages as functions and all its benefits and leverage ','Send whole environment artifacts over ssh or using big chungus nar files','A git repo as source of truth ','The main problem I have with nix is the mass rebuild/download thing, I know it\'s required to make it possible it\'s warranties but it is the main problem that sucks. Internationalization and noob friendly docs would be cool too. ','Custom scripts like asdf or things like that plus some praying for the long term ','','','','Y','Y','','','','','','Y','','','','I\'ve used node2nix already, I didn\'t jump too much in this rabbit hole ','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I started three days after I started using nix. The test of the story is on the nixcfg repo and the form for nix ','Y','','','','','','','All defined as code ','No update scripts slowing down boot/reboot ','I update things whenever I want and no one forces me, except discord ','Some software must be running in a more recent version like discord and sometimes that lucky day dialog appears and then you need to bump the flake or override that specific package\r\n\r\nThe rest is basically iteration time and the reason why I use home manager apart from nixos instead of a module of nixos ','I probably would still be distro hopping ','','','','','','Y','','','','Y','i3wm','lucasew/nix-on-colab\r\nlucasew/nixcfg\r\nhome-manager\r\nblender-bin\r\ncachix\r\nrust-overlay','nix-on-droid: proot makes things prohibitely slower\r\nImpermanence: I\'ve used in a vps and I nuked that vps because of unexpected costs, I had some permission issues for the created folders though ','We (me and my orientator) at utfpr Santa Helena are studying to apply nixos on the university fleet of computers. It will be my course conclusion monography. I do computer science there. '),(654,'1980-01-01 00:00:00',5,'en','918720001','A3','A2','male','','','','','','','','','','','','','','','','','','','','','','','','','civil engineer','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','At first, I installed GNU Guix, but realized the Nix Language and NixOS are better.','','','','','','','','','Y','','','','','','Y','','','Y','','Declarative configuration','Nix shell','Reproducible environment','A more integrated Home Manager alternative','GNU Guix or Gentoo','','','','Y','Y','','','','','','','','','','','','','','mkDerivation in a let .. in block','N','I only packaged one application, and it\'s not good enough for sending a PR','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Tried GNU Guix, found out Nix language and NixOS are more complete and easy to use','','','','','','','','Declarative configuration','Nix shell','Reproducible environment','More integrated home manager','GNU Guix or Gentoo','Y','','','','','','','','','','swaywm','','',''),(655,'1980-01-01 00:00:00',5,'en','452135555','A6','A4','male','','','','','','','Y','','','Y','','','','','','','','','','','','','','','Manager','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','First exposure was through reflex-platform (I think). Noticed it was also used for rhodecode. Started using it for haskell dev, then set up entire remote deployment system using it.','','Y','','','','','Y','','Y','Y','','Y','','Y','Y','Y','Y','Y','','repeatability','wide variety of software','composability (ie ability to modify and combine software)','Probably a static typing system','I was using salt, and i felt salty. I had to package to debian/ubuntu packages, I was constantly working around bugs and it didn\'t really do a great job','','','','','','','','','','','','','Y','','','Y','','','','N','Everything I need is typically there already - I have done in the past, but no need for a long time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Needed to deploy software to remote client hosted systems. Noticed rhodecode doing this really neatly and wondered if we could do the same. Rest is history. ended up with ~20 deployments around the world, most of them very remote and requiring flights and extensive travel to visit in the case of problems.','Y','','Y','Y','','Y','','repeatability','rollback','systemd','easier to managing pinning at top level','was using salt - it made me salty','Y','Y','','','','','','','','','xmonad','None','None','Nix/Nixos is awesome'),(656,'1980-01-01 00:00:00',5,'en','1730696497','A1','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','Y','','','','','Y','','Y','Y','Y','','','','Y','Y','','Y','','','','','Update nixpkgs documentation','','','','','Y','Y','','','Y','','','','','','','poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','Y','Y','','','','','','','','','Y','','','Y','','','','','','','Qtile','','',''),(657,'1980-01-01 00:00:00',5,'en','947159580','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Single source of truth in /etc/nixos makes an highly customised system viable','','Y','','','','','Y','Y','','','','','','','Y','Y','','Y','','Reproducibility ','Immutability ','Rollbacks','IPFS Support','Guix','','','','Y','Y','','Y','','','','','','','','crate2nix yarn2nix','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','Y','','','','','','','','','Fedora silverblue','Y','','','','','','','','','','i3','','',''),(658,'1980-01-01 00:00:00',5,'en','1747751110','A5','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I was looking for a package manager for Mac that would work on linux as well where with a single file I could install everything I want on a new system ','Y','Y','','Y','','','Y','','Y','','','','Personal Machine','','Y','','','','Home-manager','Cross platform ','Modularity (/the ability to change small parts of a package in a overlay how you want while still maintaining the rest of the functionality )','Reproducivity','Better support for Mac (especially m1)','Probably homebrew and a bunch of custom scripts ','','','','Y','Y','','Y','','','','','','','','','Y','','','','N','Lazyness tbh. I have a few things that I want to add but haven\'t gotten around to doing them. Requiring (or at least highly suggesting) to use real name in the contributers list also pursuades new a bit. ','N','N','I actualy want to and have it on my list of things I want to do. I just need to do it ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager \r\nnix-darwin','',''),(659,'1980-01-01 00:00:00',5,'en','138412684','A2','A4','male','','','Y','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking for declarative distributions.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Declarative paradigm','Isolated environments','Good and helping community','Support for much more software','Maybe Docker.','','','','','Y','','','','Y','Y','','','','','No one.','','Y','','','N','Lack of confidence of my skills.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Looking for reproducible environments (without Docker), and easy installation (nixos-install).','Y','','Y','','','','','','','','','Don\'t really know.','Y','Y','','','','','','Y','','','','','','Good idea to have a survey to improve NixOS. Keep up the good work.'),(660,NULL,2,'en','297826102','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Declarative package configuration that I can trust.','The ability to easily share my nixpkgs configuration with people. This is great when learning or trying to debug some odd problems.','Reproducibility','Reduce the learning curve of the nix language.\r\nI\'ve managed to get some basic understanding of the language to get to a point where I\'m confident reading others\' configurations and understand them but I\'m not confident enough with my understanding of the language to start using some of the features and/or write anything beyond a simple flake to build and test a small project I\'m working on.\r\nI don\'t know if the solution would be to improve the documentation and learning material or simplifying the language itself or both.','Use my system\'s package manager (most likely pacman) with some tools (GNU stow https://www.gnu.org/software/stow/, git) and a few home-made scripts','','Y','','','Y','','','','','','','','','','','Y','Y','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(661,NULL,1,'en','1881367507','A2','A3','-oth-','Attack Hellicopter','','','','','Y','Y','Y','Y','Y','Y','Y','','','','','','Y','','','','Y','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(662,'1980-01-01 00:00:00',5,'en','805492670','A2','A3','male','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Reproducible and declarative configuration saves time and patience in the long run. ','','Y','','Y','','','Y','','Y','','','','','Y','Y','Y','','Y','','Declarative configuration','Reproducibility','Simple access to otherwise complex software through predetermined nixos modules and configuration.','I would change the syntax of the Nix language to be more user-friendly. Or create an abstraction layer above Nix to reduce the significant boilerplate code.','Possibly Arch linux','','','','Y','Y','','','','','','Y','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I did not want to waste time creating an imperative configuration for a server and then lose all the work when something breaks and a reinstall is necessary. I wanted to declare once and reuse and refactor the declaration.','','','Y','','','','','Declarative configuration.','Easy access to otherwise complex software and services through nixos modules.','Reproducibility.','','Ansible','','','','','','','','','','','','Home-manager','',''),(663,'1980-01-01 00:00:00',5,'en','1655012382','A2','A3','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','','N','Y',NULL,'I had not enough time at my hand to complete the setup such that I have a fully working system with everything configured correctly.','More and better documentation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Same reasons as before.','Same reasons as before.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Please improve the documentation so that one does not need to read the source code for every feature that you want to activate.'),(664,'1980-01-01 00:00:00',5,'en','579965842','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','Infosec','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Used it to replace Homebrew on macOS after it caused me to lose work. Found `shell.nix` and `home-manager` to be very useful. Eventually graduated to using NixOS on personal computers too.','Y','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','Being able to specify dependencies for my projects, machines, and environments declaratively (nix-shell, home-manager, NixOS)','Being able to roll back changes (NixOS generations)','Making it easier to manage system state (\"erase your darlings\")','When I started learning there was a bit of emphasis on nix-env for imperative package management. I\'d probably relegate that to a sort of plumbing command rather than advertising it for general end-user use.','Perhaps Guix, but I have never tried it.','','','','Y','','','','','','','','','','','node2nix (https://github.com/svanderburg/node2nix)\r\ncargo2nix (https://github.com/cargo2nix/cargo2nix)','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I graduated from using Nix on macOS for work and my personal machine to obtaining a desktop purely to run NixOS on. This impressed me enough that I use it now on a personal server and some Raspberry Pis.','Y','','Y','','','','','Declarative configuration','Rollbacks','Wide range of packaged software','','','Y','','Y','','','','','','Y','','i3wm','home-manager, lorri','NixOps - tried it briefly and couldn\'t really get it to work, but this was a couple of years ago','Keep up the great work!'),(665,'1980-01-01 00:00:00',5,'en','445078921','A3','A2','male','','','','','','Y','Y','','','','Y','','','','','','Y','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I started with NixOS, so I was motivated to learn Nix so I could customize my configurations','','','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Convenient build reproducibility, for any language','Simple, yet very powerful language. Allowing for DRY and concise code.','Flakes, that provide great UX and composition of different projects.','I would magically stabilize and thoroughly document flakes. In my opinion, they are really the \"gold standard\" in project definition, locking, and CLI UX. \r\n\r\nIt\'d be awesome if it became the recommended standard, and if we had very detailed docs (the man page is great, but a cookbook of sorts would be nice for people starting out).','Probably guix, even though it\'s not as universally useful for projects.','','','','Y','Y','','','','Y','','Y','','','builds.sr.ht','cabal2nix, crate2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I will be honest: people flexing and preaching about it on linux subreddits.','Y','Y','Y','Y','','','','Easily manage different devices with a single config, keeping the common configuration DRY.','Being able to try out configurations without fear of being unable to work. Rollback!','Although more nix-related, I like how overlaying just works. It\'s very nice how you don\'t have to change anything else on your config. Nix really shines even brighter on NixOS.','I think the only thing that comes to mind is somehow making home-manager more integrated with it (usage and development wise). They make a lot of sense to use together.','Probably guix and/or Arch Linux.','Y','Y','','','','','','','','','sway','Does nix community count? home-manager, impermanence, nur, cachix.','','Nix truly is the greatest community I\'ve the pleasure of being part of. Thank you so much for making this project a reality!'),(666,'1980-01-01 00:00:00',5,'en','1256753404','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I kind of lost everything every time I moved to a new computer. My ex-colleague Jos showed me the light, and since then I\'ve grown to love NixOS.','','','','','','','Y','','','','','','','','Y','Y','','','','declarative configurations','','','I would remove the Nix language, it is hard to learn. Worthwhile, but hard.','arch','','','','','','','','','','','','','','','','Y','','','','N','Didn\'t spend enough time learning nix. I got my own configuration files working and I\'m proud of that, but I don\'t think I can really contribute without spending a lot of time learning the language and/or practicing with packaging stuff using nix.','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','','','','','','','','','','','','','','','','','','','','','','','','','lorri','',''),(667,'1980-01-01 00:00:00',5,'en','1387646153','A2','A5','male','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','N','N','I\'m moving to nixos, slowly because of lack of time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Home router','A1','','','','Y','','','','','System confusion in a file','up to date','Always clean system','','','Y','','','','','','','Y','','','','Home-manager','','Excited to discover more'),(668,NULL,NULL,'en','742481176',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(669,NULL,2,'en','1064701586','A1','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted to put Linux on a arm chromebook to use as a couch computer. Arch had a wiki page with manual installation instructions. I wanted to use something that would be less hacky. So I got a rock64 as a build server, made nixos go on that, and used it to iterate on an image for the chromebook. In the end I settled on an iPad, but it was an excellent way to learn nix.','Y','','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Reproducibility, perhaps not in the strictest sense, but at least CI builds don’t fail when upstream PPAs remove old versions','Cross platform builds. Develop in macOS, deploy on Linux/K8s, with the same versions.','','','Docker and K8s for production, FreeBSD jails with puppet for home servers. Homebrew for local packages.','','','','Y','Y','','Y','','','Y','','','','','Yarn2nix (iknow fork) — https://github.com/iknow/yarn2nix/tree/patched','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(670,NULL,2,'en','442369141','A1','A4','male','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','Y','','','Y','Y','','N','Y',NULL,'Missing daily driven applications','nix package manager',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(671,NULL,NULL,'en','1764044839',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(672,'1980-01-01 00:00:00',5,'en','1931017662','A2','A2','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I started using NixOS so I didn\'t have a choice.','','','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','reproductible','','','','pacman','','','','Y','Y','','','','Y','','','','','','poetry2nix','Y','Y','','','N','lack of confidence, so nothing','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Recommended by someone at school, saw the benefits of versionning system configuration and being able to rollback easily','Y','Y','Y','Y','','','','versionning','rollback','ease of enabling services','make it less of pain to use with language package managers, for example with Python. I use poetry2nix but it feels like a huge hack and building a devShell takes ages','Arch Linux','Y','','','Y','','','','','','','sway','nixos-hardware, nix cache, manuals and wiki','','Please make multi page versions of nixpkgs and NixOS manuals, the same way it\'s being done on nix3'),(673,'1980-01-01 00:00:00',5,'en','801582182','A2','A3','-oth-','NB','','','','','','','','','Y','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My friend and I shared a ton of out dotfiles via git, but that didn\'t work out the way we wanted. In the end we stumbled upon NixOS, which solved most of our issues right away.','','Y','','','Y','','Y','','Y','','','','','Y','Y','','Y','Y','','Reproducible packages','Declarative system configuration/management','Declarative environment management','The learning curve is way too steep, and I think most of that has to do with the language. The language docs are bad, a lot of what should be a stdlib or importable flakes is done in nixpkgs (also all without docs), it\'s slow (at least when using flakes), the error messages are bad, it\'s untyped and dynamic so you\'ll never have a good language server that can help with all of this.','I probably would\'ve stayed with Manjaro until I found Guix','','','','Y','Y','','','','','','','','','Drone','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same thing','Y','','','','','','','Reproducible package management','Reproducible system configurations','Automated ISO generation','There needs to be better secret management, home manager should perhaps be included by default, and the home-manager and NixOS options should be aligned (e.g. the systemd file declarations differ between the two, which is really annoying). Also better docs','Guix','','','','Y','','','','','','','Sway','https://github.com/divnix/digga','','Send love to everyone putting in the hard work :)'),(674,'1980-01-01 00:00:00',5,'en','1428299123','A2','A3','','','','','','','Y','Y','Y','Y','Y','Y','Y','Y','','','','','Y','','Y','','Y','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Reproducible environments and builds','','Y','','','','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','Reproducibility','Nixpkgs','Overriding','- Binary extensions so that the nix language can be extended with more complex features that are harder/more cumbersome/slower to implement in nix (without using IFD), like, for example, file parsing and other common utilities.\r\n- Content defined chunking and diffable copying of nix packages between machines, this would decrease bandwidth by a significant factor.\r\n- Fix nix search so that it\'s greppable again. ','Alcohol','','','','Y','Y','','','','Y','','Y','','','','https://github.com/nix-community/naersk','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','After having using multiple distros for over 20 years, and having switched to Ubuntu for the longest period (because of stability and freshenss of packages), I have nixos a try, and found it stable enough, easy enough to work with and most importantly reproducible that I was sold instantly.','Y','','Y','Y','Y','Y','','Reproducibility','Stability','Modules','- Improve nixos-containers to not completely restart on each change, and improve networking and routing.\r\n- Ability to instantiate modules multiple times (for example, running multiple nginx servers)\r\n- Not restart X because nvidia driver changed with doing a switch\r\n','Ubuntu and alcohol','','','','','','Y','','','','','i3','nixos-containers','','Thanks for nix!'),(675,'1980-01-01 00:00:00',5,'en','2122186350','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A4','My company, mercury, uses it','Y','','','','','','Y','Y','','Y','','','','','Y','Y','','Y','','Consistent developer environments','Easy rollbacks in prod','Caching of packages','Add better docs. I’d like to have a Haddock-esque website to see all configuration options well documented. Maybe some way to better support building Haskell packages for development, but not sure what that is.','Probably Docker','','','','','','','Y','','','','Y','','','','Cabal2nix\r\n','Y','','','','N','Too busy','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Nix is fairly controversial at our work. Some people say it’s the best thing and some say it’s the worst'),(676,'1980-01-01 00:00:00',5,'en','1953150814','A2','A4','-oth-','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(677,'1980-01-01 00:00:00',5,'en','1558007787','A6','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Just wanted a declarative way to install packages on my macOS machine.','Y','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','','Y','','nix-shell','easy packaging','nix-env to try things out','Simpler packaging for propriety stuff.','Builtin package manager and a few bash scripts','','','','Y','Y','','','','','','Y','','','','','Y','','','nur','Y',NULL,'N','Y',NULL,'Was not able to package a propriety software package I needed.','Maybe once I know enough about nix that I feel confident that I will be able to package anything that I will need.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager\r\nnur\r\ndirenv','lorri','Thanks for nix, has simplified quite a lot of stuff for me.'),(678,'1980-01-01 00:00:00',5,'en','18526445','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','Y','','','Y','','Y','','','','','','','','Y','Y','','','','','','','I would make the CLI syntax more understandable.','Debian','','','','','','','','','','','','','','','','','','','','Y',NULL,'N','N','Needing to reinstall the OS on my development machine.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(679,'1980-01-01 00:00:00',5,'en','442980683','A3','A5','male','','Y','','','','','','Y','','','','','','','Y','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','I was curious about the pure package management advertised.','','','','','','','Y','','','','','','','','Y','Y','','Y','','','','','Make the nix language statically typed with type inference.\r\nMake it feasible to easily install different versions of a package. Package version would be taken into account when installing packages.','guix','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','','Y','','','','','','','','','','','Guix\r\nGentoo Linux\r\nArchlinux','Y','','','','','','','Y','','Y','LXQt, Mate, Awsome, Enlightenment, Openbox','','',''),(680,NULL,1,'en','747262461','A5','A4','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','Industrial Automation','','Y','','Y','Y','9front',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(681,NULL,NULL,'en','1746390764',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(682,'1980-01-01 00:00:00',5,'en','746955766','A1','A3','male','','','','','','','Y','Y','Y','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Daily Driver','A3','I was on Arch Linux and wanted something that felt as flexible but more stable. I had heard about Nix multiple times from friends / online acquaintances. The claims of deterministic builds is what drew me in, and the declarative nature of Nix is what kept me. I feel far more comfortable experimenting with obscure/unstable tools and languages now that I know I can easily drop into a `nix shell`, and knowing that I can always just roll back a generation if something gets seriously messy :)','','Y','','','','','Y','Y','Y','Y','','','Personal Laptop','','Y','Y','','Y','','Deterministic and Declarative builds.','`nix shell` / `nix develop`','Flakes','`nix-env`\'s prioritisation throughout the manual. I wish that it declarative approaches were prioritized and emphasized more than they currently are, and that whenever `nix-env` is mentioned it should be with a *NOTE:* that mentions the caveats of imperative package management. Myself and two friends, totally independently, all ran into conflicts related to packages \"installed\" via `nix-env` that we\'d long forgotten about. In my case I had only used it once as I was following a guide somewhere on how to test local edits of nixpkgs - I wish I remember which tutorial it was so that I could recommend testing with `nix-shell` or flakes (`nix run .#pkg`, etc).','I\'d try Guix? Forgoing that, I\'d try to build something inspired by Nix\'s ideas out of some existing functional language like haskell or lisp.','','','','Y','Y','Curious about CA Derivations, but haven\'t had a chance to try them.','','','','','Y','','','','crate2nix - https://github.com/kolloch/crate2nix\r\n\r\nI\'d LOVE to see per-crate derivations working nicely, and potentially even per-build-artifact derivations for C, C++ builds.','','Y','','Contribute to nixos/nixpkgs','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Daily Driver, Gaming, Everything!','A3','See the story I gave for \"Nix\".','Y','Y','Y','Y','','','Art Installations, Personal Laptop','Declarative and Deterministic builds/config. The ability to share my entire system config between desktop and laptop using a git repo is unreal.','Trivial deployment / remote, native machine management.','Generations.','Fix the issue where your /boot/ partition can fill up without warning if you\'re not careful and require you to manually delete old kernels heh! Also `nix-env` from docs as previously mentioned.','Guix... or maybe Gentoo but where the only portage package is `nix` lol','Y','','Y','','','','Curious about `deploy-rs` and `colmena` for flake support, but just realised `nixos-rebuild` does most of what I need!','Y','','','','`home-manager`. I wish it were under the main `nixos` organisation, and part of the main documentation under a \"Declarative User Configuration\" or something along these lines. Perhaps with a better name than `home-manager`... maybe just `home` would feel more concise.\r\n`nixos-hardware` was absolutely *essential* for coordinating with other Nix users to get the new Dell XPS 9310 audio, wi-fi and bluetooth working. I worked with 5-10 other folks on working out what kernel patches we needed, what kernel config needed updating etc before eventually upstreaming everything. I probably would have returned my laptop and got something more Linux friendly without it.','`musnix` - it\'s aimed at managing pro-audio configuration, but I found it easier just to copy the few parts I really needed.','Thank you for reaching out to users and offering a channel for feedback! Nix is a life-changer in terms of thinking about computation and managing systems. Even though it\'s been around 20 yrs, it feels like we\'re still just getting started on the kind of impact it can make :)'),(683,NULL,1,'en','1368132052','A2','A3','male','','','','','','','Y','Y','','','','Y','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(684,NULL,1,'en','1767843387','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','Y','Y','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(685,NULL,NULL,'en','1992067262',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(686,'1980-01-01 00:00:00',5,'en','1370348404','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','Because some random guy told me to try out NixOS. So I installed it on my personal server :) I use nix whenever I need to make changes to the config, obviously. I also use nix for some package on my Arch linux (only when it\'s not available in official repo or it\'s broken for some reason (pgadmin))','','Y','','','','','','','Y','','','','','Y','','','','Y','','packages which always work','full system configuration which can be just copy pasted onto a different machine','','I\'d make it much faster.','docker containers','','','','','','','','','','','','','','','','Y','','','','N','I don\'t know how to test it locally. And I didn\'t find all that many bugs ;)','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','same as nix','','','Y','','','','','Declarative configuration which works as I\'d expect (for example, removing from config actually remove the thing from system unlike in ansible)','Can install packages from older NixOS version, so I can always upgrade most of the system and only leave some things on older versions.','','make it consume less HDD space (gaving 9 libc versions including locales adds up :/ )','Ubuntu server + docker containers','Y','','','','','','','','','','i3','The NixOS documentation and wiki. They\'d generally deserve more love, IMHO','',''),(687,'1980-01-01 00:00:00',5,'en','353747674','A2','A3','male','','','','','','','Y','','','','Y','','','Y','','','','Y','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','NixOS','Y','Y','Y','Y','','','','','Y','Y','Y','Y','Reproducible system tests','Declarative configuration','Reproducibility','Caching','Add 10-100x more funding so we could actually fix systemic issues caused by volunteers maintaining everything.','A lot more Xanax.','','','','','','','','','Y','','Y','Y','','','haskell.nix, poetry2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','Declarative configuration','Reproducibility','Caching','10-100x more users so issues get ironed out faster and there\'d be more money to fix issues that are caused by volunteers maintaining things.','Arch Linux','Y','Y','','','','','','','','','xmonad','nixpkgs-fmt','haskell.nix','Good job on the survey!'),(688,NULL,NULL,'en','214500788',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(689,NULL,1,'en','333436538','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(690,NULL,1,'en','1240615858','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Toolchain developer','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(691,'1980-01-01 00:00:00',5,'en','612144873','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','better than ansible.','Y','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','','','','','guix','','','','','Y','','','','','','','','','concourse ci','python2nix','Y','Y','','','N','bugs in golang','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','needed something bettern than ansible. also lots of packages.','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','',''),(692,'1980-01-01 00:00:00',5,'en','1240497481','A1','A4','male','','','','','','','','','','','Y','','','','','Y','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','local development environments and nixos servers for running kubernetes','Y','Y','','Y','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','local development environments - nix-shell, nix develop','declarative environment management - nixos, darwin-nix, home-manager','imperative package management - nix-env','Remove the esoteric syntax... it has no place when higher-level functional programming can be used to express things much more readable\r\n\r\nimprove documentation resources. Make looking up functions similar to readthedocs/mix and provide good examples for each func.\r\n\r\nFind some way of nix managing language dependencies/libraries declaratively without having to fork everything e.g pip. \r\nNix wants to control too much and working around this is painful with multiple tools like pip2nix, npm2nix all fracturing already built ecosystems.\r\n\r\nRemove laziness - it makes debugging so much harder','asdf and some fancy dir-env scripts\r\nlots of really terrible bash scripts\r\ndocker with multi-stage builds\r\nbazel','','','Y','','Y','','','','','','Y','','','','pip2nix\r\nmix2nix\r\nnpm2nix\r\n\r\nI try to avoid them where possible','Y','Y','','','N','Lack of time\r\nCompany restrictions','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A3','declarative everything\r\ntransactional kernel updates\r\ncolleagues convinced me','Y','Y','Y','Y','','','','declarative environments','declarative OS','declarative packaging','less esoteric syntax','debian with asdf and docker multi-stage builds','Y','Y','','','','','','Y','','','gala & pantheon','nix-darwin\r\nnix-home-manager\r\nlorri\r\nniv','a bunch of 2nix\'s, using the standard package manager has always been a better experience',''),(693,NULL,NULL,'en','1275289855',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(694,NULL,1,'en','121934533','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(695,NULL,2,'en','447979164','A2','A4','male','','Y','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I read about Nix in a Linux magazine. Then add my new job I was given a laptop and installed NixOS on it','Y','Y','','','Y','','Y','','Y','','','','','','Y','Y','','Y','','Independent development environments. ','Ability to easily integrate external resources (especially via flakes)','Declarative server configurations','I would add up to date and complete documentation','Ad-hoc solutions on a per-project basis','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','Lack of documentation ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(696,NULL,1,'en','197774579','A2','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(697,'1980-01-01 00:00:00',5,'en','1379688458','A2','A3','male','','','','Y','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Manage complexity, declarative configuration.','','Y','','','Y','','','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Declarative configuration','Reproductible environments','Reproductible environments','fix secrets','ansible + vagrant','','','','Y','Y','','','','Y','','','','','','stack2nix, python2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Compositionality of the NixOS module system.','Y','Y','Y','Y','Y','','','The NixOS module system','I can render a nixos system to a containers or bare metal.','I can easily experiment different component integrations.','Reusable modules: I would like to have multiple instances of the same module and be able to override modules as I override derivations.','Debian, Propellor, OpenShift.','Y','','','Y','','','','Y','','','sway','','nixfmt, nix-env','Keep up the great work!'),(698,NULL,NULL,'en','36203489',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(699,'1980-01-01 00:00:00',5,'en','2076362467','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was tired with the growing complexity of my bespoke dotfile scripts, migrating to NixOS was a lot of work but reproducibility of my config is much better now.\r\nAt work I use nix to install my env/config on the company ubuntu and mac laptops - same reason, want to keep my settings and programs in sync.\r\n\r\nLater I discovered the isolated shell env feature, started using it for some projects.\r\n\r\n','Y','Y','','','','','Y','Y','Y','','','','','','Y','','','Y','','Ability to configure whole system (system level and user level [home manager is very important])','Isolated per-project environments','','I would really like to see:\r\n* documentation with good, real life examples, esp for debugging problems in large system configs\r\n* good error messages\r\n* ','* guix ?\r\n','','','','Y','Y','','','','','','','','','sr.ht','','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Really wanted to have reproducible settings across all my machines, ability to restore after a fault as well','Y','Y','Y','','','','','Preproduceable config across machines ( home manager is important )','','','* better integration of home manager, esp with flake configs* guix ','* guix ?','Y','','','','','','','','','','i3','home manager\r\nnixpkgs-fmt\r\n','nixops - nixos-rebuild supports flakes and remote deployments, it\'s easier to use and also same tool I use to configure local machines','* the ideas in nix and nixos are great\r\n* nixpkgs as a collection of packages is great\r\n* it\'s not easy to push PR through review, different reviewers have different opinions, hard to satisfy all. Using and checking standard formatting and linting on CI could help here, as a lot of comments I got were about formatting\r\n* I have 15 years of experience with both procedural and functional programming and find nix & nixos configs basically the hardest to debug and achieve good flow in across all lagnuages and their ecosystems I know. Good docs, tools could help\r\n* community does not feel very well integrated - on one hand there\'s a lot of volunteers that need direction, on the other hand there\'s a couple of companies that seem to be doing their own thing, code of conduct does not seem to be very well respected in some places, forums seem okay, but e.g. pr reviews or some irc conversations I\'ve seen been hostile\r\n'),(700,NULL,3,'en','1346606513','A2','A4','male','','','','','','Y','Y','','','Y','','','','','','','','Y','','','','','','','','Y','','','Y','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(701,'1980-01-01 00:00:00',5,'en','75857375','A2','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Long story short \r\nI wanted a reproducible, deterministic and practical way to manage all of my machines','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','Y','','','','','','','sway','','',''),(702,'1980-01-01 00:00:00',5,'en','1344764940','A5','A3','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Needed a good package manager on MacOS for an old job. Brew wasn\'t pleasing me so I looked for alternates','','Y','','','','','Y','Y','Y','','','','','Y','Y','','Y','Y','','Cross language reproducibility. C applications + programming libraries in same development environment','Declarative configuration of development environments','A good package selection','I would redo and unify the commands for interacting with it. Nix-env vs nix shell vs nix-collect-garbage.\r\n\r\nIt presents a lot of very confusing disjointed commands. This has made adoption at $WORK very very difficult','In personal life probably gentoo. Professionally it would be Ubuntu/apt with an extremely rigorous infrastructure as code approach to packages','','','','Y','Y','','','','Y','','','','','','Bundix for ruby','','','','custom definitions within projects nix-shell','N','Lack of time and bad past experiences.\r\n\r\nI have frequently opened an MR with enthusiasism and joy only to wait 3 weeks and then have minor details nitpicked and given vague messages to do x better without explanation','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Declarative configurations sounded like a cool way to manage my desktop customizations & vim config','Y','','Y','','','','','Rollbacks','Enables usage of deployment tools','Easy installation of software','More focus on desktop usage experience. There are a lot of papercuts compared to say ubuntu. ','Gentoo','Y','','Y','','','','','','Y','','','None','Nixops.\r\n\r\nIt\'s kind of a mess for anyone but the most dedicated professional user. Even then secret/state management is a mess. Tool from a different age','As an american I often find myself wishing for more US based conferences/jobs. The entire NixOS community seems tightly coupled to being in Europe sometimes'),(703,'1980-01-01 00:00:00',5,'en','1262943220','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A2','I started as a consequence of using NixOS','','Y','','','','','Y','','','','','','','','Y','','','Y','','Templating','Reproducible','Functional','Better documentation, because it\'s always a good thing.','Containers.','','','','','','','','','','','','','','','','','','Y','','N','Missing experience','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','I like experimenting in general. I was attracted by configuring an entire os in a couple of files.','Y','','','','','','','Separation of system/user config','Declarative user management','All the configuration at a glance','Better FHS integration: i\'ve had some problems with wine emulation.','ArchLinux with custom scripts for easier reinstallation.','','','','','','','','','','','AwesomeWM, qtile, xmonad','','',''),(704,NULL,1,'en','1029483807','A2','A3','fem','','','','','','','Y','Y','','','Y','','','','','','','Y','','','Y','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(705,'1980-01-01 00:00:00',5,'en','787811118','A5','A5','male','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Declarative configuration\r\nAtomic updates/rollback\r\nSide-by-side binaries ','Y','Y','','','','','Y','','Y','','Y','','','','','','','Y','','Atomic updates/rollback ','Declarative configuration ','Side-by-side binaries','I would make /etc immutable by default\r\nIt would be nice if /etc were also versioned\r\nOverlay then, and now Flakes, are confusing ','Arch Linux because it has the best documentation, including detail on the reasons for certain options et cetera. ','','','','Y','','','','','','','','','','','https://github.com/awakesecurity/hocker/tree/master/docker2nix','','','','','N','The process is not conducive. Indeed, it seems unnecessarily obscure. I cannot find complete, concise examples that walk me through how to contribute and videos are loosely structured and overlong. ','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','I prefer MacOS. I started using NixOS because it is the Linux experience that comes “closest” to MacOS in providing a simplified facade over a vast subsystem of packages and sensible configuration. ','Y','','Y','','Y','','','Atomic updates/rollback ','Declarative configuration ','Side-by-side binaries','Immutable /etc\r\nVersioned /etc\r\nEasier flakes','Arch Linux ','Y','','','','','','','Y','Y','','','','honggfuzz is not available for Apple silicon','Documentation is good. More practical examples of doing things the Nix(OS) way would be better. Videos are overrated. '),(706,NULL,2,'en','1533882439','A1','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','Y','Y','','','','','','Y','','Y','Y','','Reliably repeatable development and CI environments','Easier new dev on boarding','Really easy home server service config and deployment','I might accelerate Flakes adoption somehow.','Oof, probably some hackery including Brewfiles, Docker and ASDF.','','','','Y','Y','','','','','','','','Y','','cabal2nix','Y','','','','N','Nothing’s come up yet I guess',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(707,NULL,2,'en','2087448616','A6','A2','male','','','','','','Y','Y','Y','','Y','Y','','Y','','','','','Y','','','','','Y','Y','','Y','','','Y','','','N','Y',NULL,'* Felt not too different from other distributions.\r\n* Complex syntax of nix\r\n* Complexity might affect performance ','* Unique \r\n* Facilities it provides',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(708,NULL,1,'en','1312942806','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(709,'1980-01-01 00:00:00',5,'en','67884528','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was on centos 7 and installed an update to date version of firefox rather than the LTS version that came with the system. since I no longer needed the old version, I did `yum uninstall firefox` and hit `y` without really looking at the (shockingly long) list of other packages that would be deleted. I let it run for awhile on a secondary monitor, and happened to glance over as it said\r\n> deleting glibc\r\n> deleted glibc\r\n\r\nI selected the terminal window and hit Ctrl C as fast as I could, but it was too late, the machine was toast. That was the day I realized that the blast radius of a typical package manager (yum, apt, etc) is too high and we needed something where the blast radius of a bad package or a bug in the package manager was the size of one package, not the whole system. that brought me to nix, and then I fell in love with using Home Manager for managing my dotfiles','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Home Manager','Declarative Environment Management','nixpkgs-unstable has extremely up-to-date software','`nix-env`. I know it\'s an important tool that can\'t actually be removed from nix, but I wish we didn\'t emphasize using it to new members of our community.','Ubuntu','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I was using nix on another Linux distro and decided that the other Linux distro was just getting in the way and going all in nix would be easier. that turned out to be the case','Y','','Y','','','','','Declarative enviroment management','up-to-date packages on nixos-unstable','','','Ubuntu','Y','','','Y','','','','Y','','','i3','Home Manager','I tried nixops and morph before using deploy-rs.',''),(710,'1980-01-01 00:00:00',5,'en','72202966','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I used to use macOS and was looking for a way to get a few packages and keep them up to date, nix seemed like the best option and as I learned more about it I decided to switch to nixOS as the primary OS on my laptop','Y','','','','','','Y','','Y','','','','','','Y','','','Y','','Reproducibility','The ability to use different versions of package on nixOS','Easy rollbacks','','Guix','','','','','','','','','','','','','','','','Y','','','','N','I haven\'t seen a need to, and I don\'t think I know enough about nix','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I switched to it from macOS after using nix for a month or so and learning more about it and nixOS','Y','','Y','','','','','Reproducibility','Functional package management features eg. Having multiple versions of a dependency to enable running bleeding edge software in an otherwise stable environment','Rollbacks','A GUI tool for searching nixOS options and packages preferably without the need for an internet connection','GuixSD','','','','','','','','','Y','','','','',''),(711,NULL,4,'en','1452917685','A1','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','','N','Y',NULL,'Lack of time','It\'s the feature',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(712,NULL,NULL,'en','1463967610',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(713,'1980-01-01 00:00:00',5,'en','1020634034','A5','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','','','','','','','','','Y','Y','','Y','','','','Y','Y','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','Y','Y','Y','','','','','','','','','Y','Y','','','','','','Y','Y','Y','','','',''),(714,'1980-01-01 00:00:00',5,'en','797563889','A2','A3','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Used Archlinux back in the day but it updated to broken state. Discovered NixOS via a talk at a conference, tried it and never looked back since, although I even used a wide range of linux distros professionally (at my previous job).','','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','Declarative package/system management','Mixing a stable distro with unstable packages where needed','Reliability','Improve Documentation, including bringing back the Wiki. \"Lets kill the Wiki\" at NixCON 2015 in Berlin was a BIG mistake, I hope Rok knows that by now. Let\'s make nixos.wiki official','I heard that Gentoo is nice, also maybe I would go back to Archlinux.\r\nNot because those are good, but because apt, yum or any of the other package managers fuckin suck as hell (pardon my french)! This applies even more to these bullshit \"snap\"s and \"flatpak\"s and what these things are called out there...','','','','','','','','','','','Y','','','','','Y','','','PRs to nixpkgs itself','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same as with nix itself: Archlinux broke my stuff.','Y','','Y','','','Y','','','','','Same as with Nix','Same as with Nix','','','','','','','krops','','Y','','','krops','nixos-rebuild','All package managers suck, nix just sucks less.\r\nThe community is mostly welcoming and productive to work with, but sometimes things are just not streamlined enough. Why are there hundreds or thousands of PRs with one package update every week and month? Why not accumulate these patches on a dedicated branch and merge them every 2/3 days (at least for trivial package updates)?\r\nThe community does still scale, but IMO not much longer. Evergreen master should be a goal.'),(715,NULL,2,'en','1190202457','A2','A3','male','','','','','','','','','Y','','','','','','','Y','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','System wide configuration, robustness, configuration versioning.','','Y','','','','','Y','','','','','','','Y','','','','Y','','system-wide configuration','versioning (rollback)','nix repository size','improve documentation (examples), add LSP for configuration.nix (complete options, packages), speed up \'nix search\'','GNU Guix or Fedora Silverblue','','','','Y','Y','','','','','','','','','','','','Y','Y','','N','Knowledge',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(716,NULL,1,'en','1224901510','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(717,NULL,NULL,'en','2032206826',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(718,'1980-01-01 00:00:00',5,'en','1096072740','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Interested in reproducible builds, cross-platform compatibility (I use Darwin-nix as well as NixOS).','Y','','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Reproducible builds','Cross-Compilation','Reliable reproducible System configuration & Cross platform configuration (NixOS / nix-darwin)','I would add better support for cross compilation build targets to nix flakes.','A mix of tools most likely something home spun. Plan git repo for dot file / configuration management, Gradle for builds, etc.','Y','','','Y','Y','','','','','','Y','','','','https://github.com/cargo2nix/cargo2nix\r\n','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Wanted to have a single way to manage my development environment and share that across platforms and machines.','Y','Y','Y','','','','','Can share my configuration across platforms','Being able to rollback when mistakes are made','Being able to easily override packages / create custom derivations','Probably something a bit better / definitive for secret management, when using flakes to configure NixOS. ','Probably Ubuntu','Y','','','','','','','','','','i3','I use home-manager everywhere, darwin-nix, oxalica/rust-overlay, nix-community/comma, numtide/devshell. ','',''),(719,'1980-01-01 00:00:00',5,'en','536003812','A2','A3','male','','','','','','','','','Y','','','','','Y','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Interested in declarative systems configuration and recommended Nix(OS) by a friend.\r\nAdditionally to clean up/make dev environments declarative','','Y','','','','','Y','','','','','','','','Y','','','Y','','Declarative project environments and dependency management (nix-shell, nix-dev)','Ease of running packages/tooling to test with (nix-shell -p, nix shell)','','Iron out/simplify/update many of the UX components (nix/nix-shell/nix-*)','Ansible/Salt or maybe GNU Guix','','','','Y','Y','','','','','','','','','','','','Y','','','N','Not enough experience Nix experience yet','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Interest in declarative system management, recommended by a friend','Y','','Y','','','','','Declarative system management (single source of truth)','Reproducible system deployments','','Better flake integration, lock nix flake registry to system flake inputs. Tooling to interact with current system flake configuration (like nixos-option) or nix repl getSystemFlake','Ansible/Salt or maybe GNU Guix','Y','','','Y','','','','','','','sway','','',''),(720,'1980-01-01 00:00:00',5,'en','178304063','A1','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','','flakes','declarative config','nixos modules','debugging flakes','guix','','','','Y','','','','','','','Y','','','','cabal2nix','Y','Y','','','N','dont know how','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','after using nix package manager on mac','Y','','Y','','','','','modules','home manager','','more modules','guix','Y','','','Y','','','','','','','headless','devos flake templates\r\nemacs overlay','',''),(722,'1980-01-01 00:00:00',5,'en','441822862','A2','A2','-oth-','Non-binary','','Y','','','Y','Y','','','Y','Y','Y','','','','','Y','Y','','','','','','Y','','','Y','Y','Y','Y','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I originally heard about Nix via NixOS in 2014 and played around with it. I didn’t understand it at the time (i only thought of it as a package manager which allows installation of packages as a non-root user and annoyingly ask you to restart to “refresh your environment”) so my first impression wasn’t great.\r\n\r\nRecently, in 2020, I met someone who maintains nixpkgs. He keeps bragging about how good it is and it sparked my interest in Nix/NixOS again. He led me to Eelco’s PhD thesis which made everything clicked for me and pretty much made me understand the deal with Nix and how it compares to other software deployment solutions.\r\n\r\nSo now I’m daily driving Nix at work along with my personal stuff.\r\n\r\nSeriously though, y’all need to improve your documentation.','','Y','','Y','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Building software in a declarative and reproducible manner','Declarative environment management ','','I’d kill nix-env and nix-channels. nix-env is a terrible tool that make people fall into a false sense of “security”.\r\n\r\nI understand why it’s there but introducing nix by telling them they can manipulate their nix profiles in an imperative manner isn’t really a good idea.\r\n\r\nI think home-manager should be the go to default since it teaches people the magical nature of declarative environments.\r\n\r\nNix on OpenBSD would be lovely but sadly OpenBSD isn’t really a good subject (no ABI guarantees, no stable cross system build architecture) but it seems NetBSD is on its way.','Honestly, BSD-style ports or Gentoo emerge. I’d still use Gentoo/Slackware for my personal Linux needs and curse every time emerge -auDN fails overnight.\r\n\r\nThank you Nix for providing a solution which solves the overall issue of software deployment nicely.','','','','Y','Y','','','','Y','','','','','','poetry2nix','Y','Y','','','Y',NULL,'N','Y',NULL,'I need to run non free software and I’ve tried making it work but it’s not worth it.\r\n\r\nHonestly, I don’t get the big deal with NixOS. Nix and Nixpkgs is enough for me and a lot of other people too and the fact that I can use it on any Linux distribution and even macOS is a really huge selling point for me.\r\n\r\nNot to mention, as a system administrator, the limited reach of NixOS modules really frustrates me (ex. Setting up FreeIPA, SSSD, etc) and having to change it when I know what exact files I need to change is really annoying.','I don’t think there is and that’s fine, honestly. \r\n\r\nLike I said, the fact that Nix/nixpkgs works on pretty much any Linux distribution and macOS is the killer feature for me and frankly, I believe it should be the prime target.\r\n\r\nNixOS itself always feel like a piece of curiosity for me rather than something I’d use daily.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','IOHK haskell.nix',''),(723,NULL,2,'en','1226769268','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Liked the idea of a system 100% defined by code, saw a lot of traction around NixOS e.g. on Github and Gopher slack.','','','','','','','','','Y','','','','','','','','','Y','','Declarative','Reproducable','','','','','','','','','','Y','','','','Y','','','','','','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(724,NULL,1,'en','1507805461','A5','A4','male','','','','','','Y','Y','','','','','','','','','Y','Y','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(725,'1980-01-01 00:00:00',5,'en','848326899','A2','A3','-oth-','Neither','','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','','','','','','Y','Y','','','','','','','','','Y','','Reproducibility ','Reliability ','','Better errors and types','Archlinux/Pacman','','','','','','','','','','','Y','','','','','Y','','','','N','Difficult to test package changes','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),(726,'1980-01-01 00:00:00',5,'en','746402156','A5','','','','','','','','','Y','','','','Y','','','','','Y','','','','','','','','','','Y','Y','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','Y','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Sway','','',''),(727,NULL,3,'en','1261803191','A3','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Okay, so apprently this about nix in particular.\r\n\r\nWhen I first started using nixos, I was a bit wary on how get stuff added to nixpkgs. I knew I didnt have the knowledge to do it myself and instead tried asking on the matrix channel. Soon, someone suggested that I could just create the derivation myself. I initially thought that was a mean response, but after trying, I loved its simplicity and ease of use.\r\n','','','','','','','Y','','','','','','','','Y','Y','','Y','','Easily managing everything from a config and knowing that my system state is relatively clean. I\'ve rarely had to rollback my system.','Being able to run stuff easily (even if I have to use a fhs wrapper). Ive recently been helping out with a website and apparently other people were failing to build it because of node16. However, I had not yet updated by flake.lock and hence had been using stuff which I knew worked. ','Being able to build stuff easily. I no longer need to worry about leftovers from a previous build nor any dependencies on my system.','Add the ability to split the flake file up, use non-literals as flake inputs and relative path inputs.\r\n\r\nFor example If i had subdirectoy `cool`. I want to be able to able to merge it with the top level flake and/or easily reference it without having to specify the path of the project. \r\n\r\nWith regards to non-literals: Sometimes I want to simplify the inputs part of my flake using functions. However, currently, everything needs to be manually specified','manual suffering','','','','Y','Y','','','','','','','','','','node2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I was looking to move away from kubuntu and was attempting to move to arch instead.\r\n\r\nThen I saw a meme on reddit about nixos (I dont remember if it was a post or a comment). It was either about the declarative nature of it or it being stable (stable as in, it wont bork or I wont accidentally bork it). At this point, I was almost ready to migrate to arch but I quickly tried it in a vm but I soon realized I was way over my head (i didnt even actually install it, I just had the live media running). I then went back to learning about arch.\r\n\r\nDuring this time was exams and I didnt really want to accidentally ruin my setup, so I stayed on kubuntu and was ready to migrate to arch when I had a chance. However, I was still worried about the stability of arch. A few days before I was about perform the switch, I tried nixos again and actually decided to get it running this time. I soon fell in love and installed it instead. \r\n\r\nI\'ve been happy ever since','','','','','','','Personal machine','Knowing that my system state is (relatively) clean and doesnt have any leftovers from previous packages','Being assured that my system would not just bork itself because of conflicting packages. The nix build would just fail instead','The module system. Its just like flicking a switch','Being able to magicly manage kde options in a way that doesnt break plasma when options change. (this is infeasible I believe)','Arch/opensuse and suffering','Y','','','','','','','','Y','','',NULL,NULL,NULL),(728,NULL,2,'en','76823745','A2','A3','male','','','Y','','','','','','','','Y','','','','Y','','','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted to describe (and cache) my software dependencies.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducible, cacheable builds','Declarative configuration','Functional language','Add typing safety','Docker','','','','','','','','','','','Y','','','','','Y','','','','N','No need at the moment','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(729,NULL,1,'en','863336512','A2','A3','male','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(730,'1980-01-01 00:00:00',5,'en','995299373','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','Y','','','','Y','','Y','','Y','','','','','','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(731,'1980-01-01 00:00:00',5,'en','1440645984','A2','A2','male','','Y','','','','','','','','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','Y','','Y','','','Y','','Y','','Y','','','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Coming from Arch Linux, I really like the idea of reproducibility that Nixos offer','Y','','Y','Y','','','','Reproducibility','Reliability','Easy to use','Nothing','Arch linux with containers','Y','','','','','','','','','','I3 Sway Xmonad','emacs-overlay','Nothing',''),(732,'1980-01-01 00:00:00',5,'en','775180262','A2','A2','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Becuase I thought it looked interesting and I really liked the value proposition.','','','','','','','Y','','','','','','','','Y','Y','','Y','','Reproducible development environments','Declarative and reproducible system management','Lower barrier to entry for packaging simplish packages through nixpkgs build helpers','','Maybe GUIX and docker','','','Y','Y','Y','','','','','','Y','','','','cabal2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted a reproducible and portable system configuration','Y','','','','','','','Declarative system configuration','Reproducible system configuration','','Stabilise all the experimental features and make nix flakes de-facto.','GUIX possibly','Y','','','','','','','','','','i3-gaps','None','None',''),(733,NULL,1,'en','1183272182','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(734,NULL,3,'en','592717975','A5','A4','male','','','Y','Y','','','Y','Y','','Y','Y','','','','','Y','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Needed to maintain several isolated postgres servers (of differing versions) on macos. (not a fan of docker/vm\'s overhead for running cluster of local dev pg instances for development.) nix-shell does this really well. (My approach is perhaps not the \"correct\" way)\r\n\r\nThen starting using nix-env as a better pkg manager than much of homebrew.','Y','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','','','package management','builds and packaging','','Simplify tools for the common use cases. ','depends on the project.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','time and lack of confidence with the nix language.','N','Y',NULL,'not enough time to research and learn nix lang and tooling.','just waiting for the free time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(735,'1980-01-01 00:00:00',5,'en','631455243','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','N','Language simplification or using a normal language for definitions. Don\'t say that beta features not enabled by default are the way to do things. More examples and documentation for people not in the tribe that just sporadically need to do something with nix. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I\'ve tried guix and have avoid nix so far. Guix makes sense in a theorical way for me and nix doesn\'t. Nix is scarier. '),(736,NULL,1,'en','611537316','A2','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(737,'1980-01-01 00:00:00',5,'en','1429307410','A1','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','','','','','Y','','','','','','','Y','Y','','','','','','','','','','','','','Y','','','','','','','Y','','','','cabal2nix','Y','','','','N','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(738,'1980-01-01 00:00:00',5,'en','450380159','A2','A4','-oth-','Agender','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Perfect reproducibility is a very convincing paradigm shift','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Declarative and reproducible dependencies','Single-source OS config','Nix language used for all aspects of the environment','Add types','?','','','','Y','Y','','','','','Y','Y','','','','cabal2nix','Y','Y','','','N','aggressive right-wing contributors','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','','','','','','Y','','','','','','','','Y','','','Cachix\r\n','',''),(739,NULL,1,'en','1936159537','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(740,'1980-01-01 00:00:00',5,'en','1210234068','A5','A3','male','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','Bioinformatician','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','My friends in the doom Emacs community started using it and raving about it. I\'d tried it on an old laptop, but the high learning curve was scary, and I wanted to get work done. Then I took a day off from work because we went to put my childhood dog down, and I decided life was too short to be afraid of a learning curve, so I switched my laptop over from Ubuntu to NixOS, and never looked back.','','','','','','','Y','','Y','','','Y','','Y','Y','','','Y','','Declarative environment management','Declarative system or server configuration/management','home-manager?','A better cli','guix, maybe docker images','','','','','Y','','','','','','Y','','','','poetry','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Same as above','Y','','Y','','','','','','','','','POP! or manjaro probably.','','','','','','Y','','','','','bspwm','direnv with use flake, agenix, nixos-hardware, home-manager','',''),(741,NULL,2,'en','336715854','A5','A3','male','','','','','','','Y','Y','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','The package philosophy made a lot of sense. Really wanted a declarative way of describing my laptop setup.','','Y','','','','','Y','','','','','','','','Y','','','Y','','Declarative package management','Isolation of packages per directory','Trivial rollback','An easier way to understand package options','ArchLinux + Pacman','','','','','','','','','','','','','','','','','','','','N','Haven’t had a need yet',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(742,NULL,2,'en','1034398594','A6','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','','','','','','Y','','','','Y','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(743,'1980-01-01 00:00:00',5,'en','1519832231','A2','A3','male','','Y','','','','','','','','','Y','','','','Y','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Reproducible environments for builds and development','Configuration/Knowledge sharing','Declarative system config','Add static typing\r\nDecouple language, derivation creation and build-daemon','I‘d probably still be stuck with arch linux. Maybe a bit of docker.','','','','Y','Y','','Y','','','','Y','','','Laminar','https://github.com/NixOS/cabal2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','Declarative system config','Configuration/Knowledge sharing','Easy packaging and installation of any program','Much better testing infrastructure: Always green master, a lot of automatically checked stability guarantees, less waiting for hydra.\r\nI know faster building on hydra is hard to achieve, but slow roundtrip times are the biggest resource drain on me as a maintainer.','Arch','Y','','','','','Y','','Y','','','','nix-output-monitor','nixos-containers',''),(744,'1980-01-01 00:00:00',5,'en','1612092098','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','Y','','','','','','','','Y','','','','','Reproducibility ','Declarative envs','Central repo for all my pkgs','Fix error messaging, remove the Nix language for something cleaner. ','','','','','','Y','','','','','','','','','','Mix2nix, node2nix','','','','','N','Nix knowledge ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Daily machine ','Declarative management ','Home manager is nice ','Rollback','','Debian','Y','Y','','','','','','Y','','','','','Tried setting up Trustix and ran into some build issues, must revisit. Agenix also but never got into the workflow. ','Thanks for doing this!'),(745,NULL,NULL,'en','1884843092',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(746,NULL,1,'en','1697215381','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(747,'1980-01-01 00:00:00',5,'en','1109148328','A5','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','Robotics','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Exploring it for replacing a jenkins based build system.','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','determinism','reproducibility','isolation','Rebuild only if derivation artifacts actually changed, instead of everything downstream (content addressed storage, I think it\'s called)','Jenkins.','','','','Y','Y','','Y','','','Y','','','','','https://github.com/nix-community/pip2nix','','Y','','','N','I don\'t, coworker does.','N','N','Necessity.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://github.com/guibou/nixGL absolutely essential on non nixOS systems.','',''),(748,NULL,3,'en','1166800173','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(749,'1980-01-01 00:00:00',5,'en','286738555','A2','A5','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Already in place for a work project I joined','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','Reproducible build','Foolproof development environment','Pain and obscurity','Finalize the \"nix\" commands *quickly* and making sure they cover all COMMON use cases the old commands covered. Simplify them if needed (should not need to add weird \'-A\' arguments and determining the \"nixpkgs\" to use should have be a clearly-defined automatic process that rarely needs to be overridden. (The latter should also work for xxx.nix files.)\r\n\r\nAs for the fate of the old nix-xxx commands, please take this page as an inspiration:\r\n\r\nhttps://git-scm.com/book/en/v2/Git-Internals-Plumbing-and-Porcelain\r\n\r\nCurrently using nix commands feels like I imagine using git was before the \"porcelain\" layer was well-developed. Nowadays 99% of use cases are covered by porcelain and rarely does one need to descend to the older layers.\r\n','Yocto if building a linux distribution, otherwise maybe docker images','','','','Y','','','','','','','Y','Y','','','haskell.nix\r\n','Y','','','','N','Haven\'t had the need (everything I\'ve needed is found there, or can be with upgrading).','N','N','Spare time to try it in Linux. (My daily driver machine is MacOS.)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'haskell.nix','cabal2nix','Dependency management is hard. I think more needs to be done from the \"system\" to make maintaining a package repository including binary caches thereof easier. People run into broken dependencies, super-long build times, giant dependency trees, and the like, and this can be quite off-putting for using Nix.'),(750,'1980-01-01 00:00:00',5,'en','919283295','A2','A4','','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','it infra security specialist','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','windows failed on me after a journey of insider previews. NixOS came along my news reader and brought new excitement to return to a linux only laptop setup. The declarative/ functional approach is exactly what I am seeking for in terms of creating long-term stable systems that dont decrade through daily usage.','','','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Flakes','','','Better documentation, especially around Nix expressions and how/ why they work. The learning curve currently includes (for most people) to mentally switch to the concept of functional programming and understand nix vast universe of expressions.\r\n\r\nA best practice guide that is maintained over time, a lot of advice from the web works but turns out to have nasty side effects (e.g. nix-env for installing packages) but is nevertheless frequently advised, even in official documentation.','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','Y','','','','','','','','','Y','','','','','Y','','','','','enlightenment','','',''),(751,'1980-01-01 00:00:00',5,'en','1194500569','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I had an interest in functional programming from Haskell, which lead me to NixOS','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Purity (for evaluation, building and runtime)','String context (automatic dependency discovery)','Runtime dependency discovery','- Remove and rework flakes, ideally introducing individual features over time with community consensus\r\n- Rewrite Nix in a better language than C++, such as Rust or Haskell, in order to make contributions easier\r\n- Redesign nixpkgs from the ground up','','','','','','','','','','','','Y','','','','cabal2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I had an interest in functional programming through Haskell, from which I found NixOS, which caught my interest and I started using it','Y','','Y','','','','','module system','Good maintenance','Stability','- Add more abstractions in order to improve interaction between different modules. For example an abstraction for web servers and web apps, or an abstraction for ssl certificate providers and consumers, or an abstraction for color themes.\r\n- Improve the evaluation speed to not be proportional to the number of modules','Probably I\'d still be using macOS','','','','','','','nixus','','','','xmonad','','nixops',''),(752,'1980-01-01 00:00:00',5,'en','1316791415','A2','A3','male','','','','','Y','','Y','','','','','','','','','Y','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A1','','','Y','','Y','','','Y','Y','','','','','','','Y','Y','','','','Reproducibility','Language agnostic','Development environments','- Exhaustive documentation of functions and attributes\r\n- Make it as simple as possible\r\n- Have all possible questions & answers one can think of on StackOverflow\r\n','- Docker for application packaging\r\n- Language-specific package managers (Python\'s Poetry, Rust\'s Cargo) \r\n- Language-specific package repositories instead of Nixpkgs (PyPi, Crates.io)','','','','Y','Y','','','','','','Y','','','','- Poetry2Nix\r\n- Crate2Nix\r\n- Bundix\r\n- Julia2Nix','Y','Y','','Submitting PR to Nixpkgs directly','Y',NULL,'N','N','Having a friction-less experience with Nix first (either by it becoming easier to use, or by myself becoming experienced enough)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- JupyterWith - https://github.com/tweag/jupyterWith','',''),(753,'1980-01-01 00:00:00',5,'en','879872945','A5','A3','-oth-','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','For life','A5','I started using Nix via NixOS, so I\'ll answer on the next page.','','Y','','','','','Y','Y','Y','Y','','','Personal computer','','Y','Y','','Y','','Statelessness that gives me peace of mind','reproducible builds','','- Better UX for flakes\r\n- Better documentation','- Cry a lot\r\n- Not self-host as much\r\n- Docker\r\n- other various package managers','','','','Y','Y','','','','Y','','','','','','clj2nix https://github.com/hlolli/clj2nix\r\nnpmlock2nix https://github.com/nix-community/npmlock2nix\r\ncabal2nix https://github.com/NixOS/cabal2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','For life','A5','Until that point I\'d used entirely Mac computers, but I spent a lot of time doing janky customizations and using the terminal, and it became clear that Linux would be a better fit. I tried Arch linux a few times without success, and my friend started using Nix(OS), and convinced me to check it out. I think I liked that it was principled, had a reason to exist. Other linuxes like Ubuntu / Mint / etc all kind of blur together.\r\n\r\nI put it on a VM and gradually shifted all of my workflow over to the VM, until I was doing everything through it, then I installed it directly on the machine.','Y','Y','Y','Y','','','Personal computers','Easy installation and configuration of supported services','Minimal state','','Nice GUI configuration. I wouldn\'t use it myself, but I think NixOS could be made available to much less tech-savvy people.','maybe arch linux? Maybe I\'d still be on mac.','Y','','Y','Y','','','','','','','XMonad, i3','- search.nixos.org\r\n- home-manager','- https://github.com/nix-community/comma\r\n - it couldn\'t reliably find the right package.',''),(754,NULL,2,'en','238002473','A5','A4','male','','','','','','Y','Y','','','','','','','Y','','','Y','','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Needed a deterministic packaging solution to replace a previous Ubuntu based omni-package approach that contained a lot of hacky, handrolled logic. Had seen Nix evangelized a number of times on Hacker News and gave it a shot— initially just as a package manager on top of Ubuntu, but eventually with NixOS as well (due to needing Hydra). It\'s been a rough road, particularly at the beginning, but I\'m really pleased overall with how it\'s worked out and how much simpler and more maintainable it is than our legacy setup.','','Y','','','Y','','Y','Y','','','','','','','Y','Y','','Y','','Hermetic, deterministic builds, with automatic caching.','The ability to trivially and locally override packages with a different source version, additional patches, even local source.','The selection available in nixpkgs, especially including precooked solutions for nasty packages like Tensorflow, and the ability to lock this using flakes.','It would be really great to have searchable, extracted docs for all the nixpkgs helper functions. Discovery for these functions is horrible right now.','Maybe guix or Spack, but likely Bazel.','','','','Y','','','Y','','','','','','','','pip2nix\r\n\r\ninterested in poetry2nix, haven\'t made it there yet\r\n\r\ntried several or the node/npm/yarn ones, but the IFD stuff was a dealbreaker.','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(755,NULL,3,'en','257261098','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(756,'1980-01-01 00:00:00',5,'en','817222538','A2','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','','','Y','','','','','Y','','','','','','','','Y','Y','','','','','','','I think a straightforward way to view dependencies would be useful. Also,, I understand why the file paths are the way they are but they\'re so confusing to navigate qwq','','','','','','','','','','','','','','','','','Y','','','','N','','N','Y',NULL,'I was having too many issues, most of which were due to NixOS not being FHS compliant I think (or maybe I\'m just an idiot). buildFHSUserEnv is cool, but it\'s too complicated to work out which packages are needed..','see above!!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','The Nix ecosystem is really cool! I love how organized the configuration in NixOS is'),(757,'1980-01-01 00:00:00',5,'en','1095823281','A5','A2','-oth-','Non-binary','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Because I wanted to experiment, and it\'s just way better than what I was doing before.','','Y','','','','','Y','','','','','','','','Y','','','Y','','Easy config of many things','Declarative package management','','I would add ','I\'d probably be using Arch linux and non-declarative package management.','','','','Y','Y','','Y','','','','','','','','Naersk: https://github.com/nix-community/naersk','Y','Y','','','N','I don\'t have the time, the Nix language can be confusing at times, no good guides to creating packages.','N','Y',NULL,'Because I just got tired of copying config between the NixOS vm and the host','If I had the time for it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'I use many projects from the nix-community org on github.\r\nI use https://github.com/kamadorueda/alejandra as my nix code formatter\r\n','I have tried many of the flake-based deployment tools, such as deploy-rs, nixops, etc. I haven\'t needed them since at this point, I only manage my laptop. They may be useful in the future, though.',''),(758,'1980-01-01 00:00:00',5,'en','751157327','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','Hoped to get a reproducible system (version controlled)\r\nAnd then use it to deploy stuff too.','Y','','','','','','Y','','','','','','','','Y','Y','','','','Declarative, reproducible system','build and deploy','','add more tutorials to get started (specific for one use case, e.g. creating a reproducible declarative system)\r\nFrom scratch:\r\n- installing nix (+ troubleshooting)\r\n- writing a minimal system (boostraping nix + installing basic cli tools)\r\n- more nix syntax\r\n- use the syntax to write more complicated systems (configs, system files, GUI tools, ...)\r\n- package third-party software yourself\r\n','Homebrew','Y','','','','Y','','','','','','','','','','','','Y','','','N','not enough experience / knowledge, also not a lot of time\r\nNix is complicated, I\'m still bad at using pretty basic features\r\n','N','Y',NULL,'Nix is complicated: you need to understand a lot about how it works inside\r\n+ new syntax to learn to do anything\r\n==> Nix code is hard to debug, it\'s not clear at all how to debug anything from any tutorial I\'ve read so far. Maybe there\'s a way\r\n+ not being able to debug also slows down learning by a great deal.\r\n\r\nHard to get colleagues to use it when:\r\n- it takes time to learn\r\n- I can\'t even showcase it great because I\'m still not great at it\r\n===> I can\'t really use it at work','More tutorials about how to create a declarative system (on Mac / Normal Linux / NixOS)\r\n\r\nA lot of content is NixOS centric and commands / code doesn\'t seem to apply to me (on MacOS / Other Linux)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(759,'1980-01-01 00:00:00',5,'en','534017262','A5','A2','-oth-','problem','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','i switched from arch linux to nixos in 2017 because i got sick of feeling like i had no way to keep track of all the tiny changes to config files around my system. i fell in love with nix\'s ease of packaging things myself and not having to deal with the slow iteration of building, compressing, installing on arch just to have it be broken and have to figure it out from there. i\'ve never gone back.','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','easily develop and test packages locally','reproducible builds (dependency hell is the worst!)','declarative package management','i would remove flakes and stabilize the experimental nix command. i have no real opinion on flakes themselves, but i\'m frustrated that the manner they\'re being developed is interfering with regular users that don\'t care, and there are not enough warning signs treating them as an experimental feature for anyone to seem to care.\r\n\r\ni would also remove nix-env and maybe channels because while they\'re a great way to let new users from other distros *think* they understand what they\'re doing, in practice they turn out to be fantastic footguns.\r\n\r\ni would really like if \"2nix\" tools were more integrated and had more consistent interfaces. as it stands, it tends to take a lot of manual work to use them.','i would probably be using alpine and apk, as i\'ve heard some decent things about how it declaratively resolves your system state from a list of packages (although its cli interface is imperative, it seems possible to use it declaratively)','','','','Y','','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','switched from arch linux in 2017 when i got sick of feeling like i couldn\'t possibly keep track of all the tiny changes i\'d made to configs around my system. now i have a nixos-config repo that i can just point at as an example when helping my friends. never went back.','Y','','Y','','','','','declarative system config','deployment tools (i use nixus, a couple friends use morph or nixops)','easy rollbacks','i would add an easy way to run programs in an isolated environment, with either ephemeral or permanent storage. this would be particularly useful for running untrusted programs from the internet, but also for trying out programs i don\'t want to spew their configs and state in my home directory before i\'ve decided i want to keep them.\r\n\r\ni\'d also change the module system so that modules can be instantiated multiple times if you wanted to have more than one of a service, without having to use containers.','alpine for its package manager, or maybe arch linux.','','','','','','','nixus','','','','sway','nixus (https://github.com/Infinisil/nixus)\r\nhome-manager (https://github.com/nix-community/home-manager)\r\nsimple-nixos-mailserver (https://gitlab.com/simple-nixos-mailserver/nixos-mailserver)','','i would have liked to see questions about culture and experiences with the nixos community'),(760,NULL,NULL,'en','1626904593',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(762,NULL,2,'en','923690410','A3','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','Y','','','Y','','Y','','','','','','Y','','','Y','','Easy software installation.','Easy software modification.','Easy software distribution.','','Fedora','','Y','','Y','Y','','','','','','','','','','poetry2nix','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(763,'1980-01-01 00:00:00',5,'en','1942485019','A5','A2','male','','','','','','','','','','Y','Y','','Y','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Declarative, Reproducible builds seemed like a killer feature','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Declarative Environment Management','Large, Community-Driven Repo','Reproducible Builds','1. Diagnostic/Debug messages are not very clear\r\n2. Better ways to discover builtin & library functions, especially derivation builders and fetchers\r\n3. A feature-complete LSP','More conventional tools. apt, cmake, apache, ninja, etc.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','Time. I\'m not confident I have the knowledge to make useful contributions ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','The idea of having one file define an entire system was very intriguing','Y','','','','','','','Declarative way to define a system','Generations / Easy Rollbacks','Lots of available options ','','A more conventional linux distro. Likely something based on Debian','Y','','','','','','','','','','bspwm','Home-manager \r\nNur\r\n','',''),(764,NULL,1,'en','1239785402','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','Y','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(765,'1980-01-01 00:00:00',5,'en','1350167465','A2','A3','male','','','','','','Y','','','Y','','Y','','','','','','','Y','','Y','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I always used a fully dockerized infrastructure so I was researching ways to make the OS I ran docker on more lean and declarative. Nixos felt insanely more advanced than any of the other hack jobs that people use such as ansible.','','Y','','','Y','','Y','','Y','Y','','','','','Y','','Y','Y','','Making nixos exist','Development shell.nix','Deployment with nixops and others','Should have more examples because things only click once you\'ve seen them working, don\'t assume people can just write nix expressions. \r\n\r\nMost of my colleagues only use nix to write configuration.nix as a series of enables, no nix language functionality whatsoever. Same with shell.nix.','Keep using pip and pain','','','','Y','','','','','Y','','','','','','I\'m trying to move to poetry2nix from machnix','Y','','','','N','Nix needs better tooling to bump the version of a derivation. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Set aside a weekend to move my server from arch to Nixos, took 3hrs. Then moved 10+ servers the following week, and my friends did too.','Y','Y','Y','Y','','Y','','configuration.nix','Automatic updates','Ability to rollback','Better configuration.nix with home manager, flaked etc ootb.','Arch for everything, and some kind of kubernetes microdistro that barely gets dhcp','Y','Y','Y','','','','','','','','Sway','','machnix',''),(766,NULL,1,'en','1906237792','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(767,'1980-01-01 00:00:00',5,'en','1377283878','A5','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','','','','','','','','','','','','','','','','sway','','',''),(768,'1980-01-01 00:00:00',5,'en','641421060','A2','A5','male','','','Y','','','Y','Y','','','','Y','','','Y','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I have grown an unsatisfaction when using Debian based systems and Ansible ','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Reproducibility','Testability','Nice community','Complete the switch from `nix-*` to nix (2.4+) subcommands\r\nMerge together NixOS, NixPkgs and Nix documentations, while ad the same time provide less long documents, and more discoverabilty via a better TOC and search.\r\ndeprecate nix-env while provide and document an alternative way using the new Nix 2.4+ tooling.\r\n','Bazel','','','','Y','Y','','','','Y','','Y','','','','node2nix\r\nmach-nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Wanted a more manageable way of installing packages and customizing distro behavior. I really tested GUIX before NixOS and and I\'ve found it .... esoteric (with its opinionated choices for init management and configuration language). I wanted something more resonating with my knowledge an that it\'s also more \"sellable\" to clients and fellow technicians. ','Y','Y','Y','Y','','','','Reproducibility','Testability','Serenity','','','Y','Y','','','','Y','','','','','sway','home-manager','','Document Hydra a bit more please!'),(769,'1980-01-01 00:00:00',5,'en','439643104','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted a Linux that doesn\'t get messed up after upgrades. Ubuntu just fills up with garbage over time, and upgrades are sometimes just broken. Switched to Gentoo, but if you forget to upgrade for couple months, it can just not build new versions of everything, because of lack of hermeticity and all that. Thought about making a system with Gentoo on top of ZFS with snapshots and rebuilding \"world\" each time I install a package. Ran into NixOS that basically achieves the same and more, with way less hassle.\r\n\r\nEven when I got fed up with Linux on desktop and switched to macOS, I just couldn\'t start using Brew with its fetching random scripts from the Internet approach. So I used the same Nix and home-manager and after some issues got fixed for Darwin, I\'m back with Nix!','Y','Y','','','','','Y','Y','Y','','','Y','','','Y','Y','Y','Y','declarative package management with home-manager','declarative dependencies, environments and all that','hermetic builds, sandboxed from the rest of the system','reproducible environments for my desktop, builds and servers','- make CAS the default mode of operation\r\n- allow to host binary cache on IPFS\r\n- allow to somehow trust different compilers to produce the same output without recompiling (e.g. \"go\" of the same version will produce the same output for the same code, even if run on different platforms)','I would suffer with symlinked dotfiles and brew, I guess.','','','','Y','Y','','Y','','','','Y','','','','','Y','Y','','','Y',NULL,'N','Y',NULL,'The state of Linux on Desktop was abominable. I\'ve immersed myself in Apple ecosystem now.','Linux ecosystem should get on par with Apple one :)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','niv - I tried it, but it wasn\'t very convenient, and now flakes are way better',''),(770,NULL,1,'en','38369466','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(771,'1980-01-01 00:00:00',5,'en','1057087166','A2','A4','male','','','','','','Y','','','','','Y','','','','','','Y','Y','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','','Y','','Y','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','N','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Want to replace brew'),(772,NULL,NULL,'en','1525292509',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(773,NULL,-1,'en','1552361888','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(774,NULL,NULL,'en','209809666',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(775,'1980-01-01 00:00:00',5,'en','701755655','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Discovered NixOS and then the combination of nix-shell + direnv for work setup. I also needed to package some of my own binaries for use with NixOS.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','nix-shell','packaging','','A better language','asdf or similar','','','','Y','','','','','','','','','','','','Y','','','','N','Nothing','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Had a full setup of my systems with Ansible, and discovered the declarative setup in NixOS, and it was just a perfect fit for me.','Y','','Y','','','','','Declarative','Portability of system for new hardware','','A better explanation of flake usage. A less complex language.','Arch + Ansible','Y','','','','','Y','','','','','sway','None','None',''),(776,'1980-01-01 00:00:00',5,'en','1452994457','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','','','','Add: Faster nix language evaluation\r\nAdd: Modules built into the language, less verbose option declarations\r\nAdd: https://github.com/NixOS/nix/issues/3121\r\n\r\nRemove: nix-env','Docker\r\nAnsible','','','','Y','Y','','','','','','','','','','node2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','','','','','','','','','','','Y','','','','','','','',''),(777,NULL,1,'en','1436768105','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(778,NULL,1,'en','254508899','A2','A2','male','','','','','','','','Y','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','N','Y',NULL,'I tried NixOS and the problem that I was having was that I couldn\'t grab a binary from the internet and expect it to work. I could have used nix-shell for this but software is not always in the latest version or does not exist. I also like to compile software that I use to be on latest versions, this meant that I had to write nix expressions to build those programs which was not the best experience.','A clearer/easier way to write nix package definitions. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(779,'1980-01-01 00:00:00',5,'en','695927260','A2','A3','male','','','','','','','Y','','Y','','','','','','','','Y','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','Y','Y','','','Y','','','Y','Y','','Y','','','','','','','','Y','','Y','','','','','','','','','','Buildbot','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','Y','','','Y','','','','','','','','','','','Y','','','','','','i3','','',''),(780,NULL,1,'en','2112263374','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(781,NULL,1,'en','86056443','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(782,'1980-01-01 00:00:00',5,'en','576938946','A2','A4','male','','','','','','Y','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','','','','NixOS :)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'ve got a job a bank where my beloved friends were using nix/nixos. That\'s how it all got started. Yes... a bank building SW from sources :D','','','','','','','Y','','','','','','','','Y','Y','','Y','','reproducibility','functional language','configuration as a code','','','','','','','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','reproducibility','immutability','configuration as a code','','','','','','','','','','','','','i3','home-manager','','There are no words how I could express the job you\'ve done. Thank you so much!\r\nKarol'),(783,'1980-01-01 00:00:00',5,'en','19560453','A2','A2','-oth-','Non-binary','','','','','','','','','','Y','','Y','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','Y','','A1','Heard of it on lobste.rs and played around with it for a bit.','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','nix-shell','nix-build','nix-env','-','Makefiles','','','','','Y','','','','Y','','','','','','','Y','','','','N','Nothing?','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','Heard of it on Reddit and wanted to try it out. How you can have some configuration files and build your entire system from that seemed really interesting.','Y','','','','','','','Defining the system using nix.','home-manager','','-','Arch Linux','Y','','','','','','','','','','DWM','home-manager','-',''),(784,NULL,NULL,'en','2041327478',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(785,NULL,1,'en','2116954028','A2','A3','male','','','Y','','','Y','','','','','','','','','','','','','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(786,NULL,NULL,'en','374150606',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(787,'1980-01-01 00:00:00',5,'en','1794088190','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','','','','','','','','','','','','','','','','Y','','','','composer2nix\r\ncabal2nix\r\nnpm2nix\r\n','Y','','','','N','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(788,'1980-01-01 00:00:00',5,'en','861227775','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','Volunteer projects','A3','','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','','','','Make the Nix codebase more approachable for non C++ experts','','','','','','','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','Volunteer projects','A3','','Y','','Y','Y','','','','','','','- Switch from scripted network implementation to systemd-networkd\r\n- Speedup nixos-rebuild','','Y','','','','','Y','','Y','','','','mach-nix','NixOps',''),(789,NULL,1,'en','921136124','A5','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(790,'1980-01-01 00:00:00',5,'en','822306716','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','it came with nixos. i staerted to use direnv and lorri so i woudnt have to add all dev pacakges to my gloval system configuration','','','','','','','Y','','','','','','','','Y','','','Y','','nix-shell gives me a deterministic and reproducible dev environment per project on all my machines','','','','havent looked for alternatives, provably global system packages/configuration','','','','','','','','','','','','','','','','Y','','','','N','so far i had no software that wasn\'t in nix and if software was too old in stable, unstable was enough for me. somethimes i look at the hydra status before a new nixos release to help with zero hydra features but all the software i use already works and it is a bit tedious to find a software package that is broken by itself and not by a dependency','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','i read about it a long time ago and when i had to reinstall linux on one of my machines i thought i\'d give nixos a try. if it wouldn\'t work out i could install arch by hand in 2 hours. i never needed to install arch again :)','Y','','Y','Y','','','','one central config for my operating system','i can copy/reuse configurations from toher machines','full system configuration history in git','full secret management so i can have all my secrets in a central location and commit everything else without a second thought to a public git','maybe i would give guix a try or would have stayed with arch','Y','','','','','','','','','','awesome wm','lorri/direnv','home manager. i have too little static configuration. most stuff in my homedir is rw and is better handled with syncthing to be synced between my machines.','i find nix(language) and lib function documentation severley lacking. looking at other packages in nixpakages and copy/pasting often helps but i cant say i have a deep understanding of what i am doing. maybe more examples or in-depth explained complex package expressions would help.'),(791,NULL,NULL,'en','412820133',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(792,'1980-01-01 00:00:00',5,'en','1473595329','A5','A5','male','','','','','','','Y','','','','Y','','Y','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','Y','','','','A3','I am an consultant and as such have many client, many with older text stacks. I was searching for a way to keep the various dev environments separate and working as my dev machine evolved around them.','Y','Y','','','','','Y','','','','','','','','Y','','','','','Isolated, repeatable environments','pure envs in order to know what my projects really depend on','being able to recreate an older build environment','Consolidate the various projects into a coherent whole. Flakes? Niv? Channels? env vs pkgs vs nixos? I want to have to know less about the internals of nix.\r\n\r\nI would like it to be easier to assemble an older dev environment after the fact. It\'s possible now, but sometimes more painful than I think it should be.','asdf and docker','','','','','Y','','','','','','','','','','I don\'t know what those are even. like bundix? If so, bundix and I think I use a similar one for Elixir development.','','','','','N','','N','N','It feels like nix as a whole is still finding it\'s way. I feel like too much is flux right now for me to try NixOS. When I was younger I liked configuring my Gentoo machine, but now I\'m old and I just want the defaults out of the box so I use Ubuntu. That said NixOS is top of my list of distros to try. I believe it the power of NixOS, but I\'m not ready to take on the relearning it will incur.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None','There\'s nothing else like Nix out there. I\'m cranky about some of the sharper edges but I think it\'s a fantastic project and I thank you all very much.'),(793,'1980-01-01 00:00:00',5,'en','1918214908','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I started using Nix when I started using NixOS. Here is the story of how I ended up using NixOS :\r\n\r\nFirst, I switched to Linux. I\'ve always been interested by programming, first starting with Scratch, then went on using python. I was in the future interested in Linux and FOSS, so, about a year after I had my first personal computer (that I used for school, due to having trouble with handwritting), I installed Linux on it (it was governement-founded computer). (should have had around 15 at this time). It was Ubuntu, but I soon switch, after a failed install of base Arch, to Antergos. I liked AUR a lot, but didn\'t found how to automate the re-building of AUR package. I eventually switched to Gentoo, for the interested of customazibility. I eventually learned about NixOS (don\'t remember where, but it may be from LinuxFR). I was particularly interested in reproductible and declarative system configuration, in particular due to how fast I could reinstall a computer with diverse things (but never had to install my main PC configuration on things other than x86-64 machines). So, I read the manual on my ebook while doing camping with my family, and while it was still school vacation, installed NixOS on the PC. It should have been around 2018-2019. Oldest commit I find are from february 2019, but that is the repo I used for home-manager, where I remember that I used nixos for some time before using home-manager (and eventually moved all the configuration in this repo). ','','','','','','','Y','Y','Y','','','','','Y','Y','Y','','Y','','Build/work once, likely build/work everywhere','','','A feature making it trivial to build/run any software that work on Linux (for example, when the software is already packaged in another package repository, or when there are simple and easy build instruction for some random complex GUI app for Debian, but there are missing dependancies in nixpkgs. Or the most common assuming that the distro respect the FHS. As in \"if it can be installed easily on another (Linux) computer, it can be installed easily on my system\"). It would also need not to add too much impurity.','Guix','','','','Y','Y','','','','','','Y','','','','naersk, mach-nix','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Started using Nix when I started using NixOS, so the same answer as for when I started using Nix (copy-pasted here):\r\n\r\n\r\nFirst, I switched to Linux. I\'ve always been interested by programming, first starting with Scratch, then went on using python. I was in the future interested in Linux and FOSS, so, about a year after I had my first personal computer (that I used for school, due to having trouble with handwritting), I installed Linux on it (it was governement-founded computer). (should have had around 15 at this time). It was Ubuntu, but I soon switch, after a failed install of base Arch, to Antergos. I liked AUR a lot, but didn\'t found how to automate the re-building of AUR package. I eventually switched to Gentoo, for the interested of customazibility. I eventually learned about NixOS (don\'t remember where, but it may be from LinuxFR). I was particularly interested in reproductible and declarative system configuration, in particular due to how fast I could reinstall a computer with diverse things (but never had to install my main PC configuration on things other than x86-64 machines). So, I read the manual on my ebook while doing camping with my family, and while it was still school vacation, installed NixOS on the PC. It should have been around 2018-2019. Oldest commit I find are from february 2019, but that is the repo I used for home-manager, where I remember that I used nixos for some time before using home-manager (and eventually moved all the configuration in this repo). ','Y','Y','Y','','','','','Declarative system management','Easiness to add a new service (most of the time) : just set a couple option, and installed tor/pipewire/a complete mailserver (with nixos-simple-mailserver, DNS excluded).','The ability to rollback and to have atomic update make it easier for me to toy around. Althought I didn\'t ended up using rollback much, as nixos configuration make it work most of the time once the system build.','Better integration between run-time (set with various tools) and declarative (set with nix) option.\r\n\r\nI like to set up a bunch of the configuration I use with declarative tools. I ended up making some setting I would like to handle with nix (for example, wifi configuration for my home network) not configured with nix (but the amount of trouble this caused dimished over time, probably as I had more experience, and ended up making some cool declarative configuration with this (for example, having the default theme of KDE set up to what I want with XDG_DATA_DIRS, while being able to set it to something else). But another problem that may arrive is that the configuration used differ from what is defined in the declarative configuration, while not expecting it. It should be interesting to see what changed from the nix setting to what is currently used.','GuixSD, Gentoo is GuixSD didn\'t exist','Y','','','','','','','','Y','','','home-manager, nixos-hardware.\r\n\r\nI often read information on nixos-weekly (which inspired me in creating a (truly) weekly newsletter for a community project) and the discourse forum.\r\n\r\nsearch.nixos.org to search for package and option (would love to be able to easily search on all flake and other nix repository).\r\n\r\nflake-utils, in particular the part of it allowing to iterate over all the architecture. I would like to not use it, and just writing package declaration with no care to architecture like with a default.nix','Hydra (due to not having a permanently-running server that good fullfill this need, thought I toyed with it on my laptop).\r\n\r\nNixOps (Just ended up running nixos-rebuild --target-host ..., which is good enought when I just have to deploy on a rasbberry-pi 3 or the low-end VPS I\'m now using, without providing the interesting kubernetes-like number of running instance abstraction -- which would have interested my in having more server (althought kubernetes doesn\'t seems to like to mix CPU architecture). Haven\'t yet tested KubeNix. Overall, the far difference on how Nixos and kubernete is configured is something that make me wonder how I could take the best of both world).\r\n','Something worrying me with nix flake is ending up with outdated dependancies, as there is no simple way to ensure the flake.lock in the git repo is upstream is kept fresh (outside of downloading and rebuilding it, of course).'),(794,NULL,2,'en','1789283109','A2','A4','male','','','','','','Y','Y','Y','Y','','Y','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Config management and reproducibility of NixOS seemed very interesting.','','Y','','','','','Y','Y','','Y','','Y','','','Y','Y','Y','Y','','Deterministic builds','Declarative configuration','Reproducibility','Improved documentation.','Maybe more containers as a way to handle state','','','','Y','','','','','Y','','','','','','','Y','','Y','','N','Nothing really.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(795,'1980-01-01 00:00:00',5,'en','1136294263','A2','A2','fem','','Y','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','','','','','','','Personal computer','','Y','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','N','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(796,NULL,1,'en','1691256799','A2','A3','fem','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(797,NULL,NULL,'en','845754',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(798,'1980-01-01 00:00:00',5,'en','350179780','A2','A4','male','','','Y','','','Y','','','','','Y','','','','Y','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I\'m using Nix because I\'m using NixOS.\r\nRe NixOS: I needed a i686 (32bit) supporting distro. A colleague told me about NixOS. It took me some hours to comprehend its internal workings, then I decided that it\'s the most promising alternative.','','Y','','','','','Y','','','Y','','','','','Y','Y','','Y','','repeatable builds','clean (sandboxed) environment','','I\'m still having trouble debugging failed build. If a build fails, I would like to \"enter the build environment\" somehow. I know there are tools, but I had problems using them.','Maybe openSUSE\'s build farm.','','','','Y','','','','','','','','','','','node2nix (occasionally)','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I needed a i686 (32bit) supporting distro. A colleague told me about NixOS. It took me some hours to comprehend its internal workings, then I decided that it\'s the most promising alternative.','Y','','','Y','','','','Reproducible system','VM tests','','Some areas in nixpkgs/nixos might need consolidation.','Maybe ArchLinux','Y','','','','','Y','','','Y','Y','','','',''),(799,'1980-01-01 00:00:00',5,'en','180761578','A2','A4','male','','','','Y','Y','','','','','','Y','','','Y','','','','Y','Y','Y','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','Y','','Y','','','','','','','Y','Y','','Y','','','','','','Maintainer which are not helpful at all','','','','','Y','Y','','','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','python and R \r\n- nothing is moving forward since years',''),(800,'1980-01-01 00:00:00',5,'en','1875769446','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A declarative desktop (NixOS) seemed interesting to move to from my former ansible managed desktop.','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','','','Reproducible','','','','','','','','Y','Y','','','','','','','','','','','','Y','','','N','Most packages are already updated','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A declarative desktop to replace an ansible managed one.','Y','','Y','','','','','Declarative','','','Declarative partitioning','Fedora with Ansible','Y','','','Y','','','','','','','river','','',''),(801,NULL,NULL,'en','1266935778',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(802,'1980-01-01 00:00:00',5,'en','148546404','A5','A3','male','','Y','','','Y','','Y','','','','','','','','Y','Y','','Y','','','Y','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','The video of a docker container being smaller than alpine 🤯\r\n\r\nBut declarative systems are also a very compelling sell','','Y','','Y','Y','','Y','','Y','','','','','','','Y','Y','Y','','','','Development environment. I have found it\'s actually harder to just start hacking around in NixOS. Declarative projects require some thought, which can stifle creativity.','I think modules are overly paternalistic. Why should my grub.cfg be set up a particular way just because some pkgs maintainer likes it that way? Or my vimrc etc...\r\n\r\nAlso, the PR system is unsustainable. Within hours a contribution can become buried. 3k outstanding PRs is not a good look. Contributing seems to be more of a political game than a merit based one.','Probably just more docker','','','','Y','Y','','','','','','Y','','','','node2nix: https://github.com/CarolinaIgnites/editFrame/blob/55f113b5ec1ddfbcfe5f13a94924a7869475b1e4/flake.nix#L14','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'','Y','Y','Y','','A1','I tried standalone Nix, but thought having multiple package managers (on a system where I was root) was dumb. So I waited until I had a reason for a fresh install and decided to go all in with NixOS','Y','','Y','','','Y','','flakes','home-manager','hot switching (nix-rebuild switch)','Rewrite bootable iso files. I think it\'s a bit of a mess? Also allow for a luks partition. But this is something I can do, and merge upstream. Ideally, I\'d like to be able to run a live usb for my Nix systems as well.','Arch','Y','','','','','','','','','','Xmonad, i3, sway','Tweag\'s nix_rules for bazel','',''),(803,'1980-01-01 00:00:00',5,'en','2120422066','A2','A3','male','','','','','','','','','','Y','Y','','Y','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','','','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','Y','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(804,'1980-01-01 00:00:00',5,'en','499543154','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','A couple of weeks back. Was looking for an alternative to Homebrew and have been interesting in nix and nixos for quite some time, so decided to give nix-darwin and home-manager a go. Has been an interesting experience (but far from easy/smooth) -- mostly due to broken or unavailable packages for aarch_darwin. I think things would have been smoother on Linux.','Y','','','','','','Y','','','','','','','','Y','','','','home-manager','A declarative approach to managing my development machine and project environments.','','','Better Darwin support, a more hands on guide for beginners.','Homebrew and a lot of shell scripts that tried to automate as much of my setup as possible','','','','','Y','','','','','','','','','','sbtix, hex2nix, npm2nix','Y','Y','','','N','Still getting into it. Will probably do it once I\'m more comfortable with what I\'m doing.','N','N','Having appropriate hardware at work.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','',''),(805,NULL,NULL,'en','205076313',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(806,'1980-01-01 00:00:00',5,'en','1401885201','A2','A4','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I\'d known about nix from way back, and I\'d tried to run in on my laptop a couple times, in 2015 and 2018 at least.\r\nThere was always something off about the main os experience, but I loved nix pkgs.\r\n\r\nAt work last year, a colleague was tasked with getting the dev env setup working smoothly for new hires and I told him to look into nix. He really got into it and we\'ve been using nix for application develoment now for about a year. This is the second company where we\'re doing it.\r\n','','Y','','','','','Y','','','','','','','','Y','','','','','Reproducible builds','Easy onboarding of new devs','Rapid switching between projects with direnv-nix','The nix expression language. It\'s a major barrier to adoption among \'working programmers\'.','a combination of Makefile, os-detection switches, and Brew/apt/whatever. Plus docker. ','','','','','','','','','','','','','','','','','','','','N','Haven\'t needed to so far, I only use standard packages.','N','Y',NULL,'Bad hardware support, hard to run closed-source software needed for work.\r\nI also dislike systemd and want to run a distro without it.','- A database of known working hardware configurations that I could pull in\r\n- Option to not have systemd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','You are doing a great job, please keep up the excellent work.'),(807,NULL,1,'en','123564480','A5','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(808,'1980-01-01 00:00:00',5,'en','983203654','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was looking for a dotfile manager, and the fact that nix bundled config + software made me check it out. The ZFS support and the ease of adding custom packages & tweaks made me completely switch to NixOS.','Y','Y','','','','','Y','','Y','','','','','','Y','','Y','Y','','Configuration management','Reproducibility','Programmability','- Better devtooling: better documentation, better language server, typing\r\n- More (opinionated) templates\r\n- Better integration with third-party package managers/repositories, insted of having to combine yarn2nix, carnix, bundix, ...','asdf, GNU Stow, Ruby scripts, Docker, ansible','','','','Y','Y','','','','','','','','','','cabal2nix\r\nyarn2nix\r\nbundix\r\ncarnix\r\nsbtix (https://gitlab.com/teozkr/Sbtix/)\r\n','Y','Y','','','N','Time','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','I was looking for a dotfile manager, and the fact that nix bundled config + software made me check it out. The ZFS support and the ease of adding custom packages & tweaks made me completely switch to NixOS.','Y','','Y','','','','','Reproducability','Rollbacks','ZFS','- Declarative ZFS filesystems\r\n- Built-in rootless/wipe on boot\r\n- rEFInd support','Arch linux, Guix','','','','','','Y','terranix','','','','sway','rnix-lsp','nixops',''),(809,NULL,1,'en','1428088716','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','OpenBSD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(810,NULL,1,'en','2055214881','A5','A3','male','','','','','Y','','Y','Y','','','','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(811,'1980-01-01 00:00:00',5,'en','1735826318','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Security Engineer','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','reproducible builds','if it builds, it very likely runs','declarative build configuration','','','','','','Y','Y','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','Y','','','','declarative configuration','reproducible configuration','','','Probably another Linux distribution managed via ansible, or other alternatives (saltstack).','Y','Y','','','','','','','','Y','','','',''),(812,'1980-01-01 00:00:00',5,'en','2043009854','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','We started using it at my company.','','Y','','','Y','','Y','','Y','Y','','Y','','Y','Y','Y','Y','Y','','Declarative environment management','Reproducibility','','Static typing!','Plain Arch Linux, Makefiles, bash scripts, tissues to wipe away my tears','','','','','','','','','','','Y','','','','cabal2nix, haskell.nix','Y','','','','N','Not having had the chance yet, maybe soon','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','When we started using Nix at our company.','Y','','Y','Y','','Y','','See Nix','','','Currently, support for user files and multiple hosts are provided by the community (home-manager, devos). It would be nice to build them into NixOS.','Arch Linux and GNU Stow','Y','','','','','','','','','','XMonad','home-manager, haskell.nix, niv','',''),(813,'1980-01-01 00:00:00',5,'en','1490020455','A5','A4','male','','','Y','','','Y','Y','Y','','','Y','','','','','','Y','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','While suffering from the dreaded \'Distro-Hopping\' disease. I came across something new, something different, NixOS. Since first install it has been my go-to for all devices, desktop, laptop, servers, IOT with rpi3/4. ','','Y','','','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','Declarative Config','Reproducible System Flakes','Reproducible Dev Environments','Service Management Agnostic support. Would be beautiful to be able to leverage runit or GNU shepherd if I chose to.\r\n\r\nAlso, I would by default NOT include the NixOS documentation, except when installed from live environment. Having to include option to \'remove\' this from my server systems is annoying and goes against my ideal Minimal start deployments.','Before Nix I used minimal distros such as Voidlinux or Alpine mostly. Having only the bare minimum installed and building your own systems up rather than ripping and removing to slim down what others \'think\' I need.','Y','','','Y','Y','','Y','','','','','','','','','Y','Y','','','N','Nerves. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Distro-hopper.. NixOS seemed better, smarter.','Y','Y','Y','Y','','Y','','Declarative Config','Reproducible System Builds','Reproducible Dev environments','','','','','','','Y','','','Y','','','bspwm','You brought up Colmena earlier, but its really fantastic and I wish some more folks would jump on and work on it. Have also Agenix and Homeage sparingly. Would love to see it merged into normal NixOS usage in future.','NixOps just did not work for me. Also seems most development has stalled recently. Would love to see it improved.\r\n\r\nMobileNixOS would be awesome to see happen, at least on the PinePhone. Understanding that more folks need to get devices and work on it though. I do hope to assist in this area in the future.','Doing good guys. Really enjoy everyone in the forums, on twitter and youtube that discuss Nixos. Really great community.\r\n\r\n'),(814,'1980-01-01 00:00:00',5,'en','662812964','A5','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A1','Our projects leverage nix shell for local dev. We also use nix in our CI pipelines to build containers.','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','','','','','','','','','','','','','Y','','Y','','','','','Y','','','','N','','N','Y',NULL,'Difficulty / time','A good book that takes the pills and expands on them to show how to build and manage the lifecycle of a full system with lots of examples and suggested patterns.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(815,'1980-01-01 00:00:00',5,'en','1963243067','A2','A4','male','','Y','','','','','','Y','','','','','','','','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','I was tired of my system getting slowly corrupted between OS updates.','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','Declarative package management','Mix and match builds','Image creation','','Probably pacman and all the various language specific dependency managers (e.g. pip, npm, conan)','','','','Y','Y','','','','','','','','','Azure Pipeline','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I got tired to distro updates breaking my system.','Y','','Y','','','','','Declarative configuration','Image creation','Service configuration','','','','','','','','','','','','','sway','home-manager','',''),(816,NULL,NULL,'en','2017578039',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(817,NULL,NULL,'en','1233903917',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(818,NULL,2,'en','1048672558','A1','A4','male','','','','','Y','Y','Y','','','','Y','','','','','','Y','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','To develop hasktorch, it depends on c++-library. It has complex dependencies and needs custom packages.\r\nIt is easy for nix to manage the dependencies.\r\n','Y','Y','','Y','','','Y','','','','','','','Y','Y','Y','','','','High learning cost','Immutable packages. ','Cache','Add static type and type class, and remove dynamic type.','Use docker.','','','','Y','Y','','','','','','Y','','','','cabal2nix\r\nyarn2nix\r\nbundix\r\nmachnix\r\n','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(819,NULL,NULL,'en','353736637',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(820,'1980-01-01 00:00:00',5,'en','1529874148','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','','','Y','','','','','','Y','','','Y','','Determinism','NixOS','','DHT or site with a list of 1. Binary caches 2. Signed (maybe even TPM/Secure enclave signed?) mappings between input hash and content hash 3. Maybe content hash to IPFS?\r\n\r\nBetter docs and more info in tools. I’ve had to read a lot of source code to understand.\r\n\r\nA |> to compose functions please. It’s impossible to read nested parentheses with multiline lambdas. It’d also help wi th the weird problem of “pre composed” functions in lib (e.g mapConcat instead of map x |> concat)\r\n\r\nIncremental builds','','','','','Y','Y','','','','','','','','','','','','Y','','','N','Personal issues','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','Y','','','','Personal machine','','','',' secret aware NixOS (e.g. whatever.secretEnv.”a” = someSecret instead of whatever.environmentFile = “/run/agenix/aaa”)\r\n\r\nMore non primitive option types (E.g. service.whatever.db = service.pgsql.out would be nice)','','Y','','','','','','','','','','Sway','nixos-container','',''),(821,'1980-01-01 00:00:00',5,'en','286774993','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','','','','','','Y','','Y','Y','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','It started with configurations of servers and a replacement of Ansible/SaltStack, which have their weaknesses. In nixpkgs, I get a huge amount of working and peer reviewed configurations that I would otherwise would need to build myself.','Y','','Y','Y','','','','Declarative Package Management and Configuration','Low level contribution to nixpkgs','Use of latest packages if needed','Something like USE-Flags to enable/disable functions on all packages, instead of using overrides.','ArchLinux','Y','','','','','','','','','','i3/sway','','','We need to go away from Github, which is only reachable via IPv4. Maybe if gitea got federation, this would be a good alternative.'),(822,NULL,1,'en','129619457','A2','A4','male','','','','','','Y','Y','','','','Y','Y','','','','','','Y','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(824,'1980-01-01 00:00:00',5,'en','769762331','A5','A4','male','','','Y','Y','Y','Y','Y','Y','','','Y','','','Y','','Y','Y','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','Nix enthusiasts at work introduced me to the tooling.','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','reproducibility','quality of packages','ease of use','improve the command line experience ease of use','software released as flatpak and/or container images','','','','','','','','','Y','','Y','','','','','Y','','','','N','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(825,'1980-01-01 00:00:00',5,'en','1867275298','A5','A3','male','','Y','','','','Y','Y','','','','','','','','Y','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I started learning nix as a reproducible alternative to arch Linux and as an alternative haskell build tool to cabal and. stack.','','Y','','','Y','','Y','Y','','Y','','','','','Y','Y','','Y','','Declarative project/infrastructure configuration.','Reproducible builds.','Extensible (via overrides) recipes for builds.','There needs to be clearer community guidelines. The manual is already extensive so I guess we need fewer patterns, not more documentation.','Arch Linux, shellscripts, terraform, stack.','','','','Y','Y','','','','','','Y','','','','','Y','Y','Y','','N','Nobody responded to my pull requests.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Alternative to arch Linux. Reproducible configurations.','Y','Y','','Y','','','','Declarative configurations/infrastructure.','Reproducible builds/infrastructure.','Extensible recipies (via overrides) for builds/packages.','Many modules are minimal. I wish there was a little more organizing beyond the manual and IRC to communicate with people about them. I wonder if there are just too few maintainers.','Arch Linux, terraform, shell scripts.','','Y','','','','','','','','','Ratpoison','','','Nix is great! Let\'s try to make our relationship with guix collaborative. Maybe build some kind of interop? Let\'s also try to make nix simpler; there\'s too many ways to do things and so it\'s impossible to document them and evaluate them without spending years to learn trade offs.'),(826,'1980-01-01 00:00:00',5,'en','224155366','A5','A3','male','','','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I read about Flakes from Tweag\'s blog posts and decided that Nix would be a good way to lower my blood pressure (barring the initial learning curve -- which is understandably steep given how complex package management is and how much other tools get wrong or hide).','Y','','','Y','','','Y','','Y','','','','','Y','','Y','','','','Flakes','Though a high-tier platform, it runs on aarch64-darwin','Works on Linux/WSL','I\'m still early on my journey so I suspect many of the sharp edges are still behind several hills I have yet to climb.\r\n\r\nA better configuration language, or one with explicit types, would be helpful (nickel?).','Package managers provided by different operating systems or brew. And a stress ball. And baby aspirin.','','','','Y','Y','','','','','','','','','','','','Y','','','Y',NULL,'N','Y',NULL,'Weird use case -- I use EC2 instances which have essentially no storage, but large amounts of RAM. If I use a different distribution and instead install nix, I can create /nix ahead of time and make it a RAM disk.\r\n\r\nI\'ve run into problems trying to use a different store so it was easier for me to switch to Amazon Linux 2022\'s minimal image and just use that (no SELinux and I think it starts faster than NixOS).','The ability to easily move the store location without the need for a reboot, since a reboot isn\'t feasible when you\'re trying to move it to a RAM disk.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(827,NULL,1,'en','1476905277','A2','A3','male','','Y','','','','','Y','','','','','Y','','','','','','Y','','','Y','','','Y','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(828,NULL,NULL,'en','1822301288',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(829,'1980-01-01 00:00:00',5,'en','2092060313','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A5','Needed to work on multiple php projects all with different versions and not comfortable with working with VMs. Also had issues with upgrade breakage on Archlinux.','','','','Y','','','Y','','Y','','','','','Y','Y','','','Y','','anxiety free upgrades and installs','easy, copyable machine configuration','per-project dev environments','The channel feature doesn\'t feel 100% right, but i\'m not sure what i want instead.','archlinux for desktop and maybe debian or something elsewhere. Or perhaps try out Guix if that\'s not cheating.','','','','','','','','','','','','','','','https://github.com/NixOS/cabal2nix','','','Y','','N','Lazyiness, knowledge','Y',NULL,NULL,NULL,NULL,'A1','','Y','','Desktop','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Sway, Xmonad','','',''),(830,'1980-01-01 00:00:00',5,'en','1012426452','A2','A1','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I installed NixOS','','','','','','','Y','','','','','','','','Y','Y','','Y','','Declarativity','Nix shell','Flakes','Add a cli tool to run dynamically-linked binaries without creating a derivation with patchelf','','','','','Y','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','','I found the idea of declarative config appealing','Y','','','','','','','Declarative config','Nixpkgs','Rollbacks','','Arch or Fedora Silverblue','Y','','','','','','','','Y','','','','',''),(831,'1980-01-01 00:00:00',5,'en','781515579','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','yarn2nix','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','','','','','','','','','Y','','','','','','','','','','i3','','',''),(832,'1980-01-01 00:00:00',5,'en','2064427832','A2','A4','male','','','','','','Y','Y','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I started using NixOS first, Nix came as part of the bargain.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Declarative shell configuration (i.e. a shell for developing a particular package including my editor configurations)','Lock files for everything with flakes','Having a desktop environment synchronised across machines','Remove the multiple commands and settle on a single command format','I would probably lean on docker / flatpak.','','','','','Y','','','','','','','','','','','Y','Y','','','N','Time. Although I intend to change that.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Tried Puppet then Ansible to produce machine configurations and was unsatisfied. I started searching for a system that updates atomically from a configuration, found NixOS and haven\'t looked back.','Y','Y','Y','Y','','','','Declarative system configuration','NixOps','nixos-rebuild build-vm','Improve documentation of NixOps (I still don\'t follow the story of managing multiple sites, e.g. KVM & EC2, with it) and flakes.','Fedora Silverblue','Y','Y','','','','','','','','','sway','None that are nix-specific really. I specifically use mach-nix for python development and sops for secrets handling within NixOps.','I\'m still using NixOps, but I\'m looking for alternatives as the upgrade to nixops 2.0 has made managing multiple sites confusing.','I\'m very happy with NixOS and would love to contribute more, will do so when time allows!'),(833,'1980-01-01 00:00:00',5,'en','1718187411','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y','','','N','Y',NULL,'Time commitment; I was in the middle of porting my macOS Homebrew + dotfiles setup but couldn\'t continue because of lack of time, investment, and need to be productive in the moment.','If Nix/NixOS had official migration guides for these baseline-workflow oriented things (instead of relying on the community), it would be truly helpful.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Initial setup was immense','Probably when I get a new laptop and need to setup Linux on it',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','home-manager!',''),(834,NULL,2,'en','148460011','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','Y','General Software Developer','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was annoyed at how sometimes, things would just break back when I ran Arch Linux, but I liked the binary-backed from-source model.\r\n\r\nI\'d heard whisperings of NixOS in various online communities, and finally gave it a shot back in early 2020.\r\n\r\nI love it.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Easy rollbacks (not that I\'ve had to use them)','Ease of contained building','The community','I\'d make the unstable Nix Flakes actually good.','I\'d probably still be using Arch Linux, for better or worse.','','','','Y','Y','','Y','','','','Y','','Y','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(835,NULL,NULL,'en','361447353',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(836,'1980-01-01 00:00:00',5,'en','940561343','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I wanted to try something new and nixos seemed interesting. Also, home-manager looked useful ','','','','','','','','','Y','','','','','','','','','Y','Declarative home config through home-manager','Updates just work','Declarative config','Can run programs temporarily through nix-shell','Documentation, support for vmware workstation ','For managing configs, yadm','','','','','','','','','','','','','','','','','','','','N','I still need to finish going through nix pills','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I wanted to try having a declaratively configured system ','Y','','Y','','','','','Everything is configured in one place ','Large selection of software ','Package installation and updates are atomic','Some native steam games don\'t work.\r\nI can\'t get dcss trunk to build (probably need to go through nix pills for that)\r\nVMware workstation support (as a host) ','Arch linux ','','','','','','','','','','','i3','home-manager ','','Keep up the good work '),(837,'1980-01-01 00:00:00',5,'en','1399490182','A2','A3','male','','','','','','Y','','','','','','','','Y','','','Y','Y','','','','','','Y','','','Y','','Y','','OpenBSD','N','N','I haven\'t really tried and feel intimidated to, both from the ways I see the community religiously pitch it and from the way the workings are perceived.\r\nFrom the outside in, it looks like nix* is an entire different style of workflow and day2day usage which after 20odd years with more traditional systems make it hard to allocate the required time to figure out how and were to start through to get an understanding and a general feel for it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I haven\'t really tried and feel intimidated to, both from the ways I see the community religiously pitch it and from the way the workings are perceived.\r\nFrom the outside in, it looks like nix* is an entire different style of workflow and day2day usage which after 20odd years with more traditional systems make it hard to allocate the required time to figure out how and were to start through to get an understanding and a general feel for it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(838,'1980-01-01 00:00:00',5,'en','1235925224','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','SmartOS (illumos)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Declarative OS config with NixOS sounded tempting - tried out some NixOS config together with a friend, that we found on GitHub. Then stumbled across https://github.com/divnix/digga/tree/main/examples/devos and adapted our config to that. Been using NixOS ever since! Never going back to non-declarative!','Y','','','','Y','','Y','Y','Y','','','','','','Y','Y','','Y','','flakes','nix-shell','nix experimental-features','discoverability / docs / more easy starter examples','pacman','','','','Y','Y','','','','','','','','','drone CI','yarn2nix https://github.com/nix-community/pip2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Declarative OS config with NixOS sounded tempting - tried out some NixOS config together with a friend, that we found on GitHub. Then stumbled across https://github.com/divnix/digga/tree/main/examples/devos and adapted our config to that. Been using NixOS ever since! Never going back to non-declarative!','Y','Y','Y','','','','','maintaining declarative OS configs for all my machines','nixos-rebuild --rollback','switching between generations','discoverability / docs / more easy starter examples','manjaro Linux or GUIX','Y','','','Y','','','','','','','sway','https://github.com/divnix/digga\r\nhttps://github.com/ryantm/agenix\r\nhttps://github.com/nix-community/home-manager\r\nhttps://github.com/numtide/devshell\r\n\r\n','','Thank you!'),(839,'1980-01-01 00:00:00',5,'en','1607813212','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Friends told me it was awesome','','Y','','Y','','','','','','','','','Laptop','Y','Y','','','','','Having a defined system state','Sharing system over multiple systems','','Add Working NodeJS packaging','Arch','','','','','','','','','','','','','','','','','','','','N','No real introduction guide to the nix language. Struggling with my own packages','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','same as nix','','','','','Y','','','same','as','previous','same as previous','same as previous','','','','','','','','','','','sway even if it sucks a lot','','',''),(840,NULL,NULL,'en','1925773173',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(841,NULL,1,'en','1835250113','A5','A5','male','','','','','','','Y','Y','Y','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(842,'1980-01-01 00:00:00',5,'en','1903103541','A2','A2','male','','Y','Y','','','','Y','','','Y','Y','','','','','','','Y','','','Y','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Declarative system configuration\r\nNever again forget how a system came about','','','','','','','Y','','','','','','','','','','','Y','','Declarative Configuration','Nix shell dev environments','Rollbacks','Improve introspectability and docs for the nix language\r\nIt\'s quite difficult to understand all that goes on in nixpkgs','Guix XD\r\nProbably ansible if I\'m honest\r\nI think it\'s what gets closest otherwise to having a reproducible system','','','','Y','Y','','','','','','','','','','','','Y','','','N','Even after close to 2 years configuring something non-trivial with the nix lang is still more arcane magic to me than anything else','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Declarative configuration with rollbacks \\(*.*)/','Y','','','','','','','Declarative configuration','Rollbacks','','I don\'t know how NixOS could be better without it concerning nix. My main complaints are about the difficulty of understanding nixpkgs. NixOS + home-manager is pretty much ideal in my mind.','Good question\r\nI really don\'t know\r\nI don\'t want to go back','Y','','','','','','bud','','','','xmonad','Devos for config\r\n','','Thank you for maintaining and improving Nix/NixOS!\r\n\r\nI am currently working through https://ianthehenry.com/posts/how-to-learn-nix/ so maybe I will be able to give something back in the future^^'),(843,NULL,2,'en','907361854','A5','A5','male','','Y','','','','Y','Y','','','','Y','','','Y','','','Y','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','We were struggling with being able to build new cloud-based shared developer workstations on a regular basis. We transitioned from Ubuntu to NixOS in the hopes this would alleviate some of the issues. Some aspects got better (reproducibility, less collision between multiple users managing the system) but many things also got worse: general develop experience, ability of developers to diagnose and solve their own issues with the system, documentation of the system (local and web), the sheer number of little but constant paper-cuts and annoyances, etc. ','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','Y','','Declarative system definition with ability.','Roll-back to previous state','','* Rather than trying to work against decades of UNIX design, extend the ld.so/ldconfig system to do library pathing into the nix store rather than using the symlink system that requires packages to be recompiled to point to the right libraries.\r\n* Make the documentation comprehensive and well maintained. For example, when Gentoo was younger than NixOS is now, the documentation was FAR better and more comprehensive.\r\n* Fix the multitude of assumptions around users being defined in /etc/passwd. I constantly run into issues where NixOS configuration assumes that users are defined in /etc/passwd rather than the possibility of them being network defined (LDAP, etc). This is challenging because of NixOS desire to have user configuration be part of the declarative definition of the system. For example, rootless podman doesn\'t work correctly for network defined users because subuid mappings are only configured for local users.\r\n','Ubuntu','','','','','','','','','','','','','','','','','Y','Y','','N','Some fundamental design decisions mean that there are just so many pain points and edge conditions that I don\'t have motivation to make contributions right now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(844,NULL,1,'en','1314666728','A5','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(845,'1980-01-01 00:00:00',5,'en','243266795','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','','node2nix\r\nyarn2nix\r\npoetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','','','','','','Y','Y','','','','Y','','','','','','','',''),(846,NULL,NULL,'en','1174698280',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(847,NULL,1,'en','1772439220','A5','A3','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(848,'1980-01-01 00:00:00',5,'en','1927731738','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend of mine used it, tried some nix-shells, tested NixOS and dove deeply into the nixpkgs collection and contributed a lot, the more I learned the more I liked it. Used nixops to deploy on my NixOS VPS, now using NixOS and home-manager mainly.','Y','Y','','Y','','Android (see nix-on-droid)','Y','','Y','','Y','Y','','','Y','Y','','Y','','reproducibility','powerful language and ecosystem','portability ','Type checks, static types and more official IDE support. e.g. Intellij, vim, atom.\r\n\r\nBetter java (maven, gradle) build support.','before I used nix, I had handcrafted shell scripts to set up my dotfiles and stuff. Started using nix early in my career so never thought about it.','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Started with Ubuntu but wanted more control and learn more about linux, used gentoo for a while but that was just too time consuming. In the meantime I found nix and tried NixOS. In the first months, I was mainly focused on adding packages to nixpkgs that I needed. Now it is my go to OS for everything except gaming (Windows) and work (ubuntu there because sometimes i need to install so tools that may be propietary or not yet available in nixpkgs).','Y','','Y','','','Y','','reproducibility ','composability of different modules for different environments','clean system, no dangling files etc. your system is always clean (if you don\'t do any impure stuff)','Reduce build times, evaluation takes a lot of time','I would try ArchLinux.','Y','Y','','','','','','','','','dwm','home-manager, nix-on-droid, statix, nixpkgs-fmt, cachix github actions, cachix','NUR','Awesome project, thank you very much! Looking forward to each release and to stabilizing flakes :)'),(849,'1980-01-01 00:00:00',5,'en','1460508026','A5','A2','male','','Y','','','','','','','Y','','Y','','','','','','','Y','','','','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I wanted a declarative environment, and nix was the best choice. ','','Y','','Y','','','Y','Y','Y','','','','','Y','Y','Y','','Y','','Declarative environments\r\n','Reproducible environments','Most number of up-to-date packages','A much more selective / detailed upgrade process, allowing us to prioritize cached builds over newer builds via an option or user input. ','Ansible, Docker, and Fedora','','Y','','Y','','','Y','','','Y','Y','','','','node2nix and pypi2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I needed a declarative and reproducible environment and nixOS fits the criteria best. ','Y','Y','Y','','','','','Declarative environments\r\n','Reproducible environments\r\n','Most number of up-to-date packages','A much more selective / detailed upgrade process, allowing us to prioritize cached builds over newer builds via an option or user input. An official way to manage user environments (home-manager).','Ansible, Docker, and Fedora. ','Y','','','','','','','','','','i3','home-manager','None',''),(850,'1980-01-01 00:00:00',5,'en','1976501987','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','','','','','Y','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','','Y','Y','','','','','','','','','Y','','','','','','','Y','','','','','',''),(851,'1980-01-01 00:00:00',5,'en','1563816874','A5','A3','male','','','','','','','','','','','Y','','','','Y','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I found it confusing, I like figuring out confusing things, found that it was complicated for useful reasons (declarative systems) and nothing else has provided those features so I stick with Nix.','','Y','','Y','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','Comprehensive packaging combined with ease of contributing new packages.','Stability ','Declarative systems','','Maybe guix? Probably Arch.','','','','','Y','','','','Y','','Y','','','','node2nix','','Y','Y','','N','Social anxiety lmao','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','','','','','','Y','','','','','','','','','','i3 and sway','','','It would be excellent if people had a place where they could conveniently share up to date flakes and configs and rate them for popularity. Something like a flake community sharing mechanism?'),(852,'1980-01-01 00:00:00',5,'en','268396200','A2','A2','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','','','Y','','','','','Y','','Y','','','','','','','','','Y','','','','','Complete declarative Desktop management: User Home, KDE Plasma settings, all Accounts, Backup etc...','','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','Home-Manager','',''),(853,'1980-01-01 00:00:00',5,'en','774657026','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I wanted to have a record of all of the configuration changes I made to my OS and the software I use. I was tired of making changes via tons of different files scattered all over the place. I would forget what settings were needed and why. I wanted to be able to cleanly remove software that I was no longer using.','','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Centralizing configuration in one place','Configuring software in a declarative, not imperative manner.','Being able to temporarily set up a development environment for a particular project using nix-shell.','I would add better documentation.','Configuration management software such as Puppet or Ansible.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','Being unsure as to the best practices for packaging software.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','A desire to make the configuration of my operating system and services more declarative, centralized, and legibile.','Y','','Y','','','','','The ease of configuring and running system services.','The ability to roll back to previous configurations if updates cause issues.','The integration with Nix and nixpkgs','The extra storage space used during updates.','Archlinux','Y','','','','','','','','','','i3','home-manager','Nix flakes',''),(854,'1980-01-01 00:00:00',5,'en','1546900757','A5','A4','male','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Wanted to make sure my development environments (e.g., dependencies) are reproducible (for my future self), and Nix fits the bill, in addition to being a great package manager.','Y','','','','','','Y','Y','','','','','','','Y','','Y','Y','','Reproducible/Robust (future-proofing development environments, and relatedly supporting easy rollback in case things go wrong, giving me peace of mind when experimenting and prototyping).','Local/Modular (can produce ad-hoc nix-shells for development, or to test packages “without actually installing them system-wide”).','Functional (aka the Nix language), and hence Customizable (I can create packages if they are not available elsewhere).','Make the DevOps/update experience much better (especially after the arrival of content-addressable Nix), so that we get the `guix refresh` experience when updating dependencies.','Guix (probably, but Guix wouldn’t exist without Nix).','','Y','','','Y','','','','','','','','','','cabal2nix (callCabal2nix).','Y','','','','N','I am not a frequent/an active user of github yet (so this is me but not Nix/Nixpkgs), but will change soon.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Have been using Nix (the package manager) on Ubuntu before, and later I bought a new laptop, so why not.','Y','','','','','','','Reproducible (can set up a new laptop exactly like the last laptop modulo lower level hardware differences, thereby future-proofing my customization).','Robust (just roll-back when things go wrong, making me more willing to experiment with customization, and gone were the days fixing inconsistent system states due to conflicting packages).','Understandable (the whole system is configured in the domain-specific language of Nix in a small git repo, giving me a sense of control over my laptop, and I know well how to extend the system when the needs arrive).','','Ubuntu (last 4-10 years), or Debian (more than 10 years ago).','Y','','','','','','','Y','','','','direnv, home-manager, haskell-nix','','Great work! Thanks!'),(855,'1980-01-01 00:00:00',5,'en','1855588559','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','N','Y',NULL,'Difficulty of getting set up, no clear quick start or \"try these things\"','some good use cases as examples.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none at the moment','nix-darwin, home manager. ','I love the idea of Nix, and while there is a lot of high level documentation, there doesn\'t seem to be much in the way of entry level information. '),(856,'1980-01-01 00:00:00',5,'en','85870198','A5','A4','male','','','','','Y','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend tried to get me to try it in 2015, but I wasn\'t interested at that time. Later I saw it on the internet and experimented.','','Y','','','','','Y','','Y','','','','','','Y','','','Y','home-manager','easy portable configuration (both packages & dotfiles) between machines','aspirationally, declarative servers for home projects','','Improved docs. I want the language to be typed--as someone getting started, figuring out what I should configure where is hard. Similarly, I often need to configure things by writing snippets and functions (e.g. modules) and I find it hard to understand what the context is when they\'re evaluated. I want more versions of packages available in nixpkgs (I know I can do interesting overlay stuff, but I haven\'t really tried yet).','apt-get + my personal config repo, maybe guix?','','','','','','','','','','','','','','','','','','','','N','I don\'t have much time, and also it\'s big.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','Y','','','','','configuration tracked in source control','','','','ubuntu','','Y','','','','','','','Y','','tiling WM','home-manager','','I appreciate all the good work. Thanks!'),(857,'1980-01-01 00:00:00',5,'en','1466992170','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Software Engineer','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','After using Ansible for a few years to deploy the hosts on my home network, I grew tired of the issues with it (e.g. the fact that when you remove a piece of software from a playbook doesn\'t mean the software will be uninstalled). Nix and NixOS solve a lot of those issues for me. The fact that it\'s backed by a pure functional programming language is also a huge plus for me, given I use functional programming on a daily basis on my day job.','Y','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','','','','I would add static type checking and I would improve error messages.','Ansible','','','','Y','Y','','','','','','','','','','poetry2nix, npm2nix, crate2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I grew tired of Ansible and its quirks.','Y','Y','Y','Y','','Y','','','','','Certain upgrades leave a machine inaccessible over ssh for a few minutes, depending on how many systemd services are being restarted. It would be ideal if NixOS picked an order of systemd services to restart that would leave the host inaccessible for the least amount of time. This generally happens when the network services have to be restarted. The reason this is important is because I generally do deployments of new NixOS profiles over network.','Ansible','Y','','','Y','','','','','','','None','sops-nix','',''),(858,'1980-01-01 00:00:00',5,'en','1665564028','A5','A5','male','','','','','','','Y','Y','Y','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','declarative configuration, simultaneous versions of software, dev environments, easier package management, etc. was enthusiastically interested in functional languages at the time. ','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','declarative configuration','nixpkgs','\"nix-shell\" & \"nix shell\"','more intuitive docs. I\'d like to see a reference where its easy to look up functions and so forth, where each has its own page rather than being bookmarks on a single giant page. I don\'t care if a function is in the dev guide, nixpkgs guide, or whatever, just look it up!','arch or debian I guess? those were the ones I was using before. plus more docker, probably.','','','','Y','Y','','','','','','','','','','naersk, elm2nix are the main ones.','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','I don\'t really remember but probably because I was really into functional languages at the time. ','Y','','Y','Y','','','','configuration.nix','nixpkgs','nix-shell, nix shell','intuitive docs, more easily searchable and linkable. with the current giant monolith documents its hard to flip back and forth between topics of interest, and searching through them is bad. some kind of sandbox for developing proficiency at the nix language would be good too, I think its not very intuitive for people and its hard to get practice because how often do you write packages? getting proficient with the syntax at least would be helpful for people. ','arch or debian probably.','Y','','','','','Y','nix-copy-closure','','','','xmonad + xfce tools','','nix-env for software management. now I just use configuration.nix and nix-shell. I only use nix-env for deploying my web server. \r\n\r\nthere\'s an audio overlay for realtime audio, which I tried but couldn\'t really get to work. I also tried building nixos for pinephone but couldn\'t get it to boot. ',''),(859,'1980-01-01 00:00:00',5,'en','1190494249','A2','A4','male','','','','','','Y','Y','Y','','Y','Y','','','','','','Y','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Switched to nixos, did not look back :)','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Consistent dependency management','Declarative configuration ','Reproducible builds','Make flakes ubiquitous, migrate everything nix to flakes everywhere. Start using them already','Not really sure','','','','Y','Y','','','','Y','','','','','','Node2nix\r\nPypi2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Curiosity really ','Y','Y','Y','Y','','','','Declarative configuration ','Curated list of packages','Functional programming niceness','Rolling release, but in a way it works and nothing breaks. It is magic after all','Idk really... Arch?','Y','Y','','','','','','','','','Xmonad','','',''),(861,'1980-01-01 00:00:00',5,'en','1339022099','A2','A3','male','','Y','','','Y','','Y','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was dissatisfied with Gentoo and like functional programming a lot','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','Reproduceability','Very fine-grained control over versions, build flags etc. through a powerful programming language','nixpkgs & the community around it','Improve & strictify syntax\r\nIntroduce type system for nix','Maybe Guix? Gentoo?','','','','Y','','','','','Y','','Y','','','','https://github.com/NixOS/cabal2nix\r\nhackage2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Moved away from Gentoo and looked for a distribution that was less ad-hoc and as customisable as Gentoo','Y','','Y','','','','','Customizability of packages','Control over whole configuration in one file/git repo','Reproduceability','Split Nixpkgs & Nixos\r\nSplit off programming language package sets','Gentoo or Debian','Y','','','','','','','','Y','','','Cachix\r\nNiv\r\nhttps://github.com/oxalica/rust-overlay/','https://github.com/input-output-hk/haskell.nix','You didn\'t ask about how steep learning curves are and how documentation & beginner friendliness is. This is an important topic IMHO.'),(862,'1980-01-01 00:00:00',5,'en','721764869','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I am glad you asked :) \r\nFirst of all, I believe that reproducibility is very important. I always strived to achieve that in my projects. Building an application from the same commit should always yield the same result. I also tried applying that approach to my system. You see, I often break stuff, so I end up reinstalling the whole system more often than the majority of the population. I spend a lot of time in the terminal, which I adjusted to my needs. Thanks to the zsh and its plugin manager zplug I was able to put my configuration to a VCS and have it reproducible (pining commit hashes). Unfortunately, I could only manage a certain amount of stuff using that approach as it wasn\'t really popular. I also suffered from the fact that everything was installed globally. Then I discovered nix. Everything is versionable, reproducible, no more global packages. Since then my custom configuration grew largely as I can configure much more stuff using nix and I know that my configuration, my work, will survive full wipe of the system.','','Y','','','','','Y','Y','Y','','','','','','Y','','','','home-manager','declarative approach','reproducible','huge availability of package','','Probably I would stick to my zsh+zplug configuration which wasn\'t ideal but was better than nothing. For other things I would use docker.','','','','','Y','','','','','','Y','','Y','','https://github.com/NixOS/mvn2nix-maven-plugin','Y','Y','','','Y',NULL,'N','N','I have been an ubuntu user for the last 12 years. Apart from programming which is both my job and my passion I like to play games from time to time. Ubuntu is officially supported by steam. In programming everything is possible, so should be installing steam on nix os, but I am not sure if I want to go into that rabbit hole :)\r\n\r\nThanks god there is home-manager which brings benefits of using nix to non-nix systems. Although I would like it to be more comprehensive - like nix-darwin.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://github.com/nix-community/home-manager\r\nhttps://github.com/guibou/nixGL\r\n','','Thank you, this changed soo much in the way I configure my system!'),(863,NULL,3,'en','62192885','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','','Y','Y','','Y','','','Y','Y','Y','Y','','','','','','','','','Y','Y','Y','','Y','','','','Y','','','','','Y','Y','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','Y','','','','','','','','','Y','','','','','Y','','Y','','','',NULL,NULL,NULL),(864,'1980-01-01 00:00:00',5,'en','352263842','A3','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Looking for reproducible, native, cross-platform project dependencies after asdf turned out to be unreliable in a real project.','Y','Y','','','Y','','Y','Y','','','','','','','Y','Y','','Y','','Functional approach to system config','Reproducible','Dependable','I\'d add a type system to Nix the language. Maybe gradual typing? Would for sure include row-type polymorphism.','asdf, Podman, Ansible, more bash.','','','','','Y','','','','','','Y','','','','','Y','Y','','','N','Fear of PRs being stuck in review hell, as so many of them are.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Automated and reproducible personal OS config. Coming from Arch, I didn\'t like how complicated my Ansible set-up was to half-ass what NixOS currently does for me.','Y','','Y','','','','','cd /etc/nixos && git clone dotfiles && ln -sf \"dotfiles/nixos/configuration.${HOST}.nix\" configuration.nix && sudo nixos-rebuild boot --upgrade && reboot\r\nAnd a fresh install is pretty much ready to work','Rolling release with fresh-ish packages','System rollbacks without snapshots','Make it easier to deal with Hydra failures when running nixos-unstable. Some tool that will automatically bisect and pick the latest working commit for me when instructed to.','Arch Linux','Y','','','','','','','','','','Sway','','',''),(865,'1980-01-01 00:00:00',5,'en','1329817066','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I wanted a way of managing all the configuration and package installation I have set up on my laptop in one place, and in a repeatable way.','Y','Y','','','','','Y','','Y','','','','','Y','','','','Y','','Community that is very vocal about how to do things, which means the steep learning curve isn\'t as frightening.','nix-darwin/home-manager as a way of handling my system configuration.','Declarative system configuration and imperative package management.','An \"official\" way of handling secrets where I can specify, e.g. an encrypted file that I can (relatively) easily edit, from which to pull environment variables into my environment.','Homebrew, bash scripts, and eventually write something in rust myself to get rid of the bash.','','','','','','','','','','','','','','','','Y','','','','N','I wouldn\'t know where to begin, nor to have (much) useful to contribute.','N','Y',NULL,'I set up a VM on my machine to see what the fuss was about a few weeks ago, and then haven\'t had time to check on it more. I want to try it on my personal machine, which may mean using the VM on my work machine more frequently as I could share configuration.','Having time to set it up in the first place on \"bare metal\".',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Should I be using Flakes to manage my laptop configuration? I feel like the combo of nix-darwin/home-manager etc feels tenuous at best, and in some ways Flakes look more useful to define sets of packages and associated configuration. But I see it more in context of development environment automation, rather than wider system config.'),(866,'1980-01-01 00:00:00',5,'en','1705070960','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','','Y','Y','','','','Y','Y','Y','','','','','','','','','','','','Y','Y','','Y','','','','','Y','','','','Y','Y','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),(867,'1980-01-01 00:00:00',5,'en','75156088','A2','A2','male','','Y','Y','','Y','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','Declarative/reproducible system/package management','Declarative/reproducible environment management and software builder','Remote builds','Make it Haskell compatible. I.e. being able to use Haskell for creating derivations and etc.','Guix (lol)','','Y','','Y','Y','','','','','','','','','git-xmpp','node2nix, cabal2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','Declarative/reproducible system/package management','Declarative/reproducible environment management and software builder','Remote builds','Refurbish configuration.nix options into a more concise form','Arch','Y','','','','','','','','','','xmonad','https://github.com/nix-community/impermanence','',''),(868,'1980-01-01 00:00:00',5,'en','1138939651','A5','A1','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','','','','','GNU Guix.','','','','Y','Y','','Y','','','','','','','','','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','Y','','','','','','GNU Guix System.','Y','','','','','','','','','','Sway, XMonad','','',''),(869,'1980-01-01 00:00:00',5,'en','790388635','A3','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y','','','N','N','idk\r\n\r\nit seems good in theory, but I already have adhoc alternatives for most of my needs. Moving away to something else that does the same requires a strong incentive ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','idk\r\n\r\nI like arch ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None','Cool project\r\n'),(870,NULL,1,'en','562084244','A5','A3','male','','','Y','','','Y','Y','Y','','Y','Y','','','Y','','','','Y','','','','Y','','Y','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(872,'1980-01-01 00:00:00',5,'en','256032772','A1','A5','male','','','Y','','','Y','Y','','Y','','Y','','','','','','Y','Y','','','','Y','','Y','','Y','','','Y','','ChromeOS','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I had been moving towards configuration management solutions for a long time and Nix seemed like it solved a lot of shortcomings others had presented.','Y','','','','','','Y','','Y','','Y','Y','','','Y','Y','','Y','','Easy upgrades by putting in the time upfront.','I actually find the documentation and community good if you are willing to invest time.','It gives me a modern view that I can apply elsewhere.','NixOps and Flakes are obviously the preferred new solution, and flakes are in wise use.. but are still considered unfinished. Harder dates for migration/v1 type release would be great. NixOps is particularly frustrating. The darwin M1 support is pretty bad and I would love to help one day. Longer package backports (especially security) for older versions--some upgrades take a while when it is a weekend project. Docker container integration just doesn\'t work well. I know Arion is good and is a result of hard work, but I have complex docker-compose files that would take forever to integrate and I\'ve been struggling on how to solve that. Home-manager should be a first class citizen. A lot of lead developers configs they share don\'t use it, but I don\'t want everything in a system-wide config I may be adapting for different use cases. The discourse site is awkward for me to keep up with--I much prefer email lists. It is awkward to automatically apply per-host configurations because finding identifiers to key off and integrate them into configuration.nix is awkward in every case I\'ve seen.','Debian/Armbian with puppet and extensive use of docker and notes.','','','','Y','','','','','','','','','','','','Y','','','','N','Lack of confidence so far. I\'m getting there slowly. You can see sort of an evolution of styles over time in how things are done, and sometimes I\'m not sure what is the correct or current way. A style guide would be useful. But, I also know the community would be welcoming and help me.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Configuration management, a new challenge, frustration with other distributions. A correctness I appreciate--re: ARM image integration.','Y','','Y','Y','Y','Y','','I think for me Nix and Nixos are basically the same thing, so refer to Nix answers.','','','Refer to Nix answers, sort of mixed things up. ','Refer to Nix answers, sort of mixed things up.','Y','','Y','','','','','','','','i3','Home-manager. Mobile-nixos.','NixOps. I totally bailed on nodejs/npm and use it in a debian VM. And node/npm are also a huge mess, for sure. Nix darwin is something I can\'t daily drive right now, I run a full NixOS in UTM instead.','Keep up the good work! I appreciate it. Really, please consider mailing lists... I barely look at Matrix and 95% of my web is RSS reader-based. I want to be less connected overall, and dedicating time to a website with a discussion platform I am not very fond of is prohibitive. Reading up in Matrix is painfully slow. The learning curve is steep, but I\'m working through it steadily.'),(871,NULL,1,'en','289687488','A2','A4','male','','','','Y','Y','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(873,NULL,1,'en','665664895','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','Vulnerability Researcher ','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(874,NULL,1,'en','579215037','A5','A2','male','','Y','','','','','Y','','','Y','Y','','','','Y','','','','','','Y','','Y','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(875,'1980-01-01 00:00:00',5,'en','907389538','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','','','','','','desktop','Y','Y','','','','','Used packages do not interact with the rest of the system and can be activated/deactivated at will','','','Nixpkgs abstractions are extremely leaky when your nix expression breaks, which makes debugging hard\r\nReplacing a dependency is almost impossible without rebuilds. Grafting exists but it is limited and complicated','','','','','Y','Y','','','','','','','','','','Mach-nix','Y','','','','N','Time','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Direnv and nix-direnv','',''),(876,'1980-01-01 00:00:00',5,'en','1905767594','A2','A4','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','This was the package manager used to distribute Stratego/XT.\r\nMy Gentoo laptop decided to fail after 9 months without any updates.\r\nDebian was strangely way to complex to install when I tried it.\r\n','','','','','','','Y','','Y','','','Y','','Y','Y','Y','','Y','','Garbage Collected packages.','Distributed builds.','Nixpkgs & NixOS.','Experimental features should not brake non-experimental use cases! Usage of Nix without any experimental features is impossible today.\r\n\r\nImperative (nix-env) is not bad, it is just has a bad interface.\r\n','','','','','','','Nix 2.3.16, with no experimental feature.','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','Gentoo died … Debian was too hard …','Y','','Y','','','Y','','Extensible.','Customizable.','Easy.','Provide more integrations, a service which provide a web service interface should register itself in nginx/apache.\r\n\r\nProvide more default values. Setting up XXXXX should not require reading a book or a tens of blog posts.','','Y','','','','','','','Y','','','AwesomeWM','','',''),(877,'1980-01-01 00:00:00',5,'en','360581834','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','Y','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','',''),(878,NULL,NULL,'en','193206454',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(879,'1980-01-01 00:00:00',5,'en','1757924130','A2','A6','male','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because I needed 2 different versions of BOOST installed','Y','Y','','','','','Y','','','','','','','','Y','','','','','A per project environment that is tailored to that project','Not having things break because something got upgraded somewhere','Reproducibility','A book that explained how to use nix but I guess I will have to write my own book','Home-brew','','','','','','','','','','','','Y','','','cabal2nix','Y','','Y','','Y',NULL,'N','N','Nothing - I need excel and other data analysis tools',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'rPackages, haskellPackages','Julia really doesn\'t work - I tried to get it to work with nix but gave up','Oh yes - can\'t the language be given types and better error messages - it\'s often impossible to find out why something breaks'),(880,'1980-01-01 00:00:00',5,'en','68466763','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I was tired of my system breaking (Manjaro) and I was looking for a stable system with a good package availability. I used emacs before so I was familiar with this kind of configuration.','','Y','','','','','Y','','','','','','','','Y','','','Y','','Declarative package management','Nix shell to quickly run programs that get garbage collected later','Nix shell for development environments','The language, I know this is mentioned a lot, but it\'s not at all beginner friendly. After six months of using it I will struggle with it a lot. ','An arch based distro with deployment scripts ','','','','','','','','','','','','','','','cabal2nix\r\nmach-nix','Y','','','','N','My limited understanding of what I\'m doing','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','','','','','','Rollbacks','','','','','Y','','','','','','','','Y','','','Comma (nix run enhancement)\r\nLorri\r\n\r\n','cabal2nix\r\npoetry2nix','I love Nix! 👍'),(881,'1980-01-01 00:00:00',5,'en','861260547','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','Y','','','Y','','Y','','','Y','Y','Y','Y','','One config to rule all machines','','','Python 2','ArchLinux','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','N','Preparing my first PR atm','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','Y','','Y','','One config to rule all machines','','','','ArchLinux','Y','','','','','','','','','Y','','armv7 builds','','How on earth could I\'ve missed Nix(OS) for so long?\r\nThough, it\'s hard! I\'m using Linux since ~20 years (Linux from scratch, Gentoo, Arch). Starting with NixOS is like starting from zero. But, my experience helps.\r\n\r\nKeep going. It\'s epic!'),(882,'1980-01-01 00:00:00',5,'en','520852353','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Give me a job at adrian@adrianserbanescu.com','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','It came with nixos','','','','','','Nixos','Y','','','','','','','Y','Y','','','Y','','Imperative package management ','Nix-shell','Idk','Better docs','idk','','','','','','Idk','','','','','','','','None','None','','','','None','N','Am noob','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I kept on bricking arch','Y','','','','','','','Imperative config/packages','Nix-shell','Idk','better docs','Ubuntu','Y','','','','','','','','Y','','','None','None','I love your project. Please make it so that it doesn\'t die'),(883,NULL,NULL,'en','1028137633',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(884,'1980-01-01 00:00:00',5,'en','1228098243','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I had experimented with nix for a while, but at one point at work, our project required an older version of LLVM, and I was running arch linux, and therefore had the latest version. To solve the problem, I wrote a bit of nix to get a shell for the project with correct LLVM, and it all worked great. Now I use NixOS.','','Y','','','','','Y','','','','','','','','Y','Y','Y','Y','','Reproducible development environments','Reproducible builds','Binary caching','','','','','','Y','Y','','','','','','','','','','','','Y','','','N','Haven\'t yet felt the need, since everything I find myself needing is already packaged','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','','','','','Arch Linux','Y','','','','','','','','','','xmonad','home-manager, haskell.nix','',''),(885,NULL,1,'en','905960188','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(886,NULL,1,'en','6014650','A2','A2','male','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(888,'1980-01-01 00:00:00',5,'en','1576184366','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','Y','','Reproducible development shells (with flakes and direnv)','Binary caches in GitHub actions builds','Distributed builds','Improve the documentation, specially around flakes.','asdf','','','','','Y','','','','','','Y','','','','https://github.com/DavHau/mach-nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I had been using Fedora silverblue for a while. Looking around for similar distros, I found NixOS and tried it. After trying it for a couple of months in a spare computer and overcoming the initial learning curve, I made the jump and started using nix for all my development projects, and finally I changed my main machine to NixOS.','Y','','','','','','','Quick and fearless configuration changes, knowing that if I mess up I can roll back easily.','Shared configurations between all my machines.','The wide variety of packages in nixpkgs and how I can package anything that is missing and contribute back to the community.','Override modules without needing to create a whole new module.','Arch / Fedora silverblue','Y','','','','','','','','','','awesomewm','home-manager','poetry2nix',''),(889,'1980-01-01 00:00:00',5,'en','1916006279','A6','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','Y','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Because it\'s the pre-requisite of NixOS :)','Y','Y','Y','','','','Y','','','','','','','','Y','Y','','Y','','Nix flakes','Nix binary cache','','Stabilize content addressed nix support','FreeBSD ports for packaging\r\nAnsible et al. software configuration management systems','','','','Y','Y','','','','','','','','','','','Y','Y','','Applying patches on top of nixpkgs using flake-utils-plus when overlay is too much work','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','To be able to declare/provision the configuration of my host all in one place','Y','','Y','','','','','Modules','Modules','Modules','Add module for weechat :)','FreeBSD','Y','','','Y','','','','','','','Sway WM','home-manager','',''),(890,NULL,NULL,'en','883706992',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(891,NULL,NULL,'en','2012926977',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(892,NULL,1,'en','1563494625','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(893,NULL,1,'en','251848897','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(894,'1980-01-01 00:00:00',5,'en','537321412','A2','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I have been recommended Nix due to it\'s ability to reproducibly build packages and codify OS config. I wrote the NixOS configuration of my workstation and an Emacs + MELPA Nix package. I have kept using it because I didn\'t want to go back to divergent configuration and lose the ability to know what\'s really a part of a system, keep the full history of a system, roll back easily, save built programs in my own binary cache etc. Also I know of no other way to have custom builds of forked/patched programs as easily as with Nix. Since then I see no reason to wrangle with the unreliability/centralisation/non-extensibility of conventional build tools and library managers, unless there is legacy usage of it already in a project or a client requires - even if their documentation is better.','','Y','','Y','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','Reproducibility','Programmability','Binary caching','1. Replace Nix language with Haskell\r\n2. Expose a C API for store operations\r\n3. Add Windows port','1. Ansible+defensive copy+atomic symlinks for OS stuff\r\n2. Docker for development environments (pinning digest)\r\n3. Trying to pin hashes of dependencies in other ways (like manually doing `sha256sum -c`) wherever possible\r\n','','','','Y','Y','','','','Y','Y','Y','','','','Maven, NPM: Tried using npm2nix and maven2nix but couldn\'t get them to work\r\nQuicklisp: https://github.com/Uthar/nix-cl','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Pretty much same answer as the one about Nix','Y','Y','Y','Y','','','','Reproducibility','Rollbacks','Programmability','1. /etc files editable in-place, but replaced back on nixos-rebuild switch\r\n2. offline installation ISO','Ubuntu','Y','Y','','','','','','','','Y','i3','','home-manager','Thanks for making Nix! :-)'),(895,'1980-01-01 00:00:00',5,'en','372501948','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started using NixOS (see there).','','Y','','','Y','','Y','','Y','Y','','','','','Y','Y','Y','Y','','Declarative Configuration (NixOS, home-manager)','Reproducable Packaging (flakes)','Shell Environments','add types','Guix (or Docker or Ansible or Chef or...)','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','the sense of being responsible for the package after contributing it','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was tired of being afraid of updating Arch Linux and wanted to have a more stable distribution for my job. Ironically I don\'t use the rollback feature at all, but the declarative system and project configuration turned out to be the killer feature.','Y','','Y','','','','private Laptop','Declarative configuration','Rollbacks','','','Guix','Y','','','','','','','','','','xmonad','home-manager, nix-du, nix-tree, nix-direnv','lorri ',''),(896,NULL,1,'en','1309267295','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','','','','','','','','','','','','Y','Y','','','Y','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','','','','','','','','','','','','','','','','','','','','','bspwm','','',''),(897,NULL,1,'en','713003133','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(898,'1980-01-01 00:00:00',5,'en','73340046','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because of NixOS','','Y','','','','','Y','','Y','','','','General purpose','Y','Y','Y','','Y','','Reproducibility','Declarative configuration','Nix store','One \'nix\' command to rule them all (also replacing the nixos-* commands)','Ansible, apt','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Always want to have my stuff reproducible and under version control. Before I used Ubuntu, everything set up with Ansible. Then I read about NixOS and felt in love immediately.','Y','','Y','','','','General purpose','Reproducibility','Declarative configuration','Customizability','One \'nix\' command to rule them all (also replacing the nixos-* commands)','Ubuntu configured with Ansiblee','Y','','','','','Y','','Y','','','','niv','','The structure of the survey is confusing. The logo on the left corner implies the survey is about NixOS, but you are first asked about the nix package manager. I noticed after I was done and got the NixOS questions. So had to go back and do it again.'),(899,'1980-01-01 00:00:00',5,'en','89775957','A2','A2','male','','','','','','','Y','','Y','Y','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','Add a documentation more user friendly that go into more details on how to setup more tools like nixOS.wiki does. ','','','','','','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','I3','','',''),(900,NULL,1,'en','389959636','A2','A4','male','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(901,'1980-01-01 00:00:00',5,'en','558278670','A2','A2','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','Y','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','To better manage my dotfiles accross my machines. It grew to being used as a general tool for managing my scripts and environments in projects.','','Y','','','Y','','Y','','Y','','','','','','Y','Y','Y','Y','','Declarative configuration managment','Powerful build system that gives high confidence of reproducible builds','A large collection of packages and very easy way to modify existing packages or add new ones.','- Remove imperative package management\r\n- Make the community use nix flakes more\r\n- Add a lot of better documentation\r\n- Better error messages for nix lang (comparable quality to Elm or Rust)','Ansible or custom homegrown scripts','','','','Y','Y','','','','Y','','Y','','','','','Y','Y','','','N','Did not have a need fo now, also hard to find an easy-to-follow contribution guide that outlines how the nixpkgs is governed. It seems compilated at first glance (esp. the branching model, still can\'t grok it)','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','To manage my dotfiles and configuration','Y','','','','','','','System-wide declarative configuration management','Great modules that make installing compilacted services very easy','Bleeding edge packages','A better way to declaratively manage the installation process (esp. disk partitioning)\r\nMake home-manager a first-class citizen, with better thought out distictions between home configuration and system configuration.','Ansible or docker\r\nArch for development machines','Y','','','','','','','','','','swaywm','home-manager','','Great work on the Nix ecosystem, keep it up <3'),(902,'1980-01-01 00:00:00',5,'en','387367997','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','','','','','Y','','Y','','','','','Y','Y','','','Y','','Declarative system configuration/management','Declarative environment management','','','pacman','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Came from using Archlinux for many years. I wanted a fully declarative setup for my operating system with similar concepts as Archlinux.','Y','','Y','','','','','Declarative system configuration/management','Declarative environment configuration/management','','There should be a level of abstraction to simplify the onboarding and day-to-day use of NixOS. For example, simply upgrading or adding a new package to NixOS can be overly complicated (derivation, overlays, etc). Whereas other operating systems are much easier to understand such as Archlinux PKGBUILDs. Flakes are also confusing even though they are intended to solve some of this.','Archlinux','','','','','','','','','','','bspwm','','',''),(903,'1980-01-01 00:00:00',5,'en','2090721320','A5','A4','fem','','','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I read the original paper years ago, and toyed around with nix, but didn\'t start using it seriously until a few years ago. I started using it in earnest when I started a job and the team I was working with was using it for all their development work.','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','Y','','Overlays. The ease with which I can customize my dependencies is far and away the most powerful part of nix for me. Before I went all-in on nix, the friction to contributing changes upstream or fixing open source libraries was far too high. It was hard to get the system to use my changes, and hard to switch everything back to upstream when my changes were merged. The ease with which I can rebuild the system to use a patched version of the software is the most amazing part of nix for me.','It\'s a real language. The nix language is certainly warty and I think we all have things we\'d like to change or improve, but it\'s not yaml, and it\'s not a pile of shell scripts (on the surface at least). That\'s a huge win.','Declarative. Being able to have a declarative environment is great for portability across the devices and environments I work in. It\'s especially important for helping ease the process of onboarding new contributors to projects.','I would add a significantly expanded repl that enhanced discoverability. Even just the ability to view the nix source for a derivation would be a good starting point, but I\'d love the ability to navigate nixpkgs and discover how to do things without having the read the source on github.','Before nix I used a mixture of language specific tooling for development work (cabal sandboxes, cargo, GOPATH/go modules, python virtual environments), system package managers (generally apt), and sometimes containers. I guess I\'d, unhappily, go back to that. In theory tools like ansible can give you some of the declarative power that nix gives you, but they are so painful to use that it\'s just not worth it for local work.','','','','Y','Y','','Y','','','','Y','','','','cabal2nix: https://github.com/NixOS/cabal2nix\r\ncargo2nix: https://github.com/cargo2nix/cargo2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I had been using nix on macOS and popOS for a while, and it was okay, but I really felt like I\'d learn nix better if I installed nixOS in a VM. I liked it so much I wiped my laptop and started using it as my daily driver right away.','Y','Y','','Y','','','','Declarative environments that I can share across different machines','Easily rolling back to a previous state','Extremely easy configuration for most basic things (e.g. iptables configuration is super easy)','I\'d love an easier path for supporting some smaller devices. I still use debian on some of my small arm devices, because setting up the infrastructure for remote builds is a bit of work, and there\'s not really a happy path for managing the installation on those devices yet.','Some debian or arch derivative.','Y','Y','','','','Y','','','Y','','xmonad','','',''),(904,'1980-01-01 00:00:00',5,'en','1498807185','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','Daily driver','A1','Thought the concept of doing things declaratively was interesting. Thus I decided to give it a shot.','','','','','','','','','Y','','','','Desktop and laptop','Y','Y','','','Y','','Declarative configuration','Rollbacks','Temporary environments','Documentation. Compared to something like Arch or Gentoo, the documentation is far behind. Thanks to the unique nature of Nix, a lot of the information in these wikis is also not applicable. There aren\'t as many pages for specific things and the documentation tends to expect a good understanding of Nix rather than being throughout. \r\n\r\nI\'m not in this to learn a specific-use programming language, but to have a good package manager, so having documentation that would cover how to make stuff work would be great. The community NixOS Wiki project does help with this as it has some pages for certain packages and whatnot, but it\'s still nowhere near as mature as many other Wikis and still expects too much knowledge in my opinion.','I would probably stick with Gentoo\'s portage as that\'s what I used before. ','','','','','','','','','','','','','','','','Y','','','','N','I have not contributed to any repository so far. I have not figured out making packages yet and haven\'t needed to make any. I might delve into it, but it looks complicated.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','Daily driver','A1','It\'s what introduced me to Nix, so same as with Nix, because it seemed interesting and I like trying out interesting things.','','','Y','','','','Desktop, laptop','Declarative configuration','Rollbacks','Temporary environments','Same as with Nix, the documentation. NixOS is implemented very well in my experience, but the documentation as a whole ends up being even more lacking than Nix since it suffers from everything that Nix does along with the added elements.','Gentoo as that\'s what I used before.','Y','','','','','','','','','','Sway right now','','',''),(905,'1980-01-01 00:00:00',5,'en','756629771','A2','A4','fem','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Haskell (cabal2nix) back when cabal-install had actual issues and other people were flocking to stack.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','FP','Purity','Reproducibility','I would remove flakes, or at least the current notion of flakes that appears to diverge from Nix\' ideals of purity and reproducible builds (lockfiles mutating underneath me without my approval, etc.)','I\'d probably go live off the land somewhere. IT has become intolerable to me without Nix (or something very similar, perhaps I could live with guix)','Y','','','Y','Y','','','','Y','','Y','','','','cabal2nix, crate2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was a poor student with an SSD that kept killing data horribly and eating my entire system. I had a setup on Arch that could more or less reproduce my system quickly when it happened (which was extremely often, once every 14d or so) instead of doing something sensible like running my OS off a USB. I learned about nixos in #haskell on freenode (I think) and it was the perfect fit for doing this reliably and sanely.','Y','Y','Y','Y','','','','Declarative','Functional','Reproducible','More declarative init, (systemd as stage 1?) more declarative network conf, better secret management ','GuixSD perhaps. Anything that is essentiall NixOS. To a lesser degree, maybe one of the ostree-alikes, but I really think mutating things to try and approximate NixOS is pretty bad. Probably go live off the land instead.','Y','','Y','Y','','Y','','','','','xmonad','home-manager, nix-diff (oh my good, so good), niv','','The marketing dept\'s lack of obvious \"listening to users\" has me worried, especially because it feels like you\'re diverging strongly from focusing on NixOS, and the corners cut in flake design etc which are being touted as boons (let\'s do toml instead of nix, etc.) are game-breaking to me. It is comforting to see this survey as it feels like an attempt to try and listen to users a lot. This has me slightly less worried for the future of Nix, which I have been quite a lot recently. Please keep FP, please keep a focus on reproducibility (_stop_ mutating my sources in secret!) please don\'t try and make some schematized non-FP worse-nix. Thank you for everything. :)'),(906,'1980-01-01 00:00:00',5,'en','599058671','A5','A2','fem','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','Y','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend recommended it to me and wanted to use it in a joint project.','','','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Declarative package management','Declarative package building for mentioned dev environment','Nix-shell, dev environments','Add static types, language integrations, a good stdlib and serde, a good PEG library, removal of reliance on bash, C/Rust-like arg syntax, rustdoc documentation. Capability based access to the nix store, for storing secrets. ','I would probably be attempting to build something similar. Declarative package management fills too important of a niche to not exist.','','','','Y','Y','','','','','','','','','Drone','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend recommended it to me. ','Y','Y','Y','','','','','Declarative environment management','Rollbacks, magic rollbacks, and remote configuration','','Remove the module system and replace it with functions, so you can have multiple instances of a module active at once. Better, strongly typed modules and a better wrapper around tmpfiles.','Probably trying to build something similar.','Y','','','Y','','','','','','','Sway','buildRustPackage, npmlock2nix','npmlock2nix because it stopped working recently, morph because it doesn\'t support flakes',''),(907,NULL,2,'en','2143350569','A5','A4','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','','Y','Y','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(908,'1980-01-01 00:00:00',5,'en','1633372378','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started using nixos, wanted to use nix shells/add packages. Wanted to try something that would keep clear state better- more declarative/consistent between machines/installs than debian; more control ','','','','','Y','','Y','','Y','','','','','','Y','Y','Y','Y','','Declarative system/environment definition','Lots of packages','Flakes','Clean up flakes/nix language. Have contributed packages, and I still struggle, especially finding what I should do/write.\r\n\r\nWould like to see ipfs, bazel integration?\r\n','Apt? Language specific dev tools ','','','','Y','Y','','Y','','','Y','Y','','','','Naersk,\r\nGo/python/node to nix (forget which ones)','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Decorative machine management','Home manager','Erase my darlings','Better install experience/prebaking of disks ','Guix/debian ','Y','','','Y','','','','','','','sway','Home manager?\r\nDocs?\r\nNixery?','Nixops','Nixos is hard, but rocks'),(909,NULL,2,'en','452544901','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','kernel developer','','','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','Y','','','','','','','Y','','','','Desktop/Notebook','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(910,NULL,1,'en','1686484880','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(911,'1980-01-01 00:00:00',5,'en','826764258','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','For sharing configuration between machines (home manager/nix Darwin)','Y','Y','','Y','','','Y','','Y','','','','','','Y','','','Y','','Reproducible','Reversible ','Ability to reason about changes','Imperative management, channels','Dot files and git. And nowhere nearly as effective. ','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(912,NULL,4,'en','125843390','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Electronic musician','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was seduced by the immutable possibilities, and by the declarative configuration : to elaborate the project design directly from inside the work in progress, in a declarative manner, like the landscape of a process, far from what I too often consider as a pointless IO exchange with bare metal ','Y','Y','','','','','Y','','Y','Y','','','','','Y','','Y','Y','','Declarative ','Reproducible','Adaptability ','','Guix or Fedora Silverblue','','','','Y','Y','','','','','','Y','','','','','','Y','','','N','I\'m too new, clumsy and messy','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','','','','','','','','','','','','','','','','','','','','','','','',''),(913,'1980-01-01 00:00:00',5,'en','1050090378','A5','A2','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I started using Nix after recommendations from friends and blogs. I was looking for a way to build packages that could be run across systems with little effort.','','','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','Declarative Configuration','Tracking with Git (Flakes)','','Better documentation and stable flakes.','Probably still Arch Linux','','','','Y','Y','','','','','','','','','Drone','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','dwm','','',''),(914,NULL,1,'en','1211884918','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(915,NULL,1,'en','218344946','A2','A2','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(916,'1980-01-01 00:00:00',5,'en','427981993','A5','A4','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I got burned by arch one to many times and wanted a system that I could do rollbacks on.','','Y','','','','','','','Y','','','','','Y','Y','','','Y','','Reproducibility ','Lots of packages compared to the alternatives ','System configuration as code','*Namespace confusion. Which nix the language, package manager, or OS.','Debian or maybe gnuix ','','','','','','','','','','','','','','','','Y','','','','N','Not sure how to start.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was running arch with a btrfs storage and there was a bug in btrfs that caused kernel panics. And with arch there was no way to downgrade.','','','Y','','','','','','','','','','','','','','','','','','','','','','',''),(917,NULL,NULL,'en','299620066',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(918,'1980-01-01 00:00:00',5,'en','511228564','A5','A3','male','','','','','','','','','','Y','Y','','','','','','','Y','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','It was recommended by another attendee at StrangeLoop 2019. At first I used it as a cross-platform package manager between macOS and my Ubuntu Server VM. I migrated more of my dotfiles into Nix and got started with the Nix language by writing Neovim wrappers. In spring of 2021 I migrated wholly to NixOS on a Thinkpad P1. It wasn\'t until NixOS that I fully understood the potential. I bought in. Now I\'m using NixOS on the same laptop, using NixOps as an Ansible replacement to manage my home lab (5 Pis, 2 PowerEdges, an old desktop), and nix-darwin for my work computer. Nix is my hammer and I won\'t stop until everything is a nail.','Y','Y','','','Y','','Y','Y','Y','','','Y','','','Y','Y','Y','Y','','The same packages are supported across multiple machines (macOS, linux amd64/aarch64)','One-off nix shells','Reproducible development environments (nix develop)','I would add a way to display metadata about a specific package (package name, description, website). I am extraordinarily pleased with every behavior of Nix, and I am loving the direction of the standalone Nix 3.','Ubuntu Server, elaborate bash scripts, Ansible, and antidepressants.','','','','Y','Y','','','','','','Y','','','','buildVimPluginFrom2Nix\r\n- https://github.com/PsychoLlama/dotfiles/blob/8516977277300bd96071cc5f57d2d0a4e48ec096/modules/editor.nix#L73\r\n- https://github.com/PsychoLlama/vim-plugin-nursery/blob/c0ebf52884560c879b14e26bc63e0673a857c39c/flake.nix#L50','Y','Y','','','N','I haven\'t read the documentation on how to contribute yet. I am ashamed.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','It is my main machine.','A3','(story is included in the same question about Nix)','Y','','Y','','','Y','','Declarative OS management that doesn\'t leave artifacts of older versions. I don\'t have to remember to uninstall packages or delete files.','Generation rollbacks are *huge*.','nixosTest','- I would add a feature under `users.users` to provision files under `~/.config` similar to `environment.etc`.\r\n- Last time I tried, `nixos-version` didn\'t print `system.configurationRevision`. I was probably doing something wrong.','macOS. Reliability is critical and only NixOS can provide that.','Y','Y','','','','','','','','','Sway WM','NixOps, remote builds (raspi), and nixosTest. If Santa asked me what I wanted for Christmas, I would say:\r\n- https://github.com/NixOS/nixops/issues/1494\r\n- A utility to group NixOS tests into test suites (maybe it already exists)\r\n- A hoverboard','deploy-rs. NixOps is superior. Also support for RasPi 2 is pretty sketchy.','Nix/NixOS is the most exciting technology I have ever encountered. This is not hype. I keep an actual list. I go out of my way to recommend it to everyone I see. The grocer has asked me to stop repeatedly and I have 3 restraining orders from my neighborhood. I will not yield. NixOS is life.'),(920,'1980-01-01 00:00:00',5,'en','807240634','A2','A2','male','','','Y','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I was an archlinux user (server, and a laptop for experimenting) and I found it annoying to not have packages and other configuration in sync. WIth github and flakes I now have an okay system for that','','Y','','','','','Y','Y','Y','','','','','','Y','','','Y','','flakes, defining all my machines\'s configuration in a few files','','','get rid of channels and have a flakes based system designed, and finished completely','archlinux','','','','','Y','','','','','','Y','','','','https://github.com/kolloch/crate2nix but it needs more work. It needs to get to a state where you don\'t have to know nix to use it. Currently it\'s beyond my abilities to fix it when it doesn\'t want to build my rust crate, and it happens often','','Y','','','N','I haven\'t needed a package that wasn\'t included','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I was an archlinux user (server, and a laptop for experimenting) and I found it annoying to not have packages and other configuration in sync. WIth github and flakes I now have an okay system for that','Y','','Y','','','','','declarative configuration','easy rolbacks','configuration sync with git','being able to declaratively configure kvm/qemu VMs would be nice','archlinux','Y','','','','','','','','Y','','','','hydra, needed too much manual configuration',''),(921,'1980-01-01 00:00:00',5,'en','1046620704','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I wanted to try a functional OS because Arch Linux is great but I can never remember what files I edited in /etc.','','Y','','Y','','','Y','','Y','','','','','','Y','Y','Y','Y','','Flakes','dev shells','configuration files in version control','Hydra builds at 100% green.\r\nAdd and maintain language-specific tutorials and templates to codify best practices.\r\nMerge home-manager.','PKGBUILD','','','','Y','Y','','','','','','','','','','cabal2nix\r\nnpmlock2nix','Y','Y','Y','','Y',NULL,'N','Y',NULL,'Outgrew VM, but didn\'t replace any of my existing machines\' OSes.','First-class Proton support',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager\r\nnixos-generators','nixos-wsl','jonringer is super helpful'),(922,NULL,NULL,'en','444778674',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(923,'1980-01-01 00:00:00',5,'en','1784947698','A5','A3','male','','Y','','','','','','Y','','','','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I was bothered by the way Arch packages haskell stuff, so I wanted to move towards a more source-based distribution. I use Gentoo on another machine and I thought it would be neat to try out Nix/NixOS to compare. ','','Y','','','','','Y','Y','','','','','','','Y','','','Y','','Nix-shell','Version-controllable configuration','Portability ','Improve documentation, streamline package configuration (ie overrides) ','Portage ','','','','','','','','','Y','','','','','Buddy','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I wanted to move towards a more source-based distribution for my laptop ','Y','','','','','','','Declarative configuration','Easy setup','The community','Improve documentation','Gentoo or Arch','Y','','','','','','','','','','Xmonad','','',''),(924,'1980-01-01 00:00:00',5,'en','1763632536','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Took a class on functional programming. Found NixOS when I googled \"functional operating system\". Started using it and was really impressed by the potential this project has.','','','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','Easy configuration','Rollbacks','Declarative package management','Add better integration with AppStream and PackageKit','Most likely I would still be on Arch Linux using pacman','','','','','Y','','','','','','','','','','None yet, but once I finish a rust project, I plan on trying cargo2nix: https://github.com/cargo2nix/cargo2nix','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Took a class on functional programming. Found NixOS when I googled \"functional operating system\". Started using it and was really impressed by the potential this project has.','Y','','Y','','','','','Declarative configuration','Easy rollbacks and downgrades','Stability','Add more GUI tools for managing NixOS. I don\'t have a wand though, so working on some myself, starting with an installer and plan to continue developing more tool. See: https://github.com/NixOS/nixpkgs/pull/161788','I would probably still use Arch Linux','Y','','','','','','','Y','','','','Home-manager','I tried nix-gui when I started using NixOS, but it was buggy, crashed a lot, and was unintuitive. I\'m currently developing an alternative using gtk4 with a focus on stability that uses rnix-parser as a backend.','Thanks for making a great operating system!'),(925,NULL,NULL,'en','11928647',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(926,NULL,2,'en','1223604111','A5','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Wanted to switch from WSL to a full Linux environment and the idea of a nix store with reproducibility seemed really interesting. So chose it as my distribution and have been happy sense.','','','','','','','Y','','','','','','Personal desktop/laptop','','Y','Y','','Y','','Declarative configuration (with flakes/home-manager)','Reproducible developer environments and packaging.','System Rollbacks','I would add a comprehensive best practices wiki as there are so many ways to do a single thing (eg packaging).','Not sure, only ever used NixOS/Nix on Linux.','','','','Y','Y','','','','','','Y','','','','crate2nix (rust)','Y','Y','Y','','N','I made a PR but they just sat there for weeks with no response or idea of how to get a review. I was tired of rebasing it so just closed it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(927,'1980-01-01 00:00:00',5,'en','1113488770','A3','A2','fem','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Because I wanted to use NixOS.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Declarative system configuration','Tons of packages','Declarative environment management','- Improve documentation. There\'s a ton of stuff in packaging and packaging patterns that\'s totally undocumented, that is super frustrating. Document flakes on nixos.org.\r\n- Better support for languages/frameworks like Java and its ecosystem. \r\n- Types? Guess Nickel will do it.\r\n- Improved and more official support for the 2nix tools.\r\n- Automate packaging please... there\'s nix-template, but it often fails and is not smart enough. It is so fucking boring packaging, and in Nix that\'s specially frustrating...\r\n- It is a pain in the ass getting/declaring older versions of packages from nixpkgs. I didn\'t figure out... there should be an easier way to get a state from the repository, or i am missing something.\r\n- A proper LSP to integrate with editors like emacs. One that would also be able to infer options, packages. rnix-lsp is pretty bad.','I also use Docker, Podman.','','','','Y','Y','','','','','','','','','','mvn2nix, dream2nix, node2nix, poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I used Linux for 5+ years already. I got sick of the traditional, imperative (non-declarative) distributions. NixOS was the perfect solution to that, in having a system configurable in a single language in a single file that I can modularize. The added benefits came as a plus. Also, I\'ve came to known NixOS from watching a video on Fedora Silverblue by baby woge on YouTube in which someone mentioned NixOS in the comments.','Y','','Y','','','','','Declarative system configuration','huge nixpkgs that provides both packages and modules','','Official support for Home-Manager.','I was using Arch Linux before. Not sure if GNU Guix counts?','','','','','','','','','','','Xmonad, Wayland, LXQt','home-manager, flakes, stuff from nix-community like emacs-overlay, nix-template, nixfmt, manix, nix-tree, nix-index, hydra-cli, cachix.','rnix-lsp, which would be very useful if it was actually good.','you need better tutorials for people who want to migrate to NixOS, in a way that show creating your own modularized config using flakes, home-manager, and building a desktop configuration. Will T is the closest in that regard, but unfortunately it\'s pretty hard to understand what he is saying because of bad audio quality, too fast talking / bad diction.'),(928,NULL,1,'en','1390307051','A6','A5','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(929,NULL,1,'en','1930881197','A6','A2','male','','','','','','Y','','','','','','','','','','','','Y','','','','','Y','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(930,NULL,NULL,'en','1017482031',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(931,NULL,0,'en','1601274602','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(932,'1980-01-01 00:00:00',5,'en','219036289','A5','A3','male','','','','','','Y','Y','','Y','','','','','','','','Y','Y','','','','Y','','Y','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Software reproducibility is a unsolved problem and at the heart of many of the daily challenges that teams struggle with in their daily work. Nix feels like the approach that resonates the most with me and my team for solving this long standing issue.\r\n\r\nThe package managers and config management were great for their day but it leaves the industry with many things that it needs.\r\n\r\nAlso Im a big fan of the ports tree in freebsd and I think nixpkgs is the portstree on steroids.','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Reproducible Builds','software packaging composability ','nix-shell','Add - ','Freebsd and ports for sane system management.\r\n\r\nGuix potentially but never used it for any extended period of time.\r\n\r\nHonestly, I dont know how much longer Id be interested in software development with the state of the community and whats coming out of entities like the CNCF. Its all hype vs actual outcomes that solve common, real world problems.','','','','','','','','','Y','','Y','','','','poetry2nix\r\nbundix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','https://grahamc.com/blog/erase-your-darlings','Y','Y','Y','','','','','Reproducibility','Composability','Simplicity','Add - Id like to see a better story around bootstrapping nixos from a nix config. I have seen many custom bootstrap scripts, etc. which is fine but some call outs to best practices from starting with fresh hardware.','FreeBSD','Y','','','','','','','','','','i3','https://mobile.nixos.org/ - Really excited to see this continuing to move along!','pip2nix','Huge fan! And you guys are awesome! What your doing is extremely challenging but necessary for where we need to go as an industry!'),(933,NULL,1,'en','252331397','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(934,'1980-01-01 00:00:00',5,'en','1881898045','A5','A3','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','Declarative server configuration of my personal host for small projects (telegram bot, vaultwarden, etc) and experimentation.','','Y','','','','','','','Y','','','','','','Y','','Y','Y','','Declarative syntax','Tons of existing ','','Hire technical writers to improve the quality of documentation around the language and ecosystem. As a comparison, Rust tends to be described as having a difficult learning curve, and that difficulty is cut by how much energy and care has gone into making The Book an awesome learning tool.','containers','','','','','','','','','','','','','','','','','','','','N','Hasn\'t been necessary','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','see previous','','','Y','','','','','','','','','k3OS','','','','','','Y','','','','','','','almost no tools work on MacOS, due to dependencies that expect linux.','Awesome project, love it.'),(935,NULL,NULL,'en','1248771236',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(936,'1980-01-01 00:00:00',5,'en','714312952','A5','A4','male','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I liked the idea of system and project reproducibility.','','Y','','','','','Y','','','','','','','','Y','','','Y','','Package management','Declarative system config management','Reproducible development environments','Make flakes easier to use, and make them first-class citizens in Nix/NixOS','Arch Linux or Ubuntu','','','','Y','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','','','','','','','','','','','Y','','','','','','','','','','','home-manager','',''),(937,NULL,1,'en','935481977','A5','A4','male','','','','','Y','','Y','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(938,'1980-01-01 00:00:00',5,'en','1416727743','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A3','I only started using Nix when I installed NixOS on my machines. Back then I didn\'t really know what to do with Nix, as I thought Nix as a way to facilitate NixOS deployments, but as time goes by, and with the introduction of Nix Flakes, I slowly got interested in using Nix in building applications, creating devshells and source aggregators. I\'m very excited that Nix is improving with each release.','','Y','','Y','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','Reproducible builds','Straightforward cross compiling builds','Content addressable derivations','Better developer toolings and wide spread documentation visibility.','Probably Docker, but then I have to maintain Dockerfile :(','Y','Y','','Y','Y','','','','','','Y','','','','https://github.com/nix-community/npmlock2nix','Y','Y','','','N','Laziness ;( Nixpkgs is a fast moving project, so I really don\'t want to spend time pulling Nixpkgs and rebase my branch manually.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I needed a way to manage my dotfiles after distro hopping too much ;) and having spend less time debugging a misconfigured setting is a bless.','Y','','Y','Y','','Y','','Infrastructure as Code','Configuration rollback','','Revamped NixOS search page with support for other community flakes, ideally self hostable. All in all, it\'s all about friendly UIs and/or native desktop applications that integrate tightly with Nix/NixOS.','Probably Guix or GoboLinux, but then I wouldn\'t be able to use Nixpkgs\' 30000+ packages ;)','Y','','','Y','','','','','','','SwayWM','DivNix\'s Digga and DevOS. See https://github.com/divnix/digga and devos.divnix.com','Projects that were on the early days of Nix Flakes and didn\'t use a proper framework like Digga or Standard (https://github.com/divnix/std)',''),(939,NULL,1,'en','2110180297','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','Y','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(940,NULL,0,'en','1281560304','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(941,'1980-01-01 00:00:00',5,'en','947557497','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','Y','','','Y','','','','','','','Y','Y','Y','','','','reproducibility','declarative','binary caching','Either static types are gradual typing.','macOS with homebrew','','','','Y','Y','','','','','','','','','','cabal2nix','Y','Y','','','N','Lack of expertise','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','','','','','','','','','','','','','','','','xmonad','home-manager','',''),(942,'1980-01-01 00:00:00',5,'en','1782816445','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','','','','','','','','','','','Y','','','Y','','','','',''),(943,NULL,1,'en','1391885063','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(944,'1980-01-01 00:00:00',5,'en','1957318557','A2','A3','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A fully declaratively configurable system appeals to me. Also the software selection is pretty good.','','Y','','','Y','','Y','','Y','Y','','Y','','','Y','','Y','Y','','Declarative Configuration Management','Fairly Up-to-Date Software','Rollbacks','+ faster evaluation\r\n+ a configuration language that is more approachable (a cookie cutting approach works nicely for most things, the jump to do more advanced things is very hard)\r\n+ better remote builder support\r\n+ a better manual on how to do common tasks which does provide a canonical way to do stuff and not three ways, none of which is quite good.','Guix or a conventional distro+puppet','','','','Y','Y','','','','Y','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','Y','','Y','','','','','','','Y','','','','','Y','','','','','sway','','- nixops\r\n- morph',''),(945,'1980-01-01 00:00:00',5,'en','764499145','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','far easier than gentoo or yocto','','Y','','Y','','','Y','Y','Y','Y','','','','','','Y','','Y','','Hermetic reproducibility','Declarative','Rollbacks','A stable and good command-line interface','Debian stable and containers','','','','Y','Y','','','','Y','','','','','','cabal2nix','Y','Y','Y','','N','no need so far','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','setting up servers is hard. reducing all those manual steps to a declarative text file is a godsend.','','','Y','','','','','Rollbacks','Declarative','Hermetic reproducibility','An easier installer. Make it easier to format the disks for ZFS root, tmpfs root, and other unique situations which only NixOS can easily achieve.','Debian stable + containers','Y','','','Y','','','','','Y','','','nix-tree','',''),(946,NULL,1,'en','1559880805','A2','A2','male','','','','','','Y','Y','','','Y','Y','','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(947,'1980-01-01 00:00:00',5,'en','2116345861','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Up-to-date packages and reproducible dev environments ','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','Y','','Reproducible Development Environments','Declarative Package management','Declarative Docker Images','Simpler flakes. I think there is a discussion about a flake.toml\r\nI really like the cli of poetry. Packages are declared in the pyproject.toml but can be added imperatively.','Docker for Development Environments\r\nConda for packagemangement','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','I used Nix + home-manager on elementary OS for a while and than went all in on Nix','Y','','','','','','','Declarative Systemmanagement','Modules','Graphical Applications work better than on non- NixOS Linux distros.','Even Better Support for Pantheon DE','elementary OS or Fedora Silverblue','','','','','','','','','','','Pantheon','home-manager\r\nnix-locate\r\nnixGL\r\nNix VS Code extension\r\ndirenv & nix-direnv\r\nflake-utils','',''),(948,NULL,1,'en','2012697458','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(949,'1980-01-01 00:00:00',5,'en','1722285931','A2','A3','male','','','','','','','Y','Y','','','','','','','Y','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I started with NixOS, then I moved onto using nix standalone to bring tools into MacOS environments imperatively and now I\'m starting to add development environments in all the projects I touch at work','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','','Transparent source/binary deployment','Optional and effective sandboxing','nix why-depends','My magic wand enabled wishlist is:\r\n* only one set of commands, no problem if it\'s one single executable or many\r\n* the ability to write secrets in the store (probably with some controlled impurity)\r\n* builtin ability to fetch from private repositories (or if it is already possible, clear documentation about it)','many tools depending on the usecase, probably saltstack to configure the OS, a lot of Dockerfiles to prepare for the delivery, chezmoi to manage the dotfiles','','','','','Y','','','','','','','','','','bundix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','It got mentioned by a NixOS user on a unrelated IRC channel, I heard the name already and so I asked for more information to check if I understood correctly the term \"purely functional linux distribution\".\r\nI gave it a try and was surprised to see that I could explain the whole raid + lvm + luks setup declaratively and options for everything were already there, so I kept it and I started liking it more with the time. At the time I had another computer to do my day job so I could learn everything with my pace.','Y','','Y','','','','','fully versioned configuration','assertable/testable configuration','AMAZING support for a lot of services and ready made options','I would like to have notifications that I need to reboot after nixos-rebuild or activation of a profile if there is the need to and an optional friendly reminder that a channel (or the flake inputs) have advanced and contain security updates','Arch Linux','Y','','Y','','','','','','Y','Y','','nixos-hardware, nixos-shell','nixops, At some point I was unable to find the documentation or even a working tutorial so I stopped trying\r\nhome-manager, I\'m trying it again now that I\'m more confident with the rest of the ecosystem but at first I couldn\'t wrap my head about the overlap with some nixos options\r\n',''),(950,'1980-01-01 00:00:00',5,'en','1090936030','A5','A3','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','Y','','Y','','','','','','Y','Y','','Y','','declarative system','easy to check out new software (\"nix run ...\")','good developer experience (nix build, nixos-container)','Typed Nix language','Fedora','','','','','Y','','Y','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','Y','','','','','','','Y','','','','','','','Y','','','cinnamon','','',''),(951,'1980-01-01 00:00:00',5,'en','779659682','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I have a terrible memory, and while running various other flavors of Linux (most recently Arch) I would constantly forget how I set things up when it came time to move to/set up a new machine, and would constantly cause things to break and have to do serious surgery to repair my broken machine setup.\r\n\r\nWith NixOS, I could both live on the relative bleeding edge (thanks to `nixos-unstable` channel) _and_ have confidence I wasn\'t going to semi-permanently bork my machine after upgrading it, while being able to write down _all_ the modifications I\'d made to the base system and apply them elsewhere/see how they change over time in source control.','','','','','','','Y','','Y','','','','','','Y','','','Y','','Ability to temporarily install packages for use with `nix-shell` without changing the system configuration','Searching for available packages','','Better package search/interface (it would be nice not to have to delve into the nixpkgs repository to figure things out as often), fully `nix`-ize the tool (i.e. drop `nix-shell` and replace with `nix shell`, etc.).','Probably something like chef or puppet, but in practice I simply used Arch Linux and threw up my hands with \"oh well I guess things won\'t be easy to manage and will break sometimes!\".','','','','Y','','','','','','','','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Same as I started using `nix`; I want to be able to reproduce and roll back my system configuration in a way that I can remember, i.e. not doing one-off tweaks that I then forget after a while.','Y','','Y','','','','','Declarative system configuration','Ability to roll back to previous boot environments if something goes wrong','Nice default declarative configurations for packages, centralized in one place (nixpkgs repo)','Making it simpler to write/package existing software via guides, tutorials, etc. that go beyond the absolute basics. Mostly, better documentation! Creating overlays and new packages sometimes feels like a black art where I get to try to find a somewhat-similar package in `nixpkgs` and then copy/change/alter the parts I need and hope for the best. This would be easier if the internal \"best practices\" were documented _somewhere_, but I have literally never found any documentation about the \"right\" way to package/overlay things, and none of the internal-to-nixpkgs things have meaningful documentation that would help me help myself.','Likely nothing, I would just use Arch Linux and hope for the best w.r.t. upgrades/customization.','','','','','','Y','','','Y','','i3, startx','','','Thank you for making a wonderful tool/OS!'),(952,'1980-01-01 00:00:00',5,'en','2118826803','A5','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted a Linux OS that had all it\'s configuration in one consistent system that made rollbacks and re-installs easy. ','Y','Y','','','Y','Android','Y','','Y','','Y','Y','','','Y','Y','Y','Y','','Extensible and extensive package management solution ','System understanding and transparency ','\r\nConsistent configs across operating systems','Home-manager as a primary component instead of a add-on feature. ','A bunch of janky bash scripts','Y','','','Y','Y','','','','Y','','','','','','','Y','Y','','','N','I just recently understood how to build new derivations that would conform to nixpkgs. I\'ll be making a contribution soon. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted a Linux OS that had all it\'s configuration in one consistent system that made rollbacks and re-installs easy. ','Y','','Y','','Y','','','Consistent system configuration across hardware ','Greater control over specific package installations (versions)','Performance was much better than Arch','NixOS on mobile (not just Android support, but actual nixos mobile install)','Arch Linux and a bunch of bash scripts','Y','','','','','','','Y','','','','','sops-nix and nixOps. I just didn\'t need what they offered.','NixOS has been some of the most fun Linux configurating I\'ve had in recent years. Thanks!'),(953,NULL,NULL,'en','1736465409',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(955,NULL,1,'en','918079778','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Designer','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(956,NULL,1,'en','1445833375','A5','A3','fem','','','','','','','','','','','','','','','','','','','','','','','','','Author','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(957,'1980-01-01 00:00:00',5,'en','809576318','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I read about it and was interested in the declarative system configuration and generation rollback.','','','','','','','Y','','','','','','','','','','','Y','','declarative configuration','generations','relatively recent software versions','I would add/change the documentation. It\'s not as easy to pick up Nix as it should be.','Probably apt/Debian','','','','','','','','','','','','','','','','','','','','N','I haven\'t run into the case where I\'ve needed to yet. Also, I\'m still quite new and haven\'t had the time to learn the language, which I find to be quite strange and not well-documented.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted to try a Linux distribution with the features of Nix -- declarative configuration and generation rollback.','Y','','','','','','','declarative configuration','generation rollback','relatively recent software versions','Add/change documentation to make it easier for beginners to pick up.','Probably Debian. I moved from Ubuntu, but can no longer tolerate things getting worse over time.','Y','','','','','','','','','','qtile','','',''),(958,'1980-01-01 00:00:00',5,'en','210808686','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','Y','','','','','','','','','Y','','','','','','','','','','awesome','','',''),(959,'1980-01-01 00:00:00',5,'en','307569987','A5','A4','male','','','','','','Y','','','Y','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','Y','','Y','','Y','','','','','Y','Y','Y','Y','Y','','Use of nixpkgs -- i.e. a huge, maintained database of build instructions for virtually every package of significance','Nix the language -- reasonable (albeit somewhat ugly) representation to describe my own derivations when not suitable for inclusion in nixpkgs','NixOS modules -- The more basic set of system modules are quite nice for a barebone system setup, but admittedly, I\'m loath to rely on more complex service ones in lieu of rolling my own centered around my use case (often being rather dumb wrappers around literal conf files). In my opinion, there\'s a practical limit to what *should* be done in the language, despite others\' willingness to push on for anything one *can* do in it.','I\'d like to see the completion of the new nix command and deprecation of the original, \"organically grown\" tooling.','Probably my long-time standby of Debian as a base distro, perhaps with the addition of Guix as a package manager on top.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','The things I consume which belong in nixpkgs seem to be largely well-maintained already.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','Debian','Y','','','','','Y','','','','','sway','','',''),(960,'1980-01-01 00:00:00',5,'en','958530885','A5','A3','male','','','Y','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I did a Google search for a different distro with a novel FHS that I\'d heard about previously and ended up finding Nix by accident. Was super interested, and at the time I was using Ansible a lot, so I tried to integrate the Nix package manager with Ansible. After some frustration there, I realized that just using NixOS might be a lot simpler; turns out I was correct, and I\'ve been using it ever since.','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Some sanity. Nix isn\'t always the simplest to work with, and can even sometimes be more of a headache than other solutions, but there is definitely something interesting about being absolutely confident once I\'ve managed to develop a working package or service. I know that if it works now, it\'ll work later and I can just move on to other things.','Nix shell/develop is a fantastic resource. Defining per project shells is basically how I do development nowadays, and I don\'t really regret anything about it. I only ever have to bootstrap once, and from then on I can focus on being productive with the actual project. Pulling in packages for quick ad hoc usage via a transient shell without having to install anything globally is also quite refreshing.','Nixpkgs is a fantastic resource as it quickly becomes one of, if not the largest software repository in the world today. It is incredible to have almost anything I think to use readily available, and in the rare event something has yet to be packaged, once you are familiar with Nix, a lot of (but not all) software is super trivial to package quickly and easily.','I think Nix really needs to focus on optimizing itself for the distributed world of today. Efforts like Flox are a great start, but ultimately I think it should be on Nix itself to improve it\'s design rather than fracturing the community into disperate projects. The client server split is definitely nice, but feels more like an afterthought (and indeed it was). The server\'s API is still highly obtuse and non-obvious. I think the server side of Nix should work toward being totally agnostic, and even provide a secure web facing API from which to take requests. The cli could then speak this API to work locally, or one could send derivation build requests from their own preferred language.\r\n\r\nAlso, the distributed Nix store would be an amazing addition. Not sure what Flox\'s future plans are in terms of opening up their own work, but it would be amazing to see something like this eventually hit Nix proper. In a similar vein, maybe some popular protocol like gossip could be integrated with Nix so that build machines can stay up to date on each other\'s health and workloads can be more effectively distributed or rescheduled in the case of a failure.\r\n\r\nI\'ve had a lot of people disagree with me on this one, since it is just a config language at heart, but I feel strongly that Nix, the language, could make good use of more traditional moduling mechanisms common in many other languages. The way Rust does it is quite nice, but I\'m not sure if it would translate perfectly to Nix. I like flakes, but they seem to be serving sort of a different purpose than in repo code modularization. Maybe this isn\'t a major concern for more local projects, but for huge mono-repos like nixpkgs, it could go a hell of a long way to bringing the insanity a bit more under control.\r\n\r\nFinally, I\'m not sure if there even is a good solution for this one, but it\'d be nice if we didn\'t need to have nix installed at the system root. Right now just installing Nix and getting bootsrapped is a huge turn off for new comers, and understandably so. It\'d be much more in line with Nix\'s own core philosophy, I feel, if it could be reasonably bootstrapped in an unpriviledged context. I know that the hashing of derivation paths makes this totally not trivial, unless we agree to move `/nix` to somewhere that is more accessible and canonically available on other Unix systems, but even then we\'d be looking at a completely rebuild of all of nixpkgs. \\\r\n\r\nI know this is all just one huge wish list, but you asked :)','I would probably be using Alpine containers running under podman. Kata containers are also fairly interesting conceptually, but I don\'t have much personally experience with them. For development systems, due to ease of package management there, I\'d probably still be using Arch, and for deployments, I\'d probably still be using some combination of Terraform and Ansible. I still use Terraform in conjuction with NixOS at work actually.','','','','Y','Y','','Y','','','','Y','','Y','We are currently building our own Nix focused CI system at IOG called Cicero','Try to avoid the hassle as often as possible and just rely on what\'s in nixpkgs if possible. That said we do have to use haskell.nix for work, and every once in a while I have to mess with yarn2nix or npm2nix.\r\n\r\nCurrently I\'m looking at developing a Scala SBT 2nix type tool, but I\'d like to ideally include it as an addition to the dream2nix tool if possible. SBT isn\'t really designed with a locking mechanism in mind so it\'s a bit of a headache, but we need it for several projects at work, so I\'ll have to tackle this at some point.','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Pretty much the same story as Nix if you want to refer to that answer. I started using NixOS very shortly after being introduced to Nix.','Y','Y','Y','Y','','','','Having an entire operating system as a cryptographically verifiable, and atomically upgradable system is fantastic.','The module system provides a nice layer of abstraction to simplify what is usually a painful process of manually defining systemd services by hand. It\'s also fairly useful for composing systems of various complexity if you simply intelligently define and declare your services in well organized files.','This may be the same point as #1 but it is worth repeating regardless. The amazing stability of a NixOS system once it gets into a working state is just unlike any other system I\'ve experienced. It\'s quite amazing to be able to rest assured that my system isn\'t just going to magically break out from under me right in the middle of important work.','I think the module system is amazing, but under the hood it definitely needs to be adjusted for performance and ergonomic considerations. I\'m not sure this would be entirely pheasible without some additions to the Nix language, but hopefully something will be done. There are some potentially interesting RFCs IIRC, but even if a new contender catches on, it will be quite the task to convert all the existing modules.\r\n\r\nI, for one, would love something that raise the level of abstraction up just a bit, and allow for defining services for various underlying job schedulers instead of being locked in to systemd, but that\'s seems to have been on a lot of folks wishlist for quite some time, so who knows if it will ever happen.','Basically same as my answer to this question for Nix again.','Y','','','Y','','Y','At work we are developing a tool called bitte, which uses deploy-rs as a rust package, but extends its functionality in consideration of more cluster oriented workloads','','','','I used XMonad for a long time, and sometimes still switch to it if Wayland becomes an issue. Otherwise I am usually running Sway if possible.','A lot of the stuff we are developing in house at IOG. For example, Bitte and Cicero. My personal systems also run on DevOS.','NixOps was great for a while, but the local database was kind of a turn off for me. I know there isn\'t really a good way to avoid that, as the nature of cloud deployments is inherently stateful, but I just think Terraform has already done a better job of solving that problem, at least the way we are using it at work (we use a plugin that stores TF state in a secure Vault instance). Also, it is just much more well supported.\r\n\r\nThat said, we are deploying NixOS AMIs with Terraform, and so we are still heavily invested in Nix tooling otherwise. Our deployment tool is a bit of a fork and extension of deploy-rs with additional non-deployment related functionality, for example.','Just that Nix is incredible and that I really hope it becomes the future of systems deployments :)'),(962,NULL,NULL,'en','816165883',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(963,NULL,NULL,'en','1301988361',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(964,'1980-01-01 00:00:00',5,'en','1571493881','A2','A2','male','','','','','','','Y','','','Y','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Wanted stability ','','','','','','','','','','','','','Personal computing ','Y','','','','Y','','Stability','Reproducibility ','','Make documentation more easily accessible, add subsystem support for applications that depend on a standard linux environment i.e: docker lite','Ansible','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Wanted stability for my system.','Y','','','','','','','Stability ','Documentation ','Reproducibility','Support for using nixos as a more normal linux installation. Having to constantly open the os config file and rebuild to change one thing is a pain in the ass','Debian','Y','','','','','','','Y','','','','','',''),(965,'1980-01-01 00:00:00',5,'en','791281376','A2','A3','-oth-','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Development environments for projects','Configuration of machines','Building software products for distribution','Improve error messages','','','','','Y','Y','','','','','','Y','','','','cabal2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','Managing my machine through a single source of truth','Ability to revert easily in case of a mistake','search.nixos.org to help figure out how to run some new piece of software','','Arch Linux','Y','','','','','Y','','','','','Sway','home-manager','nixops',''),(966,NULL,1,'en','1224688541','A5','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(972,'1980-01-01 00:00:00',5,'en','2052368838','A5','A3','-oth-','','','Y','','','Y','Y','Y','Y','Y','Y','Y','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I\'ve seen programmatic configuration of devops resources before (e.g. Terraform with AWS) and NixOS seemed like a useful elaboration of that concept. Also some software packages I use use Nix. ','','Y','','','','','','','Y','','','','','','','','','Y','','Declarative system configuration','','','Better documentation','Maybe terraform, but its not good at configuring Unix systems themselves','','','','Y','','','','','','','','','','','','Y','','','','N','Not sure how to create derivations for software I want to use','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','Y','','','','','','','','','','Y','Y','Y','','Y','','','','','','','','',''),(967,'1980-01-01 00:00:00',5,'en','1103175009','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','','','make compiler errors easier to read','','','','','','Y','','Y','','','','','','','','node2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','','',''),(968,'1980-01-01 00:00:00',5,'en','1999392077','A4','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I started with nix/nixos when a friend of mine told me about the declarative configuration.nix. I was instantly hooked to the idea of declaring to my system what I want it to be like.','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','FLAKES!!!','Reproducibility ','Declarative','Anything related to nix flakes','I would put more effort into `nix profile` so we can more easily get rid of the horrible `nix-env` tool. In addition to that I would suggest new users to use home-manager considering it gets more contribution. Perhaps even making home-manager official, more than just another community project.','I ask myself this exact question every time I execute a Nix command :^)','','','','Y','Y','','','Y','','','Y','','','','Java - https://github.com/tadfisher/gradle2nix\r\nPython - https://github.com/nix-community/poetry2nix\r\nRust - https://github.com/nix-community/naersk\r\nJavascript - https://github.com/nix-community/yarn2nix','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was getting a new home server and was not sure which OS to run on it, a friend quickly recommended NixOS for it\'s flexibility and reliability.','Y','Y','Y','','','','','Declarative system management ','Reproducible OS ','','Maybe add an official installer and a GUI tool for \"user-friendliness\" like Nix-GUI https://github.com/nix-gui/nix-gui','Red Hat Enterprise Linux','Y','','','','','','Nixinate ','','','','BSPWM','Robotnix (https://github.com/danielfullmer/robotnix) is in my top 3 best Nix projects. I use robotnix very regularly to build custom AOSP ROMs for my phones.\r\nCachix is also a program which I use a ton to cache the build artifacts of many of my personal projects. I also use Hercules-CI as a CI/CD tool with Cachix.','','Thanks you for making this survey <3'),(969,'1980-01-01 00:00:00',5,'en','323412458','A2','A2','-oth-','nonbinary','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','','','','','','','','','','','','','','','','Y','Y','','Y','','','','','I\'d change the language Nix. I feel like it\'s pretty good for writing a quick derivation but when coding in Nix or doing configuration I\'ve often found myself really really wanting more of a type system.\r\nRolling your own language also means that online resources are just a bit few and far between.\r\nDocumentation will suffer, the standard library will be limited, tooling is limited.\r\nI\'ve seen real progress and coding in Nix is now much more pleasant than before, but I still feel like Nix is much more suited to writing simple derivations than configurations (which is where I actually spend my time).\r\n\r\nUnfortunately I\'m convinced a move away from Nix as a language will do more harm than good.\r\nI think eventually Nix will become a much more pleasant experience as it has already improved by leaps and bounds and I\'m excited to find out.','Probably makefiles and maybe some bash scripts.','','','','Y','Y','','','','','','','','','','','Y','','','Nix User Repository','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','As a daily driver','A3','I was introduced by a friend and became fascinated with its guarantees of reproducible configuration.\r\nI\'ve tried out and kept using NixOS as a daily driver because of the learning experiences it gives me but mostly because it allows me to share a config between my desktop and laptop.\r\nHaving the same config on multiple machines (lightly tweaked of course) is just so incredibly convenient.','','','','','','','Daily driver','Shareability, configurations between machines, packaging work between friends or reusing some tooling built in Nix between projects.','Version control of configuration, I often look back and say \"how did I solve this problem the last time I encountered it?\" then go look it up in my commit history.','Rollbacks, the fearlessness that comes with rollbacks (and also version control + reproducibility) allows me to try out much more things than I otherwise would have.','I\'d like some tooling to more efficiently and interactively explore the tree of options and the tree of my current configuration.','Through Nix I\'ve heard about Ansible, so maybe I\'d have eventually tried that out but probably I\'d end up with some dotfiles and a collection of bash scripts.','','','','','','','','','','','XMonad','home-manager','',''),(970,'1980-01-01 00:00:00',5,'en','1103563204','A2','A3','male','','Y','','Y','Y','Y','Y','Y','Y','','','','','','','','','Y','','','Y','','','Y','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','Y','Y','','','Y','','Y','Y','Y','','Y','','','','','Support bootstrappability ','Guix','','','','','Y','','Y','','Y','','','','','','','','Y','','','N','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','Y','','Y','','','','','','Guix','Y','Y','','','','','','','','','sway','','',''),(971,'1980-01-01 00:00:00',5,'en','1697695397','A2','A4','male','','','Y','Y','','','','','','','Y','','','','','','','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','','','Y','','','','','','','Y','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A3','','','','','A1','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(973,'1980-01-01 00:00:00',5,'en','934365920','A2','A6','male','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','N','N','High levels of security with easy-to-use configuration, strong Posix/Linux compatibility for applications (at the API/source code level, not necessarily binary compatibility)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Just answered this question, no?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None',''),(974,'1980-01-01 00:00:00',5,'en','44854134','A7','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','When I started using NixOS','','','','','','','Y','','','','','','','','Y','Y','','Y','','Has large package repository (nixpkgs), including non-free behind a flag.','Reproducibility','Declarative package management','I would want to add an interactive debugger with REPL.','Guix with non-free extensions or arch with AUR.','','','','Y','Y','','','','','','','','','','poetry2nix, mach-nix, cabal2nix','Y','Y','','','N','I haven\'t got the hang of packaging enough to feel confident enough to do so.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I had known about Nix for a while and had intended to try it for a while until I eventually set NixOS up on a virtual machine. I was familiar with Haskell at the time so the functional programming aspect wasn\'t new to me. Arch had been my daily driver for around 4 years at this point. I now use nixos with flakes and the home-manager module as my daily driver.','Y','','','','','','','Benefits inherited from using Nix','Generations with easy rollback','Module system ','Shower thought: have a more official solution than home-manager.','Guix or arch','Y','','','','','','','','','','Sway','home-manager\r\nnix-doom-emacs\r\ndirenv','nix-alien, nix-autobahn',''),(975,'1980-01-01 00:00:00',5,'en','358515604','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Wanted to test declarative configuration ','','Y','','','','','','','Y','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','','sway','','',''),(976,'1980-01-01 00:00:00',5,'en','1323400280','A2','A2','male','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','Y','','','Y','Y','Y','','Y','Y','','Y','Y','Politician','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','To help others','A3','Someone told me something weird was an interesting software (Nix) because it did this, that and this and that.\r\nI often doubt shiny stuff (k8s, etc.) so I doubted the claim and wanted to verify and grasp what is the idea behind it.\r\nTried once and got addicted, I saw so much potential and moved away gradually from Archlinux/Pacman to Archlinux/Nix to NixOS. Now, I try to convert everything to a Nix expression.','','Y','','','','','Y','Y','Y','Y','','Y','Routers, networking gear, etc.','','Y','Y','Y','Y','','Lazy functional \"almost pure\" language to describe the world','Self-contained and well understood primitives: derivations','Discipline to force disrespectful software to behave (i.e. control)','(1) Change: More evaluation performance, an even more snappy experience with nixpkgs\r\n(2) Change/Removal: pre-Nix 2.4 commands and backward compatibility\r\n(3) Change: Better support for recursive Nix & IFDs\r\n(4) Add: More builtins (parsers tooling) to support lang2nix\r\n(5) Add: secrets support for Nix store\r\n(6) Change: better UX for binary caches\r\n(7) Remove: Nix channels (but the Flakes feature was pushed… in the wrong way alas.)','In order:\r\nGuix, then Spack, then Alpine, then Archlinux/Gentoo. But I cannot imagine the world without Nix and those are really not enough for my use cases.','Y','Y','','Y','','','Y','Y','Y','','Y','Y','','self-hosted drone.io','Almost all of them, but:\r\n\r\n- https://github.com/nix-community/poetry2nix\r\n- https://github.com/nix-community/npmlock2nix\r\n\r\nAre the two I use the most (like: daily to weekly depending on what I do).','Y','Y','Y','Nix User Repository','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','After some pacman -Syu, some software was really super broken (iirc chromium segfaulted somewhere in the JIT executable pages...) and I was tired of dealing with all the cruft accumulating on my machine. I knew NixOS could mitigate most of my issues. So between chasing through everything that goes on my machine using kernel debuggers & al (which are not super power user friendly on Arch BTW contrary to NixOS), I preferred to spend 24 hours to migrate my live machine to NixOS with minimal changes to the filesystem layout and some improvements, I hate it that I did not encounter major difficulties to do it and the ride was pleasant.','Y','Y','Y','Y','','Y','','Expert system through NixOS modules and nixpkgs repo','Trivial cloning/reconstruction with SyncThing/whatever of my system with the state','Runtime metadata of the running system through Nix exprs (enable me to tame the complexity of servers, rollbacks, etc.)','(0) Add: Declarative partitioning with live reconfiguration of layouts when possible (e.g. nixpart)\r\n(1) Add: (Secure,Verified,Trusted) Boot + fs-verity on Nix store\r\n(2) Add: Being able to bake software sandboxing in the Nix exprs, e.g. firejail/AppArmor/etc. to get a QubesOS feeling without full blown VMs or containers\r\n(3) Change: remove systemd hard dependency as much as possible (i.e. start for high level services, then devise a strategy for boot etc.) and open up for static ordering at eval time, etc.\r\n(4) Change: switch-to-configuration.pl :>\r\n(5) Add: better inspection abilities à la nixos-option\r\n(6) Add: more documentation of /run/current-system/*','Terraform, Kubernetes, Ansible associated with a functional DSL à la Dhall or Pulumi in a relevant language.\r\n(all those are unfortunately terrible for my use-cases compared to NixOS :>.)','Y','Y','Y','Y','','Y','krops','','','','i3/sway','rnix-lsp, rnix, home-manager, niv, nix-output-monitor, nix-locate, man *.nix, search.nixos.org, https://lazamar.co.uk/nix-versions/, docs on packaging in certain ecosystem (Python, Rust, Go, etc.), https://discourse.nixos.org/t/nvd-simple-nix-nixos-version-diff-tool/12397 and many more I forgot about, it has become so normal.','flakes, nixpart, hnix, some lang2nix','While a survey is nice, please, please, do not forget: https://discourse.nixos.org/t/nix-2-4-and-what-s-next/16257 which speaks a lot about of our concerns and might be as much as important as this survey.\r\nHopefully, you will be able to communicate something regarding the subject.'),(977,'1980-01-01 00:00:00',5,'en','1055506384','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','To have a repoducible development environment between various linux distributions.','','Y','','','','','','','','','','','','Y','Y','','','','','Consistent packages between different computers and distributions.','','','I would change the language. Something like guix with scheme perhaps?','','','','','','Y','','','','','','','','','','poetry2nix https://github.com/nix-community/poetry2nix','','Y','','','N','I have all the software that i need on nixpkgs','N','N','Nothing I am happy using my current ubuntu or arch system. \r\nI think nix is a great idea for some packages or a dev environment, even for servers, but not so much for my home computer, as I need some software that is difficult to build in something that is not ubuntu (for example vivado or matlab)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nix direnv as a quick way to change between dev environments','Lorry as I changed to nix-direnv',''); +INSERT INTO `limesurvey_survey_2022` VALUES (978,'1980-01-01 00:00:00',5,'en','1218509526','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A co-worker told me about atomic updates and the built-in roll-back mechanism after i bricked my Ubuntu machine the second time while updating the OS. And after I tried nix as an alternative package manager on Ubuntu (since the Vagrant package from the apt replsitory was broken), I was unrecoverably infected by nix\'s superior awesomeness.','','Y','','','Y','','Y','','','','','','Private everyday and gaming computer','','Y','','','Y','','Reproducability (to a very high degree at least!)','Great collection of up-to-date packages','Growing and friendly community','The docs are very broad but for really getting deeply into it those are to shallow. I would love to be able to get a detailed understanding of the concepts and the api without digging in the source code of other guys (it\'s awesome to have that!) or spending hours on reddit or on personal blogs until finding out how to achieve some \"simple\" tasks. I personally like api docs of libs for instance!','Ansible, but achieving idempotence in self-scripted roles is a nightmare. And supporting multiple different distros is also not very pleasing with it in less heterogenous environments.','','','','','Y','','Y','','Y','','Y','','','','The one for ruby gems, it\'s called bundix afair. Might not be a really appropriate answer, apologies for that.','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I may refer to the same question at the nix part of this survey?','Y','','','','','','Personal everyday and gaming computer','Atomic updates (no fear anymore!)','One system config for all my machines!','Even my home directory is getting a declarative configuration with home-manager!','I would re-add the nixos-option CLI tool for debugging my system config after rebuilding. It somehow disappeared after upgrading to 21.11...','Ubuntu or Arch meanwhile or some other overrated/hyped GNU/Linux distro','Y','','','','','','','','','','Xmonad','Home-manager and nix dev-shells together with nix-direnv for reproducible environments (not only for development!)','Nixpkgs channels, now using flakes only as nixpkgs registry for better reproduability.','I really love what you do with Nix. You kind of made the world a better place (at least for me).\r\nI only wish that the nix expression language would not require such a steep learning curve for fp newbies and there where even more or more complete examples for teaching good practices. This is leading me to the idea that a configuration or derivation code genrator would be great... Might be a good side project for when my kids are asleep!'),(979,'1980-01-01 00:00:00',5,'en','683750680','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Getting any app easily on any OS','','','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','Reproducible builds','Easy dev environments','Patching software','Better documentation','Docker','','','','Y','Y','','','','','','Y','','','Podman','poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','After using nix on non-nixos, and wanted hardware acceleration','Y','','Y','','','','','Declarative config using a programming language','Pre-configured modules','Patching system packages','Better default configuration for newcomers (nixos-generate-config)','Gentoo','Y','','','Y','','','','Y','Y','','Sway','search.nixos.org','',''),(980,'1980-01-01 00:00:00',5,'en','656165533','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Didn\'t want to install all pandoc dependencies on my Arch machine with pacman; Nix was more suitable for it and Haskell in general, which I wanted to learn','','Y','','','','','Y','','','','','','','','Y','','','Y','','Possible single config file for the entire system (NixOS) + user (Nix; Home-manager)','Rollbacks','nix-shell for temporary environments','Include simpler package search options','Use the language specific package managers and Arch Linux\' package utilities (PKGBUILD; ABS)','','','','Y','Y','','','','','','','','','','','','','Y','','N','Time constraints for the learning curve of Nix packaging','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Dotfile repo was a nightmare to maintain on two systems simultaneously. NixOS solved this problem and also included tempting features.','Y','','','','','','','Organized dotfiles with NixOS and home-manager','Rollbacks','Easy and safe upgrades via channel switching or flakes','(More) Integrated package and option search with CLI','Arch Linux','Y','','','','','','','','','','bspwm + home-manager options','','','NixOS helped my debloat addiction'),(981,NULL,3,'en','1486504749','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(982,'1980-01-01 00:00:00',5,'en','1607875817','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to use home manager to make bootstrapping news systems easier. Also I wanted reliability and checking configuration into got.','Y','','','Y','','','Y','','Y','','','','','','Y','','','Y','','Repo specific developer flake files.','Home manager (maybe not core to nix).','Nix shell to just try stuff out.','I would make the docs and tooling better. I dislike how hard it is to write flake files as I\'m a nix noob. I wish i didn\'t have to refer to the nixpkgs source code so often. I wish I could more easily search for things and bootstrap python and rust projects.','Dev containers ','','','','','Y','','','','','','','','','','Poetry2nix and the oaxilica rust overlay','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I have an old Linux laptop that is basically my Zen garden. I liked nixpkgs so I wanted to see what NixOS was like.','Y','','','','','','','Rollbacks','Easily swapping desktop environments.','','I wish Nvidia stuff worked more seamlessly. I do machine learning and don\'t run NixOS on them for this reason.','Manjaro or Arch. Maybe PopOS.','Y','','','','','','','Y','','','Sway','','',''),(984,'1980-01-01 00:00:00',5,'en','1699172157','A2','A3','male','','Y','','','Y','Y','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','Y','','Isolated development environments','Docker image building','Distribution rollbacks (on NixOS)','Documentation, official tutorials and proper, helpful, contextual error messages','Language specific build environment solutions and docker','','','','Y','Y','','','','Y','','','','','','elm2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','','Declarative system configuration','Rollbacks','Rolling releases','Documentation, tutorials, examples, and a graphical installer. Maybe a graphical configuration tool even.','Gentoo','Y','','','','','','','','','','exwm','','mach-nix, pypi2nix, node2nix, yarn2nix',''),(983,'1980-01-01 00:00:00',5,'en','2026622684','A2','A4','male','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','Home brew was frustrating me. Every time I upgraded Emacs, it would get in a fit. \r\n\r\nAlso Python virtual environments, and nodejs projects. ','Y','','','','','','Y','','','','','','','','Y','','','','Darwin-nix','Shell.nix','Configuring launchd agents','','I would love a more verbose/readable language. \r\n\r\nI’d also love to be able to get Emacs package installation to work. ','Home brew, and swearing at various other package managers (for Python, Java, Node, etc)','','','','','','','','','','','','','','','','','','','','Y',NULL,'N','N','If I had to use Linux on my computer. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Darwin-nix','',''),(985,'1980-01-01 00:00:00',5,'en','212005784','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','N','Y',NULL,'Lack of fundamental understanding','My own digestion of the language and guides',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A2','I really like the idea of OS configuration as code','Y','','','','','','','configuration.nix','Nix-env','Nixpkgs','Better support for Linux software, recently I tried to install table plus but it is not in nixpkgs','Ubuntu or arch','Y','','','','','','','Y','','Y','','','',''),(986,'1980-01-01 00:00:00',5,'en','1559015213','A4','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','Y','','A3','Nothing beats reproducibility and declarative configuration.','','Y','Y','Y','Y','','Y','','Y','','Y','','','','Y','Y','Y','Y','','Reproducibility','FLAKES!','Declarative','Usage nickel-lang (tweag/nickel) instead of nix-lang once its ready for production.','If guix would\'ve existed then guix, otherwise just old horrible package managers.','','','','Y','Y','','Y','Y','','','','','','','','Y','Y','','','N','Nothing, haven\'t see a package missing :)','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','','','','Reproducibilty','Flakes','Declarative','Ready nickel-lang instead of nix-lang','Guix\r\nOtherwise Arch or fedora probably.','','','','','','','','','','','sway','','','Awesome project thanks!'),(987,'1980-01-01 00:00:00',5,'en','1186255629','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','Y','','Y','','','','','','','Y','Y','','','','','Reproducable system state','System defined as a config file in VCS','huge package library','add an installer to make it easier for people to install nix','some sort of Container OS','','','','','','','','','','','','','','','','','','','','N','creating a nix derivation looks hard','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','i wanted a machine that would reset to the same state after I rebooted it','Y','','','','','','','did i not just answer these questions previously?','','','','','','','','','','','','','','','sway','home-manager','','Hire people to work full-time on the documentation'),(988,NULL,2,'en','998640909','A1','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Reproducibility','Declarative system management','Flakes','Instead of using the experimental-features option for flakes, I would put all the functionality under a new binary like nix3. This would make it significantly easier to run flake commands on other people\'s computers who haven\'t set up the experimental-features option.\r\n\r\nI would change some of the Nix language syntax to make it easier to understand without context. It took me a long time to learn the syntax, and some parts of the syntax I still can\'t even look up online. Using keywords like function make obvious signposts for beginners.','I wouldn\'t be writing packages, just consuming the Arch repos and AUR.\r\n','','','','Y','Y','','','','','','Y','','','','https://github.com/nix-community/poetry2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I found a link to the website through Hacker News and I read the homepage which sounded so intriguing and the properties sounded desirable, especially after getting into a few sticky situations with the package manager on Arch. For the next few months I was thinking about setting it up and then I finally got around to it and have been using NixOS since.','Y','','','','','','','Declarative system management','nixos-vm','','','Arch with imperative system management.','Y','','','','','','','Y','','','i3',NULL,NULL,NULL),(989,'1980-01-01 00:00:00',5,'en','1071252837','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','storing config in one spot, easily maintainable','','','','debian','Y','','','','','','','','','','dwm','','',''),(990,NULL,3,'en','680673150','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','N','Y',NULL,'too many ways to do one thing','updated docs with best current implementations',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(991,'1980-01-01 00:00:00',5,'en','373419553','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(992,'1980-01-01 00:00:00',5,'en','1459608538','A5','A3','fem','','','','','','','','','','','','','','','','','','','','','','','','','Author','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I got really into functional programming and then heard a rumor one could declaratively manage one\'s entire system. Never looked back (though using nix itself not NixOS just followed later).','','','','','','','Y','','','','','','','','Y','Y','','Y','','Never forgetting what weird packages or config options one had to use to get something to actually WORK, because it is all explicit.','Escape from dependency/versioning hell.','Reproducible builds.','The nix language is frankly really, really bad, and I find it basically impossible to comprehend or debug. I would have Nix the \"concept\" rewritten from scratch using a more sensible language like Dhall.\r\n\r\nAs far as more achievable things go, can flakes please be either dropped entirely or standardized already? They are fracturing the ecosystem something awful.','Honestly, nothing. I would just have terrible, dysfunctional workflows.','','','','','','','','','','','Y','','','','elm2nix (https://github.com/cachix/elm2nix)\r\n\r\n(if it counts) haskell.nix (https://github.com/input-output-hk/haskell.nix)\r\n\r\nAll other ones I use are built-in to nixpkgs at this point (cabal2nix, yarn2nix, etc)','','','','Niv + importing a source specifically. Flakes are still experimental and overlays are annoying.','N','As above, the nix language itself is awful and I am nowhere near proficient enough in it to contribute to nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I got really into functional programming and then heard that one could declaractively manage an entire system. Needless to say, I jumped on that immediately for my daily driver.','Y','','','','','','','Never forgetting how you fixed/configured something. Once you solve a problem, it never comes back, and you have a record of what you did, since it has to be explicit.','(Via home-manager) having all of one\'s dotfiles/configurations in one place, with version control and synchronizing them across several computers.','Keeping a very lean install that I can easily add/remove software from/to.','Full \"native\" integration of home-manager (or similar) into NixOS. I just want everything to be configurable from a single place.','Fedora was my daily driver prior to discovering NixOS, so I would likely go back to that.','Y','','','','','','','','','','Xmonad','home-manager, though I discussed that in the NixOS section.','Any time I have to actually touch the nix language itself it\'s a 50-50 whether or not I just give up, since I am unable to do more than copy-paste examples and pray the work. I would love love love the language itself to get some love (or be replaced entirely e.g. by Dhall).','Thanks for the awesomeness that is NixOS!'),(993,'1980-01-01 00:00:00',5,'en','436562789','A2','A3','male','','Y','','','','','Y','','','Y','','','','','','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','','','Y','','','Y','Y','','Y','','Flakes','Reproductabiliy','Declarativity','','','','','','Y','Y','','Y','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','','','Y','','','','','','','Y','','','','','','','','','','i3','','',''),(994,NULL,1,'en','1735253637','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(995,'1980-01-01 00:00:00',5,'en','2073039865','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','','','','','','','Y','Y','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','Y','Y','','','','','','','','','','','','','','','','Y','','','','','',''),(996,'1980-01-01 00:00:00',5,'en','1863451461','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','N','Y',NULL,'Nix language is weird and hard to understand. At least for me.','The idea behind it is great.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Probably nothing. I\'m mainly using Linux on servers where we expect enterprise support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(997,'1980-01-01 00:00:00',5,'en','452647322','A2','A3','male','','','','','','','','','Y','','Y','Y','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','dconf2nix','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','','','','','','','','Y','','','','Home manager','',''),(998,NULL,1,'en','9229691','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(999,'1980-01-01 00:00:00',5,'en','1418736688','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','Y','','','','','Y','','','','','','','','Y','','','Y','','Package availability','Declarative environment ','Network aspect of flakes','Make flakes stable','Guix (but that wouldn’t exist without Nix ;) )','','','','Y','Y','','','','','','','','','','Dconf2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Was using guix, needed better hardware support ','Y','','Y','','','','','Declarative system','Cool modules like kmonad','','','Guix systematic ','Y','','','','','','','Y','','','','','',''),(1000,NULL,NULL,'en','1088608864',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1001,'1980-01-01 00:00:00',5,'en','1679519316','A5','A3','male','','','','','Y','Y','','','','','Y','Y','','','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Curiosity, started using it in like 2015, gave it up for a bit, then came back in 2019, running it on my laptop since then.','','Y','','','','','Y','Y','Y','','','','','Y','Y','','Y','','','reproducible builds','os management','home manager','add language-server for nix','arch linux','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Curiosity, gave it a couple of tries, eventually switched to it fully.','Y','Y','Y','','','','','os builds/generations','ability to switch to previous generation','','nix language-server','arh linux','Y','','','','','','','','Y','','xmonad','nix-review-tools','nixos docker image has visible issues with stability, had to switch away from it not so long ago','Keep at it guys, you are amazing!'),(1002,NULL,NULL,'en','1666087680',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1003,'1980-01-01 00:00:00',5,'en','883322231','A2','A2','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','My thesis advisor advertises nix a lot. ','','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','nix flake','','','better flakes for home-manager','archlinux','','','','','Y','','','','','','','','','','','Y','Y','','Nix User Repository','N','Nix User Repository','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1004,'1980-01-01 00:00:00',5,'en','717310059','A1','A3','male','','','','','','Y','Y','','','Y','Y','','','','','','Y','Y','','Y','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because how easy it is to carry the same configuration to another machine','','Y','','','','','','','','','','','','','Y','','','Y','','Reproducibility','Configuration management','Declarative configuration','Add great documentation especially for all levels, eg. No clear path from beginner through intermediate to advanced usage','Oh God!','','','','Y','Y','','','','','','','','','','','','Y','','','N','No clear and easy documentation of where to begin','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as for nix','Y','','','','','','','Same as for nix','Same as for nix','Same as for nix','Same as for nix','Oh God!','Y','','','','','','','Y','','','I3, sway','','','Even though there have been recent efforts to make documentation and tutorials available, there isn\'t a canonical book or documentation promises to take you from beginner to advanced nix contributor. That is for some like me a huge time investment especially considering work pressure.'),(1005,NULL,1,'en','1682984553','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1006,NULL,3,'en','2011020921','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','N','N','Quality quickstart examples',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1007,NULL,1,'en','720997650','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1008,'1980-01-01 00:00:00',5,'en','31985330','A5','','','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','Y',NULL,'- Package availability + freshness\r\n- Configuration complexity','More common packages available and quicker package updates',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'See Nix section','See Nix section',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I think NixOS is great and has a lot of potential, but it\'s super unapproachable. \r\nWould also love more security/privacy features like Qubes OS.'),(1009,NULL,1,'en','548616510','A3','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1010,NULL,3,'en','1956074708','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Repeatable builds','Cacheable, transferrable build results','','More consistency and reliability in commands, more easily understood language','','','','','','Y','','Y','','','','','','','','','Y','Y','','','N','Huge size','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Repeatable configuration','Y','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1011,NULL,NULL,'en','704537858',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1012,NULL,1,'en','1246891172','A1','A3','male','','','','','','','','','Y','','','','Y','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1013,'1980-01-01 00:00:00',5,'en','1523164327','A5','A4','male','','','','','Y','','Y','','','','','','','','','','','','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','For building reproducible docker images and building software to share on an NFS server.','','Y','','','','','Y','','','Y','','','','','Y','Y','Y','','','reproducible build environment','reproducible docker images','building software that can be shared on an NFS server','stabilize flakes, make building node.js software easier','Docker and k8s','','','','','','','','','Y','','','','','','poetry2nix\r\nyarn2nix','Y','Y','','','N','I wish there was an untrusted repository like the archlinux AUR that I could submit software to without waiting for a pull request. Maybe just a searchable index page of github repositories that any user can add to. The NUR still requires waiting for a pull request to be approved.','N','Y',NULL,'Some software I use wasn\'t packaged for nix: headset, jxplorer, android messages for web. I could write my own nix flakes but there\'s no easy way to put them into nixpkgs or NUR without digging through lots of nix files and waiting for a pull request to be approved. There should be an easy way to submit nix flake repositories to a searchable index page that anyone can submit to, like archlinux\'s AUR.\r\n\r\nAlso, there were some glaring bugs with gnome where after installing software, the icon wouldn\'t appear until you log out and log back in. This has been fixed but it was broken for years. It led me to believe that the NixOS developer base is still too small to fix glaringly obvious paper cuts like this. Using linux for a desktop is difficult enough as is because of the small user base, I felt that the NixOS community\'s ability to provide a trouble-free desktop experience isn\'t there yet.','Maybe in a few years once all the packages I need are in nixpkgs and the desktop experience has had more time to stabilize.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-direnv','yarn2nix - Wasn\'t robust enough to package some JS software I needed. I ended up using Docker instead.',''),(1014,'1980-01-01 00:00:00',5,'en','1994364906','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Started using NixOs.','','','','','','','Y','','Y','','','','Desktop','','Y','','','Y','','Power of a programming language instead of some static configuration format','Declarative/Functional','Reliability','Change nix(the language):\r\n records and enums (not attribute sets)\r\n static types \r\n ','Guix','','','','Y','Y','','','','','','','','','','','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','Desktop','A3','I liked the configurability of Gentoo, which I was prior using, but it was often unstable, and managing packages/flags got complex.\r\nThe declarative configuration of NixOs and its module system, and home-manager allowed for much greater stability, configurability\r\nwith a powerful language.','Y','','Y','','','','Desktop','Programmatic configuration','Reliability','Declarative','Add ability for better secret management\r\nOtherwise: only novel things such as Plymouth w/ root encryption\r\n\r\nPipe dream: Non-linux kernels, eg: XNU/Darwin, kFreeBSD ...','Guix','Y','','','','','','','','Y','Y','bspwm,xmonad','home-manager NUR','',''),(1015,'1980-01-01 00:00:00',5,'en','1034847132','A2','A4','male','','','','','','','','','','','Y','','Y','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The idea of \"system config like Git\"','','','','','','','Y','','Y','','','','','Y','Y','','','Y','','Easy package contributing','Deterministic system config','build OS from minimal config, no bloat','better language as Nix-lang (too many surprises IMO)\r\nbetter documentation, esp for packages\r\noverlays are stupid, make custom git nixpkgs trees a first level citizen.\r\ndrop macos support, it is annoying and macs are proprietary crap','Ubuntu/Debian or maybe Guix (didnt try)','','','','','','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','I don\'t care about Nix, only NixOS. All my answers were about NixOS but it looks like I did not get the survey structure, was too lazy to type stuff again.'),(1016,'1980-01-01 00:00:00',5,'en','1593622301','A2','A4','male','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My company uses Nix heavily, so I got kind of mandatory exposure. But I relatively quickly realized how useful Nix is and started using it independently.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','Reproducible development environments via nix-shell','Easy building of Docker images','Effortless rollback of system configurations','Add better documentation for beginners / non-expert users, more informative error messages with hints for how to resolve the problem, better support for installations without superuser privileges and Nix store paths other than /nix.','Probably conda, Python virtual environments, docker files.','','','','','','','','','','','Y','','','','poetry2nix, bundix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Got convinced to try it out by a colleague ','Y','','','','','','','Easy rollback of system configurations','','','','Ubuntu','Y','','','','','','','Y','','','','','',''),(1017,NULL,1,'en','938823646','A5','A3','fem','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1018,'1980-01-01 00:00:00',5,'en','1424986061','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Because of all the euphoria from my ex-colleagues at Mayflower GmbH','','','','','','','Y','','Y','','','','','','Y','','','Y','','Reliable, declarative and reproducible dev environments','The possibilities of build caching (for builds and deployments of my personal web service projects)','','Documentation and, maybe even more importantly, high quality blog posts by experienced users and advocates. I\'m very much a newbie and it\'s hard to find intuitive material that explains how certain things are working under the hood, amidst the seeming change to flakes. ','Ubuntu or Arch, but looking into guix as well','','','','','','','','','','','','','','','','','','','','N','Haven\'t found anything non trivial package that I\'m missing to try it out myself. Looking at most package definitions, I don\'t think I understand most of what is happening under the hood to know what to do.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Because of all the euphoria of my ex-colleagues at Mayflower GmbH','Y','','Y','','','','','Declarative system configuration ','','','','','Y','','','','','','','','','','i3','home-manager','','Thank you for this already great ecosystem!'),(1019,NULL,NULL,'en','742447747',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1020,'1980-01-01 00:00:00',5,'en','1929335529','A2','A4','male','','','Y','','','','Y','','','','','','Y','','','','','','','','','','','','','','Y','','Y','','','N','N','Today was my first try. So I don\'t use it regularly (yet). But I didn\'t stop yet either.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Today was my first try. So I don\'t use it regularly (yet). But I didn\'t stop yet either.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I\'m quite amazed by NixOS. Going to use it more and maybe even switch to it!'),(1021,'1980-01-01 00:00:00',5,'en','437800557','A2','A2','fem','','','','','','','Y','','','','Y','','','','','','','Y','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Short version: I heard of Nix, thought it sounded cool & decided to switch over to it as my daily driver. \r\n\r\nLonger version: I heard of it from this video: https://www.youtube.com/watch?v=QKoQ1gKJY5A, looked on the website and saw the introduction where you mentioned some of the things Nix could do (building very small docker containers easily piqued my interest). I have regularly distrohopped for a few years now, and at the time I was on bedrock linux but wasn\'t really using the main selling point much. I decided it might be time for a do-over, and although I couldn\'t install nix as a brl stratum as I had originally hoped, I was able to quickly set up a nix install and get to grips with stuff needed to use my system effectively (nix-shell, editing the config & rebuilding, setting up home-manager to manage a user environment etc.). Despite some of the shortcomings, particularly in documentation/intuitiveness, I have been able to use nix successfully. I am still learning about it at the moment, trying to switch over to the single \'nix\' binary rather than the convoluted \'nix-env, nix-shell, nix-store etc.\'. I\'ve enjoyed what I\'ve read of the \'how to learn nix\' series of blog posts (https://ianthehenry.com/posts/how-to-learn-nix/) and they\'ve helped me overcome some confusions. ','','Y','','','','','Y','','','Y','','Y','My personal laptop','','Y','Y','Y','Y','','Declarative system management','Declarative environment management','Building containers','- Functions being in builtins vs lib (I don\'t remember which is which; that sucks)\r\n\r\n+ Better support for the single nix binary. Even though I\'m using it everything still refers to the old binaries. Commands which fail still tell me to run nix-shell (or they did until this morning when I wrote this regex to include in a command_not_found_handler: \"sed -r \'s/nix-shell -p (\\S+)/nix shell nixpkgs#\\1/g\'\"), the documentation still pushes me towards running the more confusing older versions of the commands etc., and as far as I can tell the online documentation has no content on how to use the new binary\r\n+ Better documentation on how to set some of this stuff up and why things are the way they are. It\'s really confusing as a new user sometimes.\r\n+ More ways of inputting stuff to a flake. I still haven\'t discovered a way to use just URLs as flake inputs \r\n+ More information about what\'s going on. As an example \'nix store gc --dry-run\' outputs nothing on my system. I presume that\'s because it wouldn\'t delete anything, but it would be nice to have something saying \'x number of things would be deleted; x amount of space would be freed\'. There are similar examples where some cases output nothing and it\'d be nice to give some reassurance that that means what I think it means.','Either the package manager used in Guix, or pmm with yay as I was using before','','','','Y','Y','','','','','','','','','','None','Y','Y','','','N','I do not feel that I am experienced enough with nix yet to contribute usefully to nixpkgs. I still feel like I\'m in relatively early stages of learning and experimenting.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','It\'s the same as the story for Nix; I\'ll copy and paste it here for completeness.\r\n\r\nShort version: I heard of Nix, thought it sounded cool & decided to switch over to it as my daily driver. \r\n\r\nLonger version: I heard of it from this video: https://www.youtube.com/watch?v=QKoQ1gKJY5A, looked on the website and saw the introduction where you mentioned some of the things Nix could do (building very small docker containers easily piqued my interest). I have regularly distrohopped for a few years now, and at the time I was on bedrock linux but wasn\'t really using the main selling point much. I decided it might be time for a do-over, and although I couldn\'t install nix as a brl stratum as I had originally hoped, I was able to quickly set up a nix install and get to grips with stuff needed to use my system effectively (nix-shell, editing the config & rebuilding, setting up home-manager to manage a user environment etc.). Despite some of the shortcomings, particularly in documentation/intuitiveness, I have been able to use nix successfully. I am still learning about it at the moment, trying to switch over to the single \'nix\' binary rather than the convoluted \'nix-env, nix-shell, nix-store etc.\'. I\'ve enjoyed what I\'ve read of the \'how to learn nix\' series of blog posts (https://ianthehenry.com/posts/how-to-learn-nix/) and they\'ve helped me overcome some confusions. ','Y','','','Y','','','My personal laptop','Declarative system management','Declarative user profile management through tools like home-manager','Easy access to the nix package manager','I have had major major issues installing NixOS on my raspberry pi zero w 2. I wish there were better support there.','Either bedrock linux, gnu guix (through this video which I watched slightly after the nix one https://www.youtube.com/watch?v=iBaqOK75cho), or something else entirely. Probably guix.','Y','','','','','Y','','','','','SwayWM','None','None','I really love nix. I apologize if my answers are sometimes a little incomprehensible as I don\'t quite understand my way around yet, but from what I\'ve seen this is awesome. I would love to help improve nix, but I\'m not quite sure where to start. For now I shall probably keep playing around and gaining intuition until I make something that\'s cool enough to help people with nix.\r\n\r\nAlso I refer to all of NixOS and Nix (the package manager) and Nixlang and Nixpkgs using the word \'nix\'. This means that when I say nix you don\'t quite know what I\'m talking about. My apologies if this gets confusing.'),(1022,'1980-01-01 00:00:00',5,'en','105641352','A2','A3','male','','Y','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','At some point I just stumbled over the NixOS project and Eelco\'s thesis, in my year-long survey of operating system paradigms and tools/concepts for managing software complexity. It felt like the obviously correct and superior approach to package and system management. Once I found time, I set up a spare machine to be fully reproducible from scratch based on one USB stick with secrets and one shell command, just to prove my assumption correct that it should be possible with Nix. Since then it is my daily driver in all aspects of computing.','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','declarative and reproducible systems and user environments','highly available collection of almost all the open source software in existence','software that I build with Nix underneath will still work when I come back a year later','- remove all the flakes; this is another python2/3 disaster in the making\r\n- remove all references to imperative/impure interaction with Nix (NIX_PATH, nix-env, <.> expressions); it misleads people into wrong assumptions and unsustainable practices\r\n- create a consistent narrative in the documentation\r\n- provide a way to interact with evaluated state, such as an incremental compiler','actually I may have given up on Linux or computers entirely. or maybe use Jupyter and the Apple App Store for private tinkering, and self-contained language ecosystems such as Go for professional programming.','','','','','','','','','','','','','','','pip2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','NixOS sounded like an obviously correct and superior way to manage a system, and make it reproducible. Also obviously better than containers for creating runtime environments. I had Gentoo on personal servers before that and it turned out to be practically not upgradeable. I worked with Debian/Ubuntu for a while, but it was always a hack: highly limited availability and interoperability of software packages, flaky configuration of edge cases full of workarounds that had to be somehow memorized or given up on. When I started with NixOS, something that worked once would work forever on every system using that configuration (finally portable!), and upgrades would be deliberate, with incremental changes in the (unavoidable) workarounds.\r\n\r\nNixOS killer feature is that it really is a Linux distribution development toolkit (modulo some hard-coded assumptions).','Y','','Y','','','','','Build your own Linux distribution','Linux hacks: write once, use everywhere, forever*\r\n\r\n*at least until next major upgrade','Remote deployment','- make it the fully general Linux distro factory it could be\r\n- make remote deployment (with secrets management) a no-brainer\r\n- graphical system configuration at runtime, with version control','macOS, and cry on every new release','Y','Y','','','','','','','Y','','xmonad','home-manager, nix-darwin, nixos-hardware','','Nix/OS is the next seminal paradigm shift in computing after GNU/Linux and distributed version control (git). This is just the beginning. Please use your responsibility wisely and think of future generations.'),(1023,NULL,1,'en','2037303945','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','Read the original paper and was very impressed.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','complete and reproducable build description','transparency','rollbacks','some redhat-like org that could cover enough ass for use in med/big corp\r\n\r\nadd security team\r\n\r\nadd static types and checker\r\n\r\nadd more repl-visible docs\r\n\r\nrework nix pills into manual\r\n\r\nmaybe change syntax to lisp, incl. macros','guix','','','','','Y','','','','','','','','','','cabal2nix','Y','Y','Y','','Y',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1024,'1980-01-01 00:00:00',5,'en','986123915','A5','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Technically I started 10+ years ago, but it was awful. I\'ve recently gotten back into it and I feel like the experience is a lot better (though, documentation and the ecosystem could still be improved). I just like the idea of reproducible builds and how nix works. A big factor in me getting back into it is wanting to manage a number of machines declaratively... I have to many computers, and it\'s annoying to manage them all.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','Declarative configuration / management','Reproducible builds','Hopefully a better dev environment with different versions of things','Tooling would be a lot better. I still don\'t actually know how to search for packages on the command line well (especially with flakes?).\r\n\r\nAlso error messages in the nix language could be improved.\r\n\r\nI kind of want incremental builds too. Like ccache but with nix and better.\r\n\r\nI think the documentation is... Kind of okay, and kind of not? I think the information is there, but getting to what\'s important and what people care about is slow and painful. For instance the nix pills are really good, but there\'s a lot of them and they move at a pretty slow pace. Having a summary / cheatsheet might help people get the gist of how nix works faster, and then they can dive into the more in-depth manuals if need be?','For package management? I guess I really like gentoo ebuilds. In general I have suffered with language-specific package management, but I\'m hoping to reap benefits from nix.','','','','Y','Y','','','','','','','','','','cabal2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Hoping to make it my main driver, but currently using it for a server.','A1','','','','Y','','','','','Declarative configuration','','','Managing secrets?','Gentoo','Y','','','','','','','','','','xmonad','','',''),(1025,NULL,1,'en','522577342','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','','','','','Y','','','','','','','','Y','Y','','Y','','Declarative Package Management','Centralized Configuration','','Documentation! The getting started flow is excellent, however, more complex patterns are less so. I often found myself reading through several of the community wiki pages to learn what idiomatic nix looks like before I was really comfortable using nix.','Old fashioned manual config files and pacman :P','','','','Y','','','','','','','','','','','','Y','','','','N','Still learning the tool/language.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I recently got a new SSD and wanted to reinstall linux on it. Instead of following a standard Arch install, I decided to try NixOS.','Y','','','','','','','','','','','','','','','','','','','','','','None','Home-Manager','',''),(1026,'1980-01-01 00:00:00',5,'en','994046476','A2','A3','male','','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','','Y','Y','','','','','Y','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','yarn2nix','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','Declarative OS management','','','Fix the rough edges when starting with NixOS. E.g. getting svg icons working (install librsvg), get gtk and qt themes working, setting environment variables correctly when using fish, etc., etc.. There’s loads of things everyone has in their configs to fix these, it’s just hard when one gets started.','Saltstack','Y','','','Y','','','','','','','Sway','home-manager','','Thanks! 😊'),(1027,'1980-01-01 00:00:00',5,'en','164611041','A2','A4','male','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Because it comes from the future. Used Debian SID for 10 years, after that Arch Linux for about 2 years. Grew tired of it and wanted to play with. sth. different. Also transitioned to Infrastructure as Code in my working space and saw the light: Declarative OS it is.','','Y','','','','','Y','Y','','Y','','','','','Y','','Y','Y','','Declarative system config (shared among multiple machines)','nix-shell (use it a lot to setup dev environments for different projects/languages)','easy way to build docker container','- change: Replace nix with a more common language (e.g. lisp)\r\n- add: snap packages support as an escape hedge','- docker\r\n- ansible','','','','Y','Y','','','','Y','','Y','','','','https://github.com/nix-community/poetry2nix','Y','Y','','','N','- Time restrictions\r\n- So far all packages I need are already available','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','Y','','','','','','','','','','','','','','','','Y','','','swaywm','','nixops',''),(1028,'1980-01-01 00:00:00',5,'en','1520687531','A3','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','Y','','N','Y',NULL,'I tried to set NixOS on my new laptop, but it has a wifi card that requires kernel > 5.12. When I tried recently to install, the image had kernel 5.10. I did not had access to wired ethernet.\r\n\r\nAlso, at work, we have a hard lock-in to Canonical stuff. The only way to run all those things is with their snaps. That is a constant cause of problems for us and NixOS would be heaven, but we still do not know how to run all of that outside snap. And we asked many times for docs :shrug:','Time. I really want to give it another try.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I have a thing for docs. My suggestion: have a wiki that people can write detailed instructions for packages, and have that wiki page linked automagically in each package entry https://search.nixos.org/ \r\n\r\nHaving a way to find out more details and gotchas about each package would be awesome.'),(1029,'1980-01-01 00:00:00',5,'en','1290666251','A1','A3','male','','','','','','','Y','Y','Y','','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I tried out NixOS a few years ago, and then discovered `lorri` and `nix-darwin`, so I could use Nix for all my personal projects.','Y','Y','','','Y','','Y','Y','Y','','','Y','','','Y','Y','','Y','','Declarative dependency management (through nixpkgs)','nix-shell and nix-direnv','Reproducible and isolated builds using the nix store','- Make flakes official!\r\n- Clearly document which parts of nix are language builtins, and which are from nixpkgs','I used to put all my software in \"small\" Docker containers and try to expose only the data that changed.','','','','Y','Y','','Y','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I tried it out for fun one day when I ran into issues with graphical tools on Nix with Ubuntu. After dual-booting for a while, I found that I no longer needed the Ubuntu installation, and switched to NixOS full time.','Y','','Y','','','Y','','Version-controllable declarative system configuration and rollbacks','Stable configuration base (with stable releases)','Nix built-in','A nicer way to spin up FHSUserEnv or run non-Nix-aware software that doesn\'t require intimate knowledge of Nix, perhaps?','I\'d either use Nix on Linux, or I\'d go back to Arch Linux or Debian.','Y','','','','','','','','','','i3, bspwm, tty','I use cachix with Github Actions for sharing personal packages.','','Thanks to all the nixpkgs and nixos maintainers!'),(1030,'1980-01-01 00:00:00',5,'en','387157067','A5','','male','','','Y','','','Y','Y','Y','','Y','Y','','','Y','','','','Y','','','','Y','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','Y','','','','A1','We were using apt and ansible for developer machine tool management. It was a nightmare. nix solved the problems well with a simple: nix-env -f -i\r\n\r\nWe\'ve been experimenting with it for our build environment with a nix-shell (prob using nix-dir-env). This has been more slow going. We have some complicated dependencies.','Y','Y','','','','','Y','','','','','','','Y','Y','','','','','nix-env','nixpkgs','nix-shell','Add documentation','apt, ansible, and bazel','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,'N','N','My company is a federally regulated entity. We need companies like Canonical or RedHat to point fingers at if things go wrong. Honestly, we need a more reliable ecosystem of sponsoring and consulting companies that officially support NixOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Flakes. I tried it, and it was kinda tricky for me to figure out. I imagine I could figure it out, but the documentation and stuff isn\'t really there.',''),(1031,NULL,-1,'en','2059430261','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1032,NULL,3,'en','1509795106','A5','A4','male','','','Y','Y','','Y','Y','Y','Y','Y','Y','','Y','Y','','Y','Y','Y','','Y','','Y','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'ve spent _thousands_ of hours getting lightly-patched open source packages to build + run on various \"unsupported\" hosts in the last ~20 years. Nix is the first tool I\'ve worked with that lets you solve that problem once and then reuse the result anywhere Nix is available.','Y','Y','','Y','Y','','Y','Y','Y','','','Y','','','Y','','Y','Y','','Portable build definitions','First-class dev shells (_so_ much nicer than building everything in a random Docker container)','Configuration','Type declarations. `mkOption` et. al. are okay for NixOS + Nixpkgs core stuff, but a pretty nasty/steep climb for doing standalone development.','In all likelihood, continue with a bunch of Python scripts and Makefiles like I did for 20+ years before I started using Nix.','','','','Y','Y','','Y','','','','','','','','None. They\'ve all fallen over hard when I start trying them out with a non-trivial project (mix of Github and private sources, managing recursive dependency sets, etc.)','Y','Y','','','N','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I came for Nixops but never really got around to that part. Might go back that way now that I\'m finally somewhat comfortable with \"standard\" NixOS administration.','Y','Y','Y','Y','','Y','','Global configuration w/o remembering 30+ different individual config formats','Declarative VMs and containers','Hardware detection and kernel defaults are both quite good! I have fewer issues running NixOS on my machines -- incl. laptops -- than I do with literally any other distro. (I\'ve tried at least 30 of them and counting.)','','Arch (for source code/recent packages) or Debian/Ubuntu (because big, popular OSS packages more or less assume Linux == Debian-alike)','','','','','','Y','','','Y','','',NULL,NULL,NULL),(1033,'1980-01-01 00:00:00',5,'en','1588329234','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I am developing quantum chemistry simulation software. The quantum chemistry ecosystem is a wild mix of Fortran, Python, C++ and usually with pretty wild custom build systems. Often it\'s hard to install a package at all, and unfortunately many packages require extreme care with respect to compiler flags and dependencies to get numerically correct results. My own software is mainly written in Haskell and has a huge dependency graph. Nix provides integration of all this languages and ensures that is actually usable by someone else.','','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Reproducible builds','Mutli-Language build system','Container building','I would like to have the ability to have a second mode, which allows data management instead of software management without the sandbox and outside of the store. Basically having simulations/data depending on each other and having their outputs stored in a content addressable storage.','Guix probably. Or going down athe entire rabbit hole and learn cmake 😬','','','','Y','Y','','Y','','Y','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Formerly I used Debian extensively. However, managing configuration on multiple machines (work, personal, laptops, server) and a scientific cluster is tedious without declarative tools. Also, while loving how robust Debian is, I found nixos surprisingly stable while much more up to date. And it\'s so much easier to contribute packages. ','Y','Y','Y','Y','','Y','','Consistent configurations on different machines','Good ZFS support','Rollbacks','It would be so neat to have a BSD based NixOS','Debian or OpenSuse','Y','Y','','','','','','Y','Y','','','Niv\r\nHaskell.nix overlay','Flakes. Thir ergonomy is terrible right now\r\n\r\n',''),(1034,'1980-01-01 00:00:00',5,'en','1681257103','A5','A3','male','','Y','','','Y','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','I wanted to switch from my half decade old Arch Linux to NixOS because the idea of \"reconstructable OS from configuration\" appealed to me.','','Y','','','','','Y','','','','','','','','Y','','','Y','','packages','interactive shell','flakes','Add CUDA/MKL/GTK/... enabled builds for pytorch/tensorflow/opencv to NixOS binary cache so that they don\'t need to be rebuilt from scratch for an entire day\'s worth of compilation every time there\'s an update.\r\n\r\nAdd easier way to work with existing binary software... nix-alien seems to work nicely so far, but something more built in would be nice...','Arch Linux (OS)','','','','','Y','','','','','','','','','','https://github.com/nix-community/poetry2nix','Y','','','I just define my custom packages in separate files and import them because that seemed the easiest way and doesn\'t involve forking a massive repo.','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','main PC: browsing, watching videos, ...','A2','Originally Arch Linux user of 5 years. Liked the idea of an OS that could be rebuilt via a configuration file.','Y','','','','','','','built from configuration','nixpkgs (unfortunately missing less popular or recent packages compared to AUR, but still better than some other distros)','','Add CUDA/MKL/GTK/... enabled builds for pytorch/tensorflow/opencv to NixOS binary cache so that they don\'t need to be rebuilt from scratch for an entire day\'s worth of compilation every time there\'s an update.\r\n\r\nAdd easier way to work with existing binary software... nix-alien seems to work nicely so far, but something more built in would be nice...\r\nAdd /bin/bash symlink so 99% of scripts don\'t break. I use https://github.com/balsoft/nixos-fhs-compat to get around this and also symlink other binaries to /usr/bin.\r\nAdd symlinks for /usr/lib and so on so that binary packages run and so we can build software easily.\r\nOf course, these can be turned off when building packages in isolation for nixpkgs to ensure reproducibility.\r\n\r\nAdd support for pip install --user. It\'s not clear why python mutable packages can\'t just install to $HOME/.local/share/...\r\nAdd support for ALL python packages so that I don\'t have to package each one individually. I have dozens of custom python packages which weren\'t in nixpkgs! Dozens! I had to do similar for system-wide Arch python packages via PKGBUILDs, but at least I could either install via pip install --user or automate the PKGBUILD process via pypi2pkgbuild or pip2pkgbuild. Also, the AUR more often than not had python-* packages anyways.','Arch Linux.','Y','','','','','','','','','','i3','','',''),(1035,'1980-01-01 00:00:00',5,'en','1168882138','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Friends used it for a year and said it does all the things we did before, but better','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','reproducibility','sharing environment for development','building containers','','shell scripts, maybe ansible','','','Y','Y','','','','','','Y','','','','','poetry2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','friends used it before and said it does all the things, but better. i followed','Y','Y','Y','','','','','exact same configuration on CI/CD and Dev machine','sharing configuration between systems','CI/CD via configuration files','','debian for work, arch for home','Y','','','','','','nix-copy-closure + nix-env ','','','','awesomewm','','hydra','keep on rocking!'),(1036,NULL,2,'en','2025192032','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','Key industry leaders were speaking of it.','','Y','','','Y','','Y','Y','Y','','Y','','','Y','','','Y','Y','','Inmmutable changes that can be rolled back','Container optimisation features','Scriptability','A more stable vagrant setup, with pre canned roles to provide folks with a like for like example against the likes of ansible/puppet/chef/salt or any other provisioner.\r\n\r\nMore out of the box configs that are maintained by vendors. E.g. spring, Apache, ...','Ansible','','','','Y','Y','','Y','','Y','','','','','','','Y','Y','','','N','Time and experience',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1037,NULL,2,'en','2064801976','A2','A2','male','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','','Y','Y','','','','Y','','Y','','','Y','Y','Y','Y','Y','','','','','','','','','','','Y','','Y','','Y','Y','','','','','','','Y','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1038,NULL,1,'en','1857596221','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Warehouse associate','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1039,'1980-01-01 00:00:00',5,'en','1149886940','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','curiosity','','Y','','','','','Y','','','','','Y','','','Y','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','Y','','','','','','','','','Y','','','','','','','','','','i3','','',''),(1040,'1980-01-01 00:00:00',5,'en','1810085492','A2','A3','fem','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I saw nixos website from reddit and I was really curious to try it out.\r\n\r\nThe package manager and the central configuration with a real language integrated in the os hyped me af.\r\n\r\nI am working on it daily to work to try its potential as a desktop for now. I plan to make a full case study to submit to my company.','','Y','','','','In a VM for now','Y','','Y','','','','','Y','Y','Y','','Y','','Declarative configuration for package management and os configuration (in the case of nixos)','Shells for managing dev environment.','Build reproductibility','Maybe a simpler way to pin packages to a specific version (i\'m still learning, I may have not figured it out yet)\r\n\r\nOtherwise, an easy way to install package not in nix package manager.','I tried to use ansible in the past to pass os configuration from one machine to another (on a desktop level, it\'s impossible).','','','','','','','','','','','','','','','','','','','','N','Still learning for now, I didn\'t tried to package anything yet.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I wanted to try for the configuration management that is awesome.\r\n\r\nI\'m sick of ansible and external tools. I really think that centralised configuration and package management integrated in the os is the future.','Y','','Y','','','','','Configuration','Package manager','Easy rollback','Simpler way to install non-nix packages\r\n\r\nBetter documentation','I guess ansible on another distro, or Guix ?','Y','','','','','','','','Y','','i3wm','','',''),(1041,'1980-01-01 00:00:00',5,'en','1598075092','A2','A2','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','NixOS about 2 days ago on my main desktop, and a few months ago on my MacBook, but I\'ve barely used my MacBook at all for about as long.','Y','','','','','','Y','','','','','','','Y','Y','','','Y','','','','','','Probably Arch','','','','','Y','home-manager','','','','','','','','','None at the moment, but I\'ll be looking into gradle2mix and elm2nix in the future','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','About 2 days ago','Y','','','','','','','','','','','','Y','','','','','','','','','Y','I want to switch to Hikari or Sway','','',''),(1042,NULL,1,'en','982490231','A2','A3','male','','','','','','','','','','Y','','','','','','','','Y','','','','','','','','Y','Y','','','','Chrome OS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1043,'1980-01-01 00:00:00',5,'en','1634878105','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','laborer','','','','Y','','android','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I came across the name, looked it up, liked the sound of it, and after a couple months of research installed it on my laptop.','','','','','','','Y','','Y','','','','personal computer, and home theatre system','','','','','Y','','Declarative system management','Atomic updates','Basic linux functionality','Gui for user environment package management. Certain packages, like java, dont seem to be recognized by other packages that depend on them (like some minecraft launchers). certain packages, like Etcher, don\'t seem to work at all.','I have used ubuntu forever, but i was feeling the itch for more technical control when i switched. If not nix, i would have been trying Arch or the others until i found something good enough (or gave up)','','','','','','','','','','','','','','','','','','','','N','Have to learn how first. I fiddled with it some, but i haven\'t had time.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Heard about it, tried it, liked it.','','','Y','','','','laptop, home theatre','Declarative configuration','Atomic updates','','User package gui, smoothing out rough spots with package compatibility','probably arch','Y','','','','','','','','Y','','','','','Nix\'s way of doing things will be the future, it boggles the mind it took as long as it did for someone to try it your way, and it surpises me that the nix package manager hasn\'t been more widely adopted.'),(1044,'1980-01-01 00:00:00',5,'en','540110602','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','Merge requests','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started using Linux on a VPS with a single instance. As I was already used to from the Desktop, I chose Arch, mainly because of the fresh packages. Over the time, the system became more and more cluttered with setting up services and over time forgetting which configuration I changed to what. Because I recently discovered it, I read into Ansible and started to write playbooks for using together with systemd-nspawn. This initially gave me the flexibility to move those containers around when the inevitable second instance came around, but had some flaws like needing to store lots of system files over and over and making sure their configuration stays consistent, for example Redis on Arch had its configuration in /etc/redis.conf but at some point switched to /etc/redis/redis.conf which broke some services. So far, Nix has shown to be very consistent with minimal changes being needed over time. ','','','Y','Y','','','','','','','+ Consistent UIDs for services (for example nextcloud should by default get UID X, some other service Y. Right now it seems to be dependent on the order of activation) \r\n+ Being able to do imports after checking for the hostname\r\n+ Better documentation outside of reading someone else\'s code\r\n+ automatically have the latest version of every software, also more packages and options\r\n+ some easy and elegant way to manage keyfiles','','Y','','','','','','','','','','i3','','','You rock, keep up the good work! '),(1045,NULL,1,'en','1132310193','A5','A4','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1046,NULL,NULL,'en','1716525555',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1047,'1980-01-01 00:00:00',5,'en','1706310908','A2','A4','male','','','','Y','','Y','Y','','','','Y','','','','','Y','Y','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Mainly wanted an operating system I could reason about. A simpler, principled way to configure an operating system. Better, more composable dev environments than docker.','','Y','','Y','Y','','Y','Y','Y','','','Y','','','Y','Y','Y','Y','','Programmability','Reproducibility','','Improve UI and documentation.\r\nStabilize UI.\r\nStandardize packages in nixpkgs.\r\n\r\n','Docker','','','','Y','Y','','','','','','Y','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as described before','Y','','Y','','','Y','','Programmability','Reproducibility','Ability to version control easily','Deeper integration with subsystems to make the UI more homogeneous','Ubuntu','','','','','','','','','','','I3wm','https://lazamar.co.uk/nix-versions/','','Put more resources towards stabilizing and documenting the nix UI asap.\r\nImprove error messages in command line and language.\r\nImprove language tooling.\r\nThe current state of things makes it very hard for me to recommend nix widely.\r\n'),(1048,NULL,1,'en','1441062758','A1','A3','-oth-','','','','','','','Y','','','','Y','','','','','','Y','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1049,'1980-01-01 00:00:00',5,'en','104792017','A6','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got to know about it when I was looking into installing haskell ide engine. Thought it was interesting so researched more about it. Eventually decided to give nix package manager a shot on mac. Then I went ahead and installed nixos on the PC that I built, this PC is the main machine I develop on.','Y','','','','','','Y','','','','','','','','Y','','','Y','','Declarative configuration of my system','Same configuration (more or less) works on NixOS and MacOS','Isolated development environments (nix-shell + direnv)','add \r\n- make nix a fully-fledged language with a solid community\r\n- add static types to it (IMO types help me understand the code much easily)\r\n\r\nremove\r\n- all the bash stuff and replace it with a statically typed language','MacOS','','','','','Y','','','','','','','','','','cabal2nix\r\npoetry2nix\r\ncargo2nix','Y','Y','','','N','Tried to give a PR once (adding a very small package), it saw no activity for ages (1 year or so). Lost interest afterwards.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Was looking into installing HIE (haskell IDE engine), was introduced to nix. Liked the philosophy behind it. Eventually decided to give it a shot with nix package manager on mac. Then I was making a PC for work and some casual gaming, decided to install NixOS on it. ','Y','','','','','','','Declarative configuration','The same configuration can be used across NixOS and MacOS','Isolated dev environments (nix-shell + direnv)','change\r\n- nix language to have static types\r\n- nix language to have a proper standard library\r\n\r\nremove\r\n- all the bash stuff from nix pakages\r\n','MacOS for most work and windows for gaming','','','','','','','not applicable','','','','Xmonad','home-manager, rnix (this requires improvement), nix-shell + direnv + nix-direnv,','-','I love the nix philosophy.'),(1050,'1980-01-01 00:00:00',5,'en','1445186340','A2','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','First contact at a meetup, then full time requirement for work.','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Pinning inputs','Reproducability','Somewhat sane configuration language','Add better docs\r\nAdd proper diff between derivations\r\nSpeedup nix\r\n','Ansible','','','','Y','Y','','','','Y','','','','','','https://github.com/nix-community/bundix\r\nhttps://github.com/nix-community/npmlock2nix\r\nhttps://github.com/nix-community/poetry2nix','Y','Y','','','N','Didn\'t find the time, didn\'t have the right scope of project to contribute. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','','Pinning of inputs','Reproducability','Shared configs','Better docs\r\nDiff between derivations\r\nRemove nix-env','Arch on Dev machine, Debian on servers','Y','','Y','Y','','','','Y','','','i3, sway','Agenix','','Thank you for your efforts. You rule :)'),(1051,NULL,1,'en','349781271','A3','A2','-oth-','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1052,'1980-01-01 00:00:00',5,'en','255194382','A3','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','Y','','','Y','','Y','','','','','','Y','','','Y','','Easy software installation','Easy software modification','Easy software distribution','','dnf, pipx, flatpak','','Y','','Y','Y','','','','','','','','','','poetry2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Desktop','A3','','Y','','Y','','','','','Declarative/programmable configuration system','Resilience','Easy to setup services','','Fedora','Y','','','','','','','','','','sway','home-manager, nixos-hardware, nixos-generators, nix-environments, lorri','nixops',''),(1053,'1980-01-01 00:00:00',5,'en','1381423536','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','','Y','','','','','Y','Y','','','Y','','','','','','','','','','Y','Y','','','','','Y','Y','','Y','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','Sway','','',''),(1054,'1980-01-01 00:00:00',5,'en','1396697839','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Users on sites like lobste.rs made very strong arguments for adopting Nix. I was already using docker out of frustration with python and nodejs dependency-hell. Nix is a natural progression for me. I use both Nix and docker.','','Y','','','Y','','Y','','','','','','','','','Y','Y','','','Reproducibilty','Ease if installing software','Future disruptive use cases','Better documentation or change in configuration language.','guix','','','','','','','','','','','','','','','','','','','','N','Nix language learning curve','N','N','Nix Lang: the idea of patching binaries or packages that aren’t in nixpkgs is daunting',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Keep it up!'),(1055,'1980-01-01 00:00:00',5,'en','979176949','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','Musician','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Functional programming is better than imperative - and sadly, UNIX is imperative. Any step towards immutability is a win, and desired by me. ','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative systems management','Declarative systems management is the most important','Declarative systems management is the most important','Add simple LUKS and partitioning - I am using Ubuntu on my laptop for this reason - can\'t get it right on NixOS. Maybe I\'m too much of a n00b :(. \r\n\r\nRemove the imperative stuff, make it 100% declarative. Love Nix! ','I\'d try to use Docker to be able to have declarative everything, but it\'d be awful. ','','','','','','','','','','','','','','','','','','','','N','Haven\'t had the need to','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I am too tired of having \"dirty\" states on my Linux machines, and the declarative nature of NixOS solves this. ','Y','','Y','','','','','Declarative','','','Some tutorial or easy way to setup partitions and LUKS on a laptop. I can\'t get it to work, and am sadly using Ubuntu with Nix package manager. ','','Y','','','','','','','Y','','','','','',''),(1056,'1980-01-01 00:00:00',5,'en','1020874823','A5','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted a package manager that would release me from cabal hell.','','Y','','','','','Y','','','','Y','','','Y','Y','','','Y','','A large repository of packages (nixpkgs)','Declarative package management','nix-shell, being able to quickly set up an environment with exactly what I need','Currently nix-env is broken for me and people on IRC told me it\'s basically deprecated and I need to learn about nix flakes... Also nix-env uses way too much memory when doing anything, and the command line options are obscure and hard to learn. The documentation also needs work. The \"options search\" on nixos.org is great, but now it\'s hidden in the footer?! (Who thought that was a great idea?)','Not sure. Void, Fedora? (I\'d say Guix, but Guix wouldn\'t exist if Nix didn\'t.)','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same as Nix...','Y','','','','Y','','Personal laptop','','','','','','Y','','','','','','','','','Y','xmonad','','',''),(1057,'1980-01-01 00:00:00',5,'en','1174905768','A1','A4','male','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','To have reproducibility for our toolchain, and have the guarantee that our build system will run the same across machines, wether they are developer workstations, on prem servers or cloud infrastructure.','','Y','','','Y','','Y','Y','','Y','','','','','Y','','Y','','','Reproducible environments','Extensive package collection ','Versatility ','Make the Nix language cleaner/more accessible, and allow Nix to replace Make.','I would use Guix, or if that didn\'t exist I would compile dependencies from source, and rely for distribution for base packages and libs.','','','','Y','','','','','','','Y','','','','','','','','','N','No use case for that','N','N','If I wanted to work with VM or servers, but I work at the container level.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The docker image production tool.','None','Keep on working on this great project!'),(1058,'1980-01-01 00:00:00',5,'en','1126102418','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','Y','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(1059,'1980-01-01 00:00:00',5,'en','303384301','A5','A4','male','','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','cabal2nix','Y','','','','N','I don\'t have a nixpkgs branch checked out and I don\'t know the process for contributing.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','','','','','','Y','','','','','','','','','','xmonad','','',''),(1060,NULL,1,'en','1953984124','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1061,NULL,1,'en','1071254577','A1','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1062,'1980-01-01 00:00:00',5,'en','470679796','A5','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','','Y','','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(1063,'1980-01-01 00:00:00',5,'en','1689110991','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I\'ve learned of Nix & NixOS a long time ago and right away I wanted to give it a try. Unfortunately, time is scarce and there was always something else getting in the way. Finally, at my new company we use Nix to setup reproducible environments for everyone and I finally got to try it. Now I use it not only for work, but I started using it for University, and now I\'m learning more so I can build my own projects with it.','','Y','','','','','','','Y','','','','','Y','Y','Y','','','','Peace of mind','Ease of installation','Reproducibility','','Good old APT, Cargo, chicken-install, etc','','','','','','','','','Y','','','','','','','','','','','N','I still don\'t know enough. I\'m just now in the process of learning how to write my own derivations to build projects.','N','N','Reproducible system configuration, of course! I\'m just waiting for the time I know enough to be able to confidently make the switch.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1064,NULL,1,'en','1889733503','A5','A3','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1065,'1980-01-01 00:00:00',5,'en','1080864008','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted to write a script for my old Void system which would automatically install and configure my system. While researching ways to do it, I came across Nix and NixOS\'s ability do to just what I wanted. I have in instantly and never looked back.','','','','','','','','','Y','','','','','','Y','Y','','Y','','Immutability','Declarative nature','Flakes :)','Improve the fetching mechanism, like the number of parallel fetches and smarter lookup (maybe provide a list of available NARs as a top-level NARInfo file, though I\'m still questioning the security of that).','Probably xpbs or pacman still.','','Y','Y','Y','Y','','','','','','','','','','dream2nix, yarn2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Same as the Nix story.','','','Y','','','','','Declarative nature','Easy testing of configs','Fast setup','Automatic inputs passing to _module.args.','Probably Void or Arch.','Y','','','','','','','Y','','','Also sway for gaming and testing wayfire.','Home manager. ','Flake-utils-plus. It\'s great at what it does but there\'s too much abstraction for my taste.\r\nKind of same story with flake-utils, but I still use it in some devshells.','Great work bringing Nix to its current state! Seeing more and more companies adopt it brings me hope that I can one day work full-time using Nix.'),(1066,NULL,2,'en','1907003576','A5','A2','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I\'m a web developer by day and a university student by night, so my development workflow involves jumping between several competing interpreters/compilers/tools when working on different projects or services. Most tools to manage multiple conflicting PHP versions, for example, are incredibly clunky and end up causing more trouble than giving up and doing things in super quick \'n\' dirty or inefficient ways (like running a separate Docker container for each tool). At work this has led to serious configuration drift, where everyone on my team has their own unique little workarounds and nobody can actually help a new dev get an environment set up because of how bespoke everyone\'s package management solutions are.\r\n\r\nI discovered Nix when I heard it advertised as a solution to these exact problems. I first started using it as a way to run one-off commands with `nix-shell` for packages I couldn\'t (or didn\'t care to) install, but then dipped my toe into using it more for dev environments and package management. This has worked out wonderfully, and I\'ve even started using NixOS on my personal desktop and homelab to make sure all the machines I depend on are reproducible with declarative configuration.','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducible/isolated package management - no more glibc linker errors!','Declarative configuration - having everything in /etc/nixos/configuration.nix rather than a million different config files spread across the root partition is immensely useful','The Nix Language - far more powerful than anything bolted on to YAML/JSON','The ecosystem\'s movement towards flakes and the experimental nix command is (in my opinion) a big step forward, but has definitely fractured the community a la Python 2/3. There\'s now Two Ways to do everything and despite most people on r/nixos or in the general community encouraging people to switch to flakes, most of the documentation for Nix I see only mentions the older `nix-shell` and `nix-build` commands with no mention of flakes whatsoever.\r\n\r\nIt would also be nice to make nixpkgs.lib an actual documented standard library for the language. It\'s always annoying to find some function performing some pretty core functionality to the language (mkIf for example), but not be able to find it documented anywhere other than the nixpkgs source - good luck getting any Google results for most of them, either. This would also be handy if you want to make a flake that\'s not dependent on nixpkgs, but still want all the handy lib functions.\r\n\r\nFinally, static typing in the Nix language would be pretty tight. But that would have to be a pretty big magic wand. ','Before Nix, I used Arch Linux and its built-in package management via the AUR/pacman. That worked out well enough for just installing/upgrading packages and didn\'t break as often as people like to joke about, but I would still dearly miss all the features that Nix has spoiled me with.','','','','Y','Y','','','','','','','','','','','','Y','','','N','Someone else always manages to beat me to it! Most software I\'m experienced enough with to try packaging is already in Nixpkgs, and anytime there\'s an update someone gets a PR merged within a day or two.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1067,'1980-01-01 00:00:00',5,'en','817785519','A5','A4','-oth-','','','','','','Y','','','','','','Y','Y','','','','','Y','','','','','','','','Y','Y','Y','Y','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1068,NULL,NULL,'en','1493820784',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1069,'1980-01-01 00:00:00',5,'en','1151870939','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Accidentally stumbled upon NixOS when searching for Gentoo content. It was a long time ago.','','','','Y','','','Y','','Y','','Y','','','','Y','Y','','Y','','Flakes','Reproducible environments down to last bit thanks to fixed-output derivations','Overlays','I wish Nix had more APIs to integrate its system into whatever I want, like Hydra does with Perl','Docker and a lot of pain. Eventually I might\'ve tried to reinvent Nix on my own, but far less detailed.','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','For fun','A3','Ah, finally, an operating system that can be reinstalled without spending MONTHS restoring configs.','Y','','Y','','','Y','Personal laptop','Reproducible configuration','Module system that allows to share reusable snippets','The ability to directly compare systems to each other with nix-repl (used several times in my PRs to nixpkgs to prove that some changes are backwards compatible)','Not much comes to mind right now.','Gentoo. I use patched software on my systems and only Gentoo would allow me to mix-and-match software that skillfully, and even then it would need some patches to Portage.','Y','','','','','','','','','','sway','naersk','NixOps - too clunky and treats machines like pets instead of cattle','NixOS is awesome and I\'m glad to be a contributor to this. Thank y\'all for existing'),(1070,'1980-01-01 00:00:00',5,'en','1222954893','A3','A4','male','','','','','','','Y','','','Y','Y','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Tired of Debian unstability on updates','Y','Y','','','','','Y','','Y','','','','','Y','','','','Y','','','','','','APT','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Tired of Debian updates unstability','Y','','Y','','','','','','','','','','Y','','','','','','','','','','No DE','','',''),(1071,NULL,NULL,'en','701773234',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1072,'1980-01-01 00:00:00',5,'en','1769620011','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I heard about nix from the Haskell community, and I like declarative, deterministic build systems.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','cross-language dependency management','reproduceable builds','easy rollbacks','I dunno, maybe more integration with dhall?','Probably some horrible containerization. I barely know docker.','','','','','Y','','','','','','Y','','','','cabal2nix, yarn2nix','','Y','','','N','At this point, I almost never encounter software I want to use that\'s not already in nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Because I liked the idea of a distro built on nix','Y','','','','','','','','','','','','Y','','','','','','','','','','xmonad','cachix','',''),(1073,'1980-01-01 00:00:00',5,'en','1573287922','A5','A5','male','','','Y','Y','','','Y','','','','Y','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','As a strategy for reproducible build / runtime environments for a bunch of legacy apps, running on a set of similar but different Linux distros & versions.','','Y','','','','','Y','','','Y','','','','','Y','','','Y','','reproducible runtime environments, in general','NixOS as a daily-driver dev platform','playground for CI/CD, containerization of apps','Make flakes non-experimental already!\r\n\r\nMore consistent / uniform support for \"2nix\" tools and build environments. Moving from one language to another is a jarring experience.','don\'t know','','','','Y','Y','','','','Y','','','','','','mach-nix \r\nopam2nix \r\n','','Y','','','N','I tried once... it got bogged down in a bit of red tape, and I never went back. (https://github.com/NixOS/nixpkgs/pull/134605). Mostly I just got busy on other projects though, I\'m not blaming any of the maintainers.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted a dev machine that was (1) easy to keep up-to-date, and (2) let me have usable environments for both legacy & new app development. Moved from Arch, which met first need, but not second one.','Y','','','','','','','reproducible build and runtime environments.','','','flakes everywhere. let\'s move on past experimental already!','Arch Linux, probably','Y','','','','','','','','Y','','','','hydra -- it\'s very nice, but I wanted something with good Gitlab CI integration, so I am using gitlab-runner instead.','you are awesome! thank you for Nixpkgs & NixOS!'),(1074,NULL,1,'en','2066742468','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1075,'1980-01-01 00:00:00',5,'en','1154515067','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Nerd','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','People on Twitter thought it was neat.','Y','','','','','','Y','','Y','','','','','','Y','','','Y','','Single configuration site','Rollbacks','Avoiding dependency hell','Better documentation for writing packages','Brew on macs. Arch elsewhere, with a pile of bash scripts to deploy. ','','','','','','','','','','','','','','','','Y','','','','N','The documentation for writing packages makes me unsure of what I’ve written is good enough.\r\n','Y',NULL,NULL,NULL,NULL,'A2','','Y','','Home Server','A3','I tried it on macos and it seemed cool, but packages available were limiting. I have a knack for destroying linux installs on my desktop. ','Y','','Y','','','','','Stability','Rollbacks','Single point of configuration for services','A lot of home-manager should be integrated. The nix language is needlessly weird.\r\nFlakes needs to be better documented as it’s mentioned _everywhere_ if you look for help online. ','Arch on the desktop since it’s basically for tinkering. \r\n\r\nI’ve used Debian stable before as a home server because it’s typically solid. ','Y','','','','','','','','Y','','','Home-manager\r\n\r\nI’ve tried to use Darwin-nix but it’s a bit broken. ','I stopped using it on macos until recently because of the lack of packages. ','Nix is clearly a great idea, but it’s rough around the edges and has been for years. I almost expect someone to come in and eat your lunch. '),(1076,'1980-01-01 00:00:00',5,'en','1475511756','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I wanted a reproducible dev environment.','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','declarative configuration ','nixpkgs','reproducibility ','add features from Flox (in particular, shared store/profiles)\r\n\r\n','Guix, probably ','','','','Y','','','','','','','','','','','poetry2nix','Y','','','','N','I don\'t have enough free time after work :)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I wanted an OS that\'s reproducible and easy to manage','','','Y','','','','','declarative configuration ','reproducibility ','nixpkgs ','add a beginner-friendly UI to make it easier to recommend to others','Ubuntu, probably ','Y','','','','','','','Y','Y','','xmonad','Niv\r\npoetry2nix\r\nnixfmt\r\njupyterWith','',''),(1077,NULL,4,'en','208859512','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','reproducible builds','declarative sys/home config','cli package manager','for the love of all that’s holy, add documentation','pacman, docker, cabal/stack (directly)','','','','Y','Y','','','','','','','','','','cabal2nix\r\nstack2nix','Y','Y','Y','','N','undocumented conventions of nixpkgs','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','declarative sys/home config','Y','','Y','','','','','declarative system config','declarative user config','','documentation ','arch','Y','','','','','','','Y','','','i3','','',NULL),(1078,NULL,NULL,'en','559416249',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1079,'1980-01-01 00:00:00',5,'en','1894458505','A4','A2','fem','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','work wants reproducible dev envs','Y','Y','','','','','Y','Y','','Y','','','','','Y','','','','home manager','','','','add static types to the nix language\r\nmore youtube tutorials / better documentation','','','','','','Y','','Y','','','','','','','','haskell, node, purescript 2 nix','','Y','','','N','knowledge','N','N','youtube video tutorials',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home manager','nix-env','Nix is still too hard and a time sink but I hope this will change.\r\nNix is a game changer and I don\'t want to go back to apt, npm and all that. But often I have to because I get stuck.\r\nI hope the nix community will continue to grow. Thank you all for your work!\r\nNo static types is really bad. If you know the benefits of modern type systems (like typescript, scala, haskell, purescript) programming in nix language is a pain.'),(1080,NULL,1,'en','359435172','A2','A5','-oth-','','','','','','','','Y','','','','','','','Y','','','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1081,'1980-01-01 00:00:00',5,'en','543790094','A5','A3','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Personally: I was previously using Arch Linux with an elaborate series of Bash scripts that I wrote to build system packages and manage my three computers that way. I eventually came to the light of Nix as a better solution.\r\n\r\nProfessionally: It solved pain points that my SRE team was dealing with regarding consistent tooling across local environments (Linux and Mac) plus CI/CD pipelines on GitLab. Building Docker images with a Dockerfile more or less worked well enough for CI/CD, minus obvious reproducibility concerns regarding OS package managers and so on. However there was a big gap for local development, e.g. ensuring that all of us were using the same version of terraform and kubectl. Nix filled the gap in my teams toolset nicely, but the learning curve introducing it has been the biggest detriment. Nix is great, but the documentation and learning path need a lot of polish.','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','Y','','Flakes (e.g. input declarations, lock files, consistent flake.nix schema, and certain use cases like needing an old revision of nixpkgs to build an older kubectl)','Docker image building','Local development tooling and parity with Docker images built via CI/CD','1. Add: LOTS of polish around documentation, learning, and stability. Using Nix professionally is a HUGE gamble due to this, which is frustrating because minus the complexity and learning curve it solves some huge pain points that every SRE style team faces.\r\n2. Add: some missing use cases that Flakes overlooks, such as using a parent flake and sub-flakes in a monorepo (which behaves unexpectedly/borderline broken) \r\n3. Remove: imperative environment management such as nix-env\r\n4. Improve: better nixpkgs PR and issue triaging. I\'ve had a few PRs linger for ages without attention despite being well polished and mergeable. Obviously this is going to need a wand with a power level of over 9,000 to fix.','Dockerfiles and various project-local-env style tooling such as nvm','','','','Y','Y','','','','Y','','','','','','None currently, because my SRE team deals more with existing tools (e.g. terraform, kubectl, jq, and so on) as opposed to building our code. But I think 2nix tools are hugely important and deserve more attention.','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','To replace my homegrown automation built on top of Arch Linux. Basically I wrote some scripts to package my config into Arch Linux system packages and push them to an S3 repo from GitLab CI, then I would do \"pacman -Syu\" to apply my config to each of my computers. This actually worked pretty well, but once I got over the learning curve of Nix I decided Nix was a better solution than my not-invented-here approach.','Y','','','','','','','Infrastructure-as-code style reproducibility across machines','','','','','Y','','','','','','','','','','Emacs (EXWM), the one true OS','','','Please focus on polishing and improve the learning curve, documentation, and general onboarding experience for professional DevOps, SRE, and app development use cases before worrying about shiny new features. It\'s hard to introduce Nix at work and convince teams to adopt it because of this. Nix is going to be introducing several new paradigms at once to a lot of people (e.g. functional programming and reproducible builds), so the learning curve is inherently high even in the best cases. The speed that Nix is evolving at (e.g. Flakes vs pre-Flakes) and the non-obviousness of how to do things coupled with lacking learning resources is a big hurdle to overcome. If you get more professionals to use Nix, they\'ll contribute back to the community and advocate for Nix to coworkers, new employers, and so on.\r\n\r\nI\'m really looking forward to content-addressable derivations, but I really think the above needs to be dealt with and Flakes need to have some rough edges and missing use cases addressed before you add even more shiny new things into the mix. Please get Flakes into a completely polished state so that they can be the \"one true way\" to do things moving forward with. I don\'t want Nix to end up in a Python 3 situation and shoot itself in the foot.'),(1082,NULL,1,'en','1270394159','A5','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I started using NixOS initially just for fun. It now runs my home server (just a few basic services, nothing complicated), and I use nix flakes for any projects I can. Flakes have been super useful for getting complicated latex documents to compile properly across systems.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','reproducible build environments','nixpkgs is huge','declarative system config','have all documentation updated to the new nix command, and make the new nix command the default, and generally just get everything in sync with that','guix package manager on a fedora system','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','Anything I\'ve wanted done is super hard to do in a way that\'s good enough, and super easy to do to make work on only one system. I think most low hanging fruit around the things I use has been picked. Also, I\'m still pretty new to everything and have only felt like I really understand what\'s going on in a derivation for the past month or so. I also expect that later I\'ll discover I didn\'t actually know what was going on yet and reset that counter.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I mentioned NixOS already in my Nix story (whoops), but I started using NixOS because it looked fun. Turns out I love it and it now runs on my home server and my work laptop.','Y','','Y','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1083,NULL,NULL,'en','1457315874',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1084,'1980-01-01 00:00:00',5,'en','1798260829','A2','A3','male','','Y','','','Y','Y','','','','','Y','','','','','','','Y','','','Y','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I got tired of system configuration being scattered all around / and having to dip in dozens of configuration files while keeping them coherent to set up computers. ','Y','Y','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','Determinist','Centralized & versionable configuration','Reproductible','(I) The whole CLI; (ii) maybe using an anneau existing language instead of Nix’s “JSON-Haskell”. ','Guix I guess?','','','','Y','','','','','','','','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','','','','','','Y','','','','','i3','home-manager','',''),(1085,'1980-01-01 00:00:00',5,'en','1863658196','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','After switching to NixOS and having write some missing packages I needed','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','building documents: articles, slideshows etc.','declarative configuration','reproducible environments','package customisability','Make Nix strongly typed and speed up the evaluation even more.','pacman and PKGBUILD','','','','Y','','','','','','','','','','','cabal2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A5','Two words: NixOS options. A friend told be about NixOS, I opened the project website and was blown away: there\'s an option for everything! With documentation embedded! I can rollbacks and it\'s systemd, so I can carry over my services too. One night we sat in front of a PC and went though the installation: very smooth compared to the Gentoo night. I moved my configuration from Arch to NixOS some time later and never even bothered to try other distro ever since.','Y','','Y','','','','','declarative configuration','more declarative configuration','rollbacks','Make nixos-rebuild output for humans: diff package versions, show an ETA and progress bar.\r\nMake evaluation go faaaasteeer.','A bunch of crazy idempotent shell scripts to automatically build my system','Y','','','','','','','','','','none+bspwm','','',''),(1086,NULL,1,'en','2093200601','A5','A4','male','','','','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1087,'1980-01-01 00:00:00',5,'en','1636470944','A2','A4','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Was looking to migrate away from Homebrew, to something more reliable.','Y','','','','','','Y','','Y','','','','','Y','Y','Y','','','','Isolation & replication','rollbacks','extendability (yet it\'s a bit complex)','Maybe the syntax/language, the learning curve is very steep. Also, it\'s very hard to find top-quality content for nix, especially for beginners. Docs although great, but it\'s a massive wall of text, some guides, how-tos, etc… can be useful too.\r\n\r\nAlso, extending packages is not that easy there are multiple ways to do it & again not easy to figure out because there is no enough learning content on these things.','','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'N','Y',NULL,'I tried to install it on an old Macbook Air that I have, too many issues with setting up Bluetooth, Wifi, sound, etc… ','Maybe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager, nix-darwin','',''),(1088,'1980-01-01 00:00:00',5,'en','1798067801','A3','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Customer Service Agent','','Y','','Y','','','N','Y',NULL,'It\'s a little bit hard, documentation can improve. ','Curiosity, Nix and NixOS seem to be the coolest package manager/distro out there.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'The first time I got NixOs setup, it just stopped working on me for no reason and had no way of figuring out why it happend or how to solve it. The problem was that after some time of having a GUI open, it would just stop working, black screen, no tty and the only way to fix it was to reboot the computer, switched to Void after that, but it\'d be cool to use NixOs.','Better documentation, more yt content on it. Generally, more people using it and better documentation like an official NixOS wiki',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Your project is awesome! It\'s definately not for everyone, but it really is great!'),(1089,'1980-01-01 00:00:00',5,'en','1044899746','A3','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','Y','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I heard about Nix/NixOS on the Haskell subreddit. I started using it to create reproducible development environments (initially switching from Python\'s venv).','Y','','','','','','Y','Y','','','','','','','Y','','','Y','','nix-shell','','','','Docker','','','','','Y','','','','','','Y','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I heard about Nix/NixOS on the Haskell subreddit. I started using it because of the possibility of using the same configuration across different computers easily. Today I have no fear of formatting my computers and rebuild them from the ground up and have the exact same setup in a few hours.','Y','','Y','','','','','quick generation switching','','','','FreeBSD','Y','Y','','','','','','','','','xmonad','home-manager','',''),(1090,'1980-01-01 00:00:00',5,'en','727119943','A5','A3','male','','','Y','','','Y','','','','','Y','','','Y','','','Y','Y','','','','','','Y','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The idea of completely reproduceable environments + builds was an instant sell. In particular, completely reproduceable development environments.','Y','','','','','','Y','Y','Y','','','Y','','','Y','Y','Y','Y','','Reproduceable builds, including high-trust caching of these','Output closures (that way all dependencies are accounted for)','Reproduceable environments','I\'d make the Nix language easier to use. Too many seemingly magical things, terrible error messages / stack traces, no types(!) and therefore not much confidence when it comes to e.g. refactoring.','For reproduceable builds, there\'s not much else out there (docker is *not* reproduceable, but it does provide an equivalent to output closures). For reproduceable environments, I guess a very carefully-crafted readme with instructions(?)','','','','Y','Y','','','','','Y','Y','','','','https://github.com/NixOS/cabal2nix\r\nhttps://github.com/nix-community/poetry2nix\r\nhttps://github.com/nix-community/bundix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Ansible works but isn\'t reproduceable or provide an easy way to back out changes. NixOS on the other hand... *chef\'s kiss*','Y','Y','Y','','','Y','','Reproduceable system configuration, including building + copying entire system closures','Rollbacks!','Easy configuration despite having to use the Nix language, including ease of writing your own modules','Ability to swap out the process orchestration system (systemd). I actually really like systemd but I can\'t experiment with other software like it while still using NixOS.','For system configuration I\'d use Ansible to configure Debian or some other small-ish distro - it\'s not necessarily reproduceable but it\'s kind of declarative (sort of). ','Y','','','','','','agenix','','','','kodi','agenix, flake-utils, comma, home-manager, nix-direnv, nixos-generators, nixpkgs-fmt, nix-darwin, niv (though I prefer to use flakes where reasonable)','mach-nix (dropped for poetry2nix)','Keep up the good work - Nix truly feels like a tool from the future that we mere mortals were blessed with using today. I really don\'t see any other viable alternative that fills all of my use-cases. Flakes was a wonderful decision by the way - way better than channels.'),(1091,'1980-01-01 00:00:00',5,'en','196021805','A5','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','Engineer, Silicon','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','It did a better job of multiple software installs than my bespoke shell scripts from hell + GNU stow did. ','','Y','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','','Y','Building Chips. ','reproducibility (by measuring inputs)','robustness (hard to break, easy to fix)','abstraction (allows using fixed points to piece together a variety of toolchains and build the same thing with them)','Add better profiling, refactoring and debug tools. ','Docker images and terrible makefiles. ','','','','Y','Y','Import from derivation','Y','','Y','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','','Y','Y','Y','Y','','Y','','Declarative configuration','Configuration (like user) information across machines','','Remove systemd. Add qubes-like containerization of applications. ','LFS? Arch? ','Y','','','','','Y','','','','','xmonad','Simple NixOS mailer','',''),(1092,'1980-01-01 00:00:00',5,'en','1059183919','A2','A2','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I started out with GNU/Linux back in 2016 while studying my undergraduate computer science degree. Within a year I had settled into Arch Linux. Which was fantastic for me. I had enough control which Mint and Fedora did not afford me.\r\n\r\nAs much as I like Arch and the AUR, I found that packaging software for the distro was rather cumbersome. Alongside this, it felt wasteful to have to add a package to the AUR which was customised to my liking. Alongside this I started to need different versions of software to complete my work.\r\n\r\nAt this point I considered NixOS but decided it was too far removed from what I knew. At the start of 2021 this led me to Gentoo. I liked gentoo a lot. So much configuration was great. When it came to synchronising my systems, it was a nightmare! Lots of the software I was packaging myself and it became too cumbersome. This led me to Nix, which despite the learning curve seems to have solved lots of these problems. I did have a hard choice between Nix and Guix ','','Y','','Y','Y','','Y','','Y','','','Y','','Y','Y','Y','Y','Y','','Declarative systems ','Flexibility and modularity of packages: I can modify what is compiled in easily enough ','User friendly packaging system ','Stabilise the new nix command! As well as document how to do the same things with the old commands. More importantly, improve the documentation and the wiki. I find lots of information comes from reading peoples blogs and the package source. For me this isn\'t huge but I would struggle to recommend others did it ','Guix','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','As before ','Y','','Y','','','Y','','','','','','','Y','','','','','','','','','','I3wm','-','-','Thanks for the great project. Loads of cool features. There is always a way of doing something really neat. Sometimes it takes a day or so to find that because of lack of documentations. So that would fix a large time sink! '),(1093,NULL,1,'en','1297310102','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1094,NULL,NULL,'en','1103912264',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1095,NULL,1,'en','347445606','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1096,'1980-01-01 00:00:00',5,'en','31991509','A5','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I distro-hop a lot and have converted several shell scripts to nix-shell scripts that include all dependencies and code. I’ve also played a lot with a nixos configuration.yaml that can easily switch between different desktop environments and install the appropriate packages automatically for them. Next will play with nixos on my servers. ','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Self contained dependencies with nix-shell scripts','Repeatability ','Easily configuration of multiple machines ','As a moderately experienced developer I found the nix language unintuitive and difficult to learn. Also documentation on how to work in nixpkgs is hard to find. ','Shell scripts and configuration management tools like ansible','','','','','','','','','','','','','','','','','','','','N','Documentation ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Just wanted to use a flexible configuration yaml that I could switch between desktop environments easily by changing a single variable ','Y','','Y','','','','','','','','','','Y','','','','','','','Y','Y','Y','','','',''),(1097,NULL,NULL,'en','369582908',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1098,'1980-01-01 00:00:00',5,'en','1273721942','A5','A3','male','','','','','','','','','Y','','','Y','','Y','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Needed to do development on my nixos machine outside of docker containers. It is a really nice build tool.','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','A universal build tool for any programming language','Declarative and pure build recipe','Inputs are pinned','I would change the Nix DSL to another functional language. One that is more popular, easier to learn and has more documentation like haskell.','Language-specific build tool and docker containers','','','','','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was looking for a next-generation OS in 2018. I was sick of traditional distros breaking from updates.','Y','','','','Y','Y','','A GNU/Linux distro that doesn\'t break from updates i.e. reliability','The ability to declaratively customize my distro installation without state i.e. clean configuration','The ability to mix multiple versions of software at once e.g. distro base is based on nixos-21.11 but discord is pulled from nixos-unstable','I would change the Nix DSL to another functional language. One that is more popular, easier to learn and has more documentation like haskell','Fedora Silverblue','','','','','','','','','','','i3','* flake-utils-plus\r\n* home-manager\r\n* impermanence\r\n* nur','',''),(1099,'1980-01-01 00:00:00',5,'en','1147356447','A3','A3','male','','','','','','','','','','','Y','','','Y','Y','','','Y','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Closeness to haskell, fp, and reproducibility','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','Y','','Reproducibility','Environments to go','Deployment','More support for nixops with flakes','Guix','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','N','Something to contribute','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because I wanted to use nixops','Y','Y','','Y','','','','','','','','Gui','Y','Y','','','','','','Y','','','','haskell.nix','Llvmhs (has some nix)\r\nNiv','Thanks!'),(1100,'1980-01-01 00:00:00',5,'en','2105820915','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','Y','','','','','','','','sway','','',''),(1101,'1980-01-01 00:00:00',5,'en','247254570','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Reproducible builds, requirements management, reproducible system, easy rollback to prior generation, easy to get started with, powerful as I learn more.','','Y','','','','','Y','Y','','','','','','','Y','','','Y','','Reproducible System','Reproducible Builds','Requirements Management','Add more people merging pull requests to nixpkgs.\r\nChange - make it easier to learn everything (magic wand, remember?)\r\nRemove imperative nix-env usage.','LFS with build scripts, I guess, but I don\'t feel comfortable enough to be using LFS yet, so I would still be on Ubuntu.','','','','','','','','','','','','','','I rolled my own once, haven\'t made this a big thing with NixOS because this is only personal projects.','','Y','','','','N','I need to get better at knowing how Nixpkgs works because I don\'t want to waste reviewer\'s time with crap PRs.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Reproducible builds. I thought we covered this.','Y','Y','','','','','','Reproducible System','Easy system rollbacks','Clean compute environment','Add more user support.\r\nChange: make it easy to learn.\r\nRemove: again, nix-env imperative usage','Ubuntu or LFS','','','','','','','manual deployment','','','','i3, parents have KDE Plasma though','nixpkgs','','Slava Ukraini!'),(1102,'1980-01-01 00:00:00',5,'en','1455994279','A1','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A3','I\'m using NixOS, so Nix it is.','','','','','','','Y','','','','','','','','Y','','','Y','','environment management (nix-shell)','','','','','','','','','','','','','','','','','','','','Y','','','','N','The process of making a valid PR to Nixpkgs seems just so complex, and all my overlay changes are just version bump','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','I want to give Linux desktop a try (from local Windows + remote Linux setup). Yet my experience with Arch/Ubuntu was that overtime the configuration/library tend to rot due to updates, especially if you manually install/uninstall some cut-edge libraries from time to time. The reproducibility/immutable/declarative config of NixOS seems a potential solution to this.','Y','','','','','','','OS management','Home management (home-manager)','','1. Document sits in between class 101 and reference.\r\n2. OS configurations so that I can sacrifice reproducibility/immutability in exchange of certain software that will download binary \"just work\", especially those binarys compiled with the assumptions that certain \"basic\" .so is available under /lib or /lib64.','Arch or Ubuntu','','','','','','','','','Y','','','home-manager','','I hope NixOS developers could consider the options to expose mutable /lib and /lib64 so that binary downloaded through software just works™ (for example, some java dependency, npm dependency, extensions of vscode and/or remote UI function of JetBrains\'s IDE family)'),(1103,'1980-01-01 00:00:00',5,'en','247694425','A5','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','','','','','','Y','','','Y','','','','','','','','','','','','','','','','Y','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','','','','','','','','','','','','','','','','','Y','Y','','','','',''),(1104,NULL,1,'en','991723259','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1105,NULL,2,'en','499212944','A6','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I was looking for a better way to manage os config and found nix and nixos interesting','','Y','','','','','Y','','','','','','','','Y','','','','','Different versions of package ','Declarative config file ','Ability to rollback ','FHS support ','Debian, asdf etc','','','','','','','','','','','','','','','Mach-nix','','','','overrideargs','N','Lack of time ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1106,'1980-01-01 00:00:00',5,'en','180603944','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','was interested in reproducible configs, used home-manager on WSL for a long time','','Y','','Y','Y','','Y','Y','Y','Y','Y','Y','Router','','Y','Y','Y','Y','','nixos module system','reproducible shell environments','','faster eval, rust implementation, more expressive type system, nix on windows','perish the thought','','','','Y','','','','','','Y','','','','','https://github.com/Fuuzetsu/jenkinsPlugins2nix','Y','','','applyPatches','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','had used home-manager on WSL for a while and wanted more','Y','Y','Y','Y','','Y','Router','modular and portable configuration','reproducible, immutable system profiles','mono-repo for the entire OS','basically the vision of SpectrumOS, maybe built on Genode','I don\'t know - NixOS has it\'s rough edges but nothing else comes close to being as good','','','','','','Y','','','','','Wayland/Gnome/Pop-Cosmic','home-manager, nixpkgs-fmt, rnix-lsp, niv, direnv, lorri','flakes, nixops',''),(1107,'1980-01-01 00:00:00',5,'en','1135669045','A5','A3','male','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','','N','Y',NULL,'i didn’t feel comfortable with the language ','better understanding of the language ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'i didn’t feel comfortable with the language. too non-standard from the rest of the linux ecosystem. hard to introduce to others. ','mainstream adoption ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1108,NULL,1,'en','1081239328','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1109,'1980-01-01 00:00:00',5,'en','1087865759','A5','A3','male','','','Y','','','Y','Y','','Y','','Y','Y','','','','','','Y','','','','','','Y','','','','','Y','','','N','Y',NULL,'Couldn\'t figure out how to get certain things to work, specifically, setting up a build environment for a python package with multiple internal (private) dependencies.','Better documentation? Pretty subjective, I know, but I found learning nix\'s internals to be difficult due to the unfamiliar vocabulary.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'See my issues with nix.','If I became relatively proficient with nix.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','NixOS on ARM maybe?','I love the concept behind nix and the idea behind it. I don\'t think it needs to be as hard to introduce and approach as it seems to be today.'),(1110,'1980-01-01 00:00:00',5,'en','650124625','A5','A2','male','','','Y','','','Y','Y','Y','','Y','Y','','','','','','Y','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','','','','','Y','','','','','','','','Y','','','','','Isolation','Reproducibility','Declarativeness','Better documentation. Easy way to install old package versions','Language specific tools','','','','Y','','','','','','','','','','','','','','','none yet','N','Haven\'t needed to yet','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Liked nix package manager. Fed up with having unneeded packages on my system. Fed up with being unable to install packages because other packages required different versions of dependencies','Y','','','','','','','','','','','Debian','Y','','','','','','','Y','','','','','',''),(1111,NULL,1,'en','2016218151','A1','A4','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1112,NULL,3,'en','1441665234','A5','A3','male','','Y','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted better package management. In particular I wanted a package manager that used symlink-based installs, didn\'t have install scripts run as root, didn\'t have install scripts that then tend to have missing or mismatched uninstall scripts, unbrickable updates, rollback, etc. NixOS provides the best package management available.','','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','symlink-forest package management','declarative and (at least semi-) reproducible package environments (including the system environment)','whole-OS configuration','I would use a better language instead of the Nix language. Frankly, I think Guix is way better in that regard, but there are various reasons I use NixOS instead.\r\n\r\nWithout magically switching to a better language (especially a lisp!), I would at least magically add good, thorough, and thoroughly hyperlinked and searchable documentation for the language, standard library, etc.\r\n\r\nNext, I think Nix is too static. Often this is good, eg. packages statically resolving all dependencies. But often it would be better to allow more dynamism. It would be great if there were an option on packages for them to resolve everything statically in the nix store OR to dynamically resolve dependencies in their current environment (eg. a nix shell, a user environment, or the global system environment). This would especially be helpful for dynamic systems, eg. many packages require extra configuration up front to say which libraries are available, when sometimes it would be nice to load new packages dynamically. There are some packages where even configuration that is static from the point of view of running a program is included in a derivation\'s dependencies, such that minor configuration changes would require rebuilding many packages (eg. certain configuration of X11 come to mind, such as including non-standard keyboards requiring recompilation of all gui packages, including web browsers, office suites, etc).','I used to use Arch Linux on laptops and Debian on servers. I suppose I would likely still do that.','','','','','','','','','','','','','','','I want racket2nix, but don\'t have time to contribute to it.','Y','','Y','I have a number of local packages, some of which I\'m considering upstreaming. I\'m just not sure I want to commit to maintain them going forward. Also I plan to use Flakes as soon as they are non-experimental.','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same as with Nix. I tried Nix stand-alone briefly, but quickly switched to NixOS.','Y','','Y','','','Y','','Oops, I should have paid attention to the instructions better. See my responses for Nix. #3 (whole-OS configuration) is really a NixOS feature rather than a Nix feature.','','','See response for Nix. I want a better language, better language docs, and more optional dynamicism in packages.','Arch Linux and Debian probably.','Y','','','','','Y','','Y','','','Awesomewm',NULL,NULL,NULL),(1113,NULL,1,'en','1629925489','A5','A2','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1114,'1980-01-01 00:00:00',5,'en','1918581245','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was fustrasted with the fact that I had years of configuration managed on Ubuntu but I couldnt track its changes or where half of the config files are. ','','','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','Convienient Dev shells','Functional by design','Declarative configuration','Better documentation with more examples. Especially functions.','OS:Arch ','','','','','Y','','','','','','Y','','','','','Y','Y','','','N','Im scared I will get yelled at for sloppy implementation.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','sway','','',''),(1115,NULL,1,'en','1191031675','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1116,'1980-01-01 00:00:00',5,'en','1322208416','A5','A2','','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I saw the logo a few years ago, then read about the project and really liked the idea of declarative system management. Then I banged my head against the Nix language for a bit and after a lot of fighting there found it was way easier to bump package numbers. Also, I could manage ML stuff somewhat easier before I ended up like everyone else using CoLab.','Y','Y','','','','','Y','','Y','','','','Daily driver','Y','Y','Y','Y','Y','','Declarative system management','`nix-shell`s as a development shell','`nixos-containers`','I would make `nixos-containers` work really, really well. Writing docker stuff annoys me in a way that nix doesn\'t.','I\'d probably do most of my development in containers, and then use Ubuntu or Arch as a daily driver.','','','','Y','Y','','','','','','','','','','cabal2nix','Y','','Y','','N','I don\'t have very many packages where all 3 of these apply:\r\n\r\n* I care about this package a lot\r\n* This package is not in nixpkgs and actively maintained\r\n* I have time to maintain this package','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was on Ubuntu and my computer died. I wanted to switch distros since Ubuntu major version changes are nightmarish. NixOS did that. After a few bumpy months things got really easy.\r\n\r\nI stuck with NixOS in part because of how easy and painless upgrades/updates are compared to Ubuntu\'s nightmare mode update process.','Y','','Y','','','','','Declarative system management','Rollback','Easy update process','I would make flakes the default and update every system config to flakes. The update process is good, but it could be better, changing out channels feels awkward and imperative compared to just changing a version number and a hash.','Probably Ubuntu.','Y','','','','','','','','','Y','herbstulftwm','','`nixos-container`',''),(1117,'1980-01-01 00:00:00',5,'en','1954354429','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Got fed up with reinstalling macOS every year and losing my settings.','','Y','','','','','Y','','Y','','Y','','','','Y','Y','Y','Y','','Declarative system configuration ','Rollbacks','Development isolation','Make the language strong+static typed. Or even use Haskell or PureScript.','Don\'t know.','','','','Y','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','Y','','','','','','','','Y','','','','','','','Y','','','','','',''),(1118,NULL,1,'en','1714973985','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Technician','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1119,NULL,3,'en','288248156','A5','A4','-oth-','Non-binary','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was introduced to the ecosystem in 2015-2016 and started using NixOS as my daily driver some time after that, I don\'t quite remember, it was sometime after 2017. I enjoyed using the language to create packages so much that now I only use Nix to package and deploy my personal projects.','','','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','Declarative semantics','Nix Store','reproducibility','I would love to see the .drv file format standardized so that outside tooling can integrate more easily with Nix. For example, what if pip could create a derivation directly? That would be just amazing.','Flatpak or AppImage I guess?','','','','Y','Y','','','','','','','','','','mach-nix\r\nyarn2nix\r\ncabal2nix\r\ncomposer2nix','Y','Y','','','N','There are things in nixpkgs that I believe could be useful, but I either fail to package them, or someone does it before I can. So, it\'s not through lack of trying, it\'s more of lack of success','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was introduced to the technology in 2015-2016, and sometime after 2017 I tried out NixOS on my laptop and I haven\'t given it up since. There have been some bruises on the road but that\'s been my experience with every technology. ','Y','','Y','Y','','','','Declarative semantics','Atomic upgrades/downgrades','reproducibility ','GUIs! An \"app store\" for nix-env and one for managing configuration.nix. There are so many people that cannot use this ecosystem because it is bound to terminals and text editors, even though it\'s a superior technology.','Arch/Manjaro probably.','Y','','','Y','','','','Y','','','SwayWM',NULL,NULL,NULL),(1120,NULL,1,'en','1056373713','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1121,NULL,NULL,'en','1129268616',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1122,'1980-01-01 00:00:00',5,'en','1097026662','A1','A2','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','Y','Y','','','Y','','Y','','','N','N','I was trying to do personal chromium builds, but was taken back by its unholy amount of library dependencies. Very often it would break because I am using a rolling release distro, which has little care for this situation because it assumes everything is upstream. And I just randomly encountered Nix on reddit and was shocked because this was such an amazing novel approach but I have just never heard of it. So now I am mostly learning how to do things in the \"Nix\" way and hopefully some day to fully switch over.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','The idea of a declarative system configuration is very appealing and NixOS has very promising features, like a system that can be set up from just several files, or system wide rollbacks if an update broke. This is like portable dotfiles, but on steroids. Nix\'s potential also blends into NixOS really well: Nix makes software free from dependency hell possible and ensures replicable builds, which also fits really well in my use cases.','Y','','Y','Y','','Y','','Nixpkgs, a library of declarative packages','System rollbacks/generations','Flakes','A complete user-friendly guide to NixOS and a tree or collection of NixOS options. It is difficult to navigate around and explore what NixOS has to offer from a newbie perspective.','I would cry. But probably right now what I am using, Arch Linux or maybe Gentoo.','Y','','','','','Y','','','Y','','','Maybe flakes. This is a really good concept and I can\'t wait to see it getting merged to stable Nix.','I am way too amateur to answer this :D','I have faith in that quote from the thesis stating that NixOS will surely conquer the world. I am absolutely staying around for upcoming features and am excited to see what new directions you guys will lead this project, while I slowly progress myself away from the newbie catagory :D'),(1123,NULL,1,'en','57542316','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1124,NULL,NULL,'en','1635213343',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1125,'1980-01-01 00:00:00',5,'en','1938965098','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','I have some flake.nix files in work replated repos','A2','I saw it popular among Haskell coolkids for quite a while. Then, Ubuntu on ZFS failed to rollback for me and I switched.','Y','Y','','Y','','','Y','','','','','','','','Y','','','Y','','flakes','nix shell','the language being declarative and functional','Static typing. I really wish for Hindley-Milner types.','A git repo to assemble a bundle of config files and develop my own dotfiles management tool','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Answered to why I use Nix','Y','','','','','','','reproducible config across devices','rollback','`nix-shell -p` for me to try stuff and forget','The ability to manage credentials','Gentoo on desktop, Arch Linux on laptops','Y','','','','','','','','','','Wayfire','home-manager','','The community is a vital part of the ecosystem but is not asked about in this survey. From my perspective, it is more important than technology as the community seriously lacks contributors and media. Specifically, documentation, blogs, videos for the young generation, code reviewers, and evangelists.'),(1126,'1980-01-01 00:00:00',5,'en','158115229','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted Package manager to replace brew and have consistency with Linux dev env. Building containers. ','Y','Y','','','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','','','Reproducible','Wide selection','Fast installs','More explicitly stateless e.g. built in “erase your darlings”','Pkgsrc','','','','','Y','','','','Y','','Y','','','','','','Y','','','N','No need yet. I do have some things to push up eventually ','N','Y',NULL,'Complex install process','I just want a machine to start being nixos with no cruft and with automatic stateless design. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Love nix. Will eventually be moving my servers. '),(1127,'1980-01-01 00:00:00',5,'en','511491445','A5','A3','male','','Y','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted better package management. I wanted something that would do symlink forest installation, didn\'t run scripts as root, didn\'t have install scripts that would get out of sync with uninstall scripts, etc. And Nix had all of that and more.','','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','Symlink forest package management','(at least semi-) reproducible environments','package overrides','(1) I would magically change to a better language. IE basically a DSL within a more mature, documented language. And I would love for it to be a Lisp. I think Guix is a major improvement over Nix here, though Guix has its own problems, as well as much less momentum and a smaller community, so I\'m sticking with Nix for now.\r\n\r\n(2) Since the language isn\'t going to change, the next thing I would do is magically add thorough, thoroughly hyperlinked, and thoroughly searchable documentation on the Nix language, standard library, etc. Right now it\'s very difficult to discover language or library features, or even look up common features. What are all the options for stdenv.makeDerivation? It\'s really hard to find. I would like thorough reference material as well as better tutorials.\r\n\r\n(3) I would like more dynamic behavior as an option. Sometimes it\'s great that everything is statically resolved in the nix store, but there are often situations where it would be better to dynamically resolve things in the current environment (eg. nix shell, user environment, or the global system environment). Static is probably the right default, but it would be powerful to have options to install dynamic versions of packages. This would be particularly useful for programs that can dynamically load extra features, and especially for programs based around programming an interpreter (eg. emacs, awesomewm, etc).\r\n\r\n(3b) Somewhat different, but related, many packages essentially contain static configuration at build-time, which you can\'t reasonably configure if you don\'t want to build all dependent packages. A big example is xkeyboard-config, which I want to modify to include custom keyboard definitions. Eg. `setxkbmap` and other tools will only set keymaps defined in that package (when really it should be a runtime configuration option). There are workarounds (eg. `xkbcomp`), but they have downsides. But if I want to customize the xkeyboard-config package I have to recompile all gui programs, including web browsers, office suites, etc. That\'s not really feasible. This is a particular example that matters to me personally, but it\'s also an example of a broader issue. More dynamic behaviors are needed for many valuable use cases.','I would possibly rely on Docker more for development environments, as disgusting as that sounds. I would probably use a mix of Arch Linux on daily driver machines and machines that need fresh packages and Debian on most servers without NixOS.','','','','','','','','','','','','','','','I hope racket2nix gets better. I want to use it, but don\'t have time to contribute to it.','Y','','Y','I have several custom packages. Some are relevant to Nixpkgs and I have considered adding them, but I\'m not certain I want to commit to maintaining the packages over time.','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I tried Nix on Arch Linux for a while and quit largely because X11 programs from Nix wouldn\'t work with my Arch Linux xserver and vice-versa. I tried NixOS a bit at that point but had too much custom configuration that was difficult to get working on NixOS. At some point when it was convenient I took time to port my extensive custom configurations to a state that would work on NixOS. Taking time to port my various machine configurations to NixOS gave me time to improve some of my configuration infrastructure and share more, and doing it all in NixOS was very helpful in making more, as well as more audacious configuration libraries. I\'ve been very happy with NixOS compared to any other OS. That said, I think NixOS could improve in many ways, both fundamentally and superficially.','Y','','Y','','','Y','','The package management and environment features that I already listed about Nix generally.','Whole-system configuration within a programming language (even if it\'s a very poorly documented wonky language).','','See comments about Nix changes.','Probably Arch Linux on daily driver laptop and any machines that really need fresh packages, Debian on servers and other things.\r\n\r\nNixOS is a huge improvement vs Debian. NixOS on my main laptop is largely better but is not universally an improvement over Arch Linux, especially when it comes to NixOS lacking options for dynamic behavior.','Y','','','','','Y','','Y','','','Awesomewm','','Racket2nix, because I love and use Racket. When I tried it it made it part way, but wasn\'t something I could include in my system configuration.nix or nix-shell environments. I really want it to mature (or for a similar tool to be written) and provide a path for Nixpkgs to include the Racket package repository. If I had the time to contribute more seriously to NixOS, this project would be a priority for me.','Sorry if you get a duplicate of this. I had to quit near the end on my first attempt, and it timed out. I don\'t think it submitted anything, though.\r\n\r\nThanks to everybody who works on Nix/NixOS. It\'s really great, and clearly the best operating system that exists right now. It has many deficiencies, as all software does, which I often complain about because I want everything to be perfect. But it is an amazing, beautiful project.'),(1128,NULL,NULL,'en','1886329324',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1129,'1980-01-01 00:00:00',5,'en','1562867771','A1','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I can\'t remember! It was years ago and I\'ve forgotten everything from my life before Nix.','','','','','','','Y','','Y','','Y','','','','Y','Y','','Y','','Reproducible builds','Declarative system configuration','Large collection of packages','Static types (possibly gradual typing similar to Typescript?) and a language server implementation.','Guix, if that exists. Otherwise more containers, I guess.','','','','Y','Y','','','','','','','','','','I\'ve used node2nix in the past but haven\'t been super satisfied.','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I can\'t remember! It was years ago and I\'ve forgotten everything from my life before Nix.','Y','','Y','','Y','','','Declarative system configuration','Shared configuration between machines','Full history of running systems','Maybe more modular structure for building images for netboot and SD cards for servers and embedded devices? My current attempts are quite hacky.','Guix, if it existed. Otherwise Arch or Debian.','Y','','','','','Y','','','','','sway','I use home-manager to manage my user environment.','','Thank you for the great work on Nix! I can\'t imagine going back to anything less declarative or less reproducible'),(1130,'1980-01-01 00:00:00',5,'en','1136075699','A1','A5','male','','','','','','Y','Y','','','','','','','','','Y','Y','Y','','','','Y','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Curious was using Gentoo and Arch before and Nix was very different I like it a lot ','Y','','','','','','Y','','Y','','','','','Y','Y','','','','','declarative','reproducible','','better documentation and more examples','Arch with Ansible terraform','','','','Y','Y','','','','','','Y','','','','not yet','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','was very different ','Y','','Y','','','','','reproducibility','declarative','','more clear rolling updates','NA','Y','','','','','','','','','','i3','poetry2nix, home-manager','',''),(1131,'1980-01-01 00:00:00',5,'en','2065475032','A5','A4','male','','','Y','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','I run a personal VPS with an extremely wide variety of different self-hosted projects on it, and I am very particular about ensuring that they stay online. Some of the configuration to keep the older projects up is rather involved, and I have traditionally been terrible at documenting all of it. My server would quickly get into a state where I didn\'t remember what had been done to it and didn\'t have any way of finding out, resulting in painful amounts of downtime and configuration-by-trial-and-error any time I needed to do a significant upgrade or migration.\r\n\r\nWith NixOS I changed that pattern completely - I\'m able to define _everything_ in Nix and bring it all up on a local VM to ensure everything still runs before I deploy to my live server. It took a couple of weeks to get everything set up initially, but it gives me incredible peace of mind.','','Y','','','','','','','Y','','','','','','Y','Y','','Y','','Completely capturing my system\'s customization in one, auditable, readable place','The ability to deploy to a test VM to ensure my configuration is correct and working before it goes live','The ability to roll back a deployment if something goes wrong','DOCUMENTATION. MORE. BETTER. I wish I didn\'t so often have to resort to reading nixpkgs source code to understand what was going on.\r\n\r\nSmoother integration with language package managers (npm etc). The tools that exist are confusing and getting a new program\'s build up and running is often much too hard.\r\n\r\nI haven\'t figured out how to enable unattended upgrades from a nixops-managed server yet - that should be much easier than it currently is.\r\n\r\nNitpick: nixops deployments should be entirely configured via text files that can be stored in git - it\'s madness that I have to run a nixops command that changes binary files in ~/.nixops/ to do things like \"point nixpkgs at the newest release of nixos\".','There is no other solution (besides guix) that solves my particular problems in a way I can live with.','','','','','','','','','','','','','','','I don\'t even know what that means','Y','','','','N','shrug emoji','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','I answered all this stuff in the Nix section, the two are pretty much inseparable for me','','','Y','','','','','','','','','','','Y','','','','','','','','','','','',''),(1132,NULL,1,'en','1541997035','A2','A2','male','','','','','','','','Y','Y','Y','','Y','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1133,'1980-01-01 00:00:00',5,'en','1541833873','A5','A3','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I switched from Arch Linux because NixOS + Home Manager allowed declarative configuration for all my systems.','','','','','','','Y','','Y','','','','','','','','','Y','','Plaintext configuration files','System and and user environment configuration','Package and service availability','Documentation for all options in the NixOS manual or wiki.','Guix','','','','','Y','','','','','','','','','','','','','','','N','I do not use Nix except for system and user environment configuration on NixOS.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I switched from Arch Linux because NixOS + Home Manager allowed declarative configuration for all my systems.','Y','','Y','','','','','Plaintext configuration files','System and user environment configuration ','Package and service availability','Documentation for all options in the NixOS manual or wiki.','Guix','Y','','','','','','','','','','EXWM','Home Manager','Nix channels','Thank you!!'),(1134,NULL,1,'en','373597736','A5','A2','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1136,'1980-01-01 00:00:00',5,'en','364734949','A2','A5','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Haskell project that are not updated often rot way too fast. nix gave the promise of the ultimate antirot. \r\n\r\nI then used as brew replacement and sync my home dir with home manager ','Y','','','','','','Y','','','','','','','','Y','','','','','reproductibilty','easy tool testing','','use a lisp instead of nix language. ','docker/VM','','','','Y','Y','','','','','','','','','','cabal2nix','Y','','','','Y',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- niv\r\n-home manager \r\n','',''),(1137,'1980-01-01 00:00:00',5,'en','1421665022','A5','A5','fem','','','','','','Y','Y','','','','Y','','Y','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Stumbled upon it. I had always wanted to be able to configure mu entire OS declaratively but couldn\'t articulate that well enough to find it via a search engine..but as soon as I did find it, I knew it was for me.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','Be able to buy a Mastering Nix book\r\nToo shelf dev tools, goto definition, hover, etc... ','Guix?','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','','','','Y','','','','','','','sway','Direnv','Switched from Niv to flakes recently','I love the nix community.'),(1138,'1980-01-01 00:00:00',5,'en','516731382','A4','A3','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I can get the env I want more robust than dockers (ofc once you know what you are doing)','','Y','','','','','Y','','','','','','','','Y','','','Y','','nix-shell and buildFHSUserEnv','nixos configuration using nix','stability','- add: more DOCUMENTATIONS\r\n- add: better vscode nix support (including better nix-shell and buildFSHUserEnv)\r\n- remove: disable `hardening` flags by default in shells\r\n- change: adapt some of clear linux optimizations to nix','dockers','','','','','','','','','','','','','','','','Y','','','','N','nix echo system for converting a package to work into nix is complicated','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','','','','','','','','','','','','','','','Y','','','','',''),(1139,'1980-01-01 00:00:00',5,'en','1874563847','A5','A3','fem','','','','','','Y','','','','','Y','','','','','','Y','Y','','','Y','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was forced into it. I had been full-stack/devops/SRE for well over a decade and joined a company as an automation engineer under the employment of a friend, who was staunch on using Haskell/Nix. I was extremely resistant at first, but eventually dove in and found out that it\'s actually completely brilliant. It is now my daily driver for all of my personal systems and (almost) all of my servers.','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Statelessness','Reproducibility','The ability to define multiple configuration languages (e.g. YAML, INI) in Nix','Better error messages\r\nComposition operator\r\nAn operator to help remove further parentheses, like Haskell\'s $\r\nOperators as functions (e.g. foldl\' (+) 0 [ 1 2 3 ])\r\nSome form of introspect to generate better error messages','Either pacman or aptitude','','','','Y','Y','','','','Y','Y','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I had been using Mac as my daily driver, and was getting towards the tipping point of using Linux as Macs were getting too expensive and added too many silly features. I had already been using Nix and some NixOS for production servers, so I decided to dive in head-first into the NixOS experience.','Y','Y','Y','Y','','Y','','Statelessness to the extent Nix can reach','Reproducibility of machines','Ease of service setup','','Likely arch or some debian derivative, and severe alcoholism','Y','Y','','','','Y','','','','','i3','home-manager','Soon I will be moving away from nixops.','Keep up the good work'),(1140,NULL,NULL,'en','318487521',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1141,'1980-01-01 00:00:00',5,'en','1613200288','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Logistics','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','More packages than Guix','Y','','','','','','Y','','','','','','','','Y','Y','','Y','','reproducible build environments','declarative system management','','better documentation','Guix','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'N','Y',NULL,'I switched to macOS, though I will prob switch back to some Linux distro','When I have enough money to purchase a new non-Mac computer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1142,NULL,2,'en','893750310','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Declarative configuration, supposed reliability, coolness factor','Y','','','','','','Y','','','','','','','Y','','','','','','Declarative OS management','Reliable rollbacks','Having multiple versions of packages present in one system ','Nix language error messages, support for debugging and better documentation for functions used to build packages','Arch Linux','','','','','','','','','','','','','','','','','','','','N','Don\'t have time for that now, nor for learning Nix beyond simple changes to packages / using them.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1143,NULL,1,'en','296462248','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1144,'1980-01-01 00:00:00',5,'en','588747301','A2','A4','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I read about Nix about 8 years ago and I thought it looked very promising but quite complex. I had been using Debian for about 20 years and I got frustrated of having to choose between outdated packages or and unstable system, and 2 years ago sameone mentioned Nix at a meetup so I checked it again and decided to give NixOS a try for real by completely switching to it and evaluating after a few months if it was usable. I’m still using it today and really happy with it.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Reproducibility','Declarativeness','Composability','- A more beginner-friendly manual with an improved structure that uses the Diataxis framework for technical writing (https://diataxis.fr/)\r\n- Better error messages and traces\r\n- Debugging tools\r\n- Better/official support for *2nix tools (which regularly break with upstream packages)','I guess I would go back to Debian, but I would be very sad.','','','','Y','Y','','','','','','','','','','node2nix, poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','See my previous point in the Nix part (I started using Nix when I switched to NixOS so the 2 stories are the same).','Y','','Y','Y','','','','Reproducibility','Declarativeness','Composability','','','Y','','','','','','','','','','i3','home-manager','lorri','Thank you!'),(1146,'1980-01-01 00:00:00',5,'en','900202269','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','It allows me to adjust software before installing, e.g. applying patches.\r\nIt allows me to define the system via configuration.\r\nIt isolates enviroents and allows to setup project specific engironments.','','Y','','','','','Y','','','','','','','','Y','','','Y','','nix, nixpkgs','home-manager','','','Probably gentoo/portage.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','I still feel too new to nix.','N','N','I plan to switch from Ubuntu to NixOS in the near future.\r\n\r\nAlready migrated to home-manager.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','',''),(1149,'1980-01-01 00:00:00',5,'en','1615068794','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I began using Nix for development environments after having used NixOS for a while and becoming familiar with it.','','','','','','','Y','','Y','','','','','Y','Y','','','Y','','Per-project environment (particularly being able to specify exact dependencies e.g. node v14)','Reproducible builds','','More docs for things like: how do I take a package from nixpkgs and build it, outside of the repo, or outside my nixOS config. I did it before but I find it all so confusing! Also the errors are often (not always but quite often) really confusing, so clearer error messages.','For dev environments, maybe asdf, I haven\'t tried any of the alternatives. ','','','','','Y','','','','','','','','','','','','Y','','','N','The most recent software I wanted to package, I couldn\'t figure out how to package it with Nix. So, lack of knowledge of nix language I guess','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','At the time I had been using Arch for about 8 years, and NixOS\'s declarative configuration method appealed to me as a sort of \'dotfiles on steroids\'. After trying it for a few months I started to understand the other benefits of NixOS & Nix (system rollback, wrapped dependencies, per-project environments).','Y','','Y','','','','','Declarative configuration','System rollback','','Maybe make config options easier to discover, I mainly use the man page, I think there\'s a webpage somewhere with a search box but I always default to going for the man page','Arch or maybe Guix','Y','','','','','','','','','','Sway','umm nix-locate is good, I guess? can\'t think of anything else sorry','I wanted to use a devops tool like nixops or morph but couldn\'t figure them out','Thank you so much for your work on Nix! It\'s wonderful'),(1147,NULL,1,'en','1093519967','A2','','male','','Y','','','','','','','','','','','','','Y','','','','','','Y','','Y','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I were testing Arch with the intent of switching to it from Windows, but as my install was getting more complicated, I realized I would need to remember all the different changes I made to configuration as well as why I had installed every package so that I wouldn\'t break some script by uninstalling it.\r\nI then found NixOS and saw that I could specify configuration, packages, and create scripts which reference all its dependencies, all in one file (-hierarchy) with comments.\r\nAfter testing in a VM, I therefore ended up switching to NixOS instead.','','','','','','','Y','','','','','','','','Y','Y','','Y','','','','','Add and improve documentation.\r\nAdd and improve error messages and debugging capabilities of nix expressions.\r\nAdd arguments to flakes (e.g. https://github.com/NixOS/nix/issues/5663) (example: specify unfree to nixpkgs).\r\nSimplify debugging building (nix develop and each phase) and the final binary.\r\nMinimize the amount of downloading and writing to disk (e.g. using reflinks) of almost similar packages (though CA will help).','Use a dotfile manager.\r\nInstall packages needed for development globally, write down why I installed each package.','','','','','Y','','','','','','','','','','','Y','Y','','','N','Reluctance to interact with people online.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1148,'1980-01-01 00:00:00',5,'en','150433208','A4','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I liked the idea of reproducibility and immutability of the system, so I gave NixOS a try and it is awesome so far and it worked like magic, and now I don’t have to worry about breaking my system when I do changes or experiment with it.','','','','','','','Y','','Y','','','','','','','','','Y','','Being able to configure my system using config files.','Being able to rollback when something happened.','The ecosystem of packages “NixPkgs”.','','','','','','','Y','','','','','','','','','','','','','','','N','I’m still new and learning Nix and the ecosystem, but definitely going to contribute in the future.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','My daily driver desktop distribution.','A1','I liked the idea of reproducible and immutable system, and that I can manage my whole system with configuration and be able to rollback.','Y','','Y','','','','','Reproducibility and Immutability','Being able to use txt files to config everything.','NixPkgs','','I would consider Guix but they don’t have as much packages as NixPkgs, so I might just stay with Arch Linux.','Y','','','','','','','','','','Qtile','','','Thank you all for these amazing projects and I hope you you all the success.'),(1150,'1980-01-01 00:00:00',5,'en','830990340','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','network engineer','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','A friend introduced me to the concept of having the linux system described in a set of config files that will keep all pertinent configuration data. Previously every time I switched laptops, I had to figure out what tools were removed/added etc. to make things work, with nix it\'s a do it once and forget. The only thing I need to worry now is the hardware specs if they needs special consideration. Being flaked it also gives me comfort that I can easily reproduce this.','','Y','','Y','','','','','','','','','work laptop','','','','','Y','','.nix files to manage all my configuration needs ','patching/compiling my own versions if needed for packages','fast merging of new packages (in unstable)','the nix language isn\'t particularly hard to understand or grasp the basic concepts of it, but maybe some additional documentation on ','not sure, probably some amalgamation of git repository for config files and a lot of pain trying to get things to play along with it','','','','','Y','','Y','','','','','','','','none, I\'m not a power user, just trying to get my desktop/laptop setup portable','Y','Y','','','N','I\'m not really a power user, have not much to contribute and wouldn\'t know how anyways.','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','so i can easily switch laptops without having to worry about getting my configs replicated exactly.','','','Y','','','','work laptop','configuration/package mgmt bundling','ability to patch things if they are broken for me and still be managed by the nix','speed of new package incorporation','Some guide similar to nixpills for the OS and module overrides in general, I still find it hard to grasp, what\'s going on','some amalgamation of git and config files that\'s held together with spit, grit and sticktuitiveness','Y','','','','','','','','','','sway','none','none','keep up the good work, and thank you for bringing this project into existence.'),(1151,NULL,2,'en','1272968520','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I started using Nix primarily because of NixOS. The declarable nature of the configuration was very intriguing to me, as it seemed less prone to breaking. I have also been fascinated by functional programming, and Nix has helped me learn some of the fundamentals.','','','','','','I only use with NixOS at the moment','Y','','','','','','Personal computer','','','','','Y','','Declarative system configuration, which can support multiple machines','Nix-shell, I have yet to start using this a lot, but it seems perfect for someone who is learning to code, as it does not clutter up the normal environment','Flakes seem very promising, not just for configuration, but for developing too, but I am still learning about these','Better documentation, specially aimed at beginners. It is clear to me that Nix has some amazing functionality, but it can be tricky to figure out, even more so when you are just learning programming.','Arch mainly, as it is what I am familiar with, however I am also curious about Guix','','','','','Y','','','','','','','','','none of the above, I mainly use Nix for my own purposes','I am not familiar with 2nix, but it sounds interesting','Y','Y','','','N','Lack of knowledge on my part',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1152,'1980-01-01 00:00:00',5,'en','1768363498','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started using Nixpkgs Haskell infrastructure to build my Haskell projects, it snowballed from there.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','The Nixpkgs package set.','nix-shell','','Decrease the bus factor on the NixOS/Nix project.','Guix','','','','Y','','','','','','','','','Y','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','','','','','','','','Y','','','Y','','','','','I3 and Sway','','',''),(1153,'1980-01-01 00:00:00',5,'en','201302159','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','argo-workflow, argo-events, argo-cd','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','Y','','','','','','','','','','','','','','','','','Y','','','','lorri, niv',''),(1154,'1980-01-01 00:00:00',5,'en','2098880123','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','It came with NixOS, but now I like it','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Declarative specification of larger software systems','Source/binary hybrid: Everything\'s change-able/overrideable, with enough pain, and the rest just transparently rebuilds when necessary','Isolation/reproducibility','Cached JIT compilation, it will never be fast enough. Maybe a re-do of nixpkgs with all the lessons learned, while we\'re doing magic...','For development: Guix wouldn\'t exist, so... Docker, I guess? :(','','','','Y','Y','','Y','','','','','','','agola','kolloch/crate2nix, one of the various node2nix tools whenever necessary','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Arch was getting messy, any customization felt like a liability due to having to document how to reproduce it (and usually failing to do that).','Y','Y','Y','Y','','','','Declarative configuration with modules','Easy service configuration','Isolated system generations, can keep multiple versions around simultaneously and select at boot time.','Fix the giant module list!\r\n\r\nService builders instead of singleton service options. Currently, running two instances of a singleton service is unreasonably hard.\r\nBetter service isolation by default.','Maybe one of the immutable distros instead of NixOS (silverblue, if that still exists).','','','','','','Y','','','','','i3, sway','nix-diff, direnv (currently with flakes integration), nix-locate','lorri (direnv offered a daemon-less approach),\r\nhome-manager (makes rebuilds too slow, if integrated into the NixOS system configuration)','<3'),(1155,NULL,NULL,'en','874023347',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1157,NULL,1,'en','915869780','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1158,NULL,1,'en','1499045012','A2','A2','male','','Y','','','','','','','','','','','','','Y','','','','','','Y','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1159,'1980-01-01 00:00:00',5,'en','1018059445','A2','A3','male','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using Nix after migrating to NixOS and it just... made sense.','','','','','','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','Reproducibility/consistency','sandbox','distributed builds','One area where the project is lacking is in documentation. There is some great material in the docs if you know how to find it, but it is especially hard for newcomers to navigate when it is unclear whether a feature comes from nix, nixpkgs, or NixOS, or whether the answer is on github, the wiki, or in the manuals.\r\n\r\nWhat is also missing is examples of the \"gold standard\" way of doing things. Yes, it is possible to find this in the nixpkgs code however I think the docs would benefit greatly by being explicit about topics such as \"this is the way to package a Gnome application\" (provided of course the docs are maintained at the same pace that the codebase changes).','Maybe guix, probably continue using my old bodge of ansible and Arch.','','','','Y','Y','','Y','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was dissatisfied with the tooling for reproducing configuration across machines, ended up with Ansible + Arch, found that too brittle. NixOS appeared to have a higher barrier to entry but was more usable than guix.','Y','Y','Y','Y','','','','','','','Documentation!','Arch + Ansible, maybe guix','Y','','','','','','','','','','i3','Hydra, node2nix (and general integration between nix and node)','\"Just when I thought I was out, they pull me back in.\"','No project is perfect, but Nix is close. Since starting to use it I\'ve haven\'t found anything better. I love Nix! Anything that we can do to lower the barrier of entry to new users would be incredibly helpful - possibly an optional \"batteries included\" installer that has a working configuration with a popular DE - rather than asking users to configure a system from scratch.'),(1160,'1980-01-01 00:00:00',5,'en','19746890','A2','A4','male','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','','','','','Y','Y','Y','Y','Y','','','','','','','Y','','','','','','Copious amounts of stress-relieving efforts.','','','','','','','','','','','','','','TeamCity','','Y','','','','N','Still building experience.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','The promise of a centralized system configuration facilitating easy review and management while not building invisible cruft over time.','Y','Y','Y','Y','Y','','','I can review and manage a system install in an easily formatted single file.','Proper atomic and easily reversible system updates.','A solid package & config foundation to work from.','','Fedora Silverblue.','Y','','','','','','','Y','Y','','','','',''),(1161,NULL,1,'en','1935335159','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1162,'1980-01-01 00:00:00',5,'en','2117437341','A2','A3','male','','Y','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Got to find a better way than using ssh+Perl to administrate 2k+ VoIP servers on client premises.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','','Y','','','','','','Alternatives like debconf/debhelper and https://build.opensuse.org/','','Y','','Y','Y','','','','','Y','Y','','','','poetry','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','','','','','','','','','','Y','','','','','','system.autoUpgrade','','','','sway','home-manager','niv',''),(1163,'1980-01-01 00:00:00',5,'en','1342933325','A1','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I used to use Homebrew to manage packages on my macOS machine. I was fed up with the extremly slow commands (I\'m presuming due to Homebrew being written in Ruby) and I heard about Nix. I was interested in the idea of reproducible builds and having programs installed in an isolated location (/nix) rather than dumping files in /usr/local/bin etc. It was a bit of a steep learning curve. Terminology and lack of macOS documentation didn\'t help either.\r\n\r\nI researched a little more and discovered home-manager. Finally, one location to manage user config and easily rollback when you fuck up your neovim configuration! My love for nix grew and I\'m now comfortable writing my own simple derivations.\r\n\r\nI currently have a nix-darwin + home-manager setup and still use home-manager\'s Homebrew feature to install some packages that are outdated/don\'t work on nixpkgs (I\'ll get around to fixing them some day!) and \'casks\' (desktop apps) because nix doesn\'t put them in ~/Applications (there\'s a GitHub issue for this somewhere).\r\n\r\nCurrently trying to learn about flakes.','Y','','','','','','Y','','','','','','','','','','','Y','','Reproducible builds','Packages installed to isolated location','Easily rollback to previous generations (nix-darwin)','My number one thing:\r\nDocs, docs, docs. First, the naming of Nix (the language), Nix (the package manager), NixOS, and Nixpkgs are very confusing. There needs to be some better user guide than Nix Pills. I found that didn\'t spend nearly enough time explaining nixpkgs and derivations, and instead waffled on about the language which I found extremely easy to grasp (but I understand why others wouldn\'t because I\'m a Haskell programmer used to FP ideas and the syntax).\r\n\r\nThe docs need to be more easy to grasp for new users. The Rust book is a good example.\r\n\r\nMore specifically:\r\n- Better documentation for some of the nixpkgs functions. Some of the functions provided by `import {}.lib` appear to be the same as the ones builtin to the Nix language and there doesn’t seem to be any clear guidance on when to use which version. I’ve also had to look at the source code to find out the difference between writeTextFile, `writeText`, `writeTextDir`, `writeScript`, and `writeScriptBin`.\r\n- Split the nixpkgs docs into multiple web pages. The current gigantic web page that documents so many different things (the `lib` functions, how to make a derivation, specific details for building packages in certain languages, how to contribute to nixpkgs, overriding packages/overlays etc) is quite slow to load and even slower to search for things in.\r\n- More clear docs on hashes. It took me *forever* to find out that the numbers after `sha256:` in `sha256:000…` is different from the numbers after the `sha256-` in the new SRI hashes `sha256-000…`. It\'s improved now, but please improve docs on hashes and explain the differences between them.\r\n- Better error messages\r\n- Prettier coloured output\r\n- More docs for macOS. For example, the instructions here https://nixos.wiki/wiki/Flakes tell you to do `nix-env -iA nixpkgs.nixFlakes` for ‘non-nixos systems’. I installed this package on my machine and it took me a few hours to figure out I shouldn’t have done this as I use nix-darwin and instead should have mostly followed the NixOS instructions. I understand nix-darwin is a community project, but this was very confusing for a new user.','Continue suffering with the horrible speed of Homebrew','','','','Y','Y','','','','','','','','','','','Y','','','','Y',NULL,'N','N','More time and getting enough money for a new device. Currently have a MacBook for school. I\'ve always wanted to try Linux. I\'m not sure whether to use NixOS or Arch first though… definitely want to try both some day but once I finish school (ahh final year of school is so stressful)\r\n\r\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-darwin, home-manager, comma, nix-tree, update-nix-fetchgit','','Thanks for giving us the opportunity to voice our opinions!'),(1164,NULL,1,'en','165263019','A2','A4','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1165,NULL,2,'en','1211006439','A2','A2','male','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Friend recommended it, said I\'d like it. So i tried it and i loved it.','','Y','','','Y','Android','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','Nixos','Flakes','Container image building','Nickel','Probably ostree or just imperative package managers, Arch Linux or Void','','','','Y','Y','','Y','','','','','','','','','Y','Y','','','N','Laziness',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1166,'1980-01-01 00:00:00',5,'en','1511358048','A2','A4','male','','Y','','','','','','','Y','','','','','','Y','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I don\'t have to fight with dependencies.','','Y','','','','','Y','Y','Y','','','Y','','','Y','','','Y','','Use of arbitrary package versions + ability to override build features','Works reproducibly on all Linux distribution1','Remote builds','Nix language server (LSP) which offers reliable completions, templates, etc.','Debian + local builds in a home directory, maybe Docker','','','','Y','Y','','','','','','Y','','','','','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','When I started using Nix on Debian, there was soon no need to keep Debian around.','Y','Y','Y','','','Y','','GUI apps (OpenGL) work without things like nixGL','','','','Debian','Y','','','','','Y','','','','','i3 and sway','lorri\r\ndirenv\r\nnix-tree\r\nnix-ld','',''),(1167,NULL,1,'en','673545267','A2','A5','male','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1168,'1980-01-01 00:00:00',5,'en','1004682423','A2','A5','male','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because I don\'t like rpm and deb packages.','','Y','','','','','Y','','','','','','','','Y','','','Y','','Reproducible','Cannot break other packages','Easy sharing of build environment','I would remove the steep learning curve. It is pretty challenging to discover how to do things in nix. I am always amazed by how simple and elegant the solution is for every problem, but I find it really hard to find it. ','','','','','','','','','','','','','','','','','','','Y','','N','I do not feel competent enough to do it. I have been using NixOS daily as my development machine for about a year, but I still struggle to write quality nix expressions.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I really like the ability to configure the whole system with a single file (two really, because I also use home-manager).\r\nI really like the ease with which I can customize packages and be sure that they will be easily reproducible on any machine. For example, I needed the PGagent extension of Postgresql. It was not included in Nixpkgs, but I only needed about ten lines of home-manager configuration to get it downloaded, packaged and installed on any machine.','Y','','','','','','','Single file configuration','experiment without fear of breaking things','easy extendibility','I would add easier installation of proprietary binary software. Every working environment I know of requires some proprietary software to get things done.','Ubuntu','Y','','','','','','','','Y','','','','','Thank you'),(1169,'1980-01-01 00:00:00',5,'en','1291410775','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted a stable Linux that I could tinker with. Also, I\'m a functional programmer, so it was great to have a declarative configuration.','','','','','','','Y','','','','','','','','','','','Y','','Declarative configuration','Rollbacks','open source','Make nix typed','Arch','','Y','','Y','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','','','','','','','','','','','','','','','','i3 + XFCE','','wayland','Thank you, NixOS is great!'),(1170,'1980-01-01 00:00:00',5,'en','1576328792','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted system that is easily replicable, predictable - or at least fixable and it\'s easy to share configs between machines','','','','','','','Y','','Y','','','','','','','','','Y','','possibility to copy config to new machine and rebuild working system','configuration is in one place','','make it easier to port stuff, I can\'t get jetbrains-toolbox working for months now.\r\nthe language could be easier to learn.','ubuntu','','','','','','','','','','','','','','','','','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','same as nix, i wanted something that would be easy to to rebuild from config, and easy to rollback change','Y','Y','Y','','','','','config is in one place','easy to rollback','','network boot from config xD would be cool ','ubuntu','Y','','','','','Y','','','Y','','xmonad','','',''),(1171,'1980-01-01 00:00:00',5,'en','1211035380','A2','A4','male','','','Y','','','','Y','Y','Y','Y','Y','','','Y','','','','Y','','','Y','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','About 15 years ago I ran Gentoo Linux on all my machines, then I started converting them to Debian installations. Stable on servers and testing on my workstations and laptop. When my laptop broke in 2020 i installed NixOS on it as an experiment while my main desktop still ran Debian testing. The main draw for me was being able to define and build my own packages which I consider to be a hassle on Debian. I believe my background as a Haskell developer made the transition easier and I understood the value proposition of nix right away.','','Y','','','','','Y','','Y','Y','','Y','','Y','','Y','','Y','','concise single file definition of a package','reproducibility','installing without \"installing\" (nixos-rebuild build / nix-shell / etc)','I would like to be able to step through building a derivation. It can be difficult from a nix-shell to go through the phases and run them like they are being built by nix-build, or even know what exactly the phases are. If its already possible to do this via nix repl + nix-shell then my wish would be that it was better documented.','Assuming guix also didn\'t exist. I\'d probably use cabal, pip+virtualenv, debian packages, cargo, plain makefiles and such.','','','','','','','Y','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','About 15 years ago I ran Gentoo Linux on all my machines, then I started converting them to Debian installations. Stable on servers and testing on my workstations and laptop. When my laptop broke in 2020 i installed NixOS on it as an experiment while my main desktop still ran Debian testing. The main draw for me was being able to define and build my own packages which I consider to be a hassle on Debian. I believe my background as a Haskell developer made the transition easier and I understood the value proposition of nix right away.','Y','','Y','','','Y','','plain text configuration','reproducibility','good amount of packaged software','Being able to roll-back or set channels to specific versions. My understanding is that flakes will give me this when it\'s available so the magic wand may not be needed.','Debian','Y','','','','','','','','','Y','','The nixos.org and search.nixos.org websites. The html-rendered documentation for Nix, nixpkgs and NixOS.','','No, I\'m good. Thanks for asking.'),(1172,NULL,NULL,'en','1002048553',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1173,'1980-01-01 00:00:00',5,'en','67406030','A2','A3','male','','','','','','Y','','','','','Y','','','','','','Y','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','i was done with os hopping, and was tired of setting things up al al over again. for my professional life i use chef and puppet. I wanted a config manager for my personal life too. no regrets.','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','declarative, and with flakes for sure now.','reproducable, helped a college who\'s dev env was fucked, suggested installing nix (on macos) and gave him my .nix file (shell/default idk), he was up and running in minutes.','','i\'m used to using nixops for setting up testing virtualboxes, but would love to use vagrant for it.\r\n\r\nwould love to see better debugging tools, or i\'m using them wrong. it has improved for sure, but somethimes i\'m stuck and it would have been something simple if the error message wasn\'t so cryptic.\r\n\r\nthe documentation has improved significant, but there are so many sources and ways to do something, would love to see more examples.','arch, pwobably','','','','Y','Y','','','','','','','','','','bundix','Y','Y','','','N','nothing really, it\'s quite complete for me, i would have contributed regarding nordvpn, but someone is already working on it.\r\n\r\nI probably would in the future, but time is also a matter.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','was tired of os hopping and reinstalling everything. i use chef and puppet in my professional life, and would love to use a config manager for my private life too.','Y','','Y','','','','','declarative','reproducable, had a college with a broken dev env, suggested installing nix (on osx) and gave him my .nix files, he was up and running in minutes','','better debuggin','arch, pwobably','Y','','','','Y','','','','','','awesomewm','','',''),(1174,NULL,1,'en','1741023651','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1175,NULL,NULL,'en','1338332094',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1176,'1980-01-01 00:00:00',5,'en','2039053422','A1','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','N','N','I was just about to!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I was just going to!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Unexpectedly good gender identity question, keep up the good work.'),(1177,'1980-01-01 00:00:00',5,'en','1585722488','A1','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','Run software without installation (nix run)','','Flakes','','I personally found the Nix language quite hard to learn and parse as someone who had no prior functional language experience and found the resources lacking at the time I began. I think it would be easier to learn if some syntax was more explicit like using a `function` keyword as a signpost rather than just a colon. Using parentheses to call functions would make it so you wouldn\'t have errors from a function call being treated as separate elements in an array, which is quite hard for beginners to debug from what I\'ve seen.\r\n\r\nInstead of making flake commands locked behind a configuration option, I think it would be significantly more convenient to have it accessible from a different named Nix binary like `nix3`.','Nothing','','','','Y','Y','','','','','','Y','','','','https://github.com/nix-community/poetry2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I had seen the NixOS website homepage after it was posted on Hacker News and the properties sounded amazing especially coming from someone who had broken the package manager in my system before when running Arch. After a couple of months, I decided to bite the bullet and switch.','Y','','Y','','','','','Declarative system management','Allowing my system configuration to be modular','nixos-vm','','Arch without any declarative system management','Y','','','','','','','Y','','','i3','home-manager and agenix mainly :) flake-utils\' system helpers are very useful too when writing flakes','NixOps (version 2 with flake support was WIP last I checked)','I think flakes are amazing and I hope that they become stable sooner rather than later :)'),(1178,'1980-01-01 00:00:00',5,'en','1253972069','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','See NixOS history. I started using Nix with NixOS.','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','home-manager','Package overrides','Deterministic builds','Functional programming language, even if its quirks, it is way better than trying to shove YAML','Probably the pre-2.4 Nix commands.','PKGBUILD maybe?','','','','Y','Y','','','','','','Y','','','','Depends on what I am working, but https://github.com/DavHau/mach-nix is one that I always need when packaging Python applications.','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','NixOS seemed like an interesting operational system, and I was kinda on functional programming at the time, starting a new job in company using mainly Clojure. It seemed some small number of Software Engineers at the company already used NixOS, so I decided to try, and while it was difficult at the beginning I loved the fact that I never needed to worry about formatting my machine or upgrading my system and getting it borked (something that was common in other distros, I was a big Arch Linux user before). Also the declarative nature fixed one of my main issues that I had from a more traditional Linux OS.','Y','','Y','','','','','Declarative system configuration','Atomic upgrades','Reliable rollbacks','I would split nixpkgs in multiple repositories. As a nixpkgs maintainer/commiter, keeping everything in one repository is a pain to maintain.','Ansible maybe?','Y','','','','','','','','','','i3wm','home-manager','nix-darwin',''),(1179,'1980-01-01 00:00:00',5,'en','640047490','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Ran into too many issues where different development tools where conflicting with each other (example: globally installed vips and would block sharp from installing with npm/yarn) or where different versions of the same package would give inconsistent results (different postgres on different servers, ...).\r\n','Y','','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Declarative management of packages','Option to centralize management for different users/devices (by putting it in git repo)','more controls over versions than homebrew/apt','Better documentation for people just starting with nix','A series of declarative other software for different languages (rbenv, bundler, nvm, npm/yarn, ...).\r\n\r\nI\'d probaly still use homebrew/apt for installing apps and hate it.','','','','Y','Y','','','','','','','','','','yarn2nix bundix (if that counts)','','Y','','','N','Feel like I don\'t have enough knowledge to make edits and test new versions.','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Had to set up a different VPS servers and was dreading the experience of editing a lot of configs through shh on the various machines (with each package having their own DSL). Felt that I needed more control over the installed packages. ','','','Y','Y','','','','declarative control over installed packages','Abstraction of the specific DSL for different packages','ability to easily spin several servers with the same app and slightly different settings thanks to modules','Better documentation for people just starting out','Probaly no specific tools, but just apt to manage packages.','Y','','','','','','','','','','','nix-darwin, home-manager','',''),(1180,'1980-01-01 00:00:00',5,'en','273641757','A2','A3','male','','Y','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I liked the ideas behind it, being a function programming enthusiast. I occasionally used it to install Haskell packages, avoiding cabal\'s lengthy build times. This led me later to install NixOS on my work machine (I didn\'t know at that time that would imply spending months learning Nix before being able to do everyday tasks).','','Y','','','','','Y','','','','','','','','Y','','','Y','','isolated, reproducible development environments','very large and well-maintained package repository','declarative OS and user config','I would create a big reference book which has everything I wish existed when I picked up Nix(OS): a gentle introduction to the basics, and building up *everything* that is needed for package management and package creation, also explaining in detail all the necessary notions along the way. The Nix manuals are completely unsufficient to cover the huge complexity of Nix(OS), and the rest of resources are scattered in many different places, it\'s incredibly frustrating. The NixOS wiki has got better lately, but it\'s still not a great situation.','pacman, and language-specific tools for dev.','','','','Y','','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','Out of curiosity after using Nix for dev. It\'s a painful story. I\'m not sure why I\'m still using it. Maybe because I\'m finally becoming proficient with Nix after 4 years of struggle.','Y','','','','','','','configuration processes encoded by other people (real saints) for my benefit','declarative config','','See my remark on Nix. Documentation and learning resources are highly incomplete, scattered, and unwelcoming.','Arch Linux.','Y','','','','','','','Y','','Y','i3','home-manager','','Nix(OS) is an impressive effort, but given my experience using it, I wouldn\'t recommend it to anyone else, unless they have extremely specific needs. Is that something that can be changed, or is it due to the intrinsic complexity of what Nix(OS) does? I don\'t know for sure.'),(1181,'1980-01-01 00:00:00',5,'en','12924956','A2','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Started using the package manager, hopped from Arch to Manjaro to VoidLinux, wanted to have my system configuration in git to quickly get up and running after a reinstall.','Y','Y','','','','','Y','','','','','','','','Y','','','Y','','Repeatability ','Stability','Portable nix-shell scripts','Easy/easier flakes, self-hosted (on GitHub) packages.','pacman, apt-get or docker containers','','','','Y','Y','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','','','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1182,'1980-01-01 00:00:00',5,'en','286303081','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','I was looking for a FOSS tool to automate deployment a many machines. I found out about NixOps and that is how I entered the Nix ecosystem.','','','','','','','Y','','','Y','','','','','Y','','','Y','','','','','','','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','After learning about NixOps, I learnt about NixOS and I was very satisfied with the declarative configuration. So I started using it everywhere (development machines, production servers).','Y','','','Y','','','','','','','','Another GNU/Linux distro','','Y','','','','','','','Y','','','','','Please improve the documentation of NixOps. This project status is unclear. Is the stable release 1.x or 2.x? Where is the official website other than the github repo?'),(1183,'1980-01-01 00:00:00',5,'en','1383158775','A6','A2','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I first found it because I came to know that it had lot of packages and I installed it on my Void Linux because I loved the idea of reproducible builds and declarative package management. Now I completely switched to NixOS. ','','Y','','','','','Y','','','','','','','','Y','','','Y','','Declarative system and developer environments','Flakes','Overlays','','Guix','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','I can write some nix derivations but I am still doubting my nix skills because I feel like I never delved deeper into learning nix.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I have used Nix with Void Linux distribution and I really loved the idea of have a reproducible system with declarative system and package management. The rollbacks are cherry on top.','Y','','','','','','','Declarative system and package management','Flake','Rollbacks','','Guix','Y','','','','','','','','','','River','','',''),(1184,NULL,1,'en','974343002','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1185,NULL,NULL,'en','434537310',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1186,'1980-01-01 00:00:00',5,'en','399172086','A5','A2','male','','','Y','Y','','','','Y','','','','','','','','','','','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I heard about it from a close friend who likes to configure their own desktop. On my own, I\'d been writing more and more configuration scripts to get me quickly set up on a fresh OS, but there was so much state data and it was nearly impossible to manage.','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproduceability','Version upgrade/rollback safety','Declarative configuration','I\'d let the some of the other input args to flakes (like nixConfig) allow non-trivial functions, add more (optional) traceability for nix-store and other non-evaluation components, and add type declarations/restrictions.','QubesOS + VMs and Containers probably','','Y','','Y','Y','','','','','','','','','','nix-community/node2nix, nix-community/poetry2nix, nix-community/naersk, terranix/terranix','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was using home-manager, and it seemed like a logical next-step. Only limitation at the time was that I was using Windows/WSL. I originally started using it and went back and forth, until I started to really understand the Nix language and was able to write it and scripts well enough to fix most of the issues or understand what to do when switching from Windows.','Y','','Y','','','','','Reproduceability','Version upgrade/rollback safety','Declarative configuration','I\'d probably add a few more image builders to support other platforms, and create a module to define libvirt VMs declaratively.','Probably still Windows, WSL, and Containers','Y','','','','','','Terranix','','','','Sway','home-manager, pre-commit-hooks.nix, statix, nix-linter, nixpkgs-fmt, nix-index, rnix-lsp, nixos-artwork, cachix, sops-nix, nixos-hardware, nix-direnv, vim-nix, nixos-generators, comma, nix-tree','alejandra, nixpkgs-wayland, neovim-nightly-overlay, vscode-nix-ide, napalm, vulnix, nixfmt','I wish I had more time to spend on Nix and NixOS.'),(1187,'1980-01-01 00:00:00',5,'en','1838351755','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','I switched jobs to a company that uses Nix and NixOS extensively.','Y','Y','','','','','Y','Y','','Y','','Y','','','Y','Y','','Y','','Dependency management','Consistent environment','Declarative system administration ','Better CI solutions','Docker, Salt/puppet','','','','Y','','','Y','','','','','','','','','Y','','Y','','N','I use Nix but don’t fully understand it','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','I switched jobs to a company that uses NixOS for developer workstations','Y','Y','','Y','','Y','','','','','','','Y','','','','','Y','','Y','','','','gitignore-source','',''),(1188,NULL,1,'en','32294361','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','iOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1189,'1980-01-01 00:00:00',5,'en','95298398','A1','A2','male','','','','','','','Y','Y','','','','','','','','','','','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Sounds wired, but I actually knew (and started to use) NixOS before I actually learned and knew about Nix :-)\r\nI started using Nix because I started using NixOS (not sure if there is a question for NixOS later?)\r\n','','Y','','','','','Y','','','','','','Daily use desktop','','Y','Y','','Y','','NixOS and Nixpkgs?','','','','rpm-ostree maybe?','','','','Y','Y','','','','','','Y','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','Daily use, e.g. random web surfing','A2','I was a distro hopper when I first know NixOS, then I was advertised by some random articles','Y','','','','','','Personal desktop?','Nixpkgs has all packages I need','A \"clean\" system','','Nothing yet. I will send some pull request when I have some idea.','Fedora Silverblue or Arch Linux','Y','','','','','','','Y','','Y','Pantheon','Does Mic92/nixpkgs-review and jtojnar/nixpkgs-hammering count?','',''),(1190,'1980-01-01 00:00:00',5,'en','459514294','A2','A2','male','','','Y','Y','Y','','Y','','','Y','Y','Y','Y','Y','','Y','','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Installed NixOS a few years ago because I wanted to try it out. No particular reason, but the benefits really opened my eyes and I stick by it whenever I can now.','','Y','','Y','','','Y','Y','Y','Y','','','','','Y','','','Y','','Declarative env management','Declarative system config/management','Rollbacks','I would love better documentation :-)','Guix','','','','','','','','','','','Y','','','','','Y','','','','N','I haven\'t had a genuine need to yet :-)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as Nix story','Y','Y','Y','Y','','','','Same as before','Same as before','Same as before','I wish I could do this, but it is cursed and I wholly understand why I cant:\r\n\r\n```\r\n{\r\n a = 123;\r\n b = {\r\n parent(a) = 1234;\r\n };\r\n}\r\n```\r\n\r\nIf I _can_ do that... let me know please :-)','Same as before','Y','','','','','Y','','','','','dwm','Lorri, home-manager','N/A','Thanks so much!'),(1191,NULL,1,'en','716959023','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1192,'1980-01-01 00:00:00',5,'en','829478974','A1','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','','','','','','','','Y','','','Y','','Flakes','Nix-Shell','Home-Manager','[ADD] - a cli similar to guix','Guix, Silverblue','','','','Y','Y','','','','Y','','','','','','','','Y','','','N','low end machine and exams','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','rollback','declarative config','atomic upgrade','a cli similar to guix','guix','Y','','','','','','','','','','sway','home-manager','divnix','a simple shell script installer would make the distro more appealing to new comers'),(1193,'1980-01-01 00:00:00',5,'en','1739348984','A1','A5','male','','','Y','','','','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Declarative configuration, dependency solution, shared config over many devices, great community','','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Decorative configuration','No dependency issues','Shared configuration','Pure by default','Guix','','','','','Y','','','','','','','','','','','Y','Y','','','N','Time, imposter syndrome & yet to find my place','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','','','','','','','','','','','','','Y','','','','','','','','Y','','sway','','','Thank you'),(1194,'1980-01-01 00:00:00',5,'en','1699203738','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I discovered Nix and NixOS at the same time. It\'s great to use nix when developing my projects and homework assignments.','','Y','','Y','','','Y','','Y','','','','','','Y','Y','','Y','','Stable and predictable, reproducible configs (flakes)','Easy installation of development and build environments','Declarativeness','Make the nix language less obtuse\r\nImprove the documentation and guides.','Probably containers with Podman','','','','Y','Y','','','','','','','','','','','','Y','','','N','Didn\'t feel the need yet','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Always felt that my desktop linux setup with my dotfiles felt fragile. When I discovered NixOS and home-manager I finally felt that my computing environment is stable.','Y','','Y','','','','','','','','','','Y','','','','','','','','','','','','lorri, niv. now i use flakes',''),(1195,NULL,NULL,'en','1582126127',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1196,NULL,NULL,'en','536313562',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1197,NULL,2,'en','1538012874','A2','A3','fem','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','Y','','','Y','','Y','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','','Y','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1198,'1980-01-01 00:00:00',5,'en','1861602036','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I started using package management with Nix around 2014 when I started using NixOS, but I didn\'t really learn it in full until I started to use it to build reproducible development environments a few years later.','Y','Y','','','','','Y','Y','Y','','','Y','','','Y','Y','','Y','home-manager','an enormous repository of package build specifications','reproducible builds','a simple and declarative (not imperative) configuration language','I would remove flakes, or at least most of it. Nix already supported version pinning just fine. Simple improvements to the channel system and bootstrapping problems with respect to downloads would have sufficed. In an effort to appeal to normies, all kinds of corners were cut, and the whole command line was shat up with half-baked changes. We\'re at serious risk of becoming like Bazel, a giant bloated chungus full of random adhoc features with no coherent design or logic to them.\r\n\r\nThe other really important thing I would change is to properly layer the project. The daemon should have a nice standard protocol (e.g. with gRPC) and no dependencies on any other parts like the evaluator. The evaluator should be a fully modular library which could be reused in e.g. a CI system. The command line should just just be a simple driver program which uses the evaluator and talks to the daemon with the standard interface. If some people are too addicted to flakes, they can make an alternative driver which supports it, and it shouldn\'t be allowed to pollute the evaluator or language semantics in any way.','I would probably use one of those janky dotfiles managers to attempt to replace home-manager. I\'d probably use Arch Linux as my main distro. Other than that, I\'d probably just be sad.','','','','Y','','','','','Y','','Y','','','','cabal2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I discovered NixOS around 2014 and started using it on my personal computer immediately because the design and philosophy was so obviously better than regular Linux distros. I was very tired of thing randomly breaking after updates on Ubuntu, or changing system configuration consisting of poking and prodding random files with no change tracking. NixOS was a breath of fresh air and has made using computers much more fun and less stressful.','Y','','Y','','','Y','','declarative configuration','rolling releases','rollbacks','Unlike Nix, overall I\'m pretty satisfied with NixOS. I guess one thing that would help drive adoption would be to have a small number of official but community-maintained standard configs that would set up desktop environments and replicate the \"batteries included\" feel of distros like Ubuntu. I like that the default configuration is unopinionated, but if you want pleasantries it requires too much manual research.','probably just Arch','Y','','','','','','','','','','XMonad','Home-manager','Nix-darwin','Nix is too important at this point to let Eelco have dictatorial control over the project, and he is a bit out of his league. It needs a proper governance structure.'),(1199,'1980-01-01 00:00:00',5,'en','363914726','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Engineer, control system','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Looking for ways to escape dependency hell. Learned of NixOS from a friend. It took 2 attempts to actually use it and now it works really smoothly.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','Reproducibility','Declarativity','','Java support. But honestly I think it is mainly the \"fault\" of the Java community and not Nix/NixOS (packaging Java SW is also hard on other GNU Linux distros).','dpkg or rpm (urgh)','','','','Y','Y','','Y','','Y','','','','','','mvn2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started with Nix on Debian and at some point just thought to go full Nix with NixOS.','Y','Y','Y','','','','','Declarativity; It is so nice to git-commit the system config and to know that there are no undocumented system config changes somewhere that would be missing on the next reinstall.','Reproducibility','The awesome interplay between all the Nix tools.','Wayland support with sway (but I think that is just a matter of time :-)','Debian, maybe Gentoo','Y','Y','','','','','','','','','lightdm + i3wm','The nixpkgs web-search and NixOS options web-search. Alternatively I just `git grep` the nixpkgs repo, e.g. to find parameters for expressions/packages.','','Nix/NixOS opened my eyes to the world of SW packaging. I didn\'t do this before, but with Nix it becomes so easy.\r\n\r\nTo me, there is no real lack of documentation. I initially thought there was, but now, I find the necessary info in the documentation or directly in the code (e.g. looking for solutions/patterns used for other packages).\r\n\r\nThere are so many bad build scripts in projects out there that make assumptions on the OS, but actually don\'t belong into the build system (e.g. git cloning extra dependencies, loading config files from hardcoded paths etc).'),(1200,NULL,NULL,'en','539060424',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1201,'1980-01-01 00:00:00',5,'en','775960865','A1','A4','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','move cache to ipfs','not linux really','','','','','','','','','','','Y','','','','cabal2nix','Y','','','','N','I\'ve never started actually, NUR is a simpler thing','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','move cache to ipfs','not linux','Y','','','','','','','','','','i3','','','don\'t cut russia please '),(1202,NULL,1,'en','901368847','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1203,'1980-01-01 00:00:00',5,'en','512042965','A2','A3','male','','','','Y','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend recommended it to me. Initially I only used it as a nice tool for managing servers (via Nixops), but eventually I decided to try using NixOS on my primary computing machines. This worked surprisingly well and now all my devices run Nix in some way.','','Y','','','','','Y','','Y','Y','Y','','','','Y','Y','Y','Y','','Real reproducibility','Configuration transparency','Binary caching out of the box (using public nixpkgs channels cache)','Remove nix-env and channels. Make flakes the default option.','Now that I\'ve tried nix, I can\'t see myself ever going back to anything I used previously. I\'d probably end up reinventing it myself (if I still had the knowledge of what it can do).','','','','Y','Y','','','','Y','','','','','','https://github.com/cachix/elm2nix','Y','Y','','','N','I\'m stupid','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Nix worked well enough for me to try a distro built around it and it stuck with me.','Y','','Y','Y','','','','Declarative service management','Stable environment (as in nothing should break if I don\'t touch the flake.lock)','Code reuse between machine configurations','Make user environments fully declarable. Right now only a small fraction of applications can be configured via nixos and home-manager, with the latter being quite hacky. I do realize that this is due to applications not really supporting external configuration methods and this is unlikely to change, but one can dream.','Gentoo','Y','','','Y','','','','','Y','','xmonad','https://github.com/nixos-rocm/nixos-rocm','',''),(1204,'1980-01-01 00:00:00',5,'en','281397573','A2','A5','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Nix is used for package management on the clusters I use for my research. I discovered Nix when I started to use theses clusters a few years ago.','Y','Y','','','','','Y','','','Y','','','','Y','Y','','','','','Reproducible builds with nix-shell','Package management on different plaforms (macOS and Linux)','','I would make the nix language simpler.','brew and conda. guix maybe. ','','','','Y','Y','','','','','','Y','','','','None.','','Y','','NUR','Y',NULL,'N','Y',NULL,'I find it too complex to use with respect to Debian.','Nothing, I\'m happy with Debian.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nixpkgs-format\r\nnixpkgs-review\r\nnix-direnv\r\n','None.',''),(1205,'1980-01-01 00:00:00',5,'en','707293205','A2','','','','','','','','','','','Y','','Y','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','','','Y','','','','','','','Y','Y','','','','','Integrates well with NixOS (Really like the configuration.nix approach)','Nixpkgs Monorepo hosting (on Github) and tools, like search on nixos.org. Make it extremely great to learn, troubleshoot and contribute. Everything is in one place.','Documentation (manuals hosted oh nixos.org) is pretty good.','Improve documentation (the manuals on nixos.org) even more.\r\n\r\nBe able to install nix as user in HOME and still be able to use the binary cache.','Fedoras toolbx is nice.\r\nMore flatpaks.\r\nWhatever gets the application installed (conda forge, brew).\r\nMaybe guix?? (never used it)','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','','','','','','being able to configure a Linux system with one file.','Everything is in one repo on Github. Great to learn, troubleshoot and contribute.','Being able to switch between generations on boot.','Improve documentation manuals on nixos.org even more.','OpenSuse (has btrfs + snapper per default); can also rollback the system on boot.\r\nFedora: seems to me to be an extremely polished desktop distro with a great community and documentation.\r\n','Y','','','','','','','','','','Sway (+ Gnome/Gtk libs/tools)','','','Really like the status quo. (Currently, I do not really care about the new features like flakes and nickel; I will follow the development though and take a good look at them after they have become stable.)\r\n\r\nAll in all: really love NixOS!'),(1206,'1980-01-01 00:00:00',5,'en','10062562','A2','A3','male','','','','','','','Y','','','','','','','','','Y','Y','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend of mine told me about Nix as a build tool which avoids the dependency hell of other package systems and also gives a declarative way to administrate Linux systems, compared to Puppet/Ansible.','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','','Y','','isolated/sandboxed builds','pure and reproducible evaluation','reusability/extensibility of existing derivations','','Probably still Ansible/Puppet for state management (installed packages/settings) and deb packages build with pbuilder for a bit of isolation (just thinking about it releases horrible repressed memories)','','','','Y','Y','','Y','','Y','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','the extensible module system','reusability of modules','testing configurations in qemu virtual machines quickly','A unified and clear way to override packages with consistent self references which is also composable','Probably Arch Linux or Gentoo','Y','','','','','Y','','','','','sway','','',''),(1207,NULL,NULL,'en','1150825496',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1208,'1980-01-01 00:00:00',5,'en','1443592775','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1209,'1980-01-01 00:00:00',5,'en','1470888863','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(1210,'1980-01-01 00:00:00',5,'en','1969402995','A5','A3','male','','','','','','Y','','','','','','Y','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A1','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','','','','','','','Y','','','N','I don\'t got the time bro. ','N','N','lots of monies. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1211,NULL,1,'en','669058615','A5','A2','fem','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1212,'1980-01-01 00:00:00',5,'en','896704833','A2','A5','male','','Y','','','','','','Y','','','','','','','Y','','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','As my daily driver','A3','I have been interested in Haskell since about 1999. Nix penetrated my consciousness because of contact with the Haskell community, but I deliberately avoided looking into it for quite some time, because I knew I did not have time for such distractions. Once I did look at Nix, it was immediately clear to me that this (the underlying principles, if not necessarily this specific incarnation) is a vast step in the right direction in terms of package management, system configuration, etc. I immediately set about transitioning my OS and my development projects to Nix and NixOS. Thus I have replaced one nightmare with another one. The difference is that pre-Nix package/system configuration it\'s just a big, continuous nightmare that offers no hope, while Nix is a huge time-sink of a nightmare with some light at the end of the tunnel: you can, with a lot of effort and frustration, produce useful, reproducible, (relatively) stable systems. It\'s veeeery painful, but it\'s better than the alternatives, and it offers hope of respite in the long-term.','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Declarative specification','Reproducibility','Providing development environments for colleagues','+ Remove all mention of `nix-env -i` from the docs. Whilst we\'re at it, remove `nix-env`.\r\n\r\n+ Remove channels, `NIX_PATH` and other sources of non-declarative irreproducibility, inconsistency and mystery. Flakes are a huge improvement.\r\n\r\n+ Replace the huge, messy, ad-hoc, organically-grown, woefully under-documented \'standard\' library with something coherent.\r\n\r\n+ Improve the error messages, which all too often are literally *worse* than useless: sometimes the error messages cause wastes of time which would have been avoided if the message were simply \"ERROR\" and nothing else.\r\n\r\nAdd home-manager, or something like it, as a standard part of Nix.\r\n','Sedatives?\r\n\r\nGuix?','','','','Y','Y','','','','','','Y','','','','https://github.com/cargo2nix/cargo2nix\r\n','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','As my daily driver','A3','Exactly the same reasons as those for starting to use Nix ... copypasta:\r\n\r\nI have been interested in Haskell since about 1999. Nix penetrated my consciousness because of contact with the Haskell community, but I deliberately avoided looking into it for quite some time, because I knew I did not have time for such distractions. Once I did look at Nix, it was immediately clear to me that this (the underlying principles, if not necessarily this specific incarnation) is a vast step in the right direction in terms of package management, system configuration, etc. I immediately set about transitioning my OS and my development projects to Nix and NixOS. Thus I have replaced one nightmare with another one. The difference is that pre-Nix package/system configuration it\'s just a big, continuous nightmare that offers no hope, while Nix is a huge time-sink of a nightmare with some light at the end of the tunnel: you can, with a lot of effort and frustration, produce useful, reproducible, (relatively) stable systems. It\'s veeeery painful, but it\'s better than the alternatives, and it offers hope of respite in the long-term.','Y','','Y','','','','','Declarative specification','Rollbacks','Extensibility and version mixing','','Was growing tired of stable Debian\'s outdated packages and the difficulty of trying newer versions of packages, before switching to NixOS. So I might have moved on to some other Linux by now. Or I might have finally given some version of BSD a go.','','','','','','','','','','','Xmonad','Oxalica Rust overlay','Mozilla Rust overlay',''),(1213,'1980-01-01 00:00:00',5,'en','1689589070','A2','A2','male','','Y','','','','','Y','','','','','','','','','','','Y','','','Y','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','declarative software management','automatically compiling custom packages','deduplication','','some kind of horrible patchwork of btrfs snapshots, docker, ansible, pacman','','','Y','Y','Y','','Y','','','','','','','','IOHK haskell.nix https://github.com//input-output-hk/haskell.nix\r\n\r\nNixpkgs node2nix thingy\r\nNixpkgs cargo2nix thingy','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','Y','Y','','','','','','','','','','Y','','','','','','','','','','dwm','flake-utils-plus\r\nlourkeur/miniguest\r\nnumtide/devshell','digga DevOS',''),(1214,'1980-01-01 00:00:00',5,'en','2045520677','A5','A3','male','','','','','','Y','Y','Y','Y','Y','Y','','Y','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','Frustrated that software was not packaged in a uniform way with system vs lang specific package managers.','','','','','','','Y','Y','','','','','','','Y','Y','','Y','','Reproducibility','Dependency tracking','Sandboxing','Remove flakes\r\nAdd types\r\nFix remote builder bugs\r\nAllow remote builders to pull from queue rather than be told what to do.','No idea :( Guix? Gobolinux?','','','','','','','Y','','','','','','','janky in-house thing to nix-build','https://github.com/NixOS/cabal2nix\r\nhttps://github.com/kolloch/crate2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','Got rid of Ubuntu over the summer between semesters','Y','Y','','','','','','Share configurations with friends and coworkers','Experiment with config without borking machine','','Support multiple kernels, overhaul module system to get rid of ambient authority.','No idea','','','','','','Y','','','','','Sway, XMonad','Home-manager!!!\r\n\r\nIt is very good, and the best way to introduce new uses to Nix.','','Very scared of flakes'),(1215,'1980-01-01 00:00:00',5,'en','780634263','A5','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Purely functional and declarative','','Y','','Y','Y','','Y','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Reproducability','Systems/projects composability','Unity across all software','Definitely include Nix 2.4 + in NixOS by default. \r\n\r\nDefinitely add content addressable paths. GET RID OF MULTI-USER NIX MODE! I can\'t sell nix to anyone if I have to convince them to give a bunch of priviliges and create a bunch of nixbuild accounts/permissions etc on their systems. Removing nix should be as simple as removing /nix in single user mode.\r\n\r\nBetter shells by default in which to debug derivations. \'nix develop\' does nothing to help.\r\n\r\nDebugging derivations is the worst part about nix. It\'s extremely difficult. Here I am 3 years in and I still get errors in my configurations that I have no idea where they came from. They likely came from my use of nixpkgs, but where? there needs to be better tracing back to the code you have in front of you.','Guix i guess, or some emacs/orgmode derived offspring.','','','Y','Y','Y','','Y','','','','Y','','','','dream2nix\r\nhttps://github.com/nix-community/dream2nix.\r\n\r\nEverything else is just confusing or repeating work.','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because I wanted to apply my dotfiles and system configurations in a reproducible, declarative way. I started with just user dotfiles and combined nixos with them.\r\n\r\nI want to build all of my machines from one repository, DRY.','Y','Y','Y','Y','Y','','','','','','REMOVE SYSTEMD as a hard dependency! be init system independent.\r\n\r\nSort of like:\r\nNixNG: https://github.com/MagicRB/NixNG\r\nSuckless NixOS: https://www.mail-archive.com/nix-dev@lists.science.uu.nl/msg34206.html\r\n\r\nFind a method of reproducing/saving STATES with nixos-generations! What\'s the point of rolling back to older generations if the state was already upgraded by a new NixOS generation. Maybe use some btrfs or zfs magic. I don\'t know how particularly. But I want time travel! \r\n','probably debian or arch.','Y','','','Y','','','Nixus','','','','Sway','DevOS: https://github.com/divnix/devos\r\nDigga: https://github.com/divnix/digga\r\nNix Bundle\r\nNix portable: https://github.com/davhau/nix-portable','yarn2nix\r\nNixOps\r\nniv','I\'m concerned about the direction that the nix community is taking with RFC-98, and carving out huge areas for gender minorities and enforcing that further by creating new community mod frameworks to kick out any unwelcome opinions. If this is how its going to be, we should carve out areas for alcoholics, drug abusers, etc. so they too can get better and thrive. (Serious). However, this would greatly increase the scope of the project, so I\'d rather leave those things outside.'),(1216,NULL,1,'en','613953468','A1','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1217,NULL,2,'en','1882031689','A2','A4','male','','','','','','Y','Y','','','Y','','Y','','','','','','Y','Y','','','Y','','Y','','','Y','','Y','','iOS, Android','N','N','Appeal of configuration management of the operating system; system reproducibility, appeal of more stability across upgrades',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1218,'1980-01-01 00:00:00',5,'en','774521528','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend (Lassulus) told me about it and convinced me that it\'s something I should try out','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','reproducability','statelessness, where possible','deployment (e.g. nix-copy-closure)','Most of the implementation and a bunch of implementation details, probably. E.g. evaluation performance, how binary caches work, how IFD works, the fact that a bunch of nix commands randomly start building if you hand them derivations now.\r\nMaybe I just have a problem with the governance of the development, so I guess I\'d like to see that change.','Probably ansible','','','','Y','',' ','Y','','Y','','','','','','https://github.com/stephank/composer-plugin-nixify\r\nhttps://github.com/svanderburg/node2nix\r\nhttps://github.com/nix-community/yarn2nix\r\nhttps://github.com/nix-community/bundix/\r\nhttps://github.com/rvl/bower2nix/\r\nhttps://github.com/nix-community/poetry2nix/','Y','','','disabledModule + imports','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as nix, I was told by a friend about it and therefore tried it. I preferred it over what I was using at the time, Arch Linux and Debian, so I started switching all my systems to it.','Y','Y','Y','Y','','Y','','the module system in general','switch-to-configuration','','Some legacy cruft, e.g. users-groups.pl. I\'d also like aarch64 to use a ggc newer than version 9.','Arch Linux, Debian, … GuixSD?','','','','','','Y','','','Y','','','right now, https://github.com/thoughtpolice/eris\r\nrobotnix, if that counts','https://github.com/svanderburg/composer2nix\r\nnixos-rebuild\r\nnixops',''),(1219,'1980-01-01 00:00:00',5,'en','341216789','A5','A3','male','','Y','','','Y','','','','','','','','','','Y','','','Y','','','Y','','Y','Y','','','','','Y','','','N','N','Better introduction to using flakes for data science apps and libraries (numpy, scipy, jupyter, pytorch, tensorflow, etc)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','More documentation/confidence in transitioning from Ubuntu/Debian systems to nixos',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Been following nix development for a couple of years, flakes is a game changer. Very excited to use them, though an easier transition to flakes would be great.'),(1220,NULL,3,'en','491850260','A2','A5','male','','','','','','Y','','','','','','','','','','','','Y','','','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','because i like software to work, i also don\'t like long compile times.\r\n\r\nNix was off my radar for so long, i don\'t really know how it was, it seems to get no mentioned on public channels, websites. I discovered it from a friend.\r\n','Y','Y','','','Y','embedded phone ','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','Flakes','Nixos system configurations','Nixos Testing framework','remove nix-env\r\nremove channels\r\nadd a GUI installer, just get students and newbies up and running quickly.\r\nMake nixpkgs smaller, break top level applications of into their own flakes, leaving just libraries to remain in nixpkgs.\r\nadd more Nixos tests\r\nImplement a pijul fetcher first class for flakes.\r\n\r\n \r\n\r\n',' think i would of knocked IT on the head, and retired from the ever increasing complexity and bit rot. :-)','','','','Y','Y','','Y','Y','','','','','','','dream2nix ;-)\r\n\r\ncabal2nix\r\nnode2nix\r\ncabal.nix\r\n\r\n\r\n','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','.','Y','Y','Y','Y','','Y','','flakes','Nixos configurations','Tests','','','','','','','','','nixinate','','Y','','',NULL,NULL,NULL),(1221,'1980-01-01 00:00:00',5,'en','1550630045','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Developer, blockchain','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I switched to NixOS from Windows, as I had become very interested in functional programming.','','','','','','','Y','','','Y','','','','','Y','Y','','Y','','nix develop','nix build','modules','','Guix','','','Y','Y','Y','','','','','','','','','','https://github.com/ursi/purs-nix (if that counts)','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I switched to NixOS from Windows, as I was getting very into functional programming.','Y','','','Y','','','','declarative swttings','','','A blessed means of managing files in home directories','Guix','Y','','','','','','','','','','i3','','',''),(1222,'1980-01-01 00:00:00',5,'en','1855681967','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','','guix','','','','','Y','','Y','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1223,'1980-01-01 00:00:00',5,'en','2060182119','A2','A4','-oth-','fuckin cyborg','Y','Y','','','Y','Y','','Y','','','','','','','','','Y','','','Y','','Y','Y','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','for config management','','Y','','','','','Y','Y','','Y','','','','Y','Y','','','Y','','declerative system','one single src of trouth','','nix ops really really sucks. i want something that solves all that ochestration issues','i prefer using guix over nix so its kind of the opposit situation','Y','','','Y','Y','','','','','','','','','woodpecker-ci','','','Y','','','N','i prefer guix over nix','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','one single src of truth','Y','Y','Y','Y','','Y','','to have guix','declarativeness','','i would move the nixos community to guix','i am using guix more than nixos','Y','','','Y','','','','','','','i3/sway','guix','nix and nixos',''),(1224,NULL,1,'en','1831519581','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1225,NULL,1,'en','1471729008','A6','A3','male','','','','Y','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1226,NULL,1,'en','1464211145','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1227,'1980-01-01 00:00:00',5,'en','444110508','A3','A4','male','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','To set up distinct development environments.','','','','','','','Y','','','','','','','Y','Y','Y','Y','Y','','','','','','Containers','','','','','','','','','','','Y','','','','mach-nix https://github.com/DavHau/mach-nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','Arch Linux','Y','','','','','','','','','','AwesomeWM','','',''),(1228,'1980-01-01 00:00:00',5,'en','824028702','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Seemed like a good way to have a configurable operating system. And I already knew someone familiar with nix, to help me.','Y','','','','','','Y','','','','','','','Y','Y','','','Y','','Reproduceable system config ','nix-shell','','I would add documentation that starts with a working derivation and works backwards through the concepts.\r\nI would add a way to make built in functions easier to discover.\r\nI would change nix function syntax to a more common model, braces for application.\r\n','I’d try to define my dev environments through docker images and shell scripts.','','','','','Y','','','','','','','','','','Go2nix\r\nNpm2nix','Y','','','','N','No package that I was generally missing','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Rollbacks and declarative package management ','Y','','','','','','','','','','','','Y','','','','','','','','','','Sway ','','',''),(1229,'1980-01-01 00:00:00',5,'en','1697765120','A2','A3','male','','','','','','','Y','','Y','','Y','','','','','','','Y','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Dotfiles on steroids, extensive package repository, good mix between stable & bleeding edge','','','','','Y','','Y','','Y','','','','','','Y','Y','','Y','','Configurable OS','','','Keep things static, focus on documentation','Ubuntu & reinstall the os every 6 months. Also docker.','','','','','Y','','','','','','','','','','dconf2nix, yarn2nix','','Y','','','N','A prominent `How to build your first derivation and contribute to nixpkgs`','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1230,NULL,NULL,'en','1293739901',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1231,'1980-01-01 00:00:00',5,'en','1580881998','A2','A3','male','','','','','','','','Y','','','','','','','','','','Y','','','','','Y','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Because of Windows 11 I changed to Linux Mint.\r\nFrom there I was actively searching for \"the best\" Linux distro for my case (professional and recreational programmer).\r\n\r\nFrom work I knew how frustrating non reproducibility is.\r\nAnd since I was new to Linux I was also not attached to the FHS.\r\nFurthermore the idea to have all the configuration as actual code (not just a YAML or a configuration folder) is very appealing.\r\n\r\nThe concept of Flakes were the last drop needed to convince me to make a cold jump into NixOs.\r\nIt is very hard and there is lots to learn.\r\n\r\nBut being able to roll back gives me confidence in trying out all the weird stuff.\r\n(I also used this ability already often enough...)\r\n\r\n1 Month of difficulties and learning the ecosystem, but now I could never go back.\r\nIt is truely the best way to build an Operating Systems and now I also realize it may the the best way to build and deploy Software in general.\r\n\r\nThank you all for your great work! \r\nThis is truely a great project and one of a kind!','','','','','Y','','Y','','Y','','','','Desktop','','','Y','Y','Y','','The nix store as immutable and deterministic cache of everything. I can be assured that what is inside the nix store is self contained and unchanging.','The nix system as build system (derivations and nix build) which deploys even private hobby projects directly into the OS for usage.','Flakes are a huge deal for me. I can see the input and ouput of programs/configuration/helper functions and use the building blocks like an actual programming project.','I come from a F# where the language support is incredible, most types are infered and if I hover over something it tells me exactly\r\nwhat is under my cursor.\r\nWith F12 I can easily go to the definition, even if it is in another repo sometimes (if the source is available).\r\n\r\nUsing nix as a language feels a bit clunky in comparison, since it actually has all the types and since the evaluation is mostly hermetic a language server should be (at first sight) be able to infer types and maybe also be able to infer whether some configuration options are missing at programming time.\r\nFurthermore, since most things come from nixpkgs, which is commented very good, it may be even possible to show these comments while programming such that one does not need to look up the documenation as much.\r\n\r\nBut in reality I need to run the nix evaluation manually and then wonder why my types do not fit (e.g. expected string but got list or something).\r\n\r\nIf I had this magic wand I would add deep and integrated programming support for the language.','I did not see anything that comes close to nix at all. I would probably just live the rest of my life in perpetual darkness and reconfigure my systems over and over again...','','','','','Y','','','','','','','','','','','Y','','','','N','Probably the time that I would have to invest to actually contribute something of value (from a code perspective).\r\nI am just not proficient enough and my nix code is hacked together frankenstein like from many online blogs and code snippets I found\r\nhere and there.\r\n\r\nAnd all the packages I use are actually already there.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Same story as nix, I do not see the projects as different. I, as a user, see NixOs and Nix as the \"same thing\".\r\n(Even if they are not technically the same.)','Y','','Y','','','','Desktop','Same as in the nix answers.','','','','','Y','','','','','','','','','','none+XMonad','','','Thank you all for your work and this great and unique project.\r\nIt is a ray of immutable and deterministic hope inside this mad imperative and non reproducible world of YAML and configuration drift.'),(1232,NULL,NULL,'en','509661005',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1233,'1980-01-01 00:00:00',5,'en','1504495669','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I found out about Nix and NixOS when learning Haskell, and I wanted to test another GNU/Linux distro.','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','Immutability','Reproducibility','A lot of packages in nixpkgs','add support for unicode in Nix URLs\r\nrewrite Nix in Rust\r\nadd Raku packages support','nothing like it','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I found out about Nix and NixOS when learning Haskell, and I wanted to test another GNU/Linux distro.','Y','','Y','','','','','Declarative configuration','Immutable','A lot of packages in nixpkgs','unify services configuration','Archlinux or Gentoo','Y','','','','','','','','','','River','home-manager\r\nnix-direnv\r\nemacs-overlay\r\nfenix\r\nnaersk','nixpkgs-mozilla',''),(1234,'1980-01-01 00:00:00',5,'en','1007679489','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','After being recommended to use it by a friend and an hour worth of research, I found it to be more reliable than Arch Linux (distro I used for 6 years). I can proudly say that I am only using NixOS as my primary OS for my devices!','','','','','','','Y','','','','','Y','','','Y','Y','Y','Y','','nix develop','nix-build','nix repl','Enough to make Nix -> hnix.','Whatever would\'ve been the hnix alternative, assuming it would\'ve been developed. Else, a bash script like previously. ','','','','','Y','','','','','','Y','','','','Cabal2nix and dconf2nix,','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Same as nix story both started same time. ','Y','','','','','Y','','Nix develop','Nix-build','Nix repl','Xterm being installed when xserver is enabled.','Arch Linux','Y','','','','','','','Y','','','Xmonad and qtile','','','I know this a rather unpopular opinion, but hnix is an interesting project that could potentially make nix development smother. '),(1235,NULL,1,'en','1545187461','A6','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1236,'1980-01-01 00:00:00',5,'en','1147168595','A1','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','Y','Y','','N','N','Its features make me feel curious and interesting',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Its features make me feel curious and interesting',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I hope you are not involved in politics as members of the open source community'),(1237,NULL,1,'en','1932559150','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1238,'1980-01-01 00:00:00',5,'en','848243740','A5','A4','-oth-','Nonbinary','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was introduced to Nix/NixOS in 2015, and I starting using Nix for personal projects in 2018.','','','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','Declarative semantics','Nix Store','Reproducibility','Standardize the .drv schema to expand the reach of the ecosystem. Imagine if pip could create .drv files directly.','Whatever package management came with whatever OS/language I was using. ','','','','Y','Y','','','','','','','','','','mach-nix\r\nyarn2nix\r\ncabal2nix\r\ncomposer2nix','Y','Y','','','N','I\'ve attempted to create packages that other people could use before, mostly ending in failure. So it\'s not from lack of interest or trying.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was introduced to Nix/NixOS in 2015 and starting using NixOS as my daily driver in 2018','Y','','Y','Y','','','','Declarative semantics','Integrated deployment tooling','Reproducibility','GUIs! An app store for nix-env and a user-friendly configuration manager for NixOS','Manjaro','Y','','','Y','','','','Y','','','SwayWM','Home-manager!!! Also nix-direnv','I used niv before I started using flakes. I used lorri before I switched to nix-direnv','Nope! Keep up the good work'),(1239,'1980-01-01 00:00:00',5,'en','1827671714','A2','A3','male','','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','Y',NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1240,'1980-01-01 00:00:00',5,'en','926759652','A2','A3','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','LineageOS (Android-distribution)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','casually running programs like vlc with nix run','A4','Someone on social media (on Diaspora*) recommended NixOS. Since i worked in DevOps and configured my desktop with Ansible, i was interested in the declarative configuration. I use NixOS since then...','','','','','Y','CI (Woodpecker, Drone CI fork which uses docker containers)','Y','Y','Y','Y','','','Workstation (multimedia production), Gaming machine, desktop computer, notebook','Y','Y','','','Y','','nix run nixpkgs.vlc','nix-shell','the nixpkgs collection','finish the new CLI UI in a userfriendly way (it\'s currently not)\r\n\r\n`nix install vlc` should work. also `nix run vlc` (starts vlc from default repo, nixpkgs stable or your system wide channel)\r\n\r\ni think this is the biggest issue that prevents mass adoption. marketing does not help when you have a bad product (not userfriendly in this case)','i used brew on mac. it\'s great\r\n\r\ni used apt on Ubuntu, debian and elementary OS. it\'s OK\r\n\r\ni used virtualenv for python development. it\'s a bit complex and frustrating to use. pipenv is a great alternative nowadays\r\n\r\ndocker also works well to run a program as the developer intended it. more intuitive UI than nix','','','','','','','','','','','','','','Woodpecker (Open Source Drone CI fork)','','','','','maintain packages in my nixos-config and use callPackage ../packages/','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','for gaming, for creative work (photo/video editing), for daily use. it\'s my main system!','A4','Someone on social media (on Diaspora*) recommended NixOS. Since i worked in DevOps and configured my desktop with Ansible, i was interested in the declarative configuration. I use NixOS since then... (same story as with Nix)','Y','Y','Y','Y','','Y','Workstation, Gaming machine, NAS, Notebook','having a stable and reliable system (stable channel) and use the latest version of specific packages (from unstable)','declarative configuration that you can use on multiple systems','it\'s easy to contribute (just create a pull request on github)','We need onboarding for new users\r\nDocumentation should be easier to understand\r\nIt should be easier to use (graphical tools for desktop users)\r\nMore testing and better QA, especially before releases\r\nMore clear policies how to do things as a nixos developer (rules for deprecation etc.). there are endless discussions for years, but no decisions making it hard to contribute','i used elementary OS before (it\'s great), i used Mac OS X before that (it was great back then)','Y','','','','','','','','','','Pantheon (from elementary OS)','nixpkgs-review','nixpkgs-fmt (i should use it more)','thanks for your work!'),(1241,'1980-01-01 00:00:00',5,'en','1584978377','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','to build somebody else\'s thing, and for NixOS','','Y','','','','','Y','','Y','','','Y','','','Y','','Y','Y','','independence from host ','compatibility with many other build systems','','Integration with langages that use package managers that usually download stuff on the fly (e.g. npm).\r\nDocumentation of why many things magically work (mkDerivation and callPackage are very obscure).','A collection of scripts calling other build tools, probably.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','just didn\'t get there yet, but probs will soon','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I was getting annoyed by Ubuntu breaking on me and being in obscure state.\r\nHad to use Nix to build something, and then full-on jumped into the NixOS trap. No regrets.','Y','','Y','','','Y','','declarative configuration','extreme configurability','future proveness (just rebuild anything that breaks, defined states, clear backups, incremental path forward)','I moved past that point now, but ... beginner things ...','Tissues.\r\nProbs still Ubuntu with a pile of bash scripts, maybe something like Ansible?','Y','','','','','Y','','','Y','','','','','Keep it up, NixOS is great!'),(1242,NULL,1,'en','1260303838','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1243,'1980-01-01 00:00:00',5,'en','49468995','A1','A3','male','','','','','','Y','Y','','Y','Y','Y','','','Y','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Nix\'s declarative nature scratches the yak-shaving itch of \"do work now, so as to avoid doing work later\".\r\n\r\ne.g. if SSHing into multiple \"pet\" servers, Nix made it easier to have consistent versions of tmux/vim/fish.\r\n\r\ne.g. Personal (hobby) side projects that only get infrequent attention would often need time taken to get code up to date with system packages. Nix eases that.','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','Y','','Nix flakes for ease of running software','Declarative package management and ephemeral development environments','OS configuration as code','add: type checking so errors found sooner\r\nchange: nix expression syntax to be more familiar with what other developers expect (without a magic wand, not worth it)\r\nadd: docstrings to more places','As a developer, just beat my system into shape.','','','','Y','Y','','','','','','','','','','cabal2nix.','Y','Y','','','N','Nixpkgs already has what I want and so I don\'t need to; or what I want is too niche; or what I want is too hard to add.\r\n\r\nI\'m barely above water in using nix for what I want to achieve. I don\'t think I\'d have much to contribute to PR reviews.\r\n\r\nAnti-social tendencies.\r\n\r\nThere\'s already a huge number of PRs which are awaiting review as-is.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Worked at a company where the devops team used Nix. Looked neat. I tried declarative package management per the nixpkgs manual, on macOS (pre-10.15).\r\n\r\nThere\'s some friction using nix on non-nixos, so decided to try it out. It worked well.\r\n(Previous linux usage: Linux Mint, Arch Linux).','Y','','','','','','','OS Configuration as Code','nixos modules in nixpkgs','config written in a programmatic language','add: developer-oriented distributions of NixOS, just as Spacemacs / Doom Emacs are to Emacs','macOS or Arch Linux.','Y','','','','','','','Y','','','','nix-direnv','nix pills ;) sorry! but ... I feel it sits in the wrong place. It\'s too \"in the weeds\" to be interesting for if you have no clue what\'s going on, but very \'slow\' if you\'ve got some nix familiarity.',''),(1245,NULL,3,'en','98384098','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Reproducibility','Isolation','Composability','Make flakes enabled by default, add more parallelism to builds (parallel derivations)','Docker, probably.','','','','Y','Y','','','','Y','','','','','','cargo2nix, node2nix, cabal2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','Y','','','','','','','','','','','','','','','Y','','Y','','','Sway',NULL,NULL,NULL),(1246,'1980-01-01 00:00:00',5,'en','626476982','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','I went through using Archlinux and Gentoo first. I liked both their configurability, but Arch was missing proper integration and re-linking of source-based (AUR) packages. Gentoo did better in that regard and had even better customisation options (USE-flags), but after some years I became tired of compiling everything.\r\nNixOS hit the sweet spot of pre-built binaries while maintaining transparent customisation options.\r\n\r\nDeclarative configuration, rollbacks, and atomicity were then additional bonus features. I heard of NixOS first in the https://binaergewitter.de/ podcast but also got evangelised by members of my local hacker group like Mic92.','','Y','','','','','Y','','','Y','','','','','Y','Y','','Y','','transparent customisation options of packages, with binary cache substitution as default','declarative package and system description, reproducibility','pureness of packages and environments','- easier secrets management\r\n- tranparent customisation options exposed to documentation (like USE-flags)','rpm for the base systems, and the common language-specific package managers like pip and virtualenv (python)','','','','','','','','','','','','','','','cabal2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','same as the story about Nix','Y','','','Y','','','','','','','','','Y','','','','','','krops','','Y','','','home-manager','',''),(1247,NULL,1,'en','417395934','A2','A2','-oth-','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1248,'1980-01-01 00:00:00',5,'en','500974562','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','pacman','','','','Y','Y','','','','','','','','','','https://github.com/DavHau/mach-nix','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted a way to reproduce the countless small tweaks every system accumulates with time.','Y','','Y','','','','','','','','Run Binaries designed for FHS Systems. Some VSCode Plugins for example rely on downloaded binaries which can\'t run.','pacman','Y','','','','','','','','','','i3','https://github.com/divnix/digga','',''),(1249,NULL,2,'en','1983658998','A2','A3','-oth-','idk','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','interest in reproducibility of systems and of configs between systems','','Y','','','','','Y','','Y','','','','','','','Y','','Y','','reproducible','composable','','better documbtation\r\nclearer separation between nix nixos','arch\r\nfreebsd','','','','Y','','','','','','','','','','','','','','Y','','N','nothing of value to others',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1250,NULL,NULL,'en','1577001785',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1251,'1980-01-01 00:00:00',5,'en','193049708','A2','A5','male','','','','','','Y','Y','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I did not like \"it works in my pc\" phenomenon at work.','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Reproducibility','Community: pretty good speed for package update','I am lazy: declarative machine configuration is so much easier.','- nixos-container which works with nix for other distros.','guix','','','','Y','Y','','','','Y','','','','','','','','','','simply by overriding','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','i have multiple machines to maintain and declarative configuration gives trusted and easier way to do that.','Y','Y','Y','','','','','Reproducibility','Declarative configuration','nixops','','','Y','Y','','','','','','','','','i3','','krops','Thanks for Nix/NixOS community for all the efforts to make these even better!!'),(1252,NULL,NULL,'en','383986451',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1253,'1980-01-01 00:00:00',5,'en','367409179','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I\'ve been using NixOS for quite some time (~8 years), but realized (embarassingly) late I could improve my user experience in non-NixOS environments at work by using Nix/nixpkgs.','','Y','','','','','Y','','','','','','','','Y','','','Y','','Easy access to a wide range of up-to-date packages in \"legacy\" environments (e.g. Ubuntu LTS)','','','','local builds from source\r\nDocker','','Y','','Y','Y','','','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I\'ve been a long-time Gentoo user since 2002, but always missed NiX\' \"change one thing and have everything depending on it reliably rebuilt\"-approach.\r\nIIRC I\'ve become aware of NixOS around 10 years ago and really loved the concept, but didn\'t have time to explore it further back then, but instead recommended it to a friend of mine who got really deep into it and even launched a start-up based on Nix\' technology.\r\nI\'ve become involved in supporting his work, developing expressions/modules for him and soon after that slowly started moving my personal infrastructure piece by piece to NixOS around ~7-8y ago, with now only one non-NixOS system left which is soon also to be assimilated.','Y','','Y','Y','','Y','personal computing/laptops','Single point of reproducable control/definition','Building from source being an integral and implicit part of the pkg manager','Hackability','1. Make introspecting the evaluation of an expression easier, to enable a better understanding of how a change to the input affects the output. Currently, doing modifications (e.v. overrides via overlays) requires a lot of experimentation, reading & understanding module/pkg sources and often intricate knowledge of Nix and builtin or \"lib\"-functions.\r\n\r\n2. Provide more straightforward way to explore & modify packages without requiring a deep understanding of Nix or the complexities of how this package is derived (e.g. when being part of a scope and not just the global pkgs fixed point):\r\n- change the version of a pkg\r\n- add custom patches to a pkg or point to a local development worktree (e.g. local git repo clone)\r\n- insert a customized pkg into the dependencies of a specific package without affecting all other system pkgs\r\n- introspect packages, their versions, maintainers, upstreams etc. easier from CLI tooling or external scripts \r\n\r\n3. Make it easy to interact with Nix data structures from external languages (e.g. Python), to reduce the barrier to interact with Nix systems and packages from pipelines and cloud-automation tooling\r\n\r\n4. Flatten the learning curve for common tasks\r\n\r\n5. Make the documentation more accessible to newcomers which haven\'t climbed 80% of the general Nix/NixOS learning curve yet. A lot of the documentation still feels like there\'s some (most likely unintentional) gatekeeping going on\r\n- reduce the usage of \"functional language terminology\" where not strictly needed\r\n- generate a better explorable \"API documentation\" of all builtins, lib functions, etc. with more and clearer examples','Gentoo','Y','','','','','','','','Y','','','','nixops\r\n\r\nI really want to use it, I love its idea - but it really lacks a \"getting started\" and \"take over existing NixOS systems\" documentation… the entry barrier is just too high right now/the documentation lacks describing common use cases/first steps without making a lot of assumptions existing nixops users can make',''),(1254,'1980-01-01 00:00:00',5,'en','1154377031','A1','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','At work we started using shell.nix on a Ruby project to provide a reliable development environment. This was so useful that we have placed shell.nix in all Ruby projects. We have since started developing with Haskell, and perform all production builds with haskell.nix.\r\n\r\nI also benefited from using home-manager on my MacBook.','Y','','','','','','Y','','','','','','','','Y','Y','Y','Y','','Development environments are reproducible','Built software can be downloaded from a cache, saving us many build hours (in CI and on development machines)','The software provided by nixpkgs','Add a type checker! If nothing else it would help me to understand nixpkgs.','Probably docker images.','','','','','','','','','','','Y','','','','Just haskell.nix (https://github.com/input-output-hk/haskell.nix)','Y','','','','Y',NULL,'N','Y',NULL,'I ran it in VirtualBox and the window manager crashed almost as soon as I started using it.','If I had time to learn how to use it properly and knew how to replace my current macOS workflow.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'niv (https://github.com/nmattia/niv). This may eventually be replaced with flakes, but I don\'t like to use experimental features for work.\r\nhome-manager (https://github.com/nix-community/home-manager) which is _way_ better for managing packages than nix-env. I use it in conjunction with niv to provide my own versions of packages.','bundix (https://github.com/nix-community/bundix) would be incredible for managing our Ruby projects, if it supported private repositories.\r\nWe found nixpkgs haskell support lacking because it was difficult to use (versions of) packages not provided by stackage.',''),(1255,'1980-01-01 00:00:00',5,'en','1375871857','A5','A6','male','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I love the declaritive nature of NixOS. It keeps my system clean and allows me to document my configuration.','','Y','','','','','','','','','','','Daily laptop','','','','','Y','','declaritive configuration','large binary cache of packages','/nix/store symlink architecture','RE: NixOS\r\n\r\nBetter Documentation. Period.\r\n\r\nThe documentation is aimed at developers or those with an existing knowledge of Nix/NixOS. I would categorize it as a reference manual. Based on the main NixOS website, the documentation, the forum and even this survey, it appears that the target user is a developer, and not an end-user. It\'s a shame, because I think NixOS could be a mainstream distro. You might say, \"but it can be used as a daily driver by an end-user\". It can, but the learning curve is more like a learning wall. It really is bad. But you know this. The fact that this has been an issue for a long time would indicate this is not a goal of the project.\r\n\r\nI have been using Linux since Red Hat 5.1. That is a pretty long time. I am no slouch. But I almost gave up on NixOS trying to get something as simple as getting a bash script working in my polybar setup.\r\n\r\nAgain, if your goal is not to become mainstream, I am just blowing wind.','I am using NixOS, and if it didn\'t exist, I would use Arch.','','','','','','','','','','','','','','','','Y','','','','N','Documentation.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I love the declaritive nature of NixOS. It keeps my system clean and allows me to document my configuration.','','','','','','','Daily laptop','declaritive configuration','large binary cache of packages','/nix/store symlink architecture','RE: NixOS\r\n\r\nBetter Documentation. Period.\r\n\r\nThe documentation is aimed at developers or those with an existing knowledge of Nix/NixOS. I would categorize it as a reference manual. Based on the main NixOS website, the documentation, the forum and even this survey, it appears that the target user is a developer, and not an end-user. It\'s a shame, because I think NixOS could be a mainstream distro. You might say, \"but it can be used as a daily driver by an end-user\". It can, but the learning curve is more like a learning wall. It really is bad. But you know this. The fact that this has been an issue for a long time would indicate this is not a goal of the project.\r\n\r\nI have been using Linux since Red Hat 5.1. That is a pretty long time. I am no slouch. But I almost gave up on NixOS trying to get something as simple as getting a bash script working in my polybar setup.\r\n\r\nAgain, if your goal is not to become mainstream, I am just blowing wind.','Arch.','Y','','','','','','','','','','bspwm','home-manager','','Please make NixOS more approachable for non-dev end-users. Better documentation with better examples. Define terminology. Walk an experienced Linux user through the differences between NixOS and other distros.'),(1256,'1980-01-01 00:00:00',5,'en','1547010161','A2','A3','-oth-','','','','','','','','','Y','','','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I have been using Exherbo Linux before because I liked the amount of control it gives over a system installation. However I felt that it lacked the ability to let me reproduce or clone a system configuration to another machine and to keep them in sync.\r\n\r\nAt some point I decided to just give it a try. I backed up my system installation on my personal computer and replaced it with NixOS. Nix has a very steep learning curve and I felt that the documentation was mostly unsuitable to help me with what I wanted to do, but after a few days I was able to use my computer again. I have been using NixOS since then.\r\n\r\nDuring that time period we also started using Nix to manage our company’s IT infrastructure.','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','','Y','','Declarative system configuration management','','','','Exherbo Linux','','','','','Y','','Y','','Y','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','See previous answer on how I started using Nix.','Y','Y','','Y','','','','Declarative configuration management','','','More sophisticated abilities to customise Linux kernel configuration\r\nEasier stdenv customisation','Exherbo Linux','Y','','','','','Y','','','','','Sway','','',''),(1257,'1980-01-01 00:00:00',5,'en','653002580','A5','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to build a home server with an easy-to-manage configuration, and NixOS fit the bill. I was annoyed at broken upgrades on ubuntu when trying it and how lost all the configuration in /etc gets','','','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','declarative system config','per project environment management','system rollbacks for when I mess up','a robust solution for managing per-language dependencies (mix, npm, cargo, etc) that doesn\'t create N x2nix tools','guix I guess','','','','Y','Y','','','','Y','','','','','sourcehut','mix release, which was folded into main nixpkgs tree https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/beam-modules/fetch-mix-deps.nix (considering moving to mix2nix\r\n\r\nnode2nix https://github.com/svanderburg/node2nix','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','see homelab story','Y','','Y','','','','','nixos module system','rollbacks','','a standard deploy tool, so far deploy-rs is my favourite','guix?','','','','Y','','','','','Y','','','direnv w/ nix integration\r\nhome-manager\r\ncachix','lorri\r\nnix-build.net','I think maybe nix could use a lot of simple project templates to help get people started, especially if it is like a rails app and you\'re dealing with frontend assets\r\n\r\nbut at the same time, a lot of the nix stuff I\'ve seen seems _very_ overengineered (e.g., devos https://github.com/divnix/digga).'),(1258,'1980-01-01 00:00:00',5,'en','1813372618','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','','Y','','','','','f*cked up \"governance\" structure','Puppet','','','','','','','','','','Y','Y','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','Y','','','','','','puppet','Y','Y','','','','Y','','','','','','','flakes',''),(1259,'1980-01-01 00:00:00',5,'en','1768676132','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','I started by using nixos','','','','Y','','','','','Y','','','','personal computer','','','','','Y','','comprehensive package set','rollback','unified system configuration','Using the module system for the entire package set instead of the overlays system.\r\nBetter support for plasma wayland.\r\na system input to nix flakes','The system package manager','','','','Y','Y','','','','','','','','','','yarn2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','I distro hopped and read about the NixOS distribution, got interested, and began installing it on my system.','Y','','','','','','','atomic updates','rollback','unified configuration syntax','Move more parts of NixOS into nixpkgs, so that nix profile can install/remove configurations on non-NixOS systems.\r\nnixops 2.0\r\ndream2nix','Manjaro','Y','Y','','','','','','','Y','','','home-manager','',''),(1260,'1980-01-01 00:00:00',5,'en','1435291242','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','N','Y',NULL,'Stuff that works, works great, but I always found it to be a bit of a hussle if something didn\'t work and I had to write packages myself, because of missing/incomplete/conflicting documentation, therefore sometimes it felt like my OS was holding me back (On that note I should mention that I it\'s already been two years since I\'ve last used Nix, and I cant really tell if something changed since then). Also I found it hard to get Packages merged into the Nixpkg repo, a User Repository like the AUR could probably help with that, I guess. ','If I have more Time I will consider using NixOS and therefore Nix again, because I really like the concept behind it and if I really get into it, it might become easier to find/understand the Documentation or just guess Syntax.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1261,'1980-01-01 00:00:00',5,'en','1302828799','A5','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','','','','','','','Y','Y','Y','','Y','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(1262,'1980-01-01 00:00:00',5,'en','1982107996','A5','A3','male','','','','','','','Y','','','','Y','','','','Y','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','Made development and deployment of Haskell projects more stable and reproducible. Was getting tired of figuring out inefficient Dockerfiles to circumvent recompiling the universe, and of the relative obscurity of Stack as a tool.','Y','','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','Dependency management','Building container images','Development environment','A more IDE-friendly (e.g. typed) language to have an easier time troubleshooting config, more noob-friendly documentation for more of the ecosystem.','Stack, Docker, antidepressants','','','','','','','','','','','Y','','','','cabal2nix','Y','','','','N','intimidated by my perceived tenuous grasp of the language, best practices and ecosystem','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Wanted to have a Linux machine and the idea of a fully declarative, reproducible OS sounded very appealing; also wanted to use nix outside of my Haskell projects.','Y','','','','','','','Configuration','Portability','Reliability','Again, better docs, friendlier language.','Debian, Pop_OS! or Arch.','','','','','','','','Y','','','','','flakes',''),(1263,NULL,NULL,'en','1592201306',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1265,'1980-01-01 00:00:00',5,'en','1545150311','A5','A4','fem','','','','','','','Y','','','','Y','','','','','','','','','','','','','','Developer, libraries/frameworks','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I had abandoned Homebrew and switched temporarily back to MacPorts, when I ran across Nix. I don\'t remember how I found it, but the goals of the project immediately appealed to me, and it also promised to solve my problem of trying to keep my config synced between machines. I also have quite a fondness for lazy pure functional languages, and so while the learning curve was a bit rough the fact that Nix uses its own custom language was actually something I rather liked about it. Also the fact that Darwin was one of the primary supported platforms was crucial for me.','Y','','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','Declarative fully-reproducible system config/package management with no dependency version conflicts','Keeping my global environment pristine no matter what dependencies my packages use, and allowing me to have per-project packages available (e.g. with direnv) without touching my global environment.','A diverse set of available packages, and allowing customization of the packages as needed','Documentation still needs improvements, especially the ability to look up documentation for nixpkgs functions. The monolithic manual page isn\'t good enough, I should be able to look up this documentation from the command-line, and it should be comprehensive. It would be nice if there was a Dash-compatible docset that also let me look up functions that way. But documentation on standard patterns, on flakes, on how to write stuff in general needs improvements.\r\n\r\nThere should also be examples of common scenarios. For example, I need to package a python binary that uses pypi. There\'s documentation on different functions used to package python, but it assumes I\'m already familiar with it. I don\'t know what a wheel is, or when setuptools is used. I\'m porting a Homebrew formula which uses venv and `venv.pip_install \"wheel\"` and `venv.pipi_install_and_link buildpath` and then a manual `pip install -v --index-url [url] buildpath` and I don\'t know how that stuff works or what it translates to in Nix. My in-progress package is using `python3Packages.buildPythonApplication` since I\'m just hoping that works. The documentation said `buildPythonPackage` is used for for `setuptools` and `buildPythonApplication` is used for `distutils` but the Homebrew formula doesn\'t mention either. It would be really helpful if there was just a \"So you need to package a third-party python application and don\'t know python?\", basically a workflow for how to go about doing this.','I\'d probably still be using MacPorts.','','','','Y','Y','','','','','','','','','','I used to use node2nix (https://github.com/svanderburg/node2nix) and a patched version of dep2nix (https://github.com/nixcloud/dep2nix) to satisfy development dependencies at a previous job, but right now I don\'t use any \"2nix\" tools (my Rust packages use naersk).','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','Once I got used to Nix, I wanted the same functionality on my personal Linode. I only interact with that occasionally though, but NixOS gives me the confidence to let it just auto-update stuff. I\'m also planning on moving that to flakes and unifying it with my personal setup, but I haven\'t done that yet.\r\n\r\nI\'m also planning on experimenting with NixOS on a raspberry pi. When I first looked into this it sounded like NixOS support for the RPi 4 was too experimental, but AIUI things are better now. I just haven\'t found the time yet to do that.','','','Y','','','Y','','Fully declarative system/package configuration and package management with access to the vast collection of nixpkgs packages and easy systemd service definitions','Using a single configuration set for both development machines and my home server, with per-machine customizations and a shared user definition (including Home Manager for my user setup)','Being confident in letting my machine auto-update every night, without even needing a reboot if the kernel didn\'t change','I would love an interactive `nixos-option` variant that let me explore the option tree and search it for option names (e.g. programs that I want to quickly check if it exists somewhere).','I\'d still be using Ubuntu on my Linode, and I\'d be sticking with Raspbian on my raspberry pi.','Y','','','','','','','','','','','nix-darwin (https://github.com/LnL7/nix-darwin). I use this to manage my local machines and am constantly working to get more of my machine state represented in it. At this point I consider it to be the only way I want to manage my macOS machines going forward.\r\n\r\nHome Manager. I use this as a nix-darwin module. I will be using it as a NixOS module too once I finally get around to merging my Linode NixOS config into my shared nix-darwin config tree.\r\n\r\ndirenv with nix-direnv (https://github.com/nix-community/nix-direnv)\r\n\r\nnaersk (github:nix-community/naersk) is wonderful for packaging up Rust packages, so much better than the in-tree nixpkgs solution that requires preprocessing the Cargo.lock file.\r\n\r\nrnix-lsp (https://github.com/nix-community/rnix-lsp) is a significant improvement over basic syntax highlighting for editing Nix files.','','I wish a little more care was given to macOS support. For example, Nix 2.4 and 2.5 suffer from a problem where enabling the macOS sandbox causes `nix` to fail when invoked from a build script, as `nix` attempts to read file metadata that\'s blocked by the sandbox and throws an exception when it fails. I filed a ticket about this already but there\'s been no activity on it (even though it also affects Linux if you muck with permissions on certain paths as it\'s fundamentally a permissions problem). This isn\'t the first time that turning on the sandbox on macOS has caused problems.'),(1266,NULL,1,'en','1071115296','A2','A3','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1267,NULL,1,'en','884411926','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','Forensic investigator','','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1268,NULL,2,'en','599279772','A5','A3','male','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','Y','','','','','','','Guix?','','','','Y','Y','','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1269,NULL,1,'en','733364190','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1270,NULL,NULL,'en','1033473828',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1271,'1980-01-01 00:00:00',5,'en','1744555608','A2','A3','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Because I installed NixOS.','','Y','','','','','Y','','Y','','','Y','','','Y','','','Y','','Setting up the system services declaratively, e.g. having a web server with ACME in a few lines','Reproducible and temporary environments to do development, e.g. to have the right dependencies to build a project','Avoid broken system by trying out a config or rebooting to an older generation','I\'d replace Nix with an existing language (possibly a strict subset) would be better so it can be learned separately and is less tied to packages and NixOS.\r\n\r\nIt would be a statically typed language to avoid mistakes and especially to have better IDE support to know what a configuration actually does.\r\n\r\nI\'d remove or at least discourage the use of the imperative nix-env, it clashes with the rest of Nix and leads to unexpected things e.g. if you use nix-env, update the system, then you still reference the old package.','Guix/Scheme','','','','Y','Y','','','','','','','','','','poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I read a lot about NixOS on e.g. reddit and hackernews and was very interested in the declarative and reproducible system pitch. I first tried Nix on my existing system but did not really use it, so I took an SSD replacement as the opportunity to install NixOS and stuck with it till now.','Y','','Y','','','Y','','Services as configuration','See Nix answer','Try new config/reboot to working generation','I\'d add a way to temporarily start services in a similar fashion to nix-shell, e.g. to have a DB or webserver for development. Ideally with isolation e.g. using network namespaces, but without requiring a full container.\r\n\r\nSupport \"committing\" temporary configuration changes done e.g. through nix-shell or in application settings. E.g. change Gnome settings and have an easy way to make that part of the system/user configuration.\r\n\r\nBetter support for managed users, the home configurations should be managed by NixOS by default.','Guix','Y','','','','','','','Y','','','','None','None','Keep up the good work!'),(1272,'1980-01-01 00:00:00',5,'en','1746341174','A5','A3','male','','','','','Y','Y','Y','','','Y','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I started using NixOS after an Ubuntu install broke yet again from an update. I wanted an operating system that was reproducible and could store its configuration as code. I started using Nix as part of that and it\'s now slowly making its way into my development workflow outside of NixOS as well.','Y','','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducibility: if it works, it works','Reproducibility: I can give a coworker a shell.nix and expect them to be able to run code','Declarative management of dependencies','I don\'t know that I can pinpoint what I would change, but I have found Nix to have a fairly steep learning curve where documentation is often difficult to find (if it exists for a given issue).','I have used docker for repeatable deployments and development environments, but it is a bit of a pain to develop with. I have used ansible for system configuration, but nix looks like it may have an interesting solution for that as well.','','','','Y','Y','','','','','','Y','','','','','','','','','N','I haven\'t found the time to improve packages that I think could be improved. With flakes, I wonder if it is worth contributing to core nixpkgs or not.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','My ubuntu install broke from an update yet again and I wanted an OS that wouldn\'t have that. Bonus points for totally declarative configuration!','Y','','Y','','','','','Reproducibility','Declarative configuration','Rollback','I would make it easier to deploy starting from an ISO rather than having to set up partitions and SSH key or password manually. I think I can already do that by building a custom ISO, but haven\'t gotten around to using it.','I have typically used ubuntu with docker for service deployment and ansible for configuration management.','','','Y','','','','','','','','i3','Agenix for secrets, morph for deployments (though I may change to another solution)','',''),(1273,'1980-01-01 00:00:00',5,'en','1672588155','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I love the declarative configuration. Also like the readability of the whole system, it taught me a lot about Linux, systems and the ecosystem','Y','','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','Declarative and thus can reproduce my setup to multiple systems.','No fear to upgrade, can always rollback. Also really easy to try out new software or major changes.','Vibrant community','Secure boot with authenticated filesystem','Debian/Ubuntu with Docker or Kubernetes','','','','Y','Y','','','','Y','','','','','','poetry2nix\r\nnode2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same reasons as for Nix','Y','','Y','','','','','Same reasons as for Nix','','','I don\'t know.','','Y','','','','','','','','','','i3 and sway','Home manager','',''),(1274,NULL,1,'en','730959875','A2','A2','male','','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1275,'1980-01-01 00:00:00',5,'en','1332357910','A5','A3','male','','','','','','','','Y','','','Y','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','Y','','Y','','Declarative configuration','Extensibility','Composable with other tools','','','','','','','','','','','','','','','','','','','','','','N','Nothing to contribute','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got tired of Ubuntu on my personal machine, and reinstalling and configuration breaking and not having a good way to itterate and manage my configurations. I looked at all the distros I knew of and came down to two. Something mainstream like Fedora or something and NixOS. I knew that NixOS would give me more control over what I cared about and that I felt it was built with more principle in mind and I knew there would be a learning cost, but I felt it would be interesting and worth the cost. I can happily say it was both those things. Also I love declarative languages.','Y','Y','Y','','','','','Declarative configuration','Transparent and community driven development','Well tested','I would make home-manager more important to upstream. I honestly try to do whatever configuration I\'m hm first if i can and fall back to NixOS config. I think the rest of the Linux echo system underappreciates the possibilities that can arise from properly separating system level configuration and user level configuration and home-manager is the only real attempt to do that. But things could be better. Just as there is an defined interface between firmware and OS, there can be a defined interface between system configuration and user configuration.\r\n\r\nLet me provided an example. I had to share my laptop with my SO for a bit. She is not a nix expert, so i would have liked to have system configuration define a sensible and usable set of default programs and configurations so I could just add an account and it\'s usable for anyone. Think plasma, Firefox and LibreOffice. At the same time, I am very particular about what programs and configurations I want to use. Like sway instead of plasma. So i would have loved to have loging in to be like running nix-shell. Once i log in it loads up my configuration shadowing the system one where there is conflicts. And my configuration is something i can change and update without sudo or rebooting. Home-manager gets me part of the way there, but there is no functionality in any login manager to just load the users shell if it\'s defined (at least not for Wayland). Something like this would iron out a serious wrinkle for me. I would even be willing to work on something like this if I get support from the community. In case this is anonymous a good thread to discuss is https://github.com/sddm/sddm/issues/916. Or just reach out to me I\'m Rosuavio on everything.','No clue','Y','','','','','','','','','','sway','Home-manager\r\nNiv\r\nObelisk\r\nNixGL','','Make home-manager a core project. Or make so modules can be reused from NixOS to home-manager.'),(1276,NULL,1,'en','1898514640','A1','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1277,'1980-01-01 00:00:00',5,'en','1484384','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','N','Y',NULL,'I have tried a few times. Always got stuck not knowing where to start. ','I will try again now that I have learned more nix and more about the system in general. Also flakes makes the whole thing fit better together and make more sense in my head so that makes it the perfect situation to try again.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I always got stuck not knowing where to start. ','I will try again now that I have learned more about the nix language and system. Flakes also make the whole thing feel like it fits better together in my head so that makes it easier for me to understand. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1278,'1980-01-01 00:00:00',5,'en','1613913371','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I just want things to work consistently across machines. I like Nix\'s declarative setup, but the main thing is full reproducibility.\r\n\r\nFor my work desktop I also use NixOS. And I think this is a matter of obsessive-compulsiveness on my part. Everything is perfect, small, and reproducible (at least, for my own arbitrary definitions of the above). It gives me a feeling of control in a world that is otherwise *very* hard to control.','','Y','','','','','Y','Y','','','','','','','Y','Y','','Y','','','','','I\'d get rid everything that isn\'t flakes. I don\'t understand what the point of Nix is without flakes. With flakes, it makes perfect sense to me. The documentation is not geared towards flakes though and it was hard to learn it first.','I don\'t know of an alternative.\r\nFor OCaml, we have Esy, which was directly inspired by Nix. We\'d keep using that for OCaml projects.\r\nMy second choice OS is Arch Linux.','','','','','Y','','','','','','Y','','','','https://github.com/serokell/nix-npm-buildpackage','Y','Y','Y','','N','It\'s a lot of work to get things to pass muster. By the time I get things working in a flake with an overlay, I\'m tired of messing it with it and am just happy it works. Plus, we have a guy at our company who upstreams stuff we need regularly to nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','As I mentioned earlier, it\'s kind of an obsessive-compulsive thing. I just want to know every part of my machine - to see it in front of me and have it checked in safely to GitHub. I love this article https://grahamc.com/blog/erase-your-darlings. I don\'t implement it but I like the vibe.','Y','','','','','','','The most important thing is the ability to search for code on Github. You can\'t do this with any other distro as easily. It\'s so helpful, and a true advantage of Nixos over other distros.','','','','Arch linux','Y','','','','','','','','','','xmonad','','nix-env, and channels. I just don\'t understand it. I tried using nix several times. Only when I discovered flakes did it make sense.\r\n','Nix is a gigantic and audacious project, and I think it\'s a remarkable achievement. The project gets a lot of flack, and it\'s true there parts that are hard to use and confusing. But I think that\'s more a symptom of the enormous intrinsic difficulty of the problem than any particular choices related to Nix. It\'s sad, but it\'s really hard to imagine how things could be better.'),(1279,NULL,1,'en','17570272','A5','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1280,'1980-01-01 00:00:00',5,'en','40243443','A5','A4','male','','','Y','Y','','Y','Y','','','','Y','','','Y','','Y','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','Due to my interest on func prog','Y','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','Determinism','Declarative language','Community','remove intermediate language, change website','Guix','','','','','','','Y','','Y','Y','Y','Y','','','Nixfmt','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','','Y','Y','','Y','','','','Declarative services','Rollback','','Installation ui','Debian probably','Y','Y','','','','Y','','Y','','','','','',''),(1281,'1980-01-01 00:00:00',5,'en','1230020596','A5','A5','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','As a Haskell / functional programming enthusiast, it was exciting to see this philosophy in linux. It was rough getting started, but now it\'s hard to imagine using any other OS.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','repoducibility','control over environment','rollbacks','More extensive documentation (does that count?)\r\nOh, and make Dell provide the drivers for the Precision 5760 so I have audio when I install something other than their in-house version of ubuntu. (The second I hear nixos works with that, the installation disk is ready to go.)','arch linux','','','','Y','Y','','','','','','','','','','','Y','','','','N','I\"d like to; this semester is busy with teaching.','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','Same as nix. But with more power.','Y','','Y','Y','','','','reproducibiility ','control','rollbacks','hardware support for Dell Precision 5760','Ubuntu is what Dell forced on my machine. Maybe Arch linux.','Y','','','','','','','Y','Y','','xmonad','','','mattox@illinois.edu if you want to followup antthing. Thanks!'),(1282,'1980-01-01 00:00:00',5,'en','375312988','A6','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','Y','','','','','Y','','','','','','','','','Y','','Y','','','','','Documentation and figuring out how to do some things is impossible.','Arch','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','',''),(1283,NULL,NULL,'en','1649105524',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1284,'1980-01-01 00:00:00',5,'en','1021347622','A5','A3','male','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','Y','','','N','N','Seems cool! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Seems cool!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1285,'1980-01-01 00:00:00',5,'en','248991663','A6','A5','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','Y','','Concise programmable declaration language','Not requiring root when installing software','Easy to downgrade packages','Make debugging a bit easier. e.g. A missing double quotation recently took 15 minutes to track down','apt','','','','','','','','','','','','','','','','Y','','','','N','I\'m still new and not familiar enough with nixpkgs.\r\nNixpkgs already has nearly everything I need.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Tired of ansible being slow and api changes.\r\nFrustrated with lxd (via snappy) auto updating and breaking production systems.','Y','','Y','Y','','','','Declarative system configuration','Ease of setting up systemd-nspawn containers','Ability to run stateless (root on tmpfs)','Built-in secrets management','ansible on debian','Y','','','','','Y','','','','Y','','agenix for secrets management','','Thank you for nix and nixos!'),(1286,'1980-01-01 00:00:00',5,'en','1524930513','A5','A3','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','','N','N','GitHub suggestion.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','GitHub suggested ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N/a','N/A','N/A'),(1287,'1980-01-01 00:00:00',5,'en','820002921','A3','A3','male','','','','','','','Y','','Y','Y','Y','','','Y','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','It was encouraged by the CTO of the company that I\'m working for. So we decided to develop our CI using nix to manage all the jobs and to make them reproducible on all of the developers\' machines.','','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','Reproducible builds','Package management','Environments configuration','I would change the way that nixpkgs is distributed so it doesn\'t break systems that easily when updating it.','Probably docker.','','','','Y','Y','','','','Y','','Y','','','','','','Y','','','N','I\'m currently focused on developing the tool that I use right now. But I intend to contribute soon.','N','N','I\'m actually considering using It to replace my current OS. I\'m still learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None.','None.','I\'ve seen a big improvement on Nix the last year. Keep that up! :)'),(1288,'1980-01-01 00:00:00',5,'en','1883159661','A1','A5','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','Read about it on, I think, LtU (Lambda the Ultimate). At the time nix-env supported binary upgrade via patches between arbitrary versions which was great because my internet was very limited.','','','','','','','Y','Y','Y','','','','','','Y','Y','','','','Reliable, repeatable builds. If it builds on my machine it\'ll build anywhere','Project (even sub-project) specific tooling with fixed versions, etc.','Fearless upgrade knowing that if almost anything goes wrong I can revert to a known good version','Better integration with the Java and Javascript build tooling','A lot of other tools! Dockerfiles, snaps, apt-get, ...','','','','','Y','','','','Y','','','','','','https://github.com/kolloch/crate2nix\r\nPreviously used gradle2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was tired of Debian or derivatives breaking on updates or painful major version upgrades on my home PC. Was in a work environment where I couldn\'t install Linux on their hardware so instead ran everything in a Linux VM. Switching from Debian to NixOS allowed me to trial it for 6+ months there before I switched my own machine over - easy enough with a separate home partition.','Y','','Y','','','','','Canned services/kernel modules with easy to configure options','Fast, safe update with rollback','','Home-manager by default. No one should be using nix-env any longer','Debian. Lots of packages and not too opinionated','Y','','','','','','','','','','xmonad','home-manager, lorri, comma (but the ambroisie version, not Shopify)','',''),(1289,'1980-01-01 00:00:00',5,'en','1930426708','A5','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','Windows for gaming, Linux for anything important, Mac never','N','N','I’m working on moving from Fedora 35 to NixOS but not there yet. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I’m just working on migrating from Fedora to NixOS and it has been enlightening. I love the configuration model as a big IaC fan but it would be nice to have some more complete examples. \r\n\r\nMaybe something like an i3wm (or KDE, doesn’t matter!) install from the minimal installer walking through the different sections and dot files and your options for managing them. \r\n\r\nI’m planning on using home-manager but it’s kinda difficult to grok the specifics of each part of the ecosystem and where they fit in. \r\n\r\n\r\nOverall I love it all, though, and am excited for this as the future of Linux'),(1290,'1980-01-01 00:00:00',5,'en','1423677134','A2','A3','male','','','','','','','Y','','','','','','','','','Y','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I heard about it from former student colleagues and then had a coworker that was using Nix on macOS. He introduced me to Nix and NixOS.','','','','','','','Y','','','','','','','','Y','','','Y','','Reproducible development environment','Ease of installation of software','','Add: improved docs','Arch Linux with AUR (was using it before I switched to NixOS)','','','','','','','','','','','','','','','poetry2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','for gaming with Steam','A3','I wanted to use Nix for the whole system.','Y','','','','','','','Easy system configuration','Easy rollback after upgrade (generation switching)','Centralized configuration','Add: centralized documentation.\r\n','Arch Linux ','Y','','','','','','','Y','','','spectrum, i3, sway, river','Home-manager','Mach-nix',''),(1291,'1980-01-01 00:00:00',5,'en','1490449837','A1','A3','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Cfgmgmt on Linux distributions wasn\'t good enough, so I tried NixOS.','','Y','','','','','Y','','Y','','Y','Y','','','','','','Y','','Declarative/generations','Monorepo','Mobile NixOS','Rendered docs (eg godocs or hackage) for https://github.com/NixOS/nixpkgs/tree/master/nixos/lib','Guix\r\nAn abacus','','','','Y','Y','','','','','','','','','','','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Cfgmgmt on Linux distributions was too tricks e','','','Y','','Y','Y','','Mobile NixOS','','','HTML rendered and searchable docs for https://github.com/NixOS/nixpkgs/tree/master/nixos/lib','Guix','Y','','','','','','','Y','','','','Mobile NixOS','',''),(1292,NULL,2,'en','1453576226','A5','A6','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','','','Y','','','','','Y','','','','','','','','','','','','Consistent dev env','','','','','','','','','','','','','','','','','','','','','','','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1293,NULL,1,'en','1632486919','A5','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1294,'1980-01-01 00:00:00',5,'en','871065433','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','job?','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','a friend told me about Nix while i was learning about packaging for a hobby project\r\nand nixpkgs has more packages than any other single source, so i started using nixpkgs on debian\r\nfrom there i quickly started using NixOS because i wanted to write a module for my project','','Y','','','','','Y','','Y','Y','','Y','Desktop','Y','Y','Y','','Y','','reliability','portability','single reference for similar packages','perfect UX (to be added)','snap','','','','Y','','','','','Y','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Desktop','A4','I started using NixOS to use a module I wrote for a package I wrote for an utility I wrote.','Y','','Y','Y','','Y','Desktop','module system','reliability / portability','single reference source for writing modules','a derivative OS that is successful as a regular desktop OS','debian','Y','','','','','','','','','','Sway','lorri','community support','This step is 20% of the survey...'),(1295,'1980-01-01 00:00:00',5,'en','1505707300','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','ChromeOS','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','After trying arch, freebsd, and Gentoo to find a distro that handles dependencies sanely, I decided to try nix on debian. It was everything I was looking for (simple means to build from source, development environment, reproducible, easy to create backups), and I can basically take it to any distro I want.','','Y','','','','','Y','','','','','','','Y','Y','','','','','Development environments with nix-shell','Imperative package management at close to head','Rollbacks','I\'d add a koan-style intro to the language: I still don\'t know it well or how to apply it','I\'d probably just stick with Arch, pacman, and docker','','','','Y','','','','','','','','','','','','','','','','N','Lack of experience','N','N','Some free time, a good intro document. I\'ve heard people say it\'s mostly experimental (I\'m not sure why), so seeing others use it as a stable environment.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1296,'1980-01-01 00:00:00',5,'en','2042406775','A2','A3','male','','','','','Y','Y','Y','','','','Y','Y','','','','','Y','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I got into reproducible builds with Bazel and Nix. Then I found out I can manage my own packages with Nix - e.g. bundle Vim with personalized config.','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','Reproducible builds (reproducible build dependencies)','Reproducible dev environment (nix-shell)','Ability to define and build own derivations','Make it easier to learn how Nix (the package manager) works, and easier to learn Nix (the language)','Have no idea','','','','','','','','','','','','','','','','Y','','','I maintain personal nixfiles Github repo with my own derivations','N','Don\'t know enough Nix the language. Also, I use Nix to build my own personal projects, not useful to have them in global Nixpkgs.','N','N','I don\'t want to change my primary OS (OS X).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'niv (https://github.com/nmattia/niv)\r\nlorri (https://github.com/target/lorri)\r\ndirenv (https://github.com/direnv/direnv)\r\nrules_nixpkgs (https://github.com/tweag/rules_nixpkgs)','','Thanks for making Nix available to everyone, and your efforts in making it better and more accessible!'),(1297,NULL,NULL,'en','1771587260',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1298,'1980-01-01 00:00:00',5,'en','1127235121','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','','Y','','','Y','','Y','','','','','','Home machine, gaming machine','','Y','Y','Y','Y','','Flakes','','','Nothing','GNU Guix','','','','','Y','','','','','','Y','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','For gaming','A1','','Y','','','','','','Home machine','One configuration per many machines','Containers','Rolling release','','GNU Guix','Y','','','','','','','Y','','','','Home-manager','','Thank you for the wonderful operating system!'),(1299,'1980-01-01 00:00:00',5,'en','223058940','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','','','','Y','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','','','','','','','','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','N','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nixpks website','',''),(1300,'1980-01-01 00:00:00',5,'en','1560929418','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','','','Y','','','','','','','','','Y','','android ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It made sense','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','','Y','','Reliable builds','Build abstractions and config management','Nixpkgs is a knowledge database','Add tests\r\nMake flakes an independent tool','Bash and avoid devops work','','','','Y','Y','','','Y','','','','','','','Cabal2nix\r\nElm2nix\r\nHaskell.nix\r\nSbtix\r\nbuildGoModule\r\nYarn2nix','Y','Y','','contribute directly to nixpkgs','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Best way to run nix\r\nSense of adventure at the time \r\nInnovative distro\r\n','Y','Y','','Y','','','','Worry free linux','First class extensions. All modules are created equal','','Secrets outside the store ','I wouldn\'t know anymore. An ox and plow?','Y','Y','','','','Y','Hercules ci runNixOS effect','Y','','','','flake-modules-core\r\narion\r\npre-commit-hooks.nix\r\nlorri','',''),(1301,'1980-01-01 00:00:00',5,'en','603347617','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was looking for a package manager with a comfortable command line interface, and a somewhat automatic way to update packages. Then I learned about guix, which had at that time a better CLI but worse community and infrastructure and they use GNU shepherd instead of systemd, and they don\'t use GitHub etc which turned me down. Then I realised I may try Nix as Guix is based upon it, and I never looked back. At some point I also discovered the nixpkgs-update bot and I felt like I reached the future.','','','','Y','','','Y','','','','','','','','Y','','','Y','','Declarative','','','I\'d make the content addressable features work better, see https://github.com/NixOS/nix/issues/5913, and make IPFS a standard way to fetch packages.','Use Guix and cry every day that they don\'t use GitHub and systemd.','','','','Y','Y','','','','Y','','','','','','https://github.com/tweag/gomod2nix\r\nhttps://github.com/svanderburg/node2nix\r\n','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Same story as for Nix.','','','Y','','','','','Declarative modules','Best package manager and package set ever','Reproducibility','I\'d finally implement rfc https://github.com/NixOS/rfcs/pull/72 .','Perhaps Arch Linux with nix or guix installed.','Y','','','','','','','Y','','','','','',''),(1302,NULL,NULL,'en','863757709',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1303,NULL,1,'en','710063648','A4','A5','male','','','','','','Y','Y','','','Y','','','','','','','','Y','Y','Y','','','','Y','','Y','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1304,'1980-01-01 00:00:00',5,'en','242535413','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1305,'1980-01-01 00:00:00',5,'en','1109317756','A2','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','Y','','','','','','','','','','builds.sr.ht','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(1306,'1980-01-01 00:00:00',5,'en','2038073135','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','','','','Home desktop','','Y','Y','','Y','','Access to nixpkgs','Access to NixOS','Declarative configuration','Make creation of flake.nix / default.nix less cumbersome. I always insert the same boilerplate. Can I get some supported language-specific templates, maybe with a wizard?\r\n\r\nMake nixpkgs the default again to run commands and search (nix run nixpkgs#foo) vs (nix run foo). Generally make it more user friendly. I still don\'t know how I get a python environment with additional packages with \"nix shell\" (so I use nix-shell)','Ubuntu+apt and language specific packaging/build-tools','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Declarative configuration is a beast.','Y','','','','','','Home desktop','Declarative configuration','Rollbacks','Community (I once needed to build my own nixos install image from unstable and used a derivation someone else created - it just worked)','Make declarative user configurations a first-class-citizen. ','Ubuntu','Y','','','','','','','','','','i3/sway','home-manager','','I love you'),(1307,NULL,NULL,'en','1394416804',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1308,'1980-01-01 00:00:00',5,'en','1137101531','A2','A2','male','','','','','','','Y','Y','Y','','Y','','','Y','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I started with Nix as an unprivileged package manager while making my Arch install immutable, then transitioned my home server from Arch to NixOS as the declarative config piqued my interest. Wouldn\'t go back.','Y','Y','','','','','Y','Y','Y','','','Y','','Y','Y','Y','','Y','','nix-shell','nix-repl','comma','I would deprecate nix-env and transform it into a npm-esque \"pseudo-imperative\" command that appends to the package list, reaching parity between NixOS, multi-user Nix, and nix-shell.\r\n\r\nI would also add an explicit type system to the Nix language, reasonably merging the \"config-hack\" type system into clearer set-type declarations and making Nix more approachable.','Probably a lot of unprivileged containers and overlayfs, and an OSTree-based system.','','','','Y','Y','','Y','','Y','','','','','','pip2nix, node2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','My Arch home server was getting unmanageable, and the declarative aspect of NixOS enticed me.','Y','Y','Y','','','','','Declarative configuration','systemd-nspawn containers','Nixpkgs overlays','I would make the declarative system configuration aspect applicable to user-mode Nix, not unlike home-manager. That would deprecate nix-env and turn it into a npm-esque pseudo-imperative installer, which would append packages to a declarative list, thus unifying Nix at all levels.','I\'m really not sure. Maybe Rancher or an OSTree-based system','Y','Y','','','','','','','','','Kodi','comma -- in fact I\'m writing a zsh integration plugin: https://github.com/thesola10/zsh-comma-assistant\r\n\r\nsops-nix (https://github.com/Mic92/sops-nix ) for securely deploying with secrets from a pure Git repository.','I attempted to start using home-manager, but haven\'t yet migrated my home config',''),(1309,NULL,NULL,'en','1881015694',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1310,'1980-01-01 00:00:00',5,'en','307820592','A5','A2','male','','Y','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I worked at a startup that used it, and I slowly grew to like it. Had some wonderful friends helping me along the way too, definitely couldn\'t have crossed the initial barrier without them.','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Reproducibility','Hermeticism','Speed','I\'d replace the Nix language with something else.','Probably Portage? I don\'t like to think about it.','Y','','','Y','Y','','','','','','Y','','','','poetry2nix, crate2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted to be able to share configs on all my systems easily.','Y','Y','Y','','','Y','','Configuration sharing','System validation (VM tests)','Fresh pkgs','I\'d add an easier way to deploy.','Gentoo.','','','','Y','','','','','','','sway','flake-utils and fenix','NixOps, morph, and some other deployment tools.',''),(1311,'1980-01-01 00:00:00',5,'en','1309276793','A2','A5','male','','','','','','','','','','','','','','','','','','','','','Y','Y','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Consistent way of installing software.','','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','Declarative system configuration.','Reproducibility','Wide software abailability','I would use a generic programming language like Guix does. (I don\'t use Guix because of their extremist views...)\r\nI would make the CLI more consistent (`nix` is going in that direction).\r\nI would push less minor version updates to stable releases (mostly vulnerabilities fixes) to reduce downloads.\r\n','Debian','','','','Y','Y','','Y','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','For it declarative approach to system deployment.','Y','','','','','','','Declarative configuration','Easy experimentation and roll-back.','Wide software abailability','I would use a standard programming language rather than inventing a specific one.\r\nImprove the documentation.','Debian','Y','','','','','','','Y','','','','','',''),(1312,NULL,NULL,'en','174117412',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1313,'1980-01-01 00:00:00',5,'en','1081478634','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','As a promising cross compilation ecosystem + as part of a NixOS installation','','Y','','','','','Y','','Y','','Y','Y','','','Y','Y','','Y','','Declarative way to build images backed by a large package repository','Creating build environments with all project specific tools in PATH','Building static executables','- Add functionality to somehow limit disk space use by derivations which are trivially built but occupy a lot of space (ie. disk image outputs)\r\n- Improve offline usability','System use: Ansible, Docker\r\nCross compiling: buildroot, yocto','','','','Y','','','','','','','','','','','gomod2nix\r\npoetry2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','To be able to use Nix (on a VM, so it\'s easy to give NixOS a try)','Y','','Y','','','Y','','Declarative OS configuration','Access to large software repository, mostly cached','Native ZFS support, six month stable release cycle','Remove the dependency of system scripts on Perl.','Arch Linux (desktop)\r\nDebian/CentOS (servers)','Y','','','','','Y','','Y','','','','Utilities like nix-diff, nix-tree','',''),(1314,'1980-01-01 00:00:00',5,'en','305588365','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','N','Y',NULL,'My goal was to install NixOS and create/maintain a configuration repo that would let me take my computer from new installation to \'how I want it\', but this turned out to be rather complicated in practice. There are lots of different tools and systems (various nix-something command, the new nix CLI, flakes, home manager, ...) and it was not clear how to put it all together into what I was actually after. I mostly ended up putting together different pieces found in the documentation and other people\'s configs. But basically, for everything I learned, I encountered two new things I didn\'t understand yet and eventually had to shift focus to something else.','Clearer structure of Nix technologies / general overview of the project as a whole and how it all fits together, better documentation (especially for beginners and \'how to get stuff done\'), better real-life examples.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'My goal was to install NixOS and create/maintain a configuration repo that would let me take my computer from new installation to \'how I want it\', but this turned out to be rather complicated in practice. There are lots of different tools and systems (various nix-something command, the new nix CLI, flakes, home manager, ...) and it was not clear how to put it all together into what I was actually after. I mostly ended up putting together different pieces found in the documentation and other people\'s configs. But basically, for everything I learned, I encountered two new things I didn\'t understand yet and eventually had to shift focus to something else.','Clearer structure of Nix technologies / general overview of the project as a whole and how it all fits together, better documentation (especially for beginners and \'how to get stuff done\'), better real-life examples.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Not exactly the same usecase as I was after, but I found https://ianthehenry.com/posts/how-to-learn-nix to be a decent reflection of how I felt trying to learn Nix.'),(1315,NULL,2,'en','1676383163','A1','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1316,'1980-01-01 00:00:00',5,'en','1653170529','A2','A1','male','','','','','','','Y','Y','Y','','','','','','','','','Y','','','','','Y','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','It started with reproducible development environments using nix-shell. Then, home-manager.','','Y','','','Y','','Y','','Y','Y','','Y','','','Y','Y','','Y','Build VM images','Declarative development environments','Configuration sharing','Effortless remote building','Add a proper type system to the language.\r\nRemove some of the weird quirks of the language that don\'t have much value.\r\nMake the error messages suck less.','Programming language specific tools for development (pipenv etc.)\r\nDotfiles for configuration management.','','','','Y','','','','','','','Y','','','','None outside of nixpkgs','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','On desktop: Arch Linux sucks.\r\nFor servers: Ansible sucks.','','','Y','','','Y','','Configuration sharing/reuse','Git history of the system for fearless rollbacks (and bisects)','','','Manual configuration','','','Y','','','','','Y','','','','- direnv (direnv-nix)\r\n- mozilla overlay\r\n- Nix-output-monitor\r\n- Niv/npins\r\n- nix-tree\r\n- home-manager','','You could have more questions targeted at users that *don\'t* use Nix/NixOS (anymore) somewhere or for some reason, e.g. that only use it privately. The Rust and Haskell survey do a pretty good job at this, for reference.\r\n\r\nAlso, never stop asking for feedback on the survey, and always run small pilot tests before going live. Keep up the good work!'),(1318,'1980-01-01 00:00:00',5,'en','1637664070','A2','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','Y','Y','Consultant','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','My colleague fpletz gave a talk at FrosCon about both Nix & NixOS that convinced me to take a look. Using it since then :) ','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','declarative builds and configurations','very easy to patch e.g. system libraries (or to modify packages in general)','reproducible packages','* Rather than having a BDFL who doesn\'t involve in core discussions about e.g. flakes in Discourse (and thus gives me the impression of them doing what they want), I\'d rather see a more transparent, community-centric and RFC-based (for large changes such as - well - flakes) development model.\r\n* a debugger (I know there are plans for this, but with a wand I\'d add one immediately ;-) )\r\n* error-reporting on the quality-level of Rust or Elm (I know how hard that is since I contributed a few fixes to the evaluator for this, but again, wand :p)','Docker\r\nWood','','','','Y','Y','','Y','','Y','','Y','','','','transloadit/yarn2nix (fork of nix-community/yarn2nix)\r\nnix-community/bundix\r\nnix-community/pip2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started using Nix and NixOS actively at the same time, so my answer for Nix applies here as well.','Y','Y','Y','Y','','','','rollbacks','declarative infrastructure','incredible customizability (I have custom patches for ~15-20 programs and I doubt that it would be that easy to maintain that on another distro)','* networkd by default\r\n* fix the broken initrd-openssh stuff\r\n* proper secret-handling everywhere! (to be fair, we\'re on a good path - in contrast to the state a few years ago)','Fedora','Y','Y','','','Y','','','','','','sway','home-manager (while I was skeptical at first, I can\'t imagine a setup without it these days!)\r\nrnix-lsp (though it\'s in a very very early state, so not mentioning it is a good thing IMHO)\r\ndirenv','node2nix (while I appreciate the efforts there, my non-representative experience says that it\'s almost always easier to straight go with yarn2nix)\r\ncomposer2nix (I usually try getting a tarball with a pre-existing `vendor/`-dir in it)',''),(1319,'1980-01-01 00:00:00',5,'en','1427127654','A2','A3','-oth-','not specified','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y','Y','','N','Y',NULL,'Tried it but had the feeling that Nix without NixOS is not worth my time. Makes things more complicated for me without benefit.','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Took to much time to switch from current used system. Also to much hassle to teach the teams I work with to stop using debian on our server and start using NixOS.','When there is NixOS based on FreeBSD.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Keep *BSD in mind.'),(1320,'1980-01-01 00:00:00',5,'en','237925234','A2','A3','-oth-','queer','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I really liked the idea that all my configuration can be done once for multiple computers, and that it\'s one place (or at least could be). Later it turned out that it\'s also very useful for my work.','','','','','','','Y','','','','','','','Y','Y','','','Y','','reproducibility','the fact that it combines different tools. I don\'t need to provide multiple files for my environment to be reproducible, I can just provide a shell.nix','stability','I would make the documentation perfect (I am not even sure what that means, I don\'t really have a solution)','I\'d be very sad. Maybe things like conda, and shell scripts?','','','','','','','','','','','','','','','','Y','','','','N','I don\'t think I know enough. Also the contribution process seems complicated.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','The same as with nix.','Y','','','','','','','The same as with nix','','','Documentation! ','Probably debian?','Y','','','','','','','','','Y','openbox','None','None','Thanks for all the hard work'),(1321,'1980-01-01 00:00:00',5,'en','302740790','A2','A3','male','','','','','','','','','','','','Y','Y','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','I started with NixOS to get a consistent system configuration on multiple PCs I manage. However, I found Nix to be a useful package manager on non-NixOS systems, especially MacOS','Y','Y','','','','','Y','','','','','','User Workstations','Y','','Y','','Y','','Safe and disruptionless upgrades','Declarative system management','Access to nixpkgs','I would make `nix-env -i pkg` a shorthand for `nix-env -iA .pkg` and add an interface for graphic package managers.','pacman and homebrew','','','','','','','','','','','','','','nixops','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','For managing multiple work PCs consistently','Y','','','','','','User workstations','Declarative system management','Safe and seamless upgrades','','- Add a nixpkgs-unstable ISO\r\n- Add simple Secure Boot configuration\r\n- Fix issues in automatic hardware configuration (such as LUKS on LVM)\r\n- Add optional guided installer','Arch Linux','Y','Y','','','','','','Y','Y','','','','',''),(1322,'1980-01-01 00:00:00',5,'en','1177580560','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I liked how the os configuration can be described in a single file.','','','','','','','','','','','','','','Y','Y','','','Y','','Declarative OS configuration','Isolated dev environments ','Package management ','Someway to install packages outside of nix and have them work. To easily work with newer versions of software or ones that are not in the package repo. Also I’m not a huge fan of the nix language.','Gnu guix. Arch linux','','','','','','','','','','','','','','','','','','','','N','Lack of knowledge. Cumbersome language','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','','','','','Gnu guix. Arch linux','','','','','','','','','','','Xmonad','','','Nixos is a really nice project. Keep up the great work!'),(1323,'1980-01-01 00:00:00',5,'en','1967597576','A2','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was drawn in by the reproducibility promise. I tried it a couple of times alongside Guix but dropped it because of the steep learning curve. At some point there was enough documentation around (blog posts etc.) that I had enough material to learn nix in my free time.','Y','','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','integrity','reproducibility','general purpose (e.g. opposed to pip, npm, etc)','add: type checking (possibly with optional opt-out), docstrings, introspection, formal specification to guide alternative implementations\r\nchange: error messages, inconsistent build options across Python, Lua, etc., factor out lib from nixpkgs\r\nremove: not sure','I don\'t think there\'s a single tool that can replace nix. I would probably use a mix of Docker, OS package managers (apt, pacman, etc.), other package managers (pip, homebrew, etc.)','','','','Y','Y','','','','','','','','','','none','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','started with nix, ended up with NixOS','Y','','Y','','','','','reproducibility','modularity','rollbacks','same answers as nix I guess','Debian for servers and Arch for dev workstations','Y','','','','','Y','','','','','AwesomeWM','home-manager, nix-darwin','NixOps','keep up the good work!'),(1324,NULL,1,'en','1473599508','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1325,'1980-01-01 00:00:00',5,'en','550808357','A2','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Security Architect','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','go programmer enthousiasts','','Y','','','','','','','Y','Y','','','','','','','','Y','','','','','','ubuntu + containers','','','','','','','','','','','','','','','','Y','','','','N','time/commitment','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','','','Y','Y','','','','','','','','','Y','','','','','','','','','','','','flakes\r\nnur',''),(1326,NULL,2,'en','1292250050','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','One of my colleague showed me his installation, and I fell in love with the fact that the whole os is configured by only one configuration file. ','','Y','','','','','Y','','','','','','','','','','','Y','','Generate the whole OS from a configuration file ','The Nix language is functional. ','It is most of the time stable. ','A better language syntax. Elm would be a great inspiration.\r\nAn easier way to write derivation and debug it. It is hard to manipulate variable without really knowing what is inside.\r\nAnd, last but not least, a better documentation. ','Arch Linux','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1327,NULL,NULL,'en','16247756',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1328,'1980-01-01 00:00:00',5,'en','133115998','A1','A5','male','','','','','','','Y','Y','','Y','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I previously used homebrew. I had tried to automate the configuration of a macOS workstation via scripts and text files (https://github.com/ldeck/macos-setup) and used this at work for a while to configure machines for a project. This kind of worked, but was clunky. \r\n\r\nI found there was a need to express dependencies, but this would require a more sophisticated configuration file; a language. Similarly, I was finding that the results weren\'t reproducible across machines, nor was it typically maintained by a team as it wasn\'t part and parcel of the project repositories. It was also not sophisticated enough to enable IaC for both the machine and projects.\r\n\r\nSo I searched around for alternative package managers and stumbled upon nix. Having an interest in functional programming concepts, the moment I saw \"Reproducible builds and deployments\" I was hooked, even though the learning curve was high.','Y','','','','','','Y','Y','','','','','','','Y','','Y','Y','home-manager','reproducibility','declaritive','packages','1. More macOS / darwin support. Too many packages aren\'t enabled for darwin.\r\n2. An adaptor for homebrew casks\r\n3. A nix GUI, to ease adoption and usage for less technical people.\r\n4. More documentation, tutorials and examples of best practices.','homebrew, macports','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,'N','N','If I needed to use a linux machine, I\'d strongly consider it.\r\nI\'m more likely to consider NixOS if it would naturally complement a macOS / darwin system.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','','Thanks for your work!'),(1329,'1980-01-01 00:00:00',5,'en','1366651869','A2','A4','male','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I stumbled upon the phd thesis on functional packages by eelco and I was floored. I find most of the stuff nix solves I secretly wished while I played with archlinux and ubuntus of this world. It made me pretty excited about linux and more interested in devops too. ','','Y','','Y','','','Y','','','','','','','','','','','Y','','Rollbacks and ephemeral states','Functional semantics','Speed and power','I would add more user helper functions and my secret wish is to add a machine learning module to nix system so that nix has a way of learning how to build packages. There is too much work made by hand. Also I wish nix was written in haskell or rust. ','I would use archlinux pacman manager or dream of nix. ','','','','','Y','','','','','','','','','','','Y','Y','','','N','Nothing, only my own ignorance. I wish to learn more and then to help in packaging. I really wish to contribute as soon as I am able. I dont care which oackage. It seems very helpful and compassionate to simply help in packaging software and finding better ways to do it. Its very humane and kind.','N','Y',NULL,'I could not get pro audio stuff work on NixOS and some livecoding programs such as TidalCycles which is a Haskell library running on top of SuperCollider. ','I am trying it now all the time but still learning how to properly package TidalCycles lovecoding. When I do that I can move to NixOS full time. For now I am dualbooting and googling ways to make pro audio stuff work on NixOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not much. I would like to learn more about other tools in nix ecosystem','','You are doing a great service to humans by working on Nix and NixOS. I wish you best'),(1331,NULL,1,'en','2019062841','A2','A3','male','','','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1332,'1980-01-01 00:00:00',5,'en','1252508425','A2','A2','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','You can\'t manage multiple machines easily with brew and Debian packages are a pain to build.','','Y','','Y','Y','','Y','','Y','','','','','Y','Y','Y','Y','Y','','central configuration','shared configuration files','easy patching of software','improve the performance by 10x','brew, Debian packages','','Y','Y','Y','Y','','','','','','','','','custom','node2nix, vim2nix','Y','Y','Y','local files','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I wanted to save disk space by not duplicating the standard linux libraries.','Y','','Y','','','','','shared configuration with nix','easy patching of software','get more up to date stuff compared to other Distros','improve performance by 10x','Debian Unstable','Y','','','','','Y','','','Y','','','home-manager, nix-update, nixpkgs-review, nix-index, nixpkgs-fmt, nixpkgs-hammer, nix-prefetch-url, nix-output-monitor, nixGL, nix-bash-completion, rnix-hashes, nix-tree, nix-template, cached-nix-shell, lorri','nixops, nix-fmt',''),(1333,'1980-01-01 00:00:00',5,'en','20547219','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','Easy rollback','Declarative management','Multiple versions of packages installed at once (mainly for dependencies)','The nix language...\r\n- A type system\r\n- Faster evaluation\r\n- Better debugging of evaluation failures / \"this derivation builds, but does not do what I want...\"','Probably rely on a linux distro\'s package manager, and a hodgepodge of different languages\' tools for different projects (cabal, npm etc).\r\n\r\n(Or, I\'d look again at guix)','','','','Y','Y','','Y','','','','','','Y','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Daily machine','A3','I had heard interesting things about it, and liked the functional dependency management. The final push was applying for a development job where they used Nix heavily.','Y','','Y','','','','Daily personal machine','Functional management of OS packages/configuration','Easy rollback','','(I guess this is probably a Nix thing, but the only place I come across it is via nixos-rebuild): Better flakes support for sparse git repositories - I manage my nixos config in a generic personal monorepo (along with dotfiles, personal documents & wiki, emails etc). The repo is pretty large and nixos-rebuild is very slow due to having to clone the whole repo and put it in the store. (NB: this is not the same as https://github.com/NixOS/nixpkgs/pull/135881)','Arch Linux or Guix probably','Y','Y','','Y','','','','','','','xmonad','Haskell.nix https://github.com/input-output-hk/haskell.nix\r\nCachix (at work)','','Thanks for all the work you have put into making using NixOS so great to use -- I\'m not sure if I could go back to any other distro now!'),(1334,NULL,2,'en','809199997','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','it came bundled with nixos','','Y','','','','','Y','','','','','','','Y','Y','','','Y','','nix-shell for ad-hoc development environments since i don\'t like polluting my system with development tools','nix-env, sometimes i feel too lazy to edit configuration.nix :P','being able to install packages for user rather than for the entire system','i really like `apk add --virtual .foo bar baz` from apk, it\'s kinda similar to nix-shell, but it\'s easier to use imo','apk','','','','','','','','','','','','','','','','Y','','','','N','i didn\'t need to',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1335,NULL,NULL,'en','1433085150',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1336,NULL,1,'en','989469041','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1337,'1980-01-01 00:00:00',5,'en','1147485330','A2','A3','-oth-','Neutral','Y','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started using it because of \"reflex-platform\"/\"Obelisk\", a Haskell project.','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Declarative package management','Multi-ecosystem builds','','Make channels and other magical bits less imperative in a user friendly way, full graphical support for configuration (I believe being declarative lends itself amazingly well to this, but it\'s a big effort and maybe too late to retroactively do it for the existing nixpkgs ecosystem.)','','','','','','','','','','','','','','','','None.','Y','','','','N','Getting started on learning Nix the language, the Nixpkgs ecosystem, etc. is incredibly hard and confusing. I felt lost when I wanted to contribute something. It\'s hard to know even where to start when you don\'t know anything. Now that I\'m working with Nix professionally I\'d feel more confident and in the meanwhile all packages I wanted are included :)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','For daily life','A4','I was using Nix on Mac at first which didn\'t always feel super smooth. When I decided to get a Linux machine again I went full NixOS because I liked the concept, being a functional programmer.','Y','','Y','Y','','','Desktop','Declarative package management and configuration','In theory being able to pick an earlier version of my system but tbh I very rarely need it.','','Same as Nix answer.','','Y','','','','','','','Y','','','','','','Thanks for all your work!'),(1338,NULL,3,'en','1703212739','A2','A2','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A2','','','Y','','','','','','','Y','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','N','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1339,'1980-01-01 00:00:00',5,'en','477802967','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','','','Better error messages','Hmm maybe docker','','','','','Y','','','','','Y','','','','','Node\r\nhaskell','Y','','','','N','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1340,NULL,1,'en','11633581','A3','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1341,'1980-01-01 00:00:00',5,'en','1610292555','A1','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted to find a way to declaratively list and install system dependencies just like how it\'s done in modern languages. Started with Nix the package manager on MacOS then on Ubuntu. Finally made the switch to full NixOS 6 months ago. Overall, it\'s been fun (but also painful at times) to learn and use Nix. ','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative development environment','Easy rollback','Build container images','Somehow being a lot easier to learn. Better support for FHS. steam-run works but not reliably in some cases.','Guix\r\nUbuntu','','','','','Y','','','','Y','','','','','','node2nix\r\npoetry2nix (found that it actually takes too long to compile packages so stopped and just use buildPythonPackage for the few packages that are not on nixpkgs)','Y','Y','','','N','Lack of experience/knowledge in Linux and the packaging process. Would be great to have more in-depth guides about these topics.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Wanted to find a way to declaratively list and install system dependencies just like how it\'s done in modern languages. Started with Nix the package manager on MacOS then on Ubuntu. Finally made the switch to full NixOS 6 months ago. Overall, it\'s been fun (but also painful at times) to learn and use Nix. ','Y','','Y','','','','','Declarative system and development environment','Ready-to-use services that can be enabled easily','Easy rollback','Same as for Nix.','Guix\r\nUbuntu','Y','','','','','','','','','','bspwm + dunst + rofi','home-manager','','Thanks for all your hard work! Very grateful to have such a passionate, smart and hard-working individuals working on Nix.'),(1342,'1980-01-01 00:00:00',5,'en','1670361318','A5','A3','fem','','','','','','','','','Y','','Y','','Y','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Major ubuntu update at work broke log-in for multiple users, including the CTO, so he decided we would switch all work computers to NixOS.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Declarative specifications','Composable specifications','Cacheable outputs','Add\r\nSecrets management\r\nNix language as a library (HNix??)\r\nFormalize the override and composition patterns of nixpkgs into a proper, consistent library\r\n\r\nRemove\r\nFlakes','An abacus','Y','Y','','Y','Y','','Y','','Y','','Y','','','','cabal2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same time I started using nix. Why would I want my OS to be able to break itself spontaneously, with no recourse?','Y','Y','Y','Y','','Y','My Router','Declarative system configuration','Rollbacks; transplantation of configurations is possible','System configurations as a library of composable specifications','An alternative to systemd, I guess','Please, don\'t make me think about that','Y','','','','','Y','Basalt https://gitlab.com/obsidian.systems/basalt','','','Y','','home-manager https://github.com/nix-community/home-manager\r\nreflex-platform https://github.com/reflex-frp/reflex-platform\r\nbasalt https://gitlab.com/obsidian.systems/basalt\r\nnix-thunk https://github.com/obsidiansystems/nix-thunk\r\n','flakes\r\nniv\r\nhaskell.nix','I am troubled by the increasing prominence of flakes. They do not help me use nix the way that I usually use nix, but when they are used by others that I depend on, then I have to go through hoops to integrate them into my projects. For example, by using flake-compat (https://github.com/edolstra/flake-compat). I have not been able to use them myself in a satisfying way. Maybe I am holding it the wrong way. I\'m not sure.\r\n\r\nMost of my large-scale nix projects end up looking like nixpkgs. These projects need components to be easily composable and overridable in a hierarchical way, where the composition and overrides are not known ahead of time. Flakes make that inestimably more difficult: they carry too much context about how their contents should be used, lock files are not compositional, and this is all wired together at the \'top-level\', whereas general nix can be put together in more complicated ways.\r\n\r\nI am afraid that if flakes become widely popular, there will be systems that are built in nixpkgs style, and there will be systems built in flakes style, and they will not play nice: This would be a terrible technological and cultural fork. I do not think the solution is to reformulate literally the largest and most up-to-date Linux package repository in the world, I think the solution is to figure out how such a project can possibly exist in a manageable state and formalize those patterns so that we can all use them consistently. I do not think flakes are fit for the kinds of extremely hairy dependency logic that can arise in projects that look like nixpkgs: These are extremely common! I am aware of multiple companies that configure their ecosystems in the style of nixpkgs.\r\n\r\nMaybe it is the case that flakes are not meant for a project like nixpkgs, that there is no need or desire to structure nixpkgs like that. But then I ask, what is the point? All sufficiently complex projects end up resembling the Entire Software Ecosystem in some way or another. Those are the projects that most need sanity guarantees on purity and composability. It\'s disheartening to see things move towards a \'module system for nix\' that isn\'t fit for purpose.'),(1343,'1980-01-01 00:00:00',5,'en','488903251','A2','A4','male','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','It removed anxiety of building a system. I am no longer stressed that the system will stop working due to a system update. If it builds once, it builds nearly forever. It is a huge relief to know that your work does not start bit rotting immediately after you put it away.','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Reliable build environments','Ability to declaratively build a whole OS via NixOS','Ability to integration-test a service on NixOS tests using qemu.','1. Open up Nix (the tool, the language) development to wider audience. I am afraid Eelco has become a bottleneck in Nix development :(\r\n2. Invest into long-term Nix support model to encourage bigger usage by bigger players with bigger pockets.','I would probably stop doing hobby programming projects alltogether and move to woodworking.','','','','Y','','','','','Y','','','','','','https://github.com/erlang-nix/rebar3_nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','If you get into Nix, NixOS just sucks you in.','Y','Y','Y','Y','','','','Declarative config','','','','Ubuntu / Windows','Y','','','','Y','Y','','','','','AwesomeWM','home-manager','Nixops',''),(1344,'1980-01-01 00:00:00',5,'en','242051874','A2','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Primarily - nixos gives me a way to manage my servers without needing 3rd party configuration management tools.','Y','Y','Y','','','Y','','declarative configuration management','ease of recovery, see #1','creating a cluster of similar machines is a breeze, see #1','1. maintaining specific package versions could be easier, I know the workarounds, I wish I would not need them\r\n2. I wish I knew how to create a nixos container with unstable options on a stable nixos base system, I just can\'t figure it out, if it is possible at all','arch or debian- depending on package availability, together with ansible','','','','','','Y','','','','Y','','','',''),(1345,'1980-01-01 00:00:00',5,'en','407996650','A1','A3','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Because I uses Haskell','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','','','','','','','','','','','','Y','','','','','','','','cabel','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','xmonad','home manager','',''),(1346,'1980-01-01 00:00:00',5,'en','393740581','A2','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was made aware of nix while searching for a way to cross compile Haskell packages for AArch64.','','','','','','','Y','','','','','Y','','','Y','Y','','Y','','nix develop in combination with direnv','nix flake update (probably my most used command)','','Add a way to inspect the file system of the build container when a build breaks.\r\n','Programming language specific programs like stack (Haskell) or cargo (Rust)','','','','Y','Y','','','','','','Y','','','','cabal2nix, crate2nix, elm2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I started using nix and every where NixOS was mentioned. I was a bit frustrated with Manjaro and then decided to make the switch. One important factor was that I wanted to save my system configuration in a repository. NixOS forces you to have a complete and up to date system config and you can easily share one config across multiple machines.','Y','','','','','','','Quick access to old system configurations if something breaks.','A unified and very expressive way of configuring software.','','','Probably some Arch based Distribution. Maybe also Gento','Y','','','','','','','','','','XMonad + picom','home-manager, nixos-hardware, nix-direnv, nix-doom-emacs','emacs-overlay (now using nix-doom-emacs)',''),(1347,NULL,NULL,'en','1205722819',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1348,'1980-01-01 00:00:00',5,'en','1608081367','A2','A3','male','','Y','','','Y','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'ve been suffering from python and cmake related deployment issues (e.g. dev environments) and looking for alternatives. Deployment at the software-level is one of the big issues in research reproducibility. I\'ve never felt satisfied with docker as a deployment solution. I haven\'t had an incentive to invest in something as complex a k8s.','Y','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','Composability\r\n\r\nE.g. you can build [colmap](https://github.com/colmap/colmap) with docker, and build some [NeRF](https://github.com/sxyu/svox2) solution with docker, but it\'s hard to have them in the same environment, so you\'ll fallback to microservices and construct some unnecessarily complex architectures. With Nix you can have them both (and more), without microservices, and that\'s my selling point.','Inspectability\r\n\r\nFundamentally, with Nix you always can find out what goes into your closure and why. When python Poetry or conda fails with the dependency solver error, you\'re usually left without actionable information: e.g. conda would throw many lines of libc semver inequalities at you, which aren\'t particularly helpful. With Nix you could hypothetically follow the entire evaluation process and visualize all the dependencies, all the cache-misses, etc. In practice this is limited to tools like nix-tree, which is however already a big leap forward. I\'m sure there are more parts of the Nix deployment process that could be visualized fruitfully','Cache-ability\r\n\r\n...maybe? I\'m using direnv with `use nix` and `use flake` a lot and I\'m really amazed how smooth the experience is, I know it\'s fundamentally impossible with conda. One of the reasons it is possible with Nix though, is that its store as a \"cache\" is [assumed to be] always valid','0. I\'d make dlopen() \"just work\" with graphics and CUDA on Non-NixOS\r\n1. Marketing and mindset: I\'d enchant the world to use Nix instead of docker when all the want is build something in isolation. This would probably include 100% of NVIDIA\'s DL research. This would change the positioning of Nix from a marginal hacker\'s tool (I\'m sorry) to something universally worth investing in\r\n2. If the magic wand hadn\'t power over the minds of peoples, I would conjure up static types: this would help greatly with discoverability of Nix and nixpkgs features, and improve overall UX and stability\r\n3. The wish #1.5 would\'ve been Nix-by-default on sci-comp clusters with a shared store, but you\'re already working on CA derivations','I\'d have to rely on Conda and maybe invest in Spack. But I\'m not sure if these would exist without Nix','','Y','','Y','Y','','','','','','Y','','','','','Y','Y','','a NUR-like repo with CI','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Nix on archlinux is nearly impossible (possible, but not worth the effort) to use with graphics and CUDA.\r\nRather than abandoning Nix, I thought I\'d try an environment where Nix is supposed to work smoothly.\r\n\r\nLater I found other reasons: e.g. I\'ve realized my archlinux setup had a tendency to \"grow out of control\" that I do not so far observe with declarative package management.','Y','','Y','','','','','Ability to quickly apply big changes to the environment\r\n\r\nE.g. with Nix I still can have a polluted global scope (like PATH, or PYTHON_PATH, etc), but it doesn\'t matter because I can nuke or replace things by editing a list in a small program written in nix-lang','Ability to easily use stuff not provided by nixpkgs\r\n\r\nWith archlinux you have AUR and PKGBUILDs, and you can build installable archives for pacman, but maintaining these even with helper tools (yay, pacaur, etc) is painful and unreliable. It\'s also too laborious if you want the same custom packages on multiple machines. With NixOS I put an in-tree derivation in a single overlay, and then it\'s in my git, and part of `nixosSystem` evaluation, I don\'t have to remember about it','...I don\'t know, e.g. systemd integration is convenient','Cannot answer, because I\'m not sure about the focus of NixOS. If Nix knows how to build and compose things together, then Nix know how to ...\"run things\", on a single machine? ...build an OS from a declarative config?','Archlinux because I\'m using NixOS to build something like archlinux but flexible','Y','','','','','','','','','','i3wm','direnv','mach-nix','Thank you!'),(1349,'1980-01-01 00:00:00',5,'en','1756545568','A3','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Since I found out about Nixpkgs and Home-Manager, I started basing my dotfiles into it. The only reason not to use it since then is if I have to use a non-systemd based system (Gentoo with OpenRC for example).','','Y','','Y','','','Y','','Y','','','','','Y','Y','Y','','Y','','Flakes, specifically because of the capability of installing a system from zero and simply referencing the Git repository where the flake is hosted to build what\'s needed.','Possibility to write development environments','','An improved documentation guide to introduce separately into the following:\r\n- Nix language introduction and guide\r\n- How to use the Nix language for development\r\n- How to use the Nix language for system management\r\n- ...','Nothing','','','','Y','Y','','','','','','','','','','poetry2nix (https://github.com/nix-community/poetry2nix)','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Daily Driver usage (leisure)','A2','Got interested into moving into NixOS and was able to replicate most of my tasks that I could do in another distro.','Y','','Y','','','','','Define system configurations through files','Building systems through flakes','Separating the system layer from the user layer through home-manager','Improve the documentation for beginners regarding how to configure the system and how Nix applies to it (as a beginner who saw the configuration.nix file, I just thought it was adding options and that\'s it, but didn\'t know how Nix integrated with it)','Would stay on Gentoo for my personal computer and use Debian-based distros for work.','Y','','','','','','','','','','Pantheon, Sway','Home-Manager','Niv','Have a team dedicated to improve the documentation. Seriously, this would be the convincing bit for migrating. Xe, from christine.website, has been throwing some useful guides on how to configure most of the stuff on NixOS. Jonringer has thrown a very cool video on YouTube about how to migrate to Flakes. There is a guide about builtin functions that I\'ve found recently and helped a lot when I started creating dev environments with Flakes. Domen has nix.dev which is a great reference for starters when creating development environments on the legacy way. But that\'s it. I know you want people to read the documentation, but it hasn\'t come to a level as clean as the Arch/Gentoo documentation (not saying they are the best references out there, but I found them as excellent points for guidance when I need something from their system, something I wish I could say from NixOS or Nix in general).'),(1350,NULL,1,'en','1070859141','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1351,'1980-01-01 00:00:00',5,'en','1027901687','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was annoyed that each language had to have their own package manager, I googled for something different, and I found Nix.','','','','','','','Y','Y','','','','','','Y','Y','Y','','Y','','Declarative system and package management','Reproducibility','Binary caching','Better error messages / debugging.','I would be stuck using application-specific package managers such as opam, pip or conda, npm, etc.','','','','','','','','','Y','','Y','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I had never found a satisfying Linux distribution (I was tired of breaking changes at major updates). I started using Nix first, and then NixOS and found that this was the one. It\'s a love story.','Y','','','','','','','Declarative package and system configuration management','Safer updates','Reproducibility across several machines','A graphical tool to manage disk space of the Nix store, showing which roots (system configurations or other) are eating large share of disk space.','I would be stuck using a bad Linux distribution (or maybe I\'d have eventually managed installing ArchLinux).','','','','','','','','','','Y','i3','Cachix\r\nCoq Nix Toolbox','cached-nix-shell',''),(1352,'1980-01-01 00:00:00',5,'en','1982503596','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Tired of building Debian packages and I needed specific versions of several packages. ','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','Declarative config','Easy to contribute to nixpkgs','Easy management of specific packages','I\'d speed up the PR process in nixpkgs','Probably fedora silverblue','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Needed specific versions of several packages. Building Debian packages is terrible.','Y','','Y','Y','','','','Declarative config','Ability to mix stable/unstable packages','Zfs support','','Silver blue/ something like rancher/sidecar linux','','','','','Y','','','','Y','','i3','','','Keep up the good work!'),(1353,'1980-01-01 00:00:00',5,'en','1714034974','A2','','male','','','Y','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','- Package Installation AS Konfiguration File (ansible for one Maschine xD)\r\n- Easier Rollback\r\n','','Y','','','','','Y','','Y','','','','','','','','','Y','','','','','Automatically package upgrade on the nixpkgs github project (i really often create issues with outdated packages).','Arch Linux - best systemd implementation with up to date packages','','','','','','missing document of experimental features ','','','Y','','','','','Woodpecker','','Y','','','I experience with flakes','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Asked already ...','Y','','Y','','','','','','','','','','Y','','','','','','just nixops tried (other not heard of) ... which does not work ;(','Y','','','sway','','Nixops\r\nHydra','Please keep packages up to date.\r\nMaybe with an not, which creates MergeRequests.\r\n\r\nnixpkgs is really big to clone, maybe split this project.'),(1354,NULL,NULL,'en','194879627',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1355,NULL,NULL,'en','1825024799',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1356,NULL,1,'en','1029047491','A2','A3','fem','','','','','','Y','Y','Y','','Y','Y','','Y','','','','','','','','','','','Y','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1357,'1980-01-01 00:00:00',5,'en','1714870866','A5','A2','-oth-','Nonbinary','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Frustration over accidentally breaking my linux installation when trying to fiddle with drivers and/or trying out different linux distros.','','','','','','','','','','','','','My laptop and desktop','','Y','Y','','Y','','Ability to roll back changes safely','Visible config all in one place','Easy temporary installation of tools','I\'d want the error messages to be better, both at describing what\'s wrong, and where in the source it\'s actually broken. I\'d also want evaluating nix expressions to be a little less memory hungry, since upgrading my laptop is fairly intensive. ','Honestly, there\'s nothing quite like it. I probably would still be using Bedrock Linux with Debian, Ubuntu, and Gentoo.','','','','','Y','','','','','','','','','','None of them work well. I tried cabal2nix, stack2nix, and iohk\'s alternative nix infrastructure for Haskell, and they\'re all pretty much broken.','Y','','','','N','I haven\'t had anything to contribute. All the software that I need is already in Nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I had been using Fedora, and trying to install the proprietary NVIDIA drivers somehow got my graphics card into BGRA mode instead of RGBA mode. The computer was still useable, but the red and blue channels were switched and it looked pretty funky.\r\n\r\nSo, naturally, I uninstalled the drivers. This didn\'t fix it. Eventually, I figured out that installing the drivers a second time would make it switch back, but that was the last straw of a number of hardware issues that involved messing up my configuration while trying something out, and then having a stressful week of trying to figure out how to undo it.\r\n\r\nWhen I read that NixOS would let me roll back my configurations, I knew that I had to try it. Since then, I\'ve moved computers a few times, and it\'s really amazingly useful to just be able to put my configuration in a git repository, grab it with wget, run nix, and it pulls down all of my programs and configuration files, so I\'ve stuck with it.','','','','','','','My laptop and desktop','Being able to rollback builds','Having a reproduceable configuration','Having all the software I want easily installed in a temporary environment.','Something that actually explains how NixOS modules work somewhere in the installation flow would be helpful. I didn\'t actually understand how they were structured and how they wouldn\'t cause errors if they both defined different package sets, for instance, until recently. I wish that I had known that earlier.','Bedrock Linux with Debian, Ubuntu, and Gentoo.','','','','','','','I have my configuration set up so that I just write a new config file for each computer that lists the \'roles\' that it needs.','','','','XMonad','I use stack, which has nix integration. It\'s kinda spotty, and doesn\'t pin a nixpkgs version, so when an old version of GHC is removed, that causes problems.','I\'ve tried cabal2nix and stack2nix and they are both broken.','I really appreciate NixOS. I\'ve tried lots of different linux distros, and NixOS hits a sweet spot of reliable, up-to-date, powerful, and small (ish)'),(1358,'1980-01-01 00:00:00',5,'en','1557446236','A5','A3','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','This is a bit more broad if I include personnal projects','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I have always been trying to self-host infrastructure, kinda like in the compiler sense. I learned about Nix in 2012, but that felt too experimental at the time and unfortunately didn\'t try to understand it. It had been on the radar since then though, and it distinctly bleeped last year. And after being blocked at the idea of re-packaging the earth with Bazel, I decided to get into Nix as we got into 2022.','','Y','','','Y','','Y','Y','Y','','','Y','','','Y','Y','Y','','Getting into home-manager, and probably NixOS as well soon.','Nixpkgs','Cross-compilation','Reproducibility/Hermeticity','Some bridge with Bazel, because Bazel feels like a better build system, I liked the attempt with https://github.com/tweag/rules_nixpkgs, but it does not feel right, e.g. in Python you have to declare your Python package dependencies in the WORKSPACE, while I guess the toolchain is setup from the WORKSPACE, Python packages dependencies should be in BUILD files?\r\n\r\nBetter docs and error messages, but it\'s hard to say something really actionable, a lot of the doc is pretty dry, finding content on YouTube has been very very helpful. At some point early, trying to setup cross-compilation, I was stuck on something trivial, and the error made no sense, not sure how I would have done without a friend who could help me.','Bazel and anti-depressants.','','','','','','','','','','','','','','Buildbot','','','','','','N','Time, I should upstream some packages I have made.','N','N','Finding some time.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Thank you!'),(1359,'1980-01-01 00:00:00',5,'en','245327376','A5','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend introduced me to GNU Guix and I really enjoyed the concepts. After I found out it was a fork of NixOS I decided to try it out proper. I ended up sticking with it because I found the support for the programs I wanted to be much better than what was available in Guix.','Y','','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducibility of machine configuration and development environments (where flakes really shine). Adding/removing/changing what packages are used is really easy, and rolling back to a known good version is a breeze','This is more nixpkgs than Nix, but having access to fresh software available to install almost immediately after the developers release a new version is amazing','Binary caching of artifacts is sooo good. From downloading nixpkgs builds from Hydra, to even using your own caching server with your own builds it really gives a ton of flexibility to both customize software and avoid having to constantly rebuild everything from scratch.','- better darwin support, esp for more recent toolchains. I\'d love to introduce Nix into the development environment at work, but right now it\'s a non-starter since we cannot build software that targets macOS versions 11 and above\r\n- fix/unify the old and new nix cli options. it\'s pretty frustrating that the old nix-cmdname commands are marked as deprecated on newer Nix versions and yet the new nix commands don\'t support all the same functionality as the older ones\r\n- better documentation (as always) and alternative forms of documentation. a lot of newcomers bounce right off because some of the concepts are hard to understand. the manuals are good when you have some familiarity of Nix and can read the source code, but we need alternative documentation sources for beginner, intermediate, and even advanced users\r\n- an equivalent of rustdoc: having the ability to document nix libraries and automatically generate documentation is something I would love to have\r\n- add debuggability: from writing complex nix-expressions to debugging why the wrong version of a dependency is being pulled in it can be very opaque what nix is doing unless you painfully paste stuff in the nix repl or know how to dig into the .drv files themselves\r\n- remove overlays (at least in their present implementation, not necessarily in spirit): wrangling overlays is very complex, and it can either lead to infinite recursion errors, or make it difficult to understand where a dependency is coming from. We need better composability of expressions besides dumping everything in nixpkgs or virtually dumping into nixpkgs via overlay','I don\'t even know at this point... Docker files? *shudder*','','','','Y','Y','','','','','','Y','','','','Crane: https://github.com/ipetkov/crane','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','A friend introduced me to GNU Guix and I really enjoyed the concepts. After I found out it was a fork of NixOS I decided to try it out proper. I ended up sticking with it because I found the support for the programs I wanted to be much better than what was available in Guix.','Y','','Y','','','','','Reproducibility of machine configuration and development environments (where flakes really shine). Adding/removing/changing what packages are used is really easy, and rolling back to a known good version is a breeze\r\n','Quick and easy deployments: synchronizing a machine configuration is one command line invocation away','Bootloader rollbacks are a life saver','- have a way to automatically document external NixOS modules. The generated documentation for the modules in nixpkgs is great, but understanding the modules from any other project basically requires reading and understanding their source\r\n- reduce some of the auto-magic handling of NixOS modules: stuff like pulling packages via lambda is great, but if you try to do anything more advanced (like plumb flake inputs through) it gets messy and complicated fast (sometimes we need to use `specialArgs` sometimes we need to use `extraArgs` and the only way to tell is to read the source code)\r\n- improve subtractability of NixOS modules: right now modules are great for additive features. But if you want to tell where/why something is enabled you\'re on your own. It is possible to turn things off, but once again, you have to read and understand all the source of all the modules you consume to figure out exactly which option needs `= lib.force false` or figure out the exact path to the module to mark as excluded','Probably GNU Guix since it is the next closest approximation to what NixOS offers (through my experience with it was an order of magnitude more painful)','Y','','','Y','','','','','','','sway','https://github.com/oxalica/rust-overlay - really good for testing with custom rust toolchains. To be honest I haven\'t even been able to successfully cross compile with the rust toolchain in nixpkgs\r\nhttps://github.com/ryantm/agenix - great for managing and deploying secrets to machines\r\nhttps://github.com/numtide/flake-utils - for cutting down flake boilerplate\r\nhttps://github.com/nix-community/home-manager - of course no dotfile configuration is complete without home-manager\r\ncachix - to speed up CI builds','https://github.com/nix-community/naersk - really good for building rust projects, but customizing builds with it is really opaque and a chore\r\nhttps://github.com/kolloch/crate2nix - tried it out briefly, works really well with caching, but a non-starter if a project relies on cargo specific tools (e.g. sqlx)','Love this project and want to thank everyone involved in it. There is always room for improvement, but I\'m hopeful things will keep getting better as they always have been :)'),(1360,'1980-01-01 00:00:00',5,'en','1438485573','A2','A2','male','','Y','','','','','','','Y','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Declarative and reproducible development environments, which can be used for CI and dev without adjustments ','Having multiple versions of the same software installed simultaneously ','Declarative system management ','Remove excessive memory footprint (RAM). The rest of it (Nix, the software) seems as good as it can reasonably be, minus the occasional but infrequent bugs. ','A bunch of shell scripts, Ansible, etc.','','','','Y','','','','','','','Y','','','My local host, for sufficiently small projects Nix allows to “be” the CI itself, i.e. a simple nix-build builds a clean revision of the software and runs all test in a sandboxed environment. That’s a huge plus!','','Y','','Y','','N','The security culture (direct master pushes)\r\nBreaking changes being merged without much actual feedback \r\nnitpicking by maintainers regarding code style, but not having a definitive style guide\r\nPersonal time constraints','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Declarative system management done right. Was recommended to try it, then got started with it for real at the 33c4 assembly.','Y','Y','Y','','','','','Declarative system management (base system, firewall, mountpoints, etc.)','Declarative revision management (no impure apt update, etc.)','Services easily accessible and configurable ','Focus more on Security and avoid breaking changes.','Arch','Y','','','','','','krops','','','','lightdm+exwm (emacs as systemd service) ','','','Maybe specifically ask about nixpkgs as well? Nix and NixOS doesn’t really cover the package collection, for which people might have separate feedback? \r\n\r\nIt’s great to listen to user feedback! Thanks for all of this work to make Nix/NixOS/nixpkgs better.'),(1361,NULL,1,'en','402525785','A2','A3','male','','','','','','','','Y','','','','Y','','','','','','Y','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1362,'1980-01-01 00:00:00',5,'en','1059110667','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was first introduced to NixOS through the Haskell ecossystem, where it was recommended by a project (https://ihp.digitallyinduced.com/). I wanted to give Linux another chance after using the Apple ecossystem for a few years and I was instantly captivated by the declarative nature of configuration (which had been one of my pain points before, as I like to configure everything to my taste and hated having to reconfigure everything after formatting or some major breaking issue in the distro) and uncomplicated dependency resolving, being able to have different versions installed at the same time without conflicts. The reproducibility aspect and ease of creating development environments and build scripts came later, as I got more and more into the ecossystem.','Y','','','','','','Y','','','','','','Personal computer','','Y','Y','','Y','','Easy development environments and build scripts','Painless dependency resolving','Reproducible and easily composable build scripts (using one of my projects directly in another\'s dependencies really comes in handy)','Honestly, the Nix language itself seems to be the biggest pain point so far in my opinion (and it is an opinion I have read many times while procuring information related to Nix and NixOS). I\'d replace it with another functional language, preferrably a type safe one like Haskell (that would be my first choice).\r\nAnd better/more extensive documentation wouldn\'t hurt either!','Probably I\'d keep using the various build systems developed for various programming languages (cargo, cabal, npm, etc.). Perhaps Docker for more complex projects, particularly if my future job requires it, which is likely.','','','','Y','Y','','Y','','','','Y','','','','https://github.com/Mic92/tex2nix\r\nhttps://github.com/svanderburg/node2nix\r\nhttps://github.com/NixOS/cabal2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Same story as for Nix (the package manager), as I started using Nix through NixOS.','Y','','','','','','Personal computer','Declarative configuration','Easy and safe system rollbacks','Extensive and easily-extensible package repository','Although I realize that wasn\'t the original focus of the project, I\'d like to see a bigger focus on sandboxing and isolated environments, but I believe the Spectrum OS is already looking towards that goal.','Possibly something like Fedora Silverblue, although I\'m not sure if NixOS had any influence towards that project\'s goals. Guix probably also wouldn\'t exist without Nix, but it would be another option, should NixOS cease to exist now (I know that\'s probably not the exact intent of the question, though).','Y','','','','','','','','','','Sway','home-manager (https://github.com/nix-community/home-manager) is probably my number #1 besides the official projects. I also use naersk (https://github.com/nix-community/naersk) quite a lot, as most of my personal projects (as well as my MSc thesis) are developed in the Rust language.','DevOS (now known as digga: https://github.com/divnix/digga). I started building my declarative NixOS configuration based on it but realized I was better off building my own solution, as I\'d learn more about Nix and Nix Flakes through it and would be able to cater to my own interests better and tailor it to my usage needs.','This is truly a great project that has rekindled my flame for Linux and GNU/FOSS projects in general and I am truly grateful to have the opportunity to take part in it!'),(1363,NULL,2,'en','709969049','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I find the core idea very appealing.','','Y','','','','','Y','','Y','Y','','Y','','','Y','Y','Y','Y','','Reproducible system builds','Rollback','Stateless systems','Better support for ARM and other IoT-type systems','GUIX\r\nArch','','','','','Y','','','','','','','','','','https://github.com/hlolli/clj2nix','Y','Y','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1364,'1980-01-01 00:00:00',5,'en','862933274','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','N','N','I don\'t have any reason not to try Nix, I just never tried it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','If I knew it was better than my current then my current distribution (Debian) and the transition would be seamless.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None','Nothing :)'),(1365,'1980-01-01 00:00:00',5,'en','1823291771','A2','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','More of NixOS than Nix per se. I like the reliablity of the system and the free rollbacks. The portability also. But most of all the package selection is amazing. ','','Y','','','','','Y','','','','','','personal machines','','Y','','','Y','','rollbacks','portability','single configuation language. Simple configuration schema','\r\nMake pinning packages to a certain revision easier','Just another package manager','','','','Y','','','','','','','','','','','','','','','','N','lack of knowledge','Y',NULL,NULL,NULL,NULL,'','Y','Y','','','A2','I first head about the rollback feature, then I donwloaded it alongside my mint installation and found installing packages super easy. Then my work machine went buggy so I installed on my work machine. Haven\'t looked back since (8months)','Y','','','','','','main driver','rollbacks','portability','declarative configuration/ single configuration paradigm','','Some Debian derivative or OpenSuse','Y','','','','','','','','','','i3','','','<3'),(1366,'1980-01-01 00:00:00',5,'en','1870703489','A2','A3','male','','','','','','','','Y','','','','Y','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I don\'t remember how I caught wind of it initially, but I like functional languages and the concept seemed cool. So one day I decided to install NixOS. Never looked back.','','Y','','','','','Y','','','','','','','','Y','','','Y','','Try software without \"installing\"','Save and easily load development environments when I switch projects','Lots of packages to choose from','I would add support for IPFS. Or any P2P caching solution to take advantage of the distributed compute power of the community instead of relying on a centralised CI/CD pipeline. (Also helps when offline/on a metered network)\r\n\r\nAlso, I would add The Rust Book, but for Nix. The Nix Book. To help beginners and veterans alike. (If you\'re thinking that\'s the Nix Manual, or the Nix wiki, then please at least read the foreword and introduction of the Rust book.)\r\n\r\nI would also make OpenGL and Vulkan apps run on non-NixOS systems.','Guix ;)\r\n\r\nJokes aside, docker for reproducibility probably, and whatever mix of system (apt/yum/pacman...) + language (cargo/pip/nuget...) package manager for development, because I wouldn\'t know any better.','','','','','','','','','Y','','','','','','','','','','fetchTarball (because I have yet to learn anything else)','N','The right time + opportunity combination','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Same as with Nix really, but I\'ll paste for ease of triaging:\r\n\r\nI don\'t remember how I caught wind of it initially, but I like functional languages and the concept seemed cool. So one day I decided to install NixOS. Never looked back.','Y','','','','','','','Save and load entire system and home configs when I switch machines (tweak once, run everywhere)','Easy fallback to previous working state in case of unlucky update (fearless rolling release)','Lots of packages to choose from','I would add the ability to install packages from other distributions, and natively run binaries meant for \"mainstream\" distros.\r\n\r\nAnd the ability to customize every setting of KDE via nix, but that\'s a magic KDE wand, not a magic NixOS wand isn\'t it?','Guix ;))\r\n\r\nJokes aside (again), Pop_OS or a gaming distro.','Y','','','','','','','','Y','','','','','Your survey timed out as I took too long to think about my answers (especially when I took the time to dig through my browsing history to get clues at how I started using Nix), and I had to type them all again. You\'re lucky I like Nix and NixOS, I almost rage quit.'),(1367,NULL,NULL,'en','688899121',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1369,NULL,1,'en','1974533626','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1370,NULL,1,'en','1773701020','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1371,NULL,1,'en','1450047686','A5','A4','male','','','','','','','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1372,'1980-01-01 00:00:00',5,'en','1128475107','A2','A1','male','','','','','','','Y','','','Y','Y','','Y','Y','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I started using Nix because I saw a config online. I was previously an Arch user. At the start it took me a long time to setup, however it paid off, no corruptions, and stability.','Y','Y','','','Y','','','','','','','','','Y','Y','Y','','Y','','Stability - Rollbacks','Friendly Community. I have contributed one or two packages in the nixpkgs repo, and have had no issues','Programmer friendly - In the sense that everything is code, which I like.','I would add a nix install command like guix.','Guix','','','','Y','Y','','','','','','','','','','pip2nix\r\npoetry2nix\r\ncabal2nix\r\nnode2nix\r\nmach-nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I saw someones config, and I tried it. At the start, I had some issues with it, but it grew on me after.','','','Y','','','','desktop','Stability','Friendly Community','Declaritiviy','I would add a command like guix, e.g. nix install. I have written a tool in rust, nux, to emulate this, but it would be nice to consoildate all nix commands into one.','GUIX','Y','','','','','','','Y','Y','','Xmonad, Sway','','','NixOS is great. With some bug fixing, better binary support and some polishing, NixOS will be even more awesome!'),(1373,NULL,1,'en','574557985','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','N','N','Reliability, security, speed, user friendliness, package availability...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(1374,'1980-01-01 00:00:00',5,'en','1112901673','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Saw some videos. Was searching for a deterministic way to manage my dev environment. After 29 years of Debian I wanted to try something else.','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','Deterministic rollback if something does not work after an upgrade.','Reproducible Dev environment','Nice community','I would add a fast package search. Where packages have a good description. And could search for similar packages. ATM I end up using the nixos web page, which breaks my work flow. ','More Dev environments with containers. More VMs. ','','','','','','','','','','','','','','','Eh?','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Saw nix. So I thought I go all in.\r\nIt felt wrong to install nix on top of another OS. I had a rough start with NixOS.\r\nI tried to install nixOS on a Lenovo ThinkPad for 2 weeks, gave up due to driver problems. \r\nBought another laptop where it worked like a charm.','Y','','','','','','','System rollbacks','Deterministic description of my system','','Easier installation with an encrypted btrfs file system.','Debian','Y','','','','','','','','Y','','','','',''),(1375,NULL,NULL,'en','1685117445',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1376,'1980-01-01 00:00:00',5,'en','699395748','A5','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Wanted NixOS and declarative system config','','','','','','','Y','','','','','','','','Y','','','Y','','Reproducibility','','','','apt','','','','','Y','','','','','','','','','','https://github.com/NixOS/cabal2nix','','Y','','','N','No time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','','','','','','Declarative configuration','Up to date software','Big repository','More user-friendly deployment tools for NixOS configs. Although I haven\'t studied existing 3rd-parties solutions.\r\n','Go back to Ubuntu or try Guix','Y','','','','','','','','','','Sway','Nixpkgs','',''),(1377,'1980-01-01 00:00:00',5,'en','895480352','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1378,NULL,NULL,'en','672258866',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1379,'1980-01-01 00:00:00',5,'en','238816014','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','N','Y',NULL,'I have tested it recently and will probably continue, but it was a major pita to make it work even inside the official docker image!','Simplicity & usability!\r\nOne tool with simple sub-commands to do most things. With Alpine Linux it doesn\'t get easier than `apk update && apk add package`.\r\nI installed nix on my Manjaro machine and got stuck immediately, so I started docker nixos/nix. I tried `nix search zsh` and got greeted by this error message:\r\n> error: experimental Nix feature \'nix-command\' is disabled; use \'--extra-experimental-features nix-command\' to override\r\nExperimental? What? I found the answer on SO but I couldn\'t find a way to edit the nix.conf file. No vi, vim, nano, pico inside the docker image?! Fine, I\'ll just echo-append it then. Finally managed to run `nix search` but it didn\'t find anything in the \"flake registries\".\r\nAnyway, I\'ll try to install something then. Went on https://search.nixos.org/packages and it says use `nix-env -iA nixos.zsh` to install zsh. So I do and get this message:\r\n> error: attribute \'nixos\' in selection path \'nixos.zsh\' not found\r\nI had to run `nix-channel --update` but even after that I was getting the same error. Turns out \"nixos.zsh\" had to be \"nixpkgs.zsh\" instead. What gives?\r\n\r\nThis was quite a lot of friction until I managed to do something useful with the package manager. I quite like the idea behind it especially since I\'ve been bitten recently by a failed pacman update which made my work computer unbootable. Lots of credit to you for making something innovative and open-source, but for goodness\' sake why do these things have to be so hard to use? Give me something like `nix update && nix install zsh` and I\'ll gladly make the switch to NixOS and even donate some money. ;-)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I can try it out in docker or on a separate partition, but I will evaluate it more before I think of making a full switch. Like I mentioned in the previous question, my system became unusable after a failed pacman upgrade, so that is a great motivator for me to look into Nix and NixOS in detail, because apparently all the other package managers don\'t do anything remotely similar.\r\n\r\nAfter all these years of using Linux privately and professionally, what I wish for the most is a reliable and frictionless experience during daily use and that the system always remains in a workable state.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None. I\'m a newbie.','None. I\'m a newbie.','Thanks for all the hard work! I hope many more people will find NixOS. It\'s a shame it\'s not higher up in the list on distrowatch.com. I really wish you would put more effort into lowering the entry barrier, like when using the CLI tools or installing the OS with a GUI that generates the first version of the configuration.nix file.\r\n\r\nWill definitely check NixOS out some more!\r\n\r\nBest regards!'),(1380,'1980-01-01 00:00:00',5,'en','241398367','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','My work colleague pitched us Nix as a way to bring consistency to our installed dev tools, by leveraging nix-shell. We often ran into some problems where someone did not upgrade their dev tool and so things stop working for them, or they\'re using MacOS and find doesn\'t have the same options, and so on. After trying, we never had those problems again, so we started to bring more and more Nix. We now use it in our CI, with nix-env, with the Nix docker image, we package stuff with Nix and we even build container images with it.','','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','','','Bring consistency to our dev tools with nix-shell.','It allows reproducible builds.','The breadth of software available on Nixpkgs. You can find anything there.','I would improve documentation. There\'s a pretty steep learning curve, I tried following Nix pills and finding tutorials, but I\'ve found it hard. There are still a lot of mysterious things for me, for example I\'m confused by build phases, I don\'t know how to override things, and I don\'t know what functions exist in Nixpkgs, like there are 3 variants of mkDerivation or so. So yeah, documentation is hard, but it would help.','I would probably go back to using yum or whatever package manager and \"hoping everyone has the same tools\" / \"hoping the build is reproducible\".','','','','','','','','','','Y','Y','','','','node2nix: https://github.com/svanderburg/node2nix','','','','I don\'t understand what you mean by \"extend\". If you mean contribute, I use a fork on Github','Y',NULL,'N','N','I definitely want to try, but I need to find the time to try. I\'ve even downloaded an iso.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None, I don\'t know any other projects.','None','Thank you ! Nix is awesome !'),(1381,'1980-01-01 00:00:00',5,'en','174483391','A5','A4','male','','','Y','','','Y','','','','','Y','Y','Y','','','','Y','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','introduced to it a few years ago.\r\n\r\nbeen amazed at the results in terms of being able to reproduce results.\r\n\r\nnow it runs my router at home, shells for projects, and two jobs of production deployments now.','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','','Y','','reproducibility','package selection','configuration flexibility on the tier of gentoo','keep the reproducibility, but change the language to be less horrific to use.\r\n\r\n(sorry, the language is just frustrating)','containers like other sad people, probably.','','','','','','','','','','','','Y','','','','Y','','','','N','nixpkgs has been extremely good about packages that i need, and nixos release cadence is the typical blocker.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','same story as before','','','Y','Y','','','','cloud init is configuration.nix so no games with having to run puppet/ansible post-boot','arbitrary channels','','unsure. nixos as it stands i\'m quite happy with.\r\n\r\nmake it easier to do custom channels/packages?','probably still containers','Y','','','','','Y','','','Y','','','','nixops\r\n\r\nthe language of nix is just frustrating. two of the eng folks two jobs back (myself and another) evaluated a bunch of different things before settling on terraform. nixops lasted longer than ansible/puppet ops, if that helps :P','burn the language. keep the rest.\r\n\r\ni absolutely love nixos and nix-shell in terms of the output it produces, but find working with it frustrating because of the language.'),(1382,'1980-01-01 00:00:00',5,'en','709845685','A2','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Interest in reproducibility and how the functional paradigm could be applied to packaging.','','Y','','','','','Y','Y','Y','','Y','','HPC','Y','Y','Y','Y','Y','','reproducibility','remote building','ad-hoc shells','strong type system','','Y','','','Y','Y','','Y','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Declarative OS configs and easy rollback/recovery.','Y','','Y','Y','','','','Reproducibility','Ease of configuration','Remote deployment','','FreeBSD','Y','','','','','','','','','','sway','BioNix, nix-thunks, nixos-generators, nixos-mailserver, nix-serve','',''),(1383,'1980-01-01 00:00:00',5,'en','1517217992','A5','A3','male','','','Y','','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Was looking for something to make cross-platform setup easier and liked the idea of being able to do declarative configs. That was very confusing with conflicting documentation re: flakes or not flakes and so on, so it was slow going. I wound up figuring out more easily how to get it going for a per-project development environment using niv, based on a blog post, so I started there. Started using it for our development environment at work (paired with direnv and nix-flakes it works well even for what is quite a large project now). After a while I knew enough to switch my personal config over to home-manager.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','declarative environment management','declarative system configuration and management','container images using same dependencies as declarative developer environment','It would be great to get the flake transition over with so that the docs can be consistent and so that it\'s easier when getting started for people to find documentation applicable to what they\'re doing.\r\n\r\nI also think there needs to be a lot more documentation. Of the four types of documentation described in the documentation system here https://documentation.divio.com/, I feel like nix does a good job with \"explanation\" documentation, and that\'s about it. In particular, I think the following two areas could use a some focused documentation effort:\r\n\r\n- The \"stdlib\" of nixpkgs. Common functions that are used in many derivations are often difficult to find documentation for. I keep a copy of nixpkgs locally that I use to grep for function definitions much of the time, which is not really a sustainable situation. It would be great if there were e.g. a standard docstring format that was required and used to automatically generate documentation for everything in nixpkgs. Support for go-to-definition and function signatures in the new nix language server would be awesome, too.\r\n\r\n- Official how-to guides. Much of nix documentation seems to assume that you either a) already know what you\'re doing or b) have time to read 600 pages. Often, people are looking for how to solve a specific problem (how do I override a package in nix, how do I apply an overlay, how do I adjust configuration flags for a package, how can I make my nix-shell reproducible, etc.), and it is remarkably difficult to find that kind of documentation. Most of the time you wind up weeding through vaguely related blog posts hoping that you can figure something out. Having an official source for this kind of documentation would be hugely useful for people first getting started.\r\n\r\n','For system setup and configuration, bash scripts. For building containers, dockerfiles. For development environment, probably would just install things manually.','','','','Y','Y','','','','Y','','Y','Y','','','buildRustPackage: https://nixos.org/manual/nixpkgs/stable/#compiling-rust-applications-with-cargo','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I had my personal configuration in home-manager and had been using nix to manage development environments for a while. Nix is confusing and hard to learn, but what it provides isn\'t really provided by anything else. After I knew enough nix to be dangerous, I figured I\'d try out NixOS. I installed it on my work laptop and found it actually much easier to get started with than nix the package manager. Still using it now.','Y','Y','','Y','','','','Declarative, reproducible (with flakes) configuration','Rollbacks','Atomic upgrades','I think having the flake transition complete and having more official documentation around flakes would be great. I think that improving the nix package manager documentation would help substantially with NixOS, which I feel like is better documented by comparison.','ArchLinux or similar','','','','','','','','','Y','','','- nix-community/emacs-overlay: https://github.com/nix-community/emacs-overlay -- for building emacs from git\r\n\r\n- oxalica/rust-overlay: https://github.com/oxalica/rust-overlay -- for better management of rust versions and targets\r\n\r\n- niv: https://github.com/nmattia/niv -- for reproducible environments. Replaced by flakes in my personal configs, but don\'t want to use experimental nix for work yet','- guibou/nixGL: https://github.com/guibou/nixGL -- I had a real beast of a time getting openGL apps to work when installed via nix on non-nixOS systems (e.g. alacritty). This seems to be the only thing that seems like a solution, but I was never able to get it working. No longer as critical since I\'m on NixOS, but it was a huge pain.','Nix is great!'),(1385,NULL,1,'en','1825649194','A5','','-oth-','Please fuck the hell off and die','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1386,'1980-01-01 00:00:00',5,'en','1005160073','A2','A3','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative management (system/dev environment/homedir)','Separation between applications (multiple versions of she software in parallel)','Wide selection of mostly uptodate software','','Ansible or puppet for doing config management on servers, bash scripts for dev environments.','','','','','','','','','','','','','','','','Y','','','','N','Not sure on what exactly is needed for submitting a pull request','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Got tired of updates breaking my systems. Wanted distro with up-to-date software. Found both in nixos...','Y','','Y','','','','','Declarative system config','Easier configuration of software','Trustable updates','','Debian','','','','','','Y','','','','','sway','','Nixops',''),(1387,'1980-01-01 00:00:00',5,'en','149887353','A2','A4','','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','At work when I didn\'t have administrative privileges for a met-service HPC cluster.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Versionable expressions for reproducible development environments','','Being able to override all of my development dependencies','Drop nix-env. It was painful to learn that while it lets you install all kinds of things it results in weirdly broken environments. Alternatively only allow installing \"apps\" via this.','conda inside a container','','','','Y','Y','','Y','','','','','','','','node2nix for work. C++ and python expressions are hand-written.','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','Started out using nix on macOS. nix was interesting but it had a lot of issues on that platform. I hoped when going \"full nix\" most of the problems would go away. Also I wanted to dive in more into Linux internals and nix really helped learning these by blurring the line between user/developer/distro maintainer.','Y','','Y','','','','','New car smell all the time','I now know what are the important files to backup on my system. (configuration.nix + $HOME or /var on servers)','Being able to upgrade on my own schedule and increment size. Also: bisectability','NixOS and home-manager would be one thing.','I guess either macOS or Arch','Y','','','','','','','','Y','','','nix-index, hydra, patchelf','- nixops. I went back to using plain `nixos-rebuild` for my single home server.\r\n- mobile nixos. It\'s still too hard to get started. Even on a pinephone. (Ok, I don\'t use the pinephone at all because it seems not powerful enough)\r\n','Thank you for improving this thing I\'ve become somewhat addicted to try to master.'),(1388,'1980-01-01 00:00:00',5,'en','1616261235','A1','A4','male','','Y','','','Y','','','','','','Y','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','Y','','','','A3','A colleague who is very active in the Nix community recommended it as a way of creating complete environments when trying out new academic software.','','Y','','','','','Y','','','','','','','Y','Y','','','','','Portable and reproducible environments.','Availability of Python and R packages.','Ability to handle conflicting dependency versions in the tree.','GUI configuration tools for creating new environments.','Conda :(','','','','','Y','','','','','','','','Y','','','','Y','','','N','Lack of expertise in the Nix language.','N','Y',NULL,'Lack of expertise in the Nix language.','Me becoming an expert in Nix.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Nix is a very useful model and I hope that it will be adopted more widely within academia. Encouraging scientists to publish Nix expressions to enable others to reproduce their work would be a major improvement over the current situation, where versions are often not specified (and dependency versions never are).'),(1389,'1980-01-01 00:00:00',5,'en','367156845','A2','A4','male','','','','','','Y','Y','','','','','','','Y','','','Y','Y','','','','Y','','Y','','','Y','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Declarative system configuration','Reusable nix shell configurations','Home manager','Improve documentation','Guix (which uses Nix). Most likely Ansible/Docker or some other popular devops tools which don’t really match Nix features/concepts.','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','N','Still learning. I would like to contribute in future.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','Y','','','','','','','Documentation','GuixSD, Fedora coreos, Gentoo','','','','','','','','','Y','','Xmonad','Home manager','',''),(1390,NULL,1,'en','1230488387','A5','A4','fem','','','','','','','','','','Y','Y','','','','','','','Y','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1391,NULL,1,'en','784544097','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1392,'1980-01-01 00:00:00',5,'en','146297486','A5','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','because of nixos, because it looked cool.','','','','','','','Y','','Y','Y','','Y','','Y','Y','Y','','Y','','declarative configuration','declarative package management','','','the next best thing: guix, if it would exist if nix didn\'t','','','','','','','','','','','','','','','','Y','','','','N','the packages i\'ve written are solely for me, or i don\'t think it would be of use in nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','looked cool','Y','','Y','Y','','','main computer','','','','systemd','guixsd','Y','','','','','Y','','','','','sway','home-manager\r\nniv','almost anything involving secret management, which is godawful in its current state all around last time i tried it',''),(1393,NULL,2,'en','1170432951','A5','A4','male','','','','','','Y','','','Y','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Seemed a fun idea at the time, and ability to have a single file for all configuration seemed a good idea. Now I\'ve things setup in a flake and while i\'ve outgrown a single file for configuration, its the most reliable to configure os i\'ve used.\r\n\r\nAlso use it across macos and nixos to do os+home configuration.','Y','','','','','','Y','','Y','','','Y','','','','','','Y','','Now, nix flakes','Super \"easy\" to apply patches to packages/kernel in advance of anything ending up in nixpkgs or upstream. Then just keep em in place until the patch fails to apply and then voila all good.','Mostly equal configuration across nixos and macos. Though service management is rather annoying with systemd/launchd being entirely different','Better examples/docs/guides to understanding the nix language and nixpkgs stdenv. I think the opaqueness at the start deters people needlessly. Feature wise its fine, outside of a unified service definition would be useful to defining something like having nix-index run periodically on macos/nixos without having to write the same thing twice.','Probably slum it with arch and ansible.','','','','Y','Y','','Y','','','','Y','','','','None anymore.','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1394,'1980-01-01 00:00:00',5,'en','1934465608','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','NixOS was the only OS doing declarative builds. I find the Nix expression language difficult to use, the idioms are confusing and I don\'t find it discoverable. But only Guix competes and though I like Guile much better as a language, I depend on too many non-free packages to use it. I\'m extremely happy NixOS exists, and I hope to see it improve!','','Y','','','','','Y','','','','','','','','Y','','','Y','','declarative configuration','reproducible builds','sandboxing','I\'m an experienced developer and I\'ve read lots of documentation but I found the Nix expression language way too inscrutable. I wish it were easier to reason about the results of expressions. The thing is, I think the necessary ingredients are there, but my workflow sucks and I\'m not sure how to make it better.','Guix, or possibly Ansible.','','','','','','','','','','','','','','','node2nix','','','','overrideAttrs (I only write single-user modifications, so overlays are superfluous and can be flattened into overrideAttrs, which has better locality)','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','See above.','','','','','','','see above','see above','see above','see above','see above','see above','','','','','','','','','Y','Y','','','flakes, home-manager','Thanks for everything you do!'),(1395,NULL,NULL,'en','2027899801',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1396,NULL,2,'en','1347614810','A6','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1397,NULL,2,'en','218476016','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','Y',NULL,'some old packages in nixpkgs unstable (e.g. KDE Plasma 5.23) compared to arch linux stable (KDE Plasma 5.24)\r\nmissing relatively popular packages in nixpkgs unstable compared to arch linux repos or popular AUR packages','resolving old nixpkgs PRs some of which are open for long time (e.g. caprine-bin)\r\nhaving nixpkgs more up to date (e.g. KDE Plasma)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1398,NULL,1,'en','1180629327','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1399,NULL,NULL,'en','1791977144',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1400,'1980-01-01 00:00:00',5,'en','370544137','A4','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I used home-manager and NixOS first and then started using nix for python projects.','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','Stabilize flakes and new nix command asap.\r\nAccept -h as an alias for --help for all nix commands!','virtualenv and similar language-specific tools','','','','Y','Y','','','','','','','','','sr.ht','','','Y','','','N','Time, not knowing where help is needed. I have fixed a couple bugs I ran into in home-manager.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was looking for a more advanced and ideally stateless way to manage dotfiles across multiple machines and discovered home-manager. I loved the simplicity of enabling new programs and services and the good, complete, and easily tweaked out of the box configurations. I was using home-manager on Arch but it didn\'t entirely solve the accumulation of state and I wanted to be able to easily move my system configuration to a new machine without the baggage of simply copying everything over. So I moved to NixOS which solved that problem. From there I also started using nix to develop python projects.','Y','','Y','','','','','Reproducibility of OS configuration and minimization of state','Easy configuration of OS services with good defaults','','Easily searchable documentation of nixpkgs and home-manager modules with examples and links to source code.','Arch instead of NixOS, a dotfile manager instead of home-manager,','Y','','','Y','','','','','','','river','home-manager\r\nflake-utils-plus\r\nagenix','',''),(1401,NULL,1,'en','1975725085','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1402,NULL,NULL,'en','405562686',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1403,'1980-01-01 00:00:00',5,'en','74260580','A2','A3','-oth-','','Y','','','','','Y','','','','Y','','','','Y','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','With NixOS.','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Easy overrides of package definition (easy patching, change of dependency, ...)','Full control of transitive dependencies, no conflict','','Redo the manual(s). The documentation is really bad.','Would still use apt on Debian and would be even more frustrated.','','','','Y','Y','','Y','','Y','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I was tired of keeping track of the package I installed imperatively on Debian and overwriting configuration files from a git repository manually. The NixOS way with modules is much easier. The defaults are also better, and can be overridden easily. I found it easy to contribute my own changes, packages and my own modules back to nixpkgs.','Y','Y','Y','Y','','','','Central declarative configuration for both servers and workstations, with remote deployments','Very good defaults in modules, building on the shoulders of giants','Easy to contribute back changes and new things to nixpkgs','The manual(s). The documentation sucks.\r\nWould also pay people to review the ton of pull requests for nixpkgs.','Debian with a lot of frustration.','Y','','','','Y','','','','','','i3','Home-manager','NUR','Hello'),(1404,'1980-01-01 00:00:00',5,'en','1864644482','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','','','','','Y','','','','My laptop','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','home-manager','',''),(1405,NULL,NULL,'en','247864133',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1406,'1980-01-01 00:00:00',5,'en','776574941','A5','A6','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','Semi Pro Photographer','Y','','','Y','','','N','N','Running NixOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Could understand how to set it up the way I want it. The documentation is very vague and there are no clear use cases. Not everyone knows exactly goes into a complete desktop environment. There are no guidelines. Especially if you want to use any tiling window manager. What are the other bits that are needed to make it usable as a daily driver? Most users don\'t think about that.','Some form of \"recipe\" system that would enable me to setup and install NixOS the way I want it. See above.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nothing','nothing','no'),(1407,NULL,1,'en','967902465','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1408,NULL,1,'en','261254015','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1409,'1980-01-01 00:00:00',5,'en','1184036113','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','A friend of mine told me about NixOS','Y','','','','','','Y','','','','','','','Y','','','','Y','','I know what is on my system','Updates don’t break the system (if they do I can revert)','Large package selection','Improve macOS compatibility of packages.','Homebrew. Package manager that comes with os. ','','','','','','','','','','','','','','','','','','','','N','No low hanging fruit, inaccessible documentation (very theoretical).','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Same as for nix','Y','','','','','','','','','','','Opensuse tumbleweed','Y','','','','','','','','Y','','','','',''),(1410,NULL,2,'en','2113535366','A2','A2','male','','','','','','','Y','','','','','','Y','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A1','Because NixOS and nix it gives me the sweat sport between stability and rolling release. It also provides an easy-to-use full self configured Linux distro.','','Y','','','','','Y','','','','','','Home PC','Y','Y','Y','','','','nix-env','The work with nix and NixOS','Self build packages','','Paru a Feature packed AUR helper and pacman','','','','','Y','','','','','','','','','','','','Y','','','N','I don\'t have the time.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1411,NULL,4,'en','590427580','A2','','','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(1412,'1980-01-01 00:00:00',5,'en','906417107','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','Because of Haskell. The future is functional!','Y','','','','','','Y','','','','','','','Y','Y','','','Y','','declarative','reproducible','modular','Popularity','macos with homebrew is decent enough','','','','','Y','','Y','','','','','','','','','','','','','N','Inexperience (I just started my CS Mayor and all this is really new to me)','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','Through Haskell -> Nix -> NixOS','Y','','','','','','','Reliable','Reproducible','Declarative','The documentation!','The beautiful walled garden that is macos','Y','','','','','','','','Y','','','','','You are doing great work keep it up!'),(1413,NULL,2,'en','517935634','A4','A2','male','','','','','','','','','','','','','','Y','','','','Y','','','Y','','','','Security testing','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started using NixOS a year ago for about a month, I built a massive configuration file so everything was reproducible. Then a new update came out which broke some dnscrypt setting I had. The breakage and general bugginess I have experience made me move away.\r\n\r\nI have recently considered to use NixOS again, while understanding the NixOS modules structure better and the functions of the library. Now I find it much better and cannot imagine using something else.','','','','','','','Y','','','','','','','','Y','','','Y','','Modules','nixos-rebuild','NixOS Search (web)','I would make things more declarative, as in more and better support if configuring software through Nix.','Fedora Silverblue or my own immutable system spin','','','','','','','','','','','','','','','','Y','','','','N','No free time or experience. I would love to contribute when I have an itch to scratch, or a package to add.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1414,NULL,1,'en','1256310798','A2','A3','-oth-','Non-binary','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1415,'1980-01-01 00:00:00',5,'en','1088090181','A5','A4','male','','','','','','Y','','','','','Y','','','','','','Y','Y','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','After seeing all of the mess of docker, ansible/chef/saltstack/etc, the benefits of declarative config (and mixing software versions in ways that pacman/brew never could support) was really appealing. So much so that despite my first few attempts to use Nix ended in failure and frustration, I kept returning until it eventually clicked. All of my daily dev work is now via direnv\'s \'use flake\' and it\'s soooo much nicer.','Y','','','','Y','','Y','','Y','Y','','','','','Y','Y','Y','Y','','declarative, things don\'t \"magically\" change out from underneath me unless I take some action','','','some way of making nix flakes sane for local and sharable dev environments? maybe I\'m just using flakes wrong? Maybe the underlying issue for that is actually there\'s so many ways to do things, but I rarely find an answer in the docs. I end up greping the nixpkgs dir for keywords that seem close to what I want is usually how I try and find solutions (at least pre 21.11, haven\'t really had time to see if it\'s changed). contrast with Arch Linux where the wiki almost always had *exactly* what I needed for any given situation.','saltstack on the linux side, more ball of mud brew on macOS','','','','Y','Y','','Y','','','','Y','','','','PHP:\r\nworks great: https://github.com/stephank/composer-plugin-nixify\r\ndidn\'t work for me: https://github.com/svanderburg/composer2nix\r\n\r\nNode:\r\nworks well enough, but slow cause node ecosystem is insane with dependency hell: https://github.com/svanderburg/node2nix\r\nrecall it being a pain: https://github.com/nix-community/yarn2nix (or wherever it lives now, but good luck trying to figure out how to use it, but maybe I\'m just looking in the wrong places, idk)','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Loved Arch Linux, but was growing annoyed with maintaining my own packages that had to be rebuilt at random because something changed upstream that required a recompile. Nix/NixOS solve that perfectly, and with many benefits like the declarative configuration. It was a long road to a working system, and I still don\'t like Linux enough to use it as a daily dev machine, but NixOS has replaced the dozen or so Arch Linux systems I run for personal/side projects and is on my laptop (that I begrudgingly turn to when I need to debug something Linux specific like a docker image build issue).','Y','','Y','','','','','declarative','rollback','large number of up to date packages, ease of adding additional via overlays','Similar to nix, the docs need to get better. It\'s not as frustrating as for nix alone as the options search is pretty good.','Arch Linux + saltstack','Y','','','','Y','','','','Y','','','direnv hides a lot of the headache I had trying to get (and understand) nix flake shells working. home-manager is my preference on macOS. the nix-darwin sounds interesting, but idk if I want to give that much control over when home-manager and some custom activation scripts get me 95% of the way there.','nixops, like the idea is interesting, but it seems stuck in dev hell much like nix 2.4 was.\r\nEvery time I get frustrated with nix flakes I consider going back to non-flakes, unsure that the slightly nicer deps declaration and lock file is worth it.\r\nniv, interesting idea, but the tooling is a pain compared to similar tools like composer, npm, cargo, etc. in their respective ecosystems.','really do appreciate all the hard work, almost all of my complaints tend to stem from living on the bleeding edge and that\'s just what happens. Seen lots of progress being made so I\'m optimistic about the future.'),(1416,'1980-01-01 00:00:00',5,'en','1914386474','A3','A3','male','','','','','','','','Y','','','','','','Y','','','','','','Y','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','Y','','','','','','','Y','Y','','','Y','','Reproducibility','Scalability','Power having everything in a config file','Tutorials made for beginners.','Guix','','','','','','None','','','','','','','','None','None','','','','I do not','N','Knowledge and time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','My job. My boss was using it. Having the same env would make my life easier. In addition, I had a problem with Ubuntu. Things broke after an update. In NixOS, it would be easy to just do a rollback.','Y','','','','','','','scalability','reproducibility','rollback e roll forward','Add better tutorials and materials for beginners. Why not a full course on the basics of NixOS?','GuixSSD','Y','','','','','','','Y','','','','','Rescuetime','Please, create more content and documentation aimed for beginners. Why not creating a full course on the basics of NixOS?'),(1417,NULL,NULL,'en','28221335',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1418,'1980-01-01 00:00:00',5,'en','2103508610','A2','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','After lots of frustrations with macos, I looked for an open source alternative. I have used FreeBSD and Linux (several distributions, mainly Xubuntu and Gentoo) systems before, but not on my main computers. The configuration of Gentoo was a pain. With Xubuntu I had some stability issues. My plan was to use Arch. Before doing so, I gave NixOS a test run and started using it in parallel to my macos laptop. Due to the stability and modular configurability of the system, I soon did not want to go back. I\'m now using NixOS exclusively, on cloud instances (servers), my laptop, and my workstation (the only exception is an iPad).','','','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Reproducibility','Stability','Portability','I\'m a big fan of NixOps and would like to see better support for it.\r\nI would like to see flakes and home-manager integrated closely.','Possibly guix','','Y','','Y','Y','','','','Y','','','','','','cabal-to-nix: https://hackage.haskell.org/package/nix-tools (unfortunately often broken)','Y','Y','','','N','Some current time constraints. I hope to change this soon and actively contribute.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','see my elaborations on Nix: I started using nixos as my main OS, and this is how I got into nix','Y','Y','Y','Y','','','','Stability','Portability','Broad package support','home-manager','Arch linux or Guix','Y','Y','','','','','','','','','none','nixops','-',''),(1419,'1980-01-01 00:00:00',5,'en','657663609','A2','A3','male','','','','','','Y','Y','','','','','','','','','Y','Y','Y','','','','Y','','Y','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I love having my system configured in a reproducible way, and that it is read only\r\n','','Y','','','','','Y','','Y','','','','I still have to test Nixos on production and ci/cd','','Y','Y','','Y','','Declarative system config and managment','Packages availability (free and non free)','Flakes','I\'d make nix much simpler with actual debugging tools. Same with flakes. I love you guys but the entry ticket is high prices.\r\nSince vimscript it is probably one of the most alien language I\'ve had to somehow learn','Guile. TBH if there was as many packages I\'d probably try it because I\'m under the impression that configuring everythinf with a lisp syntax would be much easier','','','','Y','Y','','','','','','','','','','Poetry, bundix and yarn','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was changing job and got tired of cherry picking my config once again despite all my scripts\r\nSo I got to use Nixos. Frankly without home manager and flakes I might not have continued because I wanted something up to date, safe, relatively easy and tunable.\r\n','Y','','Y','','','','','Up to date','Zfs','Fast','Faster pull request propagation when a build is broken on unstable.\r\nDevelopment in C++ and some language are not always easy because of the tooling that need wrapping and sometimes managing the dependencies is quite strange: for instance when one use poetry2nix when there is not lock file one has to install the dependencies, then after poetry2nix will work and actually reference the dependencies in the store.\r\nThis part still feel clumsy (same with ruby and node)\r\nPlease note that I might have missed a point but then there would a lack in the docs','Don\'t know... Maybe a lean debian based system with guile (I don\'t remember if they ship a distro too)','Y','','','','','','','Y','','','i3','Lorri\r\nHome manager\r\n','Nixops is too complicated for now. I want my main system to be easy to tune.\r\nSshing on my home server to rebuild the config is way faster for now','I use a truenas system also. I\'d love to see some stuff dedicated to Nas and more specifically volume management in Nixos.\r\nOne can do a storage system, but I\'d not be comfortable mixing config and command line to manage my volumes, recovery etc.\r\n\r\nOtherwise you really changed my way of working and I do love it.'),(1420,'1980-01-01 00:00:00',5,'en','1475022979','A2','A2','-oth-','','','','','','','','Y','Y','','Y','Y','Y','','','Y','Y','Y','','','','','Y','','','','Y','','Y','','','N','Y',NULL,'Because it was hard to use, particularly due to having to setup a nix-shell environment','I\'m trying at the moment! Flakes and deploy-rs look cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Again, I\'m trying at the moment! Flakes and deploy-rs look cool, so on',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I\'ve been way more used to Guix, and I would have stayed there because of its usage of Scheme, but its lack of up-to-date packages is just too discouraging'),(1421,'1980-01-01 00:00:00',5,'en','2011198341','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Puppet was crap. Ansible was bad. A friend suggested nix. It was less bad than all the alternatives.','','Y','','','','','Y','','','Y','','','','','Y','Y','','Y','','Declarative configuration','Hackability of nixpkgs','Everything is in nixpkgs','Optional type annotations','Fedora Silverblue (rpm-ostree more generally)','','','','','Y','','','','','','','','','','https://github.com/nix-community/naersk','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','Y','','','','Good configuration already baked in (e.g. the initrd openssh server is great)','Ability to deploy everything from a fork of nixpkgs','Ability to write my own modules for configuration and flakes for random apps','Generation diffs. I\'d love to know what apps, conf files, and systemd units I\'m about to switch to.','Fedora Silverblue','','','','','Y','','','','Y','','sway','https://github.com/nix-community/naersk\r\nhttps://github.com/Mic92/nixos-shell\r\nhttps://github.com/chisui/zsh-nix-shell','nixops (it\'s just a crapshot on whether it will install; switched to colmena which is good enough)',''),(1422,'1980-01-01 00:00:00',5,'en','2123060878','A1','A4','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','','','','A3','I don’t really use Nix.','','','','','','','Y','','','','','','','','Y','','','Y','','It’s on NixOS','Declarative.','','','','','','','','','None','','','','','','','','None','','','','','None','N','Lack of time.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Tired of fixing configuration breakage from rolling Arch Linux upgrades.','Y','','','','','','','Reproducibility.','','','Remove the need to learn Nix to install and configure NixOS.','Arch Linux.','Y','','','','','','','','','','None, just xmonad','','','Thank you!'),(1423,NULL,NULL,'en','456498157',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1424,NULL,1,'en','745217238','A2','A4','male','','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','Y','Y','','ios',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1425,'1980-01-01 00:00:00',5,'en','1630697747','A2','A2','fem','','','','','','Y','Y','','Y','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','','','','nix copy progress bar','Guix','','','','Y','Y','','','','Y','','Y','','','','yarn2nix\r\nbundix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','Declarative configuration management','','','','Arch Linux','','','','','','Y','','','','','Sway','Niv','naersk',''),(1426,'1980-01-01 00:00:00',5,'en','263709594','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','','Y','','','','','','Y','','Y','','','','','Y','Y','','','Y','','Package installation without dependency hell','Temporary environments using nix-shell','','','homebrew/apt','','','','','','','Y','','','','','','','','','Y','','','','N','Time','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','Desire to keep system configuration as code and reproducible; I was afraid to update software on my personal home server for fear of breaking a working system and having to debug and fix it','Y','','Y','','','','','Configuration as code','Easy rollbacks','Keeping state on a machine to a minimum (\"Erase your darlings\")','Easier way to handle secrets without additional tools','Debian','Y','','','','','','','','','Y','i3','','',''),(1427,'1980-01-01 00:00:00',5,'en','448589909','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted to have my tools (emacs, vim, git, zsh, etc) ready on both personal computer (Linux) and at work (macos)','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','declarative environment','pinned dependencies','cross compilation','','','','','','','','','','','Y','','','','','','cargo2nix, poetry2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Got a new machine, thought the easy rollback was nice','Y','','Y','Y','','','','configuration management abstraction (services)','packages are usually quite up to date','','','','Y','Y','','','','','','','','','sway','lorri (https://github.com/target/lorri) to manage dev shells\r\nhome-manager (https://rycee.gitlab.io/home-manager/index.html) to configure my home and desktop experience','',''),(1428,'1980-01-01 00:00:00',5,'en','1011524929','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Wanted a system I could build consistently/deterministically from a configuration, NixOS was a perfect fit.','','','','','','','','','Y','','','','','','','','','Y','','Being to rebuild my server with a single/few commands from a configuration.','','','Make the language less complex, or easier to understand. Certain configuration options (seems) to have a large(r) effect then the name/docs suggests.\r\n\r\nI would also love better documentation. As I use it for personal stuff only I don\'t have a lot of time to deep dive into all documentation outside of the manual. However new(er) stuff like Nix Flakes are still a complete mystery as I\'ve been unable to find clear documentation in the admittedly little time I\'ve researching it. It could also be the case that better navigation to and in the docs would help here.','Arch Linux + a bunch of scripts.','','','','','','','','','','','','','','','','','','','','N','No need for it so far, all packages are need already exist.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Wanted a reproducible server.','','','Y','','','','','Easy reproducible server','','','See answer for Nix; easier language & better docs.','Arch Linux + configs in git.','Y','','','','','','','','','','','','','Thanks for all the work you\'ve put into Nix/OS.'),(1429,NULL,1,'en','1037233002','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1430,NULL,1,'en','208606120','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','Y','OpenBSD, NetBSD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1431,'1980-01-01 00:00:00',5,'en','779335913','A5','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Declarative server configuration','Development environment','Reproductive builds','Rewrite Hydra in a much more modern implementation. Improve documentation greatly.','I would probably still be using Arch on desktop and Debian on servers managed by salt.','','','','Y','Y','','Y','','','','','','','Drone','npm2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Servers','A3','','Y','Y','Y','Y','','Y','','','','','','','','','','','Y','','','','','','AwesomeWM','','Flakes, doesn’t feel finished',''),(1432,'1980-01-01 00:00:00',5,'en','1507793539','A1','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Just heard it from a class course because setting up dev environments is a pain.','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','Software reproducibility','A large ecosystem with nixpkgs','Declarative configuration','more toolings around Nix and documentation','Guix ;p','','Y','','Y','Y','','','','Y','','Y','','','','','Y','Y','','','N','That\'s just me. My pacing with updates is just slow. The maintainers are fast at taking care of updates. :)\r\n\r\nThat said, the undocumented stuff left out from the reference manuals can be a showstopper at times.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Declarative configuration and all that fancy stuff. ALSO TO SHOW MY SUPERIORITY TO ARCH USERRS!!!!','','','Y','','','','','Declarative configuration','The best package repository, nixpkgs :)','Rolling back the speed of sound','IDK... Whatever applied to the previous qn similar to this. ','Still Guix ;p','Y','','','','','','','Y','','','all the hipster window managers','','Haskell packaging, mostly because it has several broken packages in there.\r\n\r\nSame with Python but that\'s just Python being Python. ;p','THIS IS THE YEAR OF NIX (AND GUIX) (AND ALSO FUNCTIONAL PACKAGE MANAGEMENT)!!!!'),(1433,'1980-01-01 00:00:00',5,'en','2135081688','A1','A3','male','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','I started using Nix alongside NixOS.','','','','Y','','','Y','','Y','','','','','','Y','Y','','Y','','Declarative system configuration','Convenient to try out a package (nix-shell)','Lightweight packaging compared to OCI images','','apt','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','I found NixOS in Haskell community. It appealed to me since I was suffering from re-configuration after reinstalling Windows and Ubuntu.','Y','','Y','','','','','Declarative system configuration','Easy, safe and reliable OS upgrade process','Container-like environment without Docker or Kubernetes','','Ubuntu','Y','','','','','','','','','','','home-manager','haskell.nix(https://github.com/input-output-hk/haskell.nix)',''),(1434,'1980-01-01 00:00:00',5,'en','1070328519','A2','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Wanted deterministic, repeatable environments and something to deal with the shared library hell.','Y','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Repeatability','Isolation','Has all the software I use or would like to use','Better examples how to do various things. eg. flakes, overlays.','manually compiled software to a custom prefix, docker containers','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Saw the benefits of maintaining my whole system with nix.','Y','','Y','','','','','Repeatability','Wealth of applications and modules','','','Arch linux','','','','','','Y','','Y','','','','niv','','Keep up the good work!'),(1435,'1980-01-01 00:00:00',5,'en','1500633771','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','When I heard the principle (I don\'t remember where from), I wanted to try it out. I haven\'t stopped using it since.','','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','',' One single configuration, which allow for better grouping of features','Reproductibilty','Easy to replicate ans share environments/config','A way to deal with secrets in the store (I am working on an rfc with a friend to address that)','I don\'t know, probably just language specifics packages managers for projects and dotfile manager for my home.','','','','','Y','','Y','','','','','','','','opam2nix, cabal2nix mainly','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','It looked interesting','Y','','Y','','','Y','','Reproductible setup','Ease of sharing complex configurations (for example simple-nixos-mailserver is a gem)','Easy rollback meaning it\'s easy to update and experiment','More modules for web services (pixelfed, wallabgag...)','Archlinux','Y','','','','','','','','','','Xmonad','- Home-manager\r\n- simple-nixos-mailserver\r\n','',''),(1436,NULL,2,'en','2070620802','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Started using because i broke my archlinux pretty often. I also had to copy my configuration from one laptop to another and decided to switch to nix along the way.','','','','','','','Y','','Y','','','','','','Y','','','Y','','unifying configuration among multiple machine','declarative package management','nix language enabling powerfull abstraction','','','','','','','Y','','','','','','','','','','','','Y','','','N','Still not comfortable enough with nix ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1437,NULL,1,'en','1878769217','A1','A2','male','','Y','','','','','','','','','Y','','Y','','','','','Y','','','','','Y','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1438,'1980-01-01 00:00:00',5,'en','926228126','A1','A3','male','','','','','','','','','','','Y','','','','','','','Y','','Y','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','','Y','','','','','','Y','','','','','','','','','','','Y','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','Y','','','','','','','sway','home-manager','',''),(1439,'1980-01-01 00:00:00',5,'en','1970904432','A6','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using Nix because I started using NixOS','','Y','','','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','precise dependency tracking','reproducible builds','ease of remote/distributed building','- The two space indentation convention followed in nixpkgs. Tabs are for indentation, spaces are for alignment.\r\n- Changing this now would only make things worse, but if the name was different from the start, googling nix-related things would become much easier.\r\n','Building packages from source..? I had started doing that with Arch and Debian packages to add patches and flags, but that quickly became tedious.','','','','Y','Y','','Y','','','','','','','','https://github.com/fzakaria/mvn2nix\r\nStopped using it because this tool (and probably nothing else) can account for all the weirdness that happens inside a maven build.','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend from work talked me into trying it. I first ran it in a VM to get used to writing system configs, then started using it as a daily driver, started using it in my homelab, and finally started using it to manage servers at work.','Y','Y','Y','Y','Y','Y','','Making servers a lot more stateless','Ease of building and deploying new configuration','The ability to test new configurations with NixOS tests','','Arch/Gentoo as daily driver, Ubuntu/Debian for servers.','Y','','Y','','','','','','Y','','DWM','','',''),(1440,'1980-01-01 00:00:00',5,'en','262964257','A2','A4','male','','Y','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I knew of it for a long while, but then a new Job finally made me look more closely, as a build system. Started using NixOS later.','','Y','','','','','Y','Y','','','','','','','Y','Y','','Y','','Reproducibility of build environments and builds','Functional core','All packages I need in nixpkgs','Seamless integration of the nix-level build setup with the interactive highly incremental language-specific development setup - I find I have to define all builds twice, once within nix, and once ofr interactive development.','Debian for the system. Language specific build systems and duct tape for builds.','','','','Y','','','','','','','Y','','','','cabal2nix, haskell.nix, naersk, buildRustPackage','','','','importing another nixpkgs version/fork/PR','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Curiosity, and a linking for declarative approaches','Y','','','','','','','Declarative configuration','Lots of packages','','Easier to run software that\'s provided as binaries by other sources.','Debian unstable','Y','','','','','','','','','','xmonad and bare X','niv','','Thanks!'),(1441,NULL,1,'en','735103815','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1442,'1980-01-01 00:00:00',5,'en','341358510','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Declarative system configuration','Package management','Development environment','Stable Flakes. A good way to handle secrets in NixOS configuration.','Guix','','','','','Y','','','','','','Y','','','','cabal2nix','','Y','','','N','Nothing','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','','','','','','Declarative system configuration ','','','A good way to handle secrets.','Guix','Y','','','','','','home-manager','','','','XMonad','nixfmt, rnix-lsp, lisp-mode (Emacs), direnv for Nix shells','',''),(1443,NULL,NULL,'en','1764617801',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1444,'1980-01-01 00:00:00',5,'en','1096098587','A5','','-oth-','non-binary','','','','','','','','Y','','','','','Y','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I don\'t remember how I discovered Nix (maybe I saw a link on lobste.rs), but I started using it because I was frustrated with traditional package managers, particularly how they don\'t let you have multiple versions of the same package installed. I tried just Nix first and then later replacing my laptop\'s Ubuntu install with NixOS.','','','','','','','Y','','','','','','','Y','Y','Y','','Y','','Packages without configuration files basically never conflict with one another','Installing and removing packages is super fast','Tweaking and rebuilding existing packages is simpler than I\'ve found it to be in other package managers','I would improve the command-line UI. I find it difficult to remember what the commands and options do, and the man pages seem to assume I understand how Nix is implemented (but I don\'t).','','','','','Y','','','','','','','','','','','','','','Y','','N','The Nix expression language is difficult for me to use, and I don\'t really understand how to package compiled software yet. I\'ve tried to learn in the past, but I didn\'t get very far because it was frustrating and (in my opinion) poorly documented.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I had been using Nix on Ubuntu for a little bit, and I decided it would be nice to have (what I perceived to be) the benefits of configuration rollbacks and hermetic packages for my whole OS. It\'s not as polished as I\'d like it to be, but it supports all my hardware and runs XFCE, so I\'m happy enough that I probably won\'t switch back to Ubuntu unless something breaks.','Y','','','','','','','Confidence that I can roll back my system configuration if I break something, without having to boot a recovery image or anything like that','Semi-reproducible system builds through /etc/nixos/configuration.nix','','I wish it were clearer whether I had to reboot after running `nixos-rebuild --switch`, and I wish I had more confidence that upgrading my NixOS version wouldn\'t break my system. I believe I could still roll back the configuration if the upgrade broke something, but I\'d prefer that I could believe it wouldn\'t happen at all. But that might be a problem with my understanding of NixOS, not a problem with NixOS.','Probably Ubuntu.','Y','','','','','','','','','Y','','','',''),(1445,'1980-01-01 00:00:00',5,'en','807754365','A5','A7','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','I liked the idea of NixOS configuration','','','','','','','','','Y','','','','','Y','','','','Y','','','','','make the store not have to be at a fixed global file path (/nix)','','','','','','','','','','','','','','','','','','','Y','','N','just never set it up and I\'m not expert enough to do things in a clean way','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I liked the idea of configuring a system with nix','','','Y','','','','','','','','some \"bundled\" nix packages which provided common collections of packages so I wouldn\'t have to learn so many details. one exaple would be desktop sound system which has a set of common applications included','Ubuntu or one of he BSD distributions','Y','','','','','','','','','Y','','','','I would like to use NixOS for work, but need systems that are compliant to certain standards. having information some tools to test that or having information about setting up a compliant system would be helpful. I keep playing with it, but haven\'t had the time to get into it enough'),(1446,NULL,1,'en','639661193','A5','A3','male','','','','','','','','Y','','Y','Y','','','','','','','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1447,NULL,NULL,'en','1728045843',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1448,NULL,NULL,'en','1707477072',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1449,NULL,1,'en','1436044402','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1450,'1980-01-01 00:00:00',5,'en','1887377190','A2','A5','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','','Y','','','','','','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(1451,'1980-01-01 00:00:00',5,'en','934563114','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','add proper and easily accessible documentation of input parameters and return values for all those functions in nixpkgs','','','','','Y','Y','','','','','','','','','','','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1452,NULL,NULL,'en','1440268407',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1453,NULL,2,'en','1589127277','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1454,NULL,NULL,'en','315239553',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1455,'1980-01-01 00:00:00',5,'en','1505440730','A2','A3','male','','','','','','Y','Y','Y','','','Y','','','Y','','','','Y','','','','','','Y','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Having not to resetup my devices after time because they are wasted - colleges brought me into NixOS','Y','Y','','Y','Y','','Y','','Y','Y','','','','','Y','Y','Y','Y','','replicability','','','','Salt, Ansible, Ubuntu','','','','Y','','','','','','','','','','','yarn2nix\r\nnpm2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','same','Y','','Y','Y','','','','replicability','','','','same','Y','Y','','','Y','','','Y','','','i3wm','home-manager\r\nnixfmt','NixOps',''),(1457,'1980-01-01 00:00:00',5,'en','94003448','A5','A2','male','','Y','','','','','Y','','','Y','Y','','','','','','','Y','','','Y','','Y','Y','','','','','Y','','','N','Y',NULL,'I didn\'t want to learn a new system to build source code with patches and manual modifications (e.g dwm, dmenu)','If I could more readily find relevant documentation to either create an automatically patched version in the Nix configuration file, or how to build it as I do on all other GNU/Linux systems. Alternatively, the Unity Desktop Environment being available would be an immediate huge bonus.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'see before','see before',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None to my knowledge','None to my knowledge','no'),(1458,NULL,0,'en','2050353615','A1','A5','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1459,'1980-01-01 00:00:00',5,'en','628712523','A5','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','NixOS','','','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','','Ability to extend existing packages','','','','','','','','','','','','','','','','','','','','Y','','','','N','Just haven’t had the time/need yet','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Attracted to NixOS as it felt like the end game of system config management and package management in one.','Y','','Y','','','','','Declarative config management','Breadth of packages','','Better docs and fewer different cli tools','Arch Linux plus some traditional CM like Chef or Fabric','Y','','','','','Y','','','','','','search.NixOS.org','',''),(1460,'1980-01-01 00:00:00',5,'en','719197995','A3','A2','male','','','','','Y','','','','','','Y','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I actually am pretty new to linux, already developed before on windows plataforms but I started to get into linux because i want it to try it out and customize it.\r\nAfter some weeks of searching I find the NixOS distribution and I found fascinating the whole concepts of reproducible builds and rolling back to a previous state.\r\nAt first I didn\'t understand how it works and it really fuzzed my mind, however, after reading and see some people using made me confident to try in my recently purchased laptop.\r\nI find a lot of errors but after some dedication I learned how to solve some of those problems and now I\'m still using it on my laptop and everyday I tinker some stuffs.\r\nAlso, I started learning how to use Nix and Nixpkgs to manage my course projects and so far I\'m enjoying the experience. ','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Reproducible','Nixpkgs is diverse and have a lot of packages','Declarative synthax','Still learning these tools so I don\'t have much complaint but I find kinda difficult to get into and learn\r\nif I have the magic wand I would want to add Nixpkgs to windows because every school pc uses it here, however I know that this is kinda impossible right now and the closest we can get is WSL\r\nAnother thing is probably a list of sources on how to learn more easily, its difficult to find tutorials and sources on google/youtube, but there are a lot of people doing it.\r\n','For package management, probably homebrew','','','','','','','','','','','Y','','','','','Y','','','','N','I\'m still learning ','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Still learning these tools so I don\'t have much complaint but I find kinda difficult to get into and learn\r\nif I have the magic wand I would want to add Nixpkgs to windows because every school pc uses it here, however I know that this is kinda impossible right now and the closest we can get is WSL\r\nAnother thing is probably a list of sources on how to learn more easily, its difficult to find tutorials and sources on google/youtube, but there are a lot of people doing it.\r\n','Y','','Y','','','','','Reproducibility','Atomic Upgrades','Declarative','Better documentation (like wiki) and source learning list.\r\na graphical installer.\r\nsecure by default philosophy.\r\nAn easy way to compile code from source like Arch linux and transpile it to an package system','Guix or Arch linux','Y','Y','','','','','','','','','Sway and Xmonad','lorri, shadowenv, direnv, NUR, nixpkgs-wayland, home-manager','',''),(1462,NULL,1,'en','1245302879','A5','A3','male','','','','','','','','','','Y','','','','','','','','Y','','','','','Y','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1463,'1980-01-01 00:00:00',5,'en','1901330269','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was curious to try some \"exotic\" distribution, tried NixOS, and now I stick with it!','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','Declarative system configuration / management (eg. NixOS)','Hackability, ie. since Nix is a programming language, and not only a configuration language, it\'s easy to implement features that are not already there','Purity / reproducibility. The fact that once you\'ve built a flake, you can just store the result somewhere and use it everywhere you would build the same flake, with the same options, instead of actually building it again.','Documentation (adding)','I never tried something else that does what Nix does, so I couldn\'t tell.','','','','','Y','','','','','','','','','','cargo2nix (github.com/cargo2nix/cargo2nix)','','Y','','','N','I don\'t have time to.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Same as with Nix (discovered both at the same time), I was simply curious about Linux distributions, tried a few, and my favorite was NixOS.','Y','','Y','','','','','Declarative configuration, along side with comprehensive options, make it very easy to configure the system with the provided options (sometimes, an there is no option that covers a wanted feature so you have to make it, but it\'s rare, and fun when it happens)','Pre-bundled \"system\" packages, and coherency of the options chosen. This means it\'s very easy to install, say, a mail server, because NixOS automatically pulls all the dependencies, in the larger sense: not only it installs all the components of a mail server, but it may also install a web server to provide certificates, on its own. It seems a small thing, but when you compare the equivalent operations on other distributions, working with NixOS has been less painful.','Neat integration with flakes and home-manager.','Documentation as a proper wiki. The current one is fine, but it does not stand the comparison with Arch\'s or Gentoo\'s. There is definitively room for improvement.','Gentoo','Y','','','','','','','','','','Sway','I use very regularly home-manager, along side with flakes.','','Great job so far!'),(1464,'1980-01-01 00:00:00',5,'en','767142067','A2','A5','male','','','','','','Y','Y','','Y','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Like to control my setup','Y','Y','','Y','','','Y','','Y','','','Y','','','Y','Y','Y','Y','','Declarative system management','Never break my system','','','Gentoo','','','','','Y','','','','','','Y','','','','','Y','Y','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','Y','','','','','','','Y','','','','','','','','','','Qtile','','',''),(1466,NULL,1,'en','587025134','A2','A6','male','','','','','','','Y','Y','Y','Y','Y','','','','','','','Y','','','','','','','','','','','','','Android',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1467,NULL,2,'en','441719904','A1','A3','male','','','','','','','','','','','Y','','Y','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','Y','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','Dev env','Reproducible builds','system config tracking','Smart/Better error messages when making mistake in writing nix. (Haskell nix probably?)','','','','','','','','','','','','','','','','cabal2nix\r\nnode2nix\r\n','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1468,'1980-01-01 00:00:00',5,'en','959680068','A2','A3','male','','','Y','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','declarative system configuration. IaC for system','','Y','','','','','Y','','Y','','','','','','Y','','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','Y','','','','','','','','','','awesome wm + overt tools','','',''),(1469,'1980-01-01 00:00:00',5,'en','1086761','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Long story short:\r\nUsing Arch for a long time, wanted a way to track every change I did to the system, the system configs in /etc..., my user config, with variations. Having kind of \'topics\' of changes applied together (got that with the module system!)... A way to easily test something and cleanup after I\'m done (I like to keep my system clean, which is kinda hard without Nix). Everything as-code ❤️\r\nDiscovered Nix, I knew this was THE solution. Studied it slowly but surely for a year & half, see how it works, what it can do... Then started slowly to use it for a project (before flakes were a thing), did work pretty well!\r\nThen slowly still started to use it to install my dev tools. Then I found a way to use it at work (cheating with proot to emulate /nix, because I\'m not admin and user namespace are disabled :/), before managing to create a proper /nix folder and having a more stable and really uptodate dev setup (running on old CentOS7)\r\nNow playing with it more and more, slowly nixifying my whole Arch setup before setting up a proper NixOS on a new laptop!','','Y','','','','','Y','','','','','','','','Y','Y','','','','','','','','Ansible, and without even trying custom software builds','','','','Y','Y','','','','','','Y','','','','','','Y','','','Y',NULL,'N','N','Having my Arch setup properly nixified, but I\'m working on it! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager (for its lib, but not its modules, I do my own mostly) ','',''),(1470,'1980-01-01 00:00:00',5,'en','1921470455','A1','A4','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','Y','','','N','N','curiosity',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','curiosity',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1471,NULL,NULL,'en','1109510835',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1472,'1980-01-01 00:00:00',5,'en','294464630','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Personal interest and being fed up by Andi le','','Y','','Y','','','','','Y','','Y','','','Y','Y','','','Y','','Dependency independence ','Declarative configuration ','Concept of reproducibility ','Transparent security updates','More vms and containers','','','','','Y','','','','','','','','','','','Y','Y','','','N','Not deep enough into nix at the moment, time','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Personal intrest','','','','','Y','','','Declarative configuration','Rollbacks','Reproducibility ','More transparency to security updates and patches ','Debian, Arch','Y','','','','','','','','','','awesome','home-manager','',''),(1473,NULL,NULL,'en','304188793',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1474,'1980-01-01 00:00:00',5,'en','1226160384','A2','A4','male','','','','','','','','','Y','','Y','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Simplified software development and deployment.','Y','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','Composability','Determinism','','More tests for Nix to avoid breakages of existing features and incompatibilities between versions.','Guix','','','','Y','Y','','Y','','','','','','','','yarn2nix\r\nnode2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Define systems in a reproducable way.','Y','Y','Y','Y','','Y','','Declarative','NixOS modules','','','Gentoo','Y','','','Y','','Y','','','','','DWM','','',''),(1475,'1980-01-01 00:00:00',5,'en','2112639395','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Because i started using NixOS','','Y','','','Y','nix-on-droid','Y','Y','Y','Y','Y','Y','','','Y','Y','','Y','also to generate some other general purpose stuff like configs that are not related to nix/nixos','Build it once, run it everywhere (reproducibly)','Go back if you mess up','Patching and pinning is ridiculously easy','- compatibility with running executables from other Linux distros\r\n- make evaluations more efficient (memory and cpu wise)\r\n- don\'t focus on features a majority of the community doesn\'t want/need','spack','','Y','','','','','Y','','Y','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Friends of mine showed me NixOS as i told them that my arch installation broke a few days prior.\r\n\r\nThen, i tried NixOS and i never want to go back.','Y','Y','Y','Y','Y','Y','','Immediately seeing what runs on a machine by looking at the configuration.nix','Versioning of the whole operating system and easy sharing of services etc','Building on one machine and copying the system to another machine','Faster evaluation of systems, easier onboarding manuals','ansible','Y','','','','','Y','manually evaluating, building, copying and switching (only used in rare cases)','','','','bspwm','sops-nix\r\nrobotnix','nix 2.4\r\nnix-alien',''),(1476,NULL,NULL,'en','114412286',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1477,'1980-01-01 00:00:00',5,'en','92953976','A2','A2','male','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was persuaded by a friend and never able to leave it once I started using it ;)','Y','','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','A powerful DSL for describing my systems','Sandboxed and (pretty) reproducible builds','An extensible system (mostly relates to nixpkgs overlays and the nixos module system)','- Prioritize the CA efforts because they can seriously improve the overall maintenance and CI systems\r\n- Stop pushing features that are highly opionionated like Flakes\r\n- Proper support for IFD or a viable alternative\r\n- Improve memory and CPU usage (especially important when evaluating a lot of systems)\r\n- Maybe some improved logging so people can actually see why their nix segfaults?','Ansible and Debian probably','','','','','','I use nix 2.3','Y','','Y','','','','','','wp4nix: https://git.helsinki.tools/helsinki-systems/wp4nix\r\nbbb4nix: https://github.com/helsinki-systems/bbb4nix\r\n(you can now guess where I work)\r\nranz2nix: https://andreas.rammhold.de/posts/ranz2nix\r\nbower2nix (from nixpkgs)\r\npoetry2nix (from nixpkgs)\r\nnode2nix (from nixpkgs unstable)\r\nyarn2nix (from nixpkgs)','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was persuaded by a friend','Y','Y','Y','Y','','Y','','Extensibility by the modules system','Reproducibility and the entire of a system closure and having it be consistent in itself','A high amount of modules','- Improve eval time of the module system (easier said than done, I know)\r\n- Switch to more non-homegrown solutions like networkd, stage 1 systemd, systemd users\r\n- More tests!','Ansible and Debian probably','','','','','','Y','','','','','i3','Hydra. I use it daily (and develop it)','nix > 2.3','Great to see some people trying to understand what majorities of the community want <3 It\'s a lot less opinionated and it\'s probably for the greater good of the community to ask as many people as possible and merge their results'),(1478,NULL,NULL,'en','1812860976',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1479,'1980-01-01 00:00:00',5,'en','262382121','A7','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','','N','N','Looking at it now for the 1st time. Heard about it from a friend today.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','curiosity',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not applicable','not applicable','Good luck. I hope you do well.'),(1480,'1980-01-01 00:00:00',5,'en','2040147735','A5','A3','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','After painfully upgrading Debian a few times, heard about NixOS and took the plunge.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducible builds','Excellent package selection in the cache','Declarative package management','Stabilize Flakes','Debian with docker, and suffer','','','','Y','Y','','','','','','','','','','Rust2nix','Y','','','','N','No need seen, anticipated difficulty with PR submission and approval','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Struggled through a few Debian upgrades, then discovered NixOS','Y','','Y','','','','','Declarative package management','Reproducible builds','Excellent package selection from the binary cache','Stabilize flakes','Debian','Y','','','','','','','Y','','','','','',''),(1481,NULL,NULL,'en','1639287553',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1482,NULL,3,'en','881101217','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','Y','','','','','Y','','Y','','','','','','','Y','','Y','','','','','','','','','','','Y','','','','Y','','','','','','','','','','','',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1483,NULL,1,'en','704436481','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','Android','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1484,'1980-01-01 00:00:00',5,'en','190397164','A2','A3','male','','','Y','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','While learning Haskell, I\'ve heard about Nix. Soon I\'ve switched my main from Gentoo to NixOS completely.','','Y','','','','','Y','','Y','','','Y','','','Y','','','Y','','Reproducibility','Purity','Large repository','Debugger that drops to REPL, Common-Lisp-style continuations on error, Algebraic types and type-checking, Two-way Haskell-Nix compiler, Gentoo-like flags, a language server (if not switching to Haskell Nix DSL).\r\nFlakes are good, adopt a package management system from other programming as a flakes management tool.','','','','','Y','Y','','','','','','','','','','','','Y','','','N','It takes much effort to even figure out how to start contributing.\r\nOnce I\'ve built a newer version of CKAN for Kerbal Space Program by modifying an existing expression from Nixpkgs and added it to my \"environment.systemPackages\"; then I wanted to share it, but haven\'t done so due to discomfort and sense of unease after trying.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','NixOS is even cooler that Gentoo, which was my main at the time. Found out about it when learning Haskell.','Y','','Y','','','Y','','Purity','Rollbacks','Ease of configuration and/or repair','Better SoC/embedded support with more automatic image creation, mobile support, perhaps re-flashing on a router','Guix, Arch, Gentoo.','Y','Y','','','','','','','Y','','','','',''),(1485,'1980-01-01 00:00:00',5,'en','545437282','A2','A3','male','','','','','','Y','Y','Y','','','Y','','','Y','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','Y','','','','cabal2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','Xmonad','','',''),(1486,NULL,1,'en','836721704','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1487,'1980-01-01 00:00:00',5,'en','365257970','A5','A3','male','','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','When I heard about Nix I immediately got very interested in the reproducibility aspect and the ease of programming a system setup using the Nix language.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducible environments','Nix language programming including the ability to share and reuse of components','A humble and respectful community','Amazing documentation, tracing and debugability. E.g. lsp integration that allows going to /etc/some/file and see where the corresponding line numbers are defined.','Maybe Fedora or something...','','','','Y','Y','','','','','','','','','','Naersk: https://github.com/nix-community/naersk','Y','Y','','','N','I have contributed in the past, but lately haven\'t found anything to contribute','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','When I heard about Nix I immediately got very interested in the reproducibility aspect and the ease of programming a system setup using the Nix language.','Y','','Y','','','','','Modules make it so easy to maintain configs','Other people\'s modules for setting things up quickly','','','Maybe Fedora. Not sure, since I\'ve been using Nixos for a long time without thinking about alternatives','Y','','','','','','','','Y','','xmonad, steam','','',''),(1488,'1980-01-01 00:00:00',5,'en','740309397','A2','A4','','','Y','','Y','','Y','','','','','Y','','','','','','','','','','Y','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','','','','','','Desktop use','Y','Y','','','Y','','dev shell','different versions of software / system rollback','declarative package configuration','- more faimiliar language with editor support','env-solutions of programming languages','','','','','Y','','','','','','','','','','Trying to avoid it, because these always get out of sync.\r\nWould be nice if the builders could automatically pick up the respective lock files of projects.','','Y','','','N','don\'t want others to rely on my bad maintained software','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I liked the idea and hope that building software for nixos will reduce bugs through unclear dependencies.','Y','','','','','','Desktop','system rollbacks','declarative system config','support for tricky packages (e.g. steam)','- Add better documentation, showing how the different parts (nix, nixos, nixpkgs) are used together to integrate own software in nixos (without bringing it to nixpkgs)','chef for provisioning','Y','','','','','','','','','','Cinnamon','','',''),(1489,'1980-01-01 00:00:00',5,'en','1538361912','A4','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','','','','','','','simplify nix','containers','','','','','','','','','','','','','','','','','','','','N','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1490,'1980-01-01 00:00:00',5,'en','899848350','A5','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was looking for a tool that would allow me to have a declarative system configuration that is reproducible and copied on my various computers.','Y','Y','','Y','Y','','Y','Y','Y','','','','','','Y','Y','','Y','','Reproducible environment/development platform','Using the same tools, the same way, on multiple operating systems','Declarative tooling configuration (NixOS + Home Manager)','Faster evaluation and a type system.','Docker environments','','','','Y','Y','','','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','My disk was corrupted due to a power outage, so I decided to install NixOS on my laptop during my exam week.\r\nI heard about Nix and NixOS when trying to learn Haskell so I decided to give it a go.','Y','','Y','','','','','Declarative configuration','Lots of modules with good default configurations: disk encryption, PAM authentication with a security key, boot managers, many many server programs.','Easily experiment with various tools (desktop environments, boot managers, disk encryption, PAM authentication with a security key)','1. Official Home Manager integration in NixOS!\r\n\r\n2. I wish the plymouth (graphical boot) integration supported unlocking Luks encrypted partitions / disks.\r\n\r\n3. I wish there was an easier way to use secrets in NixOS besides sops-nix or agenix.\r\n\r\n4. Automatically update my system to have the latest security updates. I think this is something the Content-Addressable project might solve?','For the everyday desktop: a GNU Stow alternative that supports templates.\r\nFor my servers: a mix of Ansible (yuck) and containers.','Y','','','Y','','','','','','','Wayland (Sway)','Home Manager','','Thanks to the team!'),(1491,'1980-01-01 00:00:00',5,'en','292374237','A3','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Docker was too slow on mac and I needed reproducible environments','Y','','','','','','Y','','Y','','','','','','Y','','','Y','','mac compatibility (otherwise I wouldn\'t be able to use it at all)','reproducibility','cached builds','debugging tools?','Probably stick to docker?','','','','Y','Y','','Y','','','','','','','','I\'d like to use node','Y','Y','','','Y',NULL,'N','N','A Nas-focused build/config',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-darwin\r\nhome-manager','','Nix\'s fundamentally changed the way I use computers. Thank you.'),(1492,'1980-01-01 00:00:00',5,'en','227111881','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Read an intro to it describing the reproducible builds and then found nix-Darwin.','Y','','','','','','Y','','Y','','','Y','','Y','Y','','','Y','','Transient, reproducible environment','Flakes bringing easy updates/rollbacks','Store','Convention over configuration. Make it less open ended and add “official” patterns to follow.','Asdf in development and immutable images in production','','','','Y','Y','','','','','','Y','','','SemaphoreCI','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','Y','','','Y','','Declarative configuration','','','','','','','','Y','','Y','','','','','','','',''),(1493,NULL,3,'en','804711379','A2','A2','male','','','Y','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Was recommended NixOS by a friend and wanted to switch from Windows after a leaving school that required it.','','','','','','','Y','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1494,NULL,NULL,'en','2146782924',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1495,NULL,NULL,'en','1859697294',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1496,'1980-01-01 00:00:00',5,'en','1769811418','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Curiosity towards Nix package manager and NixOS. I was interested in declarative approach to defining a system.','','','','','','','Y','','','','','','','','Y','Y','','Y','','Declarative definition of the system','System independent shell environments via nix store','Ability to specify an environment (no installation instructions and fixups because someone is missing some global dependency that is presumed to be installed on the system). Nothing is presumed','Add types (very important for readability), add better documentation (more examples, up to date resources), more unified approach to doing one thing, simpler way to do simple thing (straightforward thing tends to have a convoluted expression). Such a great tool, but because of lack of reasources, and weird ways of specifying something, I find myself copy-pasting someone\'s shell script instead of writing from scratch. It\'s more about remembering idioms than just writing intuitive sentences of what you want to achieve. \r\nBasically it sums to that when I open an empty file in haskell (or some other language) I can use basic language constructs and get to the program I desire to write. I can\'t do that with nix, I need to take someone\'s boilerplate (my template) and tweek it from there for specific project.','I would definitely look into guix. I can\'t go back to imperative.','','','','Y','','','','','','','Y','','','','cabal2nix (callCabal2nix)','Y','','','','N','Don\'t know where to start. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','','Y','','','','','','','','','','It boils down to things in Nix.','','Y','','','','','','','','','','xmonad','home-manager','various helper tools for setting up a project.\r\nI don\'t like to use external tools outside the main tool (nix).\r\nIf there is need for some additional features they should be included in the nix, or if the tool\'s features are diverging from the core tool functionality, then the additional tool should be under the same maintainers/organization. \r\nBasically I don\'t like to have a working environment that consists of various tools each with a different namings and inconsistent commands.','I would love that nix/nixos conferences/gatherings are not so dead. E.g. nixcon. \r\nIt\'s an amazing tool, why aren\'t we introducing it better to more people? '),(1497,NULL,1,'en','452380133','A1','A7','male','','','','','','','','','','','','','','','','','','','','','','','','','retired','','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1498,'1980-01-01 00:00:00',5,'en','1560054257','A5','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','IT\'S REALLY COOL!! AND FUNCTIONAL!! and declarative... and I want a stateless system','','','','','','','Y','','Y','','','','','','Y','','','Y','','','','','I would make Flakes the default :P','pacman','','','','','Y','','','','','','','','','','','','Y','','','N','I probably would but I\'ve only been using Nix for a couple months :P','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','The idea of managing my system with just a few config files that I could copy over to other machines really drew me in! And I want a STATELESS SYSTEM!! Using NixOS is the only way I could achieve that. I think it is REALLY COOL and it is MUCH easier to manage than any other system I\'ve used before. Managing my system declaratively with Nix feels like actual heaven :3','Y','','Y','','','','','','','','I would wish for more parts of the system to be optional (ability to use musl instead of glibc, ability to use some init system over systemd)','OpenBSD','','','','','','Y','','','','','HerbstluftWM','','',''),(1499,'1980-01-01 00:00:00',5,'en','2009281223','A2','A5','male','','','','','','Y','','Y','','','Y','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','','','','','','','','','','','','','','','','Y','','','','','Add a modern shell instead of bash. http://objective.st\r\nAdd gui tools for looking around and debugging.\r\n','I would just run the bare minimum server wise with perhaps a k3s for \"stuff\"','','','','','','','','','','','','','','','','','','','','N','Dont know enough yet.\r\nPR backlog?','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted to develop self-updating server appliances. I was using Fedora Atomic and later FCOS. (updates need a reboot, rebuild of OS). NixOS is much quicker and more forgiving.','','Y','Y','Y','','','','Config as Code','Iterative exprience','','More docs.\r\nBetter shell, stsh. http://objective.st\r\nSome GUI tools. http://objective.st (GNUstep) for brwsing and debugging.\r\n','Kubernetes cluser, probably k3s','Y','','','','','','syncthing','','','','','','',''),(1500,'1980-01-01 00:00:00',5,'en','1039010863','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I needed something as flexible as Gentoo but with pre-built binaries available. Nix was a perfect fit and I really liked that I can just clone Nixpkgs and start developing.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','','Y','','Isolated and reproducible builds','Transparent source/binary deployment','Declarative configuration','IMO Nix* mainly needs more contributors and I hope to see more improvements regarding stability and security updates.\r\nIt might be nice to have Eelco\'s Nix language extension for package configurations (https://gist.github.com/edolstra/29ce9d8ea399b703a7023073b0dbc00d).\r\nAnd Hydra should be improved.','Maybe Spack but there\'s no real Nix alternative (and I definitely wouldn\'t use Flatpack, Snap, etc.).\r\nInstead of NixOS I\'d use Fedora (or Gentoo/Arch/Alpine).','','','','Y','','','','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I got annoyed but Gentoo\'s long build times and NixOS was a better alternative.','Y','','','','','','','Atomic updates (and rollbacks)','Declarative system configuration','Reproducible system configurations','I\'d love to have better communication channels for breaking changes on nixos-unstable (e.g. via a CLI tool that can filter out relevant news).\r\nIt would also be nice to have shorter delays between master and nixos-unstable.','Fedora (or Arch/Gentoo/Alpine).','Y','','','','','','','','','','Sway','https://github.com/Mic92/nix-update\r\nhttps://github.com/NixOS/ofborg\r\nhttps://hydra.nixos.org/\r\nhttps://github.com/flyingcircusio/vulnix','https://github.com/NixOS/nixops (probably still depends on Python 2...)','Overall we\'re doing a great job!\r\nWe just need more contributors, higher quality standards, and more publicity (which should result in more funding, contributors, etc.).'),(1501,'1980-01-01 00:00:00',5,'en','524153214','A5','A4','-oth-','Agender ','','Y','','','Y','Y','','','','','','','','','','Y','','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted a solution to managing system and programming language dependencies that allowed.','Y','','','','','','Y','','Y','','','','','','Y','','','Y','','nix-shell environments for isolated dependencies','Hydra/build cache','','Automated package updates from upstream','Docker or chef/puppet','','','','','','','','','','','Y','','','','','','','Y','','N','The changes I need in nixpkgs are in progress by time I need them. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Love nix and wanted that on more of my computer life. Installed it on a work laptop and home server. Laptop/whole (non-server) system didn’t end up working too well 5 years ago, but continued using it for servers ','','','Y','','','','','Single config file for system configuration','Easy test/rollback of system configs','','Automated partitioning/disk setup','Arch','','','','','','Y','','','','','','','','I love nix, thank you for your work!'),(1502,'1980-01-01 00:00:00',5,'en','733076307','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Read about it on Reddit, thought it sounded cool, gave it a spin, liked it.','Y','Y','','','','','Y','','','','','','','Y','Y','','','Y','','Shared, composable, declarative configuration and package management between my Mac and Linux machines','Isolated dev environments','','Add a tremendous amount of good, easily searchable documentation','Ansible','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Read about it on Reddit, thought it sounded cool, gave it a spin, liked it.','Y','','','','','','','Declarative OS configuration.','Ability to boot previous generations of OS configuration.','','','Ansible and Arch Linux','Y','','','','','','','','','','i3wm','nix-direnv','lorri, nox, manix, poetry2nix',''),(1503,'1980-01-01 00:00:00',5,'en','415509593','A5','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','Y','IT Support','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I botched the upgrade from Ubuntu 18 to 20, then I attempted to install Debian which failed because of lack of proprietary firmware. Then I installed NixOS which I heard of because I\'m friends with Guix users and Guix is a fork of Nix.','','Y','','','','Nix-on-droid','','','Y','','Y','','','','Y','','','Y','','NixOS Options for configuration','Nixpkgs having nearly everything, I no longer need to supplement it with snap and flatpak like I did on Ubuntu.','home-manager and the fact that nix works on raspberry pi','Decentralized package hosting over ipfs or gnunet\r\n\r\nUpdate apparently this already exists as \"content addressable derivations\" ','For declarative server configuration, docker via dockerfiles\r\nFor package management, some combination of apt, snap, flatpak, and appimages\r\n\r\nit would suck, thank god for nix!','','','','','','','','','','','','','','','','','','','','N','I don\'t know how to make a package','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Botched upgrade from Ubuntu 18 to 20, couldn\'t figure out Debian','Y','','','','Y','','','NixOS options (declarative configuration)','Nixpkgs (the fact that everything is in the repos)','Home-manager','Graphical Installer','For declarative server configuration, docker via dockerfiles\r\nFor packages, snap, flatpak, appimages, building from source, etc\r\n\r\nIt would suck, thank god for Nix!','Y','','','','','','','','','','i3-gaps','','The Nix User\'s Repository (NUR), everything I need is now in nixpkgs or unstable','Nix home-manager as a backup tool - https://technologists.cloud/jackie/blog/home-manager-backup.html'),(1504,NULL,2,'en','614416145','A2','A3','male','','Y','','','','','','Y','','','Y','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I learned about nix and nixos hanging out in the #haskell irc channel.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Declarative system configuration management','Flakes','Nix Home manager','The language itself as a superset of bash','Guix','','Y','Y','Y','Y','','','','','','','','','sourcehut','','','Y','','','N','High barrier of entry',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1505,'1980-01-01 00:00:00',5,'en','104397962','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I just started with Haskell. Finally I ended up using Nix.','','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','Package Management','Build my own projects','Reproducible Environments','','Arch, Gentoo, Guix...','','','','','Y','','','','','','','','','','','Y','Y','','','N','I am very dumb.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Same as Nix','Y','','Y','','','','','','','','','','','','','','','','','Y','','','Dwm','','',''),(1506,'1980-01-01 00:00:00',5,'en','1465145691','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1507,'1980-01-01 00:00:00',5,'en','182645772','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','ChromeOS','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','My old install was slowly getting dirty','','','','','','','Y','','Y','','','','','','Y','','','Y','','Nix Flakes','Declarative System Configuration','Nixpkgs','Add breakpoints and debugging','Shell scripts','','','','','Y','','','','','','','','','','https://github.com/DavHau/mach-nix','','Y','','','N','PR Scary','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Old install got cluttered','','','Y','','','','Desktop','System Management','Atomic Updates/Rollbacks','Tons of packages','Robust debugging interface to troubleshoot flakes','Void Linux or Arch Linux','','','','','','','','','','','Sway','','','Thanks for making nix'),(1508,NULL,1,'en','1735555021','A5','A5','-oth-','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','i like pain....but only once. ;) nothing else provides that.','Y','Y','Y','','Y','','Y','','Y','Y','','Y','','','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1509,NULL,1,'en','418319541','A3','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1510,'1980-01-01 00:00:00',5,'en','1435777747','A5','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I initially heard about Nix in the mid-2010s, but didn\'t pay much attention to it, and only started using Linux a few years later--I had been using Windows exclusively up until then. As I began using desktop Linux full-time, I realized that the way these systems were configured were too brittle, and any change to that configuration was often difficult to revert (I remember having to re-install Arch Linux several times!). Eventually around mid-2019 I stumbled across a post called \"Guix: a most advanced operating system\" (which seems to be gone now...) and through that, re-discovered Nix and NixOS. I was extremely excited to try it out and track my configuration in a Git repo, so I installed NixOS on my laptop straight away. I then started using Nix itself to develop personal/university projects, which was very convenient, especially when collaborating with other students (when I got them to try Nix out). I\'ve been a happy user of Nix ever since.','Y','','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Track package definitions through version control','Reproducibility of builds','Remote builds (very useful for macOS hosts!)','The most prominent thing would be approachable documentation, to make onboarding significantly easier. Nix by itself is somewhat easy to understand I think, but the mechanics behind the tools we use on top of Nix (eg. Nixpkgs, NixOS\'s module system) can be difficult to wrap one\'s head around sometimes. You usually don\'t have to worry too much about these things until you do (e.g. diagnosing errors).','I\'m not sure a comparable piece of software would exist, but I\'d likely just use Homebrew on macOS to a greater extent than I do now. For Linux systems, I would probably use thee provided package manager.','','','','Y','Y','','','','','','Y','','','','- poetry2nix: https://github.com/nix-community/poetry2nix/','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','See why I started using Nix, because those stories mostly coincide with each other.','','','Y','Y','','','','Tracking system configuration through version control using a functional JSON-like (i.e. approachable) language','The ability to rollback configuration changes if something goes wrong','Building a NixOS configuration remotely, whether for CI/CD or for bootstrapping a server (e.g. a Raspberry Pi)','I\'d better document how the module system works and maybe make it more approachable to first-time users.','I\'d likely just use the usual Linux distros for servers (since I no longer use desktop Linux on my development machines), though I wouldn\'t be too happy about it. I\'m assuming here that Guix wouldn\'t exist, since it was inspired by Nix IIRC.','Y','','','Y','','','','','','','','I use home-manager to manage my user environment with Nix, and nix-darwin to manage my MacBook\'s system configuration (well, as much as I can).','',''),(1511,'1980-01-01 00:00:00',5,'en','23967920','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Got a lesson at chaos camp 2019. Concept is cool.','','','','','','','Y','','Y','','','','','','Y','','','Y','','Clean machine','Small footprint','Full control','More exchange of .nix files. Tutorials.','Linux mint','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','Clean install','Small footprint','Reproducable configuration','grafic configuration, installer with .nix generation files','Linux mint','Y','','','','','','','','Y','','','','',''),(1512,'1980-01-01 00:00:00',5,'en','1723063848','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I really like the idea of declarative centralized configuration of machines and have built systems like it myself','','','','','','','','','Y','','','','','Y','Y','Y','','Y','','Declarative config','','','The documentation on the nix lamguage','Ansible','','Y','','','','','','','','','','','','','','','','','','N','How do I add to it?','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','Y','','','','','Same as nix','','','Documentation on language','Debian and ansible','Y','','','','','','','','','','i3','','',''),(1513,'1980-01-01 00:00:00',5,'en','677157','A5','A3','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','N','N','Declarative package management. Fearless installation and painless uninstallation / rollback.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Please simplify the tutorials and onboarding process.\r\n\r\nThere is a big jump from the one-line Nix installation incantation to Nix expressions and details about the Nix language. There are numerous other tutorials that suggest using nix-env. There are other citizens in the ecosystem, including nix-darwin, nix-flakes, home-manager, etc., and they have mysterious purposes.\r\n\r\nI am a competent Linux user (having used Fedora for over 15 years now), and am a reasonably competent functional programmer. The documentation on the website is all either incomprehensible or trivial.\r\n\r\nCan we please just have a single official tutorial that begins with installing the package manager, and then describes the official way to install new packages, rebuild the environment, and defines just enough of the vocabulary that users can begin using the system?'),(1514,'1980-01-01 00:00:00',5,'en','1827988345','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','Y','','','','','Developer, Machine Learning','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','The promise of replacing imperative Docker builds AND brittle virtualenvs, Conda, and HomeBrew is just too enticing. But I\'m still just getting started1','Y','','','','','','Y','','','','','','','Y','','','','','','Developing Python applications using nix-env, though I\'m just getting started.','Next I want to use direnv and shell.nix for declarative and automated development management.','Third, I want to build Docker images using Nix.','I\'d make it simpler to use and get started. I\'m still very lost most of the time, and I consider myself a quick study, AND I took the time to learn the Nix language first (and was decently proficient with Haskell a few years back).\r\n\r\nI can see the improvements coming down the pipe, but I still get really confused by what Flakes are, how and when I\'m supposed to use them, and why I still need to use channels sometimes (like to install home-manager) even when channels were deprecated in 2.4?\r\n\r\nThe new `nix` CLI is a massive improvement, but it\'s still somewhat unsupported (eg, it\'s not installed in this new NixOS install I just did and I don\'t know how to turn it on?) and most wiki/manuals/forum posts are still using the old commands (which is understandable, but unfortunate).','Virtualenv, poetry, Docker, homebrew. Maybe Fedora Silverblue with their toolboxes. I looked into Arch/pacman too.','','','','','','','','','','','','','','','I\'ve looked into cargo2nix for Rust development, but it looks ... complicated. I\'d LOVE for a nice Python story (I haven\'t really dug in much there yet) but it also looks somewhat complicated.','','','','Haven\'t gotten there yet.','N','I\'ve looked at some derivations in the git repo (trying to debug things as I go), but I don\'t know where I\'d even get started. Understanding what things like `hydra` even are is a stretch for me.','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','I started using Nix on my work mac laptop, and then was looking for a Linux distribution, and it was either between NixOS, Fedora Silverblue (or workstation) or Arch.','Y','','','','','','','Modules','Home-manager (though I _just_ got it installed after fighting with channels being user specific (couldn\'t understand why me adding the home-manager channel wasn\'t propagating to nix-rebuild switch).','I want to start using nix for Rust and Python development, but I\'m not ready for that yet.','Significantly reduce complexity and surface area across the board. The new `nix` CLI is a huge step forward, but is not installed by default (and I don\'t know how to upgrade it). Also, I understand at a high level why Flakes are good, and I want to start using them, but I don\'t understand how they interact with NixOS modules, or when and how I should use them.\r\n\r\nI also don\'t understand how HomeManager and NixOS modules interact. (eg: when I run home-manager switch, how does that interact with nix-rebuild switch ?).','Fedora Silverblue, or maybe Arch. Or my good old faithfuls: Fedora Workstation or Ubuntu.','Y','','','','','','','Y','','','','NA','Flakes and the new `nix` CLI','I\'m so excited about what is possible with Nix, but I worry the learning curve is too steep for my blood. The whole project and community feels a bit like when I was back in the Haskell community which worries me: valuing elegant solutions over practical ones. I\'d love to see a Rust-community level appreciation of usability and simplicity. I think you all are moving in the right direction, but tough choices lie ahead (for example, to make Nix truly mainstream, I think something more drastic would need to be done with Nix the language, either creating a simpler subset for common usages, or empowering a javascript/typescript dialect/DSL, etc. While there have been popular mainstream new languages adopted (eg HashiCorp\'s HCL) they are SIGNIFICANTLY simpler and more approachable than Nix). Even after learning and then reading (though not writing much) Nix code, I still get quite confused all the time, there\'s just too many ways to do the same thing.\r\n\r\nKeep it up! '),(1515,NULL,NULL,'en','2003322092',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1516,NULL,NULL,'en','1871032978',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1517,'1980-01-01 00:00:00',5,'en','841498701','A5','A2','-oth-','Non-binary','Y','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I started with NixOS when I wanted to try out a new Linux distro on my personal laptop while I was a college student. I was really drawn to the idea of having a static configuration for my system rather than having to manage mutable state. I found it especially appealing for managing application and tooling versions. Once I got into NixOS, I started using nix to get project-local development environments and that\'s when it really sunk in. I could have isolated environments for each of my projects with different toolsets and package versions, and now I use a flake.nix for all projects on Linux or MacOS.','Y','','','','','','Y','Y','','','','','','','Y','Y','','Y','','Project-local development environments','Declarative system configuration and infrastructure deployment','Reproducible package builds','The one major thing missing from Nix for me is locking specific package versions in a flake without having to lock a whole package channel. I.e. lock yarn v2 and node v14 instead of a specific nixpkgs commit.\r\n\r\nI use Rust and Cargo, which locks all dependency versions separately, so I can ask for package X at version 1 and package Y at version 2.2. With Nix, all I can do is lock a specific commit of nixpkgs which has a certain set of package versions. If I want to use an older version of just one package, I have to add another flake input for an older commit of nixpkgs. If you need to lock more than a few specific versions, thos gets unwieldy real quick.','Guix is the closest replacement but Guix System lacking non-free software and Guix not working on MacOS are dealbreakera. Docker sometimes. I would lean on npm plus direnv more often. Mostly I would just have global package installations because there isn\'t a great replacement.','','','','Y','Y','','','','','','Y','','','','yarn2nix: in nixpkgs\r\nNaersk (build rust crates)','Y','Y','','','N','Locally testing changes to nixpkgs to ensure quality commits. I can make and test an overlay on my NixOS machine but the process for testing changes to nixpkgs hasn\'t become clear to me.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I mentioned in my answer about Nix. I was drawn to NixOS because of declarative package management when looking for a new distro on my personal laptop which already ran Linux for a long time. Now it\'s the only distro that I\'ll use.','Y','','','Y','','','','Declarative package management with locked versions','Reproducible server deployments','Simple system configuration using options that abstract over files/services/packages','Easier ways to override functionality of system configuration modules. I would probably leverage functions more for system configurafion than settings as we currently do. It seems like Guix System gets a lot of mileage out of using functions for configuration over settings modules.','For my personal machine, I might use Fedora or Arch linux instead of NixOS. ','Y','','','','','','Terraform and terranix','','','','Sway, bspwm','Nix-flake-utils, nix-darwin, fenix, nix package versions: https://lazamar.co.uk/nix-versions/','NUR','Nix is awesome!'),(1518,NULL,1,'en','1991817140','A1','A5','male','','','Y','Y','','Y','Y','','','Y','Y','','','Y','Y','','Y','Y','','','','','Y','Y','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1519,'1980-01-01 00:00:00',5,'en','1202319951','A1','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Reproducible','','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','','','','','Debian','','','','Y','Y','','','','','','','','','','cabal2nix','Y','Y','','','N','i am noob','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','reproducible','Y','','','','','','','','','','','debian','Y','','','','','','','','','','xmonad, dwm','','','no'),(1520,'1980-01-01 00:00:00',5,'en','1390202902','A3','A4','-oth-','Non-binary','','','','','Y','','','','','Y','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','We adopted it at work. I liked it and adopted NixOS and nixpkgs for personal machines too.','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Software development project dependency mgmt (nixshell + direnv)','Building containers','Deterministic system configuration (NixOS)','Make flakes work like niv, where you can import your sources just about anywhere in your config, instead of having to load everything upfront in a 3k LoC flake.nix\r\n\r\nMake the nix store not duplicate data, so it\'s fast and low footprint when building ridiculously large projects (eg kubernetes resource definitions that power dhall)','Dockerfiles','','','','','Y','','','','','Y','','','','','Bundix','Y','','','','N','Knowing what sorts of contributions are welcome and get merged. I\'ve seen far too many dead prs on OSS projects to give me pause before contributing.','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','I was using nix-built containers at work. We needed a bastion machine for tunneling ssh. Seemed like a good first experience with NixOS. After that I moved our Jenkins servers in hetzner to NixOS. More recently I bought a desktop to run NixOS at home, and register as a remote builder on my MacBook, which I gave up ok bc it\'s too slow (remote building, that is).','Y','Y','Y','Y','','','','Declarative and deterministic system configuration','Booting into old configs','Easy upgrades and rollbacks','Remote building nix machine configs is super slow','Ubuntu','Y','','','','','','','','','','Sway','Niv\r\nNix-script','','Nix discourse is great. Everyone is super helpful.\r\nNix docs are kinda bad.\r\nNix pills don\'t work on macos.'),(1521,NULL,1,'en','1382559087','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','unemployed','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1522,NULL,2,'en','1948985681','A5','A2','fem','','','','','','','Y','Y','','Y','Y','','','','Y','','','Y','','','','','Y','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','On a trip, a friend pitched NixOS to me and won me over. I experimented with it a bit and discovered that it\'s what I\'ve been wishing I could use for a while.','','','','','','','Y','','','','','','','','Y','','','Y','','Reproducibility/isolation ','Dependency management','Cleanliness','For packages that aren\'t packaged for Nix, the documentation for making custom derivations SUCKS and the process is a pain. I would improve this, especially since it\'s necessary for NixOS users.','I primarily use Nix in the context of NixOS, so Ubuntu and apt-get.','','','','','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1523,'1980-01-01 00:00:00',5,'en','1222944200','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','all private infrastructure (at least 5 vms)','A2','I built something functioning \"like\" nixos using debian, lots of scripts and btrfs snapshots and someone saw that and recommended nixos to me. \r\nI have never had any free time since then.','','Y','','','Y','','Y','Y','Y','','','Y','','Y','Y','','','Y','','a linux distro that fulfills all my personal requirements for perfectionism','managing my personal services and infrastructure, eg. nextcloud, gitlab, podman containers, wireguard, grafana, etc.','managing machines in the local hackerspace','Nixos does abstract over state quite well, but it does not abstract over procedures. \r\nThere is no real way to describe how a certain state arises, other than using setup scripts, which are statically configured somewhere. \r\nIt would be nice to be able to describe procedures better, I.e. when I set up my nextcloud instance, it could either take it\'s data from backups somewhere, or it could be set up for the first time, in which case it would create an empty data directory and initialize backups on all targets. nix-ops kinda does that, but it got problems of it\'s own, especially the hard dependency on sqlite is a dealbreaker for me. I am using remote rebuilds atm.','Debian, lots of scripts (maybe ansible) and btrfs snapshots. \r\nI did that, it worked quite well. Simpler than nixos, which is both a blessing and a curse.\r\n\r\nEach script changes the system somehow. The first partitions disks, runs debootstrap and so on, the second runs in the chroot, installs packages, the desktopenvironment and whatnot, the third runs after the first reboot and rearranges desktop stuff using dbus and so on. \r\nAfter each a snapshot is made, so iterating development on the scripts only takes a rollback and a re-run of the changed script. \r\n\r\nThe advantage is that a normal linux user has little to no learning to do to immediately know what\'s going on. \r\nThe biggest disadvantage is that tools change from time to time, there are lots of other disadvantages, I am using nixos for a reason, but it can be a pain too. ','','','','Y','','remote nixos-rebuild','','','Y','Y','','','','drone.io','niv','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','oops, I kinda wrote that in the nix section','Y','Y','Y','','','Y','','oops, I kinda wrote that in the nix section','oops, I kinda wrote that in the nix section','oops, I kinda wrote that in the nix section','oops, I kinda wrote that in the nix section','oops, I kinda wrote that in the nix section','Y','','','','','Y','','Y','','','sway','niv','nix-ops , mandatory sqlite is a deal-breaker',''),(1524,'1980-01-01 00:00:00',5,'en','1889541271','A1','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted an easily reproducible system configuration to save me time setting up / migrating between machines','','Y','','','Y','','Y','','','Y','','','','','Y','Y','Y','Y','','Reproduceable, rollback-able machine configurations','Reproducable development environments','End-to-end server configuration','Better documentation, enduser-friendliness','Would probably fall back to \"normal\" linux configuration & packaging','','','','Y','Y','','','','','','Y','','','','pip2nix, cargo2nix, mach ','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','(see previous answer)','Y','','','Y','','','','(see previous answer)','(see previous answer)','(see previous answer)','','','Y','','','','','Y','','Y','','','','None','I used to use home-manager but stopped (some of the configurations did not work as intended, and I wanted to simplify my setup)\r\nI have tried setting up binary caches but none seemed to quite work as intended + cachix is too expensive','My less technical colleagues resent nixos/nix packaging quite a bit, increasing user friendliness / reducing friction would help quite a bit. Better documentation (possibly going as literate/commented as possible in nixpkgs expressions + examples would help)\r\n\r\nFlakes improves the situtation regarding speed but rebuilds can be quite surprising at times, so being clear as to why things rebuild could help)'),(1525,'1980-01-01 00:00:00',5,'en','495840770','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','undemployed','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I first discovered NixOS and Nix, first through a few Haskell projects\r\nthat use nix as a build tool. later Guix that I first tried. I found\r\nthat it lacked support and a few other features i wanted that NixOS\r\nprovided, so i switched to NixOS, and pretty much all of my projects\r\nuse nix to build and test.\r\n\r\nI am a flake user, home manager user and use nix to build emacs.\r\noverall I am a very happy nixos user and try to use nixos where ever I\r\ncan as I maintain all my system configurations in one git repo, there\r\nis no other tool that gives me all the things that nix and nixos gives\r\nme. I have done a lot with nix but I still experience many pain points\r\n(mostly with NixOS) most of which comes with the nature of the project\r\nsuch as:\r\n\r\n- service validation\r\n when a service configuration is misconfigured that could be caught\r\n at build time with some nix code but instead only caught by systemd\r\n when running the final unit. i do know however this is a very hard\r\n problem but it is one i have ran into with a few modules.\r\n\r\n- debugging nix expressions\r\n Often when i write incorrect nix expressions I find my self unable\r\n to get much out of tracing and other debug techniques, I could just\r\n be ignorant of better debug techniques for nix but often I find my\r\n self using the nix repl and good old trial and error or just groking\r\n code.\r\n\r\n- types and options\r\n Often when i want to use a feature I have not prevously, I resort to\r\n reading the source code of that module, I have got used to the\r\n process but it is not the most ergonomic, and was particuarlly\r\n difficult when learning nixos. I often see type errors that say\r\n \"wrong type\" but do not tell me what the passed type that would help\r\n for debugging (not sure if this is an easy fix or not).\r\n \r\nI have a decent working knowledge of NixOS internals after tinkering\r\nquite a bit and intend to send the project a few PR on many of these\r\nissues, as stated previously I like nix alot and reproducible builds\r\nfor both operating system configurations and binarys is probaby one of\r\nthe most import yet still not fully appricated by the wider community\r\nconcepts and generally recommend nix and nixos to people.\r\n','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','reproducibility ','caching','hydra','haskell like type system','operating system wise i would be using arch, and using mostly language specific packaging tools such as cabal, stack and cargo.','','','','Y','Y','','Y','','','','','','','','cabal2nix https://github.com/NixOS/cabal2nix\r\ncargo2nix https://github.com/cargo2nix/cargo2nix','','','','','N','Not got round to it but intend to.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','see nix story','Y','','Y','Y','','','','reproducibility ','declarative configuration of services','roll back','better error handling in service configurations and better detection of conflicting options.','arch ','Y','','','','','Y','','','','','Xmonad','Home manager \r\nemacs overlay\r\n','','great project keep up the good work.'),(1526,'1980-01-01 00:00:00',5,'en','1749246513','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Was on Gentoo. Portage went boom, so I started migrating my workstation to Nix around 2-3 years ago.','','Y','','Y','Y','','','','Y','','','','Workstation','','Y','','','Y','','Different versions of software provided by different channels or different commits of nixpkgs with flakes','nix shell','nix bundle','- Guix in nixpkgs, and some form of translation in between\r\n- Better editing experience. A strong feature of Guix is Guile in geiser with Emacs, but nix doesn\'t have anything similar. I\'ve never had success with rnix-lsp\r\n- A better language, but I\'m aware that\'s debatable lol\r\n\r\n','rpm-ostree for immutable package management','','','','Y','Y','','','','','','','','','','Used to use pip2nix but stopped when I learned how to package python packages','Y','Y','','','N','- Slightly overwhelmed by the size of the repo\r\n- Laziness to read the contributing guide\r\n- Not a huge fan of the language\r\n\r\nThat being said, I will do my best to contribute this year','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Gentoo borked, and I started using NixOS in a vm and saw that it\'s way more stable than portage. Slowly migrated my workstation (A T580 laptop) and never looked back','Y','','','','','','','declarative and reproducible config','Stable mixed with unstable software and kernel using flakes\r\n','','Add non-root containers','- (podman|docker)-compose for service deployment\r\n- MicroOS, Fedora Silverblue, CoreOS, and essentially ignition for configuring OS\r\n- Ansible and Terraform for declarative deployment','Y','','','','','Y','','','Y','','i3,XMonad,StumpWM, qtile, and sway','direnv, home-manager, and nix bundle','nixops, since ansible has worked better for me for non-nixos servers','Thank you for everything you\'ve done'),(1527,'1980-01-01 00:00:00',5,'en','191219831','A4','A1','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','','','iPadOS, iOS','N','N','A more user friendly approach',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1528,NULL,2,'en','1222224570','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was just distrohopping during summer and stumbled upon NixOS, started using it, had trouble understanding how it was working, but after having copy pasted a few config parts and grasped the basics I liked the ideas, after a few weeks of using it on spare laptop I installed it on my home server, worked like a charm, I use it ever since. Also I use the nix package manager on debian wsl. ','','','','Y','','','Y','','Y','','','','','','Y','','','Y','','declarative syntax','immutable system','huge amount of (up-to-date) packages','if you change the channels during a nixOS install (e.g nixos-unstable), keep the channels changed after reboot. Also better nixops documentation.','aptitude, I know guix exists but apt works and has good documentation and ressources.','','','','Y','','','','','','','','','','','','','','','','N','I haven\'t found a software i need to use that isn\'t on nixpkgs already',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1529,'1980-01-01 00:00:00',5,'en','2144175977','A1','A5','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Enticed by the functional programming package manager. One package manager to rule them all!','Y','Y','','','','','Y','Y','','','','','','Y','Y','','','','','','','','Statically-typed configuration/programming language','Debian and Docker','','Y','','Y','Y','','','','','','Y','','','','cabal2nix','Y','','','','Y',NULL,'N','Y',NULL,'Was not compatible with local NodeJS development. It was best to use Ubuntu for compatibility with others in my team.','When team is \"all in\" on Nix.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1530,'1980-01-01 00:00:00',5,'en','126273190','A1','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','Y',NULL,'nix language','6 month cycle\r\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'nix language','six month cycle',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','thanks for nix'),(1531,NULL,NULL,'en','1165104248',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1532,'1980-01-01 00:00:00',5,'en','1436729197','A1','A1','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','Y','','','','','Y','','','','','','','Y','','','','Y','','nix-env -iA','nixos-rebuild switch','nix search','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','','','','','Nothing can replace nixos now!','Y','','','','','','','Y','Y','','','','',''),(1533,NULL,1,'en','534862614','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1534,'1980-01-01 00:00:00',5,'en','968327855','A1','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','','','','Y','','Y','','Y','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','Y','','Y','','','','','','cabal2nix, tex2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','XMonad without DM','','',''),(1535,NULL,3,'en','1112964740','A1','A2','fem','','','','','','','','','','','Y','','','','','','','','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','Literally anything','A1','Got boring on managing butch of machines and servers, so I started to use Nix*','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','NixOS','The huge amount of packages provided by nixpkgs','A pure environment','Remove any legacy backward compatibility part from nix and nixpkgs, and do a total re-architect to nixpkgs.','Arch, and spin up a isolated development environment maybe.','','','Y','Y','Y','','Y','','','','Y','','','','None','Y','Y','Y','','N','All software I need is already here','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','As previous answer','Y','','Y','Y','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1536,'1980-01-01 00:00:00',5,'en','1560337176','A1','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','Reproducible','Simple to add new packages','I like functional language','','','','','','Y','Y','','Y','','','','Y','','','','https://github.com/cargo2nix/cargo2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','declarative config','generation switch','','','Arch Linux','Y','','','','','','','','Y','','','home-manager','',''),(1537,NULL,1,'en','1775431066','A1','A2','fem','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1538,'1980-01-01 00:00:00',5,'en','991908778','A1','A2','male','','','','','','','Y','Y','Y','','','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Once I tried NixOS out when my Arch broke. However, NixOS was quite novel to me and I could not connect to cache server in China. Later I tried it out again with properly set up proxy using module. That time I found NixOS fascinating and started to use Nix altogether.','','Y','','','','','Y','Y','','Y','','','','','Y','Y','','Y','','Reproducibility','Declarative','Rollback','I would remove all the obsolete UI for Nix (e.g. nix-build, nix-env). And I would like to have a complete rewrite in Rust and make Nix more consistent when it comes to string context and small issues.','Probably Guile or nothing','Y','','','Y','Y','','','','','','Y','','','','https://github.com/cargo2nix/cargo2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Same as my story on using Nix','Y','','','Y','','','','Reproducibility','Declarative','Rollback','I would like to have native secret management and an official deployment tool with easy introduction and bootstrap steps','ArchLinux','Y','','','Y','','','','Y','','','','home-manager','crate2nix. naersk','I hope Nix can be more consistent either in language itself or NixOS.'),(1539,'1980-01-01 00:00:00',5,'en','258800428','A1','A2','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','','','','','','Y','','Y','Y','Y','','Y','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','Y','Y','','Y','','','','','','','Y','','','Y','','','','','','','sway','','',''),(1540,NULL,NULL,'en','820061452',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1541,'1980-01-01 00:00:00',5,'en','1516594407','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Curiosity, then started loving it. But still hate some stuff like idk y but for me switching generations feels way longer maybe the hardware ig.','','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Declarative package management','Rollbacks','nix-shell','Add Pip support, switch things possible to dash shell, nothing to be removed.','Arch which I was previously using,','','','','','','','','','','','Y','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','','Y','','','','','','','','Add pip support, switch to dash shell for most things possible, nothing to be removed','Arch ','Y','','','','','','','','','','Dwm,awesome','Home-manager','Pypi2nix, machnix','Thank you for nix, and the wonderful work you all have put into it. ❤️'),(1542,NULL,NULL,'en','2005768662',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1543,NULL,0,'en','762237976','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1544,NULL,NULL,'en','259302956',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1545,NULL,1,'en','820367012','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1546,NULL,1,'en','1762344471','A2','A3','male','','','','','','','','Y','','','Y','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1547,NULL,NULL,'en','1211366422',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1548,NULL,1,'en','1418604843','A5','A3','fem','','Y','','','','','','','','','Y','','','','','','','','','','','','Y','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1549,'1980-01-01 00:00:00',5,'en','280746720','A2','A2','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Was hooked into it by a friend and loved it. Coincidentally, I then started working on a new project at work that also used Nix.','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducibility (declarative package management) - if my machine dies or a new team member joins, we\'re up and running in no time','Unified config files (no more .zshrc and editor plugin management)','Fulfilment of using bleeding-edge open source technology','Magically make it even easier to introduce Nix to newcomers. Also add home-manager by default.','I\'d look into Guix, but I don\'t know of a real alternative.','','','','','Y','','','','','','Y','','','','','Y','Y','','','N','Nothing, really. I\'d like to.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Introduced by a friend, supremely stable system is running ever since.','','','Y','','','','','Native integration of Nix works even better than on macOS','Stability','Reproducibility','Add home-manager.','Fedora Server','Y','','','','','','','Y','','','','','','Keep up the great work! I don\'t see a reason to ever run a machine without Nix anymore.'),(1550,'1980-01-01 00:00:00',5,'en','782676783','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was working on a C++ project with a lot of system dependencies. When a new developer joined the team, instead of forcing them to adopt the same OS, I simply added a default.nix file to the project, and asked them to install Nix. It worked like a charm, and was later even used to build the code on CI.','Y','Y','','Y','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','Reproducible builds, especially with pinning','Declarative developer environments','Cross compilation','A LSP server that actually works!\r\nAlso, nix build should show each parallel download/build/install on a separate line, just like npm and Docker do.','Fedora Workstation with containers for reproducible/transferrable environments','','','','Y','Y','','','','Y','','','','','','cabal2nix (https://github.com/NixOS/cabal2nix)\r\ncrate2nix (https://github.com/kolloch/crate2nix)','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','As I sometimes do devops, I used to maintain an increasingly sophisticated dotfiles repo that also had an installation script for quickly setting up another Linux distro. After learning about Nix, NixOS quickly became a natural evolution of those scripts and dotfiles.','Y','','Y','','','','','Reproducible','Declarative','Rollbacks','Better integrations with applications that don\'t build with Nix, e.g. Home Assistant','Fedora Workstation with containers for reproducible/transferrable envs','Y','','','','','Y','','Y','','','Sway','direnv','','Nix and NixOS are one of the most amazing things to have happened to the tech scene of late. Keep up the great work!'),(1551,'1980-01-01 00:00:00',5,'en','1060908554','A6','A3','-oth-','','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','I started using it for Haskell projects, and replacing homebrew.','Y','','','','','','Y','','','','','','','','Y','Y','','','','','','','Speed. I find nix can be a bit slow to build things.','','','','','','','','','','','','','','','','','','','','','N','','N','N','Probably when I upgrade my desktop again I will switch to nix. I do think Nix could improve security, some sort of sandboxing eg app armour. I know selinux is not supported which I think is unfortunate.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1552,NULL,1,'en','1506525080','A2','A3','male','','','Y','','','Y','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1553,'1980-01-01 00:00:00',5,'en','1878765266','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','First switched development environment from ad-hoc scripts and Makefiles to Nix (myEnvFun), than later all Linux systems (mostly Arch) to NixOS. Never looked back.','','','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','it\'s suitable to integrate/document all things computers I care','it\'s possible to define a domain-specific shell for any given task','code snippets can be easily shared','- make evaluation faster\r\n- make it a statically typed\r\n- make it a general purpose language, so it\'s not necessary to resort to ugly hacks when when using it for unanticipated things\r\n- give it proper deconstructing, e.g. but not limited to function arguments','Now that I\'m spoiled, I\'d try to reimplement it. But I\'d probably just use what I did before: shell :)','','','','Y','Y','','','','','Y','Y','','','buildbot','cabal2nix (https://github.com/NixOS/cabal2nix) on a regular basis. And I\'d try any other 2nix I happen find when packaging somehing.','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same as the Nix story above. Sorry I didn\'t distinguish it eariler, but for me Nix and NixOS go hand in hand, but I\'d rather live without NixOS that without Nix. Because the latter can build the former, and NixOS is not necessarily the best example of using Nix to build an OS (but definitely the best OS around at the moment) :)','Y','Y','Y','Y','','Y','','It\'s possible to define all aspects of a system in a quite consistent way.','It\'s possible to just use the interesting parts of NixOS and it allows to define missing or undesirable parts alongside.','','- make it evaluate faster\r\n- allow using config to define imports\r\n- make its modules more consistent and less opinionated\r\n- have more precise option types\r\n- make it evaluate faster!','Probably Arch. But Gentoo was also nice.','Y','','','','','','krops','','','','xmonad','krops. But frankly, it\'s basically just a convenient way to nixos-rebuild remotely with all my dirty worktrees and secrets :)','',''),(1554,'1980-01-01 00:00:00',5,'en','1734374924','A2','A3','-oth-','Nonbinary','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I joined a company that uses Nix a lot, so I wanted to learn. So far, I love it :-)','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Declarative system config/package management','Declarative environment management','Build system','Better documentation, better tutorials for beginners','Pacman, Arch','','','','','Y','','','','','','','','','','crate2nix\r\ncabal2nix','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','Config management','Ability to rollback system easily','','Better documentation, better tutorials for beginners','Arch','Y','','','','','','','Y','','','','','',''),(1555,'1980-01-01 00:00:00',5,'en','2074420098','A6','A3','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','N','N','I am trying to use NixOS but I run into technical difficulties.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I am trying to use NixOS but I run into technical difficulties.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1556,'1980-01-01 00:00:00',5,'en','1297880166','A1','A5','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Dave Anderson from Tailscale got me started after talking about it on his Twitter account!','Y','Y','','','','Synology','Y','','Y','','','Y','','','Y','Y','','Y','','Declarative Package Management','Package collection coverage','Simplicity of configuration','Make nix the language much less obscure, be better documented and have *way* better examples.','Something much more awful, probably Ubuntu.','','','','','','','','','Y','','','','','','','Y','','','Build references in Nixos/home-manager','N','Time and my own organisation.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','See above','Y','','Y','','','Y','','','','','I would improve Nixops out of site: document it properly and provide exhaustive examples.\r\n\r\nAlso improve the story of virtual machine deployment (eg: with libvirt) declaratively in NixOS. ','Ubuntu','Y','Y','','','','','','','','','','','Flakes','NixOS is awesome. Keep up the amazing work!'),(1557,NULL,NULL,'en','944293135',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1558,'1980-01-01 00:00:00',5,'en','736527068','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','I tried, but it\'s hard to understand where to start. I followed nix-pills which is really good, but can no longer be followed to completion without pinnning nixpkgs to a very old version which it doesn\'t explain.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1559,NULL,3,'en','1444564771','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1560,'1980-01-01 00:00:00',5,'en','285430335','A2','A5','male','','','','','','Y','Y','','','','','','','Y','','','Y','Y','','','','','','','','','','','Y','','','N','Y',NULL,'Learning curve of understanding the nix configuration language + lack of time to do so.','If I had time to understand the nix configuration language.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'The nix configuration language is a bit alien and not intuitive (and I can write Haskell quite fluently) and all it\'s various library functions are very time consuming to learn.','If I had time to learn the nix configuration language.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I really, really, like the idea of Nix. The idea of it is excellent; I just think the tooling, and experience, around it are difficult to resolve.'),(1561,NULL,NULL,'en','418718037',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1562,'1980-01-01 00:00:00',5,'en','784604438','A1','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I want to config my system in one place.','','','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','System configuration','Package management','Complition','Better Gnome config and dotfiles manager integration','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I want to config my system in one place','Y','','Y','','','','','System configration in one place','Roll back','Newest packages','Better Gnome config','Ubuntu','Y','','','','','','','Y','','','','No','Home manager',''),(1563,'1980-01-01 00:00:00',5,'en','2132498935','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Nix sucks but there is no other sensible alternative that implements Eelco\'s phd.','','Y','','','','','Y','','Y','','','','','','','Y','','Y','','','','','Change the language to something modern-looking (with static type system in place).','Guix or just rollback to using Arch Linux.','','','','Y','Y','','Y','','','','','','','','I hate them. ;)','Y','Y','','','N','Mess in nixpkgs, no standards (afaik).','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I really believe that ideas behind Eelco\'s phd are the future. I am still waiting for modern, rock solid implementation. NixOS isn\'t the one.','Y','','Y','','','','','Declarative way of defining software on my machines and its consequences','Flakes','','I would replace nix language. ;)','GuixSD or rollback to ArchLinux','Y','','','','','','','','','','i3/sway','','','Nevertheless, great job! I\'m looking forward to the successor to NixOS ;)'),(1564,NULL,1,'en','1847978941','A1','A4','male','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1565,NULL,1,'en','1962979689','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1566,'1980-01-01 00:00:00',5,'en','1393136487','A3','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Unemployed','','','','','','NixOS','N','Y',NULL,'I don\'t need it.','Being forced to use Mac/Windows WSL/other Linux distros.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was an Arch user, and was afraid of recovery. I had riced my system so much and it was a lot of trouble to replicate that in any new host. Despite using shell scripts, etc. One day my system broke. Then I\'ve got to try NixOS. Now I don\'t stand Arch.','Y','','Y','','','Y','','Sync of configuration/resources/environment at different hosts.','','','https://intj.com.br/nix-version-management-problem.html','Artix','Y','','','','','','Ansible','','','','i3','home-manager','',''),(1567,'1980-01-01 00:00:00',5,'en','1851480761','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I like to configure stuff once.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','','Y','','Recipe managed OS','versioned','closer distance from source code','1. Make Nix more readable, more syntactic sugar\r\n2. Improve documentation','Void, Devuan, Debian','','','','','','','','','Y','','Y','','','','Node, Python, Crystal, Go or Ruby I\'ll look how I get my project working a fast as possible','Y','','Y','','N','I must learn more. I contribute to home-manager and NUR.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I first got disappointed in macOS. Too many updates and new OS versions are mainly too sell more apple products. I had a small Linux Desktop tour. Starting with Arch, Artix, Void, and finally NixOS as the promise of configuring an OS by code is what I really want.','Y','','Y','','','','','configuration by code/recipe','versioned','overrideable packages','Replace Nix with a language that looks like Ruby but still has the same functional features.\r\nReplace systemd with runit.','Devuan or Debian','Y','','','','','','','Y','','','','home manager, nur','awesomewm',''),(1568,NULL,2,'en','59371055','A2','A3','male','','','','','','','Y','','','Y','','','','','Y','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1569,'1980-01-01 00:00:00',5,'en','1903280477','A2','A5','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I had tried a lot of distros over the years and it always frustrated me that I couldn\'t install experimental software without risking the stability of the whole OS. I remember I was running Debian stable and wanted to install a video editor and the first step in the instructions was \"upgrade to Debian testing\", that was when I first installed Nix.','','','','','','','Y','','Y','Y','','Y','','Y','Y','Y','','Y','','Package isolation (escape from \"DLL/rpm hell\")','Declarative environment configuration','Rollbacks','Greater adoption','I\'d give up on computer science altogether','','','','','','','','','','','','','','','','','','Y','','N','I used to, but I don\'t find the time any more. Hopefully, I will again in the future.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','After using Nix on Debian for a while, with great success, I installed NixOS and continued to do my daily work (web development) in the old Debian system using chroot. I wanted the declarative system configuration and rollbacks and was pleasantly surprised with how easy it was to set up and to maintain.','Y','','Y','Y','','Y','','Package isolation','Declarative configuration','Rollbacks','Greater adoption','Guix','Y','','','','','','','','Y','','','','','I have always found the community to be helpful, patient, thoughtful and responsive. Thank you for doing this survey to make it even better!'),(1570,'1980-01-01 00:00:00',5,'en','477367659','A2','A3','male','','','','','','','','','Y','','Y','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','Found it on DitroWatch, fell in love on the first sight.','','Y','','','','','Y','','Y','Y','Y','Y','','','Y','','','Y','','Reproducability','Stability','Flakes','','Guix','','','','Y','Y','','','','','','','','','','','','Y','','','N','Time','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','Saw it on DistroWatch, fell in love on the first sight.','Y','','Y','Y','','Y','','Declarative configuration','Stability','Flakes','','GuixSD','Y','','','','','','','Y','','','EXWM','','','Thank you and keep up the great work <3'),(1571,'1980-01-01 00:00:00',5,'en','851470878','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Someone told me about their configuration.nix that installs/specifies an entire Linux system for them!','','Y','','','','','Y','Y','','','','','','','Y','','','Y','','Reproducability','Availability of historical packages (just checkout an older nixpkgs)','','Documentation that isn\'t one gigantic file','probably something like Ansible/Chef/...','','','','Y','','','Y','','Y','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','Unified configuration file','Generations & easy rollback','','','openSUSE or Debian','Y','','','','','','','','Y','','','nixpkgs-review','',''),(1572,'1980-01-01 00:00:00',5,'en','1363542658','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Reproducible OS configuration.','','','','','','','Y','','','','','','','','Y','Y','','Y','','Reproducible configuration','Isolated package environments','','Easy way to see package version changes during Flake update.','Guix','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Great Nix integration.','Y','','','','','','','Great Nix integration','','','','Arch linux','Y','','','','','','','','','','I3','','','Thank you for the great work!'),(1573,NULL,1,'en','333872869','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1574,'1980-01-01 00:00:00',5,'en','63713655','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','N','Y',NULL,'The configuration was interesting, but the process of updating packages was such that I never knew if I have the latest version of all available packages.','The command to rebuild the system needs to inform better, more transparently about which applications are also being updated. Also, nix could have a command to check if there\'s any system and application updates available at any time, without the need to just guess.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','It has a lot of packages in its repositories, which\'s appreciated and has a robust, interesting system configuration language. I wanted to try it, but thought the installation process is complicated at first, fortunately the official NixOS manual has improved a lot in this regard, so I gave it a try last summer.','','','','','','','','nice system configuration language','uses systemd and all its advantages','has a lot of packages in the default repos','Make it easier to install non-free packages, the declaration in the config file allow=unfree does not always work reliably across the system as a whole.','Arch Linux.','Y','','','','','','','Y','','','','','','On the whole, NixOS is an exciting project!'),(1575,'1980-01-01 00:00:00',5,'en','1478896443','A2','A5','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','Y','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Over the years I have come to experience that imperative production of artefacts using computers (be it documents, engineering workflows, devops workflows) is inefficient and repetitive. After leaving my more or less \"traditional\" job as a senior project manager in an aerospace engineering company to start a startup, the first order of business was getting rid of office software and replacing it with declarative workflows (i.e. generate business documents from `Markdown` via `pandoc`/`pandocomatic`/`LaTEX` to `PDF`). This constitutes a declarative documentation workflow resulting in trivial updating of content without spending time to fix the end result (layout, appearance).\r\n\r\n`nixos` is to system administration what the above is to business processes. Managing multiple machines with a highly customised configuration (especially in regard to necessary usability tweaks when using Linux in many different roles) is not feasible if these tweaks have to be remembered over time and across installs. The only good solution for this is declarative configuration, which surely offsets in the long term the very steep learning curve of nix.','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','','','Y','','declarative configuration','Possibility to abstract system configuration of multiple machines using functional categories and layered requirements (by including differing/specific functionalities via different `nix` files in the configuration.','dev env definition (`nix-shell`)','Clean up documentation; add documentation with more usable abstractions pertaining to `flakes`, especially detailing multi-user/multi-machine flake usage with a more sensible split in respective flakes.','','','','','Y','Y','','','','Y','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','See \"Nix\" story','Y','Y','Y','Y','','','','see \"nix\"','see \"nix\"','see \"nix\"','see \"nix\"','GUIX?','Y','','','','','','ansible','','','','instantWM','`SimpleNixMailServer`','`nixcloud`','Love the community and the patience/presence of the \"Great Contributors\"'),(1576,NULL,NULL,'en','1901209720',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1577,NULL,2,'en','713160640','A2','A2','male','','','','','','','','','','','Y','Y','Y','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','The reproducible, declarative and reliable package management interested me enough to try and install NixOS on my machine.\r\n','','','','','','','Y','','','','','','','','Y','','','Y','','Reproducibility','Declarative configuration','Source-based packages with binary caches','- Add better / more documentation to make it easier for newer users to get into Nix.\r\n- Make Nix language friendlier (very hard to digest at times).','Gentoo, Arch or Void Linux','','','','Y','Y','','','','Y','Y','Y','','','','node2nix (https://github.com/svanderburg/node2nix)','','Y','','','N','Not enough time currently.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1578,'1980-01-01 00:00:00',5,'en','990514087','A2','A2','male','','','','','','','','','','Y','','','Y','','','','','Y','','','','','Y','','','Y','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','Everything. Resistance is futile.','A3','Through NixOS','Y','Y','','','','Android','Y','','Y','','Y','','','','Y','Y','','Y','Android images','Declarative','Abstractable','Pure','More and/or paid Nixpkgs maintainers.','Guix ;))))','','','','Y','','','','','','','','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Found out about it through talks on YouTube I believe, tried it in a VM and the rest is history.','Y','','Y','','','','','Declarative','Abtractable','Self-documenting configuration options','Remove Cruft, add maintainers.','Guix or Arch','Y','','','','','','','','','','sway','Robotnix','','You\'re awesome.'),(1579,'1980-01-01 00:00:00',5,'en','71403976','A3','A4','male','','','','','','','Y','','','','Y','','','','','','Y','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','People from the company I worked on showed me Nix and since then I\'ve been using it','','Y','','','','','Y','','','','','','','','Y','','','Y','','Have my whole system under version control using NixOS','A very good amount of packages ported to the system','','Nix should be easier, I still don\'t know exactly how to deal with derivations','Arch Linux, or probably GUIX','','','','','','','','','','','','','','','','Y','','','','N','I don\'t understand completely how to code derivations, it\'s hard to me','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','I knew NixOS together with Nix','Y','','','','','','','','','','','','Y','','','','','','','Y','','','i3','','',''),(1581,'1980-01-01 00:00:00',5,'en','392926109','A5','','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','N','Y',NULL,'incompatibility with and 2010 macbook and sierra os','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1582,'1980-01-01 00:00:00',5,'en','1192914099','A5','A3','male','','','','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I bricked the audio on an Ubuntu machine, and I started looking for distributions with cleaner rollbacks.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Project-specific shells with nix develop & consistent environment between my workstation and CI','Declarative package management, versioning the entire system in a git repo, consistent setup between multiple home machines','Nix gives me the confidence to mess with stuff (override kernel parameters, I have a patch to gnome-terminal that removes one of the buttons I find annoying, etc) without fear of messing up my system or creating a maintenance hassle.','Flake everything.\r\nGet more users.','Sadness','','','','Y','Y','','','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I started with Nix and NixOS at the same time, so see previous answer.','Y','Y','Y','Y','','','','Same as before, sorry I answered the other question for both Nix and NixOS','','','','','','','','','','','','Y','','','','nixpkgs-review','',''),(1583,NULL,NULL,'en','1950182665',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1584,'1980-01-01 00:00:00',5,'en','1102600431','A2','A4','male','','','','','Y','','Y','Y','','Y','Y','Y','Y','','','Y','','Y','','','Y','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','In 2020 I joined a company using nix for development and deploy, my team had some nixos users in it and a few nix contributors. While learning it, I was fascinated by the philosophy, so I switched to NixOS and happily used it since!','','Y','','','Y','','Y','','','','','','','Y','Y','Y','Y','','','development shell','reproducible builds and environments using flakes','many packages','I\'d make flakes a first class citizen and update the ecosystem to use them consistently - starting from the documentation, which IMHO is still a weak point of the entire ecosystem - maybe making the NixOS weekly newsletter something active and useful like This Week In Rust. So, after improving the documentation with my magic wand, I\'d also make nickel a first class citizen and make it work with nix tools out of the box.','dnf and podman','','','','','Y','','','','','','','','','','poetry2nix','Y','Y','','','N','A general fear of people, I guess. Also I don\'t often write packages so my nix-fu is not great and I\'m unsure on how things shall be approached.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same of using nix: I started working in a company using nix, had cool-leagues using nix and nixos, dug into it, liked it, adopted it.','Y','','','','','','','unified configuration in nixos','enough packages for my development needs','if an update is broken I can easily rollback','I\'d improve the nixos documentation first, including info about using flakes with nixos. That\'s basically it, I\'m generally good with NixOS.','Fedora and podman.','Y','','','','','','','Y','','','sway, i3','','',''),(1585,'1980-01-01 00:00:00',5,'en','1258107325','A2','A4','male','','Y','','','','','Y','','Y','','Y','','Y','','','','','Y','','','Y','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I wanted to install Stratego/XT for my uni coursework, and Nix was the best way to install it and all the libraries it depended upon. I didn\'t use it after that for ~7 years, but then I happened upon the NixOS table at CCC, developed an interest, and finally switched over all of my systems between 2018 and 2020.','','Y','','Y','','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','Declarative specification of dependencies','Repeatable builds (due to the hermetic build environment)','Convenience of temporarily installing a package to test it out','The only thing I can think of adding is much better documentation for flakes','I\'d keep muddling through with Debian','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I got frustrated migrating an old server to new hardware; I hadn\'t documented the system well, and it had organically grown over ~15 years. My wife had tried NixOS and was unsatisfied by it, but her experience convinced me that it was one of the first truly groundbreaking developments in system construction in the last two decades, and so I gave it a try for the replacement server. I was convinced of the benefits, but it did take a while to migrate my other machines because of the steep setup cost and learning curve.','Y','','Y','Y','','','','Declarative config forces me to document the configuration','Automated management of patched versions of source code','Easy rollbacks if a configuration change doesn\'t work.','Better compatibility with binaries from other systems (e.g., Da Vinci Resolve is *very* difficult to package for Nix)','Debian, most likely','Y','','','','','','','','','','i3','home-manager','Niv feels like too much work for the benefit',''),(1586,NULL,NULL,'en','861410460',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1587,NULL,1,'en','1100447939','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1588,NULL,NULL,'en','1443227957',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1589,NULL,2,'en','1589604550','A2','A4','male','','','','','','','Y','','Y','Y','Y','','','Y','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','For better configuration control (NixOS), and for dev \"standardized\" system.','','Y','','','','','Y','','Y','Y','','Y','','','Y','Y','','Y','','More central config ','Declarative \"language\"','Almost \"totally\" reproductively dev/production environment.','Add a better workflow/manual for flake\'s, because right now, it\'s difficult to have a understanding of the right/optimal way to use.\r\nOther thing is to try to Guix a service, just like in Guix exist a nix service.','Actually, I use Guix and comparing bought tools, Guix being on top of scheme language, is very pleasant, much more than Nix DSL.\r\nThe fact that in Nix, shell scripting is almost a necessary imposing, makes Nix a less pleasant tool.','','','','Y','Y','','Y','','','','','','','','','Y','Y','','','N','Time... ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1590,'1980-01-01 00:00:00',5,'en','396155850','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','','Y','','','','','','','','','','haskell2nix\r\ncomposer2nix\r\n','','','','','N','New to the system','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Mention from a DevOps colleage','Y','','','','','','','file-based config','reproducible setup','rollbacks','make home-manager more thightly integrated into NixOS, mantained with the help of the NixOS team','','Y','','','','','','','Y','','','XMonad','','',''),(1591,'1980-01-01 00:00:00',5,'en','343808225','A2','','male','','Y','','Y','','Y','Y','','','Y','Y','','','Y','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Because of rollback system and the configuration ability','','','','','','','Y','','','','','','','Y','Y','','','Y','','Declarative system or server configuration/management (e.g. NixOS)\r\n','Declarative environment management (e.g. nix-shell, nix-dev)','','Easier package building, easier syntax, to steep learning curve','fedora silverblue or gnuix','','','','','','','','','','','','','','','','Y','','','','N','Not enough knowledge','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Riliability','Y','','','','','','','','','','','gnuix, Fedora Silverblue','Y','','','','','','','','','','i3, sway','','',''),(1592,'1980-01-01 00:00:00',5,'en','98290745','A5','A3','male','','','','Y','','Y','Y','Y','','','Y','','','','','','Y','Y','','Y','','Y','','','','Y','Y','','Y','','','N','Y',NULL,'- Docs hard to use (concepts presented out of order; too many implementation details before foundational ideas; lack of clear definitions of terms of art)\r\n- Confusing interface (some things only possible with Flakes, some things only possible with old-style interface; little coherence between commands/commands do not seem to compose in a predictable way)\r\n- Poor ergonomics (some common commands very slow; some common workflows difficult or unclear how to accomplish best [e.g. updating local packages])\r\n- Unclear direction on the above (e.g. unclear what the endgame is for Flakes; unclear in general how well Nix is meant to support the local development use case and how it should work)','I can put up with things being broken or unfinished, but the dealbreaker was the lack of a clear future direction. I don\'t want to invest in learning about and working with something if I have no idea whether my pain points will _ever_ be addressed. It seems as though there is acknowledgment in the community that these questions need to be answered, but no process for actually doing so—there is an RFC process, but it seems poorly integrated into the day-to-day of the project\'s development. I think Nix needs a proper product manager to take on this work—my impression is that the current leadership lacks the skills and/or motivation to handle this aspect.\r\n\r\nI\'d be very excited to start using Nix again (and even contribute) if I could see a proper roadmap and vision, less focused on the timeline and sequencing than on the type of experience Nix is trying to provide to each audience.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Greater stability and a better experience with Nix. I want to spend as little time as possible configuring Linux machines so anything guaranteed to involve tinkering is a nonstarter for me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N/A (I don\'t use Nix regularly)','Home Manager (stopped for the same reason as the rest of Nix)','Nix is the most exciting idea I\'ve seen in software development in the last 10 years, narrowly beating out the LSP. I really want to see this project succeed. I very much hope the team can push past the governance and product management challenges to keep delivering on the promise of this extremely powerful concept.\r\n\r\nOne thought: It feels like the team is split between wanting to double down on the work that has already happened (preserving the existing Nixlang, expressing skepticism about Flakes, etc.) and wanting to push forward with the right thing even if it means throwing away past work. Personally, I think the latter is necessary at this point. The work that has already been accomplished is amazing, and that work was worth it to demonstrate the validity of the core idea. But I think it might be time to throw it away and start again, or at least to be willing to do so to achieve conceptual consistency and UX coherence in the final product. This is always the hardest thing to do with a great prototype but a necessary thing nonetheless. I would hate to see Nix forever held back from its full potential because of an understandable but irrational attachment to the progress so far.'),(1593,'1980-01-01 00:00:00',5,'en','448965465','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I used Arch Linux for my private laptop for some years, and really began to love using linux. But from time to time after updating the system, it didn\'t boot anymore, some software didn\'t work anymore or a software project didn\'t build anymore.\r\n\r\nWhen I finally got a job where I could use Linux at, I decided to give NixOS a shot, as I wanted the system to be as stable as possible and i couldn\'t risk it suddenly not booting anymore. After a bit of a hard time at the start, it wad fascinating enough to keep me going and now I\'m really loving it. Because of this, i started to use nix shell for all our projects and to get people on board.','Y','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','','Y','Y','','Reproducibility','Atomicity','Declarativity','Windows support and a nice typesystem like the one from typescript','There\'s no alternative I know of. I\'d cry, I guess.','','','','','Y','','','','','','','','','bitbucket','Npmlock2nix','Y','Y','','','N','I don\'t have enough spare time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','See story about nix usage.','Y','','Y','Y','','Y','','Declarativity','Atomicity & Stability','Rollbackability','Make using non-nixified software easier and hasslefree','Back to Arch, I guess, but with home-manager.','Y','','','','','','','Y','','','','Direnv\r\nAndroid envs','Kubenix\r\nArion','I think the biggest problem right now is the lacking windows support, which is why it cannot reach widespread adoption.\r\n\r\nI thought about suggesting to the node community, that they should use some kind of nix file to define native dependencies, but then realized that they still had to provide a fallback for windows, which is sad.'),(1594,'1980-01-01 00:00:00',5,'en','2004329974','A5','A5','male','','','','','','','Y','','','','Y','','','','','','Y','','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','I tried using it to set up home lab servers. I switched completely, and am introducing at work now.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','Reproducible system configurations','Fast deployments','Dependency management','Reliance on bash','Probably a container oriented distribution','','','','','','','','','','','','','','Drone :(','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','Reliance on bash','','','','Y','','Y','','','','','','','Niv, sops-nix','Hydra',''),(1595,NULL,1,'en','1801280743','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1596,NULL,1,'en','277177191','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was fed up with constant distro hopping and having to re-install and re-configure everything from scratch. I wanted a git repo that I could apply everything from, to manage my multiple home machines, and I wanted it to work every single time','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1597,NULL,1,'en','227989864','A1','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1598,'1980-01-01 00:00:00',5,'en','1159220321','A5','A4','male','','Y','','','Y','','','','','','','','','','','Y','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I got tired of the ever-changing issues with homebrew taps, and wanted to have a consistent method between Mac and Linux.','Y','Y','','Y','','','Y','','Y','','','','','','Y','Y','','Y','','Mac/Linux cross-platform implementation','Wide range of software availability','Reproducibility','Better mac support','Homebrew + Debian','','','','Y','Y','','Y','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Once I started using nix-darwin, I wanted to have the same idea on Linux, then systemwide. I also have it running as a QEMU image for local development/testing.','Y','','Y','','','','','System-wide integration','','','','Silverblue','Y','','','','','','','Y','','','','nix-darwin','','Please, please, please redouble efforts to maintain the capabilities of darwin. My interest in a niche ad-hoc Linux package system distribution is DRAMATICALLY lower if none of those lessons pass over to Mac as well. Right now, having things work on darwin + linux is my biggest time saver. Updating a package for mac + linux on nix isn\'t THAT much harder than either 1) doing the same for homebrew, or 2) trying to deal with a linux packaging system (in fact, it\'s way easier than, say, packaging upstream to debian). Deprioritizing mac would be, I think, a serious blow to the chances for nix to gain further mainstream uptake, and would probably cause me to focus my contributions and efforts elsewhere.'),(1599,'1980-01-01 00:00:00',5,'en','55510623','A5','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(1600,'1980-01-01 00:00:00',5,'en','528693990','A5','A3','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I saw a recorded Nix talk online.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','Declarative system configuration (for fleet management as well as home desktop)','Consistent development shell/environment','','1. Nicer language syntax\r\n2. Much better documentation, especially curated learning path','Nothing. Nix solves important problems not addressed by other tools. Closest thing would be Docker/Podman.','','','','Y','Y','','','','','','','','','Concourse','https://github.com/cargo2nix/cargo2nix','','Y','','','N','I\'m still a beginner and Nix internals seem like magic to me. I desperately need beginner/intermediate learning material.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I started with Terraform to manage my cloud infrastructure. Moved to Pulumi for much better UX. Eventually I decided to move off of public cloud for cost reasons and I needed a simple and declarative provisioning system.','Y','Y','','Y','','','','','','','','','Y','','','Y','','','','Y','','','','','NixOps. The documentation is very outdated and it\'s hard to make simple deployments work.',''),(1601,'1980-01-01 00:00:00',5,'en','350364440','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I was already using NixOS, so using Nix itself was inevitable','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','Building my website using a custom static site generator written in nix','Declarative system configuration - I can declare exactly how I want all of my computers (and user environments) should be like using a single nix flake.','Build system / package generator - I can define reproducible build instructions for any code / project.','Development environments - I can define development environments which get automatically loaded into my shell using direnv','I would add better error messages (no more infinite recursion at undefined location)\r\nI would try to add some sort of improved type checking, like for example a way to enforce sets having a particular field.\r\nI would add support for querying home-manager options in search.nixos.org\r\n','Realistically I wouldn\'t use any alternatives, because there are no real direct alternatives (okay, there are projects like guix and terraform, but that\'s not something I would just use)','','','','Y','Y','','','','','','','','','','npmlock2nix - https://github.com/nix-community/npmlock2nix','','Y','','Custom packages which are added to the pkgs set using callPackage','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I liked the idea of gathering your entire computer configuration into a single file using NixOS, and then things just snowballed. Now I have NixOS on all my computers and I exclusively use nix for everything','Y','','Y','','','','','Rollbacks - If something breaks I can always just roll back to when it worked','Centralized and abstracted configuration management - I can manage the configuration for all my computers in one place, and I can abstract common patterns between them','\"I don\'t care to understand how this program works, as long as I understand the NixOS module\"','I would revise the module system to allow running multiple instances of the same service (using different systemd service names, ofc)\r\nI would add other backends for init systems than systemd. Since NixOS is great for abstraction, it shouldn\'t be too difficult to create a service interface which can be ported to any init / service system.\r\nI would add official support for secure boot\r\nI would add module support for more boot loaders (rEFInd, EFI-stub)','Arch / Artix, Gentoo, Void or Alpine, probably. But none are actually direct alternatives','Y','','','','','Y','','','','','sway','home-manager\r\nagenix','styx - I created my own static site generator in nix instead\r\ncargo2nix - Now I use the buildRustPackage instead\r\ndeploy-rs - I created a custom shell script instead','Nix is taking over my life and I have an urge to package everything I can into a nix flake.\r\nThank you :)'),(1602,'1980-01-01 00:00:00',5,'en','1395826092','A2','A2','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','NixOS','A2','Heard about it from a friend (97nomad), the concept sounded intersting to me, jumped right into NixOS when I changed my PC','','','','','','','Y','','','','','','home OS','','Y','','','Y','','nix shell + direnv','nix shell','flakes','Improve documentation on the internal structure and default library\r\nInclude flakes by default\r\nShip with a bunch of templates for using Nix for programming','Docker as a source of ephemeral software, default package managers','','Y','','Y','Y','','','','','','','','','','','Y','','','','N','Most of the packages are there already, and the ones that aren\'t I find easier to request than to package by myself. Basically: it\'s too dawning of a task for me :( I\'d love to help however I can, though','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','home OS','A2','Heard about it from a friend (97nomad), got excited about it, jumped right into NixOS when I switched my PC','Y','','','','','','daily OS','nix shell + direnv','nix shell','declarative configuration of everything in one place','Include Flakes, Home Manager, Git, Direnv and Flake Utils by default and treat them as part of NixOS. Please! Or at least point towards them in the official documentation. It took me weeks to discover all of it by myself\r\nWrite a cohesive \"Getting started\" guide, which should work a user through setting up NixOS for daily usage, including advanced concepts like using default functions, making overlays, writing modules with options. The above tooling should be used as well!\r\nShip with a default template for NixOS systems. Pretty please! I spent 7 months figuring out how best to structure by config files and I\'m nowhere close to it. And I\'m no software engineer, too! Good default architecture would help a lot\r\nA bit outside of the scope for this survey, but Nix Gui projects sounds like a game changer. Would love to manage the whole OS declaratively from the GUI: https://github.com/nix-gui/nix-gui','Arch Linux, probably','Y','','','','','','','','','','Sway','Home Manager (absolutely essential): https://github.com/nix-community/home-manager\r\nFlake Utils: https://github.com/numtide/flake-utils\r\nnix-direnv: https://github.com/nix-community/nix-direnv\r\nneovim-nightly-overlay (though, I suck at ricing neovim lol): https://github.com/nix-community/neovim-nightly-overlay\r\nrnix-lsp: https://github.com/nix-community/rnix-lsp\r\nnixpkgs-fmt: https://github.com/nix-community/nixpkgs-fmt\r\nstatix: https://github.com/nerdypepper/statix\r\nnix-colors: https://github.com/Misterio77/nix-colors','Impermanence (going to use it, haven\'t figured everything out yet): https://github.com/nix-community/impermanence\r\nsops-nix (going to use it, but it\'s hard to figure out): https://github.com/Mic92/sops-nix\r\nFlakes Utils Plus (the API and the UX is amazing, but not all features were supported): https://github.com/gytis-ivaskevicius/flake-utils-plus','Thanks for both Nix and NixOS! The community is great, the concepts are beyond solid, and the efforts are paying off. More and more people are joining Nix ecosystem, because it really is the future. I just wish it was a bit easier to join for the less advanced users like me :) I\'m very excited about the future, yay Nix!'),(1603,NULL,NULL,'en','1133371228',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1604,'1980-01-01 00:00:00',5,'en','1775791526','A5','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I got sick of systems that are \"incorrect.\" Nix got something right that nothing else did (save for Guix).','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','','','','FIX THE UX.\r\n\r\nThe following is not a flamepost. I know that it is easy to dismiss strongly-worded criticism as trolling, but I love Nix and NixOS, and in many ways they\'ve changed my computing experience for the better.\r\n\r\nNix has the absolute highest ratio of good-idea-ness to usability of any project I have *ever seen*. It is so unintuitive, on so many levels, that I can hardly believe I\'m still using it. But it\'s such a fundamentally \"correct\" idea that I still am.\r\n\r\nThere\'s a variation on \"well, it works on my machine\" that people always trot out here: \"well, *I\'m* smart enough to figure it out, and if you\'re not...,\" or \"well, see, there\'s this thing called functional programming...\" This is bogus. You *must* take this concern from the community seriously. I hate to play this card--it feels like really poor taste--but I\'m *literally* a PL researcher in a top-3 CS department, and I am baffled by nix tooling, best practices, jargon, and yes--I\'m willing to say it--syntax. That\'s before even getting to nixpkgs\' inscrutable idioms.\r\n\r\n* All the command-line tools seem to have multiple ways of doing everything. The flags and subcommands seem inconsistent. What\'s the difference between `nix develop` and `nix-shell`? How do you find out, StackOverflow? Some of the official tools (e.g. nixops) fail without real error messages, but with massive Python stack traces.\r\n\r\n* There\'s almost no documentation of how anything in nixpkgs actually works. How do you use `cargoSetupHook` correctly? What does it *do*? Good luck figuring it out--you\'ll have to trawl through four other packages, copy-and-paste code, and tinker until your project builds.\r\n\r\n* So many surface-level things seem different-for-the-sake-of-different: \"Why are maps called sets?\". \"Why are lists space-delimited?\" & co. This stuff makes the already high barriers to entry needlessly higher.\r\n\r\nThe thing is, you could say that these are all superficial non-issues, and if you really understand this system they\'re not a problem. But it\'s not enough to have a good idea or a big repository; execution matters a *lot*. Someone else will come along and get it right.\r\n\r\nSometimes with open-source projects, this sort of criticism brings out the old, \"well how many pull requests do have *you* submitted, ******?\" But that\'s not the point. I know it\'s easier to criticise something than to build something. But I sincerely hope that the maintainers consider that addressing the deep usability issues may be more important than adding ever more packages.\r\n\r\nI sincerely hope Nix\'s big idea wins, but I don\'t know how much longer I can keep using Nix.','','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','Y','Y','','','','','','','I\'ve already typed more than enough about Nix, but I\'d have similar things to say here.','','Y','Y','','','','','','','','','swaywm','','',''),(1605,NULL,NULL,'en','658445080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1606,NULL,3,'en','2116597325','A5','A1','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','N','Unbreakable packages, HUGE repo, novelty.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','HUGE repo, unbreakable packages, novelty.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1607,'1980-01-01 00:00:00',5,'en','448822652','A1','A3','male','','Y','','','','','Y','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I saw the news about NixOS on Hacks New many times. So I want to give it a try.','','Y','','','','','Y','','','','','','','','','','','Y','','Declarative system','Community-driven package management','','Add detailed documentation for nixpkgs.\r\nAdd a debugger for nix expression.','Ubuntu desktop','','','','','','','','','','','','','','','','','','','','N','Nix expression in nixpkgs is too hard.\r\nI spend tons of time understanding the variables and lib functions in nixpkgs.\r\nAs a result, I got less time and was exhausted to create my own packages.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I saw NixOS on hackers news many times.','Y','','','','','','','Declarative system','Community-driven package management','','Add detailed documentation for nixpkgs.\r\nAdd a debugger for nix expression.','Ubuntu','','','','','','','','Y','','','','home-manager','dockertools',''),(1608,NULL,1,'en','1700798884','A5','A3','male','','','','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1609,NULL,2,'en','767246004','A1','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','N','N','Looking to get started soon.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1610,'1980-01-01 00:00:00',5,'en','591145859','A6','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','A smart guy said it would be just the thing for managing my personal desktop and boy was he right.','','Y','','','','','Y','Y','','','','','','','Y','','Y','Y','','Declarative package management ','The whole nixos options way of declarative system configuration ','The nix language ','','Maybe docker for some things and some other Linux distro ','','','','','','','','','','Y','Y','','','','I use the R package and Emacs packages ','','','','','N','My experience with Nix','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','A smart guy told me it would be just the thing for my personal machine.','Y','','','','','','','The whole declarative configuration of the system options and packages ','','','Maybe some more getting started with contributing guide. I would love to contribute but not sure how to start.','Some Linux distro and some docker ','Y','','','','','','','','','','I3','','','I love nix and nixos it is amazing and it just elevates the Linux desktop experience in a crazy way.'),(1611,'1980-01-01 00:00:00',5,'en','1318442269','A5','A4','male','','','','','','Y','Y','Y','','','Y','Y','Y','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Wanted reproducibility of my dev environment over macOS and ephemeral Linux VMs. ','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Flakes','Caching','Reproducibility ','Make the language more in line with other modern languages in terms of ease of development (introspection, strong typing in IDEs, Type-safe autocomplete, in-line doc, better error reporting, discoverability of stdlib functions)','Brew and some shell scripts ','','','','','Y','','','','','','','','','','','Y','Y','','','N','','N','Y',NULL,'Learning curve for hardware support, and pre-built packages for some software only available for centos','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Home-manager, nix-darwin ','',''),(1612,'1980-01-01 00:00:00',5,'en','674413437','A5','A4','male','','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Heard good things about it from a coworker at a previous job; decided to try out NixOS and NixOps for my next personal server deployment.','','','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative dependency/configuration/system management','`nix-shell -p` to temporarily try new software','','Can I ask for two?\r\n\r\n* Support for layering multiple stores. I would use one store for vanilla system stuff, and another store for confidential software I develop or modify, so that I could separately encrypt the second one and software not running in my user context wouldn\'t have access to it.\r\n* The ability to fake out a particular dependency with another version without triggering a whole system rebuild. When testing a patch I\'m writing on some widely-used low-level library, in other package management systems, I can just copy the patched binaries to the appropriate system install location, and re-install the original package when I\'m done. In Nix, I\'d have to rewrite every derivation I want to be affected, which leads to a ton of rebuilds that need to be run every time the patch changes. I understand that depending on a specific build of a dependency is a deep and valuable part of the Nix design model, but if I had that magic wand, I\'d make that impure/unsafe escape hatch for local testing or time-critical patches.','My Linux distribution\'s package manager.','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Same story; I learned Nix from trying NixOS and NixOps.','Y','','Y','','','','','Same as in Nix section','','','Same as in Nix section','Arch Linux for my desktop, some minimal Linux image for my personal server.','Y','Y','','','','','','Y','','','','home-manager','',''),(1613,'1980-01-01 00:00:00',5,'en','887005667','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I remember someone on the internet describing it as “Haskell for OS,” that got my attention. And I loved it ever since! (I am not sure how to quantify that statement, however, that’s how I got into it. :-) )','','Y','','','','','Y','Y','Y','Y','Y','Y','','','Y','Y','','Y','','Programming language and eco-system for declaring build artifacts ','Developer environments (nix-shell) that are integrated/ share with the CI/ build declarations','Declarative and pure (free of side effects) approach to producing artifacts ','Unified package management of language subsystems that works. Currently, while lots of integrations are GREAT, but some differ substantially from others and some are not as integrated as others. How do I build a production node application with cross-language dependencies with Nix?','Oh boy! :-)','Y','','','Y','Y','','','','','','Y','','','','cabal2nix\r\n\r\nI don’t use node2nix or elm2nix because I haven’t solved the whole node application with cross language dependencies yet, and they are just individual pieces of the puzzle. ','Y','','','','N','Lack of time, but also lack of ideas on how/ what to contribute.\r\n\r\nTrying to get into it again but already for some years. :-)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I guess my Nix story is really the NixOS story. ','Y','','Y','Y','Y','Y','','Declarative system management','Declarative user configuration management','Eco-system and community ',' Any think of anything ','Oh boy! :-)','','','','','','','krops ','','','','xmonad ','home-manager\r\nkrops\r\n','elm2nix\r\nnode2nix\r\n','Love the work you do. Thanks!'),(1614,NULL,4,'en','1632031985','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(1615,NULL,NULL,'en','317236564',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1616,NULL,1,'en','1841699085','','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1617,NULL,NULL,'en','372559565',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1618,'1980-01-01 00:00:00',5,'en','797641134','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','N','Y',NULL,'You have to compile/install all software yourself and can\'t even quickly launch a binary from Github','I need an easy way to build software myself like Arch Linux AUR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I love to edit my system in a declerative way.','','','Y','','','','','Declerative config','Easy installation','Easy upgrade','I didn\'t love the haskel syntax. Add more home-manager to the default system.','Puppet or Ansible','Y','','','','','','','','','','sway','','',''),(1619,'1980-01-01 00:00:00',5,'en','476397002','A2','A4','male','','Y','','','Y','','','','Y','','','','','','Y','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Because of NixOS.','','Y','','','','','Y','','Y','','Y','Y','','','Y','Y','','Y','','Declarative','Reproducible','Abstractions','Improved support for microcontrollers.\r\nSomething like EspHome, but more powerfull and for more platforms. NixOps for IoT.','Guix? Still Debian?\r\nI don\'t really watch the current state of other distro\'s.','','','','','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Managing systems of friends and family','A5','Love at first sight.\r\nImpressed by ImplicitCAD and pandoc, I started exploring functional programming. Somehow I then discovered NixOS.\r\nI was a fairly happy Debian user, but NixOS makes me feel so much more powerfull and supported at the same time.','Y','','Y','','Y','Y','','Declarative','Rollbacks. Hardly used, but enabling progress.','Abstractions','Improve phone application support.\r\nImprove uboot support (cfr Tow-Boot).\r\nHigher speed and lower power consumption.','Guix? Still Debian?\r\nI don\'t really watch other distro\'s.','Y','Y','','','','','','','','','XMonad, dwm','','','Thank you!'),(1620,NULL,NULL,'en','1194203022',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1621,'1980-01-01 00:00:00',5,'en','839788351','A5','A3','fem','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Revertable configuration ','','','Make nix syntax closer to mainstream functional programs syntax','Arch or Gentoo','','','','','Y','','','','','Y','','','','','Crate2nix','','Y','','','N','Nix syntax ','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','','','','Y','','','','','Revertable configuration changes (rescue) ','','','Nix syntax being closer to the mainstream functional languages','Arch or Gentoo ','Y','','','','','','','Y','','','','','',''),(1622,NULL,NULL,'en','1929140553',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1623,'1980-01-01 00:00:00',5,'en','1351720398','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Because I started using NixOS','','Y','','','','','Y','','Y','','','Y','','','Y','','','Y','','Declarative system/server management','Declarative home folder management (through home-manager)','Managing development environments (and keeping the rest of the system clean)','I would improve build performance (both RAM usage and CPU usage)','Docker','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','Feels like more work, changing things myself locally is just easier (yes I know, not the most community friendly attitude)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Read about it and the central configuration management really spoke to me, so I converted my home server to run NixOS.','','','Y','','','','','The ability to put all my systems configurations in a single git repository','The predictability and cleanliness of declarative systems','\"Risk free\" rollbacks and upgrades','- Declarative vms (the ability to declare vms similarly to the containers. options (essentially a more extensive miniguest))\r\n- Rootless containers (both for virtualisation.oci-containers.containers. and containers.)\r\n- Stable RPi 3/4 support','Debian with docker-compose','Y','','','','','','','','','','sway','home-manager','',''),(1624,NULL,2,'en','2139411157','A6','A2','male','','Y','','','','','','Y','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','One week ago. I use it because:\r\n\r\n1. Reproducible software can be shipped\r\n2. No dependency breakage hell\r\n3. Latest software\r\n4. Stable system (no packages break, thanks to pt.2)\r\n5. Was looking for something that fit well me needs','','','','','','','Y','','','','','','Personal Computer ','','','Y','','','Gaming, Daily driving for everything ','Stability due to package isolation','Up-to-date software','Nix Package manager itself','I don\'t have anything say here','Gentoo Linux because the problem solved by NixOS doesn\'t exist on this source based distribution. Consider packages A and B that uses dep. ß. However due to development reasons such as different packagers or how the software is shipped by the vendor, A depens on ß-0.2-1 but B depends on ß-0.2-3. This problem is solved on gentoo since both A and B are compiled with whatever dependency ß is present on my system and then both packages work without breaking. On NixOS both A and B use whatever version of ß they need.','','','','','','','','','','','','','','','','','','','','N','Student life and personal project and procrastination ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1625,'1980-01-01 00:00:00',5,'en','1975789803','A2','A6','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','For hpc computing','','Y','','','','','','','','Y','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','time','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','','Y','','','Y','','','','','','','','','Y','','','','','','','','','','','','',''),(1626,'1980-01-01 00:00:00',5,'en','748570621','A2','A6','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','','','','','','','','','','','Y','','','','','','','','','','icewm','','',''),(1627,'1980-01-01 00:00:00',5,'en','1584074754','A2','A3','male','','','','','Y','','Y','','','','Y','','Y','','','Y','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Do someone a favour','Y','','','','','','Y','','Y','','','','','Y','Y','','','Y','','reproducibility','python envs ','','add user-friendliness (setting up a printer is a mess)','apt, homebrew, poetry','','','','','','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Same as Nix, a friend convinced me to','Y','','Y','','','','','integration with Nix','','','add user-friendliness','MacOS','Y','','','','','','','','','','i3wm','nix-env for python env building','',''),(1628,'1980-01-01 00:00:00',5,'en','1965050143','A2','A4','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','Y','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Because it makes sense','','Y','','','','','','','','','','','Home Laptop','','Y','','','Y','','Laptop configuration management','','','I\'d add more user/beginner friendly documentation','FreeBSD, if I had not issues with drivers','','','','','','','','','','','','','','','','Y','','','','N','I\'m n00b','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Reinstalling is easy, hard to break. Planning to upgrade my parents PC to NixOS, as I\'m sick of breakages after updating/upgrading.','Y','','','','','','home laptop','Config management','','','Better documentation','','Y','','','','','','','Y','Y','','','','','I\'m struggling with building docker image the way I need, documentation is lacking. I love the idea, but given I\'m a n00b, it\'s brutal.'),(1629,'1980-01-01 00:00:00',5,'en','1934878785','A5','A4','-oth-','Androgyne','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Was having some trouble with my machine at the time. Decided it was time for a reinstall and I knew someone who used Nix. Thought that something different was in order.','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','Isolated and declarative development environments.','Declarative configuration of my desktop.','Declarative server deployments.','A suite of buildLang tools that share the same interface no matter what language is being packaged for nixpkgs.','Apt and dpkg on my desktop.\r\n\r\nAnsible on my server.','','','','','','','','','','','','','','','cargo2nix\r\nnpm2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Knew somebody who used it regularly at a time that my machine was having trouble. Decided to try this. Then stuck with it.','Y','','Y','Y','','','','Not needing to remember the syntactic idiosyncrasies of each service.','Hanging a well bundled and integrated bunch of services.','Rollback for when something goes wrong.','','Ubuntu or Fedora','Y','','Y','','','','','Y','','','Sway','','Flakes','Somehow the documentation is both very extensive and simultaneously incomplete and often misleading. I want to contribute, but it takes so long for me to understand an area of the documentation that I usually feel like I\'m doing something too weird for most people.'),(1630,NULL,NULL,'en','448915285',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1631,'1980-01-01 00:00:00',5,'en','2028390426','A5','A4','male','','','','','Y','','Y','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The nix/nixos model just feels like the way package management and OS config should be done. It\'s still a bit challenging to use, but I choose to live in the future (where I can)','Y','Y','','','','','Y','','','Y','','','','','Y','Y','','Y','','Self contained, reproducible builds','declarative configuration','rollbacks','Make the nix language easier to understand and ideally strongly typed. I\'ve bounced off getting deeper into nix many times just because I can\'t seem to get an understanding of nix in my head like I have for python and haskell. ','Git, shell/python scripts, ansible','','','','','','','','','','','','','','','https://github.com/NixOS/cabal2nix\r\nI\'ve attempted to use a python 2 nix tool (maybe this one: https://pypi.org/project/pypi2nix/), but didn\'t figure it out enough to actually use it','Y','','','','N','I don\'t really understand the nix language well enough and haven\'t been able to find the time to get that level of understanding.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It just feels like the next logical evolution in how an operating system *should* be built. I choose to live in the future (in spite of it\'s warts in it\'s current implementation)','Y','','','Y','','','','Declarative Config','rollbacks','good defaults around security','It keeps having trouble networking on my NixOS desktop (that a dual boot to PopOS does not have). ','Other linuxes','Y','','','','','Y','','','','','xmonad','reflex platform','home manager (I think? It might still be in my stack, and I\'d really like to use it, but last time I tried I couldn\'t quite get to parity with what I had before, so I\'ve stopped interacting with it)','Thanks for driving the future of package management!'),(1632,'1980-01-01 00:00:00',5,'en','539636008','A2','A3','male','','','','','','','','','Y','','','Y','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','1. Configuration of system as a file\r\n2. Safe updates\r\n3. Ability to try packages from unstable safely','','','','','','','Y','','','','','','','','Y','','','Y','','Ability to create separate environments with only packages which I specified','OS configuration','immutability of packages and OS','Made nix language less generic.\r\n\r\nI see functionality of this language as very domain specific (configuration of packages).\r\nBut it\'s language is very generic, not precise, constructs made using this language are not standardized.\r\nThere is to much information required to understand what some expression is doing. After more than half year I have no idea what I am doing when writing in this this language.','Arch','','','','','Y','','','','','','','','','','','Y','Y','','','N','My local nix script for my package doesn\'t seem to be the same scrip which I would have to add to the nixpkgs repo.\r\n\r\nMaintaining own fork just for potential contribution and figuring out how to make my script be \'the standard and proper way\' seems like a lot of work (nix language, aaaaa :/). By the way what is \'the standard and proper way\' I have read quite a lot about nix but I have no idea what I should do.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','My arch was rusty after a year or so, I was thinking if there is a system which will never get \'rusty\', NixOS looked like only option.','Y','','','','','','','System as sonfiguration','Safe updates','Ability to pick one of programs from unstable, if current stable version is too old','Nix language again xD\r\nBut for system configuration it is not that bad (but there json would almost cut it)\r\nIf it was something like language used by meson build system if would be great.\r\nI was understanding meson without reading any documentation\r\nExample:\r\nlibcjson_dep = dependency(\'libcjson\')\r\nexecutable(\'my_program\', source_files, dependencies: [libcjson_dep]) - what does it do? documentation required?\r\n','Arch','Y','','','','','','','','','','sway','Nix search for packages is great, love it.\r\nhttps://search.nixos.org/packages','No idea tried a lot of commands for half I don\'t know what they do. There is a bit of confusion what is for nix language and what is for NixOS','I was grumpy about Nix language sorry :/\r\nbut I really like the NixOS I was seriously considering making contributions but Nix language seems like a to big time investment.\r\n\r\nI would love NixOS to be one of most used Linux OS-es but I think that this steep learning curve for package management will stop it.\r\n\r\nEx.\r\nI wanted to build my own version of mesa to be used by system.\r\nI used overlays, I copied configuration from nixpkgs and it almost worked, but didn\'t (some parameter not passed, something like this). Tried few things nothing worked.\r\nNow I have no idea how to build my own mesa (locally or for whole system), this makes me think that switching to other distro might be the unfortunate future.'),(1633,NULL,1,'en','1415336702','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1634,'1980-01-01 00:00:00',5,'en','558972771','A2','A7','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducible setup of (small) (home-)server.\r\nReproducible setup of develop environments. But my most used languages ruby and java (Eclipse RCP) are not well served, therefore I still struggle with it.','Y','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','','Y','','Reproduceability','clean DSL language','speed','* Finish flake\r\n* Better support for Java/Maven/Eclipse/Tycho','guix','','','','Y','Y','','','','','','Y','','','','https://github.com/fzakaria/mvn2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted to move my Debian Home Server to a more reproducible setup ','Y','Y','Y','','','','','Reproduceability','Ease of use','clean DSL','Make flake default','GUIX','Y','Y','','','','','','Y','Y','','','','','Some of my pull requests (user ngiger) just linger, as nobody committed them even after having responded to all suggestions for changes'),(1635,NULL,NULL,'en','1194929763',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1636,'1980-01-01 00:00:00',5,'en','913157944','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I stumbled upon it while doing research on reproducible builds.','','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','Y','','flakes','package management','system configuration','I\'d make everything work with the 2.4 Nix commands. For example nix-shell shebang.','Guix, if it did exist in such a timeline.','','','','Y','Y','','','','','Y','Y','','','','','Y','Y','','','N','I don\'t feel that I have the skill yet, but It\'s definitely something I\'d wish to do.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I stumbled upon it while doing research on reproducible builds.','Y','','','Y','','','','Reproducible systems','Clean development machine','Easily turned into an ISO or VM','Address the confusion regarding all the different deployment tools (nixos-rebuild, deploy-rs, ...)','Guix, if it existed in such a timeline.','Y','','','Y','','','','Y','','','EXWM','','None, I still have many thing to try though.',''),(1637,'1980-01-01 00:00:00',5,'en','958123428','A5','A4','male','','','','','Y','','Y','','','Y','Y','','','','','Y','Y','Y','','Y','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Initially started using it for work as a solution for Haskell development.','','Y','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','Y','Training machine learning models','Declarative package/dependency management','Ecosystem: Declarative deployments, provisioning, testing, etc','Reproducibility in everything (especially reproducible environments)','Keep making flakes stable. It solves the majority of practical problems I face with nix. (Although nixpkgs has many more problems)','Not sure... A hodgepodge of tools like Docker, cabal etc. Mostly I\'d be sad.','Y','Y','Y','Y','Y','','Y','','','','Y','','Y','','cabal2nix, poetry2nix, elm2nix, node2nix, yarn2nix, haskell.nix\r\n\r\nI try to avoid 2nix tools that generate huge package definitions from lock files. (I prefer my packages to look like nixpkgs packages in general and override as needed)','Y','Y','','','N','Two main reasons:\r\n\r\n* There are very few packages I\'m willing to actively maintain on a regular release cycle. If I need something for work I\'ll normally pin it and update only when it becomes absolutely necessary.\r\n* I don\'t always have the knowledge to follow best practices with various build systems and nix. Doing the due diligence to clean up a package is often not worth the extra time commitment.\r\n\r\nSide note: \r\n\r\nI have started submitting pull requests in \"draft\" mode so that others searching for the same package could pick it up and polish it up it if there\'s demand for it beyond my own personal use.\r\n\r\nIt might be nice if search.nixos.org would direct people to any package PRs that are open/draft via something like a `package: init at .*` or `package: .* -> .*` regular expression on github PR titles.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Started using it for Haskell (work and personal projects).','Y','Y','Y','Y','Y','Y','','Declarative system management','Reproducibility','Convenient modules','* Make package sets much more consistent with each other (pythonPackages, nodePackages, haskellPackages etc) - it\'s a confusing mess right now.\r\n\r\n* Generally refactor everything in nixpkgs.\r\n\r\n* nixos-reformat: take in a messy directory including a configuration.nix/flake.nix and spit out a clean nixos flake with a clean canonical directory structure.\r\n','Ubuntu','Y','Y','','','','','','Y','Y','Y','xmonad','nixops, hydra, flakes','terraform','Great work and thank you. '),(1638,'1980-01-01 00:00:00',5,'en','1074162542','A2','A3','male','','','','','','Y','Y','Y','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Heard about a \"functional package manager/build tool\" in the Haskell sphere and was hooked. Now it\'s Nix or nothing.','','Y','','','','','Y','Y','','','','','','','Y','Y','','Y','','declarative definitions','dependency isolation','reproducable builds','Make the Nix language statically typed.\r\n\r\nHave derivation declare their outputs.','I dont know','','','','Y','','','','','Y','Y','Y','','','','https://github.com/NixOS/cabal2nix\r\nhttps://github.com/NixOS/npm2nix','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','After I saw `configuration.nix` for the first time I have not used anything else.','Y','','','','','','','declarative configuration','dependency isolation','reproducable generations','embed home-manager','Arch or Ubuntu','Y','','','','','','','','','','i3','https://github.com/direnv/direnv\r\nhttps://github.com/nix-community/lorri\r\nhttps://github.com/nix-community/home-manager','https://github.com/NixOS/mvn2nix-maven-plugin\r\nnix-env',''),(1639,'1980-01-01 00:00:00',5,'en','1731215355','A5','A3','-oth-','','Y','Y','Y','','Y','Y','','','','Y','','','','','Y','','Y','','','Y','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducible development environments','','Y','','Y','','','Y','','','Y','','','','','Y','Y','Y','Y','','','','','Better support of TOFU use cases, packaging, prefetching, and hash calculating large number of packages. Currently needing to use https://github.com/msteen/nix-prefetch/ and a cludge of custom scripts. I\'m trying to use nix as a package manager for public data liberation projects (creating packages from public data sources hosted in a variety of places (usually government)), and transformations to clean and standardize them.','I\'d just cry','','Y','','','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','declarative system configuration','Y','','','','','','','','','','','','Y','','','','','','','','','','','home-manager, niv','niv',''),(1640,NULL,1,'en','186176228','A5','A3','fem','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1641,'1980-01-01 00:00:00',5,'en','611891202','A5','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I think I heard about it when distro hopping (initially I thought it was similar to GoboLinux), but then used it as an alternative linux package manager for the occasional things that I couldn\'t find working packages for on Arch. I also went back and forth for years between Arch and NixOS, but went full NixOS and using Nix for all of my development environments around 4 years ago','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Declarative and fully specified dependencies','Very large ecosystem of nixpkgs','Very easy to patch/customize software','* Better evaluation performance\r\n* Pure by default without requiring flakes\r\n* A unified official lang2nix solution','I\'d probably lean a lot more heavily on tools like Docker and asdf','','','','Y','Y','','','','Y','','Y','','','','yarn2nix: https://github.com/NixOS/nixpkgs/tree/master/pkgs/development/tools/yarn2nix-moretea/yarn2nix\r\nnpmlock2nix: https://github.com/nix-community/npmlock2nix\r\nbundix: https://github.com/nix-community/bundix\r\npoetry2nix: https://github.com/nix-community/poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','After using Nix on and off, I thought NixOS sounded interesting. I tried it periodically for personal use, but would go back and forth to Arch because of the occasional issues and because I hadn\'t really learned the nix langauge or nixpkgs ecosystem. Then I started using Nix for development environments and started tracking my NixOS system configuration in git and never went back','Y','Y','Y','Y','','','','Fully declarative system management','Operating System as Code, so all configurations and changes can be tracked in git','Trivial rollbacks and easy to customize','* Easier to get into. Several people I know are happy to use nix for dev environments and local package management, but are very intimidated by NixOS\r\n* Pull in and combine efforts with home-manager\r\n* Fewer custom tools that wrap nix. It\'d be super cool if the standard way of doing things like a `nixos-rebuild switch` was something like `nix run config-flake#activate`\r\n* Default to pinning nixpkgs (whether through flakes, niv, manual fetchTarballs, etc.) and avoid using channels, promoting full config in git\r\n','I\'d almost certainly still be on Arch','','','','','','Y','terraform-nixos (moving away from this though)','','','','i3wm','* home-manager\r\n* nix integrations with direnv (I\'ve rolled my own, but the existence of things like `use nix` in an .envrc has been mind blowing to people and they find it a lot more usable than `nix-shell`)\r\n* cachix','','Nix and NixOS are great and have had a hugely positive impact on my work and personal computing. Thanks for all the hard (and very smart) work!'),(1642,'1980-01-01 00:00:00',5,'en','637220050','A2','A3','male','','Y','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Arch Linux bricked my system. I wanted the rolling release/new software from a distro like arch, but with a rollback button in case something goes wrong.','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Reproducability','','','Nix flakes are nice, but really badly documented','','','','','','Y','','','','','','Y','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','sway','home-manager','',''),(1643,'1980-01-01 00:00:00',5,'en','1517864314','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','my buddy showed me some cool stuff that nix makes possible and i was hooked!','Y','Y','','','Y','','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','Y','','reproducibility','reusability','caching','remove:\r\nchannels\r\n\r\nchange:\r\nflakes to be stable\r\n','im not even sure at this point','','','','Y','Y','','','','Y','','Y','','','','yarn2nix\r\npynixify https://github.com/cript0nauta/pynixify\r\n','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','wanted a more declarative way to maintain my OSes on my VMs','Y','','Y','Y','','','','','','','','','Y','','','','','','','','','','none (headless)','home-manager\r\nnix-darwin\r\nhttps://github.com/cript0nauta/pynixify\r\nhttps://github.com/samuela/nixos-up\r\nhttps://github.com/edolstra/flake-compat','https://github.com/timbertson/opam2nix',''),(1644,NULL,1,'en','395812425','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1645,NULL,1,'en','1177158867','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1646,'1980-01-01 00:00:00',5,'en','460093250','A2','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I got interested about declarative environment ','','Y','','','','','Y','','','','','','','Y','Y','','','Y','','Declarative environment management ','Declarative system management ','Installing different versions of packages at the same time ','Better caching/flake integration would be nice','','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','Not enough experience / time ','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','Wanted to get the full nix experience ','Y','','','','','','','Better nix experience ','Declarative system configuration ','','Making system configuration easier + import of standalone config files instead of pasting content into the nix file','','Y','','','','','','','','Y','Y','','','Home-manager',''),(1647,'1980-01-01 00:00:00',5,'en','470395863','A1','A7','male','','','','','','','','','','','','','','','','','','','','','','','','','retired','Y','','','Y','','Qubes-OS','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Was reading a blog posting where people were griping about `brew` vs `macports` and someone mentioned `nix`.','Y','','','','','','Y','','Y','','','','','Y','Y','Y','','','','package management','package management','package management','I would make the documentation better so that all the current examples of how to use nix-build would not be missing the essential 2-3 lines at the top.\r\nIt took me blundering about for a few days until I found an older posting where someone actually had a fully functioning example snippet.\r\n\r\n','`brew` pisses me off because it wraps everything in various weird ruby-based scripts so that it can dynamically determine where it statically installed everything.\r\nSo I was tilting towards `MacPorts`, and would probably use it instead.\r\n\r\nFor development, python-based, I would use whatever method I was using before. Still not entirely sure nix is where I want to go long term here -- still trying to wrap my head around precisely wtf nix is.','','','','','','This is an area which pissed me off. All the help info suggested using commands which were flagged experimental and thus did not work. Keep your experimental shit out of the main help pages, or clearly mark them as experimental and include the means to invoke them.','','','Y','','','','','Still trying to deploy my GitLab CI. I\'ll soon see if nix aids or frustrates','','','','','','N','Not enough remaining brain cells and/or hours in the day for me to understand nix.\r\nIt really looks like a horrible mess to me, but that because I\'m confused.\r\nThe docs look really good, but all the examples I\'ve found so far do not work because there is this essential bit at the top of the file which is missing.\r\nThe commands / man pages all suggest primary use of experimental features which will fail with an error.\r\n\r\nThere are a few packages I would like to work on Darwin (aide is one) which I might use to figure out how to contribute some porting work to.\r\n\r\nIf my silly programme I am writing ever becomes generally useful and well-written and well documented I might try to figure out how to contribute it.\r\nI guess that\'s why I\'m trying to use nix to build it and CI/CD it.\r\n\r\nI guess another reason is I have been burned in the past when trying to contribute to community projects -- people conveniently \"forgetting\" who it was who did a significant portion of the work and claiming credit for it.','N','Y',NULL,'I installed it in a VM on osX, but whenever I adjust the window size when it boots it just becomes a blank screen, so I never got to actually interact with the installed system. A tiny 640x480 on my screen is useless to me. I want full screen (5K monitor full res) access to the system, or at least anything bigger than 640x480.\r\n\r\nI just booted it up. I am using VirtualBox, rather than VMWare. I was able to get a usable window open. Perhaps I\'ll play with it some more....','Boredom.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1648,NULL,1,'en','1710794795','A3','A3','male','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1649,'1980-01-01 00:00:00',5,'en','1084475092','A2','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','Y','','','Y','Y','Y','','','','','','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','Y','','','','','','haskell.nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(1650,NULL,NULL,'en','352002920',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1651,NULL,1,'en','1617279710','A3','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Physician','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1652,'1980-01-01 00:00:00',5,'en','848378228','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','Development & Home Server','A3','I started using nix when I used NixOS for the first time.','Y','','','','','','Y','','Y','','','','','','','Y','Y','Y','','Functional Style','Similar to JSON','Encourages code as data','I wish we had better auto complete and api discovery in nix (in terms of development tooling). I frequently find myself looking at existing nix packages to find out how to do things.','Ansible or something like it with wrapper scripts.','','','','','','','','','','','','','','','','','','Y','','N','I have contributed once but that was a long time ago. I haven\'t found a personal need to extend nixpkgs myself in a while.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Before Nix & NixOS, I used to use a home-rolled configuration management system that used Archlinux and Ansible along with some wrapper scripts in NodeJS. The idea was to have various system configurations that could be recalled onto different machines of mine. While this worked for the most part, maintaining the wrapper scripts , keeping up with the fast pace of development of Archlinux having to perform workarounds for idempotent with clever hacks and snapshots became too much of a time sync. \r\n\r\nI had already used NixOS before this, in fact much of the inspiration for my home-rolled system came from NixOS. The reason I started using Nix and NixOS as a daily driver and server is because of its Stability and Configuration Management benefits. I also enjoy the ergonomics and functional programming aspects of the Nix language.','Y','','Y','','','','','System configuration and reproducibility\r\n\r\nThe fact i can store all my system configurations in a git repo and provision a machine with ease makes nix / nixos ahead of almost every other option on the market.','NixOS makes many of the tedious aspects of system administration enjoyable because of NixOS options.\r\n\r\nThe fact that many services and features that are used by system admins are simple configuration options in nix makes setting them up extremely painless.','Stability\r\n\r\nNixOS itself is extremely stable in my opinion, I hardly ever notice any major breakages and even If I did, the system snapshots that are built into nix make breakages almost irrelevant.','The whole missing library thing when trying to run an local binary. Troubleshooting that at times can be kind of a nightmare when working with software that bundles arbitrary binaries.','Ansible and some kind of wrapper script','Y','','','','','Y','','Y','','Y','','','',''),(1653,'1980-01-01 00:00:00',5,'en','693198304','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','The declarative, configuration-as-code style of nixos appealed to me, and I learned nix as a byproduct.','','Y','','','','','Y','','','','Y','','Desktop','','Y','Y','','Y','','`nix run`','Easily testing upstream changes and bugfixes with a src override.','Self-contained dev environments. I don\'t need to alter my system config to hack on a package.','I\'d replace the nix language with something roughly haskell-like. Strong typing, purely functional, expressive type system.\r\n\r\nAnd seriously, we need to get rid of nix-env, or at LEAST stop advertising it as \"the way\" to install software with nix *cringe*','There isn\'t really anything I can call a replacement.','','','','Y','Y','','','','','','','','','','','Y','','','','N','Everything I care about is already done, or is already being worked on by someone else.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','Y','','Desktop','I can make more complex changes to my system without fear of losing the ability to maintain it.','My entire system specification is a single consolidated thing which I can back up, replicate, etc.','The ability to change software locally without it becoming a second-class citizen from the package manager\'s perspective.','Some capacity for inheritance-style configuration changes. The fact that there\'s no way to access the \"previous\" value of a nixos option when setting it can occasionally be very inconvenient, particularly when a nixos module author didn\'t consider the modification I want to make to it. This happens most often when I want to add a command line switch to a service\'s ExecStart line.','Gentoo, probably, but I wouldn\'t be happy about it.','Y','','','','','','','','','','i3','Home-manager is integral to fully getting what I want from nixos.','','I\'d love to see a system for managing runtime state that integrates well with nix/nixos. The resulting OS could be amazing.'),(1654,'1980-01-01 00:00:00',5,'en','1467762119','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Musician','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','It\'s a clever solution to a real problem.','','','','','','','','','','','','','Personal computers','','Y','Y','','Y','','FLOSS','Functional nature','nix-shell','I would like comprehensive and easy to understand documentation with an emphasis on examples.\r\n\r\nAlso, nix-shell seems to be slower for me than it used to be. I don\'t know if it\'s because of a change in my configuration.\r\nMaybe I should look into Nix flakes, but I\'ve found it hard to get started. A tutorial with a minimal viable example might help.','Probably Guix.','','','','','','','','','','','','','','','','Y','','','','N','Maybe a fear of taking on responsibility.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','It used to be a lengthy process for me to install and customize all the programs I use on a new computer, so having that done automatically based on declarative text files was appealing.','','','','','','','Personal computers','FLOSS','Rollbacks','','Nothing actually comes to mind at the moment.','Probably GNU SD.','Y','','','','','','','','','','','','',''),(1655,'1980-01-01 00:00:00',5,'en','999318015','A4','A2','male','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y','','','Y','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Distro-Hopped until NixOS cured it!','','','','','','','Y','','Y','','','','Desktop Work/Gaming station','Y','Y','','','Y','','Sane Defaults of well working software','Relatively painless central configuration','Stability','Better documentation and simple tutorialising','Fedora Silverblue','','','','','','','','','','','','','','','','Y','','','','N','Never tried to.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Distro-Hopped until NixOS cured it!','','','Y','','','','Gaming/Workstation','Sane defaults and cemtralised configuration','Stability','Package availability','Better documentation','Fedora silverblue','','','','','','','','','','','Sway','','',''),(1656,NULL,2,'en','1684337645','A1','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','When I before using Nix, I\'m using the rolling package management system, after a long time I not upgrade my package, will crashed my system at full upgrade. In find solution for this problem, I discovered nix and using it for my primary package management workflow','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','reproducible','flake','nix cli','I want remove old cli like nix-env, nix-shell etc, using new nix cli, and use full Nix-lang to describe package, not Nix-lang and shell script combined','The package management I will use Portage provide by Gentoo, or ports provide by BSD, operating system I will follow the Linux From Scratch','','Y','','Y','Y','','','','','','Y','','','','bundix, cargo2nix','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1657,NULL,1,'en','688005531','A2','A4','male','','','','','','Y','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','','Y','','','N','Guidance','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','Y','','','','','bspwm','direnv, home-manager, flake-utils, nix-locate, nvd','nixops',''),(1658,'1980-01-01 00:00:00',5,'en','1284853477','A2','A5','male','','','','','','','Y','Y','Y','','','','','Y','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I learned about it via Guix (I am an occasional GNU Guile user). It\'s the most comprehensive software composition tool I know of.','','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Composition','Reproducibility','Version control of recipes','- Figure out if flakes are a good idea. The \"locking\" business is kinda anthethical to composition! (I am aware of overrides & .follows, but also of all the bugs...)\r\n- Stop the CLI churn (The old CLI was not perfect, but the new one makes the situation even messier. Also: nix run being replaced by nix shell hurts!)\r\n- Get rid of crazy progress meters. Also: stop spewing ANSI escape sequences all over the place. It should at least be configurable, and better not write those to a non-TTY.','Towers of Makefiles, and containers.','','','','Y','Y','','Y','','','','','','','','https://repo1.maven.org/maven2/org/nixos/mvn2nix/mvn2nix-maven-plugin/ (which is kinda broken)\r\nhttps://github.com/nix-community/yarn2nix (a long time ago)\r\n','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','No desire to reimplement NixOS in environments where the \"base OS\" is not mandated.','Y','Y','Y','Y','','Y','','Declarative & version-controlled configuration','Seamless Nix integration','Configuration generators','- Less gratuitous churn (even though it hasn\'t been too bad)\r\n','Debian + automation scripts & version control','Y','Y','','','','','','','','','(Customized) Sawfish WM','home-manager','','Thank you for this incredibly useful tool & OS!'),(1659,NULL,2,'en','1813556250','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1660,NULL,NULL,'en','527354328',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1661,'1980-01-01 00:00:00',5,'en','1398939828','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','I wanted a maintainable OS for a new NAS server and NixOS ticked all the boxes (native ZFS, declarative configuration that can be versioned, simple to contribute and add new features and packages)','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','declarative configuration','awesome community','many packages','','','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1662,'1980-01-01 00:00:00',5,'en','1643410244','A2','A6','fem','','','','','','','Y','Y','','Y','','Y','','','','','','','','','','','','','','Y','Y','','','','','N','Y',NULL,'It was not really compatible with daily linux server work.','Run into trouble with versions of PHP, Python and NodeJS or Deno.\r\n\r\nAnd better docs then there where in 200x. Not sure when I used it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'No compatible workflow with Debian / CentOS','Not sure. Maybe now as a rabbithole exercise as I forgot it exists to see what\'s new.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Close/Accept my issue https://github.com/NixOS/nix/pull/1349 :-p'),(1663,'1980-01-01 00:00:00',5,'en','1005375381','A5','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','Y','','','','','','','','','Y','','','','','','','','','','I3','','',''),(1665,NULL,1,'en','1263504769','','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1666,'1980-01-01 00:00:00',5,'en','1922064942','A2','A2','male','','','','','Y','','Y','','','','','','','','','','','Y','','','','','Y','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I used to be an Arch user, but it wasn\'t really suitable for exotic tasks such as laptop GPU passthrough with merged normal/grid nvidia driver.\r\nThat\'s how I tried NixOS & Nix.','','Y','','','','','Y','','','','','','','Y','Y','','','Y','','Declarative configurations','Huge amount of ready 2 use derivations in nixpkgs','Dev. shells','Supporting fixed-hash derivations for local files, really important for big proprietary software\r\nhttps://github.com/NixOS/nix/issues/1528','No idea','','','','','Y','','','','','Y','','','','','','Y','Y','','','N','Lack of knowledge and experience','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1667,NULL,NULL,'en','452578202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1668,'1980-01-01 00:00:00',5,'en','1813766907','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Alternative to Homebrew, which allowed use of multiple versions of software.','Y','','','','','','Y','','','','','','','','Y','','','','','nix-shell','home-manager','','Just get on with flakes.','Homebrew','','','','','','','','','','','','','','','','','','','','N','Can\'t understand how to write expressions. No two examples are alike.','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Lots of great ideas, but it\'s still too damned complicated.'),(1669,NULL,1,'en','1065244826','A2','A3','male','','','','','','','Y','Y','','','Y','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1670,'1980-01-01 00:00:00',5,'en','1234498642','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','N','N','get rid of that dependency shit tarballs we have at work',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','same as before',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1671,'1980-01-01 00:00:00',5,'en','907755810','A2','A3','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'- stuff needs to be fixed \"properly\" and usually no easy hotfix can be deployed. This makes NixOS a horrible experience for prod systems\r\n- hard to google fixes, takes too much time to be only on my private servers\r\n- some stuff feels like a big mess, e.g. how to overwrite stuff\r\n- didn\'t work well on my hardware (old macbook with bad linux support)\r\n- too much confusion with flakes. it looks like flakes would clean up a lot of things but it still has a lot of problems itself (e.g. being experimental :p)','- when flakes isn\'t experimental anymore\r\n- a solution to \'hotfix\' / debug stuff on live systems without having to be a nixos guru',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','musnix - very awesome and I only stopped because I don\'t use NixOS anymore\r\nnixcloud webservices/mailserver - an awesome idea, but sadly it broke at some point and even after a few hours I didn\'t understand it enough to fix it. Disappointing that this project didn\'t get a lot of traction. IMO nixos should use a similar approach for their webservice management!\r\nHomemanager - I\'m a bit disappointed that this isn\'t an official part of NixOS and therefore certain programs like window managers need to be configured either-or. Will definitively use again if I get back at using NixOS\r\nnix itself without nixos (on Windows, Mac and Debian) - I might gives this another try but the experience is kinda lacking in comparison to NixOS\r\nNixos-hardware - should also get more traction. Will definitively use again!','love the work you do to get NixOS out there and keep the community together <3\r\nI really hope I\'ll be able to use NixOS professionally on live infrastructure in a few years!'),(1672,'1980-01-01 00:00:00',5,'en','1761622772','A2','A4','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','Brain puzzles and training my frustration tolerance (semi sarcastic snarky remark.) Still love Nix, though','A3','Needed better management of third-party dependencies - being able to go back to old git revision and get the right dependencies. Also needed both native code and OCaml dependencies. My hand rolled approach was not reliable enough. Failed to use it in 2014, went back a few years ago. Now failed to stick with NixOs (after 1.5 years) but finally using it for dependency management, Emacs plugin configuration, etc. and parts of my MacOS setup','Y','Y','','Y','','','Y','','Y','','','','','','Y','Y','','Y','','Dependency management, especially complex ones like mixing native code, OCaml/Haskell and Python, also with custom builds of dependencies like LLVM, sometimes needing patches etc.','Easy return to last known-good configuration','','Find a way to make it simpler to use, probably axing as much of Nix the language as possible. Better debugging and error reporting','Going back to hand rolled scripts. Maybe something like Guix or Hermes','','','','Y','Y','','','','','','Y','','','','mach2nix for Python, emacs-overlay','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Learning, seeing how nice things could be if I could just make it work','A3','Started using Nix for development. Then was unhappy with Ubuntu/Manjaro so I gave NixOs a chance. Got frustrated after spending too much time finding out how to do things so I returned to MacOs as my daily driver. NixOs machine is still used for experimenting though. Haven\'t given up returning there one day','Y','','','','','','','Safe rollback to earlier versions','Declarative system management so I can experiment without fear','First class Nix support - everything works with Nix in contrast to MacOs where only a few packages work','Provide more ready-made configurations for easy re-use. Something like https://github.com/gestaltjs/devenv for languages, hardware, server setups. Like having a working Nvidia setup for specific notebooks, etc. Thus also easier composing of configurations, overlays are tricky.\r\n\r\nMore howto-guides which focus on getting something done without full understanding of all the details. Nix pills is great to learn but requires a lot of time and frequently things get forgotten before I can repeat them often enough to commit to memory. Also when for example a webcam doesn\'t work it\'s ok to not understand all details of the solution if it can just be fixed','Manjaro/Arch, MacOs, Debian, Ubuntu?','Y','','','','','','','Y','','','sway','','',''),(1673,NULL,NULL,'en','1134164064',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1674,NULL,1,'en','255848762','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1675,'1980-01-01 00:00:00',5,'en','184702863','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','I wanted a way to setup my workstation in a way that removed the headache and toil of doing it manually. I wanted something easy to maintain, reproducible and deterministic with rollback capabilities. ','','Y','','','','','Y','','','','','','','','Y','','','','','Reproducible','Configurable','Cross platform (I love the idea I could use it for my servers too)','Documentation easier to consume and understand','Ansible','','','','','Y','','','','','','','','','','go2nix','','','Y','','Y',NULL,'N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1676,NULL,2,'en','1509894922','A5','A2','-oth-','enby','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A2','','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','dev shells','reproducible builds','','Comprehensive documentation and stability. For a project coming on two decades of age, things still change seemingly every week (i.e., we just recently went from defaultPackage. to .package.default or something along those lines). Aside from these changes being frustrating, they\'re almost always only documented in release notes (if even that, for instance the nixConfig flake attribute was undocumented on release). Because Nix does novel things, it needs novel documentation. Otherwise, it\'s too surprising a tool to reliably work.\r\n\r\nPerformance optimization is another thing I\'d like to see (good job Pennae!).','Probably too many virtual machines and containers.','','','','Y','Y','','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1677,'1980-01-01 00:00:00',5,'en','695871079','A5','A2','-oth-','enby','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A2','','','Y','','','','nixos','Y','Y','Y','','','','','','Y','','','Y','','development environments','reproducible dependency graphs','reproducible builds','I\'d add comprehensive documentation. Nix does *really great things* in its model, but it moves *really quickly*, and without much documentation. Just recently, we changed the flake schema from `defaultX.system` to `x.system.default`, or something along those lines. That\'s a major change. And while there are backwards-compat measures in place (defaultX.system still works), and flakes are experimental, the maintainers weren\'t too loud about it. (Buried in release notes.) As another flake-related example, nixConfig was added and released without any documentation whatsoever. Most documentation is in the community wiki, which is out of date and sub-optimal.\r\n\r\nHonestly, my magic maintenance wand would freeze all new features, clean up the code base (we\'ve got quite a few >=200-line functions in there!), optimize performance (which Pennae is already doing great work on!) and *document everything*. Then, we could restart adding new features slowly, incrementally, and conservatively. Nix does great things, and I want to be able to learn them!','Too many containers and VMs.','','','','Y','Y','','','','Y','','Y','','','','','','Y','','','N','I don\'t need to. Every time I need something updated, there\'s already a merged PR waiting on a CI run to get into my system. I have manually backported one commit on the one occasion something hasn\'t been handled completely already.\r\n\r\nBecause I haven\'t written too much nixpkgs code, it\'s hard for me to read it and give proper reviews. (Maybe more documentation would help there.)','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','Y','','','','','My entire home server config fits in a single git repository. Declarative system configuration is amazing.','I can build an ISO with my desktop system and boot it on another machine. Reproducible systems are pretty great, too.','','First and foremost, *documentation*. search.nixos.org is pretty good, but not quite a substitute for comprehensive docs on what does what. Something usually always manages to surprise me each time I change something non-trivial. Unlike with Nix, a freeze on fancy-new-things is unlikely to be possible or useful, and tbh I don\'t really have any constructive suggestions on how to get there with a good deal of stability.','too many containers and VMs.','','','','','','','','','','','cwm, dwm, i3','','','Nix is a fantastic tool, obligatory thanks for maintaning it! :)'),(1678,'1980-01-01 00:00:00',5,'en','255196707','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Sounds cool and organized\r\nConfiguration.nix','','Y','','','','','Y','','','','','','personal laptop','','Y','','','Y','','Nixos configuration ( stop fucking up systems / undo!)','nix-shell','easy modifications of packages / builds','Consistency.\r\nYou can never find solutions by cobbling three tutorials together because everyone uses things differently. That makes it very hard if you havent studied nix.','Debian / Arch + bunch of scripts and language packagemanagers','','','','','','','','','','','','','','','','','','','','N','Have not grasped enough','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1679,NULL,2,'en','1720301856','A3','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I was looking for a language to substitute YAML, JSON, TOML, because they don\'t have vars, functions or imports.\r\nCuriously, I was also looking for another language with dependency injection, Nix haven\'t but callPackage is almost a standard. \r\nSadly, the language couldn\'t be used as general purpose language.\r\nI started using it as my reproducible developer environment;\r\nAfter that, as my home manager (with home-manager);\r\nThen, as my OS, and;\r\nLastly, as a tool for CI/CD projects.','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','','Y','Alternative to YAML','The language','Config management','The package management','Make the language usable as general purpose language or at least as alternative to YAML/JSON (ie like Nickel project)\r\nMake a clear distinction between Nix (lang), Nix (tool), NixPkgs, NixOS.\r\nBecause it looks like there is a Linux Distro with a DSL, \r\ninstead of a language (with a lot of use cases), a package tool (with other use cases), a package repository (with more different cases) and a Distro (that has its own use cases)','Dhall + language specific tool for env (ie. pipenv) + ArchLinux','','','','Y','Y','','','','Y','','Y','','','','None, why not a \"nix2\" for less intrusive adoption of Nix where we can\'t control the environment?','Y','Y','','','N','Impostor syndrome kicks in, because who am I to touch a huge and important project if I can\'t explain what is a derivation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1680,NULL,2,'en','1205019303','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','To build Haskell packages.','','','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','Guaranteed reproducability','Declarative management','','Add better documentation!','Maybe Guix?','','','','','','','','','','','','','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1681,'1980-01-01 00:00:00',5,'en','592856266','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','','','','','','','','','','','Bspwm','numtide/devshell','',''),(1682,'1980-01-01 00:00:00',5,'en','1564199982','A4','A2','male','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','It seemed interesting so I decided to try it out','','','','','','','','','','','','','personal computer','','','','','Y','','','','','easier to create and manage configuration files (dotfiles) for a generated system','arch','','','','','','','','','','','','','','','','','','','','N','I have yet to find a need to contribute','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','','','','','personal computer','','','','easier management of dotfiles for a generated system','arch','Y','','','','','','','Y','','','','','',''),(1683,NULL,1,'en','411475728','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1684,'1980-01-01 00:00:00',5,'en','1777928591','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I don\'t remember exactly the beginning of my journey - I think I saw it in my new job. Once I started reading about it and playing with it, I was confident it is the future and solution to all reproducibility and robustness issues for packaging and distributing software.','','Y','','','','','Y','Y','','','','Y','','Y','Y','','','Y','','reproducible builds','robust dev environments/shells','declarative configuration','add more documentation, especially entry-level and from first principles, examples, how-tos, I would fix/explain why there are issues/conflicts with GLIBC on different machines, I would improve error messages to be the same or better like in Rust/Elm compilers. I would make caching free for people to use until certain size (like 3GB per month for instance, to increase adoption and ease of use). I would create regular, well-organized and structured trainings/\"academy\"/rallies for Release Managers - anyone can become a release manager in a short period of time. There should be supportive community of previous release managers. ','apt, pacman, etc.','','','','','','','','','','','Y','','','','','Y','','','','N','lack of time, not sure how and where to start, a bit intimidating to start (for example I wish I could fix many broken Haskell packages, etc. - would be great to have a case study/walk-through described where we have Git repo with a broken package and step by step, what someone did and were they looked, etc. in order to fix it and what is the result before/after with some analyzis and useful links/resources/further reading, etc.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It is a pinnacle of Linux distributions - I have been waiting for such distro my whole life - thank you.','Y','Y','','','','Y','','declarative configuration','robustness/reliability','rich pkgs set','let\'s make NixOS first-class citizen in gaming community','Manjaro','','','','','','','','','','','Xmonad','home-manager, niv','','NixOS is the best thing that happened to Linux community ever!! Thank YOU!!! Please, keep the good work and let\'s conquer the world with declarative and robust OS! :) :) :)'),(1685,'1980-01-01 00:00:00',5,'en','1815868722','A2','A5','male','','','','','','','Y','','','','Y','','','','','','','','','Y','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Heard about Nix(OS) on the Functional Geekery podcast. Wanted a reproducable system state.','','Y','','','','','Y','Y','','Y','','','','','Y','','','','','Reproducable system state','System roll back','','Better introductional material for new users.','GNU Guix','','','','','Y','','','','','','','','','Drone','I don\'t know what “2nix” is.','Y','Y','','','N','Haven\'t had an open source project yet, that I needed and was missing in Nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Heart about it on the Functional Geekery podcast. Wanted reproducable system state.','Y','Y','','','','','','Reproducable system state','rollbacks','','Better introductional material for new users','GNU Guix','Y','Y','','','','','','','','','xmonad','','',''),(1686,NULL,NULL,'en','1122891560',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1687,'1980-01-01 00:00:00',5,'en','2091125342','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1688,NULL,0,'en','544456937','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1689,NULL,NULL,'en','430391130',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1690,NULL,NULL,'en','1500009915',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1691,'1980-01-01 00:00:00',5,'en','2029735440','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I like the declarative aspect of Nix and decided to dip my toes on my Mac.','Y','','','','','','Y','','','','','','','Y','','','','','','Alternative to Homebrew','','','Make Nix have parity with Homebrew. Fix packages that fail to build. Add more packages.','Homebrew','','','','','','','','','','','','','','','','','','','','N','Requires a time investment','N','N','If I had a use for Linux.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1692,NULL,NULL,'en','2144034610',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1693,'1980-01-01 00:00:00',5,'en','635081251','A2','A4','male','','','','','','','Y','','','Y','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','On macOS as a package manager, then migrated to NixOS and never looked back :)','','Y','','','','','Y','','','Y','','','','Y','Y','','','Y','','makes it a breeze to do any work on NixOS','reproductible builds','easy way to give a piece of software a try','Have a tool to understand Nix packages better','Dunno, but I used Docker before for reproductible builds but it\'s a mess','','','','','','','','','','','','','','','','Y','','','','N','Lack of time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','`nix-shell` pulled me in','Y','','','Y','','','','Nix','Easy bootstraping ','Easy upgrades','Nothing really, I like the way it is.','Arch or Gentoo','','','','','','Y','','','','','Sway','','','I truly appreciate all hard work done on Nix and NixOS - I love what you are doing, guys!'),(1694,NULL,2,'en','501577985','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I tried out NixOS and stuck with it.','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Isolated development environments','Reproducible user configuration','Reproducible system configuration','Better documentation','Spack, though it\'s really sub-par compared to Nix!','','','','Y','Y','','','','','','','','','','poetry2nix','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1695,'1980-01-01 00:00:00',5,'en','417332819','A6','A3','male','','','','','Y','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I started using NixOS in 2018 when I was looking for new distros to try. I liked the fact that most of my bio-informatics tools were present and the easy system configuration using nix files.','','Y','','','Y','','','','Y','','Y','','','Y','Y','','','Y','','System configuration in NixOS','Switching between different configurations','Nix shell','Can\'t think of anything I particularly dislike about nix.','Xbps from voidlinux','','','','Y','Y','','','','','','','','','','','','Y','','','N','Lack of knowledge','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I started using NixOS in 2018 when I was looking for new distros to try. I liked the fact that most of my bio-informatics tools were present and the easy system configuration using nix files.','','','Y','','Y','','','System configuration','Switching between different confiurations','','','voidlinux','Y','','','','','','','','Y','Y','','nvd (https://gitlab.com/khumba/nvd)\r\nnixfmt (https://hackage.haskell.org/package/nixfmt)','nixpkgs-fmt (https://github.com/nix-community/nixpkgs-fmt)','Thank you for developing NixOS.'),(1696,'1980-01-01 00:00:00',5,'en','1825738979','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Very interested in the concept to handle dependencies in a clean and safe manner, then once tried, I could not use another distribution / package manager','Y','','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','makes reproducibility easy','very easy to cross compile','enforces good practices to build process and deployment protocols','- ability to print the plan without doing the actual build (what derivations are to be downloaded from a cache server, what needs to be built, ...)\r\n- maybe a closer integration in terms of documentation / package and options search with nix-darwin, home-manager, etc\r\n- ideally more rust in the codebase','I suppose I would stick to deb/rpm and docker containers with a lot of bash scripts','','','','Y','Y','','Y','','Y','','Y','','','','node2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','After a few tests with nix on a ubuntu machine, I felt is was a shame to duplicate the build tools, and wanted the full package.\r\nonce I was reassured by the configuration rebuild process, I switched definitely to nixos all my linux machines','Y','Y','Y','Y','','','','deployment process and methodology','ability to share and adapt configurations','','','I would be very sad now I know NixOS','Y','','','Y','','Y','','','Y','','Sway','home-manager\r\nnix-darwin','','Keep up the good work'),(1697,'1980-01-01 00:00:00',5,'en','1810899156','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','Y','','Y','','','','','','Y','Y','','Y','','declarative','reproduceable','community','','Guix?','','','','','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','declarative','reproduceable','comminuty','','Guix?','Y','','','','','','','','','','i3wm','home-manager, NUR','',''),(1698,'1980-01-01 00:00:00',5,'en','1738801210','A2','A2','fem','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Frustrated with dotfile management and reproducibility; went from nix-darwin -> home-manager -> nixos','Y','','','','','','Y','','Y','','','','Daily driver','','Y','','','Y','','Reproducibilty and ease of keeping track of system config','Configurability from a single place','Easy full-system-config-versioning','Add more integrations with external software configurations --- e.g. Gnome is hard to configure with nix configuration, so you have to use it\'s own GUI configurators\r\nRemove imperative package management --- only complicates core use-cases\r\n','Back to good ol\' Homebrew on Mac, probably, plus a hodge-podge of shell scripts for initial system setup from a dotfile repo','','','','','','','','','','','','','','','','','','','','N','Not confident enough yet','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','Daily driver','','','','','','Y','','','','','','','Y','','Y','','','',''),(1699,'1980-01-01 00:00:00',5,'en','942580069','A2','A3','-oth-','AFAB, agender','','','','','','','Y','','','Y','','','','','','','','','','','','','Y','','','','','Y','','','N','N','I heard from a colleague that it\'s supposed to be very easy to try new versions of packages without creating a mess of broken dependencies, so that sounds nice!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I heard from a colleague that it\'s supposed to be very easy to try new versions of packages without creating a mess of broken dependencies, so that sounds nice!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1700,'1980-01-01 00:00:00',5,'en','1749987429','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started using Nix out a desire for repeatability in my personal configuration, as well as across groups of servers. I felt dissatisfied with the other available options (dotfiles, Ansible, Docker). I had been aware of Nix ~6 years before I really committed. I started with a fully Flakes-enabled configuration, which caused some difficulties.','Y','Y','','','Y','','Y','Y','Y','','Y','Y','','Y','Y','Y','Y','Y','','Declarative configuration','Self-contained portable software \"bundles\" via flakes','Repeatability','Merge home-manager into NixOS.','A lot of random glue that frustratingly doesn\'t integrate.','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','As my primary OS for development machine (so I guess kind of for work?)','A2','Oh gosh, you\'re just going to ask the same questions from the Nix section again. I\'m going to skip ones I already answered.','','','','','','','','','','','','','Y','','','Y','','','','','','','wlroots, River, Sway','Home-manager, cachix','',''),(1701,NULL,3,'en','864035995','A2','A2','-oth-','TransNigger','','','','','','','','','','','','','','','','','','','','','','','','Holocaust Revisionist','','','','','Y','','N','Y',NULL,'NIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGER','NIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGER',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','NIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGER','Y','','','','','','','NIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGER','NIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGER','NIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGER','NIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGER','NIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGER','Y','','','','','','','','Y','','',NULL,NULL,NULL),(1702,'1980-01-01 00:00:00',5,'en','1173965629','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Because NixOS uses it.','','Y','','','','','','','Y','','','','','','Y','Y','','Y','','Declarative configuration','','','I would add more sane errors, they are always hard to parse.','I would be using Arch Linux so most interaction would be through pacman.','','','','','Y','','','','','','','','','','','Y','Y','','','N','Nothing :)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I liked the idea of having a fully declarative system, and NixOS seems like the perfect OS for that.','Y','','Y','','','','','Declarative system configuration.','Garbage collection.','Ease of install.','','ArchLinux','','','','','','','','','','','i3','','',''),(1703,NULL,1,'en','245728498','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1704,NULL,NULL,'en','1860787853',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1705,'1980-01-01 00:00:00',5,'en','1828705443','A2','A5','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Discovered in early 2019, got hooked ever since.\r\n\r\nBasically i like my software and operating system to work. ','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Flakes','reproducablity','nixos tests','remove nix-env\r\n\r\nremove channels \r\n\r\nupdate the nix-pills and documentation \r\n','I\'d probably leave the industry.','','','','Y','Y','','Y','Y','','','','','','','dream2nix\r\ncargo2nix\r\nnode2nix\r\nhaskel2nix\r\nhaskell.nix','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','as previous','Y','Y','Y','Y','','','','flakes','reproducablity','nixos tests','add GUI installer/package manager.','nothing','Y','Y','','','','','nixinate','','Y','','','','','Keep going!'),(1706,NULL,1,'en','1096879449','A2','A3','male','','Y','','','','','','','','','Y','','','','','','','','','','Y','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1707,'1980-01-01 00:00:00',5,'en','1115272709','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','i started using NixOS','','Y','','','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','declarative package management','flakes','packaging','remove nix-env due to it causing undue pain to newcomers','Not sure, i guess pacman(arch pkgmanager) and docker','','','','Y','Y','','Y','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','i was using arch before and i wanted to try something different, once i tried NixOS i couldn\'t go back to normal distros','Y','Y','Y','Y','Y','Y','','declarative system management','easy to contribute to','modules','','Arch','Y','','','','','','','','','','Sway','home-manager\r\nnix-tree\r\nnixpkgs-review\r\nnix-index\r\nnixpkgs-fmt # will switch to alejandra\r\nhydra-check\r\ncomma','',''),(1708,'1980-01-01 00:00:00',5,'en','1877665786','A2','A2','male','','','','','','','Y','','','Y','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I wanted to do something crazy and I broke my previous system','','Y','','','','','Y','','','','','','','Y','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I wanted to do something crazy and I broke my previous system','Y','','','','','','Notebook','','','','','Debian Testing','Y','','','','','','','','Y','','','','',''),(1709,NULL,2,'en','957189164','A1','A2','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I use NixOS on a laptop for production, which means that I use it on the research work (as a graduate student), the schoolwork and the side projects.\r\n\r\nI use Nix as a project manager for production use inside NixOS as well as on CentOS 7 (CERN LXPLUS 7). I use Nix through nix-portable on CERN LXPLUS7.\r\n\r\nI use Singularity/Apptainer to package the build result of the analysis script and all its dependencies before sending it onto the CERN Grid (the HPC facility of CERN) through HTCondor. It\'s extremely slow to operate on many small files on network-based file systems e.g. AFS and CERN-EOS, and thus direct-copy of the store or it\'s gzipped archive would not be feasible.\r\n\r\nI also have NixOnDroid on my Android phone, and use it for quick access to my working progress (and for personal use also).','','Y','','','Y','Android','Y','','','','Y','Y','','','Y','Y','Y','Y','','The ability to run cross-platform and as an unprivileged user.','Ad-hoc, disposable, clean and declarative development shell and package running.','Declarative project management / system management.','1. Add an electron builder to make source-build electron apps possible.\r\n2. Add a crystal ball to detect HFS / imperative-build assumptions, which is the source of all the mess.\r\n3. Implement the system-agnostic configuration file generator (RFC 0078), so that I can have Home Manager on CERN LXPLUS7.\r\n4. Add the functionality to do `nix`- and `nix-store`- related command-line operations from within the build process without building inside a VM. (or make the documentation about the build-time alternative accessible).','','','','','Y','Y','','Y','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','LXQt','','',NULL),(1710,'1980-01-01 00:00:00',5,'en','860978808','A2','A2','male','','','','','','','Y','','','Y','Y','','','Y','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Y','','Y','','','','','','Y','','','Y','','','','','Change the Nix* doc and make it similar to ArchWiki','Arch + Docker containers','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Sway','','',''),(1711,'1980-01-01 00:00:00',5,'en','106762456','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','Y','','Y','','','','','','','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','','','','','','','','','','','','','Y','','','xmonad','','',''),(1712,NULL,1,'en','701281767','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','OpenBSD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1713,NULL,NULL,'en','1736154548',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1714,NULL,NULL,'en','861858318',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1715,'1980-01-01 00:00:00',5,'en','957271901','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','','','','Y','Y','Y','Y','Y','','','Y','Y','Y','','Y','','','','','Flakes: remove git integration (don\'t mess with the staging area, don\'t require stuff to be committed, don\'t treat other vcs and tarballs like second class citezens...), remove github integration, remove lockfile requirement (one may want to eg. have it only on releases), have a way to ensure global consistency.','','','','Y','Y','Y','','','','','','','','','builds.sr.ht','cabal2nix','Y','Y','Y','NUR','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','Y','Y','Y','','','','','','','','','Y','Y','','','','','','','','','awesome, sway','','',''),(1716,'1980-01-01 00:00:00',5,'en','665790580','A5','A3','male','','','Y','Y','Y','Y','Y','','','Y','Y','','','','','Y','','Y','','','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Extremely tired for configuring linux machines and development environments. ','Y','','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative system or server configuration','Declarative environment management','Peace of mind','I would ship flakes to stable ASAP. \r\n\r\nI would find a way to make to specific versioning slightly easier. nixpks.elixir being is okay but at the whims of the nixos-stable gods, would be nice to say elixir = { pkg = nixpkgs.elixir, version = 1.13_0} or something. In elixir latest is VERY stable, rc is unstable. ','Muddle through with brew/apt/asdf and shell scripts, fighting urge to put dev environments into docker. ','','','','','Y','','','','','','','','','','none at the moment. ','','Y','','','N','Too new I think. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','So tired of configuring linux. Every distro and every version putting shit in new places. If you install a package god forbid if you remove it later because it will leave tombstones all over your system. ','Y','','Y','','','','','Declarative system management.','Declarative system management.','Ease of use.','I would make flakes the default configuration steps and rewrite the kinda janky PERL script that analyzes hardware and outputs your hardware.nix.','Pop os probably.','','','','','','','','','','','','home manager ','none so far','Please ship nix into stable. Also stop using weird words for normal concepts like functions and modules and hashes. I know its a holdover from Haskell where everything needs to sound like a friggin disertation but come on, lets go mainstream.'),(1717,'1980-01-01 00:00:00',5,'en','1778245602','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','Y','','Y','','','N','N','A contractor recommended Nix as a solution to manage our software and dependencies. Currently in the process of getting Nix to work on the distro so we can trial this. NixOS itself does not seem to be a viable solution to us as it is basically unknown in the world of custom CPUs.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Currently happy with Debian on my workstation and don\'t currently have hardware to install it on.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1718,NULL,4,'en','1669898723','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(1719,'1980-01-01 00:00:00',5,'en','688055740','A5','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','Regular Use','A2','I started using NixOS because I am a distro hopper and it looked interesting.','','Y','','','','','','','','','','','Laptop','Y','','','','','Daily Desktop Use','Configuration dot nix','Unstable build','Flakes','N/A','I have no idea','','','','','Y','','','','','','','','','','','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Months ago','Y','','','','','','','Configuration.nix','NixOS-rebuild','Unstable','N/A','N/A','Y','','','','','','','','Y','','','N/A','N/A',''),(1720,NULL,1,'en','789332772','A1','A4','male','','','','','','Y','','','','','Y','','','','','','Y','','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1721,NULL,1,'en','209820990','A3','A3','male','','','','','','Y','Y','','','','Y','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1722,NULL,2,'en','789692455','A2','A3','male','','','','','','Y','','Y','','','Y','','Y','','','','','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Read Domens post about chef, Ansible, puppet, nix when trying to choose between them.','Y','Y','','Y','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducability','Everything as code/being a programming language -> DRY','Can check all relevant aspects into source control','Make it easier for \"quick and dirty\"/ imperative work. Nix slows down when wanting to \"move fast\" even when one would be fine with losing the benefits of nix for those cases. Also, having Windows support outside of WSL2 would be nice, but this appears to be really hard. ','Probably Ansible.','','','','Y','Y','','','','','','','','','','npmlock2nix','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1723,'1980-01-01 00:00:00',5,'en','2037743344','A5','A4','male','','','Y','','','','Y','Y','Y','','Y','Y','Y','','','Y','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','i hated that my dev machine would always get crappy and full of so hell, so I looked at several projects to help resolve that. nix solved all my problems, and nixos made my life much better.','','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','','Y','','reproducibility','isolation','rollbacks','more documentation, in particular tldr examples.','guix','','','','','','','','','Y','','Y','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','same story as my nix one, to me they are tied together','Y','Y','Y','Y','','Y','','universal config language','easy systemd extension','up to date packages','more pacakges','guix','Y','','','','','Y','','Y','','','','direnv, flake-utils, nixfmt, nix-emacs-overlay','home-manager, impermanence','thanks for all the hard work'),(1724,'1980-01-01 00:00:00',5,'en','825029162','A2','A6','male','','','','','','','Y','Y','','Y','','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I like to possibility to use specific versions of packages for different projects.\r\nI appreciate the ability to try out new packages without cluttering my system.\r\nI was appealed by the possibility to create reproducible development environments using nix-shell.\r\nI am impressed with the number of available packages, which surpass my host OS (pop-os, macos/brew).\r\n\r\n','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','Declarative environment management','Imperative package management','Build container images','Even easier/better integrations with the environment. Example: I\'m using fish-shell instead of a bash, which could only be solved with some hacking.\r\nAdd more resources for supported hardware, so I could use NixOS.\r\nThough I use nix on a daily basis, I feel not comfortable in the nix language yet. So make it easier to create packages.','Traditional package manager + something like ansible to automate things','','','','','','','','','','','','','','','','','','','','N','I don\'t unserstand the process of contributing.','N','Y',NULL,'1. Problems with X Graphics on my Retina MacBook Pro.\r\n2. Configuration changes require a reboot','It\'s been awhile, so I\'ll try it anyway to see how things have changed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Thanks for your excellent work! Keep it up!'),(1725,'1980-01-01 00:00:00',5,'en','1969831161','A2','A4','male','','','','','','','Y','Y','','Y','Y','Y','Y','','Y','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Been living too long on linux systems which degraded over time, accumulating forgotten packages and library inconsistencies after upgrades.\r\nFound out by accident that nix allows setting up tailored dev-environments, tool ','','Y','','','Y','','Y','','','','','','','','Y','Y','Y','','','Sane management of installed software and settings (home-manager)','Reproducable development environment','Rollback after misconfiguring my environment','Make the language more approachable and make documentation with idiomatic practices appear.','A great number of version-management tools for installed dependencies. nvm, jenv,...','','','','','Y','','','','','','','','','','https://github.com/jskrzypek/clj2nix\r\nhttps://github.com/svanderburg/node2nix\r\nhttps://github.com/tadfisher/gradle2nix','Y','','','','N','- strongly different approaches per derivation\r\n- I don\'t feel I understand nix well enough to contribute, everything I build feels just hacky','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','After using nix to clean up cluttered linux installations I quickly decided to switch to NixOS completely.','Y','','','','','','','Declarative system configuration','Declaratively mixing stable and unstable branches','Rollback capability','An install script for auto-partitioning','Manjaro','Y','','','','','','','','Y','','xmonad','','',''),(1726,'1980-01-01 00:00:00',5,'en','339109103','A1','A3','-oth-','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','When I was an undergraduate, one of my friends, who has been a Nix user, recommended NixOS.','','','','Y','','','Y','','Y','Y','','','','','Y','Y','Y','Y','','Reproducible development environment.','Declarative container definition via dockerTools.','Nix flakes for official pinning.','Most importantly, more user-friendly error reporting while evaluating Nix expressions. Errors should give enough context and be very readable. It would be nice if there is an option to evaluate strictly because it would help trace the evaluation from the start to the end and expose every mistake. Actually, I do not like the use of fixed points based on lazy evaluation such as overlays and NixOS configurations because it\'s super easy to accidentally introduce an infinite recursion.','package managers for programming languages','Y','','','Y','Y','','','','','','','','','','crate2nix\r\nnaersk','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','My friend recommended NixOS.','Y','','Y','Y','','','','Declarative OS configuration.','Rollback.','','An easy way to discover and learn NixOS options.','Regular Linux distro.','Y','','','','','Y','','','Y','','','I use Cachix for hosting a public cache for development artifacts. It\'s pretty easy to set up and allows me to reuse the same cache in my local dev environment and CI.','',''),(1727,NULL,1,'en','1880313489','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1728,'1980-01-01 00:00:00',5,'en','61390726','A2','A3','male','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I am interested in functional programming, and was aware of Nix. I rarely upgrade my hardware, so when I got a refurbished Thinkpad around 2013 I decided to install NixOS on it. I\'ve since used it extensively.','Y','Y','','','','','Y','Y','','','Y','','','Y','Y','Y','Y','Y','','Reproducibility (if it works on my machine, it will work for others)','Git integration (e.g. `import (fetchGit { ... })`)','Ability to easily override/swap-out/patch/etc. dependencies','Consistent sandboxing would be nice; e.g. builders might work on macOS, but fail on Linux (e.g. if there\'s a `#!/bin/sh` somewhere).\r\nStandardising hashes would be nice too (e.g. SRI hashes everywhere)\r\nPrivate binary caches are a bit tricky; e.g. my work would like to push build products to an S3 bucket; but pulling those down is tricky (e.g. if we use one set of AWS credentials to access the cache, that may conflict with credentials used for software deployment; which complicates the \"build and deploy\" process).\r\nRelying on third-party hosting is also problematic. When Microsoft bought GitHub, many people deleted their repos; that caused a lot of breakage in my projects, since I try to pin all dependencies and use git commit IDs as unforgeable version numbers. Changing GitHub URLs (e.g. to GitLab, or wherever they\'ve moved to) was simple, but it required new commits in my repos; and any references to those commits had to be updated; etc. I also had some experimental results and benchmarks which were identified by git commit; those became un-reproducible since the referenced commit doesn\'t contain the new git locations :(\r\nIt would be great to see something like IPFS used, e.g. to fetch sources and potentially as a global binary cache. That way, sources will still be resolvable at the same location, even if the original hoster disappears (even if I end up hosting it myself)','At the \"project level\", probably Make (or an alternative with nicer syntax, like Ninja). At the \"system level\", probably APT.','','','','Y','','','','','','','Y','','','Laminar','https://github.com/fzakaria/mvn2nix','Y','','','','N','Perceived burden of maintenance, I suppose? I\'m happy to throw code on to the Web; and to collaborate with others; but I don\'t feel comfortable having others rely on me to fix things.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','I bought a refurbished Thinkpad around 2012 (the first FSF-certified \"Respects Your Freedom\" laptop). It came with Trisquel GNU/Linux, but I knew I wanted a different OS, and decided to jump in at the deep end with NixOS. The installation was a bit tricky, since the machine had no CD drive; I managed to install NixOS by running the install CD inside Qemu (not recommended, since both the host and guest OS were writing to the same /dev/sda drive!).\r\nThat laptop is still running NixOS, although upgrading is a bit of a mine-field, since it\'s on `i686-linux`, which many packages no longer support (and even those which do can run into problems; e.g. crypto library test suites failing due to subtle differences between i686 and x86_64).\r\nI keep my NixOS config in git ( https://github.com/warbo/nix-config ) and am currently adapting it for my Pinephone (I can get it to boot NixOS to a text console, but haven\'t built a fully-featured image yet). Some of the options in that config were chosen by the original hardware-scan, which ran in Qemu, and may actually be unneeded/unsuitable for my physical machine!','Y','','','','Y','','','Atomic upgrade/rollback','Declarative config (even if it\'s just \"write the following to a text file\")','Easy importing of other\'s config from git','I miss the i686 binary cache :(','Debian','Y','','','','','','','','','','XMonad','https://hackage.haskell.org/package/nix-derivation (for the \'pretty-derivation\' command)\r\nhttps://hackage.haskell.org/package/update-nix-fetchgit\r\nhttps://github.com/nmattia/niv','','I am hugely grateful for Nix, Nixpkgs, NixOS, etc. and the effort that goes into them. I\'ve been using it personally for almost 10 years, I\'ve used it for academic research (building custom software, defining data processing tasks, rendering LaTeX documents, etc.), and I\'m now introducing it to a commercial workplace.\r\nThere are some parts of Nix I don\'t yet \"get\" (e.g. I\'ve looked at Flakes a few times, but don\'t get the appeal), but the underlying idea of Merkle trees for build instructions and runtime dependency graphs is remarkably powerful! '),(1729,'1980-01-01 00:00:00',5,'en','1593802658','A2','A4','male','','','','','','Y','Y','Y','Y','','','','Y','','','','Y','Y','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Because I needed reliable atomic rollback without full server rebuild','','Y','','','','','Y','','','Y','','','','','Y','','','Y','','atomic rollback','abstraction for building and deploying software that is powerful, complete and reliable','ephemeral dev environments','enough types to get discoverability and static analysis up scratch s.t. having to become an expert in the nixpkgs source is not a requirement for productivity.','terraform and shell scripts.','','','','','','','','','Y','','','','','','','Y','','','','N','I haven\'t needed to yet. I am sure I will in future.','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','complete packaging story, atomic rollback, declarative management of all aspects of the system, extensibility','','','','Y','','','','atomic rollback',' declarative management of all aspects of the system','extensibility','I\'d like the package pinning / channel /profile story to get sharpened up in terms of experience. Less environment variables, more configuration files. ','amazon linux','Y','','','','','','','','','','bspwm','','','Flakes is a mistake in the sense of biting off too much at once. Attacking reproducibility of builds by eliminative environment variables, improving meta type annotations for functions and the like (the same way as is done with options / config in nixos) and building out a high quality language server protocol implementation that could connect to the current nix store are all things that would move the ecosystem forward more cohesively and decisively and improve adoption much faster than a big ecosystem reset, imo. That said I\'m _very new_ here, so I\'m probably missing important context.'),(1730,NULL,NULL,'en','2006556622',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1731,'1980-01-01 00:00:00',5,'en','260737398','A5','A6','male','','Y','','','','Y','','','','','Y','','','','Y','','','Y','','','Y','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Got bored and wanted to try something that would expand my mind.','','Y','Y','','','Illumos','Y','','Y','Y','','','workstations','','Y','Y','Y','Y','','Declarative system configuration','Reproducibility','Development environments','','I was using Ansible but please don\'t make me go back!','','','','','','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Got bored and wanted to try something that would expand my mind.','Y','','Y','Y','','','','Declarative system configuration','Reproducibility','Development environments','- Make minimum NixOS installations truly small. NixOS has the potential to be the killer embedded systems or IoT platform except that the minimum installation is over 1 GiB (for comparison Alpine is 800M). At one point, I was able to trim Debian Lenny down to about 200 KiB. The smaller the better for such little systems.\r\n- Better and more clear separation between what has to be in /etc/nixos/configuration.nix and what can (and in my opinion, should) be configured by users using home-manager. I want to configure as little as possible globally and leave as much configuration as possible to users.\r\n- Refactor Nixpkgs to use higher level functions/modules to make it easier to understand and more uniform (which will help with the first wish)\r\n- Build something like flakes into Nixpkgs, not as a separate wrapper.\r\n- Better documentation. The NixOS manual is a good reference but not a good tutorial, howto, or explanation. See https://documentation.divio.com/\r\n- Looking forward to Nickle or some other typed-configuration language. (Dynamic typing is great for ease of use and small things but Nixpkgs is not longer small. We need static types to catch errors before building derivations.)\r\n- Easier to build a complete system against MUSL. (Once again, for small systems.)\r\n- Port Nix and Nixpkgs to non-Linux platforms, BSD, Illumos, Redox, for example.\r\n','- Used Debian for 18 years. Still like it (assuming I\'m willing to give up declarative configuration... which I am not).\r\n- Illumos-based distros. Linux has 80% solutions to 80% of Illumos but the other 20%s matter.\r\n- Ultimately, I want to be running a microkernel OS (like Redox perhaps) with everything possible, including drivers and services, configured and running outside the base. (This is the root/user separation idea in the previous question taken to the extreme.) The deterministic configuration Nix affords would be an excellent basis for such a system! \r\n','','','','','','','','','','','i3, sway','','','Thank you to all who work on Nix and NixOS. It has radically changed how i think about computing. All other approaches seem to antiquated to me now.'),(1732,NULL,NULL,'en','1715904863',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1733,'1980-01-01 00:00:00',5,'en','1856223066','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','Y','','Y','Y','OpenBSD','N','N','I see pluses of Nix\r\nI wont to try Nix on my FreeBSD and OpenBSD servers but im worried about compatybility (Nix Doesn\'t have official support for OpenBSD)\r\n\r\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I tried to learn the basics of most linux server distributions and improve my competences','Now i see more pluses of NixOS\r\nI wont to install NixOS on my test servers and see more how it works',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1734,'1980-01-01 00:00:00',5,'en','1907188103','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Declarative OS set up','','Y','','','Y','','Y','','Y','','','','','','Y','Y','','','','Declarative system config','Discoverable features','Consistent environment between developer machines','The syntax is awful. I like lisp, I\'ve been writing code for 15 years. It took me a very long time to internalise the syntax.\r\n\r\nThere\'s not enough documentation for /actually doing things/. A lot of things are possible, but it\'s hard to work out how to do them (e.g. I\'d like to build containers for deploying built stuff, but I can\'t figure out how to share my store into docker (or something else) to get a quick build).','In prod, something crappy like chef/puppet.','','','','Y','','','','','','','','','','','','Y','','','','N','It\'s not obvious how to do stuff.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Declarative OS','Y','','Y','','','','','','','','','Debian','Y','','','','','','','','','','xmonad','','','The project is cool, and I\'d like to master it. But I frequently get stuck when I try, because the surface area of the project is large, and it\'s hard to find a good route into it.\r\nThere\'s a lot of good resources scattered around, but there\'s nothing like the arch wiki for /just using nix/. It\'s easy to cargo cult other people\'s working things, and I guess I\'ll go from there.\r\n\r\nIt reminds me of my first few years with git. I recognise it\'s a powerful tool, but I don\'t really understand how to use it, or what the \'primitives\' are, so I just do simple stuff and hope that I learn things.'),(1735,NULL,1,'en','1221359187','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1736,'1980-01-01 00:00:00',5,'en','798504834','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Security engineer','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','I\'m an hobbyist. I was looking for the RIGHT system to run a personal server when I discovered NixOS as a whole.\r\nI gave it a chance for its reproducibility promises and the availability of an up-to-date nghttpx which i wanted to use.\r\nThen I discovered the service modules (so easy to add fail2ban for example).\r\nThen I managed to switch to a grsec-hardened kernel (a thing of the past now) with just some lines in my configuration.nix and a reboot.\r\nOf course I got hooked to the whole experience, not just \'nix\' the tool. :)','','','','','','','','','Y','','','','','','','Y','','Y','','Big number of up-to-date packages and the possibility to have more than one version of the same tool','Possibility to roll back to a previous working config','Overrides and overlays','-','Not sure... maybe VoidLinux or GoboLinux','','','','Y','','','','','','','','','','none','none','','','','I don\'t :)','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Same story as nix, I discovered the whole ecosystem as a whole','','','Y','','','','','see nix','see nix','see nix','-','Maybe VoidLinux or GoboLinux','Y','','','','','','','','Y','','','nixpkgs-review','-',''),(1737,'1980-01-01 00:00:00',5,'en','960577168','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Found it when starting my studies and realized that it solved a lot of problems I had with install/update cycles on linux/windows. so I used nixos as a daily driver from then on and learned nix on the side','','Y','','','Y','','Y','','Y','','','','','','Y','Y','Y','Y','','Reproducibility (in this case meaning: as close to mathematical reasoning as possible for real world application packaging and system management)','strive towards purity (e.g. with flakes)','','fix the discrepancy in mixed teams (nixos and linux+nix) when using nix-shell in the same repo for tools that need `buildFHSChrootEnv` or similar on nixos while they work well on other distros (e.g. when working with packages from the JS world through any node-to-nix abstraction)','despair and use what I have to','','','','Y','Y','','Y','','','Y','Y','','','','https://input-output-hk.github.io/haskell.nix/\r\nhttps://github.com/cachix/elm2nix\r\nhttps://github.com/stephank/yarn-plugin-nixify','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','it was a better solution to testing software and removing it again without having to reinstall the whole OS after a few tests','Y','','Y','','','Y','','reproducability','discoverability of options/settings and packages','splitting between hardware and software config, so all my machines get the same feel independent of hardware/architecture','encrypted file/secret handling without manual intervention','btrfs suvolumes and backups... alot of them\r\nand usb-sticks with recovery tools','Y','Y','','','','','','Y','','','xmonad, sway','','','keep up the good work on improving UX for mere mortals!'),(1738,NULL,NULL,'en','803272347',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1739,'1980-01-01 00:00:00',5,'en','1448992075','A2','A3','male','','','','','','','Y','Y','Y','Y','','Y','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Started using Nix by starting to use NixOS','','Y','','','','','Y','','Y','Y','','','Home router','','Y','','','Y','','Pure build environments','Reproducible builds','Build automation','Enabling content-addressed inputs for a user-chosen subset of Nixpkgs','Containerization / Podman','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It was my first foray into desktop Linux. I was looking for a system that would mostly painlessly stay up to date, without system state breaking.','Y','','Y','Y','','','Home router','Atomic system updates','System rollbacks','Modules abstracting over configuration formats','More ergonomic software version pinning','Arch Linux','Y','','','Y','','','','','','','AwesomeWM','- agenix','- lorri: moved to Nix flakes\r\n- NixOps: moved to deploy-rs','At this point, I can\'t see myself using anything other than Nix and NixOS!'),(1740,NULL,1,'en','100127313','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1741,'1980-01-01 00:00:00',5,'en','166337064','A1','A2','male','','','Y','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','','','','Y','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','a gentoo user i am watching switch to nixos','','','','Y','','','','configuration.nix','customizable and binaryCache','rollback ability','sign and verify nixexprs.tar.xz','saltstack, rsync','Y','','','','','','','Y','','','','nix serve','nix-env','it’s great to have systemd services being installed along with packages always but not enabled sometimes. setting systemd.services.xxx.wantedBy to lib.mkForce \"\" is weird..'),(1742,NULL,1,'en','394329784','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1743,'1980-01-01 00:00:00',5,'en','882209736','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I’ve discovered it through Cardano, then started to use it to manage my development environment on macOS, then used it to manage my user environment with home-manager, helping me to share my config between home and work machine, then went full NixOS because I loved so much how easy it is to describe a full system configuration with it.','','','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative environment','Reproducibility','Integration with all languages','','','','','','','','','','','','','','','','','mixnix: https://gitlab.com/manveru/mixnix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Same as for Nix, this is just the continuation of the story.','Y','','Y','Y','','','','Full declarative configuration','Composition (to share the configuration between machines)','Seemless upgrades','I would add support for other kernels, like Illumos or FreeBSD.','FreeBSD (or maybe Illumos)','Y','Y','','','','','','','','','bspwm','vulnix','','Thank you :)'),(1744,NULL,2,'en','1129519473','A2','A3','male','','','','','','','Y','','','','','','','','','Y','Y','Y','','','','Y','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','Y','','Reprocuceability','Convergence towards what is desirable','Readability','I would like for Nix/NixOS to have as good error messages as Elm.','Don\'t know, Guix perhaps.','','','','','Y','','','','','','','','','','','Y','Y','','','N','I don\'t really know how it works, and don\'t really know if my packages are good enough.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1745,'1980-01-01 00:00:00',5,'en','1989618685','A5','A3','male','','','Y','','','Y','Y','','','','','','','','','Y','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','After years of working on reproducible developer environments, I wanted to try NixOS to canonicalize my environment in code.','Y','Y','','','Y','','Y','','Y','','','','','','Y','Y','','Y','','Declarative environment management','Hermetic, reproducible builds/environments','Cross-platform build targets','Remove nix-env. It\'s confusing for new users and often not what they want.|\r\nPromote nix-commands out of experimental and make flakes the default.','Bespoke scripts.','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I wanted a deterministic, reproducible system configuration shared across multiple systems.','Y','','Y','Y','','','','Determinism and reproducibility','Mixing stable, unstable and custom channels seamlessly.','','Merge/combine NixOS, nix-darwin and possibly home-manager into a single encompassing system management tool.','','Y','','','','','Y','','','Y','','','nixdirenv, flox, nixery','lorri','<3'),(1746,'1980-01-01 00:00:00',5,'en','2014177133','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','Y','','Y','','','N','Y',NULL,'Did not got the time to discover Nix and was a bit lost with the documentation but this was few month ago so I can\'t tell precisely what was not handy for me...','Nix is refreshing and practical (when you got it, like for everything hé ) to use, a lot of great ideas, a good community.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Did not got the time to discover Nix and was a bit lost with the documentation but this was few month ago so I can\'t tell precisely what was not handy for me...','Nix is refreshing and practical (when you got it, like for everything hé ) to use, a lot of great ideas, a good community.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nothing that I\'m aware of.','Nothing that I\'m aware of.','Thanks for the work :) A lot of respect for you and the community of this project ecosystem'),(1747,'1980-01-01 00:00:00',5,'en','1921365954','A2','A2','male','','','Y','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','Y','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','Y','','Y','','','','','Y','','','Y','','reproducibility','reliability','`easier` updates','','Centos, Rocky Linux, Archlinux','','','','','','','','','','','','','','','','','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','','','','','Y','','','','','','','','','','','','','','Y','','','','','','nixos mailserver','',''),(1748,'1980-01-01 00:00:00',5,'en','1203551297','A2','A4','male','','','','','','','','','Y','','','','','','','','','','','','','','','','Lead Consultant Embedded Security','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking for an upgrade path from Win7 on my private desktop when Win7\'s EOL came near. I pondered Arch, Void, Debian. As I had (beginner level) contact with Bitbake/Yocto and Haskell, Nix seemed quite manageable for me. I tried a few weeks with dual-booting NixOS from an old HDD on USB, then did the switch.\r\nSo starting Nix was one step with starting NixOS.','','Y','','Y','','','Y','','','','','','Home Desktops/Laptops','','Y','','','Y','','Declarative system management.','Reproducibility.','One language for everything.','Add: \"Declarative (pure) impurities.\" -> Some sort of path overloading in the store, such that e.g. scanner-fw-blobs can be added to SANE without having to rebuild Gimp.','Guix. But I don\'t like the Scheme syntax. Thank god Nix exists.','','','','Y','','','','','','','Y','','','','','Y','','','NUR','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Managing family laptops.','A3','See the Nix story. Win10 was a no-go for my personal machines. Win7 was EOL. Arch bit me a few times on the Chromebook. Debian was sometimes not up-to-date enough. The declarative approach was what got me as I have a tendency to mess up systems by installing/removing stuff in an imperative way.','','','','','','','Desktop','Declarative Management.','Rollbacks.','Atomic updates. Pre-build all on one machine, then push put to family laptops.','Add: A setup assistant tackling disk partition.','Probably Debian, Arch or Void.','Y','','','','','Y','','','Y','','LXQt, Sway','NUR, the NixOS Discourse forum','','Thank you!'),(1750,'1980-01-01 00:00:00',5,'en','613404004','A5','A3','male','','','','','','','','','','Y','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','I was looking for a reliable way to duplicate/manage development tool installations across multiple machines.','Y','','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative package management','Declarative system configuration (environment variables, aliases, git config, etc)','','I would add \'/usr/bin/env -S\' support to `patchShebangs` (see: https://github.com/nixos/nixpkgs/issues/77539). I am prevented from being able to use node2nix for several work projects because of this. I would also better options for debugging with the Nix language, either through static analysis or better evaluation-time error messages, or both. As a relative newcomer to Nix I find it very difficult to find and fix problems when I am trying to set up an overlay or make a configuration change/addition.','Guix. If that didn\'t exist I would use a hacked-together mix of shell scripts, Docker, Vagrant, and Fedora Silverblue.','','','','','','','','','','','','','','','node2nix (https://github.com/svanderburg/node2nix)','Y','','Y','','N','Not enough free time to learn the idiosyncratic Nix language and complex but inconsistently documented packaging idioms well enough.','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','To set up a server for per-project isolated development environments.','Y','','Y','','','','','Declarative environment package management','Environment isolation','','I would add a way to allow nix to more easily manage containerized environments akin to Toolbox on Silverblue (https://docs.fedoraproject.org/en-US/fedora-silverblue/toolbox/)','Guix or Fedora Silverblue. I might actually switch to Silverblue soon. I love the declarative focus of Nix in general but when I need to figure out how to do something new with my configuration it seems really difficult and time consuming to reach the point where I achieve the desired result.','Y','','','','','','home-manager','','','','','nix-darwin (https://github.com/LnL7/nix-darwin)','','Overall I love Nix and its community and hope that it has a bright future!'),(1751,'1980-01-01 00:00:00',5,'en','1511898002','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','My initial drive to adopt NixOS came from wanting a better configuration management scheme for my VPSs on hosted providers instead of using puppet or shell scripts. This evolved from locally-defined configuration.nix files, to nixops, and now colmena for building and updating. This has since bled over into nix proper for sandboxing and software builds and my daily drive on Framework laptop.','','Y','','','Y','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','Reproducibility (i.e., I can reliably rebuild projects or systems with a flake.nix file)','Uniformity (I find value in configuring my OS, build steps, packages, and sandbox environments with one system)','Utility (breadth of packages, functions like dockerTools, managed services for NixOS configs, etc.)','First would be complete arm32/arm64 support. I have many, many ARM hosts but support isn\'t sufficiently complete to migrate over yet.','Probably asdf for build tool sandboxing and Arch for operating systems.','','','','Y','Y','','','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','As a way to have better configuration management, as I\'m fairly dissatisfied with all other options out there.','Y','','Y','Y','','','','Suites of service configurations (to manage services like postgres or docker at a high level)','Core nix functionality (that is, ability to build and \"switch\" as atomic steps)','Breadth of packages','Full support for ARM.','Probably Arch Linux.','','','','','Y','','','','','','i3','haskell.nix','nixops (sparse documentation, some lacking features)','Keep up the great work!'),(1752,NULL,1,'en','1056893501','A3','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1753,NULL,1,'en','36091370','A3','A3','male','','','','','','Y','Y','','','','Y','','','','','Y','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1754,'1980-01-01 00:00:00',5,'en','995081494','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Because I started using NixOS.','','','','Y','','','Y','','','','','','','','Y','','','Y','','Declarative system configuration.','Nixpkgs.','Declarative environment management.','More (beginner friendly) documentation and learning resources.','Xbps.','','','','Y','Y','','','','','','','','','None','cabal2nix (https://github.com/NixOS/cabal2nix)','Y','Y','','','N','I do not think I have skill sets required to contribute to nixpkgs and I have no idea where I should start.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I learnt about NixOS on a reddit thread. At that time, I just migrated from Ubuntu to Arch Linux because of its configurability and more up-to-data package repository. However, I soon lost track of all the system configurations I made and found it hard to recover my system when something broke. Having read the documentation of NixOS, I figured it would be easier to try tweaking system settings on NixOS to my liking due to its declarative nature and the ability to roll back. Additionally, the nixpkgs unstable channel offered a comprehensive collection of recent enough versions of packages for me.','Y','','','','','','','Declarative system configuration.','Nixpkgs.','','More (beginner friendly) documentation and learning resources.','Arch Linux, Ubuntu, Void Linux or Fedora (in no particular order)','Y','','','','','','home-manager','','','','Sway','Home-manager.','Crate2nix.',''),(1755,NULL,3,'en','1070742858','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1756,NULL,1,'en','1607737430','A1','A3','male','','','','','','','','','','','Y','Y','','','Y','','','Y','Y','Y','','','Y','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1757,NULL,2,'en','1120452129','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I started using Nix because of NixOS','','','','','','','Y','','','','','','','','Y','Y','','Y','','The ability to have multiple versions of packages side-by-side for testing etc','packaged software works on any distro','Building third party packages usually works with no effort, as long as flake.lock exists','Some good performance analysis tools would be nice. How about some flame graphs? Tell me how to speed up my nixos rebuilds without guesswork.','Probably docker','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It always bothered me that operating systems develop cruft over time. When I heard about nixos it sounded perfect for fixing that','Y','','Y','','','','','Nixos doesn’t get crufty over time','I don’t need to log into my servers to know how they are configured. This allows my workflows to scale better','Knowing I can undo config changes usually allows me to not worry about trying stuff.','','','','','','','','','','','','','',NULL,NULL,NULL),(1758,NULL,NULL,'en','1733500876',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1759,'1980-01-01 00:00:00',5,'en','792574244','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','This is a friend that show me how to deploy same server one million time with just a declarative configuration','','Y','','Y','Y','','Y','','Y','','','','','Y','Y','Y','Y','Y','','Nix flake','Declarative configuration','Container configuration ','Add nix command to stable','Probably coreos','','','','Y','Y','','Y','','','','Y','','','','','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Same as nixos','Y','','Y','','','Y','','','','','','','Y','Y','','','','','','','','','i3','','',''),(1760,'1980-01-01 00:00:00',5,'en','84858373','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','A lot of Packages are there','','','','','','','','','','','','','Home Desktop','Y','Y','','','','','Package Count','Relyability','Rollback','I dont know','packman or nothing','','','','','','','','','','','','','','','','','','','','N','Im not smart enough','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Also for Package count and rollback','','','','','','','Home Desktop','Rollback','Automatic update','reproducable','not much','Arch maybe','Y','','','','','','','Y','','','','','','Thanks for your work :)'),(1761,'1980-01-01 00:00:00',5,'en','1349797522','A2','A5','-oth-','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','','','','','Y','','','','','','','Y','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','','','','','','','','','','','','','','','','','','','','','','','',''),(1762,NULL,2,'en','1058934123','A2','A4','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Tired of re-installs to cleanup upgrade leftovers. Wanted to have a recipe to rebuild OS configuration rather than configuring everything by hand. Wanted to have option to rollback to previous configuration.','','Y','','','','','Y','','','','','','','','','','','Y','','Knowing the exact state of the current configuration.','Rollback to previous configuration versions without hassle.','Ease to rebuild current configuration in an automated way (e.g. when installing a new machine).','Better documentation around recipes and configuration options. When installing software, many times I find myself looking at the recipe source to find out what can be configured. Would be great if this could be auto-documented.','Manjaro Linux','','','','','','','','','','','','','','','','','','','','N','Maybe the learning curve to learn about building / extending the recipes. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1763,'1980-01-01 00:00:00',5,'en','843872333','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Machine configuration as code, reproductible build','','Y','','','','','Y','','','Y','','','','','','Y','','Y','','Declarative setup as code','','','Improve helpers to build derivations\r\nReduce basic nix system size (splitting modules ?)\r\nImprove hardware support\r\nPublish best practices guide to organize nix system files','Debian','','','','','Y','','','','','','','','','','','','Y','','','N','I\'m not sure my work follows bests practices','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','','','Y','','','','','','','','i3','','','Keep going guys !'),(1764,NULL,NULL,'en','1943979925',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1765,'1980-01-01 00:00:00',5,'en','2131786196','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','Team lead, architect','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I faced problems with Homebrew on Apple\'s M1 Pro and decided to change package manager to something more reliable','Y','','','','','','Y','','','','','','','Y','','','','','','reproducibility of environment','','','1. I would like to have more naive and easy script language to enrol my environment by one click. Current approch is to hard\r\n2. If I can use some language like Haskell to script my shell it will be better\r\n3. Also I\'m irritating about reinstall nix every time when I update macOS :( \r\n4. Also I want more clear way to install packages from other package managers via Nix','Docker','','','','Y','','','','','','','','','','','','','','','','N','Specifically not clear language ','N','N','Because I\'d like to stay in Apple\'s ecosystem via macOS / iOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Please do something to fix regulary reproducible reset Nix after macOS update'),(1766,NULL,1,'en','1770500605','A4','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1767,'1980-01-01 00:00:00',5,'en','1566685224','A2','A3','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted better reproducibility and automation in system setup and in dev enviroments.\r\n\r\nAnd i like the idea and concepts of the nix package manager. ','','','','','Y','','Y','','','','','','','Y','Y','Y','Y','Y','','Declarative dev environments','creating docker containers from nixos configurations','','* add rendering nix expressions to a dataflow picture (ideally interactive so that one could see which part of the expression is currently evaluated)\r\n* recursive nix for better caching\r\n* flakes in stable nixos','self contained binaries\r\n\r\ndocker','','','','','','','','','','','','','','concourse (containers built with nix)','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I needed to setup a new system and wanted something declarative and reproducible','Y','','','','','','','single declarative source of configuration','rollbacks','','better discoverability of options\r\n\r\ngraphic card should \"just work\"','arch linux','Y','','','','','','','','','Y','i3','','','thanks for these great tools\r\n'),(1768,NULL,3,'en','1054833491','A1','A2','fem','','','','','','Y','','','','Y','','','','','','','','Y','','','','','Y','','','Y','Y','','Y','','iPadOS','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','A friend had been talking about nix once in a while. I had a few weeks on holiday so I spent 2 weeks bashing my head against it.','Y','Y','','','','','Y','','Y','','Y','','','Y','Y','Y','','Y','','','','','','Docker','','','','Y','Y','','','','','','','','','','','','Y','','Patches applied on the flake','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A3','','Y','','','','','','','','','','I\'d love to be able to bootstrap the nixos image more easily in the cloud, especially outside the major providers.','','Y','Y','','','','','','Y','','','',NULL,NULL,NULL),(1769,NULL,1,'en','188168336','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1770,'1980-01-01 00:00:00',5,'en','783538085','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','','','Y','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend used it for ocaml development and raved about how great it is. So I tried it on my Mac and installed home-manager and was immediately sold. When I later switched workplace I went with NixOS and except for a short stint using windows with NixOS in WSL I\'ve been using it for a year now.','Y','Y','','Y','','','Y','Y','Y','','','','','','Y','Y','Y','Y','','Reproducible dev environments for multiple projects','Declarative system configuration including rollbacks for when I\'ve experimented too much','Server management including remote deploys with flakes','','Some arch based distro as my OS and esy as my package manager for OCaml development.','','','','Y','Y','','','','Y','','Y','','','','https://github.com/serokell/nix-npm-buildpackage','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was already sold on nix using home-manager on macOS so when I changed work I started using NixOS','Y','Y','Y','','','','','','','','','Arch','','','','','','','nix flakes','Y','Y','','','Cachix','',''),(1771,'1980-01-01 00:00:00',5,'en','310697228','A2','A2','male','','','','','','Y','Y','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I don\'t remember how I became aware of Nix. I started using it because of declarative OS management + build experience Nix promises.','','Y','','','','','Y','','','Y','','','','','Y','Y','Y','Y','','Declarative system management','nix-build for \"native\" software','nix-build for docker images','- Add static types (or, at least, good type infer mechanism)\r\n- Operators a la https://agda.readthedocs.io/en/v2.6.2.1/language/mixfix-operators.html\r\n- IPFS support','- stack, cargo, npm and docker for building\r\n- Fedora with default package manager for OS','','','','','','','','','','','','','','','https://github.com/kolloch/crate2nix','Y','','','','N','So far - not enough free time :)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Same as Nix','Y','','','Y','','','','Declarative OS management','','','','Fedora','','','','','','','','','Y','','','https://input-output-hk.github.io/haskell.nix/','https://github.com/nix-community/naersk','Thank you for you work <3'),(1772,'1980-01-01 00:00:00',5,'en','1883668414','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','While I was using arch linux, I wanted to download taffybar, but it had broken packages and in the readme page i saw nix syntax for the first time which had nix overlay for taffybar.After googling about nix , I found nixos.org , the homepage of nix and nixos and at first sight , I saw words like declarative,purely functional os and being a devotee of haskell , I immediately downloaded nixos and since then I never looked at other linux distro','','Y','','','','','','','Y','','','','','','Y','Y','','Y','','declarative','transparency','reproducibility','Nothing\r\nBecause i don\'t know everything about nix','native package manager(e.g. apt for ubuntu)','','','','','Y','','','','','','','','','','cabal2nix','Y','Y','','','N','I have very limited knowledge about nix and i use nix only for managing for my desktop setup configuration','Y',NULL,NULL,NULL,NULL,'A1','','','','','A3','I never used nix on other machine , I directly got into nixos after knowing that it is an purely functional os','','','Y','','','','','accountability','reliability','transparency','add proper documentation','Arch linux','Y','','','','','Y','','','','','xmonad','home manager','Nothing','please add proper documentation'),(1773,'1980-01-01 00:00:00',5,'en','668442730','A2','A2','male','','','','','','','','Y','Y','','Y','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I started using it via NixOS because i needed a way to deploy my computer configuration easily.','','','','','Y','','Y','','','','','','','','Y','','','Y','','','','','Maybe add more way to minimize storage consumption','','','','','','','','','','','','','','','','','','','','','N','I don\'t have the occasion to ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1774,NULL,3,'en','1995464063','A4','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Normal user ','','','','Y','Y','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1775,NULL,1,'en','2033798126','A2','A3','male','','','','','','','Y','Y','Y','Y','Y','','Y','','','','','Y','','','','','Y','Y','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1776,NULL,1,'en','519401986','A5','A3','male','','','','Y','','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1778,'1980-01-01 00:00:00',5,'en','2035135821','A2','A3','male','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was fed up with other package managers. And I loved the philosophy of nix package management.','','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','Deterministic package management.','Rolling back broken updates.','Per-project configurability of packages used.','I would add an extremely user friendly GUI to manage which softwares I want to have installed. Possibly with which configurations. Then commit it into github and replicate it on a different machine when needed.\r\n\r\nI guess it\'s more about NixOS than Nix?','I was using Gentoo/Sabayon before NixOS.','','','','','Y','','','','','','','','','','','','Y','','','N','I don\'t have time and knowledge to do anything but very low-hanging fruits.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','My Sabayon package management was getting very annoying to maintain, and it got broken at some point. I was fed up with package managers and wanted something more deterministic.','Y','','','','','','','','','','GUI','Gentoo/Sabayon probably. Maybe Debian. Or Ubuntu even.','Y','','','','','','','','','','i3','','Nix build system as a replacement of Makefiles / ugly shcripts. Would love to, but it was too difficult to learn without extensive documentation and with much complicated syntax and structure. An easier way to automate the boilerplate stuff and guide the users would have been nice.',''),(1779,'1980-01-01 00:00:00',5,'en','2068517530','A5','A4','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','System at new job is built on it.','Y','Y','','','','','Y','Y','Y','Y','','','','','','Y','','','','hermetic build','remote build','global cache','Make remote build robust, reliable, efficient, with good diagnostics and documentation.','bazel, shake','','Y','','Y','','','','','Y','','','','','','cabal2nix','Y','','','','N','Lack of time, and don\'t want to fight inertia of existing systems.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Try it out, since I used nix at work.','','','Y','','','','','stable linux distribution','','','Better documentation, say a detailed wiki full of up to date howtos.','arch?','','','','','','Y','','','','','fvwm','','','Nix could do with better documentation and planning. Fewer half-hearted undocumented semi-overlapping features and more robust, well documented, orthogonal, and well-tested ones.'),(1780,'1980-01-01 00:00:00',5,'en','1249563331','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','all personal computing environments (except phones)','A3','As soon as I read and understood the concepts, it was obvious that this was the one true way to build and deploy software.','','','','','','','Y','','Y','','','Y','','','Y','Y','Y','Y','','reliable reproducible builds','huge and up-to-date package repository','building minimal container images','Oh man...\r\n\r\nFirst, get rid of nix-env and never ever mention it again. It\'s a huge stumbling block for newbies. Force people to use declarative configuration so they see the benefits (and don\'t try to bash Nix into an apt-shaped hole and \r\n\r\nAdd more structure to the language (including a type system, but more too, along the lines of modules), so that it\'s easy to look at a piece of nix code and see what it _is_: a callPackage package? a dev shell? a nixos module? a library function? This was one of the hardest parts about learning the language+ecosystem.\r\n\r\nRedo flakes with what we\'ve learned so far, so there\'s less boilerplate and more flexibility. My preference is for something very simple, almost as simple as niv.\r\n\r\nBuild awesome devops tools that integrate Nix into the modern devops ecosystem. Specifically, Kubernetes and Terraform are both based on the concept of declarative infrastructure, and both are awful to configure. Nix could (and should) take over the world here.','I used Ubuntu and other distros before Nix(OS). I could go back but I would be very sad.','','','','','','','','','','','','','','','vgo2nix (should migrate to gomod2nix)\r\nnpmlock2nix\r\ntex2nix\r\n','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','True declarative configuration. Every configuration management system I\'d seen before NixOS had gaping holes and flaws. It\'s the only thing that does it right.','Y','','Y','','','Y','','declarative configuration','a real language that can be used to concisely write and maintain multiple machine configurations','','Modules vary a lot in quality/completeness/consistency. A layer like RFC 42 applied consistently would help.\r\n\r\nBetter language support for modules. Being able to \"overlay\" modules. (Also multiple-instantiations of modules, though I haven\'t needed that yet.)\r\n\r\nAll the stuff I said about Nix too.','I used to use ubuntu plus some hacky ansible to do CM, but it was awful. I never want to look at ansible ever again and ','Y','','','','','Y','krops','','','','notion','','',''),(1781,NULL,NULL,'en','919953921',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1782,NULL,1,'en','1299118869','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1783,'1980-01-01 00:00:00',5,'en','1369012906','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanting to share configuration between devices.','','Y','','','','','','','','','Y','','','','','','','Y','','Reproducability','Generations','','Easier dependency managament in packages.','Arch','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Sharing configuration between devices.','','','','','Y','','','Reproducability','Generations','','Easier dependency management in packages.','Arch','Y','','','','','','','','','','sway','home-manager\r\nnixos-hardware','','home-manager should be added to search.nixos.org'),(1784,'1980-01-01 00:00:00',5,'en','1347917535','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','','','RHEL','N','Y',NULL,'I\'m used to use Java for development. Compared to that nix seems to have a non trivial syntax.','Don\'t know. Currently i don\'t have a real use case to use nix beside NixOS. I\'m not 100% sure about the existing tooling. But from my understanding there\'s no easy development package. Like download and play around. You need to collect a set of tools / editors / plugins or your own.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Server Applications via lxd: Mail, Web, etc...','A3','I wanted to get into docker, but it lacked the possibility to really be reproducible. That\'s how I discovered NixOS. I liked the idea quite a lot as previously I was trying to implement some kind of rollback mechanism with btrfs.','Y','Y','Y','','','','','System state by configuration','','','So my main problem of NixOS is the quality of packages. Most of them work well, but only for the most used use cases. There are often scenarios where packages were introduced by someone who isn\'t interested in that package anymore and it get abandoned.\r\n\r\nI think the packages should be somehow separated into packages that are really maintained by a group of people and other packages maintained by the community.\r\nSo actually like Arch linux is handling packages.','I guess ArchLinux in combination with btrfs snapshots for personal development machine and docker for my server.','Y','','','','','','','','','','Sway','','nixops, as it did not support lxd.','It really like to see NixOS evovle in some production ready system so that it can generate more resources in order to provide better package support.'),(1785,NULL,1,'en','527580427','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1786,NULL,1,'en','2124739883','A2','A5','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','','','','OpenBSD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1787,NULL,NULL,'en','699264603',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1788,NULL,3,'en','1711009867','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1789,NULL,1,'en','688283790','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1790,NULL,1,'en','770059125','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1791,'1980-01-01 00:00:00',5,'en','1356584772','A2','A2','male','','','Y','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','This is maybe the only package manager that brings something new with it. Perfect work.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','nix-shell','NixOS, It\'s very easy to configure the system with it. I love it','','Types, it\'s sometimes very hard to find out what should i pass to a function, also it could be very good to have something like Hackage in Haskell','pacman, i didnt even thought that package management can be so cool','','','','','','','','','','','','','','','cabal2nix','','','','','N','I dont think i am good enough to do it','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','it\'s very easy to configure the system with NixOS','I didnt use it, but reproducibility seems very cool','','','Arch linux','','','','','','Y','','','','','xmonad','','flakes','i love you'),(1792,NULL,2,'en','1771258111','A3','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1794,'1980-01-01 00:00:00',5,'en','1520576882','A2','A3','male','','','','','','','','','','','','','','','','','','Y','Y','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','NixOPs. I wanted to have some consistency in my home server setup so tried setting it all up in Ansible. I\'ve used Terraform heavily at work. Ansible was a massive pain of procedural mistakes, resets, re-runs, etc. I spent days and ended up with something I wasn\'t confident would reproduce what I wanted. I decided to give NixOS another go (Had tried before but was too complex) and I started to get it a bit more, sticking purely with the declarative configuration.nix route. I then moved to NixOPs so that I could manage the different VMs and hosts like that. ','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','NixOPs. I wanted to have some consistency in my home server setup so tried setting it all up in Ansible. I\'ve used Terraform heavily at work. Ansible was a massive pain of procedural mistakes, resets, re-runs, etc. I spent days and ended up with something I wasn\'t confident would reproduce what I wanted. I decided to give NixOS another go (Had tried before but was too complex) and I started to get it a bit more, sticking purely with the declarative configuration.nix route. I then moved to NixOPs so that I could manage the different VMs and hosts like that. ','','','Y','','','Y','','Declarative','Nixops','Rollback','Remove all the complex terminology in the documentation and component names. Reinvent all of it into a simple cohesive description that is relatable to new users who\'ve never used any Nix. ','Ansible with Fedora','','Y','','','','','','Y','','','','None. They\'re too confusing to discover.','','The biggest challenge is documentation, which is a difficult challenge as all the terminology is strange and confusing. '),(1795,'1980-01-01 00:00:00',5,'en','1390897138','A2','A5','male','','','','Y','','','','','','','','','','','','','','Y','','','Y','','','Y','','','Y','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','','','','','','','','','','','','','','','','','','apk','','','','','Y','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','','','','','AlpineLinux, VoidLinux, OpenBSD, FreeBSD','Y','','','','','','','','','Y','','','',''),(1796,'1980-01-01 00:00:00',5,'en','1965067802','A5','A4','fem','','Y','','','','','','','','','Y','','','','','','','Y','','','','Y','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','Y','Y','','Y','','','Y','','','Y','','Hermetic / deterministic environments','Infrastructure as code','Manage all devices with same config','Flakes by default! More familiar syntax for the expression language (the colons are weird)! Better macOS support! Docs that are friendly for on-boarding new Nixians! Clearer naming between NixOS, the build system, the package manager, the language, etc.','I\'d go back to my collection of eldritch and arcane hand-rolled bash scripts','','','','Y','Y','','','','','','Y','','','','I\'ve tried stack2nix and cabal2nix *with limited success*','Y','Y','','','N','I\'ve started a few times, but it\'s a lot to clone, and there\'s very little hand holding (\"am I doing this right?\")','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','Consistent environment between macOS and NixOS','Simple systemd','Rollbacks','More learning resources for on-boarding others. Flakes by default.','Ubuntu or Fedora','','','Y','','','Y','','Y','','','XMonad','Online package search, forum, docs, nix-darwin','Lorri, Cachix','Thank you for all of your hard work!! It\'s a very important project that has improved my team member\'s lives considerably :D'),(1797,'1980-01-01 00:00:00',5,'en','422360118','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','','Y','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','Y','','','',''),(1798,'1980-01-01 00:00:00',5,'en','1924984980','A1','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was searching for a way to manage unpackaged software on Ubuntu systems. Then I saw an online post recommending Nix for that purpose. So I used it, saw how flexible it was, and stuck with it ever since.','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','The extensibility of Nix packages provided by the Nix expression language.','The ability to obtain a working development environment for almost any kind of software from its package definition.','The large amount of packages available in the Nixpkgs repository and the ease of adding a new one.','I\'d like to be able to add my own personal Nix flake definition to an existing Git repository without committing it.','Homebrew, Apt, or Yum plus language-specific package managers.','','','','Y','Y','','','','','','Y','','','','node2nix https://github.com/svanderburg/node2nix\r\nbuildGoModule https://nixos.org/manual/nixpkgs/stable/#ssec-language-go','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Shortly after I familiarized myself with Nix, I migrated from Ubuntu for reliable upgrades and rollback. I also liked the fact that Nix/NixOS made it easy to apply bug fixes to packages before they made it to the release. When I was using Ubuntu, I often had to wait until the next major release to receive fixes for bugs that I cared about.','Y','','Y','','','','','The ability to backport fixes before it\'s released in Nixpkgs.','The ability to mix packages from multiple Nixpkgs releases.','Declarative system management that\'s integrated with the package manager.','I\'d like to be able to backport NixOS modules from newer releases.','Debian unstable','Y','','','','','','','Y','','','','Home Manager','',''),(1799,NULL,1,'en','1599683364','A2','A2','male','','','','Y','','','Y','','','','Y','','','','Y','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1800,NULL,2,'en','1526009511','A2','A2','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','Y','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','gaming is lit. WIN11 fucked csgo starting time. 1m till the window opens 1m45s to main menu.... nixos -> stupid fast <3','A1','A colleague told me about nix and I had to try it because it sounded too awesome! everything readonly & manage your pc with a git repo <3 to flakes!\r\ncould not get nix to work correctly under arch, so i thought: fuck it. just install nixos! And after many countless sleepless nights refactoring my config im rocking 930+ commits since January XD','','','','','','','Y','','Y','Y','','Y','','','Y','Y','','Y','','nixos-rebuild build-vm <3','nix flake <3','nixos-rebuild test <3 <3 <3 <3','','i would scream at my PC trying to provision VMs with ansible or reconfigure all programs manually again :(','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','N','not yet :o)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1801,'1980-01-01 00:00:00',5,'en','781566414','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1802,NULL,1,'en','468763842','','','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1804,NULL,1,'en','869482990','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1805,'1980-01-01 00:00:00',5,'en','182441214','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','','','','Portable environments (bit-for-bit reproducible builds not important)','Python package management','Build artefact caching (via derivations in /nix/store)','Remove legacy non-flakes support and associated training material, vastly improve debugging functionality for Nix expression evaluation and learning materials. Add support for non-/nix store paths.','Conda (for Python in production across my research group), Homebrew on Mac','','','','Y','Y','','','','Y','','','','','BuildBot','','Y','Y','','','Y',NULL,'N','N','Not interested for my current use cases; too much reinventing the wheel (especially on systems are also used by other people). If I had to set up and manage a deployment across a large device fleet, I might give it a try.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'custom binary substituters','',''),(1806,'1980-01-01 00:00:00',5,'en','2063839758','A2','A3','male','','','','','','Y','','','','','Y','Y','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','After trying to manage my Linux configuration for years using various git repositories and shell scripts, I stumbled upon Nix from a Hackernews post in 2015 while doing my master\'s thesis. After a couple of failed attempts (Nix was the hardest learning curve of anything CS related I have ever done) I managed to get the hang of it, and have been using it for most of my computers, servers and development environments ever since. ','','Y','','','','','Y','','Y','Y','','','','','Y','','','Y','','Cross-language development environments','','','Nix:\r\nRemove the old CLI and standardize the new one after a couple of rounds of UX fixes\r\nEither stabilize or remove flakes so they aren\'t stuck in a limbo\r\nBetter documentation for builtins and nixpkgs functions, e.g. comprehensive docs.rs style with examples\r\nNix language server\r\nBetter support for packages that change over time (Discord, Steam, Rust overlay)\r\n\r\nEcosystem:\r\nRelease NixOps 2.0 (or announce that it is never coming, which is my current guess)\r\nGet the people behind NixOps, morph, deploy-rs and all the other deployment tools to merge their efforts instead of building multiple half-baked solutions\r\n','No idea, ansible maybe?','','','','Y','Y','','','','','','Y','','','','https://github.com/kolloch/crate2nix (but it is a bit unmaintained)','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','','','','Declarative system configuration','Ability to abstract and compose configuration files','','Better tools to show the state of the system, and available packages / configuration','Debian','Y','Y','','Y','','','','','','','XMonad','','',''),(1807,NULL,1,'en','1950809063','A2','A3','male','','','Y','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','I wanted a nice way to build an SD card image for a raspberry pi with some stuff pre-installed and configured, and NixOS was pretty good for that.','','Y','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','Y','','Managing configuration for many machines but not having to use ansible.','Never having to worry about cache invalidation in my build system, ever.','Getting to use all of the stuff in nixpkgs.','Better dev tooling (debugger, error messages, tools to diagnose cache misses/mass rebuilds','- Ansible\r\n- Docker\r\n- Terraform\r\n- Packer\r\n- Makefiles','','','','','','','','','Y','','','','','','- https://github.com/hlolli/clj2nix\r\n- https://github.com/nix-community/npmlock2nix','Y','','','Copypasting NixOS modules into my repo and changing them (because overlays only work for packages, not modules)','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same reasons as for Nix - declaratively building a raspberry pi SD card image.','Y','Y','','Y','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1808,NULL,1,'en','465286131','A5','A3','fem','','','','','','','','','','','','','','','','','','','','','','','','','Information security','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','https://github.com/svanderburg/node2nix','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1809,'1980-01-01 00:00:00',5,'en','1237450547','A2','A3','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','congruent complexity management','congruent complexity canagement','reproducible builds','make flakes the \"default\"','Gentoo','','','','Y','Y','','','','Y','','','','','','poetry2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','congruent complexity management','congruent complexity canagement','reproducible builds','make flakes the \"default\"','Gentoo','Y','Y','','','','','','Y','','','','https://github.com/Tow-Boot/Tow-Boot\r\nhttps://github.com/tweag/jupyterWith\r\nhttps://gitlab.com/simple-nixos-mailserver/nixos-mailserver','https://github.com/svanderburg/node2nix (because node)','Keep up the good work.\r\nBe honest, be open.'),(1810,NULL,1,'en','526911129','','A2','','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','Y','','','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1811,'1980-01-01 00:00:00',5,'en','415447550','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','I moved to NixOS.','','Y','','','Y','','Y','','Y','Y','','','','','Y','Y','','Y','','Functional and pure - thanks to Nix I live in a declarative world of the NixOS.','Nix is much more flexible / expressive then other DSLs for packaging and system management.','','* Better stack traces and debugging tools.\r\n\r\n* Type system - I want to migrate parts of my configs pure-script as it has now Nix backend.','Lisp on Guix.','','Y','','','Y','','Y','','','','','','','','spago2nix, napalm (I switched from npm2nix - too havy), python2nix.','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','* I switched from Arch (really messy after many years) on my personal computer.\r\n\r\n* I switched from Debian / Ansible (really messy setup after many years ;-)) on my servers.','Y','','Y','Y','','','','Declarative / safe / reproducible system management.','Ability to compile / test the exact configuration on staging or even home machine. ','Flexibility - legacy software and packages still up and running on my servers together with newer software.','Better server deploying story (NixOps didn\'t work for me (after a lot of effort I wasn\'t able to make it work on Hetzner machines) so I\'m using nix-simple-deploy which is simple but heavy solution.','Guix','Y','','','','','Y','','','','','Xmonad','','',''),(1812,'1980-01-01 00:00:00',5,'en','1755345179','A2','A4','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','personal recommendation by Mic92 and fpletz','','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','customizability','reproducability','integrity','Add more nice tooling for Flakes, better CI than Hydra','Guix, Genode, Ansible','','','','Y','Y','','Y','','Y','','Y','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','personal recommendation','Y','Y','Y','Y','','Y','','programmability','consistency: no bitrot','features','properly export some functionality like creating config.system.build.tarball','Guix, Genode','Y','','','','','Y','','','','','sway','Naersk, Fenix, microvm.nix, node2nix','NixOps',''),(1813,'1980-01-01 00:00:00',5,'en','1631974372','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Director of engineering','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Experimenting with Nix Darwin as a way to uniformly setup developers’ machines. ','Y','','','','','','Y','','','','','','','','','','','Y','','Reproducible configurations','Configuration as code','Modularity','Nix support for Windows native (one of our biggest pain points is reproducible configs on windows developers’ machines).','She’ll/ powershell scripts, homebrew/chocolatey. ','','','','Y','Y','','','','','','','','','','Node2nix','Y','Y','','','N','Still learning/understanding nix','N','N','Developers using Linux ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nix Darwin ','','Great work! Documentation is hard to understand as a newcomer since there is a lot of existing but outdated examples using nix-env, pinned packages, channels when it seems like we should be using nix flakes. '),(1814,NULL,1,'en','1092893790','A2','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1815,'1980-01-01 00:00:00',5,'en','159988389','A1','A4','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A3','i like the concept of reproducible...sometime i change my distro...before i know to nix i need to reconfigure my machine everytime i change distro...but not now..\r\nand capability of roolback is brilliant too..there so many reason to use nixos but i cant tell it all','','Y','','','','','Y','','','','','','','Y','','','','Y','','nix-env','rollback','nix-collect-garbage','nothing...','flatpak','','','','','','','','','','','','','','','','','','','','N','i still focus to my job...maybe after i retire i will contribute','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A3','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','','nothing...i already comfortable with nix...nix has fulfill my need for an ideal system management...i\'m very satisfy with nix...event though i\'m not using all the feature...but what i need is already there....big thanks for the team...good job'),(1816,'1980-01-01 00:00:00',5,'en','381587344','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Some FP-minded colleagues sold me on the declarative semantics. Starting testing NixOS in a VM and gradually installed it on all my machines within a year. Learning NixOS was also made me go from passive Linux user to enthusiast.','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','nix-shell','home-manager','NixOS','I have not yet started Flakes since it is marked as \"experimental\", but I am eager to get rid of channels, pinning and I seldom use nix-env anymore. I would love a proper dotnet2nix tool so that I could package the software that I use at work.','Aptitude','','','','','','','','','','','','','','','https://github.com/NixOS/cabal2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Some FP-minded colleagues sold me on the declarative semantics. Starting testing NixOS in a VM and gradually installed it on all my machines within a year. Learning NixOS was also made me go from passive Linux user to enthusiast.','Y','','','','','','','Not being afraid of losing/breaking my machine','Configuring services','https://github.com/NixOS/nixos-hardware','I have not yet started Flakes since it is marked as \"experimental\", but I am eager to get rid of channels, pinning and I seldom use nix-env anymore.','Ubuntu','Y','','','','','','','','','','i3wm','home-manager','nix-env','Thanks for making this fantastic thing :)'),(1817,NULL,1,'en','1217425270','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1818,'1980-01-01 00:00:00',5,'en','1779950145','A5','','','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','','','','Y','','','Y','','','','','Y','Y','','Y','','Declarative development environments','Package management','','','','','','','','','','','','','','Y','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','Declarative system specification','','','','Fedora Silverblue with flatpaks and RPMs.','Y','','','','','','','','','','Sway','nixos.wiki, home-manager','',''),(1819,'1980-01-01 00:00:00',5,'en','1141696853','A5','A3','-oth-','Nonbinary ','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','The “purely functional” marketing got me curious, and then I fell in love with the reproducible and declarative model.','','Y','','','','','Y','','Y','','','Y','','','Y','Y','Y','Y','','Declarative configuration','Hermetic package management','Atomic package management','Better tutorials and documentation','Probably something like Fedora Silverblue?','','','','Y','Y','','','','','','','','','','','','Y','','','N','Bad habits, difficulty curve of becoming adept at the language','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','See my comment on nix','Y','','Y','','','Y','','See answers for nix','','','See answers for nix','See answers for nix','Y','','','','','','','','','','i3','fennix, direnv, home-manager','',''),(1820,'1980-01-01 00:00:00',5,'en','435298930','A3','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','','','','','','Y','','Y','Y','','','','','','','','','','','Y','','','','Y','','Y','','','','','','Y','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','','','','','','Y','','','','','','','','','','pure xmonad.','','',''),(1821,'1980-01-01 00:00:00',5,'en','405391505','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','','','','','Y','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Just needed a way to do dev-env that worked, contrary to docker','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','','Y','','Reproducible builds ','declarative builds and environments','Mutable but controlled servers','A replacement for channels that is better integrated and does not depends on git','No idea','','','','','','','','','','','Y','Y','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A4','Y','','','','A3','Needed a way to control deployment mutably while keeping the base machine immutable.','','','','Y','','','','Configuration rebuild','','','A better way to configure the nix daemon','No idea','Y','','','','','Y','','','','','','lorri','Cachix\r\nnixops',''),(1822,'1980-01-01 00:00:00',5,'en','1963952586','A2','A5','male','','','','','','Y','Y','','','','','','','','Y','','','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','Y','','Y','','','','','','','','','N','lack of knowledge, but I\'m working on it','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','Fedora and Ansible','Y','','','','','','','','','','Pantheon','','',''),(1823,NULL,1,'en','1119921270','A5','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Ubuntu was a pain to administrate. A coworker told me nix was declarative and reproducible.','Y','Y','','','','','Y','Y','Y','','','Y','','','Y','Y','','Y','','Reproducibility','Declarative','','Add: Declarative virtual machines.\r\nChange: Unify essential community projects (nix-darwin, home-manager) with the nixpkgs repository.','Pain, docker, and Ubuntu.','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Ubuntu is difficult to administrate. A coworker told me NixOS was excellent.','Y','Y','Y','','','Y','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1824,'1980-01-01 00:00:00',5,'en','474266424','A2','A2','male','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I saw a talk about NixOS and distro hopped :D. I had no prior knowledge of Nix. I did not even try to install it on Arch.','','','','','','','Y','','Y','','','','','','Y','','','','','Os management','Installing packages','creating environments','Don\'t be afraid to remove old features and code. I understand it will make some people angry, but the alternative is accumulating ways to do things and make things way more confusing.\r\n\r\nFor example, when the new cli becomes stable, you should remove the od `nix-` commands in a month or two.','Flatpak on Arch','','','','','','','','','','','','','','','','','','','','N','I did like a code review, but I found the whole process a little overwhelming. If there is a single \'If you want to contribute, click here, we will explain\' link, I did not find it.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I saw a talk about it on YT and distro hopped immediately :D','Y','','Y','','','','','','','','There should preferably only be one thing to do things. \r\nIt is great you have manual, but it could be even better. The wiki is not as high quality. ','Arch','Y','','','','','','','Y','','','','','',''),(1825,'1980-01-01 00:00:00',5,'en','1404878929','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','declarative configuration ','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','declarative configuration','rollback configuration','','remove integration between nix and shell scripts for the build. Using scheme seems more elegant','guix','','','','','','','','','','','','','','','','Y','','','','N','long list of open tasks/pull requests\r\ngithub','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','','guixsd','','Y','','','Y','','','','','','i3wm','','nixops','great job, keep going!'),(1826,NULL,1,'en','154429033','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1827,NULL,NULL,'en','2072446121',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1828,NULL,1,'en','1372101721','','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1829,'1980-01-01 00:00:00',5,'en','1613429181','A6','A4','male','','','Y','','','','Y','Y','','','Y','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','From Redhat, Debian, Gentoo, Arch, Ubuntu, Mandrake, SuSE, Mint, Manjaro, Fedora, Slackware, FreeBSD, ...\r\nI start with using GoboLinux. Then I heard NixOS, and in love with it. I really feel at home using NixOS rather than others. From here of course then I use Nix.','','Y','','','','','','','Y','','','','personal desktop and laptop','Y','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','I cannot found good documentation guide of WORKFLOW on how to do so.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','From Redhat, Debian, Gentoo, Arch, Ubuntu, Mandrake, SuSE, Mint, Manjaro, Fedora, Slackware, FreeBSD, ...\r\nI start with using GoboLinux. Then I heard NixOS, and in love with it. I really feel at home using NixOS rather than others.\r\nI think someone with knowledge of both OS administration and software development, will easily apprciate NixOS.','','','Y','','','','','','','','Add section documentation/guide of collection of recomended \'workflows\' on how to do things in NixOS.\r\n\r\nAdd option to change title for grub boot selection. ','I am not sure, I stop trying other distro after using NixOS. I like FreeBSD.','','','','','','','','','','','xmonad','nix-shell','','I need guide on workflow how to pickup some software/application that already/or not already in nixpkgs, how to change, bug fix, add features to the software and compile; and then update to the nixpkgs.\r\n'),(1830,'1980-01-01 00:00:00',5,'en','1146916487','A5','A4','male','','','','','','Y','Y','','Y','Y','Y','','Y','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Needed to squeeze more life out of an old MacBook Pro. ','','Y','','','','','Y','Y','','Y','','Y','','Y','Y','','','Y','','Declarative','Immutable ','Functional','Better secrets management. ','Arch','','','','','Y','','','','','','','','','','node2nix','Y','Y','','','N','Time and experience. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Wanted to squeeze more power out an old MacBook Pro. ','Y','Y','','Y','','Y','','Declarative','Immutable ','Functional ','Better secrets management. ','Arch','Y','Y','','','','','','','','','EXWM','','',''),(1831,NULL,1,'en','796478279','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1832,NULL,1,'en','105511790','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1833,'1980-01-01 00:00:00',5,'en','1474076632','A2','A3','male','','','','','','Y','Y','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','It seemed like the obvious way to go.','','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','','Y','','Declarative, sandboxed, reproducible builds and environments','Easy deployment using nix-copy','Distributed builds and build caching','Magically fix secrets.\r\nAdd go-sum hashes (and maybe a plugin system for other hashes).\r\nRemove floats from nix syntax (keep fromJSON floats).\r\nMake lists comma-seperated.\r\nMake evaluator faster (graalVM??).\r\nRemove nix-env -i.\r\nRemove nix-builder users, use user namespaces.\r\nDebug remote builders and ssh substituters (to be faster).\r\nDebug nix-copy to be more resilient to bad connections.','Kubernetes, docker, ansible.','','','','Y','Y','','Y','','','','Y','','Y','','nix-npm-buildPackage (https://github.com/serokell/nix-npm-buildpackage)\r\npoetry2nix (https://github.com/nix-community/poetry2nix)\r\nhaskell.nix (https://github.com/input-output-hk/haskell.nix)\r\nbuildRustPackage (nixpkgs)\r\ncabal2nix (nixpkgs)','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I used NixOS before Nix!','Y','Y','Y','Y','','Y','','Declarative system configuration','Rollbacks','Atomic upgrades','Remove nscd\r\nAdd support for system portable services for easier granular deployment\r\nBetter support for nvidia/proprietary drivers (also CUDA, OpenCL)\r\nMake it easier to optimize system closure size\r\nFix weird glibc version mismatch bug\r\nIntegrate home-manager into nixpkgs\r\nMake pipewire the new default\r\nFix various ACME certificate bugs','Arch? Void? Debian? With ansible or puppet or salt.','Y','','','','','Y','','','','','sway','home-manager\r\nnixfmt\r\nnix-top\r\ncachix\r\nnix-diff\r\nemacs nix-mode','NixOps, it was unmaintained and too slow, and the state was too hard to keep in sync.',''),(1834,'1980-01-01 00:00:00',5,'en','113552192','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My buddy Justin recommended it to me and now I just can\'t get enough of it ;)','','','','','','','Y','Y','Y','','','','','','Y','Y','Y','Y','','Packages count and ease of packaging software','declarative configuration','I could note features like purity and so on but in comparison everything else is less relevant and more or less falls under category of \'fun\'','I strongly believe that derivation builders and modules system needs an update, not because what we currently have is bad or something but because we could do so much them so much better','maybe guix or ansible+jsonnet','','','','Y','Y','','','','','','Y','','','','dream2nix, node2nix, and something for cargo. Currently not in a place to check dependencies of projects','Y','Y','','','N','I contribute only if that\'s the easiest solution because contributing to nixpkgs is bothersome since PR\'s take a while and then you need to maintain whatever you define. Also, NixOS community does not really provide any simple automagic options to update packages which is annoying (yes, I am aware of nixos-update/nix-update, I\'d like something in CI that would notify me if update is available and that could be quickly tested/PR\'ed)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same story as with Nix - my buddy Justin recommended it to me and I felt in love with it','Y','','Y','','','Y','','declarative configuration','cross compiling using binfmt','','Modules system needs an update','Guix/Arch','Y','','','','','Y','','','','','i3 and sway, depending on machines','flake-utils/flake-utils-plus/devshell/home-manager','NUR/musnix/nixpkgs-mozilla/nixpkgs-wayland',''),(1835,NULL,2,'en','713923423','A2','A3','male','','','','','','Y','Y','','','Y','Y','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','from haskell community it was talked about.\r\nDidnt really understand it, nor took the effort to learn it for about a year or two.\r\nBut then a friend wanted to try it, and I thought, I should do it first.\r\nAnd I loved it, been using it daily since.\r\nThe friend still haven\'t tried it, and that is 2 years ago.','','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Declarative system configuration','Declarative development environment','','I would like LSP for nix, so I could go to definition etc.\r\nAnd I would like better error messages','guix or docker','','','','Y','Y','','','','','','Y','','Y','','nuget-to-nix\r\n','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1836,NULL,1,'en','1057091829','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1837,NULL,4,'en','135806434','A2','A3','male','','','','','Y','','Y','','','','Y','','','','','Y','','Y','','Y','Y','','','Y','','','','','Y','','','N','Y',NULL,'The learning Curve','I am Planning to use it again, since I am convinced that it is a superior package manager.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','The next time I find the time I will.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1838,'1980-01-01 00:00:00',5,'en','812124341','A5','A2','male','','','','','','','Y','Y','Y','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I started using Nix because I switched to NixOS. It was only then that I realized the words \"functional\", \"declarative\", and \"package management\" really should\'ve stood out to me 5 years ago...','','','','Y','Y','','Y','','Y','Y','Y','Y','','','Y','Y','Y','Y','','Declarative environment management','Build and package software','Declarative system management','Remove all the non-nix-command stuff and finalize nix-command and flakes. I\'d make it so the Nix store could be anywhere and have it follow the FHS when installed system-wide (just a /var/nix would be fine honestly).\r\nAs much as I like strong type systems, I\'d leave my magic wand holstered for Nix unless we want to start scripting in it - most derivation errors are caused by the build system or similar.','Guix (ok that\'s cheating), but language-specific package managers such as cargo, yarn, conan, poetry + flatpak/snap + dockerfiles?','','Y','','Y','Y','','','','Y','','Y','','','','poetry2nix (https://github.com/nix-community/poetry2nix), yarn2nix (in nixpkgs)','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Was using Bedrock Linux with Arch + Gentoo + Ubuntu and it was naturally a gigantic mess. Switched to NixOS, got into Nix for all my development needs, and never ever looked back.','Y','','Y','Y','','Y','','Declarative system management','Immutability','Modules','I would integrate home-manager (or just some way to have unprivileged users declaratively manage their home dirs), add secure boot support, and make /etc immutable/remove it entirely.\r\nInitWare support and/or the ability to use non-Linux kernels would be neat, too, but not absolutely necessary.','GuixSD is cheating again; probably Fedora Silverblue, Gentoo, or Bedrock, depending on the system.','Y','','','Y','','','','','','','River','nix2container (https://github.com/nlewo/nix2container), flake-utils-plus (https://github.com/gytis-ivaskevicius/flake-utils-plus), flake-utils (https://github.com/numtide/flake-utils)','NixOps',''),(1839,'1980-01-01 00:00:00',5,'en','1825248993','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducibility','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Reproducibility','Build and configuration automation','Caching','Add easily searchable documentation automatically generated from code and better editor tooling',':(','','','','Y','','','Y','','','','','','','','cabal2nix and node2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Declarative system','Y','Y','Y','Y','','Y','','Declarative system configuration','Easy to patch system packages','Clean system environment (no unnecessary things in PATH)','User version of nixos-rebuild, similar to homemanager except that generated configuration doesn\'t pollute ~.','Idrk Arch?','Y','Y','','','','Y','','','','','xmonad','','','Thanks for improving my life :)'),(1840,'1980-01-01 00:00:00',5,'en','1030710346','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I started using Nix on macOS for setting up development environments. This was initially because I was using Docker for running databases, and this was beginning to become a drain on my laptop\'s power. I setup a Nix shell to use for work projects and ran the databases directly using foreman, which was a huge speedup. I was sold on the promise of Nix at this point. A while later I decided I wanted to switch to Linux, so I bought a new ThinkPad and installed NixOS. I\'ve been using that as my daily driver ever since, and it\'s fully replaced macOS for my work and personal projects. ','Y','','','','','','Y','Y','Y','','','','','','Y','','','Y','','Reproducibility','Transparency - I can look into a module or derivation\'s source code and understand exactly what it\'s doing to my machine','Abundance of packages','Better documentation - I think it often assumes a level of Linux or domain-specific knowledge which I don\'t have. It can be very difficult starting out with Nix and grokking its core ideas.','GNU Guix','','','','Y','Y','','','','','','Y','','','','clj2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I wanted to switch to Linux from macOS.','Y','','','','','','','Reproducibility','Transparency','','','GNU Guix or macOS','Y','','','','','','','','','','Sway','emacs-overlay\r\nnixos-hardware\r\nflake-utils','Morph','NixOS has the potential to be the most user-friendly Linux distribution. The way that it\'s possible to enable complex configurations with a single setting, and for this to create a transparent and reproducible system derivation, creates a lot of possibilities for helping end users to setup a working system. I think that Nix is the future, and the way that every package manager and OS should work, but I\'ve had trouble convincing others to try it out. '),(1841,NULL,NULL,'en','620942042',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1842,'1980-01-01 00:00:00',5,'en','837275299','A5','A3','male','','Y','','','','','','','','','Y','','','','Y','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Haskell is a natural gateway into the functional lifestyle.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Simplicity of machine management and configuration (I\'ve never felt as comfortable tweaking my GNU/Linux machines until NixOS)','Easy driver management (excluding NVIDIA GPUs, which is miserable anywhere)','System configuration rollbacks','Flakes don\'t look very appealing to me. Compared to the basic configuration.nix and hardware-configuration.nix files, I would like to see some sort of reconciliation between them. As of right now, I\'m hesitant to convert any of my machines into flake machines.','Fedora or Manjaro','','','','Y','','','','','','','Y','','','','n/a','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Haskell and functional programming is a gateway.','Y','Y','Y','Y','','','','','','','Remove Flakes.','Fedora or Manjaro','','Y','','','','','','Y','','','','','Flakes.','I love NixOS. :)'),(1843,'1980-01-01 00:00:00',5,'en','1398028282','A2','A3','male','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','','','Y','','','Y','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','https://github.com/nix-community/naersk\r\nhttps://github.com/tweag/gomod2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','Y','','','','','','','','Y','','','','','','','','','i3','home-manager','',''),(1844,'1980-01-01 00:00:00',5,'en','1712827015','A2','A1','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I really got interested why so many people said that NixOS/Nix is so great I decided to try it','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','','','Multiple versions','Atomic upgrades and rollbacks','Garbage Collection','Nothing Nix is perfect for me as it is','Guix :(','','','','','Y','','Y','','','','','','','','Dream2nix','Y','','','','N','I\'m still new to Nix and I don\'t have that big knowledge of it but when I will have a stable knowledge of it I will surely contribute to Nixpkgs','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','As I said before I got really interested why people said it\'s so good and awesome so I decided to try it myself and I love it','Y','','Y','','','','','Rollbacks','Transparent source-binary deployment','Managing build environments','I don\'t think I would change anything it\'s perfect as it is at least for me','If NixOS didn\'t exist I would use openSUSE Tumbleweed','Y','','','','','','','','Y','','','home-manager','None','NixOS and Nix are great!'),(1845,'1980-01-01 00:00:00',5,'en','1655502100','A2','A3','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','Laptop was having troubles with disk and saw NixOS related information on the Chaos Computer Conference. Was interested and just went for it, never looked back since. Even though the learning curve was definitely steep, I did enjoy learning.','','Y','','','Y','','Y','','','','Y','','','','Y','Y','','Y','','Reproducible system, NixOS','Easy patching','Very configurable, customization options','The steep learning curve and difficulty to get started.','Imperative package management, probably. Maaaaybe something like fedora silverblue(?) (the one with the immutable \'package store\' as well, using bind mounts or something like that)','','Y','','Y','Y','','Y','','','','','','','bamboo','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Same as nix story :)','Y','','','','Y','','','Reproducible development machine','Easy patching of system packages','Great customization possibilities, lots of pre-made templates / nixos options','Steep learning curve.','Imperative OS or maybe something like fedora silverblue','Y','','','','','','','','Y','','phosh / plasma mobile','nixpkgs-review, nix-du, nixpkgs-fmt','','Thanks for working on NixOS marketing. Hopefully this survey helps getting a good overview 😁'),(1846,NULL,2,'en','699074529','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Just running my machine','A3','I got tired of reinstalling my other distros because I fucked them up','Y','','','','','','Y','','','','','','','','','','','Y','','Reproducible','Bleeding edge','Fast moving','Better UX for the cli tools\r\nBetter TL;DR docs\r\nEasier to run other distros packages','Manjaro Linux','','','','Y','Y','','','','','','','','','','','','Y','','','N','I\'ve contributed like once, but it\'s hard to know what to do.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got tired of fucking up my other systems to reinstall','Y','','','','','','','Reproducible','Bleeding-edge','Fast moving','','','','','','','','','','','','','',NULL,NULL,NULL),(1847,'1980-01-01 00:00:00',5,'en','1937979097','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started as an alternative to brew on OSX. I liked the ideal of functional package managment, I started using it along side Ubuntu\'s package manager as well. That prior experience lead me to try NixOS which has been my main OS on my personal machines since.','Y','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Declarative dependencies','Relative ease of installing something outside the stable/unstable channels','Ability to use multiple different versions of software easily (e.g. node, python, go etc)','the language, it\'s confusing.','brew on OSX\r\nNative pkg manager on linux','','','','','','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Started as an alternative to brew on OSX. I liked the ideal of functional package managment, I started using it along side Ubuntu\'s package manager as well. That prior experience lead me to try NixOS which has been my main OS on my personal machines since.','','','Y','','','','','Declarative system configuration','Fearless roll backs','huge set of packages','how painful it is when the first package you want isn\'t avaliable','arch or ubuntu','Y','','','','','','','','','Y','','','','I love the concept, it does feel like the ecosystem is in a cambrian explosion & the complexity/recommeneded happy path will need to pared down before there\'s wide spread adoption.'),(1848,'1980-01-01 00:00:00',5,'en','643198152','A2','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','Y','','A3','Reproducible builds.','','','','','','','Y','Y','Y','','','Y','','','Y','Y','','Y','','Reproducability','','','Replace the DSL with a Lisp dialect','Guix','','','','','Y','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Reproducible systems. Declaring the system environment in text files.','Y','','Y','','','','','Reproducible system environment','','','','Guix','Y','Y','','','','','','','','','Emacs on top of Sway slave','','',''),(1849,'1980-01-01 00:00:00',5,'en','828740332','A2','A2','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Friend recommended it to, i played around with reproducible system configuration before. Arch and Void, but it didnt really work out obviously.','','Y','','','','','Y','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Containers','NixOS','Security of builds','Nickel','Arch or fedora silverblue matbe','','','','Y','Y','','Y','','','','','','','','','Y','Y','','','N','Laziness','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Same as Nix','Y','Y','Y','Y','','Y','','Can\'t say','Can\'t say','Can\'t say','The bash hell','Fedora silverblue or arch','Y','','','Y','','','','','','','xmonad','NixNG','',''),(1850,'1980-01-01 00:00:00',5,'en','1091210720','A5','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','It was hyped up in online forums, I thought that the configuration was cool and liked the idea of nix-shell. I was led to believe packages could be configured Gentoo style which evidently isn\'t the case but at this point I\'m preferring the nix configuration more than the Gentoo use flags, even if I\'d kill to have them in nix as well.','','','','','','','Y','','','','','','','','Y','','','Y','','Declarative configuration','Declarative environment management','Quickly updated and wide range of packages available','There seems to be a bottleneck in the decision making process (which is relatively understandable for a large project), as few rfcs seem to actually make it past the discussion stage.\r\n\r\nI think that if nix modules (https://cfp.nixcon.org/nixcon2020/talk/K89WJY/) were finally implemented with the option of setting global flags for packages, the system would be perfect. Many of my pain points with nix are those addressed in the presentation, and since nix is already a source based package manager, adding more control over packages would make Gentoo as a distro irrelevant. As a nixos user, use flags are the one killer feature I miss, and they could be added with no negative implications to the average binary loving individual.\r\n\r\nIn the least, any update on the talk would be great- it\'s been tough holding my breath when I havent heard if nix modules will even ever be a thing.','Gentoo with docker for development environments.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','Lack of faith that my contributions would be accepted. I\'d love to work on the nix module stuff as outlined above (https://cfp.nixcon.org/nixcon2020/talk/K89WJY/) but the lack of updates on that particular idea and the backlog of far simpler pull requests in the nixpkgs repo makes me hesitate, especially since such a change will likely involve a slow rfc process, which is another gripe that I outlined above.\r\n\r\nif any sort of roadmap was established, I would think that potential contributers such as myself would have a much clearer idea on what we could work on that would be accepted. I\'m not as interested in small packaging PRs as I already maintain my own NUR repo, and I suspect the software it encompasses would be too niche to fit in the main repo.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Same as why I started using nix, nixos seemed like the logical distro to choose since it was focused on the nix package manager.','Y','','','','','','','Declarative configuration','Rollbacks','Ability to have root on tmpfs','My gripes about nixos are based upon my gripes with nix, nixos is great but it\'s current problems lie within nix, in my eyes.','Gentoo with docker for managing dev environments','','','','','','','','','','','Sway','','','I hope my review doesn\'t seem too critical - I enjoy nix and nixos, and would love to contribute to it, but am a little turned off by some of the minor issues that I outlined in the survey. I hope that some of my concerns will be resolved, but either way keep up the good work!'),(1851,NULL,4,'en','865257493','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(1852,NULL,1,'en','892211346','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1854,'1980-01-01 00:00:00',5,'en','1835642728','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','','Y','','','','','','','','','','','','','','','','','Y','','Y','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','','',''),(1855,'1980-01-01 00:00:00',5,'en','1354532269','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Explicit configuration of the system, making sure everything is self-contained, nix-shell for development','','','','','','','Y','','','','','','','','Y','Y','','Y','','Declarative configuration','nix-shell for development','home-manager','Make it even easier to grasp all of how to write files for derivatives, do overlays, etc.','Arch Linux','','','','','','','','','','Y','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','See section before. I thought the former question were about NixOS :)','Y','','','','','','','','','','','','Y','','','','','','','','','','i3','home-manager','','Awesome thing, thank you so much for putting all your efforts into this!'),(1859,'1980-01-01 00:00:00',5,'en','1847138035','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I started using Nix as I switched my daily driver to NixOS.','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','Y','','Reproducibility','Being declarative','Dev environments','I would make flakes stable!\r\nI would improve the UX of Nix for CI/CD.\r\nI would make the language support better.\r\n\r\nIf I would remove something it\'d nix-env, but that mostly because I\'ve never had a reason to use it. So maybe it\'s useful for other users.','I don\'t know? Some scripts and docker.','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Read about it, and I were immediately intrigued. Tried NixOS, and while i struggled with setting it up, but in the end I were successful in doing so. I had to learn tons of nix specific stuff, which of course was frustrating at times. Still I kept on going! Prior to using NixOS I had used both Arch Linux and Gentoo as a daily driver, so I think I had a good starting point. And still it was a fairly steep learning curve.','Y','','','','','','','Reproducibility','Declarative','Configurable','I would make the CLI more similar to that of Nix flakes (remove/rename nix-rebuild).','Maybe Arch, Fedora or Ubuntu.','Y','','','','','','','','','','Sway','','',''),(1857,'1980-01-01 00:00:00',5,'en','896901445','A2','A3','male','','','','','','','','','','','','','','','','','Y','Y','','','','Y','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','well, it\'s been a perfect fit for what we were looking for :)\r\n\r\nunlike RH ecosys w/ Ansible :D','','Y','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','Y','','','','','','EL clones + Ansible :(','','','','','','','','','','','Y','','','','','Y','','','','N','not enough spare time on my hands :(\r\n\r\nbut it\'s not like we need any major changes in pkgs thanks to overlays','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','uh sry it\'s the same story as w/ Nix, we\'re in it for the whole package','Y','Y','Y','Y','Y','Y','','','','','','','','','','','','Y','','Y','Y','','','','',''),(1858,'1980-01-01 00:00:00',5,'en','653393777','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','N','N','Easy GUI to do everything.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','easy GUI to do everything',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1860,'1980-01-01 00:00:00',5,'en','1874178058','A2','A2','-oth-','Non-binary ','','','','','','Y','','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Config Management \\o/','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','','Y','Y','','','','','','Ansible','','','','Y','Y','','','','','','','','','Drone','','Y','','','','N','Lack of Knowledge (but I\'m working on it)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','Y','','Y','','','','','','','Y','Y','Y','','','','','','','','Sway','','',''),(1861,'1980-01-01 00:00:00',5,'en','2026700932','A5','A4','fem','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I wanted to use different versions of GHC for different projects and since then I have used it for all kinds of things.','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','Y','','Sandboxed packaging','Per-project development environment definitions (nix shell and flakes)','NixOS system configuration building for Amazon machine images','','Guix or move back to FreeBSD','','','','Y','Y','','','','Y','','','','','','yarn2nix, cabal2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I wanted a new distro when I started using Nix so I just used NixOS','Y','Y','','Y','','','','','','','','GuixSD or FreeBSD','Y','','','','','Y','','Y','','','','','NixOps, lorri',''),(1862,'1980-01-01 00:00:00',5,'en','303339722','A2','A4','male','','','','','','Y','','','','','Y','Y','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started using Nix together with NixOS.','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Solves dependency hell','Isolation of components','Atomicity of builds','Better tutorials for common problem solving. At the moment I often have to search in other peoples\' nix files on github to solve a specific problem.','decpac','','','','Y','','','','','','Y','Y','','','','node2nix https://github.com/svanderburg/node2nix\r\ncomposer2nix https://github.com/svanderburg/composer2nix','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was interested in the idea of declarative approach to system configuration. I\'ve read some articles about NixOS and decided to try.','Y','Y','Y','Y','','Y','','Atomic builds','Reproducable builds','Rollbacks','Probably some GUI for components and options.','Arch','Y','Y','','','','','','','','','i3wm','','nixos-container',''),(1863,'1980-01-01 00:00:00',5,'en','676857257','A6','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A coworker started using it and was so enthusiastic that their machine was reproducible using code and I was excited about it all. So I started using it and have never looked back. We started using Nix for managing dependencies at work and I started using NixOS as my primary OS. And it has been a great experience so far!','Y','Y','','Y','Y','','Y','','','','','','GitHub Codespaces','','Y','Y','Y','Y','','reproducible environments','reusability of already built artifacts and explicitly declaring what is required without any assumptions','','add better error messages and more documentation about how to use Nix and make it easier for people to adapt','language dependent package managers or Bash scripts to manage my system','','Y','','Y','Y','','','','','','Y','','','','node2nix, cabal2nix, poetry2nix, bower2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It\'s the same story as starting to use Nix. I wanted to get more out of it without restricting myself to using only Nix','Y','','','','','','','extensible and reproducible and easy to setup a new machine in minutes','rollback to a different generation','lot of features are settings that generate config files as required by different programs','','Arch','Y','','','','','','','','','','i3','','',''),(1864,NULL,1,'en','950240850','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1865,'1980-01-01 00:00:00',5,'en','1760267610','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(1866,'1980-01-01 00:00:00',5,'en','604520135','A1','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','N','Y',NULL,'home-manager didn\'t support latest nix version','home-manager support support latest nix',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','when nixos support latest nix',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','home-manager',''),(1867,'1980-01-01 00:00:00',5,'en','328583343','A2','A3','male','','','','','','','Y','','','Y','Y','Y','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I like the idea of having files that describe my setup. Dotfiles for software I use are nice, but NixOS takes it to the next level by allowing me to describe the OS setup.','','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','Text config','Replicable','Minimal','Better docs with more examples!','Probably something like Arch Linux and shell scripts for automating the setup.','','','','','','','','','','','','','','','','','','','','N','Haven\'t had a chance.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Needed a real OS for developing software while on Windows. So I\'m running NixOS on a virtual machine.','Y','','','','','','','Same','as','for Nix','Same as for Nix','Same as for Nix','','','','','','','None yet, but heard NixOps is nice. Would be cool to set it up on my web server.','','','','AwesomeWM with custom config','','','Thank you for your work.'),(1868,NULL,1,'en','301848776','A2','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1869,'1980-01-01 00:00:00',5,'en','2099108025','A2','A2','male','','','','','','Y','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got introduced to Nix at my workplace, where we started a project to replace our \"artisanal\" self-written build system with something more robust, which turned out to be Nix. Ended up liking it and started using it personally as well.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','Actually working pinning (i.e. \"if it builds once it stays building\")','Full isolation of different development environments','On-the-fly package installation with `nix-shell -p` for quickly trying out software','I would magically add a documentation system that allows writing documentation inline with the code, maybe similar to Python\'s.\r\nThe Nix and Nixpkgs manual are useful resources, but I still often find that to e.g. figure out what arguments a function actually supports I have to go look at the function\'s source, which is not always easy to find.','Probably the language-specific isolation tools I was using before (rbenv, pyenv etc)','','','','Y','','','','','','','Y','','','Semaphore CI','Bundix (https://github.com/nix-community/bundix)\r\n','Y','','','','N','Most of my changes are fairly specific and/or hacks, so they probably won\'t be useful upstream.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(1870,'1980-01-01 00:00:00',5,'en','2002611758','A2','A2','male','','','Y','','Y','','Y','','','','Y','','','','','Y','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','','Y','Y','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','Y','','','','','','krops','','','','i3','','',''),(1871,NULL,NULL,'en','1774250968',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1872,'1980-01-01 00:00:00',5,'en','1406613867','A2','A3','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','','','','','','','','Y','Y','Y','Y','','','Y','','','Y','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','','','','','','Y','','','Y','','','','','','','sway','','',''),(1873,'1980-01-01 00:00:00',5,'en','1850392199','A2','A3','male','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I think I saw a tweet about it, and I looked into Nix, and saw that it was the most reasonable approach to dependency management that I\'ve ever seen. I\'ve used it to set up my services here at home.','','','','','','','','','Y','','','','','','Y','','','Y','','Reproducible system configuration','Reproducible package management','Development','Definitely the language. It is difficult to understand existing configurations, and how they can be extended or modified.','I\'ve been interested in seeing if nickel-lang would make NixOS more approachable for me. It\'s hard to say so early though.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','It seems far too complicated due to the language and size of the repository.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Tweet -> Research -> Reformat pipeline, I suppose. I use it for personal Linux laptops.','','','Y','','','','','Reproducible system configuration','Reproducible packages','Development','Language alternatives to Nix, such as Nickel, but using the same underlying infrastructure, I suppose.','Ah... no idea. Probably just some distro like Ubuntu or something.','Y','','','','','','','Y','','','Sway','','','I really love the work you do. I just wanted to say thanks.'),(1874,'1980-01-01 00:00:00',5,'en','1017783418','A1','A3','male','','','','','','','Y','Y','','Y','Y','','','Y','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','setting my PC','A2','I like Haskell. And I realized that a lot of Haskellers are using Nix. So I\'ve started to use it.','Y','Y','','Y','','','Y','','','','','','','Y','Y','','','Y','','NixOS (Declarative system configuration/management)','Sharing the development environment among my team','Fearless updates','Import some features from Home Manager for managing my dotfiles and installing Spacemacs.\r\nI know Home Manager is popular and maintained well but I care it is just a community\'s one not an official.','Ansible, Docker','','','','','','','','','','','','','','','niv https://github.com/nmattia/niv\r\nnix-direnv https://github.com/nix-community/nix-direnv','Y','','','','N','Fear of exposing my imcompetence. (So I\'ve never contributed any other OSS)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','For a long time, I\'ve explored the best managing system configuration tool.\r\nWhen I find out Nix/NixOS, my exploring was end.','Y','','','','','','','NixOS (Declarative system configuration/management)','Sharing the development environment among my team','Fearless updates','Import some features from Home Manager for managing my dotfiles and installing Spacemacs.\r\nI know Home Manager is popular and maintained well but I care it is just a community\'s one not an official.','Ansible, Docker','Y','','','','','','','','','','Sway','','','I\'m so happy I found Nix. Thank you!'),(1875,'1980-01-01 00:00:00',5,'en','479707069','A2','A2','male','','','','','','','','Y','','','','Y','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Started with Nix with NixOS by configuring my personal linux desktop and remote server(hosting personal website, mail server etc.), and use it regularly when starting new projects for installing necessary dependencies.\r\nStayed for:\r\n- Declarative configuration w/ version control\r\n- Reproducibility\r\n- Explicit dependency management\r\n','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','','','','','Arch linux package manager or Docker','','','','','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','bspwm, dwm, awesomewm, sway','nix-index','',''),(1876,'1980-01-01 00:00:00',5,'en','1609046423','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A5','Largely theoretical reasons – the dependency management system seemed to match what I thought it should be like. I think I was also having difficulties with Arch configuration at the time.','','','','','','','Y','','','','','','','','Y','Y','','Y','','Predictability and reliability of what building a package will achieve','Declarative package management','Reasonable package description format (nixlang)','Add: a standard system for *version* management based on packages\' stated version constraints, that would compile down to something reproduceable.\r\nRemove: some of the redundant ways of building, e.g, Haskell packages.','Guix, or maybe just the plethora of language-specific package managers','','','','','','','','','','','','','','','cabal2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','Personal, every-day OS','A5','Started using it to use Nix.','','','','','','','Personal computer','Declarative configuration','Usually works quite well, reliable (better than Arch, for example)','','','GuixSD or Fedora','Y','','','','','','','','','Y','LXQt, XMonad','None (I\'m not really aware of any that haven\'t been asked about already)','None (I\'m not really aware of any that haven\'t been asked about already)',''),(1877,NULL,1,'en','692515480','A2','A2','male','','','','','','','','','','Y','','Y','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1878,'1980-01-01 00:00:00',5,'en','460635681','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','N','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1879,NULL,4,'en','134986034','A2','A4','male','','','','','','','Y','','','','','','','','','Y','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Was on Gentoo for long time both on personal and work machines.\r\nSystem and package upgrades, incompatibilities and compile times made it quite unworkable.\r\nOn new job and laptop decided to try NixOS and sticked to it since then.\r\nThough still keep nix on Gentoo for more familiar system packages (syslog, openrc instead of systemd) and to be able to test nix-on-linux cases (include nix-without-systemd)','','Y','','','','','Y','','Y','','','Y','','Y','Y','','','Y','','Declarative decoupled packages','Declarative system management','Binary cache','Remove all implicit environment inputs: channels, packages, overlays, overrides all should be explicit\r\nAdd nix-based remote builder (not via ssh root)','Gentoo','','','','','','','','','','','','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','Y','','','','','','','Y','','','','','','','','','Y','','','',NULL),(1880,'1980-01-01 00:00:00',5,'en','1573276191','A1','A5','male','','','Y','','','Y','Y','','','Y','Y','','','','Y','','Y','Y','','','','','Y','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','Y','','','Y','','','','','','','','Y','','','','','Cross OS and processor type support','Most major development language and platform tooling and libraries','Caching and performance','Better and more bleeding edge libraries and programming languages and DB tooling support especially for macOS Intel and M1 processor','Sicker containers','','','','','Y','','','','','','Y','','','','NA','','Y','','','N','My limited knowledge','N','N','Migrating my integration and CI and production workloads to K8s wrapped with NixOS containers and better and more bleeding edge stability support in GCP and AWS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NA','NA',''),(1881,'1980-01-01 00:00:00',5,'en','2073347501','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Declarative reproducibility ','Y','','','','','','Y','Y','Y','','','','','','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','','','Y','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','','','','','','','','','','','','','','','',''),(1882,'1980-01-01 00:00:00',5,'en','831201650','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','','','To configure nixos','A1','','','Y','','','','','Y','','','','','','','','Y','','','Y','','nix-shell','nix-build','nix repl','Make a single command wrapper for all the nix command and improve output of some nix command to be more comprehensive when needed (displaying the package that are created instead of a lot of file path...)','Ansible and Terrform mixed with docker xontainer','','','','','','','','','','','Y','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I needed a more stable alternative to arch while keeping the huge package support and freshness that it provide through AUR','Y','','','','','','','Stability','Package support','Package freshness','Improve doc and commandes outputs like in the other similar field','Fedora silverblue or ArchLinux','Y','','','','','','','','Y','','I3-gaps','devshell by numtide\r\nagenix by ryantm','',''),(1887,NULL,NULL,'en','2125773697',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1884,NULL,NULL,'en','1101955272',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1885,NULL,NULL,'en','1855063661',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1886,'1980-01-01 00:00:00',5,'en','763747949','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','','','','','','','Y','','Y','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','Y','','','','Workhorse laptop','declarative system configuration in single place','easy package/system upgrades','','','','','','','','','','','','','','i3wm','','',''),(1888,'1980-01-01 00:00:00',5,'en','616925379','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Concept of a declarative reproducible system is appealing. ','','','','','','','Y','','','','','','','','','','','Y','','Many things work — ever rather recent libs/apps. ','Reproducible system state. ','Long term updateability. ','More maintainers and/for more documentation. ','Containers, ansible. Maybe salt. ','','','','','','','','','','','','','','','','','','','','N','Not experienced enough. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Reproducible system state. ','Y','','','','','','','See above, nix. ','See above, nix. ','See above, nix. ','See above, nix. ','Unsure ATM. ','Y','','','','','','','Y','','','','','','Thank all of you for your effort! '),(1889,'1980-01-01 00:00:00',5,'en','681069116','A2','A4','male','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','to reproduce OS and software/service installations on different machines','Y','','','','','','Y','Y','','Y','','','','','Y','Y','','Y','','immutability and reproducibility','NixOS modules','NixOps','add types','nothing','','','','','Y','','','Y','','','','','','','yarn2nix\r\n\r\nSbtix: https://gitlab.com/teozkr/Sbtix','Y','Y','','','N','don\'t know how to write tests','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','to have the same \"machine\" on different physical devices.','Y','Y','Y','Y','','','','easy rollback','reproducibility','easy to share OS setup with other people','better arm64 support','Ubuntu','Y','Y','','','','','','Y','Y','','','','',''),(1890,'1980-01-01 00:00:00',5,'en','1112156087','A1','A3','male','','Y','','','Y','','','','','','Y','Y','','','','Y','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','I wanted to have disposable developing environment for python and mysql. I used to use docker but volume mounting and networking was too much of a hassle.','','Y','','','','','Y','','','','','','','','Y','','','','','nixpkgs','nix-shell','NixOS','Add more packages, Windows support, up-to-date & complete documentation & examples on how to use and configure each package.\r\nChange the nix expression language to be more easily understandable and concise.','docker, multipass','','','','','','','','','','','','','','','','','','','','N','I don\'t understand nix expression language well enough.\r\nI\'m not confident enough to create a working derivation.\r\nI don\'t want to maintain a derivation.','N','N','Ability to install packages from debian/ubuntu repository',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Nix is great, but I wish it was easier.'),(1891,'1980-01-01 00:00:00',5,'en','669132146','A6','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A6','simplicity to manage system after learning curve is gone :p','','Y','','Y','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','','','','','','Y','Y','','','Y','','','','','','Y','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A6','','','','','','','','','','','','','','','Y','','','','','','','','','sway','','',''),(1892,NULL,1,'en','1648708819','A2','A4','male','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1893,NULL,1,'en','1865540456','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1894,NULL,2,'en','590625390','A1','','male','','','','','','','','','','','','','','','Y','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I like the concept of nix','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1895,'1980-01-01 00:00:00',5,'en','1706557619','A1','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It\'s a better package manager than homebrew.','Y','','','','','','Y','','Y','Y','','','','','Y','','','Y','','nix-shell','home-manager','nix-darwin','','Use asdf.','','','','','Y','','','','','','Y','','','','+ https://github.com/svanderburg/node2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','I wanna a fully reproducible linux, then I found it.','Y','','Y','Y','','','','','','','','ArchLinux, maybe.','','','Y','','','','','','Y','','','nix-darwin','NixOps','Thanks for guys creating and maintaining Nixpkgs / Nix / NixOS, etc. '),(1896,'1980-01-01 00:00:00',5,'en','557769092','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I started using Nix as NixOS config language','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','nix shell & nix run','nix flake ...','Nix language - it\'s great no matter what haters say :))','Improve docs, improve flakes a little & remove legacy, improve LSP support.','As I mainly use Nix with NixOS, I would have stayed with Arch and kept using pacman / yay / building from source or would try Guix or Ansible.','','','','Y','Y','','','','','','','','','','','','Y','','','N','I have little time to do it being a student, the docs are a bit tough - for now I found that making flakes is a bit easier - I contributed to Nix ecosystem making a Flake nix module (base16.nix) and I try to help jupyter-with project with flake support.\r\n\r\nP.S. I will do my best to attend next ZHF hackaton (there was one before 21.11 release, organized with Tweag\'s help, notably @balsoft).','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','As my daily driver','A3','Before Nix I used Arch (that was in high school) as it had many programs packaged (I needed it mainly for ricing), but Arch broke after every update and I didn\'t understand how it worked. As I\'ve also enjoyed functional programming, I\'ve had my eyes on Nix for several years.\r\n\r\nAfter graduating high school I had a month of free time and decided to migrate my configuration to NixOS and learn Nix. I\'ve used @balsoft config (https://github.com/balsoft/nixos-config) as a starting point, and got help from @ru_nixos telegram chat. I\'ve immediately found channels strange, luckily that was the time (1,5 years ago) flakes were becoming mainstream, so my config quickly became flake-based.','Y','','','','','','','Configuring my personal computer in an easy, config-centralized, modular, shareable, declarative, extensible way','Updates without major breakages','home-manager','Improve docs, ability to easily rebuild and swith home-manager and NixOS configs separately, while keeping home-manager & NixOS config in the same flake, stable flake API & less non-flake legacy. Also very important: stable pipewire support (I\'m on 21.11 + Wayland + firefox and still can\'t share screen, I\'ve tried every variant and now launch X11 (i3) for this).','Arch / Guix','Y','','','','','','','','','','sway','direnv, home-manager, base16.nix ','channels','<333 best project ever\r\nSTOP WAR IN UKRAINE, RUSSIA != PUTIN'),(1897,NULL,4,'en','482062811','A2','A6','male','','','Y','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','The idea of self-contained reproducible development environments was the main draw but also for Nixos having such easy rollback was also a major draw ','Y','Y','','','','','Y','','','Y','','','','','Y','','','Y','','declarative provisioning','safety - isolation and trivially easy upgrade and rollback mechanisms','Fine grained control over system / environment components (though this can be a bad thing too when it all gets a bit out of hand)','Add decent documentation and examples of non trivial but similarly not insanely esoteric usages. I know documentation is really hard to do well but what I have found thus far for nix is really inadequate.\r\nIdeally (if possible) static type checking esp for function signatures as it seems impossible to understand what is going on without being intimately familiar with the underlying source code.','Ubuntu/docker/packer et al','','','','Y','Y','','','','','','Y','','','','poetry2nix - https://github.com/nix-community/poetry2nix','Y','Y','','','N','Lack of expertise and time. If I had more the former the latter would be less of an inhibitor.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Firstly out of curiosity then in more earnest when I became a bit more comfortable.','Y','','Y','Y','','','','','','','','','','','','','','','','','','','','','',NULL),(1898,NULL,2,'en','1051941550','A7','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1899,'1980-01-01 00:00:00',5,'en','1080274692','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','N','Y',NULL,'At the time, I installed it as a secondary package manager on my main system (arch linux) and ended never using it.','If I found a compelling reason to move away from Guix SD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','If I found a compelling reason to move away form Guix SD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none','none','I\'d be interested to see how many people had experiences like mine, i.e. trying nix for a while and then moving to Guix, or vice versa.'),(1900,'1980-01-01 00:00:00',5,'en','210145077','A5','A3','male','','','','','','','Y','','Y','Y','Y','','Y','','','','','Y','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','','','','','','','','Y','Y','Y','Y','Y','Y','','','Y','Y','','Y','','','','','','','','','','','','','Y','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','','Y','Y','Y','Y','Y','Y','','','','','','Bedrock Linux, GoboLinux, GUIX maybe. ','Y','','','','','Y','','','','','Awesome','','',''),(1901,NULL,1,'en','2038103237','A5','A3','-oth-','nonbinary (maybe you should add more options?)','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1902,NULL,NULL,'en','674358047',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1903,NULL,NULL,'en','490131864',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1904,'1980-01-01 00:00:00',5,'en','1217783182','A5','A4','fem','','','','','','','Y','','','','','','','','','','','','','','','','','','Engineering manager','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I started using Nix because I was using NixOS','Y','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Composable builds (i.e. everything I want to do can be done in a single `nix build` command)','Purely functional programming model','Clean separate between the Nix store and Nix the language via the .drv format','Add a type system','','','','','Y','Y','','','','','','','','Y','','https://github.com/NixOS/cabal2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','We initially used Ansible at work, which was not going well. I introduced NixOS as a replacement for Ansible, which went better','Y','Y','Y','','','','','Centralized system configuration','Declarative system management (as opposed to imperative)','Rollbacks','Something like users.mutableUsers = false, but for the entire system (e.g. mutable = false). In other words, a NixOS option that disables all imperative operations, including:\r\n\r\n* Imperative package management\r\n* Imperative channel management\r\n* Imperative container management','Debian','Y','','','','','Y','','','Y','','','Nixpkgs (I consider that separate from NixOS and Nix)\r\n\r\nnix-diff','Hydra','You should ask questions about the Nix governance process and community management/moderation'),(1906,NULL,NULL,'en','115815042',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1907,NULL,1,'en','1020984436','A2','A2','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1908,'1980-01-01 00:00:00',5,'en','1780621108','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I saw Susan Potter\'s talk about it at a Comcast event in Philadelphia several years ago. At the time I was reprovisioning a VM from scratch, which the team I was on had to do regularly to find out in what ways Ubuntu repo drift had broken our provisioning _this time_. The promise of nix seemed so amazing that I immediately proposed some independent research time at work around it.','Y','','','Y','','','Y','Y','','','','','','','Y','','','Y','','Reliable cross-platform builds','Consistent dev environment experience','Smug feeling of superiority when people talk about dependency hell','I\'d make every core function typed (or expand the purescript nix implementation to the complete Nix API)','Before I used nix for dev environments, I just lived with \"oh well maybe the IDE config for project X will be broken for a month or two until this compatibility issue is fixed.\" It was maddening. The upshot is I got really good at keeping types in my head! But that\'s not really a great outcome.','','','','Y','Y','','','','','','Y','','','','cabal2nix','','','','','N','I\'ve never really understood outputs from derivations, and I don\'t know if there\'s anything new I have to add','N','N','I\'d need to put the time in to work out my special shell config, probably switch back to neovim, and I\'d want a WSL distribution of it (maybe that already exists? I haven\'t looked in a while, I\'ve been pretty happy with home manager)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix home manager','',''),(1909,'1980-01-01 00:00:00',5,'en','1202419932','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Searching for simpler ways to install \"all-included\" packages. ','Y','Y','','','','','Y','','','','','','','Y','Y','Y','','','','Composable systems','Reproducible builds','Build tool agnostic ','Static types.(Better docs)','Asdf, docker','','','','Y','','','','','Y','','','','','','','Y','','','','N','','N','N','Don\'t know',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1910,'1980-01-01 00:00:00',5,'en','848179655','A5','A2','fem','','','','','','','','','Y','','','','','','','','','','','','','','','','Engineer, Security','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A friend in college recommended it to me since I have many Linux devices that I want to have similar configuration','','','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','Declarative system configuration','Declarative dependencies (with flakes)','Isolated builds','I would add better search, since switching to flakes `nix search` has been much less useful and slower','I would continue using Arch Linux on desktops and setup servers either manually or with Ansible','','','','Y','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','Y','','','','','I would better integrate home-manager into the nixos system','I\'d use Arch Linux on my machines','Y','','','','','','','','','','sway','home-manager','',''),(1911,'1980-01-01 00:00:00',5,'en','867425544','A2','A2','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','','N','Y',NULL,'I stopped using Nix after realizing I would have to put in a lot more effort to bring in my own packages than I had the energy to give.','Having more time and energy. Or the package repositories grow in number and size!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Same reasons I stopped using Nix. I went all in on NixOS, and while I greatly enjoyed the experience ultimately I didn\'t have the energy or time to contribute the things I needed/wanted to use.','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1912,'1980-01-01 00:00:00',5,'en','1451620615','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','','','','','Guix','','','','','Y','','','','','','','','','Buildbot','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','I3wm','','',''),(1913,'1980-01-01 00:00:00',5,'en','1411826324','A1','A2','male','','','Y','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','A lot of Haskellers love Nix so I wondered what the fuss was all about and tried it out myself. ','','Y','','','Y','GitHub Actions','Y','Y','','','','','','','Y','Y','','Y','','Flakes','Simple configuration like setting up a postgresql service with backups is trivial compared to the alternatives.','nix develop','* Remove the old way of packaging for Flakes. It\'s just so much easier to understand. \r\n* Add types, but I don\'t know if this is even possible in Nix\r\n* Add complete documentation\r\n* Add 10293813 books about Nix/NixOS/Nix (package manager)\r\n* Add non-root containers','Ansible, and a lot of virtual machines/containers.','','','','Y','Y','','','','','','Y','','','','* cabal2nix: https://github.com/NixOS/cabal2nix\r\n* I forgot the Python one\r\n* The Rust one\r\n','','Y','','','N','Not familiar enough with Nixpkgs, and no time. Too busy studying other heavy things. I will get to it when I\'m able to.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Managing dependencies and system config is simpler than the alternatives','Y','Y','','','','','','systemPackages','Saner interface for systemd','Saner interface for system services (e.g postgresql)','* Proper flakes support\r\n* This isn\'t really with NixOS itself, but with the support around it. There are no major cloud providers that support NixOS. Like first party support. And it\'s quite frankly an incredible bummer since the alternative requires a lot of effort to setup.','FreeBSD + Linux VM','Y','','','','','','','Y','','','','nix-community','N/A','I wish there was more flakes support, and major cloud provider support. That aside, Nix is fantastic and I hope it becomes more approachable, better documented, and more polished as the days go by. Thank you for making this.'),(1914,'1980-01-01 00:00:00',5,'en','1560906197','A2','A2','-oth-','nonbinary male','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I was friends with a Nix enthusiast and decided to try it because I liked the ideas.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','It is faster to just write expressions for myself','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','i3','direnv','lorri',''),(1915,NULL,1,'en','1059181770','A1','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','My friend told me enthusiastically about a linux distribution that promised incredible benefits. He explained, having only read about it, never used it, and I didn\'t believe it would work in real-world situations.\r\nAfter meeting NixOS contributors at 35C3 and them showing me how they use it for their projects, my mind was blown and I was convinced.\r\nHaven\'t stopped using it since.','','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','','','','Windows support, so I could wrap my Visual Studio build in Nix and cache the results. Maybe even replace the build system.','Maybe Guix. I tried Guix for a few months but it doesn\'t have many advantages over Nix.\r\nOtherwise, in terms of distros, I heard Fedora Silverblue is good and has a similar approach.\r\nIn terms of build systems I\'m trying to use Bazel for a Visual Studio build on Windows. Nix would be great, but I\'m afraid my colleagues won\'t like a distro build tool as a project build tool.','','','','Y','','','','','','','Y','','','','','Y','','','nur','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','','','','','','','Y','','','','','','','Y','','','i3',NULL,NULL,NULL),(1916,'1980-01-01 00:00:00',5,'en','1344670919','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Along with NixOS','','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Atomic system update','Declarative whole system configuration','Dependencies isolation for development','It would be easier to offload compilation (my nixos install is running on an underpowered x86)\r\nAlso, finer grained caching, my personal rust projects are always rebuilt from scratch','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Experimenting with atomic system update. I\'ve used it on servers and personal machine but right now it\'s only powering my home server.','','','Y','','','','','Atomic updates','Declarative system state','','More complete and robust network setup. I cannot run `nixos-rebuild switch`directly as it usually breaks something with network.','Server running debian, maybe something like Chef','Y','','','','','Y','','','','','sway','','',''),(1917,'1980-01-01 00:00:00',5,'en','1124489171','A2','A2','-oth-','Non-Binary','','','','','Y','','','','','Y','','Y','','','','','Y','','','','','Y','Y','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','','','Y','','','Y','','Y','Y','','Y','','','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','Y','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','Y','','Y','','','','','','','','','','','','Y','','Y','','','','home-manager','morph',''),(1918,NULL,1,'en','981617610','A5','A3','-oth-','','Y','','','','','','Y','Y','','','','','Y','','','','','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1919,'1980-01-01 00:00:00',5,'en','1683066489','A2','A3','male','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Reproducibility is the main reason. Also I am using NixOS so I \"have to\" use nix at some point.','','Y','','','','','','','Y','','','','','','Y','','','Y','','Reproducibility','Being declarative','','I\'d rewrite it to make it understandable.','Probably Python','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I am using Linux for ~10-ish years. I tried while looking for a new distro. Working declarative configuration was the thing.','Y','','Y','','','','','Declarative configuration of system','Being able to roll back','','','Either Debian or Gentoo','Y','','','','','','','','','','awesomewm','home-manager','A lot of *2nix projects',''),(1920,'1980-01-01 00:00:00',5,'en','1331595154','A1','A3','fem','','','','','','','','Y','','','','','','','','Y','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Home management ','A5','Started on MacOS/Ubuntu laptop gateway to nixos on the server and then nixos on personal machines ','','Y','','','','','Y','Y','Y','','','Y','','','Y','Y','','Y','','Being able to see source provenance and build instructions for every package ','Unified language for everything ','Functional programming! ',' Add faster Eval performance maybe? Some support for types (not sure how well this would work in practise) ','For day to day stuff, maybe btrfs snapshots for the OS config and regular Haskell tooling? ','','','','Y','','','','','','','Y','','','','cabal2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Personal servers','A5','After coming to love nix on Ubuntu and macos it was the obvious goto for new servers ','','','Y','','','Y','Personal machines ','Ability to contribute to the OS','Reproducibility of advice/answers in blogs etc... The stability of the module system is important \r\n','Reproducibility of system setup just from config ','Make it easier to sandbox applications with granular permissions. Maybe something like spectrumOS or android? ','Arch I suppose? ','Y','','','','','Y','','Y','','','','Haskell infra\r\nNixOS community stuff','Hydra, nixops','Magic wand for the project in general: I would remove all the fascists from RFC 98. That part of the discussion is a complete blight on the community and really impacted my motivation to contribute.'),(1921,NULL,NULL,'en','370114261',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1922,NULL,1,'en','2089577251','A5','A3','fem','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1923,NULL,NULL,'en','765730525',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1924,NULL,1,'en','1295322460','A5','A3','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1925,NULL,NULL,'en','1045003581',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1926,'1980-01-01 00:00:00',5,'en','1892000413','A5','A3','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','N','Y',NULL,'Lack of type checker','Addition of static typing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Lack of type checking ','Addition of static types ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1927,'1980-01-01 00:00:00',5,'en','1440175506','A2','A4','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Reproducible Builds','Overridable packages','','Make flakes stable.','Probably something sad with Docker. Or buildroot or yocto.','','','','Y','Y','','','Y','Y','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','','','','More support for embedded use cases (no vim/bash, documentation etc in a minimal Nixos image)','Fedora','Y','Y','','','','Y','','Y','','','','','',''); +INSERT INTO `limesurvey_survey_2022` VALUES (1928,'1980-01-01 00:00:00',5,'en','380805143','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','','Y','Y','','N','Y',NULL,'The command-line tools are a bit complex (too Red Hat-like in some ways) and the language is... difficult. The docs are also really not that good. Sorry docs people.','Better docs!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Same reasons as Nix, but also things like, running third-party binaries (to which I don\'t have the source code) is too difficult and hacky at best. I also honestly couldn\'t figure out how to operate or upgrade the system. It comes down to docs again.','Compatibility shims for third-party binaries that expect libc et. al. in \"normal\" places would help. And again, better docs.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','I\'m not aware of others.','Please please please focus on documentation! It\'s so important. Nix\'s docs are somewhat comprehensive, but not cohesive. They\'re also disparate between Nix (the language), Nix (the package manager) and Nix (the OS). Something needs to tie them together.'),(1929,NULL,2,'en','380465562','A2','A2','male','','','','','','','','','','Y','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','Y','','','','','','','Y','','','','','Y','Y','Y','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1930,'1980-01-01 00:00:00',5,'en','8265021','A2','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Was looking for a Homebrew replacement after my Homebrew environment had rotted. Was hooked after I realized what nix-shell could do to my development environments. I ','Y','','','','Y','','Y','','Y','','','','','Y','Y','','Y','','','Project specific development environments','Package managements ','Temporary shells for evaluating tools','Consolidation of and documentation for all nixpkgs patterns.\r\nA clearer path towards flakes.\r\nBetter MacOS-support. (An amazing job has been done already, but MacOS-nix still feels second class.)','Probably Docker and/or macports. Or Homebrew.','','','','Y','','','','','','','','','','','gem2nix\r\nnpm2nix','Y','','','','Y',NULL,'N','Y',NULL,'I don’t have any non-corporate Linux-machine.','The need for a new home server.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lorri\r\nDirenv (if that counts)','','I looked into flakes but haven’t found the time to transition. The documentation and path forward was to unclear. The state of nix-command after 2.4 is confusing - replacing tools that work without flakes with ones that require flakes.'),(1931,NULL,1,'en','1220042871','A5','A2','fem','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1932,'1980-01-01 00:00:00',5,'en','712848444','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Lobbying in the teaching assistant slack. After receiving a new computer i started using it as a fresh install ','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','Reproductible ','Self contained ','Easy to debug / source code is nearly always the answer','Better error management & enforcing push of flakes to avoid channels ','Archlinux ','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Reinstalled a computer, tryied it, loved it ','Y','Y','','','','','','System as code','Reproductible ','Self contained','','Adding more packages, many issues with virtualisation tools ','','','','Y','','','','','','','i3','','',''),(1933,'1980-01-01 00:00:00',5,'en','177546083','A5','A5','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','business','A4','I was hired by https://holo.host/ to create an auto-upgrading operating system for their hardware in 2018. I ended up using nixos as the basis. For a brief time period, it was the largest deployment of nixos onto a fleet of bare metal machines.','Y','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','deterministic build','deployment via nixos rebuild switch','Composability (functional language, flakes and importing/inheritance)\r\n','it\'d be better to have the language simplified. Maybe more like clojure.','hard to say. in the past I used ansible and docker.','','','','Y','Y','','Y','','','','Y','Y','','','clj2nix, node2nix ','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same as nix story I was hired by Holo.host to implement an auto-upgrading operating system','Y','Y','Y','Y','','Y','','determinism','composability','ease of deployment','make the language simpler like clojure','ansible and docker','Y','Y','','','','','','Y','Y','','','','',''),(1934,'1980-01-01 00:00:00',5,'en','1293102459','A2','A4','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','By using NIXOS','','','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','possibility of having slightly different versions of the same library, and easy switch between them ','','','I will add more documentations: package descriptions (f.e. like debian packages)','don\'t know','','','','','','','','','','','','','','','','','','Y','','N','maintainer responsibilities\r\n','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','B/c of curiosity','Y','','Y','','','','','declarative configuration','absence of unused software in the path','','documentation: options descriptions/search (do we have search.nixos.org but local version?) ','I can\'t imagine this disaster','Y','','','','','','','','','','xmonad','','','Thank you All, Keep good work and Good Luck!'),(1935,'1980-01-01 00:00:00',5,'en','1949701989','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','N','N','Ability to experiment - ad hoc install/uninstall packages, without any risk of breaking the system. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Ability to easily reinstall system to the same state as what i have (replace ansible)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1936,'1980-01-01 00:00:00',5,'en','1024291337','A2','A3','','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','Y','Y','','','A2','','','Y','','','','','Y','','','','','','','Y','Y','','','','','','','','static types','','','','','Y','','','','','','','Y','','','','','','','','','',NULL,'N','Y',NULL,'','setting up a new machine',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'direnv','',''),(1937,'1980-01-01 00:00:00',5,'en','724506943','A5','A2','fem','','','','','','Y','Y','Y','Y','Y','Y','Y','','Y','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My Debian machine was crashing unexpectedly and I wanted a solution which would allow me to put my computer configuration into version control and specify the configuration from a single language. ','Y','Y','','Y','Y','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','Deterministic evaluation & reproducibility','Using software via urls, essentially skipping an installation process','Flakes','I would prefer that the tools for debugging memory usage and evaluation of nix expressions had better debug-ability ','','','Y','','Y','Y','','Y','','','','Y','','','','gradle2nix','Y','Y','','','N','The process and community has been slightly intimidating even if it\'s very welcoming. \r\n\r\nI Also prefer tabs for accessibility and can use flakes for most packaging I need to do that might involve nixpkgs. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','Deterministic configuration ','Debugability','','','','Y','','','Y','Y','','','','Y','','','','',''),(1938,NULL,1,'en','1153728758','A5','A3','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1939,'1980-01-01 00:00:00',5,'en','1355687846','A2','A5','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','The idea is fascinating, and a friend successfully has used it so I dared take the leap too.','','Y','','','','','Y','','','','','','','','Y','','','Y','','Declarative configuration of my laptop','Isolated environments for development projects','Run software \"without installing\"','Make the Nix language more familiar to learn. Ensure all on-line documentation and community provided content is top quality and up-to-date.','Ubuntu','','','','','','','','','','','Y','','','','','Y','','','','N','Insufficient skills in the Nix language and the system in general','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','The idea fascinates me. A fried has used NixOS successfully, so I dared take the leap as well.','Y','','','','','','','Declarative laptop configuration','Isolated environments for development projects','Run software \"without installing\"','Ensure all on-line documentation and community content is up-to-date and top quality. Make the Nix language more familiar and easier to learn.','Ubuntu.','','','','','','','','Y','','','','home-manager','',''),(1940,'1980-01-01 00:00:00',5,'en','1194673098','A2','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I read about it and what I read sounded good. Moving into SRE I had an interest in reproducible builds','','Y','','Y','','qemu','Y','','','','','','home desktop','','Y','','','Y','','Hermetic builds (from nix flakes)','nix-shell','declarative OS specifications','I\'d add a jails feature allowing nix-shell environments to be isolated from my desktop so that I can develop but if any tool is compromised my desktop isn\'t.','Guix','','','','','Y','','','','','','','','','','haskell.nix','','Y','','','N','I was about to once but somebody got there first','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I split coffee on my Mac and knew that my new desktop would be nixos based. Now if my laptop breaks I can get going on a new laptop quickly\r\n','Y','','','','','','Home desktop','Easy rollback via the boot-loader','home-manager support','','I\'d abstract away all service declarations such that they could be re-used for non-system systems or independently of Nixos','Guix','Y','','','','','','','Y','','','','Nix flakes','','Nixos is awesome'),(1941,NULL,NULL,'en','978054803',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1942,'1980-01-01 00:00:00',5,'en','828424916','A1','A3','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I was looking for an immutable, declarative package management system that would fit my needs better than OSTree does.','','','','','Y','','','','Y','','','','','Y','Y','','','Y','','Declarative configurations','Reproducibility','Immutability','I\'d fix the broken packages shipped in nixpkgs. They\'re currently the only thing preventing me from using Nix full-time.','OSTree.','','Y','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I was looking for another OS with an unique package management system, and I was also used to immutable systems, so NixOS seemed like a perfect choice.','Y','','Y','','','','Desktop PCs','The configuration files on /etc/nixos.','Up-to-date repos','Using Xen without messing too much with the system.','I\'d add a way to quickly write new packages directly in a configuration file, instead of trying to expand nixpkgs.','Fedora Silverblue','Y','','','','','','','Y','','','','','',''),(1943,'1980-01-01 00:00:00',5,'en','375767723','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','Learned about it from a coworker and eventually saw the value in having reproducible dev environments (without having to fallback to gitpod and the like)','Y','Y','','','','','Y','','','','','','','','Y','','','','','Declarative environment management','','','“Go to definition” support. It’s impossible to learn more about what scripts are doing. I understand why this is difficult and technically in the abstract impossible for some things, but even best effort approaches would be a considerable step forward ','Combination of readmes, language specific package management/version management, docker-compose, etc ','','','','','','','','','','','','','','','','','','','','',NULL,'N','N','I need to do it I’ve just or it off :)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1944,NULL,1,'en','1762525520','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','algorithm developer ','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1945,'1980-01-01 00:00:00',5,'en','183532470','A2','A4','male','','Y','','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I love Haskell and kept stumbling about Nix articles. So I got curious, and switched soon after.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Declarative development environment of projects','Project packagement','','- Type checker, stronger type system. I always feel incapacitated when moving from Haskell to programming Nix. The most annoying thing is the ambiguity between paths and strings, and the non-intuitive handling of those.\r\n- Simplify things. By now, I got used to overlays and overrides, but keep thinking that they are overly complicated.\r\n- Flakes: Use them, once and for all. (Or agree on using something else). But this diversification of `nix` commands is extremely painful.\r\n','Guix, I guess.','','','','Y','Y','','','','','','','','','','- cabal2Nix\r\n- python 2 Nix (but there are too many variants, I always forget which one I use most)','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I gave the answer in the previous box; the distinction was not clear, sorry.','Y','','Y','','','','','Declarative system management','','','- Build delays from branches. It is really annoying when my browser tells me it is outdated, and I can not update because the branch is stuck for some (usually unrelated) reason.\r\n\r\nI include Nixpkgs related stuff here:\r\n- Nixpkgs: Use a proper code formatter that leaves no options. Too often, I keep changing my Nix files because people are unsatisfied with the format.\r\n- Nixpkgs: Unify (enforce?) workflows for different communities. For every programming language, the ecosystem is vastly different. For example, packaging a Python package is so different from packaging a Haskell project. I think this should not necessarily be the case.\r\n\r\n- In general: Improve the documentation. Too many features are undocumented, too many times I have to check the Nixpkgs code base to see how things work.','GNU Guix, I guess. I used Arch Linux before, and was also really happy!','','','','Y','','','','','','','XMonad','cabal2Nix','Some (many?) xxx 2 Nix converters. There should be less of those, and the existing ones should be better (officially?) supported.','Thank you very much for working on Nix, Nixpkgs, and NixOS!'),(1946,'1980-01-01 00:00:00',5,'en','1140529939','A2','A4','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','To administrate my work and personal computer','A5','','','Y','','','','','Y','','','','','','','','Y','','','Y','home-manager','One configuration to get a reproducible system. This way I can backup how my system is configured and safely format my disk.','Being able to update any package to the version I want without waiting for others to package it.','Being able to configure my home directory with home-manager.','Fixing this issue https://github.com/NixOS/nixpkgs/issues/95911 would allow me to switch to NixOS and benefit from the full experience.','Guix, but it lacks of packages would be a problem.','','','','Y','','','','','','','Y','','','','','Y','','Y','','Y',NULL,'N','Y',NULL,'Lack of good mono support: https://github.com/NixOS/nixpkgs/issues/95911. ','As soon as https://github.com/NixOS/nixpkgs/issues/95911 is fixed I will happily go back to NixOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','I suggested using nixops to colleagues but I\'m the only one who managed to install it and the others felt it was way too complex after 2h.','you are AWESOME!!!!!! Please keep doing what you do.'),(1947,NULL,NULL,'en','1743732563',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1948,NULL,2,'en','2027265654','A5','A4','male','','Y','Y','Y','','Y','Y','','','Y','Y','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was a gentoo user. I broke my gentoo. It was a toss up between Arch, Nix, and Gentoo. I wanted to learn something new and quickly Nix has become my most loved GNU/Linux','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','','','system in git','trying new things easily (nix-shell + direnv)','decent developer experience (not great always but is neat)','More packages!','Gentoo','','','','','Y','','','','','','','','','','poetry2nix\r\n','Y','Y','','','N','I don\'t write good nix','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1949,NULL,1,'en','591557563','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1950,'1980-01-01 00:00:00',5,'en','1434506171','A5','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Started with home manager and then had a coworker show me the ropes for nixos','','Y','','','','','Y','','Y','','','Y','','','Y','Y','Y','Y','','Declarative configuration','Nix-shell','Seamless rollbacks','A way to create package hashes without including documentation','I guess I would have eventually found Guix','','','','Y','Y','','','','','','Y','','','','node2nix\r\ngradle2nix\r\nmachnix\r\n','Y','Y','','','N','Time','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','Y','','Y','','','Y','','','','','','','Y','','','Y','','','Devos/divnix','','','','xmonad','Nix-direnv','Lorri\r\nHaskell.nix\r\n',''),(1951,NULL,1,'en','840955318','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1952,'1980-01-01 00:00:00',5,'en','1744279384','A2','A5','male','','','','','','','Y','','','','','','','','','','','','','Y','Y','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Got introduced to it by a new colleague','Y','Y','','','','','Y','','','Y','','','','','Y','','','Y','','Fully reproducible deployments (nixops)','Production compatible local test environments','','nixops with better support for private repos (potentially using flakes)','','','','','','','','','','Y','Y','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Fully deterministic system configuration','Y','','','Y','','','','','','','','','','Y','','','','','','','','','','','',''),(1953,NULL,NULL,'en','1645624626',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1954,'1980-01-01 00:00:00',5,'en','1700954076','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I\'m a huge developer experience fan. After trying various build systems I found Nix to be the most reliable and reproducible of all.','Y','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','','Y','','Flakes','Flakes','Nixpkgs','Better documentation\r\n\r\nLess intrusive installation: the install script is awesome, but it also makes people reluctant to install Nix.','Make, Please as build system\r\nArch as linux distro','','','','Y','Y','','','','','','Y','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Dotfiles and install scripts are great, but they are nowhere near to NixOS in terms of reproducability.\r\n\r\nI also like experimenting with my config and going back to a previous generation is a killer feature.','Y','','Y','','','','','Going back to previous generations','Home manager','','There are lots of different deployment tools and it\'s hard to choose the right one. Better consenus would be nice.','Arch','Y','','','','','','','Y','','','bspwm, sway','Home manager\r\nnixpkgs-review\r\nnix-update\r\nnix-direnv','','Finding Nix/NixOS has been and still is an amazing adventure. Thank you!'),(1956,'1980-01-01 00:00:00',5,'en','1754748722','A3','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was using ubuntu and had a faulty SSD cause 3 hardware faillures in 6 months, causing me to loose all of my precious configuration. I started looking for tools to help me make my system more trustworthty and nix looked like the right tool. I started using nix because it allows me to reproduce my system config with a few files and because it helps me organize all my system with a single tool. As a plus, it has rolling releases, a nice and active community and, with nix-direnv, it really makes it easy to switch environments for each project.','','Y','','Y','','','Y','','','','','','','','Y','','','Y','','reproducibility','ability to consolidade system configuration management','easy to switch development environments','I would improve docs, specially more or better content for onboarding new users. It was really hard to get around as a beginner (at the time I was not very familiar with programming). Some of my dificulties were realated to understanding how \"it all fit together\" and how I could accomplish simple tasks like \"install a software/package\", \"configure a specific program\", \"pin a version or rollback in case of error in unstable\", \"overlaying attributes\", \"how home-manager related to nix (in ubuntu and nixos)\" (home-manager docs help more than nixpkgs/nixos manual at this point), \"how I can create new packages\" (this is still challenging). I felt help with this issues were \"all over the place\" and in other blogs not listed in nixos.org. More effort in improving and mantaining the wiki would go a long way.\r\n\r\nI would also like to be able to protect specific paths from garbage collection. I would like to be able to pin old version of software and preserve the resulting derivation for specific paths/packages.','Nothing comes close. There is not a single tool that brings all the benefits that comes with nix. I would had to use apt, pipenv/conda/poetry, npm and docker. Nix allows to concentrate and manage almost all system config with a single tool and easily switch dev environments as I need it.','','','','Y','','','','','','','Y','','','','None, but used to use https://github.com/DavHau/mach-nix (python)','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I spend around 6 months with nix on Ubuntu and I was pretty satisfied with it. I started having issues managing x applications with nix in Ubuntu and decided to switch. I was rough at first, but I\'m happy to be somewhat confortable using nixos now.','Y','','','','','','','reproducibility (deterministic builds)','ease of use (not of learning, but of managing the system with it)','number of packages available','I would improve the docs/onboarding and make it easier to add and review new packages (local tests, tutorials, utilities)','Arch probably','Y','','','','','','','','','','none+bspwm','nix-direnv and home-manager','mach-nix, npm2nix, node2nix, ','I\'m very happy with how Nix and NixOS have been evolving and is being mantained. It\'s really hard to get arround in the beginning but I feel its rewarding. Thank you for developing this software and maintaining this project. It\'s one of the best open source projects I\'ve seen.'),(1957,'1980-01-01 00:00:00',5,'en','661259171','A2','A4','male','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I looked for an option to manage my home-folder installations and found home-manager. I then learned about NixOS and was fascinated by the concept.','','Y','','Y','','','Y','','Y','','','','','','','','','','I only use flakes and the modern interface','Home-manager','builds that work on any linux OS without change','','I would replace the Nix-language with something that has proper tooling support. Debugging Nix is *painful*, understanding the configurations is incredibly hard even after months of trying. I would love if instead of Nix-language we had something mature as the base such as ´haskell´. I would try out guix, if the maintainers of it weren´t such odd recluses (I took one look at the savannah-page where guix is hosted and I turned around and ran). But overall I think the use of guile is probably a step forward compared to nix.','not sure','Y','','','Y','Y','','','','','','','','','','poetry2nix','','Y','','','N','It is very complex and daunting to set up and properly check anything. \r\n\r\nThe build server seems very complex and review times seem to be very long.','N','N','Nothing, I am happy with nix on Ubuntu',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','',''),(1958,'1980-01-01 00:00:00',5,'en','1748041518','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','N','N','Finding the time and motivation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Finding the time and motivation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1959,'1980-01-01 00:00:00',5,'en','1337014959','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','Y','','','','A1','','','Y','','','','','','','','','Y','','','','','','','Y','','','','','Better onboarding documentation for Nix Home and adding packages to the repository ','','','','','','','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','I think it was on Distrotube on youtube. I like the philosophy of Nix','','','','','Y','','','','','','','','','','','','','','','','Y','','','home','',''),(1960,NULL,3,'en','1797407959','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1961,'1980-01-01 00:00:00',5,'en','1475001852','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','Declarative environment management','Declarative system or server configuration/management','Build container images','','','','','','','Y','','','','','','Y','','','','https://github.com/svanderburg/node2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','Y','','','','Y','','','','https://github.com/Mic92/nixos-shell\r\nhttps://github.com/nix-community/nixos-generators','',''),(1962,NULL,NULL,'en','111239480',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1963,NULL,1,'en','824407334','A1','A4','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1964,'1980-01-01 00:00:00',5,'en','1505006444','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Network Engineer','Y','Y','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','Y','','','','','Y','','','','','','Personal computing/workstation ','Y','','','','Y','','Declarative configuration of as many packages as possible for total system configuration','','','','Ansible or salt locally','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Personal Workstations','Reproducible whole system configuration ','','','','','Y','','','','','','','','','','i3','Home-manager','',''),(1965,'1980-01-01 00:00:00',5,'en','784386122','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','N','Y',NULL,'Having to do everything in a configuration file.','There needs to be a package manager without having to use the configuration file but the package manager also keeps your configuration file updated for when you do want to use it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'NixOS needs a nice installer that handles partitioning and configuration at install.','Installer. There needs to be a package manager without having to use the configuration file but the package manager also keeps your configuration file updated for when you do want to use it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','This is a great project. I\'d love to see wider adoption. Maybe like a a Mint NixOS edition many people are avoiding Ubuntu. With Debian being slow and outdated maybe NixOS if they made it more user friendly could be a good option over Debian or Arch.'),(1966,'1980-01-01 00:00:00',5,'en','1493976662','A5','A7','-oth-','Okay ','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Okay ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Na','Na','Need to have a calamares installer. '),(1967,'1980-01-01 00:00:00',5,'en','296866805','A5','A5','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was interested to find a distro that manages software dependencies in an innovative way. Nix was the answer.\r\n\r\nI also use Nix on old Ubuntu to allow me to use recent versions of tools without using backports.\r\n\r\nThen I discovered the power to express a full distro version dependency in a Haskell project to be able to compile even years after the last change to my software (excellent for C libraries dependencies). While docker is the defacto answer these days, I prefer the Nix way.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','Declarative configuration ','Declarative dependencies ','Modern version of software on old distributions','Faster evaluation with less memory use.','Docker probably','','','','','','','Y','','','','','','','','Cabal2nix','Y','','','','N','Understanding of the whole process','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','The declarative configuration was interesting and I first tested with my home firewall/router. Then I adopted it for some specific work stuff (Prometheus and grafana, wireguard VPN, Subversion server, Hydra to build Elm web software, dokuwiki, Nix cache for dev servers).\r\n\r\nI prefer the declarative nature of NixOS than Ansible+Ubuntu. The 6 months release is sometimes a drag because I have to plan more frequently for upgrades. In return I have less surprises that 2 years Ubuntu LTS upgrades.','Y','Y','Y','Y','','','','Declarative configuration ','Recent software','Less risky than rolling release distribution for recent software ','Faster update of frequently released software like Firefox (for my desktop). I currently have a script to check if a new version is available every day and an overlay to have the new binary version the day of release.','Ubuntu or Arch. Docker for predictable builds.','Y','','','','','','','','','','xmonad with gnome software','The next NixOS options website to search how to configure NixOS','None','Thank you for your great work!'),(1968,'1980-01-01 00:00:00',5,'en','2107092812','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','LineageOS','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','A friend of mine told me about Nix/NixOS. After giving it a brief look, I thought that it looked very interesting and installed NixOS a couple of weeks later (at that time, I was using Arch Linux and was unhappy with it for various reasons). Over time, I learned more and more about Nix/NixOS and my excitement for it continues to grow even today.','','','','','','','','','Y','','','Y','personal computer','','Y','Y','','Y','','Unified model of software configuration and distribution/building','Declarative and functional programming model','Huge software repository','* make Flakes the universally accepted model for distributing Nix expressions\r\n* better integration with Electron\r\n* support downloading binary diffs instead of whole packages from binary caches\r\n* rewrite Nix in Rust ;)','Traditional imperative package management and configurations','','','','Y','Y','','','','','','','','','','node2nix','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','','Y','','','Y','personal computer','Declarative configuration model','Rollbacks','huge software repository','* improve configuration evaluation time\r\n','Debian or Arch Linux','Y','','','','','','','Y','','','','home-manager','','Thanks to all Nix/NixOS contributers for creating such an awesome software ecosystem! :)'),(1969,'1980-01-01 00:00:00',5,'en','1225806003','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I saw the declarative system management and thought it was cool.','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Declarative package management','Environment management','Developing tools','I would add static typing.','Arch Linux, I suppose?','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Same as Nix?','Y','','','','','','','','','','','Arch','Y','','','','','','','','','','sway','fenix, nixpkgs-fmt','',''),(1970,'1980-01-01 00:00:00',5,'en','88425312','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','','Y','','','','','Y','','','','','','','Y','Y','','','Y','','Declarative','Reproducible','Cross-platform','- Add a vanilla way to manage home environment declaratively (no need to install home-manager explicitly);\r\n- More \"How-To\" tutorials;','GNU/Guix? Or a lot of containers.','','','','','','Trying to learn flakes.','','','','','','','','','','Y','','','','N','Not ready yet.','N','Y',NULL,'Not so much time to tinker and docs a bit too harsh for me :(','Still wanna declarative and reproducible OS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Thank you!\r\nAnd keep doing great work!'),(1971,'1980-01-01 00:00:00',5,'en','1506107831','A2','A4','male','','','','','','Y','Y','','','','Y','','','Y','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','After years on Arch Linux and moving to Ubuntu, i felt to frustrated using such a limited distro, and a search on google, find NixOS, and since then, only use NixOS and later on (two years now) using Guix too. ','','Y','','','','','Y','Y','Y','Y','','','','','Y','','Y','Y','','flakes \"workflow\" and lock files','Experimental Commands as a whole','home-manager','official integration with Guix','Guix.','','','','Y','Y','','','','Y','Y','','','','','','Y','Y','','','N','being lazy and lack of time...','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Arch and Ubuntu weren\'t good enough','Y','','Y','Y','','','','Flakes','home-manager','','Guix integration','Guix','Y','Y','','','','','','Y','','','xmonad','','',''),(1972,'1980-01-01 00:00:00',5,'en','2087823343','A5','A2','male','','Y','','','','','','','Y','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','Y','Y','Y','Y','','','','','','','','','','','Y','','','','','','Sway','','',''),(1973,NULL,3,'en','169678946','A2','A2','male','','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','Y','','Y','','','N','N','Tangible/visible advantages for using it on my desktop over pacman which is already seems to be working well. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','(same as previous but with Arch)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(1974,'1980-01-01 00:00:00',5,'en','1276313045','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','Y','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','Y','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','Y','','','','','Y','','Y','','','','','',''),(1975,'1980-01-01 00:00:00',5,'en','1498922938','A7','A3','male','','','','','Y','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted a reproducible environment for everything','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','','Y','','','','','','Many more tears','','','','Y','Y','','Y','','','','','','Y','','elm2nix (https://github.com/cachix/elm2nix)\r\nnode2nix (https://github.com/svanderburg/node2nix)\r\ncabal2nix (https://github.com/NixOS/cabal2nix)','Y','Y','','','N','Just never had the opportunity to do so','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','Y','','','','','','','','','','Y','','','','Y','','','','','xmonad','','',''),(1976,NULL,1,'en','621862371','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','Y','','Y','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1977,'1980-01-01 00:00:00',5,'en','1945571624','A6','A3','-oth-','Apache attack helicopter','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to be able to change system settings and revert them without worrying about remembering all 3 files i edited. ','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Reproducible system (nixos) ','Reproducible projects (nix-shell)','Esoteric functionality, like specialisations allow me to change my system font every 5 mins','I would remove people like infinisil, grahamc and other toxic reviewers who spend more time in intellectual masturbation and less in getting shit done. It looks like grahamc is undergoing some kinda gender dysphoria and rather than acting all badass he needs to sit at home and chill. ','Rat poison (not the wm)','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as the precious answer for nix. ','Y','','Y','Y','','','','Specializations','','','Same as previous answer for nix','Same as answer for nix','Y','','','','','','','','','','none+i3','Nix cached shell','','Good project, elitist, full of themselves GitHub reviewers '),(1978,'1980-01-01 00:00:00',5,'en','1270880870','A2','A3','male','','','','','','Y','Y','Y','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Nix!','','Y','','','Y','','Y','','Y','Y','','Y','','','Y','Y','Y','Y','','All configuration in one repository, guaranteed!','fast to get back to a working machine, after it would die (never happened yet!)','Atomic updates and rollbacks','Multiple flakes referencing each other in one repository are a little bit messy (need multiple updates...)','Arch + a lot of BASH','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','NixOS!','Y','','Y','Y','','Y','','','','','','','Y','','','','','','','','','','Xmonad','Home manager','nixops',''),(1979,'1980-01-01 00:00:00',5,'en','893089621','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','blockchain engineer','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','heard about it and then found a couple of work guys who used it so could ask them for help. First experience was not great as put it on a macbook pro with touch bar. Now I have a standard desktop and much better.','','','','','','','Y','','','','','','','Y','Y','','','','','rollback (fearless twiddling)','reproducability','declarative','better command line errors: Did you mean X? like rust errors.','ubuntu','','','','','Y','','','','Y','','Y','','','','','Y','','','','N','I don\'t really know the language well.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','answered already','Y','','','','','','','','','','','','','','','','','','','','','','','','','it\'s good and getting better over time.'),(1980,'1980-01-01 00:00:00',5,'en','643465911','A2','A2','male','','Y','','','','','Y','Y','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','','Y','Y','','','','','Y','Y','Y','Y','','','','','','','','','','','','','Y','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','Y','','','','','','','','','Y','','','','','','','','','','sway','','',''),(1981,NULL,0,'en','1503891911','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Switched from Arch around 2018 to NixOS (which was also my first experience with the Nix package manager) since I was getting tired of the whole system breaking randomly when updating. I also have a background in mathematics and a lot of experience with functional programming, so I find the concepts behind Nix very exciting.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1982,'1980-01-01 00:00:00',5,'en','2074784962','A1','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','','Y','','','','Home desktop, laptop','','Y','Y','','Y','','Build isolation','Repeatable builds','Ease of trying out software without committing too hard','Polished documentation and tutorials that are consistent and easy enough for everyone to follow.','I would become a woodworker and live in the forest','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Liked the idea of having a config file which can reliably reproduce my OS. After a brief and disastrous attempt at using Chef to manage my desktop, NixOS was a breath of fresh air.','Y','','Y','','','','home laptop and desktop','Declarative system configuration','Fearless rollback of system updates, which means freedom to experiment','Being able to manage the state of multiple machines. Can easily share modules, test updates on one machine before rolling it out to another, etc','','Guix','Y','','','','','','','','Y','Y','','','Docker image generator. Will give it another go when I have more time','I love you all!'),(1983,NULL,1,'en','1598041701','A2','A5','male','','','','','','Y','','','','','','','','Y','','','','Y','','','','','','','','','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1984,NULL,1,'en','1881072877','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1985,'1980-01-01 00:00:00',5,'en','173552358','A2','A2','male','','','','','','','Y','Y','','','','','','','','','','Y','','','Y','','Y','','','','Y','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Better desktop emphasis.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1986,'1980-01-01 00:00:00',5,'en','616549501','A2','A3','male','','','','','','','Y','','','','','','','','','Y','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Came from Gentoo. Wanted to try another rolling release and the promise of a declarative language for the configuration with easy rollbacks sounded really interesting.','','','','','','','Y','','Y','','','','','Y','Y','','','Y','','Declarative configuration in a single file for my whole system. It\'s a lot easier to manage custom configuration and not forget about it.','Declarative environment (nix-shell) to have a clean separation between my projects.','Being able to rollback changes','Add typing or better IDE-support to the Nix language, it\'s really hard to understand what I\'m manipulating. Starting with the nix-pills it looks relatively easy, but in practice, I find it close to impossible to do anything without searching for documentation or on the nix forum. For the context, I wrote Nix in several simple overlays and nix-shells.','Gentoo with specific tools like pyenv to manage project environments.','','','','','','','','','','','','','','','','Y','','','','N','Nothing, in particular, I never had the need for it yet.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Came from Gentoo. Wanted to try another rolling release and the promise of a declarative language for the configuration with easy rollbacks sounded really interesting.','Y','','','','','','','Declarative configuration in a single file for my whole system. It\'s a lot easier to manage custom configuration an d not forget about it.','Declarative environment (nix-shell) to have a clean separation between my projects.','Being able to rollback changes','Add typing or better IDE-support to the Nix language, it\'s really hard to understand what I\'m manipulating. Starting with the nix-pills it looks relatively easy, but in practice, I find it close to impossible to do anything without searching for documentation or on the nix forum. For the context, I wrote Nix in several simple overlays and nix-shells. ','Gentoo','','','','','','','','','Y','','','','','NixOS is really great but IMHO the learning curve for Nix is really steep because of the language. When facing issues in other languages I can usually dig inside the code to understand the logic with the help of documentation. Here I can\'t or don\'t know how to do it efficiently even though I\'ve read half of the nix-pills and wrote some nix-shell & overlay scripts. It feels like learning bash to me. The big difference though is that I\'m using bash almost daily, professionally. For Nix, it\'s once in a while. In the end, it\'s not a deal-breaker for using NixOS to me because I\'m proficient enough in Linux to be able to fix my issues with Google\'s help, but using the more advanced features/customization are usually out of reach for me given the time I would need to spend learning Nix.'),(1987,'1980-01-01 00:00:00',5,'en','1025443960','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1988,'1980-01-01 00:00:00',5,'en','1294062080','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','We started to use Nix at work so I needed to start using the Nix cli. I first watched Burke Libby\'s Shopify talks and started using it on macOS.','Y','','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','Y','','Scoped dependencies. I use direnv + Nix to specify dependencies per project and automatically get a Nix shell','Conflict-free storage (input or content addressable)','Easy package management without dealing with weird conflicts all the time','That one sqlite database :)\r\nCaveat: my usage of Nix at work is slightly outside the bounds of regular Nix usage, so that sqlite database causes some issues for us.\r\n\r\nMore detail: We want to be able to share a large (mostly immutable) Nix store across thousands of VMs/containers. The sqlite database makes it difficult to provide this functionality. For example if we used an NFS for `/nix/store`, adding a directory is not sufficient for making that package valid.','For work: tons of Docker container, maybe ostree','','','','Y','Y','','Y','','','','','Y','','Semaphore CI','https://github.com/svanderburg/node2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was enjoying Nix on macOS so much that I switched over completely to NixOS to force myself to get even more familiar with it. I have enjoyed it so much that I am not switching back to another distro.','Y','Y','','Y','','','','Declarative system configuration via a unified language','Easy rollbacks that allow for fearless experimentation','Tons of services that are easy to enable and configure','I personally don\'t mind writing Nix by hand, but I think for broader adoption Nix needs a better interface for end-users than learning a purely functional language.','macOS, I was a die-hard macOS fan before NixOS','Y','','Y','','','','','','','Y','xfce+i3','Replit (I work there)\r\nhome-manager\r\ndirenv\r\nlorri\r\nnixos-shell','flakes, off and on. I will eventually switch most of my local setup over to flakes but I haven\'t gotten around to it.','Keep up the great work, I\'m a huge fan :)'),(1989,'1980-01-01 00:00:00',5,'en','2035022561','A2','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I decided to reinstall Linux on my laptop, because I\'d encountered some kind of disk corruption or misbehaving kernel module in my Ubuntu install and I wasn\'t sure that I\'d fixed the problem entirely. I\'d heard about NixOS on Twitter from people who use it, and after doing some research I decided to give it a try.','','','','','','','Y','','','','','','','','Y','Y','','Y','','Reproducible (or hopefully-reproducible) package building, as a means to a reproducible system','','','I\'d make it use the XDG directories (~/.local, ~/.config, ~/.cache) rather than ~/.nix*, and I\'d rewrite history to clean up the awful mess of old nix-* commands and new nix subcommands; the whole situation with the Nix 2.4 backwards incompatibilities was really unfortunate to watch. nix-store\'s command-line interface is confusing and hard to remember (what\'s a referrer? or a closure? I have to look at the manual every time I want to do effectively an `aptitude why`), as are all the other nix-* commands (it always takes me ages to work out the right nix-build invocation to build a nixpkgs package from local sources), so I\'d magically clean those up or add some sugary aliases to make them more understandable without a PhD.','Probably a Debian derivative, and maybe something like Ansible or Puppet to try and imitate Nix\'s declarativeness.','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','As I mentioned previously: I got sick of Ubuntu, had heard of NixOS on Twitter, and decided I would give it a go. I wanted a reproducible system, and I wanted to be able to deploy parts of my system (e.g. dotfiles, but also programs that weren\'t installed on the other system) to other computers easily.','Y','','','','','','','A reproducible system, where I can describe my entire system by one centralised configuration repository.','The confidence to make changes, knowing that I can rollback to a previous system if something goes wrong. (though with home-manager and the whole OpenGL thing, this is not really quite the case in reality, sadly)','Being able to easily and persistently make changes to the software installed on my machine, by writing patches or maintaining a fork or even building from local sources, without having to deal with complicated packaging formats like .deb and without worrying that my changes will be overwritten by a system upgrade.','I would magically fix the whole deal with \"where are overlays read from\". I remember reading (on the wiki?) that some things allow the overlays path to be a directory, some require it to be a file, and so on: I would magically unify the behaviour of all tools and document exactly how it works, so I could write overlays and have confidence that they would be used everywhere, by nix-env and nixos-rebuild and home-manager and everything else.','Probably Ubuntu or another Debian derivative, maybe with some configuration management thing like Puppet or Ansible, or maybe just the same old dotfile management things and hacky bash scripts as ever.','Y','','','','','','','','','','i3','home-manager, and also Lorri (though I use Lorri mostly only for one project, because I keep forgetting that it exists, and also because I don\'t like how you have to keep pressing enter at an empty shell prompt until direnv decides to give you the environment variables), and occasionally mach-nix when I need to package a python application.','many of the *2nix things; I never really understand how to use any of them except for what is already in nixpkgs, and even then the packaging situation for e.g. rust is quite bad (having to rebuild every dependency on every change to the top-level crate is *awful*)','nix and NixOS are *so cool*! I was reading about them before I installed NixOS like \"there is no way that this can work, just grepping for store references\" but it is actually the most amazing operating system I have ever used. I hope that in the future, the documentation can be improved (a never-ending task, I know), and that complicated broken things like Nvidia GPU support inside LXC containers can be fixed, so that I can use NixOS for everything.'),(1990,NULL,1,'en','966590175','A3','A3','male','','Y','','','','','','','','','','','','','','Y','','Y','','','Y','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1991,'1980-01-01 00:00:00',5,'en','817449804','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','OpenBSD','N','Y',NULL,'It seemed too complicated. Too much code under the hood.','Simplified implementation. Installation on a broader range of platforms (OpenBSD, NetBSD, Illumos, etc)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Too complicated. Too much code under the hood.','Simplified code base. Easier installation. Wider platform support (OpenBSD, NetBSD, Illumos, etc)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Even though I don\'t use Nix regularly, I love the idea and am glad to see you making progress towards a more predictable package manager.'),(1992,'1980-01-01 00:00:00',5,'en','411277140','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','','Y','','For my system configuration','A2','I was looking for a Linux distribution without FHS and with a large amount of packages. NixOS was appealing to me because I am most proficient in functional programming languages.','','Y','','','','','','','','','','','Desktop','','Y','','','Y','','Non-destructive package management','Powerful configurability','The scale of nixpkgs','I’d make it easier to integrate Nix with imperative workflows (e.g. APIs to Nix configs).\r\nI’d implement something like Guix’s grafts.\r\nI’d make it easier to install or package other external packages (e.g. AppImages, Flatpaks, raw binaries, installers).\r\nI’d add an easy-to-use multi-purpose multi-paradigm powerful GUI interface for all Nix, NixOS, and nixpkgs systems.\r\nI’d add loads of builtins (e.g. startsWith, mapAccumL, matrixMultiply, generateAttrs, or so).\r\nI’d make it easy to have a pure system-wide configuration while allowing non-root users to have their own configuration, while retaining portability (e.g. allowing skeleton home-manager configs & auto-copying user configs to /etc/nixos)\r\nI’d make it easier to mix nixpkgs and package versions, allowing users to upgrade only some packages, even in flakes, and for nixpkgs to refer to older versions (e.g. by restructuring it or allowing recursing into the history)','I’d use other package managers, a dotfiles repository, and maybe Ansible & Direnv for building','','','','Y','Y','','','','','','','','','','cabal2nix: https://github.com/NixOS/cabal2nix','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','As a daily driver','A2','I wanted a non-FHS Linux distro with a large package repository and NixOS fit the bill perfectly. I was fed up with either having to deal with outdated repos, or having to manually manage the install locations, which is error-prone and feels hacky. In NixOS, everything is in the store, and installed things are in /run/current-system/sw (defined by the configuration). That’s neat, though sometimes nixpkgs is still behind the upstream version on some packages (which is frustrating, but I’ve opened a few PRs). I’m also most proficient in functional languages, so Nix was a very appealing language.','','','','','','','Desktop','Portability of configuration','Size of nixpkgs','Powerful configurability','I’d make it easier to integrate Nix with imperative workflows (Imperative settings to home-manager or system configuration)\r\nI’d implement something like Guix’s grafts and make it easier to mix nixpkgs and package versions, allowing users to upgrade only some packages, even in flakes, and for nixpkgs to refer to older versions (e.g. by restructuring it or allowing recursing into the history)\r\nI’d make it easier to install or package other external packages (e.g. AppImages, Flatpaks, raw binaries, installers).\r\nI’d add an easy-to-use multi-purpose multi-paradigm powerful GUI interface for all Nix, NixOS, and nixpkgs systems.\r\nI’d make it easy to have a pure system-wide configuration while allowing non-root users to have their own configuration, while retaining portability (e.g. allowing skeleton home-manager configs & auto-copying user configs to /etc/nixos)','An Ubuntu derivative, or Fedora, or Arch','Y','','','','','','','Y','','','','home-manager','','No'),(1993,'1980-01-01 00:00:00',5,'en','116783614','A2','A3','male','','','Y','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It was recommended to me by CEO of company I work at.','Y','Y','','Y','','','Y','Y','Y','','','Y','','Y','Y','Y','','Y','','Deterministic builds','Ease of creating CI builds','Ease of creating dev shells','Interactive discovery of variables after crashes. Like nix repl but after a crash. So I can explore the data that caused it.','Make','','','','','Y','','','','','Y','','','','','https://github.com/nix-community/yarn2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','After working with Nix as package manager at work to build a mobile application I realized NixOS exists and shortly after trying it realized it\'s absolutely fucking amazing.','Y','','Y','','','Y','','Better secrets management/injection','Better NixOps support','Better integration with tools like Terraform','Proper support for managing secrets in configuration','Debian','Y','','','','','','','','','Y','Awesome WM','','','Thanks for all the work!'),(1994,'1980-01-01 00:00:00',5,'en','799420565','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Dependency pinning','Consistent development environments','','','','','','','Y','Y','','Y','','','','Y','','','','cabal2nix, haskell.nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','xmonad','niv, lorri, agenix','',''),(1995,'1980-01-01 00:00:00',5,'en','900012121','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Reproducibility & declarative configuration','Y','Y','','','Y','','Y','','Y','Y','','Y','','','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','Y','','','','','','','Y','','','','','','','','Y','','','','',''),(1996,'1980-01-01 00:00:00',5,'en','1662063429','A5','A4','male','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I used Nix first when I started using NixOS.','','Y','','','','','Y','Y','Y','','','','','','','Y','','Y','','Deploying a binary package closure','dependency graph (ala `nix why-depends`)','build jail (input isolation)','This is a bit of a copout but I would change all nix people to have +1 compassion for others so that the community thrives to a greater degree.','pyenv, jenv, bash scripts, etc for managing dependency environments\r\ndocker for deployment','','','','','Y','','','','','Y','Y','','','','We tried https://github.com/nix-community/mavenix but struggled with handling responses from non-conformant maven repos in the wild.','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','My work laptop ran Debian for many years. One day I had a problem with certain system packages (OpenSSL). I saw NixOS claiming to manage OS dependencies like code! This sounded like a wonderful, horrible, very good bad idea. That was the sort of thing I did every day, managing development environments for projects in javascript, java, and C++.\r\n\r\nIt took me a few weeks of intense exposure to feel like I could do basic activities with nix language and nixpkgs patterns and I have been running NixOS ever since.\r\n\r\nFrom there it grew into \"hey we have to manage this system (at work), that seems perfect to throw NixOS at it\", and now about half of our infrastructure runs on this ecosystem.','Y','Y','Y','','','','','Modules (is this technically part of Nixpkgs?)','Declarative server configuration management','','','guix? I bet I would end up back using macOS or Windows if NixOS didn\'t exist.','Y','Y','','','','Y','','','Y','','','At work, we regularly use niv (https://github.com/nmattia/niv/), because much of our nix code there was written in 2018/2019 (before flakes were readily available). We haven\'t found the justification to migrate forward yet.','','Thank you for putting this survey together!'),(1997,NULL,NULL,'en','1242505903',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1998,NULL,NULL,'en','620474333',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1999,'1980-01-01 00:00:00',5,'en','1896402023','A1','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','Found it via articles posted to /r/haskell and lobste.rs and it seemed like a good fit for my homeserver/devbox. then i started expanding it into python/haskell development and system administration.','','Y','','Y','','','Y','Y','Y','','','Y','','Y','Y','Y','Y','Y','','development shells for writing software','building packages in CI','building/deploying system configurations','Better support for authentication tokens, especially with flakes.\r\nBetter tooling for exploring closure sizes.','poetry, terraform and ansible','','','','Y','Y','','','','Y','','','','','','poetry2nix npmlock2nix','','Y','','','N','lack of time. I\'ve made one small contribution before, and the turnaround time for code review was pretty long.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','started using it for a personal server, then converted my personal laptop, then containers and VMs','','','Y','','','Y','','reproducible config in VCS','easy service setup from configs','rollback when I inevitably break things','cleanup config namespaces. config spread all between services/programs/security\r\nwhy are wayland settings under services.xorg?','Probably still be on Ubuntu because i\'m lazy','Y','','Y','','','','','','Y','','','','node2nix cargo2nix naersk','Thanks for the great OS and Tools! <3'),(2000,'1980-01-01 00:00:00',5,'en','923615176','A5','A4','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A4','Wanted to try out new approaches to software management.','Y','Y','','','','','Y','','Y','','','','Personal computer','Y','Y','','','','','Configuration is plain text files','Per-project dependencies don\'t change the system state','nixpkgs cache is good; installing most things doesn\'t have to build them locally','Have a simpler and more understandable language and API for writing nix expression.','Mac: homebrew\r\nLinux: not sure','','','','','','I tried nix-commands, but it broke my system, so I had to turn it off','','','','','','','','','cabal2nix.\r\nI\'ve tried node2nix, but it never really worked for me.','','','','Hand-written nix files in my project','Y',NULL,'N','Y',NULL,'Making changes to the system was too tedious (would require days of research), and lack of confidence in the support for up-to-date proprietary GPU and firmware updates when compared to Ubuntu.','Confidence that there is an active maintenance team supporting and updating a standard and complete desktop environment experience (preferably KDE Plasma).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'niv, lorri','home-manager','https://nix.dev is a great resource. That and the official manual have greatly improved in the past few years. But still the current state of documentation is very confusing. It still takes me hours to research and figure out how to make basic changes to my setup, largely because the documentation for one particular tool assumes that you already have knowledge of everything else in nix and doesn\'t re-explain the basic concepts. Also there is no place to find a comprehensive \"here\'s how to get a basic setup\" -- there are just bits and pieces scattered all over the internet that I have to find and piece together myself.'),(2001,'1980-01-01 00:00:00',5,'en','1619307479','A2','A7','male','','','','','','','','','','','','','','','','','','','','','','','','','retired scientist','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','several horrible update experiences in linux distros','','Y','','','','','Y','','','','','','','','','','','Y','','safe updates','declarative os config','easily customized packages','Remove historical crud and concentrate on a small number of best practices in doc','pkg manager that makes it easy to buid/customize your own packages. Maybe I\'d relearn pkgsrc. guix?','','','','','','none so far, want to learn flakes','','','','','','','','none','','Y','','','','N','still don\'t feel competent enough','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I\'d had enough of disastrous updates in Ubuntu/Arch etc.','Y','','','','','','','safe updates and ','declarative os config','ease of package customization','better documentation on the differences between nixos modules and packages, and where the nixos-specific stuff relate. Better documentation on kernel modules etc.','I\'d try something completely different like freebsd','Y','','','','','','','','','','lxqt','can\'t think of one','none i\'d say','It\'s been said many times but it\'s all too true: PLEASE IMPROVE THE DOCUMENTATION. In particular, now that flakes are pretty stable, tell us how to include them in a traditional workflow, if they are useful there.'),(2002,'1980-01-01 00:00:00',5,'en','1485276362','A2','A3','-oth-','Trans','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was attracted to the reproducibilty','','Y','','','','','Y','','Y','','','','','','Y','Y','Y','','','Ability to provide a very up to date compiler','','','','conan','','','','','Y','','','','Y','','','','','','https://github.com/nix-community/poetry2nix','','Y','','','N','I find it too difficult to contribute','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2003,NULL,1,'en','13772497','A2','A3','male','','','','','','Y','Y','','','','','','','','','Y','','Y','','','','','Y','Y','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2004,'1980-01-01 00:00:00',5,'en','1625284416','A2','A3','male','','','','','','Y','Y','','','','','','','','','Y','','Y','','','','','Y','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Was looking for a solution to reproducibly configure my systems and better manage my dotfiles','Y','Y','','','Y','','Y','Y','Y','','','Y','','Y','Y','','Y','Y','','','','','Better documentation (especially on containerisation, system security and firewall configuration)','Probably Guix\r\nOr some unreasonbaly complex Ansible setups (way more tooling setup efforts)','','','','Y','Y','','','','','','','','','','None','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Was looking for a solution to reproducibly configure my systems and better manage my dotfiles','Y','Y','Y','','','Y','','','','','','Probably Guix\r\nOr Alpine with configuration managed with Ansible','Y','Y','','','','Y','','','Y','Y','bspwm','','','Thanks! I am so happy I made the plunge and switched to NixOS'),(2005,'1980-01-01 00:00:00',5,'en','1336610103','A5','A4','male','','','','','','Y','','','','','Y','','','','','','Y','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','Isolated environments','Predictable builds','Easy configuration','Clearer Hydra status for unstable. Faster evaluation times. Clearer system profile diffs. Very brief Changelogs for big merges / \"rebuild the world scenarios\".','Arch','','','','Y','Y','','Y','','','','','','','','node2nix, bundix, pip2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Wayland + Sway','','',''),(2006,'1980-01-01 00:00:00',5,'en','1569938674','A2','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I work at the Finnish Public Broadcasting company. I often work on experimental projects starting with interviewing future users and then adding something to our cloud creatively connecting microservices, CMS:es and data-infrastructure. I\'m writing in which ever programming language is needed. In my freetime I\'m learning Cardano smart contract programming on Haskell. Nix is the best tool I\'ve used for multilingual programming dependency management.','Y','','','','','','Y','','','','','','','Y','Y','','','','','It reduces the need to remember differences of different development environments.','It reduces the fear of messing things up while testing some new technology.','Declarative management of my laptop.','Make it more appealing for enterprises to use - better support services. So that I could promote it more at work.','Homebrew, Docker, dotfiles','','','','','Y','','','','','','','','','','','','Y','','','N','I\'m quite new to Nix so I\'m still digesting it.','N','N','I wan\'t to run a remote PostgreSQL-server for a hobby project. I might use NixOS but I\'m a little scared if my admin skill will be enough to make it secure. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://search.nixos.org/packages','Nothing yet.','I\'m using Org Mode a lot. I haven\'t got code blocks work with Nix but the value to me would be massive.'),(2007,NULL,NULL,'en','806580120',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2008,'1980-01-01 00:00:00',5,'en','427787170','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','N','Y',NULL,'Nix tooling doesn\'t integrate with any programming language. It either defines the set of packages or uses hacky 2nix programs that are a maintenance burden. Nix never gets out of the way of developers. Real support from programming languages is required.','Proper integration into mainstream languages instead of code generation, hacky code parsing and FODs being available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Too much of a hassle to do my development. The linker and compiler wrapper scripts are a gross hack. \r\n\r\nNot compatible with any development workflow that involves native code.','If programming languages were properly integrated instead of bolted on.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2009,'1980-01-01 00:00:00',5,'en','390654010','A1','A3','male','','','','','','','','','Y','','Y','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Talking about this from a NixOS because that\'s what initiated my use of Nix in OSX.\r\n\r\nI saw NixOS while I picking a distro for my Linux desktop. Someone running Arch also gave me a run down of some of the potential benefits (not that they run it themselves). This was all about a year ago. I ended up choose Void Linux but as of... 5 days ago I started using NixOS because:\r\n- I was having this annoying issue where installing a package called \"mesa-dri\" would suddenly break my window manager. I knew, because of the way NixOS works, that this wouldn\'t be an issue.\r\n- A bunch of things that theoretically should be working (like the latest Nvidia drivers working with Sway) weren\'t and it was very perplexing. I figured I\'d have more luck with NixOS because of the way dependencies are resolved (it did fix my issue).\r\n- It was getting a little tiring waiting for package updates to come through in Void Linux. It\'s a smaller community and updates take a lot longer because they don\'t have infrastructure in place to allow fragmentation of dependencies.','Y','','','','','','Y','Y','','','','','','','','','','Y','','Reliable dependency resolution','nixpkgs is awesome: Centralised, (somewhat) tested, well maintained, etc.','Runs on MacOS','In order:\r\n - Make the NixOS documentation WAY easier for newcomers. Beyond the very initial installation/getting-started documentation, it\'s infeasible for someone who hasn\'t decided whether they want to use NixOS or not. I was close to giving up until I found out it fixed my Sway+Nvidia problem. There needs to be a \"I CBS/NixOS for dumbies/TL;DR\" documentation. I found random examples from GitHub MUCH easier to learn from than the doco itself.\r\n- I\'d steer away from marketing Nix as \"pure\"/\"functional\"/\"Haskell inspired\". I think for most people, that makes them think \"niche\", \"difficult\", \"something I don\'t know\" when really, for most people, their Nix configurations are just that: Config files, nothing special. That\'s a good thing - Simple is good! I would instead focus more on what it means to be functional/immutable/etc - Like reliability and what not.\r\n- Considering nixpkgs has darwin channels, it makes no sense for nix-darwin (https://github.com/LnL7/nix-darwin) is a third party package. I think you\'d get a lot more users waving the Nix banner if declarative configuration MacOS was better supported and was easier to set up. nix-env is still better than brew but I think the magic of Nix is its declarative config.\r\n- I would try solve the problem that flakes https://www.tweag.io/blog/2020-05-25-flakes/ solve\r\n- I\'d make easier to specify exact versions of particular dependencies without having to use fetchXYZ- I\'m make it so that NixOS wasn\'t directly coupled to systemd. I\'m not against systemd but it should still be as uncoupled from NixOS and the configuration as possible.\r\n- I would simplify terminology and concepts. The worst (though, experimental) offender is \"Flake\" - Meant nothing without reading the blog about Flake first. There are other cases though, the concept of \"channels\" - Which I feel like should just be a part of the declarative config somehow. I\'d make the CLI --help more concise rather than a showing a gigantic man page. I\'d try use as few terms as possible, for example, I would change \"nix-shell --install/uninstall\" to \"nix-shell\"\r\n- I\'d make Nix feel more like a package manager like Yarn 3 which I find similar in some of its concepts and what it aims to solve over its predecessors & peers but much much learn and easier to use (though I understand Yarn\'s purpose is a bit different to Nix and that Nix has to tackle and solve problems that Yarn doesn\'t).\r\n','Void Linux\'s package manager on Linux and brew on MacOS.','','','','','','','','','','','Y','','','','I don\'t know what 2nix is. Did a select something in the survey that I didn\'t mean to? My bad if I did.','','','','','N','I only just started using NixOS roughly a week ago. I\'ll probably contribute at some point? Maybe :3','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I saw NixOS while I picking a distro for my Linux desktop. Someone running Arch also gave me a run down of some of the potential benefits (not that they run it themselves). This was all about a year ago. I ended up choose Void Linux but as of... 5 days ago I started using NixOS because:\r\n- I was having this annoying issue where installing a package called \"mesa-dri\" would suddenly break my window manager. I knew, because of the way NixOS works, that this wouldn\'t be an issue.\r\n- A bunch of things that theoretically should be working (like the latest Nvidia drivers working with Sway) weren\'t and it was very perplexing. I figured I\'d have more luck with NixOS because of the way dependencies are resolved (it did fix my issue).\r\n- It was getting a little tiring waiting for package updates to come through in Void Linux. It\'s a smaller community and updates take a lot longer because they don\'t have infrastructure in place to allow fragmentation of dependencies.','Y','Y','Y','','','','','Same points as my \"Nix\" section','','','Same points as my \"Nix\" section','Would have looked into https://guix.gnu.org/en/download/ or stuck with Void Linux.','Y','','','','','','','','','','sway','','','NixOS is great. Make it more accessible, faster, simpler to configure and I it\'ll continue gaining adoption :)'),(2010,'1980-01-01 00:00:00',5,'en','1598415337','A1','A5','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','N','Y',NULL,'I use the package manager that comes with my distribution. Nix for anything that\'s not available from my distribution.','If I went back to using NixOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'1. Wrong philosophy. It aims to bold down everything in the hope of reducing problems. That\'s the same approach taken by enterprise software. \r\n2. Evolution is painful. If I need to update one program I often get to recompile most of the system. \r\n3. Errors are obscure, because one cannot see what went wrong in programs themselves.\r\n4. No path to learn. Assumes knowledge of all things Linux, while hiding all these things from the user. So someone who comes to NixOS without a lot of experience in a non-NixOS environment simply cannot learn or understand what\'s going on.\r\n5. Maintaining a personal computer becomes a full time job.','You would need to change the Nix\'s architecture and goals. I like the declarative part, but I really dislike the \"bolt everything down\" mentality. Maybe in a perfect world you could test all permutations of packages to see what could be compiled with what, instead of having one snapshot that drags along, breaking things and having to be manually fixed in the process? Making everyone miserable?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','NixOps. Good idea, but... Same problems as NixOS.','I have seen lately many people who are NixOS supporters who, in a pinch, choose other systems to do real work. I have been exposed to real work under NixOS. That has hurt me enough.'),(2011,'1980-01-01 00:00:00',5,'en','964006579','A1','A3','male','','','','','','','','','','Y','Y','','Y','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I\'ve been using Arch for home/work for around 4 years, it\'s a great OS but once setup it feels fragile (not the OS, but the it\'s current state). I\'ve got a git+stow dotfiles for much of my config, but I want to extend that reproducible, sync-able config to all my computers so I have more control and visibility of what state they\'re all in. NixOS seems to be the answer, and I\'m enjoying it so far, but I\'m only a couple months in.','','Y','','','Y','','Y','','Y','','','','','','','','','Y','','Reproducible systems and projects','Making the state of an entire system visible and version control-able','Good selection of packages in nixpkgs','More documentation, I don\'t know exactly what it would look like, but if I didn\'t have to search through nixpkgs to find out how to configure packages that would be amazing.\r\n\r\nAlso if rnix-lsp had the documentation from https://search.nixos.org/options available as autocomplete like it does for `builtins`that would be incredible.','Either Arch + ansible, or maybe GUIX','','','','','Y','','Y','','','','','','','','','','Y','','','N','I\'m still learning, I want to soon','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','same as nix on previous page','Y','','Y','','','','','same nix on previous page','','','same nix on previous page - documentation','same nix on previous page','Y','','','','','','','','Y','','i3','sops-nix','','NixOS is amazing, I want more but I love what exists already. Thanks all.'),(2012,'1980-01-01 00:00:00',5,'en','183200946','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Haskell\'s cabal command had some reference to nix in the help output so I checked it out.','','Y','','','Y','','Y','Y','','','','','','','Y','','','Y','','ephemeral shell environments to test new programs before installing them persistently','with flakes: the whole internet is my software repository; this feels like a loading code from everywhere into my shell (similar to a web browser loading web-apps on demand, without installation);','','I would add a \"standard\" folder and file structure with doc-comments for library code. In other languages there is a community standard for generating api docs from code (haskell->haddock, python->sphinx, php->phpdoc, java->javadoc, ...) and some conventions on directory structures and naming conventions.','Arch Linux + ansible','','','','Y','Y','','','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Haskell\'s cabal command had some reference to nix in the help output so I checked it out.','Y','','','','','','','declarative system configuration','some system management niceties that are not possible with other tools (e.g. with ansible, some might be possible with containers):\r\n- \"offline installations\": I can `nixos-rebuild build` and then later decide to `switch` which is not possible with apt/rpm/ansible ...\r\n- rollbacks of my system','','A sane way to handle secrets. There are some ideas in the wiki (https://nixos.wiki/wiki/Comparison_of_secret_managing_schemes) about until which a secret should be encrypted and when it should be decrypted (in git/during bulild/in the sore/at runtime). I envision a set of general nix-functions to transparently decrypt values at the appropriate time.','Arch Linux + ansible','Y','','','','','','','','','','awesome','I use flake-utils especially my NixOS system flake','',''),(2013,'1980-01-01 00:00:00',5,'en','864592068','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','','','','A3','','','Y','','','Y','','','','Y','','Y','Y','','','','Y','Y','','','','','','','','','','','Y','Y','','Y','','Y','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','Y','','','','','','','Y','','','','','','','Y','','','','','',''),(2014,'1980-01-01 00:00:00',5,'en','517714132','A4','A2','-oth-','NB','Y','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','The Haskell community forced me to do so :)','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','declarative system configuration','ephemeral shells with nix-shell','composability of flakes','Typed or statically checked nix expressions.\r\n\r\nIIRC Poetry2nix does not use PythonPackages of nixpkgs. Poetry2nix falls behind of nixpkgs for libraries that require special patches for Nix compatibility.','Arch with hideous shell scripts for system configuration.','','','','','Y','','','','','','','','','','poetry2nix ','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','The Haskell community made me do so. Also, maintaining dotfiles was getting cumbersome.','Y','','','','','','','Declarative system settings.','Home manager','Home manager again','No binary or script with exec(v)(e) calls instead of (p) variants works out of the box.\r\n\r\nIt is difficult to find the path of a file that has a standard path in generic distros. Say, finding /usr/share/X11/xkb/rules/base.lst takes me a good couple of minutes each time.','Arch with hideous shell scripts for configuration.','Y','','','','','','','','','','xmonad','','',''),(2015,NULL,NULL,'en','433649562',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2016,'1980-01-01 00:00:00',5,'en','1632972149','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Wanted a reproducible system configuration so I installed Nix alongside my base OS. My home is (partially) managed with Home Manager.','','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','Iron out many compatibility bugs between Nix and a foreign OS. (Notable example NixGL.)','Fedora.','','','','','','','','','','','','','','','dconf2nix\r\nbuiltins.fromJSON \r\nbuiltins.toSON','','','Y','','N','Low proficiency in Nix.','N','Y',NULL,'Does not support Nvidia graphic card as well as my current OS. Also, it seems to consume more battery (probably related to the previous point).','Different hardware.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Home Manager.','','Best of luck for everything!'),(2018,NULL,1,'en','689865543','A3','A3','male','','','','','','','','','','','Y','Y','Y','','','','','','','','','','','Y','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2019,NULL,1,'en','2140230069','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','','','','Y','','','N','Y',NULL,'Lacks systemd which the work I was doing at the time was dependent on.','Replace initd with systemd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2020,'1980-01-01 00:00:00',5,'en','786494943','A2','A2','-oth-','','','','','','','','','','','','','','','Y','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','Y','','','','','','','Y','Y','','Y','','Y','Y','Y','','Y','','','','','','','','','','','Y','','','','','','','','','','poetry2nix\r\nyarn2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','','','','Y','Y','','Y','','','','','','','','','','','Y','','','','','','','','',''),(2022,'1980-01-01 00:00:00',5,'en','1153449281','A3','A2','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','','','','','','Y','','','','','','','Y','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','Awesome','','',''),(2023,NULL,NULL,'en','1908639638',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2024,'1980-01-01 00:00:00',5,'en','466080886','A2','A3','-oth-','Non-binary','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','','','','','Y','','Y','','','','','','Y','','','Y','','Easy to specify and setup build environments.','','','','(Docker) containers','','','','','','','','','','','','','','','yarn2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Highly configurable system without the brittleness and having a single point for all configuration.','','','Y','','','','','Single point for (almost) all system configuration needed.','Huge amount of up to date packages.','','','Fedora/ Centos with (Docker) containers','Y','Y','','','','','','','','','Sway','home-manager and emacs-overlay both from the nix-community','',''),(2025,'1980-01-01 00:00:00',5,'en','1449803422','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I began using the Nix Packages collection on other Linux-systems out of curiosity. It worked well from day one.\r\n\r\nI then installed NixOS on a test-machine and after a month or so I used it as primary OS on >60% of machines. Nixpkgs on all :-)','Y','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Declarative development environments','`nix-shell -p\' to quickly try out tools','Ease and safety of upgrading and configuring the system','More documentation.','Symlinks... apk/apt; messy systems.','','','','Y','','','','','','','','','','','','','','','','N','I\'m still learning the basics.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','See previous answer.','Y','','Y','','','','','','','','','alpine','Y','','','','','','','Y','','','i3, sway','','','Thanks for these great systems -- I\'m learning more every day.'),(2026,NULL,1,'en','1539017837','A3','A2','-oth-','gender fluid','','','','','','Y','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2027,'1980-01-01 00:00:00',5,'en','1032807210','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was looking for good infrastructure as code programs to work with azure, kubernetes didn\'t cut it (this was in the helm1 era), the azure backend for terraform was really bad. It\'s ironic now, but at the time nixops was the most fully fledged solution to handle linux/azure ops. Of course then I fell in love with it and have used it for basically everything since','','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','declarative system configuration','pinned development environments','distributed builds','','Guix :P but aside from the obvious\r\n\r\nTerraform has gotten quite good, and kubernetes is getting better as well - for system management at least\r\n\r\nFor devshells I guess podman, direnv if I can get away with only using that. Language specific tools.\r\n\r\nBazel looks interesting as well for builds. I\'d probably learn yocto for single task OSs\r\n\r\nFor my personal computers probably gentoo?','','','','','','','Y','','Y','','','','','','yarn2nix\r\ngradle2nix','','','','composition','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','In Organizations','A3','NixOS was the main reason I started with Nix at all!','Y','Y','Y','Y','','Y','','Infrastructure as code','Atomic upgrades','Bespoke images','I would like more abstraction in services, if nixos was init agnostic it\'d be easier to use for some embedded applicaitions, a more stable crosscompilaition story (or at least building on different architectures). Abstractions over apache vs nginx. Secret handling being done properly in more modules','','','Y','','','','Y','','','','','i3','fenix, nix-output-monitor, nix-top, nix-portable, nix-bundle, niv, nixos-generators, nix-update','comma (broke), node2nix, npm2nix',''),(2028,NULL,2,'en','1976158229','A1','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2029,'1980-01-01 00:00:00',5,'en','1080798008','A5','A5','male','','','','','','','Y','','','','','','','','','','','Y','','Y','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','I heard about Nix at a conference, probably Lambda Conf in Boulder. I tried it out on a small project and loved it.','','','','','','','Y','','Y','Y','','Y','','Y','Y','Y','','Y','','Consistency - dev environment matches production','Experiment with different versions and configs quickly and confidently','','It\'s minor, but would be cool if Envoy were in nixpkgs.','I made more use of Docker before I found Nix.','','','','','','','','','','','','','','','My haskell projects use cabal2nix.','Y','','','','N','I’m not sure what I could do to help.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started with NixOS, so this is a repeat of my answer for Nix. I heard about NixOS at a conference, I think Lambda Conf in Boulder. I tried it out on a small project and loved it.','Y','','Y','Y','','Y','','','','','','Ubuntu and docker.','Y','Y','','','','','','','','','','','','Thanks for Nix & Company!!!'),(2030,'1980-01-01 00:00:00',5,'en','88700988','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','Some people at the Networking Society used NixOS and I was getting pretty tired of maintaining and Arch installation','','','','','','','Y','','Y','','','','','Y','Y','','','Y','','Being able to back-up and share the work I put into configuring my personal system','Project-specific environments and configurations','Package management','Nix is often written so as to abstract away the interesting parts of the langauge. It\'s a functional language and yet a typical Nix user will rarely call or declare a function, and in many cases will do so unknowingly since functions are often sneaky stand-ins for other concpets like imports. It feels like a very intentional choice to hide the functions and instead have the user write nix files that look more like a traditional key-value config file, but this tends to produce stack-traces which contain no code written by the user (always fun), plus Nix is well-known to have discoverability and understandability issues which are not helped by all of the important mechanisms of the language being hidden away, not to mention this style tends to produce needlessly verbose code:\r\nThe mkOption syntax is an especailly strange example of the lengths that Nix goes to hid functions from its users; it looks almost like a DSL, complete with runtime type-checking. Why not just make types a feature of the language? ','GUIX, probably, or Arch and I would just try to roll my own configuration management','','','','','Y','','','','','','','','','','','','','Y','','N','Arch made it really easy with the AUR; every package was its own repo and anyone could create a new one at any time. There were rules, of course, but if your package broke the rules it would just be removed at some point. There are so many extra steps to publishing packages that I don\'t want to do: I don\'t want to wait for git to crunch through an enourmous monorepo, I don\'t want to figure out what directory the package should go in, I don\'t want to create a pull request or really interact with github at all, I don\'t want to read the rules, I don\'t want to make a case for why my package belongs in nixpkgs, especially when calling a local package is so easy once you learn how to do it.\r\nI think flakes are a pretty promising answer to this problem, and I hope the Nix team doubles down on the distributed aspect of them, though there\'s still a problem of discoverability. A single command I could run that would add my flake to some sort of central tracker given its URI would be a dream.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Same reason I started using Nix','Y','','Y','','','','','','','','I really don\'t like doing `programs..enable = true;`, If I put a package in my systemPackages array NixOS should assume I want it to work correctly. If a program is too complicated to by used with systemPackages then maybe that\'s a problem with systemPackages.\r\nI also wish that NixOS would do more to be compatible with the standard ways of doing things on Linux. I wish when I logged in as an unprivilaged user it would just pop me in an FHS environment, and that everything worked as normal. I wish NixOS would populate /bin with more than the bare minimum, especailly when it doesn\'t seem to have any qualms with populating /etc even though it could get away with not doing so in many cases. Why use /run/current-system when you could just put things where programs expect them to be?\r\nNixOS is a really powerful tool for creating compatibility layers and specialized runtimes, it\'s a shame it doesn\'t work like that by default.','','Y','','','','','','','','','','dwm','','',''),(2031,NULL,NULL,'en','154266498',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2032,'1980-01-01 00:00:00',5,'en','1085338854','A1','A3','male','','','','','','','Y','Y','Y','Y','','','Y','','','Y','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Was an Arch Linux user, and doing updates sometimes breaks stuff. I heard about NixOS and how it improved the usual OS setup we all know. I decided to try it out and so far I have mostly a pleasant experience after overcoming the learning curve.','','Y','','','','','Y','','Y','','','','','','','Y','','Y','','declarative OS config','OS generations for rolling back','','improved documentation','ArchLinux or Fedora','','','','','','','','','','','','','','','','Y','','','','N','still on the Nix learning process','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','','','','','','','','','','','','','','','Y','herbstluftwm','','',''),(2033,'1980-01-01 00:00:00',5,'en','364114551','A2','A5','male','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','The idea of something properly declarative that could replace both DPKG/RPM and Ansible.','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','','','','Better documentation - specifically documentation that describes best practices and \"default\" working configurations. I think most Nix users spend too much time trying to track down options.','Debian, Ansible','','','','Y','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(2034,'1980-01-01 00:00:00',5,'en','2020208539','A5','A5','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','Engineering Manager','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A1','As an experiment really. I setup a new homeserver for NAS/Owncloud and decided to try NixOS for it. I\'ve recently setup an experimental dev environment for $WORK using nix-shell (I am also looking at Flakes and/or devshell for this but the old way still works and is better documented!)','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','declaritive configs/packages (eg nixos)','repeatable dev environments','package isolation (eg alternative to containers)','Docs/Manual updated for the new nix command and/or flakes. More tutorials and/or ','Ubuntu is my goto distro for prodcution (though I run Arch on my Linux workstation ;) )','','','','','','','','','','','','','','','I don\'t but being both a Rails dev and a Go dev, I would use bundix and the go2nix tooling to package my software.','','','','','N','experience and no need for it at this time.','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','','','','Y','','','','','','','','More services integrated to be managed with configuration.nix','Ubuntu','Y','','','','','','','','','','','','',''),(2035,'1980-01-01 00:00:00',5,'en','597322987','A2','A3','male','','Y','','','','','','','','','Y','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','composability','reproducibility','isolation','* resource limits for derivations, e.g. execution time limit','I\'d don\'t see another existing replacement','','Y','','Y','Y','','','','Y','','','','','','https://github.com/nix-community/naersk\r\nalso looking for something to build android projects reproducibly','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','Declarative Configuration Management for full Systems','Abstraction (Enabling features/services while not having to know how they work, but always being able to find out)','NixOS Tests (they are beautiful. my colleagues use them on regular Linux as well)','I wish NixOS could prove that a running systems was built from a claimed configuration and that someone would give me a PhD for waving that wand.','I would use things like Fedora, Ubuntu and FreeNAS.','Y','','','Y','','','','','','','sway','home-manager','mach-nix',''),(2036,NULL,0,'en','1977215242','A6','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','N','N','I would like to try nixos. The main thing which attracts me is the large repository and the ability to rollback. I am new to Linux hence not that proficient in command line. If there was a user friendly way to install nixos I\'ll try it in a heart beat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2037,'1980-01-01 00:00:00',5,'en','982830812','A2','A5','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','N','N','I\'m still trying. It\'s hard to fight through the jungle. Too bad there are no books yet. A kind of best practices documented would be nice ...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I don\'t really have a use case for it',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2038,'1980-01-01 00:00:00',5,'en','980867318','A2','A2','male','','','','','','','Y','','Y','','','Y','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was trying some distros, and after experiencing the guarantees that NixOS provides, I couldn\'t use anything else.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducible builds of software','Separate, version-locked development environment for each project','Easy cross-compilation','Stabilize flakes, improve support for nested flakes in a single repository','bash scripts','','','','Y','Y','','','Y','','','','','','','https://github.com/DavHau/mach-nix','','Y','','','N','I have not come across an issue which is easily fixable by me','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was trying some distros, and after experiencing the guarantees that NixOS provides, I couldn\'t use anything else.','Y','','Y','','','','','Declarative configuration of the operating system','Rollbacks to previous configs','Easy, reproducible deployments','Make systemd optional, support other init systems','GoboLinux','Y','','','Y','','','','Y','','','','https://github.com/numtide/flake-utils\r\nhttps://github.com/numtide/devshell','https://github.com/matthewbauer/nix-bundle',''),(2039,'1980-01-01 00:00:00',5,'en','486317450','A3','A3','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I was memed into it','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','','','Flakes','Overlays','','Add: An orchestration framework (imagine k8s but for multi-cloud nix fleets)\r\n\r\nChange: The docs\r\n\r\nRemove: The learning wall','Gentoo','','','','Y','Y','','','','Y','','Y','','','','https://github.com/NixOS/cabal2nix\r\nhttps://github.com/DavHau/mach-nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I was memed into it','Y','Y','Y','','','','','Flakes','Overlays','nix-shell','Add: a multi-cloud orchestration framework (thing k8s for NixOS microVMs)\r\n\r\nChange: the docs\r\n\r\nRemove: the learning wall','Gentoo','Y','','Y','Y','','','','Y','','','sway','The Nix Docker image','https://nixos.wiki/wiki/NixOS_Containers','Keep rocking!'),(2040,'1980-01-01 00:00:00',5,'en','1969183311','A3','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was tired of having my environment messy, broken Linux installs, my home server breaking and etc. But I really got engaged with it after I had the chance to use it at work: I could convince people it was a good idea, made an experiment and had nice results.','Y','','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Contained package management and reproducible environment','Caching (shared links for duplicate packages I should say)','Versioning packages','','Thousands of lines of shell script with Perl.','','','','','Y','','Y','','Y','','Y','','','','https://github.com/DavHau/mach-nix <- sort of a 2nix I guess','','Y','','','N','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was always into Lisp, so I first got into Guix, then later on migrated to Nix due to a larger community. Although I really started with Guix, the story might apply to the essence of Nix: I was at work and my Arch updated a library I used on an update; as an attempt to fix, I tried my best to rollback the changes, but when I rebooted, my luks encryption broke due to a grub error I introduced with a bad gcc compilation. That locked me out and I had to run to finish an entire issue again on a Mac, and none of my scripts (shell, Perl and common lisp stuff) mostly wouldn’t work, my F# environment was inconsistent and all the terror you can imagine. After that day ao just dived into guix/nix','Y','','Y','Y','','','','','','','','Debian, because probably Guix wouldn’t exist as well','Y','Y','','','','','','','','','XMonad and StumpWM','','','Keep up the good work'),(2041,'1980-01-01 00:00:00',5,'en','178988381','A2','A3','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A friend told me about it.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Declarative package and configuration management (home-manager & nixos modules)','Reproducible development environments (nix develop & flakes)','Lots of packages','Static types','Guix, though that probably wouldn\'t exist either :-)','','','','Y','Y','','Y','','','','','','','','hackage2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Xmonad','- home-manager\r\n- flake-utils\r\n- emacs-overlay\r\n- nixos-mailserver\r\n- nur\r\n- sops-nix','',''),(2042,'1980-01-01 00:00:00',5,'en','1985438825','A4','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','N','N','Learning it first',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2043,NULL,3,'en','552153888','','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','','','','','','','Y','','','','','','','Y','Y','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','',NULL,NULL,NULL),(2044,NULL,1,'en','2094564346','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2045,NULL,2,'en','1169370368','A1','A2','male','','Y','','','','','Y','Y','','','Y','','','','','','','Y','','','','','Y','Y','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was first introduced to the idea of dotfiles, after which I got into somewhat declaratively managing my system by using Debian packages to control system installations via dependencies instead of imperatively using apt et al, even having a primitive approximation of nix-shells using temporary package creation and deletion using scripts.\r\n\r\nThen I heard of Nix. I initially was turned away by the fact that I couldn\'t just jump right in to try various things, and the lack of Nvidia compatibility by default (ha, the usual Linux story) was a snag as well. But the next summer vacation I got, I dove into Nix pills and now cannot live without the ability to version control and declaratively manage my system. Even all my OCI container deployments previously done using Docker have been replaced with NixOS\'s virtualisation.oci-containers.','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','Declarative and reproducible builds and development environments','Declarative systems','Functional language','I would make Nix type-safe, and magic in even more documentation.','Probably OCI containers and Debian packaging.','','','','Y','Y','','Y','','Y','','','','','','https://github.com/NixOS/cabal2nix (though usually using callCabal2Nix)\r\nhttps://github.com/nix-community/bundix\r\nnix-prefetch-docker (does this count?)','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(2046,'1980-01-01 00:00:00',5,'en','1375773588','A2','A3','male','','','','','','','','','','','Y','','','','','Y','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','Needed to fix a broken package in nixos','','','','','','','Y','','Y','','','','','','','','','Y','','declerative configuration','reproducible builds','kde','','arch - manjaro - ubuntu','','','','','','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','A fellow student told me about it. I liked the idea of making build replaceable and defining a system declaratively from a single file is very cool.\r\nIm not a linux expert but after a couple hours I managed to use the kde-nixos build and follow the manual into a functioning system. (Really needs a graphical installer)\r\n','Y','','Y','','','','','declerative package management','reproduceable','kde','1: A GUI for editing configuration.nix editor that looked like a normal package-manager (graphical like kde discover) but never remove the one file config!!!\r\n2: A graphical installer for the kde nixos iso.\r\n3: easy home hydra in docker etc. (with a guide for newbs)','manjaro - arch - ubuntu','Y','','','','','','','','Y','','','nix-env','','great work\r\n'),(2047,'1980-01-01 00:00:00',5,'en','1565863275','A3','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','Everything','A2','Got curious after seeing some enthusiasts at work, tried myself and got impressed with so much I could achieve. Since then I use it daily.','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Declarative system or server configuration/management','Declarative environment management','Build and package software','I would make the language look like ML languages with Hindley–Milner type system.','Probably I would still be a sad Arch user who needs to reconfigure the whole system every 3 months.','','','','Y','','','','','Y','','','','','','machnix (https://github.com/DavHau/mach-nix);\r\npoetry2nix (https://github.com/nix-community/poetry2nix);','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','Everything','A2','Got curious after seeing some enthusiasts at work, tried myself and got impressed with so much I could achieve. Since then I use it daily.','Y','','Y','','','','','Declarative system configuration','','','Improve the way to handle secrets and keys in a declarative manner.','ArchLinux unfortunatelly.','Y','','','','','','','','Y','','xmonad','garbage collector, home manager.','can\'t think of any, mostly they turn into an opportunity to make a contribution.','NixOS revived my will and sense of discovery in fields related to computer science after long years of the same boring stuff.'),(2048,'1980-01-01 00:00:00',5,'en','366590785','A5','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Saw people recommending it on Hacker News. Wanted to find a language-agnostic tool to help create reproducible environments for software development.','Y','Y','','','','','Y','','','','','','','','Y','','','','','Declarative environment management.','Reproducible package management.','Flakes','Have everyone adopt flakes.','','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'','','Y','','','A3','','','','','','','','','','','','','','','','','','','','','Y','','','','Flake Utils','node2nix, or any of the \"2nix\" language tools. found it much easier to just use the package manager for the specific programming language.',''),(2049,'1980-01-01 00:00:00',5,'en','895924815','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','pacman','','','','Y','','','','','','','','','','','','','','','','N','I\'m a newbie here.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','When archlinux upgrade to python 3.10, it breaked many packages/python_modules i use daily.','Y','','','','','','','','','','','pacman','Y','','','','','','','Y','','','','','',''),(2050,'1980-01-01 00:00:00',5,'en','85106746','A6','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','For configuring home systems','A2','No particular reason. I was using Gentoo at that time and was having some real life problems; so I just decided to try investing my time in learning Nix just to divert my mind. Turns out that twas a good decision.','','','','','','','Y','Y','Y','','','','','','Y','Y','Y','Y','','On-the-fly configuration using flakes and nix develop/nix-shell','Declarative package management to reduce side effects','Version controlled flake system','Add a way to keep the build cache so that a huge project doesn\'t compile again when I change one of the `instalFlags`','I don\'t know, I am comfortable with anything. It is not that I can\'t live without Nix. Nix makes things easier too (sometimes harder too).','','','','Y','Y','','','','','','','','','Concourse','Actively, none.','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Just as a daily driver','A2','Same as Nix.','Y','','Y','','','','','Declarative system configuration in one place','Immutability to avoid pollution','Rollbacks','A way to maintain two or more system profiles simultaneously. Just like rollbacks but like at the same level. For example, having two different kernels (and essentially different profiles) to choose from when you boot up your machine.','Again, anything works.','Y','','','','','','','','','','XMonad','Home Manager\r\nRust Overlay by oxalica\r\nNvim Overlay\r\nEmacs Overlay\r\nFlake Utils','node2nix\r\ncabal2nix',''),(2052,NULL,2,'en','1535976937','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','N','N','1) When I have time to learn Nix\r\n2) When the experimental features are stable',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(2053,'1980-01-01 00:00:00',5,'en','903606355','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','N','N','1) when I have time to learn Nix\r\n2) when the experimental features are stable\r\n3) if it is possible, I think support zsh in nix-shell officially is a good idea, and it will cause me to try Nix.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','When I was reading a README file of a GitHub repo nearly a year ago, I saw \"NixOS\" in the \"installation\" part. At that time, I wondered what is it, but I didn\'t try to learn what is it. Several months later, I wanted to change the Linux distribution I use. Then I remembered NixOS, so I searched for \"NixOS\". After learning the amazing features NixOS have, I decided to use NixOS.','Y','','','','','','','The whole system is determined by /etc/nixos/configuration.nix. This file includes the configurations of different softwares that is in different places in other Linux distribution.','Because of reason 1, the whole system is reproducible and reliable.','NixOS uses Nix as its package manager.','1) I will add a better command `nixos` to replace `nixos-*`. The \"nixos\" command should be modern and have a better command-line interface.\r\n2) I will change the output format and color of command `nixos-rebuild` and other commands to make them more beautiful and clearer.','If a have a good CPU, I will use Gentoo instead.\r\nIf not, I will use Arch.','Y','','','','','','','','Y','','awesome','No.','No.','Thank you for providing such good OS, hope Nix and NixOS are getting better and better.'),(2054,'1980-01-01 00:00:00',5,'en','752182749','A1','','','','','Y','','','Y','Y','','','','Y','','','','','Y','Y','Y','','','','','','Y','','','','','Y','','iOS, Android','Y',NULL,NULL,NULL,NULL,'A2','Y','','','Secondary daily driver workstation','A4','The guiding principles and philosophy align with my intentions: Functional, deterministic, declarative, reproducible.','','','','','','','Y','','','','','','','Y','Y','','','Y','','','','','Radically different interfaces (both configuration and tooling). Despite a solid background in functional programming (Haskell, lisp, Idris, and others), development, package management, containers, and linux sysadmin, I still find even simple tasks to be insurmountable and confusing at times. The intersection of the language and the nix system is esoteric. I can\'t tell you *how* it should be done different, though.','I\'d probably give Guix a shot. Otherwise, OCI containers.','','','','','','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','Secondary daily driver workstation','A4','See Nix answer','Y','','','','','','Workstation','','','','See Nix answer','See nix answer','','','','','','','?','','','','On X11: Xmonad. On Wayland: Sway+wlroots','','I\'m honestly starting to phase out NixOS and Nix alltogether due to never getting over hurdles or getting productive enough. Which is unfortunate, as there are so many promising aspects of them.','A thing that comes up again and again: Ruby/Python/Node packages with some particular naive C/C++/Rust binary dependency creepsup as a timesink time and again'),(2055,'1980-01-01 00:00:00',5,'en','2128538154','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I stumbled upon some dotfile configs from some people in the neovim and clojure community and revisited them a few times until I gave it a go. They were using home-manager. \r\nThe beginning was a bit rough because I couldn’t find a proper entry point, but now I really like it.\r\nI found some good content by Jon ringer and burke libbey on YouTube. ','Y','','','','','','Y','','','','','','','','Y','','','Y','','DEV environments','Declarative system configuration','','- more descriptive error messages \r\n- secret handling (like Ansible-vault)','Ansible ','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'N','N','A supported machine. I’m using a mac. Will probably give it a try when asahi Linux is more stable. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I hope for an even better Darwin Support in the Future. A clear path for newbies how to go full nix. \r\n\r\nThanks for providing nix. \r\n'),(2056,'1980-01-01 00:00:00',5,'en','476279119','A2','A2','male','','','','','','','Y','Y','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','It felt like magic.','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','','','','THE MOST IMPORTANT: improve nix develop integrations with Intellij-based IDEs (PyCharm, CLion, Intellij-Rust).\r\nSpeed up builds, improve nix lsp as much as possible.','A ton of crappy shell scripts that would break all the time.','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Heard about it on DistroTube, and realized it solves all my problems.','Y','','Y','Y','','','','Stability','Sharing NixOS config between machines and easy remote deployments','Rollbacks','Speed up nixos-rebuild switch','A ton of crappy shell scripts that would break all the time.','Y','','','Y','','','','','','','bspwm','- home manager (within NixOS config, as an extension to the NixOS modules)\r\n- nix-top\r\n- agenix\r\n- simple nixos mailserver','- morph (moved to deploy-rs, morph is crappy)','Thanks for all the hard work.'),(2057,'1980-01-01 00:00:00',5,'en','1256355188','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','','','','Y','Y','','Y','Y','','','','','','','Y','Y','Y','Y','','Isolated, reproducible development environments with nix develop','','','Performant IPFS backed storage\r\nSimple secret management','Bash Scripts and Docker Compose','','','','Y','Y','','','','','','','','','','https://github.com/tadfisher/gradle2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','','Reproducible, reusable system configuration','','','Easy multi-user setup, in combination with home-manager','Fedora','Y','','','','','','','','','','Wayland via Sway','','',''),(2058,'1980-01-01 00:00:00',5,'en','1030765557','A2','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2059,'1980-01-01 00:00:00',5,'en','612412654','A2','A3','male','','','','','','','Y','','','Y','Y','','Y','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','At a Software Crafters Meetup, a person I consider a mentor, showed us a \"magic tool\" to have multiple versions of dependencies that are installed per project and not globally (Nix + DirEnv).\r\n\r\nToday, i setup every projects with DirEnv + Nix, even Flake when i can\r\n\r\nUnfortunatelly, i\'m the only user of Nix at my work, i can setup Nix but not Nix Flake, because it needs to be commited.','Y','','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','declarative configuration','per-project packaging','reproductibility','With the Nix language, I am often confused with types: I don\'t know which type is a symbol, if it\'s a function, how I should call it... :\r\n* maybe improve the VSCode rnix-lsp plugin\r\n* maybe change the typing system of the Nix language to a static type system\r\n\r\nAdd a user interface that displays existing options and possible values\r\n\r\nThe Nix community is active, which is cool, but there are too many things doing the same job, which is confusing.\r\n','Maybe a mix between:\r\n* containers\r\n* FlatPak\r\n* AppImage\r\n* Guix','','','','Y','Y','','','','','','','','','','i don\'t understand how to use them, so i don\'t','Y','Y','','','N','I did a PR to Home Manager, it took more than 6 months to be merged, it has many rules to open a PR (which is normal to have shared and good standards across the repository but which takes times to learn), i didn\'t have the help i was looking for\r\n\r\nNixpkgs seems even harder\r\n\r\nSo, i just open issues and talk in issues','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','At a Software Crafters Meetup, a person I consider a mentor, showed us a \"magic tool\" to have multiple versions of dependencies that are installed per project and not globally (Nix + DirEnv).\r\n\r\nSome time later, he showed that even his operating system respected the same principles: multiple dependency versions, free rollback, per-project packaging, reproducibility, declarative rather than imperative configuration (saying what I want and not how the computer should do).\r\n\r\nI tried for a week to understand and configure my first NixOS (I was using Linux Mint at the time); it was very difficult.\r\n\r\nToday, I can\'t imagine going back to an operating system that doesn\'t have configuration as code.','Y','','','','','','my main OS for personnal computer (playing, net browsing, listening music, watching videos ...)','declarative configuration','free rollback','reproductibility','Add simple documentation for beginners\r\n\r\nAdd a GUI installer like other distributions have (which would generate a basic configuration.nix based on templates)','Trying new Linux distro every year like was doing before\r\n\r\nMaybe Guix\r\n\r\nMaybe Linux Mint with many containers','Y','','','Y','','','','','Y','','','Home Manager','Agenix : didn\'t succeeded to have a working configuration\r\n\r\nNix GUI https://github.com/nix-gui/nix-gui : promising but never worked for me','Thanks to provide this great tools, OS, ecosystem !'),(2060,'1980-01-01 00:00:00',5,'en','29380038','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I got fed up with the super slow update cycle of Debian based systems and know a bunch of people who already run Nix, so I got convinced to try it when I was looking for a stable rolling distro (or in Nix\'s case, something with reliable rollbacks)','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Perfectly reliable rollbacks','Single config for everything','Getting rid of globally installed bloat libraries','Go the Guix route and use a normal preexisting language instead of Nix. Maybe implement it as a Haskell library','Globally installed bloat','','','','Y','Y','','','','','','','','','','node2nix','Y','Y','','','N','The software I add is local proprietary stuff','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Debian updates slow. Arch unstable. NixOS has perfect rollbacks so I can run bleeding edge without any worries','Y','','Y','','','','','Perfect rollbacks','Home manager for config management','fast updates','A package to set up a temporary ubuntu shell that isn\'t completely isolated like a VM would be so that I can run precompiled ubuntu binaries without packaging them properly and running patchelf on the binary','PopOS, maybe GUIX if I replaced my NVIDIA card','Y','','','','','','','Y','','','','Home Manager','',''),(2061,'1980-01-01 00:00:00',5,'en','1160964285','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Reproducible build enviroments is hard and copying system configuration is annoying if not on Nix.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','','Flakes','Rust environment','','Better more up-to-date wiki and learning resources\r\nMake flakes standard and stabilized\r\ncreate a custom filesystem that automatically deduplicates the nix store (similar to ipfs)\r\n\r\n','probably guix, arch, or eventually make my own OS','','Y','','Y','Y','','','','','','','','','','https://github.com/yusdacra/nix-cargo-integration','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','See earlier section for Nix','Y','','Y','','','','','Reproducibility','Lots of apps','','See earlier section','Guix, Arch, etc.','Y','','','','','','bud','','Y','','Wayland','devos is pretty sweet, and all the projects that it depends on (nix-flakes-plus, and others)','node2nix, cargo2nix, most of the 2nix\'s because they typically aren\'t feature-complete and try to replace the build system instead of working alongside it.','I like Nix, but it could be better, like way better in terms of usability and understanding.'),(2062,'1980-01-01 00:00:00',5,'en','338800969','A5','A3','male','','','','','','','Y','Y','','Y','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','My friend said said I should try out NixOS because of it\'s reproducibility. This required learning Nix as well. It took me a while to get comfortable enough to use it as my primary OS. I previously used Arch Linux.','Y','Y','','','','NixOS containers','Y','','Y','','','Y','','','Y','Y','','Y','','Flakes','Building special things such as docker images.','Supply chain security provided by reproducibility ','Release flakes as stable. Implementing a solution for checking out git submodules will be necessary though among many other things I\'m sure though.','Maybe Guix. Or just suffer if Guix didn\'t exist either.','','','','Y','Y','','','','','','','','','','node2nix','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','My friend said said I should try out NixOS because of it\'s reproducibility. It took me a while to get comfortable enough to use it as my primary OS. I previously used Arch Linux.','Y','','Y','Y','','Y','','Options - these should be used more in regular nixpkgs','services - often what I want already works with an \"enable\"','','Secrets need to be managed more consistently. Some older services pass secrets such that they are written to the store.','Probably Arch Linux.... hoping things don\'t break and relearning how to do things constantly.','Y','','','','','','For regular updates: system.autoUpgrade','','Y','','','agenix to manage my NixOS secrets','None that I recall','nixpkgs is getting pretty big to git clone. Are there ideas/plans to address this?'),(2063,'1980-01-01 00:00:00',5,'en','1292346930','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','','','','Y','','','','','','','Y','','','','','','','','Y','','Make nix for freebsd OS','','','Full FreeBSD OS support. Like NixOS but for freebsd. ','','','','','','Y','','','','','','Y','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','','','','','Y','','','','','','','Bring full NixOS to FreeBSD OS. ','','Y','','','','','','','','','Y','','','','Please bring the entire NixOS to FreeBSD. '),(2064,'1980-01-01 00:00:00',5,'en','1252606127','A5','A2','fem','','Y','','','','Y','Y','','Y','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','After using NixOS on my daily driver machines, I started using Nix in my projects.','Y','Y','','','Y','','Y','','Y','','','Y','','Y','Y','Y','Y','Y','','Dev shells','Flakes','','I\'d add type hints and possibly an LSP.','Probably Ansible or some hacked together shell scripts.','','','','Y','Y','','','','','','Y','','','','cargo2nix','Y','Y','','','N','I\'d want to do it more but I\'m rather busy.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','After doing lots of homelab experimentation, I found nix and thought it was super cool. It does all the declarative infra/config management stuff in a way that wasn\'t as janky as Ansible. Now, I use NixOS as my daily driver and the OS for most of my systems.','Y','','Y','','','Y','','Declarative config management','Module system','ZFS support','','Arch Linux','Y','','','','','Y','','','Y','','','home-manager','',''),(2065,'1980-01-01 00:00:00',5,'en','959336823','A1','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','','','Binary cache ','Declarative dependency resolution','well-maintained package set','','No idea','','','','','','','','','','','Y','','','','','','','','','N','I don’t know how to make a contribution.','N','N','decline of macOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I’d like to appreciate it for developing/maintaining such a great project!'),(2066,'1980-01-01 00:00:00',5,'en','68994672','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','OpenWRT/Linux','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Started using NixOS and discovered the glory of Nix <3','','Y','','Y','','','Y','','Y','','Y','Y','','','Y','Y','','Y','','Reproducibility - both bit-by-bit and the general guarantee that flake outputs produce whatever they produce for Eternity','Purity - when I deploy, I know I only deploy what I need, and I know I will always deploy all of what I need','Flakes\' general convenience - OTA updates for my mom\'s laptop are efficient and easy to run - just one command!','Made flake support un-experimental and add more documentation around how to integrate Nix into your own CI (e.g. build a Hydra equivalent in language X)','I would probably try to use Docker, then invent a crude imitation of Nix, coming to the same conclusions as Eelco did in his dissertation.','','','','Y','Y','','Y','','Y','','','','','','naersk - https://github.com/nix-community/naersk','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','For my mom','A4','Came from Gentoo because I discovered you have binary caches, yet can customize packages on source-level just like Gentoo. Stayed for the reproducible configuration and peace of mind when deploying.','Y','','Y','Y','','Y','My mom\'s laptop runs NixOS too for our peace of mind','Idempotence when deploying - nothing breaks if I deploy same thing twice','Customizability - I can do whatever I want, even rip out and replace whole chunks of the operating system','Flakes allow me to quickly package a configuration into a URL and share it with others (for example, to let my mom install an update to her machine)','The ability to launch copies of services, not unlike Redis module does, but with better ergonomics. I think I would prefer services to be described not unlike systemd services, but with template generators that would spit out a systemd unit from a RFC42-compliant configuration block.','Gentoo with a lot of kludges around it, including a homegrown binary cache.','Y','','','','','','','Y','','','Sway','Naersk','nixops','if Raiden Shogun from Genshin Impact found NixOS, she would bask in its glory and declare her search for Eternity complete.'),(2067,NULL,NULL,'en','990552270',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2068,NULL,2,'en','533423096','A5','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','near-edge support for packages (fastest update from upstream), packages integrates well (bash autocomplete automatically gets installed, programs with vim plugins just works)','Y','','','','','','','Y','Y','','','','','','','','','Y','','cross-package integrations','sensible defaults','rich package manager source','the complexity around learning the language syntax itself — i have no haskell or functional programming background, and sometimes when i just want to “configure something quickly” it frustrates me how much i have to learn to do it instead of seeing things to be “intuitive”.','mostly debian aptitude or containerize everything and run alpine apk','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2069,'1980-01-01 00:00:00',5,'en','1938382514','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','','','','','','Y','','','','','','Reproducible builds','Stability','Build efficiency','The syntax: it\'s horrid. Any other language would be a better pick, once laziness is there. Using syntax since years: still can\'t read any of it.','Docker build, make','','','','','Y','','','','','','Y','','','','composer2nix','','Y','','','N','Lack in understanding of the nix language ','N','Y',NULL,'Difficulty in adding dependencies not part of nixpkgs','Better syntax ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'direnv','',''),(2070,NULL,2,'en','542507609','A5','A2','-oth-','im taking a vacation from gender atm','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','','','for fun!','A2','this is super surface-level, but i just loved the idea of declarative configuration. insane number of use-cases. seemed like it made smart, design-informed abstractions, rather than the more \"pragmatic\" abstractions made by other operating systems','','Y','','','','','Y','','Y','','','','','Y','','','','Y','','plaintext declarative configuration in NixOS','declarative package management','the ability to build and package software','this may be waaaaaay out-of-scope, but it would be super neat to see nix-style declarative infrastructure management','arch linux, purely out of habit. for the purposes that I most commonly use nix for, I would probably do something inadvisable with gnu stow for declarative configuration, and (probably equally ill-advised) scheduled checks against a list desired packages. ','','','','','Y','','','','','','','','','','','Y','','','','N','lack of familiarity with the codebase, lack of familiarity with contributing to FOSS in general.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2071,NULL,1,'en','1057823979','A2','A4','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2072,'1980-01-01 00:00:00',5,'en','555003088','A2','A3','male','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','My brother in law introduced me to nixos','','','','','','','Y','','','','','','','','Y','','','Y','','Reproducibility ','Composability ','Open source ','I\'d add flake modularity by introducing a possibility for choosing different options inside flakes with flake arguments. Eg. with command nixos-rebuild switch --flake \". #workstation#dev\" or ...#server#production etc. ','Probably Arch Linux ','','','','','Y','','','','','','','','','','','Y','Y','','','N','Need to learn more first ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Brother in law introduced it to me','Y','','','','','','','Reproducibility ','Composability ','Open source ','I\'d add better documentation ','','','','','','','','','','Y','','','','','I think the biggest issue holding back nix and Nixos usage is the lack of proper documentation. This should be a priority for the community '),(2073,NULL,NULL,'en','932888732',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2074,'1980-01-01 00:00:00',5,'en','2116269561','A2','A6','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Needed scalability in deployment ','Y','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','(Near) reproducibility ','(Nearly) declarative deployment ','(Nearly) multi platform independence ','I’d make it more statically typed - too many issues get too far down the deployment chain ','I’d just retire!','','','','Y','','','Y','','','','','','','','Cabal','','','','','N','Not feeling confident of the “unspoken “ etiquette, also running a company takes up all tome','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','Y','','','','','','','','','','','','','','','','','','','',''),(2075,'1980-01-01 00:00:00',5,'en','2143649336','A2','A3','-oth-','','','','','','','Y','','','','Y','','','','','','','','','','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','I use Nix to manage the set up on my MacBook. I started using it after a friend recommended it to me.','Y','','','','','','Y','','','','','','','','','','','Y','','Reliability: if I got it working it\'ll keep working forever across devices','Number of packages available—I used Homebrew in the past but nixpkgs has a much wider variety of packages available','Cool factor: it\'s just really cool how it builds everything in isolation','Making flakes generally available, they\'ve been experimental way too long.\r\n\r\nAs for nixpkgs, I wish it was easier to install a specific version of e.g. Ruby. Now there\'s the last 3 minor versions available but the patch version is constantly updating. I want all of the patch versions to be separately available.','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'N','N','It being easier to install on DigitalOcean. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'I use nix-darwin to manage my installation. ','I stopped using home-manager in favor of doing everything with nix-darwin. I don\'t even remember what it provided to be honest.','nix is the best'),(2076,NULL,1,'en','1602802855','A2','A4','-oth-','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2077,'1980-01-01 00:00:00',5,'en','1975282781','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','N','Y',NULL,'Not stable or well documented.','More mature. Comprehensive documentation. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2078,'1980-01-01 00:00:00',5,'en','603727438','A2','A3','male','','','','','','Y','Y','','','','Y','','','Y','','','','Y','','Y','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I stumbled upon it via the Haskell Community on Twitter some years ago. The obvious value propositions of reproducible builds&test, declarative system description, and congruent server deployment convinced me immediately. I personally have always seen over the sometimes challenging UX or lack of docs, but i recurringly put people into the situation of having to learn nix and nixos and observe the same patterns again and again how people are struggling to learn it. The documentation situation grew better, but then there\'s confusion about flakes etc. etc. - so in the last years i have a different look at it trying to make it easier to ramp up new people.','','Y','','Y','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','reproducible builds','effective caching (but sometimes not efficient, see e.g. tetex distro downloads that take ages because they are too fine-grained)','overridability/exchangeability of nix derivations','take away: the sources of impurity (~/.config/nix sourcing etc., and the nix path etc. etc.). add: a proper type system to the nix language.','This one is hard. I guess i would use container things like podman and hate it. But if there weren\'t nix i would also switch to programming languages that have good package management (away from c and c++) to at least fix that.','','','','','Y','','Y','','Y','','Y','','','','cabal2nix from nixpkgs','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','after getting exposed too long to nix, it was the logical conclusion that in comparison to nixos, all other linux distros are legacy distros and i need to switch. there is no other linux distro that can provide you the stability and the comfort of off-the-shelf system configuration modules with declarative configuration but at the same time allows you to override everything.','Y','Y','Y','Y','','Y','','it is easy to provide your own modules and packages to extend the os','declarative system configuration','state-avoiding congruent deployment','add: a standard, stateless deployment tool which also manages secrets etc. add: the integration tests in nixpkgs are partly broken, because they are not always run against all changes, so beef up the build infrastructure so it can do that. change: the nixos-a-la-carte module addition by robert hensing should become the default way to build systems.','i would probably use docker-compose on servers and hate it, and on my laptop use fedora or ubuntu','Y','Y','','','','Y','','Y','','','','all the nixpkgs haskell tooling, nixos integration tests, NIV (super useful in a pre-flakes world)','nixops because of its state','thx for doing this'),(2079,'1980-01-01 00:00:00',5,'en','482580115','A5','A5','male','','','','','','','Y','Y','','Y','Y','Y','Y','','','','','Y','','','','','','Y','','Y','Y','','Y','','','N','Y',NULL,'Packages were outdated.','If packages start being updated more frequently.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2080,NULL,1,'en','1798069077','A5','A5','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2081,'1980-01-01 00:00:00',5,'en','284977736','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was learning Haskell and heard about pure fp way of managing Linux installation. I stayed with nix because home-manager allowed me to version control my dot files together with all required software dependencies.','Y','Y','','','','','Y','','','','','','','','Y','','','Y','','home-manager','nix-shell','nix-ops','Simple alternative to channels, simpler than flakes','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'ve started with home-manager on arch and wanter more nix','Y','','Y','','','','','Modular configuration','','','','','','Y','','','','','','','','','i3wm','home-manager, direnv','',''),(2082,'1980-01-01 00:00:00',5,'en','620592399','A5','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Disabled, Not Working','','Y','','Y','','','N','N','If I could get through the docs & actually learn it in one go (maybe next summer), that would be a great improvement.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','If I could get through the docs & actually learn it in one go (maybe next summer), that would be a great improvement.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None.','So far, I\'ve found this old blog series to be the best documentation for newcomers: https://ianthehenry.com/posts/how-to-learn-nix/\r\nThis leaves much to be desired.\r\nI\'d love to see more effort put into documentation for new people to get up to speed.'),(2083,'1980-01-01 00:00:00',5,'en','1566451026','A1','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','Basically everything I do involves Nix','A3','I tried it out because of the hype I saw on Twitter among all the devs I follow. I tried NixOS out and while it was difficult getting started with it, I fell in love with all the declarative-ness of Nix and I started using Nix for all the things I do. It started out just with NixOS but now I\'m also using direnv+nix-shell to manage environments for my development stuff.','Y','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Declarative environment management (nix-shell)','Nixpkgs. Specifically how all the packages are maintained in an accessible github repo. Makes it easy to upstream stuff. Especially love the module stuff.','Declarative system (NixOS)','Arch wiki level documentation for everything Nix related.','Urg I\'d probably be using Arch for AUR and pacman. For environment stuff I guess I\'d be using docker.','','','','','Y','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Ah it\'s the same story with Nix. I tried it out because of the hype I saw on Twitter among all the devs I follow. I tried NixOS out and while it was difficult getting started with it, I fell in love with all the declarative-ness of NixOS. I love the modules. Setting up stuff like Let\'s Encrypt is so much easier than other OSes and getting drivers to work for popular stuff is also very easy. Setting up new machines are also easy because I just modify a bit of the existing .nix files I have. So those are really the reasons why I use NixOS.','Y','','Y','','','','','Declarative .nix files for setting up a machine','Nixpkgs. Especially how it\'s so accessible through github and how all the packages are maintained there.','','Better documentation that\'s up to par with Arch Wiki.','Something Arch based','Y','','','','','','','','Y','','','direnv + nix-shell and home-manager is something I use regularly.','I tried flakes and overlays. It was sorta hard to figure out so I stopped using them.\r\n\r\nBesides those I guess I tried to use like Go to Nix projects and they were weird so I stopped using them. I\'m happy with the direnv+nix-shell stuff I have now.',''),(2084,NULL,1,'en','2117312503','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Engineer, mechanical','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2085,NULL,NULL,'en','1908351211',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2086,NULL,NULL,'en','826205461',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2087,NULL,NULL,'en','1639069255',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2088,'1980-01-01 00:00:00',5,'en','914302381','A2','A4','','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','','','','','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','','','','I would add a tonne more money and resources. There are lots of areas where things are a little inconsistent, or awkward. There is not enough testing done.\r\nFor example, kernels have been shipped which have led to data loss. Integration with language package managers is ... usable but sometimes problematic. For example, as far as I can tell, it\'s impossible to declare in Nix that a package needs Go version 1.18 to build. Yes, I could depend on the package go_1_18, but that will stop been sensible as soon as 1.19 is out.\r\nFor me, there is nothing wrong with the language - the language causes me no difficulties at all. It\'s the lack of polish elsewhere that can cause me frustration.\r\nThat said, I still very much like Nix and will continue to use it. But it is very very obvious how different the size of the community and resources are, versus eg Debian.','Debian - I\'ve used Debian on all my machines since about 2000. Switched to NixOS a bit over 6 months ago.','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','Y','','','','The confidence that two or more machines are configured exactly the same way, and that that configuration is reproducible, is wonderful.','','','I would add a tonne more money and resources. There are lots of areas where things are a little inconsistent, or awkward. There is not enough testing done.\r\nFor example, kernels have been shipped which have led to data loss. Integration with language package managers is ... usable but sometimes problematic. For example, as far as I can tell, it\'s impossible to declare in Nix that a package needs Go version 1.18 to build. Yes, I could depend on the package go_1_18, but that will stop been sensible as soon as 1.19 is out.\r\nFor me, there is nothing wrong with the language - the language causes me no difficulties at all. It\'s the lack of polish elsewhere that can cause me frustration.\r\nThat said, I still very much like Nix and will continue to use it. But it is very very obvious how different the size of the community and resources are, versus eg Debian.','Debian.','Y','','','','','','','','Y','','','home-manager. I use the nix module for that to configure my user environment declaratively.','',''),(2089,'1980-01-01 00:00:00',5,'en','274181012','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','ocaml2nix','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','','','','','','','','','','','','','Y','','','','home-manager\r\ndirenv\r\n','',''),(2090,'1980-01-01 00:00:00',5,'en','2104375721','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','Y','','Y','','Y','','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','Y','','','','','','haskell2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','Y','','Y','','','','','','','Y','','','','','Y','','','Y','','','','',''),(2091,NULL,1,'en','1998806009','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2092,NULL,NULL,'en','2124248894',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2093,NULL,1,'en','1731714986','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2094,'1980-01-01 00:00:00',5,'en','245075095','A2','A4','male','','','','','','','Y','','','Y','','','Y','','','','','Y','','','','','','','','Y','','','Y','','','N','Y',NULL,'nixos did not have support for gdm and Wayland - there is a white screen with error','experiments on raspberry pi ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'look @ nix answer','nothing ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2095,NULL,3,'en','345799167','A2','A4','fem','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Recommendation by a colleague.','Y','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Maintaining reproducible builds (declarative pinning/patching/bundling software).','Project specific developer environments (using different toolchain versions via nix-shell).','Declarative system setup (via NixOS/home-manager).','','Bash scripts, (frequently outdated) text files with instructions, and prayer.','','','','Y','','','','','Y','','','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Recommendation by a colleague. I never had a satisfying dotfile management and hated bringing up new machines. The idea of NixOS sounded very promising (and hasn\'t disappointed me so far).','Y','','Y','Y','','','','Declarative description that can be shared among multiple machines.','The quite painless ability to mix stable, unstable and custom packages and modules.','Being able to search and then copy configuration snippets from other NixOS users on github.','','Ubuntu/Fedora','Y','Y','','','','Y','krops','','','','i3','home-manager','',''),(2096,NULL,1,'en','1347553810','A2','A3','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2097,NULL,2,'en','1985147600','A2','A5','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I first tried NixOS because I wanted an easy way to manage what was installed on my desktop and laptop computers and wanted to be able to keep them in step. I then fell in love with the whole philosophy behind NixOS and the ability to add and remove packages cleanly and to manage configurations explicitly and being able to use nix-shell for development.','','','','','','','Y','','','','','','','Y','Y','','','Y','','NixOS for declarative configuration','Nix-shell for development environments','Nix package manager','The documentation is great but still unclear in some areas such as Home Manager which doesn’t feel like part of the core functionality (maybe it isn’t!). And Flakes still baffle me but I am still fairly new to it all.\r\n\r\nMaybe some official screencasts would help with on-boarding.','Fedora (I like Gnome) and a lot more manually created notes about setting things up.','','','','','','','','','','','','','','','','','','','','N','Lack of familiarity so far. Although I want to update Espanso’s package so that is a good incentive to get into it all.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2098,'1980-01-01 00:00:00',5,'en','1624696456','A6','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','','','','','Y','','','','','','','Y','Y','','','Y','','boot into different generation, no need to worry about package breaking system','declarative config','many packages available','Replace Nix language with something better','arch','','','','','','','','','','','','','','','','Y','','','','N','nix language is hard to learn','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','','','','','','','','','Replace Nix with better language','','Y','','','','','','','','','','sway','NUR','','keep up the good job'),(2099,NULL,1,'en','40983518','A1','A2','-oth-','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2100,NULL,NULL,'en','1839895954',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2101,'1980-01-01 00:00:00',5,'en','477672192','A5','A2','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','To standardize reproducible development environments. At work, we desperately needed a way to keep dependencies consistent for developers on any given project. Those environments needed to be easy to create, manage, and be fully reproducible. I had previously tried several other options: docker, brewfile, shell scripts. Nix beat out all of them while adding even more benefits with nix-darwin and home-manager. Nix flakes have made the technology incrementally adoptable and opt-in which has made it extremely easy to sell. I am now working to bring Nix support to more projects within the organization. The response is positive so far!','Y','','','','Y','','Y','','Y','','','Y','','Y','Y','Y','Y','Y','','nix shell / nix run','Flakes for creating packages and project-specific development environments','System configuration','Better DX. The Nix language desperately needs types (or very rich LSP), better errors, and an easier way to debug when developing.','Containers with existing package managers. Also, I\'d be sad :(','','','','Y','Y','','','','','','','','','','yarn2nix (in nixpkgs)','Y','Y','','','N','The process seems quite complex and difficult to do. Developing nix packages always feels very brittle due to the poor debugging experience. I would not feel confident contributing until the DX tooling has improved.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','After experiencing nix-darwin, I was curious to see what NixOS would be like. I installed it on my Framework laptop and was seriously impressed with how easy it was to get a quick install up. Though, after that it took (and continues to take) quite a whole to dial in all of the configuration for my environment. However, I absolutely love it and don\'t think I could ever go back. As far as I\'m concerned, NixOS is the only OS that totally *gets* it. Package management, configuration, testing out new programs before installing, reproducibility, etc. So many killer features that makes it feel like all other operating systems should feel ashamed for not having.','Y','','Y','','','Y','','Flake support','Package and package plugin installation + configuration for those packages','Process management configuration (systemd / launchd)','Support for process management with something like \"nix run\" that is built into flakes. Some projects require a service to be spun up in order to develop. Adding some way to include this in the development environment would be a huge boon for productivity and make it even easier for developers to jump into new projects.','Arch. Again, I would be extremely sad. NixOS stands far and away the best OS I have ever had the pleasure of using.','Y','','','','','','','Y','','','Sway','Lorri, nix-prefetch-git','','Nix is outstanding; it gets so many things right. Thank you all for the hard work ❤️'),(2102,NULL,NULL,'en','122965036',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2103,'1980-01-01 00:00:00',5,'en','22605856','A2','A4','male','','','','','','','','','Y','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I need very different environment for my development projects. Installing all possible dependencies into single system was not feasible in the long term. Having an option to define environment in shell.nix of each project is great. That\'s where the Nix has won me.','Y','','','','','','Y','Y','','Y','','','','','Y','','','Y','','declarative environment','reproducibility','keeping close to upstream, upstreaming all changes, not carrying distro-specific patches','I\'d add more people doing the PR reviews :-)','not sure tbh :-)','','','','','','','Y','','Y','','Y','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A4','','Y','','','Y','','','','','','','','','Y','','','','','','','Y','','','','','',''),(2104,'1980-01-01 00:00:00',5,'en','1004501636','A2','A3','male','','','','','','','','','Y','','','','','Y','','Y','','Y','','Y','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A colleague introduced it into our software engineering processes','Y','Y','','','Y','','Y','Y','','','','','','','Y','Y','','Y','','Declarative dependencies','Ephemeral environments','Caching','Add: Integrate incremental builds into the workflow','Docker, scripts','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Mostly curiosity. The declarative system configuration seemed tempting, and the ability to rapidly switch between different environments (kernels, custom software, hypervisors) proved very useful.','Y','Y','','Y','','','','Declarative system configuration','Better caching/garbage collection than non-NixOS machines','','','Ubuntu','Y','','','','','','','Y','','','','home-manager, dconf2nix','',''),(2105,NULL,3,'en','1332528471','A2','A2','male','','','','','','','','','','Y','Y','','Y','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','My colleagues had NixOS and I wanted that. It is that simple.','','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Prewritten Modules for common application like Nextcloud','Flakes','The great integration with systemd','','Any Linux Distros with .dotfile repo and stow(for linking)','','','','','Y','','','','Y','','','','','','','','Y','','','N','Did not have a missing package.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Heard it from a colleague.','Y','','Y','','','','','','','','','','','','','Y','','','','','','','I3wm','','',NULL),(2106,NULL,1,'en','1508443802','A5','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2107,NULL,NULL,'en','1973692551',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2108,NULL,2,'en','1831778070','A5','A3','male','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','cabal hell','Y','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2109,NULL,1,'en','680069583','A2','A4','male','','Y','','','','','Y','','','Y','Y','','','','Y','','','Y','','','Y','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2110,'1980-01-01 00:00:00',5,'en','654905551','A4','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2111,NULL,1,'en','1763848583','A7','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2112,NULL,NULL,'en','1287453464',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2113,NULL,NULL,'en','695922715',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2114,'1980-01-01 00:00:00',5,'en','757886505','A6','A5','male','','','','','','Y','Y','','','','','','','','','Y','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Declarative configuration','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','Y','','declarative','feature complete','stable','better documentation, a book, easier/better caching, discoverability','sigh .... containers?','','','','Y','Y','','','','','','Y','','','','cabal, python','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','','','','','declarative','rollback','it just works','docs, docs, docs','','Y','','','','','Y','','','','','','haskell.nix','nixops',''),(2115,NULL,1,'en','589262172','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','Y','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','To sort out our work environment.','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2116,NULL,NULL,'en','346938670',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2117,'1980-01-01 00:00:00',5,'en','1909231625','A2','A4','-oth-','Fuck you and your fucking gender theories','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','NixOS is awesome, and I\'m planning to install it on all my next machines.','','Y','','','','','','','','','','Y','','','','','','Y','','Declarative configuration','Reproducible builds','','1. Add a serious type system\r\n2. Make Nix strictly typed\r\n3. Add an IO monad','OCI containers','','','','Y','Y','','','','','','','','','','','','Y','','','N','I\'ll do it in the next future.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','','','','','','','','','','','Y','','','','','','','Y','','','','','','Please add a type system. I\'m looking at Nickel, but I don\'t see it progressing as fast as it should.'),(2118,NULL,1,'en','1299807607','A2','A5','male','','','','','','','Y','Y','','Y','Y','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2119,'1980-01-01 00:00:00',5,'en','1603830110','A2','A3','male','','','','','','','Y','','','Y','Y','','Y','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Tried to automate my home network with ansible, realised that this is just glorified bash, look for alternatives. Never locked back :) ','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','Y','','Reproducibility ','Declarative dep mgmt for each Project/Enviroment','Rollbacks','Nix flakes stable\r\nNixOps working properly, wtf is this v1 vs v2 shit, honestly. \r\nGradle2nix working properly, takes hours for bigger projects, often broken','','','','','Y','Y','','','','Y','','','','','','gradle2nix\r\nnode2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','same as for nix','Y','Y','Y','Y','','','','Rollbacks','Declarative Dep Mgmt','New Packages','','','Y','Y','','','','','','','','','awesome','','NixOps','Look, Nix(OS) is great. Usage of anything other fells antique. I just took a lot of time to setup/learn it. Still causing some problems with weird 3 party software. But thats a price i am willing to pay!'),(2120,'1980-01-01 00:00:00',5,'en','730288334','A2','A2','male','','','','','','','','Y','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','NixOS seemed kinda cool, so I installed it on my new PC','','Y','','','','','Y','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','N','Lack of knowledge how I would be able to','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','','','','','','configuration.nix','','','','Arch Linux','Y','','','','','','','','Y','','','','',''),(2121,NULL,NULL,'en','1828894621',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2122,NULL,NULL,'en','307156680',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2123,'1980-01-01 00:00:00',5,'en','968470574','A2','A3','male','','','','','','','','','','','','','','','','','','Y','Y','Y','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','','Y','','','','','','Y','','','Y','','Simple experimentation with services (services.foo.enable)','Declarative system configuration','Nix-shell','Better deployment tools\r\nBetter error messages\r\nMore stuff that “just works”','','','','','Y','Y','','','','Y','','','','','','Node2nix','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','Y','','','','','','','','','','Y','','','Y','','','','','Y','','','Home Manager','Nixops ',''),(2124,'1980-01-01 00:00:00',5,'en','1304469882','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','Recommendation from a friend.','','Y','','','','','Y','Y','Y','','','','','','Y','','','Y','','declarative','reproducible','lots of packages','','','','','','Y','Y','','','','Y','','','','','','node2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Recommendation from a friend.','Y','Y','Y','','','','','','','','','debian','Y','Y','Y','','','','','','','','xmonad','','nixops',''),(2125,NULL,-1,'en','1475653545','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2126,'1980-01-01 00:00:00',5,'en','826520839','A6','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Just use Nix for an package manager alternative of homebrew, and then I fallen in love with Nix🥳(currently using nix-darwin, haven’t tried nixos yet )','Y','','','','','','Y','','Y','','','','','Y','Y','','','Y','','Reproductivity','Isolation ','Easy to try new tools ','','','','','','Y','','','','','','','','','','','','Y','Y','','','N','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nix-darwin home-manager flake-utils ','','Thank you so much 🙏🙏🙏'),(2127,NULL,1,'en','1230593758','A5','A2','male','','Y','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2128,'1980-01-01 00:00:00',5,'en','1179783408','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','love declarative configuration','Y','Y','','','','','Y','','Y','','','Y','','','Y','','','Y','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','Y','','','','','','','','','','','','','','','','','','Tow-Bot, home-manager','',''),(2129,'1980-01-01 00:00:00',5,'en','1175077975','A2','A2','male','','','Y','Y','','','Y','','','','','','','','','Y','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','nix-shell','','','Useful compiler error messages.','Scripts, git','','','','','','','','','','','','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','Some sort of classic mode. nix-shell with chroot/mount environment. So that classic applications can find bash at /bin/bash and other hard-coded path just work.','Debian','Y','','Y','','','','','','','','sway','','',''),(2130,'1980-01-01 00:00:00',5,'en','710981264','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It came with NixOS.','','','','','','','Y','','','','','','','Y','Y','Y','','Y','','','','','Improve documentation (e.g. https://ianthehenry.com/posts/how-to-learn-nix/).','Debian, 0install.','','','','','','','','','','','','','','','opam2nix','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','QubesOS didn\'t work with my graphics card.','Y','','','','','','','Building VMs.','Easy rollback.','','Improve documentation.','Debian.','Y','','','','','','','','','','Sway','','',''),(2131,'1980-01-01 00:00:00',5,'en','8636059','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','Qubes','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Curiosity','','','','','Y','','Y','','Y','','','Y','','','Y','','Y','Y','','Declarative','Flexible','Cutting edge versions','Step learning curve 😅','Qubes','','','','','Y','','','','','','','','','','','','Y','','','N','Luck of skills ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Curiosity','','','Y','Y','','Y','','Reproducibility ','Flexibility','Cutting edge','Steep learning curve','Qubes','Y','Y','Y','','','','','Y','Y','Y','','Nix-bitcoin ','','I hope Spectrums will speed up to be production ready 🚀'),(2132,'1980-01-01 00:00:00',5,'en','1463534081','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I needed a declarative configuration management system to manage a park of servers that are deployed in remote and geographically distributed locations, without physical access.','','Y','','','','','Y','','Y','Y','','','','','Y','','','Y','','Declarative configuration management','NixOS can easily be extended and customised to fit use cases','nix-shell for dependency management and ephemeral installation of packages','Static type checking of all Nix expressions prior to evaluation\r\nLinting of Nix code (dead code, unused variables, performance issues, ...)\r\nBetter error messages and tracing','Ansible','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I needed a declarative configuration management system to manage a park of servers that are deployed in remote and geographically distributed locations, without physical access.','Y','','Y','Y','','','','Declarative configuration management','NixOS can easily be extended and customised to fit use cases','','Static type checking of all Nix expressions prior to evaluation\r\nLinting of Nix code (dead code, unused variables, performance issues, ...)\r\nBetter error messages and tracing','Ansible','Y','','','','','Y','','','','','','','NixOps, the need to keep state on a central deployment server was not practical for our use-case.',''),(2133,'1980-01-01 00:00:00',5,'en','849271220','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','Some coworkers were trying to find something better than a custom cobbled together chef setup that the company currently had. I wasn\'t particularly sold on it, but after working through some simpler environments with nixops and deployments and building software, I continued using it more in and out of work, eventually replacing my existing ubuntu machines with nixos.\r\n\r\nnix is more robust for me than the (at the time, popular) puppet/chef/ansible tools I started on. I started on freebsd and was accustom to rc.conf and when I used linux more, it felt like a downgrade. configuration.nix brought that all back and and is the rc.conf that i\'d always wanted.','Y','','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','','Y','','strict dependency management','cross platform support for macos + linux.','reliability.','I really wish that flakes were not touted as a \'must have, must use\' feature when the spec and documentation is unstable/experimental.\r\nLighter memory requirements, but that only affects me on home/small vm sized machines.','Custom shell scripting with a lot of containers.','','','','Y','Y','','Y','','','','','','','','bundix, yarn2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','It began as an experiment in a company to replace the custom chef machinery. We used nixops to deploy machines to AWS since the company was working physical to cloud migration and the existing tools were clumsy and hard to setup and maintain. Nixops, despite its faults at the time, did the job.','Y','Y','Y','Y','','Y','','dependability','reproducibility','stability','a better story for secrets management.','bash scripts and containers','Y','','','','Y','Y','','','','','','hydra\r\n','nur, nixops','hope this helps. thanks to everyone for putting in the work to make the project as good as it can be with the resources we have.'),(2134,'1980-01-01 00:00:00',5,'en','2136083030','A2','A3','male','','','','','','Y','Y','Y','Y','Y','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','Y','','','','','','','','Y','','','Y','','','','','','','awesomewm','','',''),(2135,NULL,2,'en','1553775522','A2','A5','male','','','','','','','','','','Y','','','Y','','','','','Y','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Reflex Dom ghcjs cross compiling','Y','Y','','Y','Y','','Y','Y','','','','','','Y','Y','Y','Y','Y','','Deterministic builds','Powerfull nixpkgs for setting up a server','Shared configurations, Haskell development ','Haskell.nix should replace cabal2nix','Arch Linux, debian','','','','','','Haskell.nix','','','Y','','','','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2136,'1980-01-01 00:00:00',5,'en','726897015','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I had been aware for a long time, but could never find time to try. A coworker pushed me to invest the time to learn. home-manager got me absolutely convinced.','','Y','','','','','Y','Y','','','','','','','Y','Y','','Y','','syncing and versioning my machine configuration','reproducible dev environments','robust build automation','- Stabilize flakes\r\n- Remove nix-env\r\n- More consistent docs story\r\n- Built-in versioning in nixpkgs (\"I want software x version y\" type use cases)','Guix, debian packages','','','','Y','Y','','','','','','Y','','','','.','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I started using home-manager and loved it. I wanted to extend the same mechanism to managing the whole system.','Y','','','','','','','Consistency between my machines','Safe upgrades with rollbacks','Centralized and version controlled system management','A documented canonical way to use flakes for system configuration','Ubuntu','Y','','','','','','','','','','sway','direnv','',''),(2137,'1980-01-01 00:00:00',5,'en','1151787578','A2','A3','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','All the technical innovations','Y','Y','','','Y','','Y','','Y','Y','Y','','','','Y','','','Y','','Flakes','Nixos','Flexibility','Types and better errors for the nix language\r\nNickel?','Debian','','','','Y','Y','','','','','','','','','','Crate2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Amazing technology and broad and up to date packages','Y','','Y','Y','Y','','','Flakes','Nix-container','Flexibility','','Debian','Y','','','','','','','Y','','','','Home-manager','','Thanks!'),(2138,'1980-01-01 00:00:00',5,'en','1628980451','A2','A2','-oth-','agender','Y','Y','','','Y','Y','','','','Y','','','','','','Y','Y','','Y','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','hackability','reproducibility within a functional paradigm','approachability (relative to the sheer scale of the project)','I would add better strategies for evaluation caching (since that is the most CPU-intensive part of a build, even though it can often arrive at similar results across runs). I’d also improve the UX of flakes / the nix3 CLI by making the flake argument optional in all circumstances (cf. nix-dram).','I would be in deep trouble for sure. I would probably switch to existing DevOps technologies such as Ansible, and make better use of Docker containers (however much of a resource hog they are).','','Y','Y','Y','Y','','Y','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Was distrohopping. Found out about NixOS’ great features, including a centralized configuration and declarative, “top-down”, reproducible package management. So I took the plunge.','Y','Y','Y','Y','','','','top-down declarative configuration','reproducibility, including the ability to build the configuration elsewhere, inspect it for correctness, and even give it a spin in a VM','rich set of packages and projects ','I would improve the documentation, especially surrounding flakes (it’s not very clear how to convert your existing NixOS configuration into a flake attribute).','Arch Linux is my second choice because of its “free form” nature, but nothing really comes close to NixOS’ flexibility.','Y','Y','','','','Y','','','','','currently: hikari; previously, i’ve cycled between sway, herbstluftwm. if I had to pick between the above, it’d be KDE Plasma','','',''),(2139,'1980-01-01 00:00:00',5,'en','279185340','A1','A4','-oth-','','','','','','','','Y','Y','','','','','Y','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I don\'t like ansible. ','','','','','','','Y','','','','Y','Y','','','Y','Y','','Y','','Declartive','reproducible results ','','Documenation needs to be more consistent','Arch','','','','Y','','','','','','','','','','','','','','Y','','N','Need more experience first ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I didn\'t like ansible and using nix on arch complicated things compared to that nixos is easier','Y','','','','Y','Y','','Declarative ','Cached','Remote deployment ','Consistent documentation','Arch','Y','Y','','Y','Y','','','Y','','','sway','','','Try to write documentation without slang. Define terms. '),(2140,'1980-01-01 00:00:00',5,'en','1097419495','A2','A2','-oth-','trans non-binary girl','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend used it and told me about it (they\'re a nixos committer).','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Declarative system management','nix-shell','reproduceable builds','','Arch Linux + Pacman','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend used it and told me about it (they\'re a nixos committer). I really liked the idea of reproduceability of systems and wanted to try it out (coming from Ansible)','Y','','Y','Y','','','','Declarative system Management','Reproduceability of systems','','','Ansible','Y','','','Y','','','','','','','Sway','search.nixos.org','',''),(2141,'1980-01-01 00:00:00',5,'en','1864035912','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','','','','Y','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','I wanted to have a reproducible laptop setup with root on ZFS, and get the latest packages.','Y','','Y','','','','','Reproducible','Good ZFS support','Secure and private due to isolation','I would add better documentation for newer features.','Ansible','Y','','','','','','','','Y','','','','','Thank you for the awesome work! What you have done is just amazing! \\(^o^)/'),(2142,'1980-01-01 00:00:00',5,'en','871287072','A1','A3','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','N','Y',NULL,'lack of time\r\nPoor docs','Better docs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Lack of time\r\nPoor docs','Better docs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2143,'1980-01-01 00:00:00',5,'en','297359320','A2','A4','fem','','','','','','Y','Y','','','','','','','','Y','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','','','','','','Y','','','','','Having reproducible and separated setups of the development environments for the multiple projects I\'m usually working on','Package Manager with a huge package repository and up-to-date packages','','','A combination of other package managers e.g. conda','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','fpletz told me about it :-)','Y','','','','','','','Reproducible and transparent setup for my laptop','Hassle free updates','','','Debian','Y','','','','','','','','Y','','','','',''),(2144,NULL,-1,'en','987189740','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2145,'1980-01-01 00:00:00',5,'en','957714515','A5','A2','male','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y','','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2146,'1980-01-01 00:00:00',5,'en','418683769','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','It sounded like the right solution to package management','','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','Consistent development environments, without different projects conflicting on versions of tools/dependencies','Reproducible builds','Unified package management','Replace the Nix language with one that\'s not garbage.','ghcup/cabal/git','','','','Y','Y','','','','','','Y','','','','cabal2nix\r\ncallCabal2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Friends were using it and it seemed cool','Y','','Y','','','','','Stateless installation','Managing multiple machines under unified configurations','Easy integration with Nix','Create a standard way to separate the \"general configuration\" from the machine-specific details like disk UUIDs.','Guix or Arch','Y','','','Y','','','','','Y','','','haskell.nix','spago2nix','Flakes are a comonad'),(2147,NULL,NULL,'en','1757184138',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2148,'1980-01-01 00:00:00',5,'en','1893252230','A5','A2','fem','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','community projects ','A2','Friends were pretty pushy about trying it, eventually gave into the peer pressure and tried nixos as a secondary install.','','','','Y','Y','','Y','','Y','','','','','','Y','Y','Y','Y','','declarative management of builds, projects, and environments together in a unified way that lets me easily compose them together','`nix run`, allowing for quick testing of ideas','easy system configuration with nixos and home-manager ','I\'d add better docs, and make the language somewhat typed so that there\'s much less ambiguity without reading the source ','guix, possibly writing my own nix','','','','Y','Y','','','','','','','','','','cargo2nix','Y','Y','','','N','It\'s a pretty large project and the idea of maintaining a package (or multiple packages) may be a little more energy consuming than I\'d like.\r\n\r\nI\'d rather have a flake that I maintain separately with all my packages people could use if they needed.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Same reason I started using nix, friends eventually pressured me into trying it.','Y','','Y','','','','','Same as nix','Same as nix','Same as nix','better install process, better docs explaining some common patterns, the docs explaining some common issues more clearly (ex. if a hydra build fails your system may start to build the packages from source, and how to avoid that)','guix','Y','Y','','','','','','Y','','','','I use flake-utils, and flake-utils-plus for most flakes I write ','','Nix is really great and so is nixos.\r\nI think the largest problems with it at this point would be all the legacy debt it\'s incurred and the lack of proper docs.\r\nThe community has been making a lot of great progress in docs but it\'s not always obvious where to look for docs, and there\'s a sort of divide in some docs between flakes and normal nix.\r\nI\'m sure you all are aware of the docs and are working to improve that.\r\nI\'m not really involved in the community at all and only found this survey by chance.\r\nAlso forgot to mention but I really wish there was a native nix of sorts for windows.'),(2149,'1980-01-01 00:00:00',5,'en','1420394588','A5','A2','-oth-','Trans woman','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Well, I\'m a self-taught Haskell developer. As you might know, Haskell has it\'s own special ecosystem for project builds (cabal, stack, plain ghc). Getting all of those tools working on Arch was a big pain. I tried using ghcup (https://www.haskell.org/ghcup/), but it proved to be a very brittle system. When looking at online at all the ways others handled this issue, I found that Nix + Haskell seemed like the best option. \r\n\r\nI also remember hating the fact that my system\'s build wasn\'t reproducible. Every time I got a new computer I\'d have to copy over a ton of different config files from a bunch of different locations on my hard drive to the new machine. I would also have to reinstall all my programs with pacman. It was not fun.\r\n\r\nBecause of these two major issues, I switch to Nix and NixOS at the same time. I would have used GuixSD instead, but at the time I was switching distros, my daily driver\'s wifi chip used an unfree driver. Since GuixSD only allows you to use free drivers, it was clear that NixOS was the only right choice.','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Declarative system management via NixOS','Declarative environment management via nix-shell','nix-build',' I\'d make nix flakes the default way of packaging things in nix. Also, I\'d convert ALL the legacy packages in nixpkgs to flakes.','GuixSD','','','','Y','Y','','','','','','','','','','N/A','Y','Y','','','N','There is no software that I care to add to nixpkgs and I don\'t know the Nix expression language well enough to update the packages that I do use.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','If you read the story about why I switched to Nix, I cover it there.','Y','','','','','','','Declarative system management','Easy to use installer','','','GuixSD','Y','','','','','','','','','','xmonad','N/A','N/A','If you want to look at my current system config, it is hosted here: https://github.com/IQubic/nixos-config'),(2150,'1980-01-01 00:00:00',5,'en','1384220212','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','Engineering manager','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','I started using Nix because I started using NixOS. Nix by itself wasn\'t my original interest.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','Reproducible dev environments','Binary caching of source packages','Ability to easily override \"system\" packages','More type checking and better error messages.\r\n\r\nA cleaner abstraction (in the docs) between how Nix works and how I can use it to accomplish my actual goals.\r\n\r\nContent addressability!\r\n\r\n/opt/nix. :|','Guix. ;) (That\'s a joke. I assume the spirit of the question means no Guix, either.)\r\n\r\nFor home systems, I would probably use an ugly mess of custom bash that only accomplished 10% of what I can do with Nix.\r\n\r\nAt work, I already use Ansible and Docker, and I would rely on them more. ','','','','Y','','','','','Y','','','','','','callCabal2nix\r\n\r\nnode2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was tired of rebuilding my Linux systems from scratch every time I need to do a major OS upgrade. I was also intrigued by the lazy functional Nix language.','Y','Y','Y','Y','','','','Painless major version upgrades','Identical OS configuration across multiple devices','A huge set of tested packages to install','','Vanilla Ubuntu','Y','','','','','','','','','','notion window manager','Nixpkgs. One can hardly use Nix or NixOS without being confronted by it. Pros: it\'s very easy to contribute to NixOS! Cons: it\'s daunting, under documented, and uses a variety of techniques to do the same thing (because different people are contributing to different parts).','I haven\'t even *tried* the experimental features because I value stability in my tools. However, there are a lot of features in Nix that have been marked \"experimental\" for the whole time I\'ve been in the ecosystem. I wish they would just get mainlined.',''),(2151,NULL,1,'en','740854527','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','ChromeOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2152,'1980-01-01 00:00:00',5,'en','925859032','A5','A2','fem','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I needed to use some SDR software, and it wouldn\'t work on my system cause libraries were too new, a friend told me I could use nix-shell to create a shell with older versions.','','Y','','','Y','','Y','','Y','','','Y','','','Y','Y','','Y','','The ability to have environments with completely different packages','The ability to configure the whole system from a single file','','I don\'t know enough about Nix yet','chroots and bash scripts','','','','','Y','','','','','','','','','','','Y','','','','N','The packages I would contribute are complete hacks, and small forks of bigger projects that don\'t have a nixpkg yet.','N','N','I\'m not ready to move to NixOS just yet, I just started using Nix.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2153,'1980-01-01 00:00:00',5,'en','2012200785','A2','A2','male','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A2','I started with NixOS, and nix just came with it','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Reproducible development/project-specific shells','Being able to run programs \"without installing them\" and without them hanging around forever','A single language to describe all/most of my builds and configurations in','','Probably a variety of built tools on their own and globally installed tools that hopefully work together','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I was trying to find a good way of keeping my two computers configuration in sync','Y','','Y','','','','','The whole system configuration can live in git','Many modules in nixpkgs/home-manager making setting new things up often quick and easy','Rollbacks of the whole system configuration','Making modules more (easily) extensible - like modifying the configs or systems services generated by a module','Probably still Arch with a tool like chezmoi to manage my dotfiles','Y','Y','','Y','','','','','','','sway','home-manager, nix-direnv, emacs-overlay','lorri',''),(2154,NULL,1,'en','215207301','A6','A3','male','','Y','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2155,'1980-01-01 00:00:00',5,'en','738417','A6','A2','male','','','','','Y','','Y','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A3','Running into problems getting everyone the exact environment I wanted.','','Y','','','','','Y','Y','','Y','','','','','Y','Y','','Y','','Binary caches (substituters)','Reproducibility','Large package repo (nixpkgs)','','Docker, (implying Nix doesn\'t exist means Guix won\'t exist also)','Y','Y','','Y','Y','','Y','','Y','','Y','','','','https://github.com/nix-community/poetry2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A3','Same reason as Nix.','Y','Y','Y','Y','','','','Generations','Ability to deploy the same configuration fast','Tight integration with Nix','','Fedorsa Silverblue','Y','','','','','','','','','','Sway, XMonad','nixpkgs-wayland, nixpkgs-review','niv','Thanks!'),(2156,'1980-01-01 00:00:00',5,'en','1121088831','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','The idea of NixOS appealed to me and it turned out very usable. From there I dug deeper into nix and attended a few nix Meetups and conferences.','Y','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','Reproducibility','Stability','Ease of use for student developers (i.e. telling them just to install direnv and then their dev env is set up)','Static typing -> better error messages','Probably nothing. I.e. back to setting things up by hand','','','','','','','','','Y','','','','','','builtin cabal2nix','Y','','','own repo with additional packages','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Appealed to me and turned out to be stable and usable.','Y','','','','','','','Stability','Modules for easy configuration','Declarative system setup','Easier setup for single board machines like rPi','Probably back to Arch','Y','','','','','','','','','','xmonad','','',''),(2157,'1980-01-01 00:00:00',5,'en','1166228116','A5','A3','male','','','','','','','','','','','','','','Y','Y','','','Y','','','','','','','Content Creator','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Linux Unplugged Episode #451 Chris Fisher sold me on it','','Y','','','','','','','','','','','Desktop','','','','','Y','','Reproducibility','','','','package lists for flatpak','','','','','','','','','','','','','','','','Y','','','','N','My newness to the packaging, but I do plan to start porting some tools to Nix packages','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Chris Fisher sold me on running it on server, but I\'ve gown to love it on my desktop','','','Y','','','','desktop','Reproductivity','','','I would make the nixos.wiki website an official wiki','Gentoo','Y','','','','','','','Y','','','dwm','flakes','','I\'m a content creator and am working on a series of videos specifically about NixOS'),(2158,NULL,1,'en','521409830','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2159,NULL,1,'en','1531611601','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2160,NULL,NULL,'en','1688486418',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2161,NULL,1,'en','1866834990','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2162,'1980-01-01 00:00:00',5,'en','1556190839','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I have a few laptops and a desktop workstation at home and in the office. I love to customize my development environment. With NixOS, the same exact configuration just follows me everywhere.','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Reproducible builds','Easy to test different desktop environments','Never needing to re-install everything from scratch ever again..','Would add perfect and easy to use documentation for nixpkgs and all its functions.','Arch Linux or GNU Guix probably','','','','Y','Y','','','','','','Y','','','','https://github.com/svanderburg/node2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I run many desktop computers. I like to customize everything. NixOS lets me to do that and e.g. replace a new SSD to the machines: I\'m back to business in less than an hour with the EXACT SAME CONFIG.','Y','','','','','','','Basically same what I answered in the previous section.','Basically same what I answered in the previous section.','Basically same what I answered in the previous section.','Again, a searchable nice easy-to-use nixpkgs documentation.','Arch Linux, GNU Guix','Y','','','Y','','','','','','','Sway','https://github.com/Mic92/nix-update/','',''),(2163,NULL,2,'en','1605755188','A2','A2','male','','','','','','','Y','','','','','','Y','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','A friend at my local university IT club presented the capabilities of Nix and NixOS to us in a 2 hour course. Coming from a functional programming background, it looked wonderful! Some weeks later, my laptop died, so after getting a backup, I installed NixOS cold turkey. I spent a whole week just configuring the nix-config and home-manager. After writing a fair bit of nix config and nix expressions, I went on to installing it on my home server, packaging some programs (including some school projects which made gitlab pipelines trivial), and today I\'m using it almost daily.','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Purity and reproduceability of software and dependencies.','Declarative configuration of a whole system.','Ease of configuration with nix modules','Add lots and lots of documentation and examples.\r\nA more standard interface for dealing with dependency management in different languages (figuring out dependency management in javascript and dart/flutter was one of the hardest challenges with nix i\'ve hit yet)\r\nAdd some more lib functions (like imap1attrs, splitMap, words)\r\nBetter error logging.','I\'ve heard that Guix is quite similar, but honestly I would probably end up making my own system for handling dotfiles and use something like arch.','','','','Y','Y','','Y','','Y','','','','','','npmlock2nix https://github.com/nix-community/npmlock2nix\r\nnode2nix https://github.com/svanderburg/node2nix\r\ncallCabal2nix (from nixpkgs)\r\npub2nix https://github.com/paulyoung/pub2nix (through nix-dart https://github.com/tadfisher/nix-dart) \r\nmvn2nix-maven-plugin https://github.com/NixOS/mvn2nix-maven-plugin\r\npoetry2nix https://github.com/nix-community/poetry2nix','Y','Y','','','N','I haven\'t gotten around to it just yet. I\'m planning to package some more stuff before I start adding pull requests.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','See the previous Nix story. It\'s mostly the same','Y','Y','Y','','','','','','','','','','Y','','','','','','','','','Y','Xmonad',NULL,NULL,NULL),(2164,'1980-01-01 00:00:00',5,'en','947983425','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Declarative package management sounds awesome - as a security conscious engineer, moving toward everything being declarative and reproducible is a valuable pursuit.','','','','','','','Y','','Y','','','','','','Y','','','Y','','Wide variety of inbuilt services (eg. Tarsnap)','Great ability to add / modify packages with overlays, flakes, etc.','nix-shell for experiments','I\'ve often wondered if the scripting / configuration language could be made more comfortable for imperative programmers like me.','FreeBSD or Gentoo.','','','','','','','','','','','','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was an old school Gentoo user / dev, and FreeBSD user, and find that NixOS provides me much of the same customization, but much improved ability to move configuration between systems efficiently.','Y','','Y','','','','','Declarative system configuration -- so much lighter weight than something like chef, but for my personal projects gives me much of the same benefit of configuration stability and migration.','NixOS containers','Lightweight installation (run more on less hardware)','I\'d improve the handling of switching to new configurations, especially as it relates to networking services. I have amorphous issues where sometimes on upgrades my containers lose parts of their complex networking setup.','Gentoo or FreeBSD, maybe Arch','Y','','','','','','','','','','xmonad','','','Thanks!'),(2165,'1980-01-01 00:00:00',5,'en','1832566023','A2','A4','male','','','','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','','','','','Y','','Y','','','','Router','','Y','','','Y','','My ENTIRE system config is a few files in Git.','Reasonably up-to-date packages. ','I love that for pretty much every option I can go to the web page and search it. ','The Nix config language itself sucks, I always have to look things up. ','','','','','','','','','','','','Y','','','Drone','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','System-as-a-config, up-to-date packages , no-drama-non-political community. ','','','','','','','','See my earlier answers for \"Nix\". Frankly I don\'t know what difference between these is, I only consciously use NixOS ...','','','','Before I used Nix: Still use Ubuntu. Now ... I\'d probably cry a lot. ','Y','','','','','','','','','','','','',''),(2166,'1980-01-01 00:00:00',5,'en','1925286757','A2','A5','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','N','Y',NULL,'Too time intensive to work my way into it','Having a block of free time to focus on it.\r\nProbably better tools.\r\nBetter concept documentations for an easier start.\r\nSimple use-cases as a hands-on example to try the first commands and packages (how to install Firefox, How to use Nix as guest on a different OS)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Great work! :)'),(2167,'1980-01-01 00:00:00',5,'en','860185984','A6','A3','male','','Y','','','','','Y','','','','','Y','Y','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was afraid to to update my machine (ubuntu+nvidia+time-critical project) and didn\'t want to live that way ever again','','Y','','','','','Y','','Y','','','Y','','','Y','Y','Y','Y','','Atomic rollbacks','Declarative configuration','snadboxed package builds','The Nix language. It is very unintuitive to learn and use','Guix, or ansible/puppet','','Y','','Y','Y','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','','Y','','Declarative config','Atomic risk-free rollback','(mostly) single abstraction layer over (almost) everything in the system','Nix is too damn slow, and makes network calls to download every input (nixpkgs + someties other), then spends time parsing it. Even if --offline is provided. Nix should *only* make network calls when it *absolutely needs*, not just in case.','GuixSD','Y','','','','','','','','Y','','','emacs-overlay\r\n\r\nnixpkgs-unfree\r\n\r\ncachix','nix-doom-emacs',''),(2168,'1980-01-01 00:00:00',5,'en','325647203','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','N','Been meaning to try it. Just been busy and it feels like there is a lot involved with switching\r\nIt\'s possible that better beginner-targetted documentation and examples could help it feel less daunting',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Already mentioned lack of time to dedicate to it and that the switch feels daunting',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2169,'1980-01-01 00:00:00',5,'en','512962289','A2','A4','male','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','The idea of nix was interesting, I stayed because my system never broke.','','','','','','','','','','','','','','','Y','','','','','stable system with some unstable/more up-to-date packages','it\'s easy to try things out thanks to nix-shell','','The system is too complex. The documentation is not good and it is difficult to do something like packaging. There are to many details and things someone has to know to get it right. It is possible, but usually only with a massive time investment. Even after using NixOS for some years I don\'t know how to install my own package system wide.','openSUSE Tumbleweed','','','','','','','','','','','','','','','','Y','','','','N','Building packages is too complicated.','Y',NULL,NULL,NULL,NULL,'A1','','','','','A3','','','','','','','','','','','','','','','','','','','','','','','','sway','','','I love the overall idea of Nix, but without good documentation or a right way to do X (not the current \"do what you want, you have 1000 ways to do it\"), I don\'t think it will attract a lot of people.'),(2170,NULL,1,'en','2020788958','A2','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2171,NULL,1,'en','441495826','A2','A2','male','','','','','','','','Y','','','','','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2172,'1980-01-01 00:00:00',5,'en','643293094','A5','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I started using Nix as the way to develop my NixOS-based system. I had to develop a system which needed the performance of a desktop machine, but also interact with hardware devices and specialized programs in a relatively complex setup. It just needed to boot into and run my program, so general usability for the OS wasn\'t so important, but being able to manage all these pieces was. I asked around some communities I knew for software and techniques that might be useful for this, and one of them recommended NixOS. I initially thought it was excessively complex and kind of difficult, but it solved my problems quite well. I eventually grew to love it and have not regretted learning it.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Reproducibility/documentation/immutability/version-control-ability of programs and system setups','Ability to know a program\'s dependencies and easily move them between machines or package them up into files','Easy modification/patching/customization of programs through overriding','My wand would make all graphical applications work perfectly and immediately on non-NixOS distros. Anything which uses OpenGL, CUDA, OpenCL, and in some cases GTK+ (particularly file dialogs for some reason) will install fine but crash instantly on non-NixOS systems due to where the libraries are placed. My wand would also let me easily run NixOS systemd services and add udev rules from Nix packages and such on non-NixOS machines.','Just the package manager lock files, like requirements.txt or Cargo.lock, plus shell scripts where necessary.','','','','Y','Y','','','','','','Y','','','','I don\'t regularly use any.','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A3','I had to develop a system which needed the performance of a desktop machine, but also interact with hardware devices and specialized programs in a relatively complex setup. It just needed to boot into and run my program, so general usability for the OS wasn\'t so important, but being able to manage all these pieces was. I asked around some communities I knew for software and techniques that might be useful for this, and one of them recommended NixOS. I initially thought it was excessively complex and kind of difficult, but it solved my problems quite well. I eventually grew to love it and have not regretted learning it.','','','','','','Y','','Reproducibility/documentation/immutability/version-control-ability of programs and system setups','Ability to know a program\'s dependencies and easily move them between machines or package them up into files','Easy integration of a wide variety of programs and services','I wish some parts of the configuration, in particular network configuration and hostname, could be optionally removed from the system definition. At least how I use it, it\'s a bit of a headache for each of my machines with a particular system to need their own configuration that\'s only different in the hostname, and it complicates transferring system definitions and stuff. Plus a magic manual which always explains what I want to know','Based on how other people use and describe it (I haven\'t ever tried it myself), probably Docker or a similar container system. I use containers semi-regularly but only as lightweight VMs, so I understand Docker would offer the automated generation and immutability I turned to Nix for.','Y','','','','','Y','','','','Y','LXQt','Probably my favorite Nix-adjacent site, which I\'m not sure many people know, is https://search.nix.gsc.io/ . I also use home-manager for my deployed NixOS systems to keep some of the user-specific configuration under Nix\'s control. I regularly use https://github.com/guibou/nixGL which solves OpenGL-related problems, but is a bit annoying to keep up to date and remember to use properly.','Can\'t think of any.','So I know Nix not having documentation is a bit of a meme that I\'ve brought up in some of my other responses, and to be honest I do feel docs lacking in some important places (though I\'ve worked out how to cope with https://search.nix.gsc.io/ for instance), but I did some thinking and what I really feel scares people away from Nix is an abundance of new concepts that really need all this documentation. The memes further say Arch is hard and requires lots of documentation, but they love its wiki. And what its wiki has is lots of step by step tutorials and solutions for specific problems that are all easy to find and follow.\r\n\r\nMany people, myself included, don\'t really like sitting down to read something from top to bottom all that much, but that\'s what Nix demands. I remember asking the person who first recommended NixOS to me where was a simple step by step walkthough to just do what I wanted without having to learn all about everything, and they said such a thing doesn\'t really exist and wasn\'t a good thing even if it did (spoiler alert: they were right). I did eventually do the Nix Pills, but did not really understand them at the time, and for someone who isn\'t already fairly certain that Nix does what they want, they are quite complex and off-putting. In the beginning, they didn\'t even really help and I was just left nonplussed. I eventually had a number of \"ah-hah!\" moments working with Nix where I was able to see a particular concept in action, recall the lesson from the pill, and actually feel like I understood that aspect, but it took at least a year for all the pieces to finally fall into place in my brain. It\'s worth nothing this was a year of using Nix for productive work, not just being focused on learning it. On the other hand, I\'m not sure these concepts can really be learned without having a practical problem to apply them to, so it may not be possible to accelerate this learning.\r\n\r\nThis is ultimately why I find it difficult to sell Nix to my co-workers and friends. Most are engineers and academic researchers who aren\'t super comfortable with Linux and the command line in the first place, but know a bit and are curious and willing to entertain unusual ideas. I imagine myself saying to them \"you should use Nix, it\'s great!\" and they ask \"why is that?\" and I can say some buzzwords like \"it\'s declarative, pure, reproducible!\" and they go \"okay, how do I get started\" and I start off \"well, first you have to understand the difference between and interactions among Nix the OS, Nix the package manager, Nix the package collection, Nix the language, Nix the command line tool, Nix the daemon, Nix the store (and remember that half the people who say these things don\'t fully understand this and the other half are not good about clarifying)\" then continue rambling \"so you\'ve got derivations and expressions and generations, not to mention evaluations, instantiations, and realizations, ...\". \r\n\r\nThen I feel compelled in good conscience to admit \"and once you switch to Nix, no copy and paste tutorial will work, all software will be incompatible, and you\'ll be fighting everything the whole way\" because in research everybody expects you to just copy and paste their instructions into a fresh Ubuntu 18.04 machine and pray nothing explodes, or if you\'re real lucky, use their particular flavor of tool that solves these problems in ways substantially inferior to Nix, like Docker or lockfiles. For me it\'s not hard to translate these types of instructions and really reap the benefits of Nix, which is why I keep doing it, but how do I effectively communicate that it\'s worth it? Sadly, I genuinely feel like the average Nix user needs to understand these things to really use Nix effectively, but it\'s quite crazy to actually expect them to want to or be able to from scratch. If you don\'t want to dive all the way in and instead want to install Nix on a different distro, half of Nixpkgs (like accelerated graphical stuff, and system services) will be inaccessible to you or have to be hacked around (yet more concepts you need good understanding of!).\r\n\r\nIt would be nice to have some sort of advice for y\'all here to change things up and solve these problems, but I don\'t really have anything. Nix\'s willingness to throw out conventional wisdom and restructure the software planet in this radical way really is what gives it its power, and, now on Nix\'s side, I don\'t want to give it up! But getting over to its side was not easy. I admit I am a bit of a black and white thinker, so maybe I am pessimistic about my co-workers and overestimate what\'s required. I\'m not sure I\'ve seen anyone comment on this \"concept overload\" problem before though, and wanted to share these thoughts.\r\n\r\nReally, my magic wand from the previous sections would teach people all these things, and give them their own magic wand for them to teach others.\r\n\r\nOne thing I am grateful for from NixOS is that it\'s probably the largest open source community I\'ve felt like I am a part of. PRs move rapidly and are still a bit intimidating, but I feel they are a friendly way to get started with open source.'),(2173,NULL,NULL,'en','793900762',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2174,'1980-01-01 00:00:00',5,'en','2044080833','A5','A5','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','','','','Y','Y','Y','','','N','N','Currently trying it, not a regular user though',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2175,NULL,4,'en','442346485','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(2176,'1980-01-01 00:00:00',5,'en','427384175','A5','A3','male','','','','','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','Introduced by Michael at D. E. Shaw.','','Y','','','','','Y','','Y','','','Y','','Y','','','','Y','','access to newer package versions than in apt/yum','side-by-side package version installs','ability to quickly roll back bad package upgrades','Easier-to-use CLI tools (a la nixpm)','Standard Linux package managers such as apt/yum','','','','','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','Learning immutable infrastructure with Raspberry Pis','','','Y','','','Y','','immutability/reproducibility','','','','Arch/Debian/CentOS','','','','','','','','','','','','','',''),(2177,NULL,NULL,'en','756981559',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2178,'1980-01-01 00:00:00',5,'en','608645066','A5','A3','male','','','','Y','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','N','Interested in the security, reliability, and reproducibility/portability that NixOS could offer. The biggest open question is how well virtualization/isolation works and if a QubesOS like multi-environment setup can be achieved ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','exploring if qubes type isolation is possible with added benefits of reproducibility/portability of declarative build configs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'would like to explore nix bitcoin https://nixbitcoin.org/','none yet','NixOS, and reproducible builds in general, seems really cool. If there was a way to merge QubesOS and NixOS that would be amazing'),(2179,'1980-01-01 00:00:00',5,'en','2064895296','A1','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','','','- Add kind error messages\r\n- Add a way to fetch github private repositories by nix-prefetch-git (used in haskell.nix)','docker + shellscript','','','','Y','','','','','','','Y','Y','','','https://github.com/input-output-hk/haskell.nix','Y','','','','N','I\'m still learning nix','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'haskell.nix','',''),(2180,'1980-01-01 00:00:00',5,'en','1255159139','A2','A3','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It\'s been a hype in my local hackspace for several years now.','','Y','','','','','Y','','Y','','','Y','','Y','Y','','','Y','','Managing my machines and home environments in a declarative manner with NixOs and HomeManager.','Creating and sharing development environments.','Reproducible environments with nix flakes.','Make nix flakes stable','Debian (that\'s what I used before)','','','','','Y','','Y','','','','','','','','https://github.com/kolloch/crate2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It\'s been a hype in my local hackspace for several years now.','Y','','Y','','','Y','','Managing my machines and home environments in a declarative way with NixOS and HomeManager','','','','Debian','Y','','','','','','','','','','Sway','Nix flakes','','Thank you!'),(2181,NULL,NULL,'en','838280980',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2182,'1980-01-01 00:00:00',5,'en','257419640','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Switched to haskell for development at work','','Y','','','Y','','Y','','','','','','','','Y','Y','Y','','','binary cache','shell','build docker images','replace nix programming language with something less dynamic\r\nimprove cache download parallelism and per cache priorities','docker','','','','','','','','','Y','','','Y','','','https://github.com/input-output-hk/haskell.nix\r\nniv','Y','','','','N','no need at the moment','Y',NULL,NULL,NULL,NULL,'A2','','Y','','on my framework laptop','A1','experimenting with new laptop','','','','','','','laptop','boot to generation\r\n','binary cache\r\n','reproducible system if hardware is dead','','archlinux','Y','','','','','','','','','','i3','direnv\r\n','home-manager',''),(2183,'1980-01-01 00:00:00',5,'en','1887240585','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Saw video from DistroTube YouTube channel which piqued my interest. Before that I used to use arch and have had multiple times when I have had to reinstall the system. Each time, I then have to try to remember all the small configuration tweaks that I had done to make the system run as it did. Now with NixOS reinstalling is just a breeze and every time I do some configuration changes I already know that they are going to stay even if I reinstall so I feel like the work on tweaking the small things in the system is also more worth it.','','','','','','','Y','','','','','','','Y','Y','Y','','','','System reproducibility','Huge package library','Config management with home manager','Documentation should be expanded alot.','Pacman','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','','Reproducable system','Config management with home manager','Easy setup of many things with options','I would add comprehensive documentation. Especially, getting started with the OS was quite a struggle. Good thing was that I like challenging myself with computers, so it did not put me down, but I am sure many people cannot even get started with the OS as the documentation is so lacking.','Arch','','','','','','','','','','','Awesome','','',''),(2184,NULL,NULL,'en','1419995415',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2185,'1980-01-01 00:00:00',5,'en','1847800231','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','I started using it through NixOS.','','Y','','','','','Y','Y','Y','','','Y','','','Y','Y','','Y','','Isolated package build environments','Cross-compilation','Declarative development environments','I would create a high quality, stable command line and fix all the bugs in the command line tools (version incompatibilities, remote building problems). I would also make nixpkgs evaluate instantly.','','','','','Y','Y','','Y','','','','Y','','','','crate2nix: https://github.com/kolloch/crate2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','Needed something more robust than Ansible to manage a variety of very different servers.','','Y','Y','','','Y','','Declarative machine configuration ','SD card image generation','','I would add declarative OS image generation tools.','Ansible or similar','Y','','','','','Y','','','','','','','',''),(2186,'1980-01-01 00:00:00',5,'en','1606425822','A2','A3','male','','','','','','Y','Y','Y','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was frustrated how easy it was to break other distros by accident and was relieved to find those concerns alleviated by NixOS.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','Reproducible, distributable builds','Build \"recipes\" that are easy to modify from outside / hackabilty','Flakes','','I might switch industries in that case','Y','Y','','Y','Y','','Y','','','','Y','Y','Y','https://github.com/input-output-hk/cicero','yarn2nix\r\nhttps://github.com/svanderburg/node2nix\r\nhttps://github.com/nix-community/npmlock2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was frustrated how easy it was to break other distros by accident and was relieved to find those concerns alleviated by NixOS.','Y','Y','Y','Y','','','','declarative system configuration that I can build up front','composable system configuration (reusable modules)','everything that makes the system hard to break (read-only /etc, atomic activation, ...)','Add support for other init systems than systemd','I\'d have to build it. Other distros suck','Y','','','Y','','','https://github.com/input-output-hk/bitte','','','','Sway','https://github.com/Mic92/nixos-shell\r\nhttps://github.com/numtide/flake-utils\r\nhttps://github.com/input-output-hk/nix-inclusive','Disnix / DisnixOS / Dysnomia / DyDisnix','Thank you a thousand times. Nix may have saved me from quitting computers.'),(2187,NULL,3,'en','133953018','A2','A3','male','','','','','','','','','','Y','','','','','','','','Y','','','','','','Y','','Y','','','','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2188,'1980-01-01 00:00:00',5,'en','1939124701','A2','A3','male','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','','','','','','','','Y','Y','','Y','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','','','','','','','','','Y','','','','','','','','Y','','','','',''),(2189,NULL,1,'en','2038896111','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2190,NULL,2,'en','959107544','A2','A3','male','','','','','','','Y','Y','Y','Y','Y','Y','Y','Y','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Configuration of my dotfiles','','','','','','','Y','','Y','Y','Y','','','','Y','Y','','Y','','Reproducability','A consistent way of configuration','nix-shell','A type checker, but that\'s what I hope Nickel will be.','Guix','','','','','Y','','','','','','Y','','','','cabal2nix','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2193,'1980-01-01 00:00:00',5,'en','2096250356','A1','A2','male','','Y','','','','','','','Y','','Y','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Nix is used in the company','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','declarative system configuration with rollback','nix shell','nix flakes for deterministic build','Easier ways to debug nix script (type checker or something instead of a complex traceback)','Archlinux','','','','','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(2194,NULL,2,'en','1301123236','A2','','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I seek for good desktop OS. Different programs on the internet (including GitHub) often are distributed in different formats (Flatpak, Gentoo overlay, RPM) and to be integrated into OS they require specific OS (OS features). ','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2195,'1980-01-01 00:00:00',5,'en','1463871996','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I wanted to automate setting up my systems, and to avoid OS bitrot. NixOS was the solution for both.','','','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative environment configuration','Reproducibility','Isolation','I would move flakes from experimental status. And maybe add optional type hints so error messages become more helpful.','I don\'t know.','','','','Y','Y','','','','','','Y','','','','https://github.com/nix-community/poetry2nix\r\nhttps://github.com/nix-community/npmlock2nix','Y','','','','N','I only recently came across something I could contribute, but haven\'t had time to do it (adding a new package).','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I wanted to automate setting up my systems, and to avoid OS bitrot. NixOS was the solution for both.','Y','','Y','','','','','Declarative configuration','Maintainability','Ease of patching','I would add an embraced way to add secrets to configuration.nix','Guix ofc. If that didn\'t exist, Arch + Ansible maybe.','Y','Y','','','','','','','','','i3+none','Nix-direnv\r\nniv','devos (couldn\'t figure it out as a noob)','nix is the best'),(2196,'1980-01-01 00:00:00',5,'en','2140362457','A5','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','','','','','Y','','','Y','','','','','Y','','','Y','','','','','','','','','Y','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','Y','','','','','','','','','','','','','Y','','Y','','','','','awesome','','',''),(2197,'1980-01-01 00:00:00',5,'en','1367186865','A2','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','You got me at \"declarative\". It took a few attempts, as it is really intimidating at first, but now I\'m all in.','','Y','','','','','Y','','Y','','','','','','Y','','','','','declarative configuration','reproducibility','nix-shell','Make home-manager a first class citizen.','Brew, virtualenv...bash scripts.','','','','','','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Same as nix. I actually use nix mainly through nixos.','Y','','Y','','','','','','','','Make home-assistant a first class citizen. I want to have to work NOT to have my dotfiles managed by nixos, it should be the default.','i hear about guix? but I would probably just live in my ignorance.','Y','','','','','','','','','Y','','','',''),(2198,'1980-01-01 00:00:00',5,'en','1284135554','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A5','Through NixOS.','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','declarative','reproducibility','community','# add:\r\n- more maintainers & developers\r\n\r\n# change:\r\n- faster evaluation times\r\n- releases, that are actually working','nickel and/or guix','','','','Y','Y','','Y','','Y','','Y','','','','https://github.com/nix-community/dream2nix\r\nhttps://github.com/nix-community/yarn2nix\r\nhttps://github.com/svanderburg/node2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Got hold of a i686-linux laptop (my first laptop), which didn\'t run my preferred OS. Thus had to search for an 32bit OS. \r\nBefore my purchase I was already using ansible and I had to find something definite declarative.','Y','Y','Y','Y','Y','Y','','declarative','reproducible','community','# add:\r\n- more maintainers (and better workflows)\r\n- more packages (also a legacy package set separated from nixpkgs for all these pesky python2 and EOL packages)\r\n\r\n# remove:\r\n- all these pesky legacy and EOL packages, looking at you python2! ;)\r\n\r\n# change:\r\n- more funding\r\n- better stance on security','Spectrum or guix. But if neither exists than FreeBSD and QubesOS with some grain of salt and some tears from a puppet and maybe ansible?\r\n\r\nNope, rather #7 from https://mwl.io/faq#tech:\r\nWhat do I recommend? I recommend abandoning technology, moving to a colder climate that won’t be flooded as the oceans rise, and dedicating yourself to improving the soil as you learn to farm enough to feed yourselves and those you love.','Y','','','Y','Y','Y','krops','','','','i3wm','home-manager\r\nsops-nix\r\nnur-packages\r\nnixos-generators\r\nnix-direnv\r\nnixpkgs-review\r\nnixpkgs-hammering\r\ntreefmt/nixpkgs-fmt/nixfmt/alejandra\r\nnix-environments\r\nmobile-nixos\r\nrobotnix\r\nimpermanence','lorri','Keep up your good work.'),(2201,'1980-01-01 00:00:00',5,'en','527568006','A2','A3','male','','','Y','','','Y','Y','','','Y','Y','','','','','','Y','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Frustrations with existing package managers. e.g. difficulty patching archlinux packages, inability to automatically follow upstream packages','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Declarative and reproducible environment management','Simple customization of nixpkgs','No namespace pollution in /usr etc.','Allow exactly one single derivation to be installed using nix-env/nix profile. That derivation should be a pkgs.buildEnv.','archlinux\'s pacman + AUR','','','','Y','Y','','','','','','','','','builds.sr.ht','','Y','Y','','','N','','N','N','More familiarity with nix itself.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','nix-user-chroot completely failed due to a glibc version mismatch error',''),(2200,'1980-01-01 00:00:00',5,'en','1567974564','A5','A3','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','','','','','','','Only NixOS','Y','','','','','','','','Y','','','Y','','Enabling NixOS','','','I\'d *remove* the need to install so many gigabytes of packages again and again because Hydra rebuilt everything. Maybe that means *adding* finished implementations of \"intensional store\" or \"content-addressed derivations\", but I don\'t know enough about Nix internals to say. Maybe it would mean *adding* dependency resolution based on solving systems of version constraints (and occasionally other constraints). (Is the wand magic enough for that?)\r\n\r\nI\'m reminded of an IRC acquaintance, a thoughtful Paludis/Exherbo developer, saying that Paludis and Nix are \"the only two system package managers on the Pareto frontier of package management\" and that an ideal package manager would combine Nix\'s strength of building deterministic and sandboxable environments from already-resolved dependency constraints with Paludis\'s strength of resolving dependency constraints.','I guess Fedora with whatever its standard package manager is at the time, or maybe some Gentoo variant or Windows or (if I had the hardware for it) Qubes','','','','','','None','','','','','','','','','','Y','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','','Y','','','','','','','Allowing much of the system configuration to be specified in a fairly consistent manner (NixOS configuration) in a central location (/etc/nixos) that can be a single Git working tree, making it easy to version-control, back up, copy to new computers, and sync between computers','Whole-of-OS rollbacks / being able to boot into old OS versions if necessary','','I don\'t think I have significant problems with NixOS that aren\'t problems with Nix (and thus described in the other answer).\r\n\r\nI might make it always keep the most recently successfully booted system generation available to boot in case newer generations are unbootable (issue #24158).\r\n\r\nI might add extensive, easy support for a mandatory access control system, like SELinux or at least AppArmor, with all packages in nixpkgs magically gaining perfectly-crafted MAC profiles -- or at least I would magically import all the AppArmor profiles from Ubuntu, e.g., https://gitlab.com/apparmor/apparmor-profiles/-/tree/master/ubuntu . If the wand were powerful enough, I might make the Tomoyo LSM developer\'s new (2020) LSM be completed and try it, but that\'s not very related to NixOS.','I guess Fedora, or maybe some Gentoo variant or Windows or (if I had the hardware for it) Qubes','Y','','','','','','','','','','i3','','',''),(2202,'1980-01-01 00:00:00',5,'en','1481174768','A5','A6','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','','','N','N','Experimentation. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Testing.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none','none','not yet'),(2203,'1980-01-01 00:00:00',5,'en','1408187811','A5','A6','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','','Y','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because of NixOS.','','Y','','','','','Y','','Y','Y','','','','','Y','','','Y','','NixOS/Nixpkgs','','','1) add (possibly gradual) types\r\n2) remove implicit dependency upon bash (using plain sh would make it more portable and minimal)\r\n3) elevate the level of abstraction (Nix is the assembly language of configuration)\r\n4) get rid of flakes (flakes attempt to fix the purity/repeatability issue that should have been there from the beginning; is it too late? no idea but it feels like a wart)\r\n','Probably still be building dpkgs.','','','','','','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was bored and wanted something to expand my mind. Switched to NixOS and it blew my mind! In my mind altered state, there is no way I can go back!','Y','','Y','Y','','','','Repeatable declarative configuration (that says it all)','','','You asked for it... :-)\r\n\r\n0) Lower the barrier of entry. Explanation: NixOS is very different and has a rather high barrier to entry because of the functional mindset and because Nix is so different from what most programmers know. A persistent (so may say stubborn) person who is not a functional programmer will be able to muddle through but the cost and risk of failure are high. Note: I am not necessarily saying we need a graphical installer but I do think we need to identify the classes of people who may wish to use NixOS and support them. Which leads to...\r\n\r\n1) Documentation, documentation, documentation! Explanation: NixOS has fairly good documentation but it is sometimes scattered, there needs to be more if it, and it needs to be organized more clearly into tutorials, how-to guides, explanation, and reference. (See the theory of documentation https://documentation.divio.com/). Current documentation has elements of all mixed up which makes it harder for users to find the specific documentation they need (assuming it exists at all, which sometimes it doesn\'t). \r\n\r\n2) Make clear the separation of what must be configured as root (in /etc/nixos/configuration.nix) and what can (and IMHO should) be configured as a user (possibly using home-manager). Explanation: one of the huge benefits of Nix/Nixpkgs/NixOS is that it empowers users to manage software for themselves without the need for special privileges. A multi-user system should only configure what is absolutely necessary as root and leave everything else to users. (For that matter, I think a single-users system will benefit as well.) My ideal, which can only be approximated in NixOS due to the monolithic nature of Linux, is everything being configured users space running on a microkernel.\r\n\r\n3) Packages need to be split into smaller pieces to allow installing only what is needed. Explanation: NixOS should be an ideal basis for minimal OS installations (for example: for IoT and embedded devices) because of its purity and explicit specification of dependencies. Yet because of monolithic package the minimal installation (on x86-64 at least) is still over 1 GiB. A high-level \"package\" in Debian is broken into \"bin\", \"lib\", \"doc\", etc packages (typically with an \"all\" package to get everything) which allows one to only install what is needed and thereby reducing the footprint. NixOS could beat other distributions at this game if the granularity of dependencies were to become finer.\r\n\r\n4) Elevate level of abstraction at which packages, modules, etc are written. Explanation: the Nix language is like assembly code: simple and flexible. But like assembly code, it is very low level making it harder to understand what it is doing and harder for newbies (and not so newbies) to write. We need to develop higher levels of abstraction (and static typing?) to make it easier to understand and to write or modify thereby lowering the barrier and making it easier for more people to contribute.\r\n\r\n5) Easier to port to other platforms. Explanation: I have a bunch of serviceable hardware that is no longer supported by any OS (ex: PPC Mac Mini). I\'d love it if I could run NixOS on it but it isn\'t a supported architecture and it isn\'t clear (and doesn\'t seem straight forward) how one would port NixOS to those platforms. I\'d also really like to port NixOS to run on Illumos (to gain access to Dtrace, Crossbow, etc without giving up the benefits of NixOS).\r\n\r\n5) Better parameterization of key components. Explanation: I\'d like to build NixOS against musl rather than glibc. Coupled with an earlier suggestion, NixOS could be a better basis for microservices than Alpine. Note: NixOS will likely always be larger than Alpine unless care was taken to ensure packages were all compiled against the same libraries, i.e., no \"this package must be compiled against libfoo vX.Y.Z\". I don\'t think there is too much of that however.\r\n\r\n6) Easier emacs configuration. Explanation: being a monolithic editor/OS platform, this is hard but I\'d really like to configure project specific emacs configurations in connection with nix-shell/direnv rather than having to have everything configured into emacs all the time. I\'m sure it is possible but the docs are too sparse and I\'ve been unsuccessful.\r\n\r\n7) Declarative configuration for firefox/chromium: Explanation: browsers form the basis for so much of contemporary computing but most things can only be configured from within the browser. This is a hard problem but I\'d like to be able to declaratively configure them so that I don\'t have to redo it whenever I do a new installation. (Extend this to any of the old-fashioned big bloated software suite thingies...)','Guix? (Then again, it wouldn\'t exist if NixOS didn\'t.) Probably continue with Debian. Or switch to FreeBSD. Or Illumos. But fortunately, I don\'t live in that alternative universe and I don\'t want to.','Y','','','','','','','','','','i3 and sway','','1) Nix containers (the networking aspect has always caused me problems and pushed me to Docker)\r\n\r\n2) Flakes (still dabbling with them as they solve a real problem but they feel like a grafted on wart which should be solved by incorporating a proper solution into Nixpkgs)','Keep up the good work!\r\nI\'d like to help with the huge list of things I think should be improved but Nix/NixOS isn\'t my day job. I have to squeeze time in here or there so progress will be slow.'),(2204,NULL,1,'en','1164917041','A6','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +/*!40000 ALTER TABLE `limesurvey_survey_2022` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_survey_2023` +-- + +DROP TABLE IF EXISTS `limesurvey_survey_2023`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_survey_2023` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `submitdate` datetime DEFAULT NULL, + `lastpage` int(11) DEFAULT NULL, + `startlanguage` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, + `seed` varchar(31) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X658` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X633` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X634` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X634other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ009` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ010` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ011` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ012` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ013` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ014` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ015` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ016` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ017` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ018` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ019` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ020` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ021` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ022` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635SQ023` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X635other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X36X636other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X670` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X671` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X672SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X672SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X672SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X672SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X672other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647SQ001comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647SQ002comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647SQ003comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647SQ005comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647SQ006comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647SQ007comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647SQ008comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647SQ009` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647SQ009comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647SQ010` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647SQ010comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X647othercomment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X673SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X673SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X673SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X673SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X673SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X673SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X673other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X651` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X652SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X652SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X652SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X652other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X653` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X654` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X661other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X662other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X674other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6551` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6552` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6553` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6554` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6555` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6556` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6557` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6558` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6559` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X65510` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6561` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6562` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6563` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6564` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6565` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6566` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6567` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6568` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6569` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X65610` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X65611` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X65612` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X65613` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X65614` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X65615` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X789` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X657` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X764` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ009` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ010` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ011` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ012` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676SQ013` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X676other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X663other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6641` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6642` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6643` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6644` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6645` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6646` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6647` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6648` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X6649` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X66410` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X66411` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X66412` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X66413` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X66414` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X66415` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X66416` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X66417` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X66418` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X66419` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X66420` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X66421` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X7991` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X7992` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X7993` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X7994` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X7995` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X7996` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X7997` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X7998` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X7999` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X79910` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X79911` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X79912` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X79913` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X79914` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X79915` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X79916` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X79917` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X79918` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X79919` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X79920` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X79921` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X665SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X665SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X665SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X665other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X800` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X800other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X39X667` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X659` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X645` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X660` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X646` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X675` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X648` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X649SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X649SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X649SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X649other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X650` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X637` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X638other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X639SQ001` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X639SQ002` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X639SQ003` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X640` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X641` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X643other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X644SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X644SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X644SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X38X644other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X40X668` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X40X669` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `2023X37X642` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM AUTO_INCREMENT=2515 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_survey_2023` +-- + +LOCK TABLES `limesurvey_survey_2023` WRITE; +/*!40000 ALTER TABLE `limesurvey_survey_2023` DISABLE KEYS */; +INSERT INTO `limesurvey_survey_2023` VALUES (1,'1980-01-01 00:00:00',5,'en','1579335176','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','A fellow student recommended me as a Linux distro which does everything right. I took a cursory look, and liked the idea, so, the next time I misconfigured my Arch to death, I switched to NixOS and never looked back. ','','Y','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A5','','','','','','','','A8','A14','A10','','','','','','','','','','','','',NULL,'Guix or Fedora Silverblue. If nothing _similar_ exits, then Arch','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A22','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Same as for nix','Y','','','','','','','Declarative config','Rollbacks','Boatload of packages available','Replace nix with Nickel, add auto-generated docs a-la rustdoc','Guix, Fedora Silverblue, Arch','Y','','','','','','','','Y','','','https://search.nixos.org','',''),(2,NULL,4,'en','763047368','A5','A3','male','','','','','','','','Y','Y','Y','Y','','Y','Y','','','','Y','','','','','','Y','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','Y','','','Y','Y','','','Y','','Y','','Y','','A7','A6','A10','','','','','','','','A4','A12','A13','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','','','','','A7','A17','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','-oth-','own projects based on Nix tooling AND merge access',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','Y','Y','','The modules system (the mechanics behind the options)','The NixOS options overall','','Split \"flakes\" into its actual discrete constituents so it can actually be evaluated and progress through stability, without preventing \"non-flake\" use cases from being able to use the new discrete features. (It\'s not actually from NixOS, but this question is not in the Nix section...)','I was just about to make my own thing.','Y','','','','','Y','','','Y','','homegrown','','',NULL),(3,NULL,NULL,'en','1145274915',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,'1980-01-01 00:00:00',5,'en','225519047','A5','A2','-oth-','non-binary','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','Xe\'s blog posts provided a good overview, and it was all downhill from there :)','','Y','','','Y','','Y','','','','','','','','Y','Y','Y','Y','','','A2','A3','A1','','','','','','','','A8','A9','','','','','','','','','','','','','',NULL,'apt, docker, and prayers.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','A13','A3','A4','A2','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I generally have no need to. nixpkgs releases are so well maintained that by the time I notice a deficiency, there\'s already a PR going through the pipeline.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I started using it to better understand Nix-the-package-manager.','Y','','','','','Y','','Declarative configuration','home-manager','','nixos-rebuild is a bit of a weird command, but I suppose my magic wand can\'t stabilize the nix command yet, can it? In a similar vein, channels are kind of a pain to work with, but stabilizing flakes may be outside the scope of the wand.','Debian, Void, or Arch','','','','','','Y','','','','','i3','home-manager','','I desperately desire merely one thing within my material happenings. All may crumble but I must know that one item is safe. Please. Stabilize Flakes. I believe in y\'all.'),(5,'1980-01-01 00:00:00',5,'en','560242903','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted arch with an undo button. Arch upgrades broke at work on more than one occasions, and I was caught with my pants down.','','Y','','','Y','','Y','Y','','Y','Y','','','Y','Y','Y','Y','Y','','','A2','A3','A7','','','','','','','','A2','A12','A8','','','','','','','','','','','','',NULL,'does guix count? or fedora silverblue','A2','','','','Y','','','','','','','','','','','','','','','','','','drone','A15','A1','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted arch with an undo button.','Y','Y','Y','Y','Y','','','atomic update','declarative config','a lot of nixpkgs','maybe fix CA derivation. I don\'t know if it will help at all or if it\'s just vaporware.','guix or fedora silverblue','','','','Y','','','','','','','','home-manager, nix-on-droid, attic, impermanence','',''),(6,NULL,1,'en','1845102284','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(7,'1980-01-01 00:00:00',5,'en','348511175','A5','A4','male','','','','','','','','','','','Y','Y','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I got sick of not knowing how my Linux system changed over the years, and trying different ways to track or record changes and installed packages. The fear that, should I need to reinstall Linux or replace my hard drive, I wouldn\'t know everything that needed to be set back up. The idea that Nix, and NixOS, could provide that record be keeping everything configured in one place was immediately appealing.','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A7','A1','','','','','','','','A8','A6','A14','','','','','','','','','','','','',NULL,'Maybe Guix? Or continue trying to hack together a solution myself.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I\'m sure I will eventually, but I don\'t feel comfortable enough yet to do so. It may be easier once flakes stabilize and I don\'t have to think about how my contributions might be used \"the old way\".','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','As soon as I discovered Nix, and then learned it could be used to maintain the entire system, I was sold.','Y','','Y','','','','','Immutable and deterministic system configuration','Ease of configuration','','While it\'s interesting that Nix is so flexible and there are so many ways to do things, I wish it was more standardized, with one way to do something. Standardize flakes, or revert to channels, but not both. User management as part of the system, or something separate like Home Manager. But not both. Flexibility is a nice concept, but the fragmentation adds confusion and increases the barrier to entry.','I\'d still be using Void, and trying to find a way to track and manage system configuration','Y','','','','','','','','','','Sway','Home Manager, sops-nix','','NixOS rocks!'),(8,'1980-01-01 00:00:00',5,'en','671623556','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','Y','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A2','A7','A1','','','','','','','','A8','A9','A2','','','','','','','','','','','','',NULL,'','A2','Y','','','Y','Y','','','','','','','','Y','','Y','','','','Y','','','garnix','A15','A2','A13','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','','','Declarative configuration','Ability to roll back','Huge set of configurable packages','State management is often a pain currently, no widely accepted standard exists','Arch Linux','Y','','','','','','','Y','','','','Home-manager, sops-nix, nix-index, nil','',''),(9,'1980-01-01 00:00:00',5,'en','1587324562','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started using Nix when I started using NixOS.','','','','','','','Y','','','','','','','Y','','','Y','','','','A1','A7','A10','','','','','','','','A5','A3','A14','','','','','','','','','','','','',NULL,'unsure','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Lack of experience with packaging in general, time','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','After trying several different linux distributions, I started using NixOS and ended up enjoying it the most, so I stuck with it.','','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(10,'1980-01-01 00:00:00',5,'en','977905545','A5','A3','fem','','','','','','','','','','','','','','','','','','','','','','','','','Information security analyst','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I don\'t quite remember the exact circumstances, but I stumbled upon it in 2020 and found the community quite lovely as well as liked the declarative nature of Nix and NixOS','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A7','A2','A1','','','','','','','','A11','A12','A8','','','','','','','','','','','','',NULL,'I\'m not sure, probably a combination of containers and ansible (even if neither are a direct replacement for Nix)','A2','','Y','','Y','Y','Y','','','Y','','','','Y','','','','','','Y','','','','A15','A4','A2','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I started using NixOS when I started using Nix. See other answer','Y','','Y','Y','','','','Generations/rollbacks','Declarative system configuration','Reproducible system builds','I would probably remove all of the old, arcane Perl code still left (such ad switch-to-configuration.pl) and have it written in a more modern and maintainable language. That\'s much easier said than done, but I suppose that\'s what the magic wand is for.','I think I still would have moved on from Gentoo, but I probably would have stumbled on Guix instead at some point.','Y','','','','','','Cachix deploy','','','','Sway','I use Cachix for my binary cache and my NixOS config uses impermanence, lanzaboote, and disko. I also use nil as my language server (though I may switch to nixd before too long)','I used to use rnix-lsp but switched to nil. I don\'t think I ever stopped using much else.','Thank you for your work!!'),(11,'1980-01-01 00:00:00',5,'en','1284136044','A5','A3','male','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','I chose nix for distributing a python project','','','','Y','','','Y','','','','','','','Y','Y','Y','Y','','','','A6','A3','A2','','','','','','','','A1','A10','A8','','','','','','','','','','','','',NULL,'Bash scripts and bazel','A4','','','','Y','Y','','','','','','','','','','','','','Y','Y','','','','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','N','Liked nix and tried it in a vm',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'std flake framework','',''),(12,'1980-01-01 00:00:00',5,'en','1278860129','A5','A4','male','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','The ability to configure all my systems and dotfiles through configuration files. I’d explored nix in the past, but flakes filled the gaps I found previously. ','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A2','A1','A7','','','','','','','','A8','A3','A6','','','','','','','','','','','','',NULL,'Ansible, asdf, homebrew','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','Woodpecker','A1','A20','','','','','','','','','','','','','','','','','','','','A1','A20','A22','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','Y','Y','','','','','Configuration management','','','A better secrets and deployment story','Another Linux distro. ','Y','','','','','Y','','','','','Xmonad, leftwm ','A language server, nil and more recently nixd. Emacs overlay. ','','I’d like to see better Elixir support too, but this wasn’t in the list of languages. '),(13,NULL,1,'en','924180521','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(14,'1980-01-01 00:00:00',5,'en','589195210','A2','A2','male','','','','','Y','Y','','','','','Y','','','','','Y','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A9','A10','','','','','','','','A9','A8','A4','','','','','','','','','','','','',NULL,'Arch','A1','','','','Y','Y','','','','','','','Y','','','','','','Y','','','','','A21','A2','A3','A15','','','','','','','','','','','','','','','','','','A9','A21','A5','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','Y','Y','','','','','','','','','','Y','','','','','','','','','','I3','','',''),(15,NULL,1,'en','450733871','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','','','','A3','','','','','','','','Y','','','','','','','Y','','','Y','','','','A7','A2','A1','','','','','','','','','','','','','','','','','','','','','','',NULL,'','A2','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','','Declarative configuration (configuration.nix)','Atomic generations and rollback','Package availability by way of Nix','','','Y','','','','','','','','','Y','','Comma helps me run packages I only need occasionally.','',''),(16,'1980-01-01 00:00:00',5,'en','934075774','A5','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A7','A1','A3','','','','','','','','A6','A14','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','A5','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','Desktop PC','Atomic updates to entire system','Declarative configuration','Ad-hoc installation (nix run, nix shell)','','','Y','','','','','','','','Y','','','','',''),(17,'1980-01-01 00:00:00',5,'en','716807821','A5','A5','male','','','Y','','','Y','Y','','Y','Y','Y','','Y','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','Not sure I remember! Wanted something more reliable than debian or similar for upgrading and etc.','','','','','','','Y','Y','','Y','Y','','','','Y','Y','Y','','','','A1','A7','A2','','','','','','','','A14','A5','A2','','','','','','','','','','','','',NULL,'Arch was the last distro I used before nix. So maybe that. Or guix?','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Not sure I remember exactly but probably one too many upgrades gone wrong ','Y','','Y','Y','Y','','','Seamless system updates','Nix develop','configuration.nix','I\'d make the language far more explicit in what\'s it\'s doing. A callpackage nix file would be recognizable as such, for instance. Implicit arguments would be explicit. Clarity over terseness.','Guix? Maybe back to arch.','Y','','','','','','nix-cppy-closure','','','Y','xmonad with xfce in nodesktop mode.','direnv','nix-env for personal software management. I still use it for deploying my web app though. ',''),(18,NULL,2,'en','673665450','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','started at work (Logicblox) then for all my personal infra and projects ','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A3','A6','','','','','','','','A8','A4','A9','','','','','','','','','','','','',NULL,'I would be miserable.\r\nJoking aside, perhaps the new alpine tooling (melange, wolfi, …) can be something usable','A1','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A2','A1','A4','A11','A5','','','','','','','','','','','','','','','','','A11','A5','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19,'1980-01-01 00:00:00',5,'en','1356285076','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I\'d heard of Nix/NixOS in the past and have always been intrigued by its package management. It felt like time to upgrade my old Ubuntu install (which was a heavily customized 20.04 install, with i3 installed among other non-default things) and i was dreading ever having to do all that customization again. Finding the right fonts, configuring so many .config files. Making sure everything was setup right. And I knew I\'d have to do this work twice, once for my desktop and again for my laptop. I had been seeing lots about NixOS and it started as \"i\'ll install this, try it and see how hard this is\" and within a day i had almost everything setup perfectly. I haven\'t (yet) copied things over to my laptop, but I already know it will be super easy to. Ive already installed Nix on my other linux machines, but will probably switch to NixOS entirely on them at some point. Nix quickly became my daily driver. Its so easy to configure and customize. I\'m also loving how easy it is to develop stuff. Package management has always been a nightmare, and Nix has solved so many problems for me.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A8','A4','A9','','','','','','','','','','','','',NULL,'I\'ve heard of Guix a little bit but i dont actually know anything about it other than \"its similar to nix\"\r\n\r\nwithout Nix i\'d probably just be stuck in dependency hell on ubuntu, using weird containerization methods for anything where i might need to have a weird version of a package installed. python virtualenvs are annoying but i guess i\'m stuck with them. but i\'ve needed to switch between versions of NPM before. no idea what i\'d do for that other than Nix. ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','A2','A4','A3','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','as far as i know, nothing? i haven\'t really needed to. I\'ve wanted a more up-to-date package a few times and every time its always either already been in nixpkgs-unstable, or theres an active pull request to add it. For other stuff i can usually piece together a flake.nix file for myself. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I\'m now realizing the previous question was Nix specific not NixOS, and that i answered it wrong. Oh well.\r\nI needed to upgrade my linux system and I got tired of doing all the customization. So i switched to NixOS and now ive got one folder with a flake.nix that describes my entire machine, I can reinstall my entire setup within a few minutes if i had to.\r\n\r\nI also love how easy it is to work on different code projects. Especially if they come with a flake.nix already, but if they don\'t I can piece together something that works pretty quickly. then just `nix develop` and ive got all the dependencies i need.','Y','','','','','','','A reproducible system. ','Easy development environments.','Easy rollbacks.','any time theres an error in one of my nix files. usually its something simple like \"i mistyped a thing\" but the error message sucks. it frequently gives me a trace into like 300 layers of code that isn\'t mine and i can\'t read it. I\'ve never understood any of the traces. ','ubuntu i guess. no real reasons other than \"i\'ve used it before\" and \"i dont want to learn arch\"','','','','','','','','','Y','','i3wm. Hyprland if wayland wasn\'t a nightmare','I guess flakes? you kinda asked about them i guess.\r\nThey seem to be in this weird in-between of \"these are experimental don\'t use them\" and \"these are the future of nix use these\"','',''),(20,'1980-01-01 00:00:00',5,'en','2001545854','A2','A2','male','','','','','','','','Y','','','','','','','','','','Y','','','','','Y','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Wanted to hack deterministic/reproducible configuration especially across systems into Gentoo, then found out about NixOS and decided to try it.','Y','','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A2','A5','A7','','','','','','','','A12','A10','A2','','','','','','','','','','','','',NULL,'Probably still Gentoo along with the system package manager.','A3','','Y','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A4','A3','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Same as with Nix, I wanted to hack reproducible configuration into Gentoo and then found NixOS.','Y','Y','Y','Y','','','','Configuration file generation for the whole system','Atomic switch/rollback','Building a VM from configurations','Package grafts (like Guix) or an equivalent system to make patching libraries easier without causing huge rebuild chains','Gentoo','Y','','','','','','','','Y','','','','deploy-rs','Here\'s to many more years of successful Nix!'),(21,'1980-01-01 00:00:00',5,'en','1427029603','A2','A3','male','','Y','','','','','','Y','','','','','','','','','','','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I am a quantum chemist and heavily rely on very large scale computations and HPC. The chemistry ecosystem relies on ancient as well as very modern Fortran Programmes, a lot of python and also some C++ and MPI, BLAS and LAPACK. On HPC most things are compiled from scratch on a per user basis and made available via environment modules. The number of times our modules broke due to software updates of the underlying centos or some other user of our research group breaking something, anaconda installations interfering and so on are uncountable. This Cardhouse is unsuitable and even worse, irreproducible. Thus, I reached for nix.\r\n\r\nMy own software stack adds Haskell to this ecosystem and getting all these completely unrelated libraries and programmes in different languages to work together is a nightmare without nix (I\'ve never succeeded in building my own project and it\'s dependencies from source without nix)','','Y','','','Y','','Y','Y','Y','Y','','','HPC clusters','Y','Y','Y','Y','Y','Y','','A2','A1','A6','','','','','','','','A9','A8','A2','','','','','','','','','','','','',NULL,'Singularity images and Podman','A1','','','','Y','Y','','','','','','','','','','Y','','Y','','Y','','','','A13','A2','A3','A4','','','','','','','','','','','','','','','','','','A13','A2','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I maintain several workstations and servers for our workgroup and institute as well as for private purposes. Keeping all theses things working nicely without diverging was not too nice with Debian and OpenSuse and nicely having declarative systems is a blessing.','Y','Y','Y','Y','','','HPC clusters ','Maintenance of a heterogeneous pool of machines declaratively\r\n','Uniform configuration language for completely unrelated services\r\n','Providing Nix Daemon to an entire HPC clusters that is not running NixOS itself','Everything should build with cosmopolitan C and be cross system \r\n\r\nSupport for BSD kernel instead of Linux\r\n\r\nWorking cross compilation for all packages out of the box','Debian','Y','','','Y','','','','','Y','','','Home-manager\r\n\r\nNix-Qchem','NixOps\r\n',''),(22,'1980-01-01 00:00:00',5,'en','145662818','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A2','A7','A1','','','','','','','','A8','A5','A1','','','','','','','','','','','','',NULL,'Arch Linux with the AUR probably, as well as Windows with Scoop.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Almost all the programs I need are in nixpkgs, and things like modded Minecraft server packages are hard to package and organize.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','It sounded really cool and is cleaner and more solid than Arch.','','','Y','','','','Desktop and laptop','System configuration with flakes','Home management with Home Manager','','Cleaner documentation and wikis for different modules so it\'s easier to set up.','Arch with the AUR and Windows with Scoop.','Y','','','','','','','','Y','','','The Impermanence module for NixOS and Home Manager','','NixOS is amazing, good job guys!'),(23,NULL,NULL,'en','615627674',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24,NULL,1,'en','2103587567','A2','A2','-oth-','Genderfluid','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(25,'1980-01-01 00:00:00',5,'en','245755836','A5','A5','-oth-','','','','','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','Y','','','','Y','','Y','','','','','','Y','','','','','','Y','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Easy install and setup ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(26,'1980-01-01 00:00:00',5,'en','129922599','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','','','General purpose','A7','I liked the idea of a declarative OS and I found it relatively easy to pick up. I also really like bein able to define build scripts and install scripts cross platform very useful.','','Y','','','','','Y','Y','','','','','','','Y','Y','','','','','A2','A7','A1','','','','','','','','A8','A3','A14','','','','','','','','','','','','',NULL,'I\'ve been converting my arch dotfiles to a stow based config. I have also been using Justfiles a lot for projects, but that\'s more of a build step.','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A15','A17','','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I\'m not deep enough into the ecosystem to have found something that isn\'t already in nixpkgs or home-manager','Y',NULL,NULL,NULL,NULL,'A1','Y','','Y','','A1','I really like the concept and I found that nixOS is considerably less clunky to setup compared to arch.','','','Y','','','','','Declarative config','Rollbacks / generations ','Garbage collection','I would try and keep some necessary drivers to date. (Only those necessary for functionality though such as graphics drivers)','Arch/EndeavorOS','Y','','','','','','','','','','Hyprland','home-manager, sops-nix','N/A',''),(27,NULL,1,'en','894044549','A2','A2','male','','','Y','','','Y','Y','','','','','','','','','','Y','Y','','','','','Y','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(28,'1980-01-01 00:00:00',5,'en','1155153702','A5','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','Nixos','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A3','A5','A13','','','','','','','','','','','','',NULL,'Ubuntu','A4','','','','','','','','','','','','','','','','','','','','','','','A5','A1','','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','Easy setup ','Reproducible dev environment ','','Up to date Java versions','Ubuntu ','Y','','','','','','','Y','','','','','',''),(29,NULL,1,'en','708343129','A5','A5','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(30,'1980-01-01 00:00:00',5,'en','752783056','A5','A2','male','','Y','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A3','A2','A1','','','','','','','','A4','A5','A11','','','','','','','','','','','','',NULL,'Docket, guix','A1','','','','Y','Y','','','','','','','','','','Y','Y','','','Y','','','Garnix','A1','A3','A2','A5','A13','A15','','','','','','','','','','','','','','','','A13','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','N/A, I contribute a bit','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','Y','Y','Y','','','','Declarative services ','VMs','','','Docker/containers','Y','','','','','','','','','','Xmonad','Cachix','Hydra',''),(31,'1980-01-01 00:00:00',5,'en','325200456','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','Y','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A1','I had issues with keeping Arch updated and configured. A friend showed me NixOS and the rest is history. ','Y','','','','','','Y','','','','','','','','','','Y','','','','A1','A6','A7','','','','','','','','A13','A6','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A9','A15','A5','','','','','','','','','','','','','','','','','','','A15','A9','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','','','','','','','','','','','','','','','','','','',''),(32,NULL,1,'en','1368786449','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(33,NULL,2,'en','1594732158','A5','A2','male','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Well I use NixOS, and the thing that drew me in initially was the declarative nature of configuring a Linux system. I like having a readable way to display exactly how my server is set up because it’s all in one place. Basically, I get to view and change the state of the system through one standardized interface.','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A2','A1','A10','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'There is nothing like Nix or NixOS. I would probably just use another Linux distribution like Arch that empowers configuration.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A3','A15','A1','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34,'1980-01-01 00:00:00',5,'en','1684734636','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','NixOs seemed like it would be a more reliable way to handle a system.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A7','A2','A1','','','','','','','','A8','A5','A9','','','','','','','','','','','','',NULL,'Docker','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A10','A1','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Seemed like it would give a more reliable/predictable system','Y','','Y','Y','','','','Central configuration','Modules providing easy setup of multi-part software stacks (e.g. nging+php+redis all setup with services.nextcloud)','Remote configuration/deploy','','Arch','Y','','','Y','','','','','Y','','','','',''),(35,NULL,2,'en','512113514','A5','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','','Y','','A1','A5','A6','','','','','','','','A2','A11','A6','','','','','','','','','','','','',NULL,'I don\'t want to think about the possibility','A2','','Y','Y','Y','Y','','','','Y','','','Y','','','Y','','','','','Y','','','A3','A13','A15','A2','A1','','','','','','','','','','','','','','','','','A2','A13','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(36,'1980-01-01 00:00:00',5,'en','1215040133','A2','A3','male','','','','','','','','Y','','','Y','','','','','','','Y','','','','','','','','','','','','','NixOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','It was recommended in the context of Haskell development and I liked the idea.','','','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A3','A2','A1','','','','','','','','A9','A15','','','','','','','','','','','','','',NULL,'Copious amounts of alcohol?','A2','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A13','A10','A2','A1','A15','A3','A14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','It sounded like a good idea.','Y','','','Y','','','','Declarative configuration','(mostly) atomic switch','Rich set of modules','Personalized channels that do not advance unless tests for all modules used by configuration pass.','Probably Arch','','','','','','Y','','Y','','','','','',''),(37,'1980-01-01 00:00:00',5,'en','772458696','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I attended a talk in 2018 at strange loop. I eventually decided to give nixos a try and have never looked back.','','Y','','','','','Y','Y','','','','','Currently on dev and staging servers but have not gone to production (yet)','Y','Y','Y','Y','','','','A1','A9','A7','','','','','','','','A4','A8','A5','','','','','','','','','','','','',NULL,'Arch Linux Plus lots of custom ansible','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A13','A18','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as previous answer. ','','','Y','','','','','Declarative system configuration ','Nixpkgs','','A kubernetes like distributed system for managing clusters of nixos nodes (i.e. replace docker with NixOS)','Arch plus ansible','Y','','','','','Y','','','','','Sway ','','',''),(38,NULL,3,'en','653289870','A5','A2','fem','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I got into Nix through NixOS. I found the idea of a declarative configuration that defines everything the system has to be very attractive - I considered NixOS after trying Qubes and realizing how much of a mess that distro was to use as a daily driver, in the end I was mainly looking for a system that would be easily auditable, repairable, and so that I would never have to redo complicated setup processes twice. NixOS checked all of those boxes, and some ideas I saw from blogs showed me some amazing security capabilities Nix had, such as marking everything but the nix store as noexec to reduce risk of arbitrary code execution.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A9','A7','','','','','','','','A11','A2','A13','','','','','','','','','','','','',NULL,'Docker, Qubes','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A15','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I found the idea of a declarative configuration that defines everything the system has to be very attractive - I considered NixOS after trying Qubes and realizing how much of a mess that distro was to use as a daily driver, in the end I was mainly looking for a system that would be easily auditable, repairable, and so that I would never have to redo complicated setup processes twice. NixOS checked all of those boxes, and some ideas I saw from blogs showed me some amazing security capabilities Nix had, such as marking everything but the nix store as noexec to reduce risk of arbitrary code execution.','Y','','Y','','','','','declarativeness','reproducibility','rollbacks','I wish there was autocomplete / LSP for modules. By far the slowest part of writing a config is needing to search up the different options in nixos search before configuring.\r\nI also wish it was easier to install different versions of software, and by that I mean is not needing to clone all of nixpkgs to do this. I feel like there\'s a lot of problems with nixpkgs being a monorepo where everything is up to date, such as nix-specific patches to forcefully update dependencies which break things, and being limited to whats in the pythonPackages module at a particular version of nixpkgs can be frustrating. This feels like an extremely daunting / impossible task, but a model similar to crates.io/npm would make a lot more sense since you only download what you need.','Qubes','Y','','','','','','nixinate','','','','sway','','',NULL),(39,'1980-01-01 00:00:00',5,'en','153232789','A5','A3','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','','','','','','','','','','','','Y','Y','','','','','','A2','A3','A1','','','','','','','','A13','','','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A4','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(40,'1980-01-01 00:00:00',5,'en','1164115058','A6','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A7','because it is very stable and easy to rollback to a previous version and also can install multiple version of a software \r\nit contains almost latest packages in repos\r\nalso configurable nix files make it easy to redeploy to every where','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A5','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','due to its features \r\n1. rollback\r\n2.atomic uodate\r\n3.nixpkgs ','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','','please provide better documentation and learning resources so anyone can know about the differences from a regular Linux distro and successfully start using with less time to learn everything about nix , nixpkgs ,nixos. thankyou'),(41,NULL,1,'en','2068727219','A2','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(42,'1980-01-01 00:00:00',5,'en','931740000','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Tired of poor dev environment reproducibility and arduous system migrations / OS reinstalls. ','Y','','','','Y','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A3','A2','A6','','','','','','','','','','','','','','','','','','','','','','',NULL,'VMs','A1','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','A1','A15','A7','','','','','','','','','','','','','','','','','','A2','A1','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','','','General computing (gaming, browsing, etc.) ','A4','I had wanted to try nix for a while and had a windows box die. Decided the rebuild was a good time to immerse. ','','','','','','','','Reproducibility','Atomic updates','Quick migration/recovery','Better story for how module vs package config works (it should be ~trivial to configure N instances of any server software for different projects, dev shells, and general use). ','Macos','Y','','','','','','','Y','','','','Mach-nix? ','A dozen x2nix solutions? ','<3'),(43,NULL,1,'en','313650902','A5','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44,NULL,1,'en','1624239965','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','Y','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(45,NULL,2,'en','1120257424','A1','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Software tester','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Just curious.','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A1','A2','A3','','','','','','','','A8','A7','A14','','','','','','','','','','','','',NULL,'LXC','A4','','','','Y','','','','','','','','','','','','','','','','','','','A3','A15','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(46,NULL,NULL,'en','931943567',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(47,'1980-01-01 00:00:00',5,'en','499327109','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','NixOS and the vast module system that provide well maintained abstractions and make updates seamless','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A9','A5','A1','','','','','','','','A2','A12','A7','','','','','','','','','','','','',NULL,'','A3','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','Collectively maintained modules','Integration tests','Holistic management of configuration and runtime environment','Reckless and ignorant committers','Possibly Gentoo.','','','','','Y','','','','','','Sway','devenv\r\ndisko\r\nnurl\r\nnix-init\r\nnixpkgs-review\r\nnix-update\r\nnix-output-monitor','',''),(48,'1980-01-01 00:00:00',5,'en','15511667','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted to improve how I organized dotfiles and dev tools on my MacOS laptops. I had been using numerous package managers in a generally ad-hoc manner. Evolved into managing my own bash scripts for a while. I had heard of NixOS but it was some time later when I learned that the package manager could be used on MacOS.','Y','','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A8','A9','A14','','','','','','','','','','','','',NULL,'Homebrew, npm, yarn, pip, cargo, go, docker, curl, stow etc...\r\n\r\nI suspect I\'d still be using all of these package managers and commands in bespoke shell scripts still.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A9','A2','A1','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','-oth-','I have contributed to home-manager packages',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I had wanted to experiment with a linux-based home lab for some time but had not committed. After getting to a certain level of confidence with the Nix package manager on MacOS I felt momentum to try installing NixOS on an old desktop to use as a home server. I was able to get NixOS installed on the old machine and then with some refactoring on my nix flake configurations I was able to re-use most of my Darwin nix configs.','Y','','Y','','','','','NixOS options','Seamless Nix package manager integration','Generations','I\'d like for even more declarative NixOS installs on fresh hosts. For example, I\'d love to be able to declare the host\'s partitions instead of using the install-wizard or CLIs.','I might not be running any Linux distros right now if there was no NixOS. But I was interested in trying Arch Linux, so maybe that.','Y','','','','','','','Y','','','','I use nix-darwin and home-manager extensively. The search.nixos.org webpages are very handy.','I tried NixOps but encountered some issues with it. Probably due to limited documentation. I was also unsure about how well maintained it is going to be and was hesitant to commit. I may come back to it when I expand my home lab, though.','I\'m very excited about Nix! Thanks for your contributions to the project!'),(49,'1980-01-01 00:00:00',5,'en','224322920','A5','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A2','A10','','','','','','','','A8','A2','A6','','','','','','','','','','','','',NULL,'Guix','A1','','Y','','Y','Y','','','','','','','','','','','','','','','','','','A1','A9','A15','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','','','','','','Declarative Configuration','Access to Nixpkgs','Rollbacks','- Stabilize Flakes\r\n- Be able Partition Drives from system configuration at install time\r\n\r\n\r\n.\r\n','Guix','Y','','','','','','','Y','','','i3','- flake-compat','- flake-utils\r\n- node2nix\r\n- devos/digga',''),(50,'1980-01-01 00:00:00',5,'en','732416086','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A13','A8','A3','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A4','A3','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','','','','','','','','','','','','','','','','','','','','','','','',''),(51,'1980-01-01 00:00:00',5,'en','988696785','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','There is a subset of machines I deploy at many sites/customers like a reverse proxy. Writing a configuration one time and then just rolling it out at every site make installation, maintenance, and management easy.','','Y','','','','','','Y','','Y','','','','','','','Y','','','','A1','A10','A2','','','','','','','','A7','A6','A13','','','','','','','','','','','','',NULL,'Just another linux distribution suitable for prod environments (Ubuntu, RHEL, CentOS, Debian, SUSE)','A5','','','','Y','','','','','','','','','','','','','','','','','','','A2','A15','A3','A4','A13','A14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Not enough time, haven\'t read documentation on it (if there is good documentation), would be open to it if I find the time','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','Did answer already... don\'t know why you ask again','','','Y','Y','','','','','','','','Did answer already... don\'t know why you ask again','','','','','','','','','Y','','','','',''),(52,NULL,NULL,'en','209200024',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(53,'1980-01-01 00:00:00',5,'en','792471800','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I wanted a reproducible way to mange my dotfiles.','','','','','','','Y','','','','','','','Y','','','Y','','','','A10','A1','A2','','','','','','','','A6','A14','A13','','','','','','','','','','','','',NULL,'','','','','','Y','','','','','','','','','','','','','','','','','','','A9','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','I3','','',''),(54,'1980-01-01 00:00:00',5,'en','736144658','A2','A2','male','','','','','','','','','','','','Y','Y','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','','','Y','','','Y','','','','','','','','Y','Y','Y','','','','A9','A2','A7','','','','','','','','A10','A14','A9','','','','','','','','','','','','',NULL,'Probably Opensuse zypper','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A6','A15','A17','A4','A1','A2','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','Declarative configuration','package availability','Rollbacks','Windows support, which would be absolutely insane','zypper','Y','','','','','','','','','','Hyprland','home-manager','','Loving this distribution! Hope to see changes that would attract newcomers'),(55,NULL,1,'en','226992851','A5','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(56,'1980-01-01 00:00:00',5,'en','1042645063','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','it sounded fun','','Y','','','','','Y','','','','','','','','','','Y','','','','A1','A2','A3','','','','','','','','A14','A6','A5','','','','','','','','','','','','',NULL,'Arch Linux? or Ubuntu ','A2','','','','Y','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','','Y','Y','','','','','','','','','Y','','','','','','','','','','dwm','','',''),(57,'1980-01-01 00:00:00',5,'en','1962075826','A5','A2','male','','','','','','Y','Y','','Y','Y','Y','','Y','','','','','Y','','','','','Y','Y','','','','Y','','','','N','N','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Because it sounded interesting','Y','','','','Y','Y','','','','','','','Y','','','','','','','','','','Sway','','',''),(58,'1980-01-01 00:00:00',5,'en','2108740694','A5','A2','male','','Y','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Found it though a friend, thought it was really interesting.','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A13','A6','A3','','','','','','','','','','','','',NULL,'Guix I guess. Or pacman','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A15','A2','A1','A17','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Not sure how to start. Or knowing how to start, but lots of things to know/do for PRs and getting cold feet before submission','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Friend','Y','','Y','','','','','Declarative','Rollback for when I break stuff','Auto describing things i did to my system in the past via the config','Declarativd Secret management! Not sure if this is possible, but with magic, anything js','Arch','Y','','','','','','','Y','','','wayland thing','N/A','N/A',''),(59,NULL,2,'en','648568636','A5','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was tired of having an unstable distro. ','','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','','A1','A2','A3','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'It\'s not really a good comparison but i used to use Ansible','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A4','A3','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I do contribute',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(60,'1980-01-01 00:00:00',5,'en','1243560427','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A10','A7','','','','','','','','A13','A5','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','fetch family of functions + derivations (I feel more comfortable having the source defined in the same place, though I lose out on auto-updates)','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','By chance saw someone that mentioned it in their profile and went \"oh that\'s cool\"','Y','','','','','','','','','','First class support for nixos-hardware presets (the common folder ones)\r\n\r\nDebugging why your PC does not boot with no knowledge of where/what anything is/does as a beginner almost made me quit ','','Y','','','','','','','Y','Y','','Hyprland','nil, deadnix, statix, node2nix, dconf2nix, crane, nixfmt, noogle (lifesaver), home-manager','nixos-option: Broken with flakes, nix repl works but is not optimal\r\nNixd (LSP): I really, really wanted to try it due to its auto-completion features but its far from ready yet',''),(61,'1980-01-01 00:00:00',5,'en','1474065820','A3','A2','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','The folks on Linux Unplugged kept going on and on about, I figured I\'d check it out. Dropped Arch and haven\'t looked back since. I now use nix on all my projects.','','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','Y','','','A2','A1','A7','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'As an OS, Arch. As a buld system, I\'d probably use everything. Which would suck, since I\'d need 20 different solutions for what nix does alone.','A2','','','','Y','Y','','Y','','','','','','','','Y','','','','','','','','A4','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Linux unplugged.','Y','','Y','','','','','Declararive','Atomic','Portable','I would add perfect support for running arbitrary compiled binaries.','Arch.','Y','','','Y','','','','','Y','','','agenix, NUR, home-manager','nixops','Can\'t wait for the next NixCon :)'),(62,'1980-01-01 00:00:00',5,'en','145605561','A5','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A7','','','','','','','','A5','A3','A9','','','','','','','','','','','','',NULL,'Ansible with Fedora and/or Almalinux','A1','','','','Y','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','Y','','','','','Declarative system definition.','Large up to date binary package availability.','','Drastically simplify the user facing interface for new users. Drastically simplify managing, especially python applications and libraries not natively packaged in Nix.','Ansible with Fedora and/or Almalinux ','','','','','','','','','','','sway','Home-manager','N/A','Thank you for caring enough to ask!'),(63,NULL,2,'en','823960041','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A1','A2','A10','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(64,'1980-01-01 00:00:00',5,'en','314808876','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Deployed my first home server and started with arch and had a bunch of issues, having to reinstall at least once. \r\nGot tired of that fast, did a hardware migration and switch to nixos while doing it. \r\nI switched because it was easy to reproduce and easier to manage, even without cockpit. ','','','','','Y','','Y','Y','','','','','','Y','','Y','Y','','','','A6','A10','A4','','','','','','','','','','','','','','','','','','','','','','',NULL,'I would still use arch and refuse to use the archinstall python library. ','A4','','','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Nothing at the moment. \r\nActually, my inability to rtfm and follow the git comment guidelines, but I do have an open pr on nixpkgs. \r\nOtherwise, up until recently, I didn\'t have a second device to try to get support for mobile-nixos. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Shoot, same as nix. ','','','Y','','','','Personal machines','Configuration.nix','','','','Arch Linux ','Y','','','','','','','Y','','','','','',''),(65,NULL,1,'en','2062765249','','A3','male','','Y','','','','','Y','','','','','','','','Y','','','Y','','','Y','','Y','Y','','','','','','','Linux',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(66,NULL,2,'en','1246054918','A5','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','Y','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I liked the idea of having my entire system configured easily through a config file. Wasn\'t a fan of yaml/ansible.','','Y','Y','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','','A1','A10','A7','','','','','','','','A4','A6','','','','','','','','','','','','','',NULL,'FreeBSD','A1','','','','Y','Y','','','','','','','','','','','','','','','','','Gitea Act Run','A9','A22','A15','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(67,'1980-01-01 00:00:00',5,'en','13189819','A5','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Got a new PC and decided to try NixOS instead of my usual.. Arch Linux. Tired of reinstalling to get a fresh system. ','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A7','A1','A9','','','','','','','','A14','A5','A9','','','','','','','','','','','','',NULL,'Probably Gnu Guix. Can’t see going back to Arch at this point. ','A2','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Don’t know how. Not a programmer. Don’t understand software development and GIT enough to be comfortable. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Bought new PC. Installed EndeavorOS but found it sluggish which was disappointing when I was expecting higher performance. Tried Silverblue and MicroOS. Both made customizing my system challenging. Have to use overlays but users recommend against overlays. Lol \r\n\r\nI had played with NixOS in a VM previously and thought it was cool until it broke during a rebuild due to running out of disk space as I didn’t understand garbage collection and generations. I decided to try again on bare metal now that I had a lot more disk space. Now that I remove old generations regularly, my system stays clean of cruft unlike imperitive systems. ','','','','','','','It’s my main desktop. Don’t have any other PC’s. ','Declarative configuration ','Atomic updates and rollbacks','Improved security due to write protected system files','An easier way to configure than writing code. While I have mostly figured out the syntax, I don’t truly understand what’s happening with inputs, outputs etc. I know work is being done by other developers to create a GUI that has access to package lists and system options. A TUI for system management would be cool. I think that this would make it a great option for non-programmers and would likely lead to increased usage.','Probably try Guix. If not that then I’d be back to distro hopping. 😆 ','','','','','','','I have no need for deployment tools as a desktop user. ','','','','I have Sway and XFCE installed. Use Sway generally. ','','','Thank you for making Nix and NixOS!'),(68,NULL,2,'en','229087760','A6','A3','-oth-','genderfluid','','','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I\'ve started using NixOS before using Nix independently. I was always a distro hopper searching for the perfect distro. NixOS is everything I\'ve wanted in a distro. Infinite customisability? check. least amount of things to remember if i want to reinstall? check. undo changes if something breaks? check.\r\n\r\nThis introduced me to Nix. the idea of all the same things as above for managing project dependencies? count me in.','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A3','A10','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'for OS? any other Linux distribution out there would\'ve worked.\r\nfor projects? stack specific tools to manage dependencies, like nvm for node, pipenv or venv for python etc.\r\nfor ad-hoc environments? containers','A1','','','','Y','Y','Y','Y','','','','','','','','','','','','Y','','','','A15','A9','A1','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','At the moment, only time.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(69,'1980-01-01 00:00:00',5,'en','751456930','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A19','A15','A5','','','','','','','','','','','','','','','','','','','A19','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','Y','','','','','','','','','Y','','','','','','','','Y','','Xmonad','Nixvim.','',''),(70,'1980-01-01 00:00:00',5,'en','1030946597','A5','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I needed a system that would remember how I set it up. ','Y','Y','','Y','Y','kvm, microvm','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','Y','','A2','A10','A7','','','','','','','','A15','A6','A11','','','','','','','','','','','','','Store-only nix','One or more of ansible, terraform/pulumi/cdk, more containers, something like devcontainers ','A2','','','Y','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A1','A4','A3','A9','A14','A5','A19','A11','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','When I needed to run Linux, I chose NixOS','Y','Y','Y','Y','','Y','Robots','Targetable configs (running any software from any time)','Modularity (both inputs and outputs)','Tight feedback loop for changes','Easier way to bundle closures for deployment. \r\nBetter ootb secrets management. \r\n','I truly do not know. ','Y','','','','','','','','','','Sway, hyprland','nixos-generators\r\ncachix \r\ndream2nix\r\nagenix\r\nflake-parts','poetry2nix\r\nnode2nix\r\nflake-utils \r\nflake-utils-plus',''),(71,'1980-01-01 00:00:00',5,'en','219299988','A2','A3','male','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I wanted a declarative system','','Y','','','','','Y','','','','','','','','','','Y','','','','A2','A7','A1','','','','','','','','A4','A5','A6','','','','','','','','','','','','',NULL,'Arch linux','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','A3','A17','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Nix is too complex','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I wanted a declarative system','Y','','','','','','','Declarative configuration','module system','package availability','Documentation','Arch Linux','Y','','','','','','','','','','BSPWM','','',''),(82,'1980-01-01 00:00:00',5,'en','990617698','A5','A5','male','','','','','','','Y','Y','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','Y','','','','','','','','','Y','Y','','','','A2','A1','A9','','','','','','','','A8','A9','A10','','','','','','','','','','','','',NULL,'','A6','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A4','A2','A15','A9','A13','A8','A1','','','','','','','','','','','','','','','A8','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(73,'1980-01-01 00:00:00',5,'en','334285675','A5','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A7','I wanted to declaratively manage packages my dotfiles depend on','','Y','','Y','','','Y','','','','','','','Y','','','','','','','A2','','','','','','','','','','A5','A14','A15','','','','','','','','','','','','',NULL,'system package manager','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','N','N','Nothing. Using nix feels like it vendor locks my configurations, so I try to depend on it as little as possible',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Get better documentation. Actually migrate to the new nix command. Make it possible to use the binary cache without chroot shenanigans.'),(74,'1980-01-01 00:00:00',5,'en','190851522','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A4','A3','A15','A21','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Declarative configuration','Rollbacks','','','Guix or Fedora Silverblue','Y','','','Y','','','','Y','','','Sway','Agenix','',''),(75,NULL,2,'en','2008814437','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','As an enthusiast, I\'ve jumped around from distribution to distribution. After landing on Arch for a period of time, it eventually became bloated with all the one off installs that get forgotten about. At some point, these packages began to cause issues with updates. It became a hassle to manage constantly.\r\n\r\nNix offered something different, manageable, reproducible, exciting. I am not a programmer or developer by trade/profession but do tinker with Python/Go. However, I enjoy the learning challenge. I\'ve barely scratched the surface of understanding the language, but I am more intrigued than ever.','','','','','','VMWare','Y','','','','','','','','Y','','Y','','','','A6','A9','A4','','','','','','','','A4','A14','A5','','','','','','','','','','','','',NULL,'I\'d continue hopping from distribution to distribution, through Nix.. I\'ve learned about Guix. Not sure if it\'d keep me as interested as Nix does.','A2','','','','Y','','','','','','','','','','','','','','','','','','I don\'t even know?','A2','A9','A17','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Lack of experience and understanding. However, if the proper resources become available for creating/developing a package and how to upstream that.. I\'d be more than happy to contribute.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(76,NULL,1,'en','1843452895','A1','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(77,'1980-01-01 00:00:00',5,'en','1701939170','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','','','','','','','','Y','','Y','','Y','','A2','A3','A1','','','','','','','','A6','A2','A5','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','A15','A22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(78,'1980-01-01 00:00:00',5,'en','546843634','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Intrigued by the efficient workflow of building a immutable desktop Linux OS. 10+ years ago this was miles better than the solutions i had based on Ubuntu and ArchLinux.\r\n\r\nStayed because of nixpkgs being a better alternative to AUR, the large package repository and the ideas behind Nix: i did not care whether Nix would make it, as long as the ideas behind it would be adopted by the software development community in general.','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A6','','','','','','','','A8','A3','','','','','','','','','','','','','',NULL,'asdf? ArchLinux? Docker?\r\n\r\nMaybe look into other buildsystems?','A1','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A2','A1','A7','','','','','','','','','','','','','','','','','','','A2','A1','A7','','','','','','','','','','','','','','','','','','','','Y','','overrideAttrs','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same as Nix. NixOS was the main contributor for adopting Nix.','Y','','','','','','','Declarative','Immutable','Large package repository ','Have fully tested \'profiles\' available. For instance one option for a full gnome desktop or a full out of the box sway profile.\r\n\r\nBased on flakes.\r\n\r\nCommand line for adding package to \'configuration.nix\' instead of adding one to a profile. Profiles make my system non-declarstive','ArchLinux or MacOS','Y','','','','','','','','','','i3 or sway','Devenv.sh','nixops','Nice survey!\r\nThe distinction between Nix and NixOS in the survey is sometimes a bit confusing 😅'),(79,'1980-01-01 00:00:00',5,'en','63127146','A5','A4','male','','','','','','','','Y','','','','Y','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','Y','Y','','Y','','','','','Y','Y','Y','Y','','','A2','A6','A3','','','','','','','','A7','A8','A6','','','','','','','','','','','','',NULL,'MacOS','A1','','','Y','Y','Y','','Y','','','','','','','','Y','','','','Y','','','','A4','A3','A2','A5','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','Y','','','','','','','','','Y','','','','','','','','','','Hyprland','home-manager, nix-darwin','',''),(81,NULL,2,'en','1991315010','A5','A2','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I think I just started hearing a lot of hype about nixos as a distro, went to check it out, and got hooked on the idea of reproducibility','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A3','','','','','','','','A9','A8','A13','','','','','','','','','','','','',NULL,'I guess I\'d lean harder on containers and apt/pacman/brew/whatever. Or guix I guess idk','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A13','A15','A3','A10','','','','','','','','','','','','','','','','A19','A2','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I\'ve never really contributed upstream before and I know that the criteria for PRs on nixpkgs is pretty rigorous. I\'d like to contribute at some point though',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(80,'1980-01-01 00:00:00',5,'en','2028453445','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A7','A1','A2','','','','','','','','A2','A7','A3','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','2020: the edges of my circles began name-dropping Nix; the idea of declarative system config stuck with me but i didn\'t switch.\r\n2021: introduced nixpkgs and single-user nix into my workplace for managing our toolchain.\r\n2022/Feb: took a second approach at self-hosting (DLNA, email, Matrix, ActivityPub). kept breaking things.\r\n2022/Mar: migrated the server to NixOS for its ability to roll back to earlier configs.\r\n2022/May: ported my Arch desktops to NixOS after being familiar with its use for servers.','','','Y','','Y','','','rollbacks','reproducibility','immutability','- faster evaluation.\r\n- break large packages like webkitgtk or qtwebengine or linux into smaller atoms -- for faster rebuilds (maybe recursive nix).\r\n- better way to manage multiple deployments of the same service (`services..enable` almost always maps to a single instance of the service).\r\n- better runtime isolation of packages (few user programs need access to all of /home/).\r\n- immutable FS (or impermanence) by default.','Arch Linux or maybe something Portage-based.','Y','','','','','','','','','','sway','- Nix User Repository\r\n- NixOS Matrix Space','- Home Manager (i manage my entire system with one NixOS repo, so it was confusing to have separate system/user activations/profiles).','i\'m not confident i answered the \"Nix User Questions (not NixOS)\" section at all how you wanted me to. i use NixOS, and my use of Nix is strictly subordinate to that: if i include a `default.nix` in some project repo, that\'s *only* to help me build/deploy it on my NixOS system.\r\n\r\ni thought you were asking about Nix-the-build-system, but then one of the questions mentioned nixos-rebuild which is pretty far into NixOS territory. so when you asked about language-level support i was totally unsure where in the stack you\'re speaking about: shelling out to Perl during nixos activation? building Python packages using nix? calling nix APIs/bindings from a C++ binary?\r\n\r\ni\'m not sure where the border you\'re looking for between NixOS and Nix is supposed to be.\r\n\r\n\r\nMatrix: @colin:uninsane.org should you wish to contact me regarding anything in this survey.'),(83,'1980-01-01 00:00:00',5,'en','1153474951','A2','A3','fem','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I first heard about Nix because due to talking to other Haskell, programmers, and they recommended it as the best way to configure your Haskell toolchain. I was initially sceptical about using a whole new package manager just for my Haskell projects, but after some distro hopping on my personal laptop I\'ve decided to finally give NixOS a try.\r\nIt was quite difficult at first, since I have not quite wrapped my head around the fact how fundamentally different NixOS from other regular distributions. I was also being confused by flakes, and whether to use them from the start, or not, and how to use them best. But eventually things started to fall into place, and I understood both how NixOS and packages in Nixpkgs work.\r\nNowadays I don\'t use a linux machine as a personal computer, but I do use nix for building my various software projects, managing my user files with home-manager and nix-darwin, and have also deployed custom NixOS LXC and docker images for work use. I\'ve also ended up making a couple contributions to Nixpkgs.','Y','','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','','A2','A8','A5','','','','','','','','A8','A14','A10','','','','','','','','','','','','',NULL,'','A6','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A2','A1','A15','A17','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A2','','Y','','Y','','','','','Stability, and ease of updates','Reproducibility, I can move one system configuration from one physical machine to the next with minimal changes','Declarability, when looking at a system I have not touched in a long time, I can easily see what was done to it by looking at it\'s module configuration.','','','Y','','','','','','','','','','','','',''),(84,'1980-01-01 00:00:00',5,'en','1601972608','A5','A4','fem','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Interesting concept, like the immutable aspect of system and package management.','','Y','','','','','','Y','','','','','','Y','Y','Y','Y','Y','Y','','A2','A7','A1','','','','','','','','A9','A13','A5','','','','','','','','','','','','',NULL,'Guix.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A15','A9','A20','A14','A13','','','','','','','','','','','','','','','','A2','A13','A15','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','Y','','Y','','','','','Immutable package installs','Atomic upgrades','Simplified system configuration management','I\'d make the nix language easier to understand and have more examples on the web to help learn how to use the language easier.','Guix','Y','','','','','','','','','','','','',''),(85,'1980-01-01 00:00:00',5,'en','600722090','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','bored','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A7','A2','A1','','','','','','','','A8','A5','A13','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A15','A3','','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','','DWM','','',''),(86,'1980-01-01 00:00:00',5,'en','1906749192','A5','A4','male','','Y','','Y','Y','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Reproducible builds. Reproducible system. Documented system. Sane defaults.','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A14','A5','A6','','','','','','','','','','','','',NULL,'Bash Scripts (or Guix if that existed)','A4','','','','Y','Y','','','','','','','','','','','','','','','','','I rolled my own with Python once...','A2','A3','A4','A13','A21','A15','A1','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I\'m almost getting there. I have contributed a little Nix code to the wiki.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was using Ubuntu and I couldn\'t remember all the things I tweaked on my system, wasting a lot of time on that stuff. I understood I needed NixOS for a documented reproducible system. It was also good for Haskell development. I wanted to switch from Ubuntu, but held off because of analysis paralysis for a few years, justifying it on not wanting to learn a new DSL for it. But I finally got started with a (Linode) server. An old laptop. Then another laptop to prove to myself I could use it to access my Windows work desktop. Then my daily driver. Now I trust it for everything, pretty much. I need to work out secrets management, though.','Y','','Y','','','','Personal Computing','All my system and user-space configuration in one place, under version control. I have a changelog for my system because it\'s in version control, I know when I installed what and with proper comments, why.','I have access to everything in Nixpkgs. **All the things**. Switching to Emacs 29 was a simple one line tweak to my services. And removing it would be a simple easy task. I can install anything I want and remove it just as quickly.','Rollbacks are quick, but I never have to use them. Yet there they are reassuring me in my boot menu.','I would make it so that all users had full access to the information contained in three manuals (nix, nixpkgs, nixos), a discourse site, a wiki, a matrix server, and a discord server.','Guix, I suppose, or what I used to use, Bash scripts written in a functional sort of way.','Y','','','','','','','','','','Sway','I\'m still learning, so haven\'t noticed anything so far that I use regularly.','I started committing to NixOps but stopped due to the mean-spirited political postings of the main contributor on Twitter.','Nah that\'s all.'),(87,'1980-01-01 00:00:00',5,'en','249541316','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','Y','','','','','','','','Y','Documentation and samples are difficult to understand ','','','','','Y','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(88,'1980-01-01 00:00:00',5,'en','267596942','A2','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I am linux user since 2004, (Debian, Gentoo, Arch I used on personal purpose and RHEL, SLES on my job ). First time I heard about NixOS on linux related forum, and idea of reproducible build looking interesting for me. I looked some demos on NixOS site and that is great! ','','Y','','','','','Y','Y','','','','','','','','','Y','','Y','','A2','A3','A1','','','','','','','','A5','A4','A9','','','','','','','','','','','','',NULL,'In this case I am use standard distribution tools. ','A1','','','','Y','','','','','','','','','Y','','Y','','','','','','','','A4','A3','A2','A5','A17','A19','','','','','','','','','','','','','','','','A19','A4','A3','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I have no relevant nix skills at the moment, I make some packages for personal usage, but it is \"fast developed\" nix derivations. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','As I mentioned before first time I heard about NixOS on linux related forum and ideas of declarative building of system looked great for me. ','Y','','Y','','','','','Declarative system configuration ','Reproducible deployment of systems ','nix-shell environment ','I wish to add possibility to enable \"binary packages\" i.e one package - one archive like on other distributions (Arch packages, bin packages on Gentoo). I know about nix-store --export and nix-store --import, but I think possibility to have archive packages will be good for fast deployment. ','I use standard distribution tools','Y','','','','','','','','Y','','bspwm, awesome wm','I am use nix repl regularly (One of the cool and useful thing!), I think you need to add some questions related it. ','I have no such projects.','Thank you for your hard work! NixOS is awesome linux distribution! '),(89,'1980-01-01 00:00:00',5,'en','723788306','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I first started when I switch to NixOS as my main distro.','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A7','A10','A1','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'No single tool could replace it. Maybe Ansible for declarative systems. ','A2','','','','Y','Y','Y','','','','','','','','','','','','','','','','','A2','A5','','','','','','','','','','','','','','','','','','','','A2','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I used to break and have to rebuild my install. I tried to automate that and found NixOS. Ironically I don\'t need to rebuild my install since rollbacks are so easy on NixOS that I no longer need to reinstall ','Y','','Y','','','','','Declarative configuration','Easy rollback to previous generations','Huge package repository','Application stability. Especially when I tried to switch to Wayland.','Arch','Y','','','','','','','','Y','','','Home manager','','You all rock'),(90,NULL,3,'en','1631372337','A5','A3','fem','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was tired of Arch, Ubuntu, etc and managing my system/package dependencies with such fragility.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','A1','A2','A10','','','','','','','','A9','A2','A4','','','','','','','','','','','','',NULL,'','A2','','Y','','Y','Y','','','','','','','','','','Y','','','','Y','','Y','','A13','A15','A4','','','','','','','','','','','','','','','','','','','A9','A11','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','-oth-','All of these except for merge access to nixpkgs',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Tired of Arch/Ubuntu/Debian. Upgrading and maintaining systems was a nightmare.','Y','Y','Y','Y','Y','Y','','Breadth of server configuration options already available in nixpkgs','Declarative OS management','Ease of extending my config with eg modules','','Arch or Ubuntu','Y','','','Y','','Y','','','','','Wayland/Sway',NULL,NULL,NULL),(91,'1980-01-01 00:00:00',5,'en','1645503714','A5','A3','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It solves real problems of system management in an elegant and novel way. Whole classes of problems evaporate with it. Having used Chef, Ansible, Puppet, Homebrew, Apt, dnf, and others, they are all fundamentally flawed and incomplete, and always left me feeling they left things broken and hacky eventually. Nix has made doing crazy things safe and reliable, opening a whole new world of power. The learning curve is steep though.','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A10','A6','','','','','','','','A2','A12','A11','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A2','A1','A7','A15','A9','','','','','','','','','','','','','','','','','A7','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','applyPatches','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','Y','','Declarative configuration','Many built-in modules','','','No idea, the thought isn’t pleasant.','Y','','','','','','','','','','Sway','poetry2nix, nix-update, impermanence, nix-Darwin, Home Manager, ragenix, devshell, flake-parts, bundix','Digga','I love Nix!'),(92,'1980-01-01 00:00:00',5,'en','347243669','A5','A5','male','','','','','','','Y','Y','','Y','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','','Y','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A3','A1','','','','','','','','A8','A5','A12','','','','','','','','','','','','',NULL,'Containers','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A15','A2','A1','A4','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(93,NULL,NULL,'en','1560597493',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(94,'1980-01-01 00:00:00',5,'en','405489697','A5','A3','fem','','','','','','Y','','','','','Y','','','','','','Y','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducible system configs instead of pile of shell scripts','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A9','A10','','','','','','','','A10','A8','A9','','','','','','','','','','','','',NULL,'crying','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','garnix','A17','A15','A5','A2','A6','','','','','','','','','','','','','','','','','A17','','','','','','','','','','','','','','','','','','','','','','Y','','patches on top of nixpkgs','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','Y','','','','','reproducibility','configurability','extensible','First class support for sandboxing of apps so they can\'t eg access all of ~','crying','','','','Y','','Y','','','Y','','i3','home-manager','',''),(95,'1980-01-01 00:00:00',5,'en','334492608','A4','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','','','','','Y','','','Y','','','','','Y','','Y','','','','A1','A3','A9','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'Guix','A4','','','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','','Y','','','','','','','','Guix','Y','','','','','','','','Y','','','','',''),(96,'1980-01-01 00:00:00',5,'en','477396462','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A7','This starts off as I was using Rocky Linux (RHEL clone) because I use Podman for container management instead of Docker. A while later, I was introduced to Ansible and used it for a while to setup my Rocky Linux **servers**. On desktop, I use Arch Linux.\r\n\r\nA few people I follow on twitter started using NixOS in their personal capacity. I wondered why they did so. I tried NixOS and it blew my mind away. It had the expressiveness and \"stateful\" behaviour of Ansible, the modularity of Arch Linux and the rollback behvaiour [not exactly but very similar] akin to ZFS. Getting the LTS Linux kernel was a blessing on top (because I use ZFS and it doesn\'t support the latest stable releases of Linux soon enough).\r\n\r\nEver since, I\'ve been trying to migrate as much from Rocky Linux and Arch Linux to NixOS where possible. **NixOS is the only Linux distribution that I can use on Desktops and Servers.**\r\n\r\n(Though, the only reason why I haven\'t deployed NixOS on every server I own is because I need SELinux support for containerisation.)','Y','','','','Y','','Y','Y','','','','','','Y','Y','','Y','','','','A7','A10','A1','','','','','','','','A4','A6','A5','','','','','','','','','','','','',NULL,'It\'s not like I was unhappy with my prior setup. It\'s just that with NixOS, I didn\'t have to make a choice between Rocky Linux and Arch Linux based on the application. I can just tune `configuration.nix` for that particular usage and it\'s all set.','A4','','','','','Y','','','','','','','','','','','','','','','','','','A15','A2','A17','A3','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A2','','Nothing yet. I\'m still new so haven\'t gotten around the usual gotchas of NixOS and/or Nixpkgs. At the moment, I am not missing any package that was available in Rocky Linux and/or Arch Linux (including the AUR) that isn\'t available in Nixpkgs. So that\'s another reason.\r\n\r\nBut if I see a need or see something interesting to contribute to from the community posts, I will contribute! :)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Umm, I think this is a repeated question. I have replied to this already :)','Y','','Y','','','Y','','The \"stateful\" configuration of NixOS','Cross architecture support of NixOS. I have x86, ARMv8 and RISC-V machines. If I use one distro, I want it to work on all three architectures.','Rollback is quite nice to have :)','1. I want to add SELinux support so I can deploy Podman containers worry free on NixOS.\r\n2. I like the \"no release\" aspect of Arch Linux. Since NixOS can be easily rolled back to a previous working state, I would like to add a \"rolling-release\" release to NixOS. That, in my use case, will not interfere with a server deployment.','I think I mentioned this too. But TLDR: Arch Linux on desktop and Rocky Linux + Ansible on servers.','Y','','','','','','','','Y','','I\'ve yet to see a window manager equivalent to BSPWM on Wayland. But I will use that instead of KDE once I have that.','It is not a product per se and I don\'t \"use\" it regularly. But as I mentioned, I ~~need~~ want SELinux support in NixOS (like what is present in Fedora-based distributions) so I can deploy Podman containers worry free in a production environment.\r\n\r\nWhat I mean to say is, I have never in my life touched SELinux on Fedora-based systems to tinker with it and I probably never will. But what I want is the \"isolation\" that SELinux offers when I use Podman containers. I hope that I am clear.','None so far.','The previous SELinux statement might appear confusing to the survey analysts. Please reach out to me on `thefirst1322 [at] gmail [dot] com`.\r\n\r\nAlso, keep up the good work! You saved me a thousand bash scripts :p'),(97,NULL,1,'en','480743449','A3','A4','male','','Y','','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(98,'1980-01-01 00:00:00',5,'en','183152916','A1','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','live captions','','','','','','','','','','','','','Y','newbie journey','','','','','Y','Y','','','','Y','see other people configs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'didn\'t have all my packages that I use regularly and haven\'t seen other people configs yet ','easier install setup and able to clone other plasma wayland setups',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'don\'t know','don\'t know','Nixos still need better documentation especially with program overlay options. The graphical installer could be better if it lets you chose your file system type like brfts instead of ext4 and let you choose where to place the /home partition, especially when you got 2 drives. Better out of box experience on laptops.'),(99,'1980-01-01 00:00:00',5,'en','419181949','A1','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Being wanting to move to nixos for a while and managed to corrupt my drive so i took the opportunity to reformat and start my nixos journey.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A7','A2','A10','','','','','','','','A6','A9','A8','','','','','','','','','','','','',NULL,'I would still be using Arch with a mixture of dotfile managers and docker-compose.','A4','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','It\'s not software designed for usage by end users','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Being wanting to move to nixos for a while and managed to corrupt my drive so i took the opportunity to reformat and start my nixos journey.','Y','','Y','','','','','Reproducibility','Declarative Configuration','Ephemeral Root Storage','Better native docker-compose support','Arch with dotfiles','Y','','','','','','','Y','','','','','',''),(100,NULL,2,'en','1039650343','A2','A3','male','','','','','','','Y','','','Y','Y','','Y','','','','','Y','','','','Y','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It\'s the only distro in the past two decades doing something new and sensibile. ','Y','Y','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A7','A10','','','','','','','','A13','A3','A8','','','','','','','','','','','','',NULL,'Gentoo probably ','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','A15','A1','A2','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','Not enough time, too much churn in PRs, not enough documentation. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(101,NULL,1,'en','570550051','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(102,NULL,2,'en','11732809','A5','A5','fem','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','','A2','A3','A10','','','','','','','','A4','A7','A5','','','','','','','','','','','','',NULL,'Debian/Ubuntu','A4','','','','','','','','','','','','','','','','','','','','','','Nomad','A2','A22','A14','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(103,'1980-01-01 00:00:00',5,'en','781970051','A5','A5','male','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I thought I could configure everything - including app configs. This was appealing to avoid all the inconsistencies between distributions. I\'d use Mint for some things, Fedora others. So Nix and Nixos appealed as one solution and one learning curve.','','','','','','','Y','Y','','','','Y','','','','','Y','','','','A7','A1','','','','','','','','','A8','A4','A5','','','','','','','','','','','','',NULL,'I\'d try Guix, but otherwise try some method for consistency across devices such as self made scripts.','A2','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Still learning...','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Distro hopping and stumbled upon NixOS. Found it a steep learning curve, but like the concept.','','','Y','','','Y','','The ability to have common builds across devices with additional machine specific variations.','','','As s novice user, more support for learning. Also better debugging - I currently have lots of strange behaviour and I don\'t know if it is NixOS, the package, or my approach to the configuration.','I\'d try Guix, but probably Fedora.','Y','','','','','','','','Y','','','No','','Keep up the good work!'),(104,'1980-01-01 00:00:00',5,'en','1471478914','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted a sane way to manage packages and their configurations in a single place.','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','','Y','','Y','','A2','A6','A10','','','','','','','','A8','A4','A9','','','','','','','','','','','','',NULL,'Ah hahahaha. Please no. Probably go back to Debian for servers and a mishmash of asdf, brew, etc. ','A1','','','','Y','','','','','','','','','','','','','','','','','','','A9','A15','A22','','','','','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I contribute when I run into issues.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Single place to manage packages and their configs. ','Y','Y','Y','Y','','','','Single place and way to install and configure packages','','','','Debian','Y','','','','','','','','','','','','','Nix and NixOS are both awesome. Thank you to the community and leaders!'),(105,'1980-01-01 00:00:00',5,'en','2145335344','A5','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','When I started using NixOS, I picked it up to configure nixos, and then ended up using it for home-manager and my personal projects.\r\n\r\nThen I convinced my coworkers that it solves a lot of the CI problems we faced, and now use it for work as well in order to create reproducible project builds, CI testing/development environments.','Y','Y','','','','','Y','Y','Y','','','Y','','','Y','Y','Y','Y','Y','','A2','A5','A10','','','','','','','','A2','A11','A8','','','','','','','','','','','','',NULL,'I\'d build my own functional package manager using overlayfs, and use package definitions from Gentoo portage packages.','A2','Y','','Y','Y','Y','','','','','','','','Y','','','','Y','','','','','','A2','A3','A22','A15','','','','','','','','','','','','','','','','','','A2','A15','A22','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','All my desktops/laptops/servers','A2','I was a Gentoo user, and was pretty happy except for dependency conflicts in packages like cmake. Considered making a distro where every package was an overlayfs of its files and it\'s dependencies as lower layers, with some user namespace wrappers for adding stuff to system path.\r\n\r\nDiscovered nix/guix were a thing already. Played around with Guix but wasn\'t happy with it. Gave NixOS a try and was sold.','Y','Y','Y','','','Y','','Atomic updates and rollback','impermanence (wiping rootfs on boot to ensure all state is managed, and machine is in good, known state)','Reproducible system from flake in git','I would add easier sandboxing and permission control for daemons and programs, as well as tooling to start userns sandboxes with a subset of nix store paths available. I\'d like to also set programs to run as other users with lesser privileges. I would also have packages declare what files they modify/use to make it simpler to manage state, and persist state files for certain programs.','Gentoo or a custom distro','Y','','','','','','','Y','','','','impermanence, home-manager, emacs-overlay, nixos-hardware, nixgl, mach-nix, pip2nix','flake-utils, flake-parts, dream2nix',''),(106,'1980-01-01 00:00:00',5,'en','769057352','A7','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','It sounded interesting and I like playing with Linux and related projects','','Y','','','','','Y','','','','','','','','','','Y','','','','A1','A2','A6','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Debian','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Learning','N','N','I plan to switch my laptop to NixOS, from Debian + Nix',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Nix is great! As a newbie, I find it hard to find a clear starting point and path to follow in learning.\r\nI followed a guide on nixos.org to install nix on my Debian system. Then followed a guide from somewhere else to install home-manager. Then months later\r\nhad trouble with version inconsistencies between the two. I couldn\'t find a guide to help with that, eventually found help on reddit, but it was a long and tedious experience.'),(107,'1980-01-01 00:00:00',5,'en','1628823027','A4','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Found out about it through discussions on the r/unixporn server, installed NixOS to try Nix out, fell in love.','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A7','A1','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'Probably Pacman from Arch Linux','A2','','Y','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A13','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of knowledge','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Learnt about it on the r/unixporn discord server, decided to install','Y','','Y','','','','','Declarative configuration model','Reproducible system configurations','Rollbacks','Standardise the commands and improve documentation','Void or Arch Linux','Y','','','','','','','','','','AwesomeWM','','',''),(108,'1980-01-01 00:00:00',5,'en','1647745137','A5','A4','male','','','Y','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It\'s the philosophically correct approach. As an engineer for decades and a functional programmer, I understand the value of immutability, so the moment I learned of nix*, I knew I had to learn it and follow it and help it succeed.','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A2','A1','A10','','','','','','','','A5','A14','A15','','','','','','','','','','','','',NULL,'Oh God... \r\nFor os, I\'d still use Darwin, which I also use now, but for Linux distro probably Ubuntu\r\n\r\nFor packaging, probably I\'d be stuck with brew and apt 😭','A4','','','','Y','Y','','','','','','Y','','','','','','','','Y','','','','A11','A13','A15','A4','A5','A3','A9','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same as \"why nix?\"','','','Y','Y','','','','Determinism in builds ','Atomicity','Immutability & sharing/reusability ','Oh Jesus... I\'d probably replace the \"academic experimental seeming language nix\" as primary substrate for both configuration of os and packaging configuration repo language with a different, more well known or similar-looking statically typed functional language with real ide support.\r\n\r\nAnd I\'d obviously add usable, canonical docs that are helpful both as quick reference and as learning platform, side by side.','🤢🤮 Ubuntu and Mac and sadness ','Y','','','','','Y','','','','Y','','','Nixops',''),(109,'1980-01-01 00:00:00',5,'en','1621967769','A6','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','Y','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A7','','','','','','','','A8','A6','A12','','','','','','','','','','','','',NULL,'Guix','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A5','A15','','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','As a maintainer, I have zero merge rights, but all the responsibility. If I still have to wait and prod others for getting shit merged, I get discouraged and leave.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','Declarative config','Atomic activation/rollback','Package availability','Stabilize flakes\r\nHave 1st party secrets management\r\nAdd 1st party deployment orchestration','Guix System','Y','','','Y','','','','','Y','','','','',''),(110,NULL,NULL,'en','1345194667',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(111,'1980-01-01 00:00:00',5,'en','278908959','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Some “dumb” developer introduced as part of a dev environment. I thought it was dumb. Over the years, I started to see the benefits. ','Y','','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','Y','','A7','A2','A6','','','','','','','','A8','A12','A5','','','','','','','','','','','','',NULL,'Some crappy assembly of scripts. ','A4','','','','Y','Y','','','','','','','','','','','','','','','Y','','','A2','A20','A11','A9','','','','','','','','','','','','','','','','','','A2','A11','A10','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','Deterministic upgrades and rollbacks','Easy of deployments','Deterministic configuration ','Remove all non-flake options other than nix-shell.','','Y','','','','','','','','','','Sway','Poetry2Nix','Digga',''),(112,'1980-01-01 00:00:00',5,'en','146864680','A5','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I saw someone post about their NixOS configuration and I found it fascinating since it seemed to configure things with far less effort than my manual steps on other Linux distributions. After learning more about Nix and the many problems that it solves, I jumped in!','Y','Y','','','','','Y','Y','','Y','Y','','','Y','Y','Y','Y','Y','','','A1','A3','A7','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'I would still be using Docker and continuing to be frustrated with its many flaws.','A4','','','','Y','Y','','','','','','','Y','Y','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','The NixPkgs repository is very large and it can be difficult to know whether some changes are safe or not until hours or days later. It is also very difficult to find what to change or where to add new things. Even more difficult is learning about the large amount of infrastructure already in the repository. Documentation would help a lot.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I saw someone talking about configuring their NixOS system and thought it was fascinating. I installed it on my new Framework laptop at the time and fell in love immediately! Declarative system configuration is what drew me in and I stayed because of the large package repository, easy rollbacks, and how NixOS made managing multiple systems a breeze when paired with flakes.','Y','','Y','Y','Y','','','Declarative system configuration','Safe modifications thanks to rollbacks','The module system and how easy it is to add new modules','Home Manager would be first-class, allowing for user home configuration out of the box.\r\nNaming for module options, functions, etc would be standardized. Either camelCase or kebab-case. Right now it\'s a mix and can be difficult to remember (or guess) which is right.\r\nDoc comments would be standardized in a way that makes them both easier to write and parse. Generated documentation for pkgs.lib would then be more feasible.\r\nAn easy, standard solution for secret management that would work out of the box for many users. Enabling declarative secrets would bring serious deployment capability to NixOS. Right now the best we have is DetSys\'s Vault Agent module which isn\'t quite perfect.','Arch and I would be manually installing the OS, packages, and configuration files (Stow).','Y','','','Y','','','','Y','','','','Snowfall Lib & Snowfall Flake\r\n\r\nhttps://github.com/snowfallorg','','NixOS is an incredible leap forward from all of the other computing experiences I\'ve had in my life. I\'m very excited for the work being done to make it even better.'),(113,'1980-01-01 00:00:00',5,'en','1619306108','A2','A5','male','','','','','','','','','','','','','','','','','','Y','','Y','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A6','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'','A6','','Y','','Y','Y','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(114,'1980-01-01 00:00:00',5,'en','1527707372','A5','A3','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I\'m write software in a functional language for my day job and I\'ve seen the stability and simplicity that immutability and atomic updates can bring to complex systems. When I interact with software of any type I want it to work for me, not me for it. That means if I have to manually handle breaking changes or restart my system or fix a problem that I didn\'t immediately cause, I\'m unhappy. I\'m willing to pay a large cost in learning a new system if it will give me stability, and Nix has promised and delivered on that stability.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A7','A1','A2','','','','','','','','A5','A14','A3','','','','','','','','','','','','',NULL,'Guix','A4','','','','','Y','','','','','','','','','','','','','','','','','','A20','A5','A1','A9','A2','','','','','','','','','','','','','','','','','A20','A5','A1','','','','','','','','','','','','','','','','','','','Y','','Y','','A1','','Reproducible builds for the JVM seems to still be early days, and I\'m not at all proficient with Nix.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I wanted a stable (read - won\'t break on update) system. Atomic rollbacks brought me in, but I stayed for the declarative setup.','Y','','Y','','','','','atomic rollbacks','declarative system configuration','reproducible builds','I\'m pretty self-conscious about disk efficiency. My nix store on my personal machine is greater than 500GB and I\'m not sure how to make that number go down. Storage is relatively cheap but I don\'t want to have to feed another terabyte to the store just to keep going.','Guix, maybe Fedora Silverblue.','Y','','','','','','','','','','i3wm','','Flakes - I\'ve started using the web gui for package search because once I enabled the flakes command a `nix search nixpkgs` invocation would start downloading megabytes of something.','Thank you for the stability - I feel like every other operating is moving towards more invasive and less stable software, with NixOS I know it will Just Work tomorrow.'),(115,'1980-01-01 00:00:00',5,'en','154944209','A2','A3','male','','','','','','','','Y','','','Y','','Y','','','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducible environments of Spring Boot environments for local development and CI. \r\n\r\nI hated that e.g. JDK, npm, yarn, … had to be globally installed on the CI servers and shared by all our projects. ','Y','','','Y','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','A2','A4','A10','','','','','','','','A8','A9','A1','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','Y','Y','','','','A5','A1','A15','','','','','','','','','','','','','','','','','','','A1','A19','A8','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Personally I was using Arch but not satisfied with the ability for configuration. \r\n\r\nAt work we were maintaining manually configured CentOS machines which we are to replace. ','Y','Y','Y','Y','','','','Declarativity','Rollback','Reuse ','','','Y','','','Y','','Y','','Y','','','','','',''),(116,'1980-01-01 00:00:00',5,'en','260821652','A5','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'m a control and neat freak.\r\n\r\nWas tired of Ansible recipes and cluttered scripts.','Y','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','Y','Y','','A1','A7','A2','','','','','','','','A4','A8','A6','','','','','','','','','','','','',NULL,'Ansible, Debian','A2','','','','Y','Y','','','','','','','','Y','','Y','','','','Y','','','','A9','A3','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','Reproducibility ','Ease of configuration','','Make Nix language more consistent and extend the stdlib','Ansible & Debian','Y','','','','','','','Y','','','','agenix\r\nhome-manager\r\nnix-lsp\r\nalejandra ','cachix',''),(117,'1980-01-01 00:00:00',5,'en','1055013468','A5','A4','male','','','','','','','','','Y','','','Y','','','','','','','','','','','','','','Y','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Changed computer','New language',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(118,'1980-01-01 00:00:00',5,'en','1223204479','A1','A3','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Declarative system management looks cool in NixOS. Then I tried on Mac and saw that Nix beats Homebrew in terms of package management convenience.','Y','Y','','','','','Y','','','','','','','Y','Y','Y','','','Y','','A2','A3','A10','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'Homebrew/pacman for package management.\r\n\r\nArch for NixOS.','A2','','','','Y','Y','','','','','','Y','','','','','','','','','','','','A3','A15','A13','A1','','','','','','','','','','','','','','','','','','A13','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Lack of time to do so, more personal thing. I find that Nixpkgs very welcoming to contributions otherwise compared to other repos.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Discovered declarative package management and wanted to manage dotfiles consistently across reinstalls. e.g. for window managers, widgets, desktop, and just underlying apps/daemons','Y','','','','','','','Declarative config management','Flake configuration','--','Way better API documentation, requiring less \"view from source\"\r\n\r\nBetter support for stage 1 init for Plymouth, etc.','Arch Linux','Y','','','','','','','','','','XMonad','Home-manager','',''),(119,'1980-01-01 00:00:00',5,'en','1523150868','A2','A2','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','got interested in reproducibility and started using nix','','Y','','','','','Y','','','','','','','Y','','','Y','','Y','','A2','A7','A1','','','','','','','','A5','A8','A3','','','','','','','','','','','','',NULL,'ansible, ig','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A17','A13','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','lack of skill set and responsibility','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','i\'m just starting to use it right now, again, because of reproducibility','','','','','','','vms','reproducibility','declarativeness','package availability','add a stable branch, say, with 2 years of support or more','rhel or its clones','Y','','','','','','','Y','','','awesomewm','home-manager, impermanence, sops','disko','thanks for your hard work, and wish this project to prosper'),(120,NULL,1,'en','1880480327','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(121,'1980-01-01 00:00:00',5,'en','2069774743','A5','A3','male','','Y','','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I heard great things about it, and decided to do an install on an old laptop. I took a few weeks to get comfortable, and then installed it on everything ','','Y','','Y','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A2','A6','','','','','','','','','','','','',NULL,'Probably pacman','A1','','Y','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A1','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I have previously. Ever time, it\'s super slow and painful. I rather just add a flake.nix to the source package and import than go through the hassle of getting it in nixpkgs ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using nixos with nix.','Y','','Y','','','','','declarative','Configurable amnesia','','More aggressive GC, stable Flakes, network changes without rebuild','Arch','Y','','','','','','','','','','Hyprland, xmonad, openbox','Flake utils? Rnix? Rather I have things with dependencies to eco-system projects.','deploy-rs, just use nix rebuild now.\r\n\r\nNix without flakes. I don\'t use it. Not even sure I\'d understand fully how to anymore','Yeah! I love Nix ❄️❄️❄️'),(122,'1980-01-01 00:00:00',5,'en','718464454','A2','A4','male','','','','','','','','Y','Y','','','','Y','','','','','Y','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Reproducibility','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A10','A5','A1','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Arch','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A3','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Reproducibility','Y','','Y','','','','','Declarative configuration','','','Reproducible distributed cross building','Arch','Y','','','','','','','Y','','','','','',''),(123,NULL,2,'en','939038145','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Recommendation from a friend. Then it got difficult, I switched back to Arch, only to discover to my horror that Arch I now find imperative operating systems terrible ','','','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A7','A10','A1','','','','','','','','A7','A5','A8','','','','','','','','','','','','',NULL,'Fedora','A4','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A4','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(124,'1980-01-01 00:00:00',5,'en','1060673895','A2','A3','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A9','A7','','','','','','','','','','','','',NULL,'Virtualenv and containers','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because I want a Linux System which I can declaratively configure. Ansible, Salt and Puppet ar just cheap afterthoughts with a lot of [maintenance] problems','Y','','','','','','','Declarative Configuration','Composability (e.g. one configfile can be used for a whole cluster, or just a specific config can be included, etc.)','Reproducibility','- Add apparmor or SELinux functionality\r\n- make flakes & nix-command stable\r\n- Add fully automated CVE triaging\r\n- fix the documentation mess','Debian/RHEL and Ansible for deployments.','Y','','','','','','','','','','XMonad','home-manager\r\nmusnix\r\nnixos-hardware','simple-nixos-mailserver',''),(125,'1980-01-01 00:00:00',5,'en','1209341656','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','First class zfs support and reliable automatic updates made me try nix for my NAS.','','','','','','','','Y','','','','','','','','','','','','','A7','A3','A5','','','','','','','','A6','A7','A5','','','','','','','','','','','','',NULL,'arch','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','i still have to figure out how to create a package.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','Y','','','','','automatic updates','zfs support','','easier to understand language','arch','Y','','','','','','','','','Y','','','',''),(126,'1980-01-01 00:00:00',5,'en','1479970191','A1','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','ex FreeBSD user, just really like the possibility of using nix to build OS for my daily use','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','Y','','A2','A3','A6','','','','','','','','A6','A9','A8','','','','','','','','','','','','',NULL,'FreeBSD','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A7','A9','A2','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','really liked nix wanted to try nixos','Y','Y','Y','Y','','','','ability to rebuild system from any nixpkgs commit','declarative configuration','uptodate packages','improved NixOS manual, ZFS as default filesystem','FreeBSD','Y','','','','','','','Y','','','','bundix','','keep up the good work !'),(127,'1980-01-01 00:00:00',5,'en','1347359564','A2','A3','male','','Y','','','Y','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Declarative configuration, even of single repo dependencies ','Y','','','','','','Y','Y','Y','','','','','','Y','Y','Y','Y','','','A2','A1','A9','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'Homebrew','A1','','','','Y','Y','Y','','','','','','','','','','','','','Y','','','','A2','A1','A5','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Packaging my Python apps is tedious since I need to update it manually for every version. The package itself is released via semantic-release in GitHub Actions after merging PRs.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','Declarative configuration','Hardware support','','Merge the options of nixos and nix-darwin where possible.','Ubuntu','Y','','','','','','','Y','','','','poetry2nix, flake-parts','devenv',''),(128,'1980-01-01 00:00:00',5,'en','1481535285','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','N','N','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I liked the idea of reproducibility. I liked the idea of isolating the installation, even though I\'ve never had conflicting packages with any other package manager. So I decided to give it a try;','Y','','Y','','','','','reproducibility','declarative configuration','','I would have thought of using Haskell at the very beginning of the project rather than introducing a completely new language, but I don\'t think it can be changed at this point. And it\'s not such a big deal as I try to avoid using it as much as possible anyway','Arch','','','','Y','','','','','','','Wayland River','home manager','nix-du: it was failing with an error','I try to configure my system using Nix language as little as possible, and not because it\'s a bad language, but rather because I just don\'t want to stick with it. so I use Nix to link config files from my dotfiles directory to places where programs expect them (before Nix I used Stow for this) and to configure stuff I can\'t configure natively. I also try to use Nix for plugin management as I don\'t want to have multiple package managers on my system. For example, I install neovim plugins with Nix and I would like to do the same for Zsh plugins and Minecraft mods, but I will never rerwrite my existing configs in Nix.'),(129,'1980-01-01 00:00:00',5,'en','236316857','A2','A5','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','Y','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A1','A2','A7','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'openSUSE','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A5','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','Make it more consistent, remove legacy for more simplicity','openSUSE','Y','','','','','Y','','','Y','Y','','search.nixos.org','agenix and similar. I don\'t think that is the right approach to secrets management. Secrets are not config. ','NixOS is great!'),(130,'1980-01-01 00:00:00',5,'en','1868107104','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Be able to try things with confidence I won\'t break anything, self-documenting system changes ','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A2','A5','A10','','','','','','','','A9','A4','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A17','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','New laptop, wanted to fully control the system','Y','','','','','','','Easily documentable system config','','','Better Nix interfaces with choosable backend.\r\nAbility to define a parametrized module in a file, and \'import\' it multiple times with arguments.\r\nBetter integrate Nix and NixOS module eval system.\r\nBetter isolate Qt programs, do not leak QT_PLUGIN_PATH in user environment if it\'s not useful!\r\nAbility to manage multiple profiles from a single NixOS config.\r\nBetter support to install the latest GUI apps, without incompatibilities, and maintain them up to date.','A stable distrib\' with Nix','Y','','','','','','','','Y','','','','','You rock (:'),(131,'1980-01-01 00:00:00',5,'en','160715067','A2','A4','male','','','Y','','','','Y','','','Y','','','','','Y','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','hint by work colleague','','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','','','','A7','A1','A2','','','','','','','','A9','A8','A12','','','','','','','','','','','','',NULL,'','A4','','','','','Y','Y','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','hint by work colleague','Y','','','Y','','','','rollback','declarative system','','','maybe Fedora?','Y','','','','','Y','','','Y','Y','','','',''),(132,'1980-01-01 00:00:00',5,'en','1908141310','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Forensic investigator','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Reproducible environments as a replacement for python venvs (specifically Nix shells, Nix flake devshells). It was the most sane way to easily pin all project dependencies to me, or Nixify academic projects with poor reproducibility, and patch specific programs. Nix also made it very straightforward to self package programs that were otherwise unavailable for my job.\r\n\r\nAdditionally, creating portable executables that I can i stall with dpkg or run as appimages on other distributions (specifically forensic Linux distro live images). Often some tools were missing and Nix was the easiest way to add them to my toolkit.','','Y','','Y','','','Y','Y','','','','','','','Y','Y','Y','Y','Y','','A2','A10','A5','','','','','','','','A1','A6','A12','','','','','','','','','','','','',NULL,'Probably Guix, although I am not a fan of lisp personally it is the next closest thing. If that did not exist, I might look into static linking and scripts to a lesser extent recreate what Nix offers.','A2','Y','','Y','Y','Y','Y','Y','','','','','','Y','','','','','','','','','I am not a developer by profession so I don\'t use CI, but Hydra looks most interesting if I had to pick.','A2','A3','A4','A15','A17','A22','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I do not believe I have the availability or commitment to be a maintainer, which it seems if I want to upstream a derivation or module, that is what is expected. I do closely follow Nix and NixOS development and in my opinion have a good understanding of the ecosystem, though.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','The idea that I can reproduce my entire system with all its configuration from a few config files was mindblowing to me and I was instantly sold on the idea. Now I don\'t even want to use anything else, whenever I have to use other distros or BSDs it feels like taking a step back.','Y','','Y','','','Y','','Reproducibility','Rollbacks','Declarative system configuration','Better support for security updates in response to CVEs. I want to be able to have something like partial updates or checking to see if there are vulnerable packages and only update those packages, but I cannot imagine how this would look or work in the context of Nixpkgs and NixOS. The way it is now is not great, IMO.\r\n\r\nI would also like to see a restructuring of module options w.r.t. X and Wayland environments, it does not make sense to me that the DEs are under services.xserver while standalone Wayland compositors are just services. It would be awesome to see a more unified way to configure a graphical desktop keeping in mind both Wayland and X support.\r\n\r\nAdditionally, I would like to see user environment management similar to home-manager, as it is quite awkward using it in single user systems with the separation between modules.','Probably GNU Guix, but it probably wouldn\'t exist if NixOS didn\'t either. In which case, I would not know. Tools like Ansible and Terraform do not fulfil the same function to the same ability for me.','Y','','','','','','','Y','','','Wayfire','Impermanence, home-manager, sops-nix, NixOS-WSL','',''),(134,'1980-01-01 00:00:00',5,'en','160304891','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Park Aide ','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A1','','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A14','A8','A5','','','','','','','','','','','','',NULL,'','','','','','','','','','','','','','','','','','','','','','','','','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I started using NixOS because the concept seemed interesting, and that concept was implemented an a good way so i kept using it','','','Y','','','Y','','','','','','','Y','','','','','','','','','','Sway','','',''),(133,'1980-01-01 00:00:00',5,'en','823735647','A1','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','declarative configuration','','','','','','','Y','','','','','','','','','Y','Y','','Y','','A1','A9','A10','','','','','','','','A5','A13','A4','','','','','','','','','','','','',NULL,'','A2','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','A5','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','declarative configuration','roolback','overlay','Add file manager as etc','','Y','','','','','','','Y','','','','','',''),(135,'1980-01-01 00:00:00',5,'en','404308044','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','','','Y','','','','Y','','Android(using nix on droid)','','Y','Y','Y','','Y','','A2','A1','A9','','','','','','','','A8','A9','A10','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','Reproduceble os: combined with rollbacks and git history of my config lets me hack my system fearlessly','Declarative config: allows me to keep everything about my system in one place one, git repo','Nixos options: allows me to quickly enable and configure services and programs','Faster eval times or keeping eval state in memory so subsequent evals of ayatem can be faster.\r\nThis would let me experiment with my config faster','Porably fedora or some rolling relaese and maybe with something like ansible','Y','','','','','','','','Y','','Hyprland','Home manager,\r\ncomma,\r\nnix-any-shell,\r\nnix-on-droid','','Thanks for everyone working on nix ecosystem'),(136,'1980-01-01 00:00:00',5,'en','998477286','A2','A5','male','','','','','','','','','','','','','','','Y','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','Community work','A4','NixOS','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A7','A1','A9','','','','','','','','A2','A13','A6','','','','','','','','','','','','',NULL,'Maybe some other CI language like Ansible.','A2','','','','Y','Y','','','','','','','','','','Y','','','Y','','','','','A2','A3','A1','A17','A18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Community work','A4','Looking for an free, open, save and reducible system.','Y','','Y','','','','','Reproducible builds','Declarative system management','Stateless system','Integrate home-manager','Perhaps Debian or Fedora','Y','Y','','','','','','','','','Hyprland and Sway','Home-manager with Flakes','','Of course THANK YOU!'),(137,NULL,1,'en','1240320224','A2','A2','male','','','Y','','','Y','','','','','Y','','','','','','','','','','','','Y','Y','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138,'1980-01-01 00:00:00',5,'en','371977933','A5','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using it first to deploy Prometheus/Alertmanager. Then I started using it to manage development servers and user home/dotfiles. In addition I started using it to replace my personal Archlinux machines. The declarative and version controlled nature of flakes is what really convinced me of NixOS\'s advantages.','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A1','A10','A2','','','','','','','','A2','A8','A6','','','','','','','','','','','','',NULL,'Guix :) Ansible or similar DevOps tools. Docker/podman for development environments. ','A2','','Y','','Y','Y','','','','','','','','','','','','','','','','','','A10','A1','A2','A5','','','','','','','','','','','','','','','','','','A2','A5','A1','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','I do contribute some but most of my work regarding nixpkgs involves the many lang2nix projects which often are completely separate from nixpkgs or would conflict with how nixpkgs manage language libraries.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as my answer in the Nix section, I used NixOS before using Nix on other OS.','Y','','Y','Y','','','','Declarative and reproducible configuration.','Large and extensible package library (nixpkgs)','Easy to deploy on physical, virtual, and container environments.','Add first-class secrets and state management (impermanence) support. Merge/improve Nix-on-nix containers. ','Guix :) Likely Arch for personal use and Fedora Silver blue for work. Development environments would likely be docker based instead of Nix devshell.','Y','','','Y','','','NixOS Autoupgrade','','','','Sway','yarn2nix, agenix, home-manager, composer2nix, devos/digga.','',''),(139,'1980-01-01 00:00:00',5,'en','502514653','A1','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Idempotency is not enough. A lot of stuff in my professional work has to be able to go from 0 to running in one smooth motion. So I\'m used to EVERYTHING as code and full automation of stuff. Nix enables that. Primarily though, I was sick of Devcontainers. I hop between repo contexts a LOT more than the average dev. So having the ability to go between fully fledged, pinned, working environments was a game changer. Containers were too brittle and not fully featured enough for stuff like attaching debuggers, or passing auth through.','Y','Y','','Y','Y','','Y','','Y','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'Chezmoi, Ansible/Chef/Puppet, Docker/Podman','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','A15','A6','A7','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','It\'s been really hard to learn and get confident with.\r\nWithout some documentation on what the mechanisms are and where to put stuff it\'s confusing to try and reverse engineer existing Nix projects','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Devcontainers weren\'t cutting it. I hop repos and contexts a LOT for work.\r\nAlso I\'m tired of polluting my o/s and winding up with system dependency hell','Y','Y','','','','','','Reproducible development environments','Short-term shell contexts with packages available','Reconfiguring my entire machine out of a flake','Maybe NixLang is a little too sharp a tool. Feels like you have to write a lot of boilerplate to get stuff going, it\'s difficult to communicate stuff like input schemas to consumers.','Ansible/Puppet/Chef, Docker/Podman, Chezmoi','Y','','','','','','','','','','','poetry2nix','Terranix','Love you guyssssss'),(140,'1980-01-01 00:00:00',5,'en','359503485','A2','A3','male','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A7','A1','','','','','','','','A12','A8','A1','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A5','A1','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','to have a known and immutable system state','Y','','Y','','','','','declarative system configuration','configuration abstraction layer with good defaults','bootloaders for past generation in case sth. breaks','','','Y','','','','','','','','','','swaywm','mobile NixOS','',''),(141,'1980-01-01 00:00:00',5,'en','1888625704','A5','A2','-oth-','Demiboy','','','','','','','','','','','','','','','','','Y','','','','','Y','','Hobbyist programmer','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','Y','','A1','A7','A6','','','','','','','','A5','A6','A3','','','','','','','','','','','','',NULL,'A variety of tools, like apt and dotbot','A1','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A2','A17','A15','','','','','','','','','','','','','','','','','','','A1','A15','A17','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'N','N','More time to set it up',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Home-Manager\r\nnixpkgs-fmt\r\nNix User Repository','nix-env (use Home-Manager instead)','You\'re doing a great job.'),(142,NULL,1,'en','2117756872','','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','Y','Settings, can be applied with GUI, but they don\'t save. For example, of KDE. If it\'s still actual (correct).','','','Y','Sometimes software that was developed for mutable distributions, needs to be patched to build and run on NixOS. I would like to see guides on this. By the way, it would appeal people to become maintainers and packagers, I think. There are many hacks been implemented in packages in Github Nixpkgs, but not commented still there.','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(143,'1980-01-01 00:00:00',5,'en','1069001610','A5','A5','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','General computing ','A1','I used to use ansible to manage my desktop. Automation for uniform configuration as code. ','','Y','','','','','Y','Y','','Y','','','','Y','','','Y','','','','A2','A1','A10','','','','','','','','A15','A6','A4','','','','','','','','','','','','','I would love to see the gui installer put down an setup using flakes, home-manager, and associated opinionated structure. \r\n\r\nIt would also be amazing to get an opinionated hyprland as an installation option. ','Linux with ansible. ','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A15','A2','','','','','','','','','','','','','','','','','','','A9','A15','A1','','','','','','','','','','','','','','','','','','','','Y','','','-oth-','I’m too new to nix to be contributing ng at this point. Need more experience. ',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Config as code for my desktops. ','Y','','Y','Y','','','','Automation ','Fast roll backs','','Opinionated docs on the “right way” to do things. There are a billion ways to do the same thing. Very overwhelming for a newcomer who just wants to get a system up and running. \r\n\r\nGUI installer using flakes, home manager and opinionated structure from the get go. \r\n\r\nNice to have - hyprland as an option in the gui installer. ','Linux w/ ansible. ','Y','','','','','','','Y','','','Hyprland ','None yet. ','I’m too new. ','Once you get over shaving a yak for 1-2 month, it really starts to shine. But many give up before getting there. That’s why I harp on the opinionated install. Haha. '),(144,'1980-01-01 00:00:00',5,'en','1714025013','A2','A4','male','','','Y','','Y','Y','Y','Y','','Y','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','My distro hopping journey lead from Gentoo to NixOS some day.','','Y','','','Y','','Y','','Y','Y','','','','','Y','Y','Y','Y','','','A2','A7','A8','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A13','A2','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','Atomic rollbacks','Declarative configuration ','Rolling release ','An easy way to just start traditional binaries without hassle ','Gentoo','Y','','','','','','','','','','EXWM (emacs)','','',''),(145,'1980-01-01 00:00:00',5,'en','786175395','A7','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','I initially heard about nix on the linux unplugged podcast and was interested to learn more about it.','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A1','A2','A8','','','','','','','','A4','A1','A5','','','','','','','','','','','','',NULL,'I would’ve continued using arch.','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Time in my personal life.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I heard about nixos on the unplugged podcast and was curious about the immutable nature and the ability to roll back to a working configuration as I had a tendency to make changes just before an important event.','','','Y','','','','Desktops and laptops','Reproducibility ','Declarative configuration allowing for a record of my previous configurations','Ability to quickly and efficiently manage my machines through shared configuration.','n/a','I would continue using arch linux','Y','','','','','','','Y','','','','n/a','n/a','Please continue doing wonderful work, it’s wonderful to see such a project being loved by the linux community.'),(146,NULL,1,'en','2048879244','A1','A2','male','','Y','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(147,NULL,2,'en','932700159','A5','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','Y','','Y','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A3','A7','','','','','','','','A8','A9','A13','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','Y','','','','','','','','','','Y','','','','','','A2','A15','A22','A8','A3','A4','A17','','','','','','','','','','','','','','','A15','A2','A22','','','','','','','','','','','','','','','','','','','','Y','Y','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(148,'1980-01-01 00:00:00',5,'en','397859414','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to test it for my Haskell projects after I saw other people using it.','','Y','','Y','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A10','A6','','','','','','','','A10','A14','A13','','','','','','','','','','','','',NULL,'Probably single purpose build tools like stack, pip, etc.','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A2','A1','A4','A11','A15','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was already using nix and just wanted to try it','Y','','Y','','','','','Reproducible builds ','OS configurations','Development environments','','FreeBSD, maybe guix','Y','','','','','','','','Y','','xmonad, qtile','Home manager','',''),(149,'1980-01-01 00:00:00',5,'en','630607557','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','chrome os, android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I have a lot of different machines (including virtual machines) that I use. I regularly switch amongst them or build new ones. So I liked the idea of being able to reproduce my configuration as I switch machines. I also liked the idea of having greater control over what was on the machine and what gets installed.','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A2','A10','','','','','','','','A9','A8','A14','','','','','','','','','','','','',NULL,'Arch','A4','','','','Y','','','','','','','','','','','','','','','','','','','A11','A2','A15','','','','','','','','','','','','','','','','','','','A11','A13','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I have several machines at home including virtual machines. I liked the idea of being able to carry my configuration across machines.','Y','','','','','','','','','','','Arch','Y','','','','','','','Y','','','sway','','',''),(150,'1980-01-01 00:00:00',5,'en','1893839984','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I started using nix because I was looking for an alternative to homebrew. Once I saw how incredibly useful nix is I started using NixOS to configure a vm on my desktop as well as my home server. Finally I switched to using NixOS as my daily driver.','Y','','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A7','A6','','','','','','','','A6','A12','','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I would like to see a more detailed guide on how to contribute.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Once I saw the benefits of nix I immediately wanted to declaratively configure everything. I tried out NixOS in am vm, then used it to configure my home server and finally switched to using it as my daily driver.','Y','Y','Y','','','','','Declarative configuration','Rollbacks','Extensibility ','Built in support for handling secrets without having to commit them (even an encrypted version). Maybe they could be read from a password manager instead.\r\nAlso better integration with home-manager and a built in and easy to use deployment tool with automatic rollback support.','MacOS and maybe linux','Y','','','','','','github:pinpox/lollypops','','','','Hyprland, River','Disko is very helpful when installing NixOS on a new host, I also use home-manager and nix-darwin.','','Thanks!!!'),(151,NULL,1,'en','601068549','A2','A4','male','','','','','','Y','','','','','Y','','','','','','Y','','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(152,NULL,2,'en','1198725574','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend of mine was a contributor to GNU/Guix and got me interested in its properties. I also contributed to it for a while before deciding to check out Nix as the origins of the fork. I liked that Nix and it’s ecosystem was a lot more mature (and less dogmatic) than the GNU world and the rest is history','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A8','A12','A11','','','','','','','','','','','','',NULL,'I’d stop using computers and become a goat herder because I can’t stand other tools anymore','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','My first foray at seriously using Linux on the desktop. I knew I’d want to explore different technologies (eg desktop environments) and NixOS’s module system seemed like a fantastic way to go about it!','Y','','Y','','','','','','','','','Probably some kind of “immutable base image” distribution and a bunch of flatpaks','Y','','','Y','','','','','','','Sway','','',NULL),(153,NULL,4,'en','801036281','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL),(154,NULL,1,'en','192808408','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(155,NULL,2,'en','107555471','A2','A2','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','a friend of mine thought it would be interesting to me, i checked out it and i stuck, i remember when i was amazed that compiling emacs on two separate machines produces the exact same binary','','','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','Y','Y','','A2','A1','A3','','','','','','','','A8','A6','A11','','','','','','','','','','','','',NULL,'probably arch linux','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A13','A15','A3','A4','A1','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','laziness and time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(156,NULL,1,'en','1471948906','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(157,NULL,1,'en','353864089','A2','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(158,'1980-01-01 00:00:00',5,'en','398682844','A2','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was tired of the Ubuntu mess in wsl and wanted to try something radically different.','Y','Y','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A1','A3','A2','','','','','','','','A4','A6','A2','','','','','','','','','','','','',NULL,'bazel for builds, Ubuntu for the OS','A2','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','A15','A1','A9','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','Viewing a diff for the configuration change','Clean rollbacks','','Some way to manage secrets, too. Magic-wand-wise, a transparent integration with vault.','Ubuntu','Y','','','','Y','','','','','','','flake-utils: literally everywhere\r\nnixhelm: all over the production\r\nfenix and crane: for rust\r\ndevenv: in many shells (but almost always it\'s flake based)','all the python wrappers. Nothing really covers the 100% use case and there\'s always some python module that makes me wish I used Ubuntu.',''),(159,'1980-01-01 00:00:00',5,'en','480045049','A2','A3','fem','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Arch Linux with paru','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A9','A2','','','','','','','','','','','','','','','','','','','A9','A15','A1','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','My daily driver','Declarative configuration','Easy to use modules for many things','Large package repository','Use Flakes by default','Arch Linux','Y','','','','','','','','','','Hyprland','Lanzaboote, Home Manager','','Thanks for the great work!'),(160,'1980-01-01 00:00:00',5,'en','254311460','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','Y','Y','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A1','A7','','','','','','','','A2','A4','A12','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','Y','','','','','Y','','','','',''),(161,'1980-01-01 00:00:00',5,'en','1946475996','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','Y','','','A2','A1','A3','','','','','','','','A14','A5','A6','','','','','','','','','','','','',NULL,'Ansible, containers','A1','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','A9','A2','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Bad documentation to start contributing ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Declarative configuration ','Y','','','','','','','Declarative configuration ','Reproducible builds','Nixpkgs ','','Any Linux distro with ansible and containers','Y','','','','','','','','','','hyprland wm','','',''),(162,'1980-01-01 00:00:00',5,'en','1724135677','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend told me about it','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'Guix or Arch','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','Y','','A9','A15','A4','A3','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','A friend told me about it','Y','','Y','','','','','Single configuration for entire system','Atomic updates and rollbacks','Easily extending/modifying the used packages and modules','Improve eval time, add helpful stack traces','Guix or arch','Y','','','','Y','Y','','','','','Xmonad','Everything from mic92, impermanence, disko','Nixops',''),(163,'1980-01-01 00:00:00',5,'en','38227888','A5','A4','male','','','','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','','','','','Y','','','','','','','','Y','','Y','','','','A7','A1','A2','','','','','','','','A3','A13','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','A2','A6','A15','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','','','','','','','','','','','','','',''),(164,'1980-01-01 00:00:00',5,'en','2082089651','A2','A4','fem','','Y','','','','','','','Y','','','','','','Y','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Inflexibility of package management in Debian GNU/Linux.','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','','','','A1','A2','A4','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'dpkg + containers + adhoc scripts','A2','','','','Y','Y','','','','','','','','Y','','','','Y','','Y','','','','A4','A3','A15','A2','A18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','On my Debian system, more and more packages were from Nix and it stopped making sense to maintain the underlying distribution.','Y','','','','','','','Declarative and reproducible configuration.','','','Faster updates, e.g. less things to download with every (unstable) update.','Debian','Y','','','','','Y','','','','','Sway','nix-output-monitor, nix-tree, nixpk.gs, nixpkgs-review, nix-direnv','lorri',''),(165,'1980-01-01 00:00:00',5,'en','1886310929','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A2','I wanted to try a new Linux Distro and a Friend told me about NixOS so I tried it and stayed','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A3','A7','A1','','','','','','','','A9','A8','','','','','','','','','','','','','',NULL,'Kubuntu or another Linux Distro','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A5','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Too little knowledge with nix','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','','','','','','Declarative configurations','','','','Kubuntu','Y','','','','','','','','Y','','Hyprland','','',''),(166,NULL,1,'en','2080486789','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','Y','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(167,'1980-01-01 00:00:00',5,'en','1864905823','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','','Y','','','','A1','A3','A2','','','','','','','','A12','A5','A1','','','','','','','','','','','','',NULL,'','A4','','Y','','','','','','','','','','','','','','','','','','','','','A2','A10','A18','A1','A9','','','','','','','','','','','','','','','','','A10','A2','A18','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','','Y','','Y','Y','','','','','','','','debian','Y','','','','','Y','','','','','sway','nixos.wiki','Flakes',''),(168,NULL,1,'en','1612712608','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(169,NULL,1,'en','1082308821','A1','A4','male','','','','','','','Y','','','','','','','','','','Y','','','','','','','Y','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(170,'1980-01-01 00:00:00',5,'en','437476846','A5','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A7','','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A4','A2','A9','A14','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(171,'1980-01-01 00:00:00',5,'en','893455052','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I above all use Nixos than Nix itself.','','','','','','','Y','','','','Y','','','Y','','','','','','','A2','A7','A1','','','','','','','','','','','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Skills and above all, time.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','Gaming, but with difficulties 😅','A2','I heard about Nixos on a social network, then I read some articles and watch some review on YouTube.\r\nI was impressed by declarative direction, roll-back possibilities an d the huge number of packages.','','','','','Y','','My daily computer','Déclarative','One file to rule them all (easier to deploy)','Rollback feature','I would love to have a graphical installer for Nix packages.\r\nIdeally, I would love a Gnome Software extension: Gnome Software could deal with flatpak packages and Nix packages.','Archlinux or Fedora, I guess.','Y','','','','','','','Y','','','','None','None','Great environment, thank you!'),(172,'1980-01-01 00:00:00',5,'en','779021756','A2','A6','male','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Y','','','A1','Linux user since 1995. Using Gentoo since 2004. Started using guix on on laptop since 2021, but found the quirks frustrating. Switched to Nix/NixOS, and now making quick progress. ','','Y','','','','','Y','','','','','','','','','Y','Y','','','','A1','A10','A7','','','','','','','','A8','A14','','','','','','','','','','','','','',NULL,'Maybe Guix, but probably stay with Gentoo ','A2','','','','Y','Y','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Still learning! I do plan to contribute once I have the ability','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Linux user since 1995. Using Gentoo since 2004. Started using guix on on laptop since 2021, but found the quirks frustrating. Switched to NixOS, and now making quick progress. ','Y','','Y','','','Y','','Declarative build','Adaptability','','','Possibly Guix, but more likely stay with Gentoo','Y','','','','','','','','','Y','Hyprland','','',''),(173,NULL,NULL,'en','1168093184',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(174,'1980-01-01 00:00:00',5,'en','32040321','A2','A5','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It came with NixOS.','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A14','A12','','','','','','','','','','','','',NULL,'Arch Linux and Docker images for projects probably.','A4','','','','Y','','','','','','','','','','','','','','','','','','','A15','A2','A3','A13','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','It\'s an intimidating monolith, and the channels system where everything needs to be baked in the monolith rubs me wrong tech-architecture wise. I still don\'t really understand the Nix language environment either, and mostly code by copy-pasting and modifying. Flakes seems like it has a better idea for how to do decentralized packaging where I can make a Nix-friendly project but not be on the hook for maintaining the Official Nixpkgs Whatsit from then on.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was using Arch Linux and getting tired of having to set up my Linux box to be just right after every fresh OS install (I\'d always forget bits and spend the next weeks getting papercuts) and started looking into Ansible to automate the process. Dropped the project for a few months and when I went back to my Ansible reference config bookmark it had a readme saying \"project abandoned, I\'m doing this with NixOS instead\".','Y','','','','','','','Reproducible system configuration','Reproducible dev environments','Throwaway installs for rarely used programs','Change the language. Not sure into what exactly, but this can\'t be the best we can do. It\'s got a lot of good ideas not found elsewhere, but the programming ergonomics are not making me happy.','Arch Linux','Y','','','','','','','','','','i3wm','','','I still got caught answering the Nix page as if was about NixOS, didn\'t notice the parenthetical. Seriously, how many people do you get who actually use Nix as a separate thing and don\'t just think of it as \"the thing that\'s under NixOS\"? Just put NixOS page first in the survey and then ask about non-NixOS Nix next, the people who use Nix but not NixOS know they\'re the odd ones out and other people will be happy because they thought they were talking about NixOS on the first page anyway.'),(175,NULL,2,'en','1406528722','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was first interested in managing dotfiles, and came across Home-Manager. I found it *way* too complicated. But in the same time frame, I was a distro-hopper and heard about NixOS (probably on some subreddit), and made the connection between the two. So I installed NixOS to play around, and gave up. Later, I started to get interested in the reproducibility aspects for work, and tried Nix again. I\'ve been using it ever since.','Y','','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','','A2','A6','A7','','','','','','','','A6','A5','','','','','','','','','','','','','',NULL,'As a package manager, probably Homebrew on MacOS and Pacman on Linux as I was an Arch user. To manage dot files and configurations, probably Git and a lot of homemade scripts. Same goes for CIs.','A2','Y','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A15','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time mostly. I packaged one app, but I cannot consider myself as an active maintainer.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(176,NULL,1,'en','23078090','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(177,'1980-01-01 00:00:00',5,'en','1850613577','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Have to work with CentOS 7 and Nixpkgs is a god sent for getting access to up to date softwares.','','Y','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A8','A4','A14','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','A13','','','','','','','','','','','','','','','','','','','A9','A13','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I had an older laptop that I wanted to convert into a home server and a friend of mine told me about NixOS. Since then I never regretted it. \r\nLater I also switch my wsl install from Ubuntu to NixOS. ','Y','','Y','','','','','Declarative OS configuration','Modular (with flakes)','Reusable ','','I’d still use Ubuntu server','Y','','','','','','','','Y','','','home-manager ','',''),(178,NULL,NULL,'en','1162511653',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(179,'1980-01-01 00:00:00',5,'en','2080166928','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','love the idea of declarative configuration for building software','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A10','A1','','','','','','','','A8','A4','A5','','','','','','','','','','','','',NULL,'not sure tbh.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','A2','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A1','','not confident enough with the language to upstream anything at the moment','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','fell in love with the logo, then fell in love with the language','Y','','Y','','','','','flakes','mono repo system configuration','home-manager?','i would stabilize flakes and 3.0','probably arch, if i had to guess','','','','Y','','','','','','','Hyprland, river','home-manager, sops-nix. deadnix, statix, and alejandra, just to name a few.','none that i can really think of tbh.','ty for the awesome language and distro!'),(180,'1980-01-01 00:00:00',5,'en','1284575283','A2','A2','male','','','','','Y','Y','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A7','A6','A11','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A15','A2','A1','A3','A17','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Experience','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','Reproducibility','Easy configuration','Remote-target','SELinux','Fedora','Y','','','Y','','','nixos-anywhere ','Y','','','','sops-nix, imperance','','Thank you for this amazing ecosystem '),(181,'1980-01-01 00:00:00',5,'en','1623992427','A2','A5','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','After 15 year using macos, I drifted away from Apple. Before I used macos I was a Debian user, but I was now looking for an OS where I felt I was 100% in control and not depending on updates or ecosystem quirks. After some adventures with Arch and Void I landed at NixOS. I’m very happy I made the move and invested the learning. It’s difficult, I still not feeling comfortable in the NiX language, but the platform as whole is great.','','','','','Y','Learning to put Nix on containers','Y','Y','','','Y','','Learning to use Nix on my pinephone','','Y','Y','Y','Y','Y','','A1','A3','A5','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'Dont wanna think about it.','A4','','','','Y','','','','','','','','Y','','','','','','','Y','','','','A1','A9','A15','A3','A7','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','Y','Nur','-oth-','I help with satelite projects nur search and home manager option search',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','SameI told earlier','Y','','Y','Y','','','','Reproducability','Declaritive configuration','Developers shells','I would make the language more estatic appealing. I would let Nix feel like Ruby','Some edgy Linux distro','Y','','','','','','','Y','','','','Home manager','',''),(182,NULL,1,'en','115695943','A5','A4','male','','','','','','Y','Y','','','Y','Y','','','','','Y','','','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(183,'1980-01-01 00:00:00',5,'en','23574866','A5','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','','','','Y','','','','','','','Y','','Y','Y','','Y','','A3','A7','A1','','','','','','','','A3','A9','A4','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A5','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(184,NULL,2,'en','383524529','A1','A4','male','','','','','','','','','','Y','Y','','Y','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Got into dependency hell with Arch, and thought i would give NixOS a try in a VM. Discovered it was more than packaging, the first time I tried a rollback, I was sold :D','','','','','','','Y','','','','','','','Y','Y','','Y','','','','A7','A2','A1','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'Arch','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','A1','A17','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','The formality of contributing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(185,NULL,3,'en','597565353','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(186,'1980-01-01 00:00:00',5,'en','1359806788','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','An interest in reproducibility and a desire to make my system builds declarative ','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A8','A4','A6','','','','','','','','','','','','',NULL,'Ubuntu + some sort of dotfile management','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Still not fully understanding the nuances of packaging ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','As with nix','Y','','Y','','','','','Declarative system builds','Well abstracted modules','','Better docs ','','Y','','','','','','','','','','Hyprland ','Agenix','pip2nix\r\n',''),(187,'1980-01-01 00:00:00',5,'en','648526557','A2','A3','male','','','Y','','','Y','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','A colleague recommended it','','Y','','','Y','','Y','Y','','','','','','Y','','','Y','','','','A1','A8','A7','','','','','','','','A6','A1','A4','','','','','','','','','','','','',NULL,'Archlinux and guix','A1','','','','Y','','','','','','','','','','','','','','Y','','','','','A7','A9','A13','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I did a couple small patches ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','A colleague recommended it ','','','','Y','','','','Rollback','Frequent updates','','Add secret support','Archlinux or guix','Y','','','','','','','','','','Hyprland','','',''),(188,'1980-01-01 00:00:00',5,'en','1816423289','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A7','A3','','','','','','','','A1','A8','A6','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A2','A4','A11','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(189,'1980-01-01 00:00:00',5,'en','1857221861','A2','A2','male','','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I was using Fedora Silverblue before. I like reproducible operating systems, but changing the base image of Silverblue was too tiresome, so I switched to NixOS and learned Nix along the way. Now I\'m using the latter for all my projects.','','','','','Y','','Y','','','','','','','','Y','Y','Y','','','','A1','A2','A7','','','','','','','','A9','A8','','','','','','','','','','','','','',NULL,'If it\'s for packages, then I would probably stick with the traditional Linux packages. If it\'s for development environments, then it would probably be OCI containers.','A2','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','Woodpecker','A3','A15','A22','','','','','','','','','','','','','','','','','','','A22','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','','','It\'s my main OS','A1','I was using Fedora Silverblue before. I like reproducible operating systems, but changing the base image of Silverblue was too tiresome, so I switched to NixOS and learned Nix along the way. Now I\'m using the latter for all my projects.','Y','','','','','','','Reproducibility','Atomic upgrades and rollbacks','An ability to switch from one configuration to another without rebooting','It\'s fine as it is, really.','Fedora Silverblue, I\'ve been using it before. I\'m not sure about Guix, though.','Y','','','','','','','Y','','','','','Tools like `julia2nix`.',''),(190,NULL,NULL,'en','1889142002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(191,'1980-01-01 00:00:00',5,'en','1671222268','A2','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Problems with using missing runtime libraries','A good (and easy) solution to the library problem',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'I used home-manager for all my dotfile management','Devenv',''),(192,NULL,NULL,'en','720581057',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(193,'1980-01-01 00:00:00',5,'en','1491706866','A2','A3','male','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was attracted to reproducible development environments after coming from the mess Python scientific libraries. Furthermore, my homelab interest made me look for declarative options for managing and deploying my \"infrastructure\".','','Y','','Y','Y','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','A2','A1','A7','','','','','','','','A8','A4','A5','','','','','','','','','','','','',NULL,'Ansible, Docker, maybe guix','A2','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Declarative system management for a homelab.','','','Y','','','','','Declarative ','Reproducible ','Immutable ','Add better flakes integration ','Guix maybe? Debian with Ansible. Arch','Y','','','','','','','Y','','','','disko,sops-nix','deploy-rs',''),(194,'1980-01-01 00:00:00',5,'en','1818207131','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','Y','','','','','','','','Y','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'When something doesn\'t work it\'s very hard to make it work. If a package is missing it\'s not always trivial to package it yourself.','If new features that improve usability would be introduced. If there was a fallback option for things that are not already available in NixOs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Home manager','Nix and NixOs are really opinionated sometimes. Even though this makes sense it\'s very hard to use when working with projects that are not going to be packaged or use nix flakes. For example (at least from my understanding) it\'s not easy to get the default python experience with using pip or the default cargo experience in Rust. FhsUserEnv is an alternative but doesn\'t always work. To use nix I need some assurance that if things don\'t work the nix way I can fallback into something that allows to have my work done.'),(195,'1980-01-01 00:00:00',5,'en','705717524','A2','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Because of NixOS','','Y','','','','','','Y','Y','','','','','','Y','','Y','','','','A1','A3','A6','','','','','','','','A6','A4','A14','','','','','','','','','','','','',NULL,'I wouldn\'t I think','A2','','','','Y','','','','','','','','','','','','','','','','','','Gitea Actions','A1','A15','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','The imposter syndrome maybe, I\'m quite new to functional programming and OSS participation','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','For the immutability and everything coming with it. Because of the induced stability and the willingness to learn a new technology. I decided to migrate all my selfhosted services and my personal computers to nix, it allows common configuration.','Y','Y','Y','','','','Gaming PC','Configuration of the system with the NixOS modules','Sharing configuration between different systems','Immutability and reproducibility','I would improve the user documentation to be more accessible, I think it is possible to use nixos without being a developer, but the documentation is steep for non-technical peoples','GNU Guix or Fedora Silverblue','Y','','','Y','','','','Y','','','Hyprland','','',''),(196,'1980-01-01 00:00:00',5,'en','2080979656','A2','A2','fem','','Y','','','','','','','','','','','','','Y','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','As an ansible replacement essentially ','','Y','','','','','Y','Y','Y','Y','','','','','','','Y','','','','A7','A2','A1','','','','','','','','A12','A2','A1','','','','','','','','','','','','',NULL,'Archlinux and Fedora','A3','','','','Y','Y','','','','','','','','','','','','','','Y','','','Woodpecker, Forgejo/Gitea Actions','A15','A9','A2','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','As an ansible replacement ','Y','Y','Y','','','','','Atomic Rollbacks','Declarative config','Extendability','Faster evaluation time ','','','','','','Y','','','Y','','','','Attic (NixOS cache)','deploy-rs, NixOps, Morph',''),(197,'1980-01-01 00:00:00',5,'en','1166530430','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I heard about Nixos from it from a podcast(Linux unplugged, Jupiter broadcasting) and tried it out.\r\nI like the stability while still being very customisable and use it on my private machines\r\nI also love having own development environments for every project.\r\nI do this for my hobby project with nix flakes and nix-direnv','','Y','','','','','Y','Y','','','','','','Y','Y','','','','','','A1','A3','A10','','','','','','','','A6','A5','A4','','','','','','','','','','','','',NULL,'Dnf, npm various dev tools','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','A10','','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time, complexity off the project','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Recommended by a podcast (Linux unplugged, Jupiter broadcasting)','Y','','Y','','','','','Reproducible system','Great support for declarative dev environments','Uptodate packages','I would add low efford builtin secret management tools with integrations for managing secrets in password managers.\r\nI also would add having alternate input sources for nix flakes (having oci containers repos or or the vscode extension repo as input, or automated tools that regularly generate flakes from sources like that, to have automated updates)','Fedora, Arch','Y','','','','','','','Y','','','','Nix-direnv, home-manager, ','Lorri',''),(198,'1980-01-01 00:00:00',5,'en','993067002','A2','A4','male','','','','','','Y','Y','Y','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A1','A2','A7','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'Not sure ','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A15','A14','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','','','Y','Y','','','','Declarative configuration ','Atomic rollbacks','','Upstream home-manager, or generally, add per-user configuration support (including systemd services etc, not just packages)','Arch Linux','Y','','','','','','','','','','Sway ','Poetry2nix \r\nHome-manager\r\nFenix\r\nCachix \r\nNix-direnv','Nixops \r\n',''),(199,'1980-01-01 00:00:00',5,'en','1704611342','A2','A3','male','','','','Y','Y','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I originally found Guix through Nix and used that. Eventually migrated to Nix because I wanted to use it for more personal devices, and the experience was ready on Nix, not on Guix.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A2','A1','A5','','','','','','','','A8','A12','A1','','','','','','','','','','','','',NULL,'Flatpak, OCI containers, probably end up writing something myself too.','A4','','Y','','Y','Y','','','','','','','','','','','','Y','','','','','','A21','A5','A2','A1','A22','A15','A3','','','','','','','','','','','','','','','A21','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I started using NixOS shortly after making the move to Nix. Within days of using Nix, I decided to switch.','','','Y','','','','personal devices','declarative configuration','reproducibility','broad package/service availability','','Arch Linux, Pop!_OS, or Ubuntu','Y','','','','Y','','','','Y','','','','',''),(200,'1980-01-01 00:00:00',5,'en','2037655810','A8','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted to manage my dot files more declaratively ','Y','Y','','Y','','','Y','Y','','','','','','Y','Y','Y','Y','Y','Y','','A1','A2','A8','','','','','','','','A3','A8','A13','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A9','A15','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','To manage my dot files more declaratively ','Y','Y','Y','','Y','','','Reproducible builds ','Dev environments','Binary cache','Better typescript monorepo support','Docker, terraform, ansible','Y','','','','','','sops-nix','','','','Leftwm, sway','flake-utils','dream2nix','Keep up the good work'),(201,'1980-01-01 00:00:00',5,'en','207299078','A2','A2','male','','','','','','','','','Y','','','Y','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Having every things centralized is a huge things for me','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A10','A7','A1','','','','','','','','A8','A5','A4','','','','','','','','','','','','',NULL,'Arch','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A2','A5','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of knowledge','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Having every things (config) in one place is à use things','Y','','Y','','','','','Centralization of the config','Reproducibility ','Configurability','Add a stantarized way to config system.','Arch','Y','','','','','','','','','','Hyprland ','','',''),(202,'1980-01-01 00:00:00',5,'en','760741609','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','A GUI way to manage config, flakes files etc. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(203,'1980-01-01 00:00:00',5,'en','2017955213','A2','A2','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','A colleague recommended it. Mostly nix shells and Home-Manager got me hooked.','Y','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A3','A14','A6','','','','','','','','','','','','',NULL,'Some dotfile manager and direnv hacks somehow.','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A15','A1','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I put most of my tools into flakes so I don\'t really see the need to put them into nixpkgs.','N','N','I\'m not really a Linux guy so not sure.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-darwin \r\ngomod2nix','',''),(204,NULL,NULL,'en','253191837',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(205,'1980-01-01 00:00:00',5,'en','1354091121','A2','A3','male','','','','','','','','Y','Y','Y','Y','','','Y','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','nix flakes are currently the best available option to pin the required dependencies for an project across various Linux distributions...','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A9','A7','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'Depending on the Task:\r\n- Python: Miniconda / Micromamba\r\n- Dependencies for Projects: Container (Docker) eventually with some lock files for specific dependencies\r\n- System Setup: Ansible, Bash scripts, git bare repositories with config files, ...\r\n- Package Installation: pacman, apt, ...\r\n- There are probably more for me, but these do not come to mind spontaneously','A1','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','A15','A4','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','To many open pull requests.','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A2','Reproducible Setup of Home Server','','','Y','Y','','','','Reproducible Setup','Binary caching','Atomic upgrades','Add cuda packages to binary cache','Arch Linux + bash scripts + git + ansible + ...','Y','','','Y','','','','','','','Hyprland','nixos-search','None','Thank You for the great nix ecosystem.'),(206,NULL,NULL,'en','1753091021',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(207,NULL,NULL,'en','414949883',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(208,'1980-01-01 00:00:00',5,'en','671389008','A3','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A14','A5','A15','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A11','A20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','','','','','','','','','','','','','','Y','','','','','','','','','','i3, xmonad','','',''),(209,'1980-01-01 00:00:00',5,'en','33738024','A2','A3','-oth-','','','','','','Y','Y','','','','','','','','Y','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','out of curiosity for a stateless system','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A7','A1','A2','','','','','','','','A14','A6','A7','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','ADHD, burnouts','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','it was the most logical way to try nix','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','','','the \"gender identity\" option in the first page is weird. \"male\" and \"female\" aren’t gender identities at all. \"man\", \"woman\", \"other\", \"i prefer not to tell\" are'),(210,'1980-01-01 00:00:00',5,'en','996828251','A2','A3','-oth-','Agender','Y','','','Y','','','','','','','','','','','','','Y','','','Y','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using NixOS because I wanted a declarative Linux distro, and Nix was just part of that.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A7','A10','A1','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'If nothing Nix-like was available, I would just fall back to direnv on Manjaro.','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A15','A10','A1','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','Local \"pkgs\" folder that just contains the updated or new packages','A2','','I haven\'t found anything that I need to package myself yet, but I did contribute by updating some print drivers.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I tried NixOS a few times over the years and never really got anywhere. It felt like it needed too much configuration, and it was all in a very different way, so I kept hopping elsewhere instead. Then I tried it when I had some free time and I really liked it and ended up switching all of my machines over to it.\r\n\r\nNixOS also offered some particularly desirable features for my home server: centralised system configuration, trivial containerisation of services, and lots of services available directly via options.','Y','','Y','','','','','Centralised system configuration','Wide range of packages available ','The ability to do updates in the background without it affecting the currently running system','Documentation to help newbies get going and know how to configure a system. I honestly felt lost!','I\'d probably still be on Majaro','Y','','','','','','','','','','i3wm','','',''),(211,NULL,NULL,'en','1905165539',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(212,'1980-01-01 00:00:00',5,'en','1208327930','A2','A3','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because arch broke my tex installation a day before a deadline.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A4','A1','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Because arch broke my tex setup right before a deadline.','Y','Y','','Y','','','','Declaritiveness','Atomicity','Reproducability ','Impurity. Flakes and tools like krops are the way to go!','Probably something really stable like CentOS/etc. Maybe Debian, but not sure.','','','','','','','krops','','Y','','','krops','','Less people with merge access please, improvement of workflows. But monorepo is the way to go IMO!'),(213,'1980-01-01 00:00:00',5,'en','131291942','A5','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','At previous company I promoted to package our python app (+ dependencies) using virtualenv + pip instead of building RPMs. This would allow our app to not be tied to specific version of the system (for example we had to generate brand new RPMs and test them when we were migrating to the next major version of CentOS).\r\n\r\nWhen presenting the solution, one argument was that the old approach also allowed to reference non python dependencies, which was a valid point. This led me to look for solutions to that which is how I found Nix.\r\n\r\nI never implemented it there (our solution was to use CMS to install these), as well... Nix has a very steep learning curve so it took me couple years before I mastered it enough to suggest it somewhere. Since then I started to use it for creating reproducible environment and also for building projects that I owned. I still feel though like despite that it is hard for others to start using it.','Y','','','','Y','','Y','','Y','','','','','','Y','Y','Y','Y','','','A2','A8','A6','','','','','','','','A2','A11','A5','','','','','','','','','','','','',NULL,'Probably docker, and in places I still do and I hate it.','A1','','','','Y','Y','','','','','','','','Y','','','','Y','','','','','','A2','A1','A9','A15','','','','','','','','','','','','','','','','','','A1','A9','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I did few contributions whenever I found an issue, but day to day I use nix to build things. Though whenever I made PR it always feels like difficult to get that PR merged ... I wish that could be improved somehow.\r\n\r\nThere\'s also cycle that I noticed, but unfortunately I don\'t see a good way to solve it.\r\n\r\nFrom perspective of person like me, who unfortunately the only experience with Nix is trying to sneak it in my $dayjob I have limited resources.\r\n\r\n- whenever I find an issue that I can solve, I can make a PR\r\n- that PR often might wait forever, unless I find somebody to help me\r\n- nixpkgs has this issue because there\'s still not enough contributors for the amount of packages\r\n- I can\'t merge, because I\'m not trustworthy\r\n- I could build reputation by reviewing other PRs\r\n- unfortunately I would get into trouble if I spent my work time reviewing nixpkgs packages\r\n- majority of issues that I find are relatively quickly fixed, I actually feel like there\'s less of them recently, not sure if there was some kind of change or I just got more familiar with Nix and more likely use the beaten path?','N','N','It\'s simply my workplace. My desktop is Mac so can\'t run there (the closest thing is nix-darwin). I still managed to get Nix for building, but using custom OS is not an option.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- direnv\r\n- nix-direnv\r\n- poetry2nix\r\n','NixOps - it looks like it is great for POC and maybe hobbyist use, but not practical in company. It would be great if it perhaps could spill up CloudFormation or even Terraform and allow for more complex setups (like with AutoScaling Group), but it doesn\'t look like it was meant to be used that way.\r\nlorri - not updated as much, no flake support',''),(214,'1980-01-01 00:00:00',5,'en','290172323','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','I heard about it at a conference (euro python). Looked into it briefly last year. Then decided to take alook at it again, after a few bad updates on Arch linux. The nixpkgs repo was comparable to the AUR. So I jumped straight in. I love the idea of declaratively configuring my system from a single repo, which is what I\'v wanetd to setup for a while now.','Y','Y','','','','','Y','','','','','','','','','','Y','','','','A2','A7','A1','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'N/A','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Looked into nix, jumped straight into nixos to learn nix.','Y','','','','','','','declarative configuration','atomic rollback','','','','Y','','','','','','','','','','Hyprland','','',''),(215,'1980-01-01 00:00:00',5,'en','1357294568','A8','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I wanted to expand my dotfiles to fully declarative, reproduceable systems','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A14','A4','A8','','','','','','','','','','','','',NULL,'Docker images','A4','','','','Y','Y','','','','','','','','','','','','','','','','','Bitbucket pipelines, Teamcity','A1','A10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I do not feel experienced enough to contribute, but intend to soon.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was using nix and home-manager on a few systems, then decided the benefits would be worth replacing all of my Linux environments with NixOS.','Y','','Y','','','','Personal computer','Composeable systems using flakes','Ease of configuration using Nixos options','Multi-platform support','Easier ways of using package versions','Arch, flatcar, TrueNAS','Y','','','','','','','','Y','','','','Digga','Keep it up, this project is life changing. I look forward to contributing more.'),(216,'1980-01-01 00:00:00',5,'en','967176753','A2','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A9','','','','','','','','A4','A5','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Fun','Y','','Y','','','','','','','','','','','','','','','','','','','','','','',''),(217,NULL,1,'en','176566566','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(218,'1980-01-01 00:00:00',5,'en','1991863152','A1','A3','male','','','','','','Y','','','Y','','','','','','','','Y','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','Y','','','','','Y','Y','','','','Y','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'EndeavourOS + BTRFS snapshot + Docker Container','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A9','A3','A4','A15','','','','','','','','','','','','','','','','','A2','A9','A3','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Poor Documentation','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','I was too tired to deal with the problems caused by the lack of reproducibility on other Linux distros.\r\nFor the details, check out https://thiscute.world/en/posts/nixos-and-flake-basics/','Y','','Y','','','Y','','flakes','nix-command','cross-platform support','make the documentation better, and make the flakes & nix-command stable.','docker container + btrfs snapshot','Y','','','','','','','','','','i3 & hyprland',' linux kernel, nixos-generator, impermanence, lanzaboote','build custom linux kernel, corss-platform build',''),(219,'1980-01-01 00:00:00',5,'en','1551490405','A2','A2','-oth-','None','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I started using Nix because of the ability to manage my Computers in a declarative manner.','','Y','','','','','Y','Y','','','Y','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'Pain and suffering','A3','','','','Y','Y','','Y','','','','','','','','','','','','','','','Forgejo Actions','A15','A3','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I have for now not had any need to contribute.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Managing Computers in a declarative manner.','Y','','Y','','Y','','','Declarative environments','Smooth upgrades','','First-party support for managing secrets.','Pain and suffering','Y','','','','','','','','Y','','sway','- home-manager\r\n- nixos-hardware\r\n- NUR\r\n- fenix\r\n- crane','None so far.','Thank you for making Nix/OS so awesome.'),(220,'1980-01-01 00:00:00',5,'en','1668813346','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','Musician','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','It had been under my radar for almost a decade and I finally got a use case (and the sufficient tech and Linux experience to not die while trying it).','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A1','A2','A9','','','','','','','','A14','A8','A3','','','','','','','','','','','','',NULL,'Arch and Docker ( if Nix didn\'t exist, probably Guix wouldn\'t either)','A1','','','','Y','Y','','','','','','','Y','','','Y','Y','','','','','','','A2','A15','A1','A13','A3','A4','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Same as Nix. I wanted to learn it full stack. Managing dependencies at OS level helps me develop reliable workshops and art installtions.','Y','','','','','','','Rollbacks','Declarative configuration','','','Arch + Docker/Podman','Y','','','','','Y','','Y','','','Hyprland','Devenv, Cachix, Dream2Nix, microvm, jupyenv, home-manager','flox, doomemacs-nix',''),(221,'1980-01-01 00:00:00',5,'en','1085072004','A2','A3','male','','','Y','','','Y','Y','','','Y','Y','','','Y','','','Y','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','More sane way of building software with complex dependency graphs than bespoke shell scripts','','','','Y','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A2','A10','A3','','','','','','','','A8','A4','','','','','','','','','','','','','',NULL,'Shell scripts and Dockerfiles','A4','','','','Y','Y','','','','','','','','','','','','','','','','','Azure devops CI','A6','A3','A2','A15','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','Y','','','','Declarative configuration of the entire system','No configuration drift between the .nix files and what\'s currently running in production','Extensibility of the module system with e.g. new services','Remove all the duplicate packages - e.g. on one of my servers /run/current-system refers to two instances of openssl, util-linux, boehm-gc. On my desktop it\'s worse.','Ansible eternal pain hellscape','Y','','','','Y','','','','Y','','','search.nixos.org (especially the options search), the and the nixos/nixpkgs manual','nix-env',''),(222,'1980-01-01 00:00:00',5,'en','804074971','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I was done with debian and arch, and quirks with linear package management. I heard, that in nix dependencies are very well-managed, and that it\'s an OS for \"power users\". I also heard of declarative package management. So one day I just went with dual booting, and in a few days I made a new clean install','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A8','A5','A1','','','','','','','','','','','','',NULL,'Fedora Silverblue or Gentoo','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A15','A12','A6','','','','','','','','','','','','','','','','','','A13','A2','','','','','','','','','','','','','','','','','','','','','Y','','My own derivations','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I started using Nix as part of NixOS, so the story is the same as with nix. Dependency management and declarative configuration is how NixOS was sold to me','Y','','','','','','','Declarative configuration','Sandboxing and isolation of environments','Dev tooling: nix shell and develop','CA derivations\' hashes could be stored in nixpkgs and cache could be distributed over people/users of NixOS to basically reduce the costs of maintenance to almost 0 and make the OS more secure (as it\'d be impossible to inject malicious binaries in cache.nixos.org).\r\n\r\nI would also remove old commands like nix-shell, as well as channels, and move everything to flakes.','Fedora Silverblue or Gentoo','Y','','','','','','','','','','i3','','',''),(223,'1980-01-01 00:00:00',5,'en','1908237870','A5','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','At my previous job we shipped a Linux distro (arm + x86) using portage. I was spoiled by having a source based dev environment where cross compilation actually worked well.\r\n\r\nI wanted to replicate that at my new job, but without wrangling chroots.','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A5','A10','A1','','','','','','','','A5','A13','A8','','','','','','','','','','','','',NULL,'Portage or buildroot','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A15','A3','A4','A2','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','Once I got comfortable enough with Nix the language and dealing with nixpkgs, getting systems onto NixOS was inevitable.','Y','','Y','Y','','','','declarative configuration ','atomic rollbacks','','make it dead easy to manage a system with a flake-first workflow. either i should be able to add a new system to an existing git repo, or the installer should at least be able to make a git repo with a flake.','gentoo or arch','Y','','','','','','','','','','','alejandra\r\nmicrovm.nix\r\nattic binary cache','',''),(224,'1980-01-01 00:00:00',5,'en','1185585426','A2','A3','male','','Y','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Read an article somewhere on reproducible builds and theory behind Nix. Tried NixOS — turned out to be the most stable Linux distribution I used. Then I implemented test pipelines at work using Nix packages.','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','','Y','','','','A2','A1','A7','','','','','','','','A3','A9','A2','','','','','','','','','','','','',NULL,'For work (CI, deployment) — probably Docker / Podman. For macOS package management — homebrew? For Linux package management I really don\'t know: probably language-specific (poetry, npm) and a lot of pain.','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','A1','A3','A4','A15','A17','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I do from time to time, but unfortunately don\'t have enough time. But I would be happy buying more NixOS merch, if it were available in my country.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','The same story as Nix package manager.','Y','Y','Y','','','','','Atomic builds','Single source of truth for configuration','Pre-packages services','I would make it mostly-statically-linked. Of course, GPU drivers, nsresolv from glibc, etc. still would need to use dynamic link, but most libraries can be linked statically. Considering Nix build process, there isn\'t much difference in practice from current practice.','If it didn\'t exist, I would probably stopped at Gentoo / Arch. If it stopped existing now, it would be Ubuntu or Debian.','Y','','','','','','','Y','Y','','sway','home-manager\r\npoetry2nix\r\nnpmlock2nix','','Language support and interaction with language-native package managers was a major pain point for Nix. But with poetry2nix and npmlock2nix it became good enough to use it unobtrusively in those work projects which can\'t be completely moved to Nix. I also use poetry2nix in new projects.\r\n\r\nRecent \"nix run\" breakage was unfortunate: I got used to `nix run nixpkgs....` instead of `nix-shell -p`.\r\n\r\n'),(225,NULL,1,'en','172989659','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(232,'1980-01-01 00:00:00',5,'en','31359657','A1','A4','male','','','','','','','','','','Y','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','For open source','A3','A friend/colleague told me about it. I was already a long time Linux user. It took a while but I eventually made the leap. The other distro installs on my various personal computers were eventually deleted.','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A9','A6','','','','','','','','A5','A13','','','','','','','','','','','','','',NULL,'Is there an alternative?','A2','','','','','','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','-oth-','I organize Summer of Nix 2023',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','','','','A3','A friend/colleague told me about it.','Y','','Y','','','','','I get to keep my software and configs','I get to have the same software and configs across computers','Friggin\' rollbacks','ZFS as default filesystem. Are there licensing issues?','Thank god for NixOS. I wouldn\'t like to think about that.','Y','','','','','','','','','','Sway','home-manager','','Thank you for your work. Feel free to contact me @mightyiam:matrix.org'),(227,NULL,1,'en','237980663','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','Y','','N','N','','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(228,'1980-01-01 00:00:00',5,'en','585657872','A5','A4','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A7','A5','A1','','','','','','','','A12','A8','A3','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A10','A3','A15','','','','','','','','','','','','','','','','','','','A10','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','','','','','','','','','Y','','','','','','','','Y','','','','',''),(229,NULL,2,'en','1501403431','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I started using nix because almost all linux distros I\'ve tried have been more or less the same and have suffered from the same problems. I always end up making a list of all the packages I have installed as a way of backing up the system, and I end up relying on things like docker instead of the actual operating system so I can keep track of all the changes I make to everything. Though I think containers are cool, they\'re certainly not for everything, and I like that NixOS achieves a lot of the benefits of containers (in terms of reproducibility) without forcing me to make workarounds to punch holes in security when things don\'t work the way I want (flatpak). Right now, my impressions of nix right now are that it\'s a super cool technology, but it\'s hard to understand. I have ideas for what to do with it that I\'m excited about, but I don\'t always know how to do them, and I\'m often left scrounging for bits of working code that I only partially understand to copy-paste. There have been times when I\'ve thought about giving up Nix because it\'s been so frustrating and I want to go back to where I can just make whatever changes I want to my system without having to worry about reproducibility. I think what would help solve problems like this the most are the development of tools like language servers that offer code completions and tell me when I mess up (and sometimes how to fix it). Anyway, I\'m rambling at this point. There you go, the story of my Nix(OS) journey until this point.','','Y','','','','','Y','Y','','','','','','','Y','','','','','','A1','A10','A2','','','','','','','','A6','A5','A8','','','','','','','','','','','','',NULL,'The AUR and a text file. It\'s not automated like Nix, but the AUR is huge (although it\'s not as big as nixpkgs, I find I\'m almost always more likely to find what I\'m looking for there). The text file would be to keep track of changes I make to my system, but I probably wouldn\'t be the best at updating it.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A15','','','','','','','','','','','','','','','','','','','','A15','A4','','','','','','','','','','','','','','','','','','','','','Y','Y','PR\'s, then waiting for them to get merged','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(230,'1980-01-01 00:00:00',5,'en','143045651','A5','A2','-oth-','Non-binary/questioning','Y','','','','','Y','Y','Y','','','','','','','','','Y','','','','','Y','','','Y','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Declarative operating system configurations, to track changes made to my computers and easy re-installation.\r\n\r\nEasier compartmentalization of school projects which use a variety of languages, toolchains, and versions.','Y','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A5','A13','A4','','','','','','','','','','','','',NULL,'If this includes Guix, then Fedora Silverblue, or Opensuse MicroOS, for isolated immutable installations.','A4','','','','','','','','','','','','','','','','','','','','','','','A3','A4','A11','A2','A15','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Immutable operating system installations with git-trackable configurations.','Y','','','','','','','Atomic transactions and rollbacks','Isolated development environments','Modules making it easy to set up services','Unify NixOS and home-manager. ','Fedora Silverblue or OpenSuSE MicroOS.','Y','','','','','','','','Y','','','Home-manager','',''),(231,'1980-01-01 00:00:00',5,'en','510926204','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducible dev shells at work.','Y','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A6','A1','','','','','','','','A8','A12','A5','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','Sourcehut','A1','A13','A15','','','','','','','','','','','','','','','','','','','A1','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','No more managing dotfiles with symlinks, and more stuff captured in version control.','Y','','Y','','','','','Reproducibility','','','More Nix than NixOS, but smaller downloads when small changes cascade through derivations.','Arch','','','','','','','All buggy for me','','','','Sway','flake-utils, agenix ','','Stabilise flakes, improve documentation, and improve macOS stability/ease of use to take over the dev world with dev shells.\r\n\r\nI’d love if a significant CI platform like GitHub Actions then added native support for dev shells, like they have for Docker…'),(233,'1980-01-01 00:00:00',5,'en','1354833757','A2','A5','male','','Y','','','','Y','','','','','','','','','Y','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','For reproducibility and capacity to compose complex software stack for distributed platforms','','Y','','','','','Y','','','','','','testbed platform (Grid5000, HPC clusters)','Y','Y','Y','Y','','','','A10','A2','A1','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','Y','','','','','Y','','Y','','','','A2','A18','A15','A3','A4','A7','A21','A10','A9','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','Y','','NUR','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','Reproducibility and capacity to compose large and complete software stack for distributed platform','Y','','','','','','testbed plateform (Grid5000) and HPC clusters','Reproducibility','Composability','','','','Y','','','','','','Nixos-compose (https://github.com/oar-team/nixos-compose)','Y','','','','','',''),(234,'1980-01-01 00:00:00',5,'en','1968921949','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','It started with Matija Suklje who introduced it to Cyberpipe hackerspace and Domen Kozar who then further introduced into hackerspace along with Rok Garbas, he did guide me on how to package my first package into nixpkgs.','Y','Y','','Y','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','Y','','A10','A2','A9','','','','','','','','A6','A8','A2','','','','','','','','','','','','',NULL,'Flatpak, sandboxing and cry','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A15','A17','A1','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I locked myself out of FreeBSD, at the same time Rok Garbas mistakenly overwritten his boot partition with NixOS, so I followed.','Y','Y','Y','Y','','','','Declarative configuration','Rollbacks','Stability','- Interchangeable service manager (Swapping between Systemd, initrd, ...).\r\n- Service abstraction layer (so that systemd services would not depend directly on the systemd)','Fedora and cry','Y','','','','','','','','','','sway','I use basic stuff and develop my own solutions (upaas, nixmy, ...)','Nixops, Hydra',''),(235,'1980-01-01 00:00:00',5,'en','707113047','A2','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','For an OSS project, I wanted a way to document the public server configuration.','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A3','A6','','','','','','','','A8','A5','A3','','','','','','','','','','','','',NULL,'Debian, and Homebrew on macOS','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A15','A9','A10','A8','A22','A2','','','','','','','','','','','','','','','A1','A9','A10','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','For an OSS project, I wanted a way to document the public server configuration.','','','Y','Y','','','','Declarative configuration','Atomic deploy','Build-time configuration checks','A more accessibility / intuitive language, or just an easier onboarding in general for new users.','Debian','Y','','','','','Y','','','','','','nix-darwin, home-manager, direnv','Nixops',''),(237,'1980-01-01 00:00:00',5,'en','2074583224','A2','A3','-oth-','NB','','','','','Y','','','Y','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','','Y','','A2','A3','A7','','','','','','','','A4','A14','A8','','','','','','','','','','','','',NULL,'Arch Linux/Pacman','A4','','','','Y','Y','','','','','','','','','','','Y','Y','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','Declarative System Config','','','I‘d add types for better checking and error messages','','','','','Y','','','','','','','Herbstluftwm ','crane','',''),(236,NULL,2,'en','1090744772','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(238,'1980-01-01 00:00:00',5,'en','834047282','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A4','','','Y','','','Y','','Y','Y','','','','Y','','Y','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A8','A6','A1','','','','','','','','','','','','',NULL,'I\'d likely be on Silverblue and Toolbx ','A1','','','','Y','Y','','','','','','','Y','','','Y','','Y','','Y','','','','A3','A2','A13','A14','A15','A1','A6','A5','','','','','','','','','','','','','','A5','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Came to replace Arch Linux on my home lab back in 2019','','Y','Y','','','Y','','Integration with other Nix features (custom packages, flakes, profiles, etc.)','Modularity of config system (writing my own NixOS builders for instance)','Robust upgrade mechanism.','I\'d add easier Nix store overlaying, set root or etc as tmpfs by default so NixOS can coexist with another installed distribution non-destructively','Likely Silverblue or a custom OSTree-based system','Y','','','','','Y','','Y','Y','','Pantheon','sops-nix, cachix','','check out github:nixie-dev/nixie and tell me what you think :)'),(239,'1980-01-01 00:00:00',5,'en','1313800270','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A9','A5','A4','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','Y','','','','','reproducible configuration of services','no need to care about unused packages, gc will clean it up','configuration is in one place only','','Arch Linux','Y','','','','','','','','','','herbstluftwm','home-manager','',''),(240,NULL,2,'en','1626401170','A2','A3','male','','','','','','','Y','','Y','','Y','Y','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','A3','A2','A7','','','','','','','','A4','A8','A9','','','','','','','','','','','','',NULL,'Guix','A2','','','','Y','Y','','','','','','','Y','','','Y','','','','','','','','A15','A22','A4','A3','','','','','','','','','','','','','','','','','','A22','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(241,'1980-01-01 00:00:00',5,'en','74237480','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A8','A5','A13','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','','Y','','','','','','','','','','Y','','','Y','','','','','','','i3, sway','','',''),(242,'1980-01-01 00:00:00',5,'en','78229712','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','RaspberryPI in my 3d printer','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A5','A2','A8','','','','','','','','','','','','',NULL,'Arch Linux with AUR','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A9','A1','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted a more stable system eith stateless configuration and version control','Y','','Y','','','','','Declarative configuration','Generations','Mixing stable and unstable channels','','Arch Linux','','','','Y','','','','Y','','','','home-manager, agenix','',''),(243,'1980-01-01 00:00:00',5,'en','1820379933','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','Y','','Y','Y','','','','Y','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A4','A8','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A15','A9','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','Y','','','','','','','Y','','','','','Y','','Y','','','','sops-nix','',''),(244,NULL,2,'en','1945419429','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Friends migrated their systems from arch to nixos, i followed','','','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A7','A1','A2','','','','','','','','A8','A7','A9','','','','','','','','','','','','',NULL,'Arch','A4','','','','Y','','','','','','','','','Y','','','','','Y','','','','buildbot','A2','A1','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(245,'1980-01-01 00:00:00',5,'en','833867043','A2','A4','male','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','Y','','','','Y','','Y','','','','','','','','Y','','Y','','','','A6','A2','A9','','','','','','','','A8','A3','A4','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A9','A1','A15','A4','A2','','','','','','','','','','','','','','','','','A9','A15','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-darwin \r\nHome Manager\r\nflake-parts','',''),(246,'1980-01-01 00:00:00',5,'en','519107142','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','I\'ve heard about the Nix ecosystem a while back, was always interested diving into the system it provided, but never got to it. A few weeks ago I was looking up Nix related things, blogs and stuff and my interest peaked. One day I decided to bite the bullet and replaced my Arch with a NixOS from 0','','','','','','','Y','','','','','','','Y','Y','','Y','','','','A7','A10','A1','','','','','','','','A8','A6','A3','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Inexperience. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I\'ve heard about the Nix ecosystem a while back, was always interested diving into the system it provided, but never got to it. A few weeks ago I was looking up Nix related things, blogs and stuff and my interest peaked. One day I decided to bite the bullet and replaced my Arch with a NixOS from 0','Y','','','','','','Gaming PC','Declarative configuration','Build rollbacking','Flakes','','Probably would have stayed on Arch','Y','','','','','','','','','','hyprland','home-manager\r\ndirenv','',''),(247,'1980-01-01 00:00:00',5,'en','1063488278','A2','A2','male','','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I had already used nix before with nix darwin on my macbook, I liked the idea of having a reproducible config and also being able to have development environments and not needing to install things “globally”. Few of my friends were already using nixos and I was going to try a different distro anyway.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A5','A1','A2','A4','A3','A17','','','','','','','','','','','','','','','A13','A7','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I lack the time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I had already used nix before with nix darwin on my macbook, I liked the idea of having a reproducible config and also being able to have development environments and not needing to install things “globally”. Few of my friends were already using nixos and I was going to try a different distro anyway.','Y','','','','','','','','','','','Arch Linux most likely','','','','','','','','Y','','','Sway','','',''),(248,'1980-01-01 00:00:00',5,'en','87996311','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A7','A3','A2','','','','','','','','A4','A6','A5','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','Y','Y','','Y','','','','Y','','','','A2','A10','A5','A15','','','','','','','','','','','','','','','','','','A5','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','Y','Y','Y','','','','Reproducible systems','Atomic upgrades and rollbacks','Software availability ','A native secret integration ','Probably arch','Y','','','','','','','','','','Sway','Comma, lanzaboote','NixOS mobile ',''),(249,'1980-01-01 00:00:00',5,'en','936846663','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Zimbatm and Flokli were contracted for DevOps on a project I was working on and introduced Nix.','Y','','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A1','A2','A6','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'Ubuntu/apt','A2','','','','Y','','','','','','','','','','','','Y','','','Y','','','','A9','A15','A5','','','','','','','','','','','','','','','','','','','A5','A19','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It seems the logical next step after seeing what Nix could do.','Y','Y','Y','Y','','','','','','','','Ubuntu','Y','','','','Y','Y','','Y','','','','A fair number of projects from nix-community, most of the tools that Mic92 maintains like sops-nix','',''),(250,'1980-01-01 00:00:00',5,'en','813216140','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A friend showed it too me. Before I was using Ubuntu and Ansible for my personal systems. After his demonstration I switched all my systems to NixOS within a year.','','','','Y','','','Y','Y','','','','Y','','','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A8','A14','A6','','','','','','','','','','','','',NULL,'Containers, Ubuntu and Ansible.','A4','','','','Y','','','','','','','','','','','','','','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A2','','I still have a hard time understanding how everything works in Nix.\r\nBesides elisp I haven’t really used a functional language before and even that only to do basic configuration.\r\nHowever I’m getting better at it.\r\nRecently I looked at fixing the Hydra for an Emacs package and I wasn’t able to understand how the packages get built and what the proper way would be to update that single package because there was some sort of tooling to update all the packages at once. There wasn’t a README or similar which would have explained how things so I had to stop.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as with Nix, recommended by a friend.','Y','','Y','','','Y','','Declarative configuration including removal of changes','Remote build and push for aarch64-linux','Binary cache','Flakes ;)\r\n\r\nIt would be nice to have something easy like `steam-run` to run non-Nix binaries but that feels a bit more official/professional.\r\nMaybe even combine it with `appimage-run` so that you can just point it to the binary like `foreign-run ./something`.\r\nWith a module you could maybe configure which ecosystem it supports.\r\n\r\n```\r\nforeign-run = {\r\n enable = true:\r\n appimageSupport = true;\r\n genericSupport = true;\r\n};\r\n```','Containers, Ubuntu and Ansible.','Y','','','','','','','','','','qtile','home-manager','','Thank you!'),(251,'1980-01-01 00:00:00',5,'en','122583963','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Because of NixOS.','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A1','A7','A10','','','','','','','','A8','A4','A6','','','','','','','','','','','','',NULL,'Docker most likely. It sandboxes really well and is easy to deploy.','A2','','','','Y','','','','','','','','','','','','','Y','','','','','','A2','A15','A3','A4','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I\'m currently still learning and setting up my nixos environment. I did already package two applications for personal use, but I don\'t think they are up to par with other packages in nixpkgs.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I started because I got frustrated setting up my arch install after a complete wipe. I failed to write down a couple of workarounds/hacks and wanted something self documenting.','Y','','Y','','','','Personal PC','Complete self documenting set up','Customizability - Setting up the Config the way that makes sense to me','Being able to sync changes to multiple machines','Some kind of impurity into flakes. I doesn\'t have to allow everything, but I would like to be able to define a few variables which are being pulled from \"the outside\", such as platform, secrets','Arch, because of their user repository','Y','','','','','','','','','','Hyprland, LeftWM','','','Would love to know the results of this survey, so make sure to publish it somewhere I can find it (I came from reddit, but I check nixos.org -blog regularly as well)'),(252,NULL,1,'en','811931740','A2','A4','fem','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(253,'1980-01-01 00:00:00',5,'en','919505744','A8','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','Consistent development environments between devs. Was sick of using the language package manager for dev packages then shell scripts and hope for system packages and the language itself. Python in particular.','Y','Y','','','','','Y','','','','','','','Y','Y','Y','','','','','A2','A3','A8','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'Shell scripts and docker','A6','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A13','A11','A12','','','','','','','','','','','','','','','','','A11','A12','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','Y',NULL,'There was just too much friction for getting things done. So many packages/tools expect Linux to behave a particular way and nixos is different. I’m not passionate enough about reproducible systems to push through it. Back to Arch + nix package manager.','If I needed reproducible systems for hobby or work and docker wasn’t the right fit I would return to NixOS. But a reproducible personal developer machine isn’t worth the friction.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','The onboarding to nix was needless difficult. There is too much focus on the language. The language is easy to learn. It’s the inconsistent documentation around the different command line tools and features like flakes that send you around in circles. It took me so long to learn how to generate my first flake and once I did it was simple.'),(254,'1980-01-01 00:00:00',5,'en','134338302','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','Y','','Y','','Y','','','','Y','Y','','','','A2','A1','A4','','','','','','','','A2','A11','A8','','','','','','','','','','','','',NULL,'Gentoo or Arch.','A2','','Y','','Y','Y','','','','','','','','','','','','','','','','','Garnix','A9','A2','A15','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','Y','','Y','','','','','','','Y','','','Y','','','','','Y','','Hyprland','','',''),(255,'1980-01-01 00:00:00',5,'en','1385415105','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Was using Homebrew on Ubuntu for a long time to get the latest (or unavailable) cli tools that I wanted to use but Homebrew has its own quirks and I\'ve finally started to look into Nix and then made the switch as it seems to be better suited for my needs.','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A1','A7','A2','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'Homebrew on Ubuntu','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','So I can declaratively describe my system and not have any configuration drift. Also atomicity and rollbacks.','Y','','Y','','','','','Atomic upgrades','Rollbacks','Declarative configuration','','Ubuntu probably','Y','','','','','','','Y','','','','Home-manager, nil','',''),(256,'1980-01-01 00:00:00',5,'en','1860051292','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','','','','','','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'Guix, spack or conda','A4','','','','Y','Y','Y','','','','','','','','','Y','','','','','','','','A4','A2','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I have contributed PRs before, but rarely do that nowadays due to:\r\ntime, permission to merge (reviewing PRs without actually being able to merge them is not satisfying)\r\n\r\nThings that don\'t work I now often just fix locally in an overlay.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','','','','','','Git versionable','Guaranteed to match the defined state','Never borked.\r\nSystem does not \"degrade\" over time (previously I thought operating systems sometimes need to be completely reinstalled to get them into a proper state again)','','Ubuntu ','Y','','','','','','','','Y','','','home-manager, agenix','',''),(257,'1980-01-01 00:00:00',5,'en','2078770253','A2','A2','fem','','Y','','','','Y','','','','','Y','','','','','','','Y','','','','','Y','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','Y','','','A2','A7','A4','','','','','','','','A14','A2','A12','','','','','','','','','','','','',NULL,'arch','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A9','A1','','','','','','','','','','','','','','','','','','','A9','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','','Y','','','','atomic rollbacks','configuration modules','vm image generation','faster evaluation','','Y','','','','Y','','','','','','','','',''),(258,'1980-01-01 00:00:00',5,'en','657485395','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','','Y','','','','','Y','Y','','Y','','Y','','','Y','Y','Y','','Y','','A7','A2','A1','','','','','','','','A8','A6','A12','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A13','A14','A3','A2','A4','','','','','','','','','','','','','','','','A13','A15','A14','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','Y','','Y','Y','','Y','','','','','','','Y','','','','','','nixinate','','','','sway','','',''),(259,'1980-01-01 00:00:00',5,'en','1304960861','A2','A4','male','','','','','Y','Y','Y','','','','Y','','','','','Y','','Y','','','','','','Y','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted to have reproducible builds and to manage my development environments/dependencies. Also to manage .config via home-manager for multiple machines','','Y','','Y','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','home-manager','A2','A7','A9','','','','','','','','A8','A6','A14','','','','','','','','','','','','',NULL,'nothing comparable','A1','','','','Y','','','','Y','','','','','','','','','','','','','','','A2','A4','A13','A15','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','many conflicting conventions/ways to do things, lack of documentation, feeling lost in the codebase','Y',NULL,NULL,NULL,NULL,'A1','','','','home server','A3','I was and am managing a personal server with little time for it. Having a single point of truth in a declarative way saves time and lifts the burden of remembering in which config file I changed what.','','','Y','','','','','declarative configuration','automatic and atomic updates/rollback','managing systemd containers','Add automatic network configuration for systemd-containers, secrets management','ansible','Y','','','','','','','','','','','','NixOps','Thank you for nix! Not perfect, sometimes hard to use, hard to learn. But nothing like it!'),(260,NULL,2,'en','240892254','A2','A2','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','Terraform and Azure was in a poor state, but nixos did everything well','','Y','','Y','Y','','Y','Y','','Y','','','','','Y','Y','Y','Y','','','A2','A3','A5','','','','','','','','A3','A11','A2','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','Y','','Y','','Y','','','','A15','A2','A3','A1','A5','','','','','','','','','','','','','','','','','A5','A10','A1','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(261,'1980-01-01 00:00:00',5,'en','1572804822','A2','A3','male','','','','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','','','','','','','','','Y','','','','A6','A1','A2','','','','','','','','A5','A9','A8','','','','','','','','','','','','',NULL,'','A4','','','','','Y','','','','','','','','','','','','Y','','Y','','','','A2','A1','A7','A9','A10','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','N','Time and proton support ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(262,NULL,NULL,'en','679343358',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(263,'1980-01-01 00:00:00',5,'en','1633483896','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I started using Nix because I started using NixOS.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','Y','Y','','A2','A7','A10','','','','','','','','A4','A3','A9','','','','','','','','','','','','',NULL,'Docker','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A10','A1','','','','','','','','','','','','','','','','','','','','A10','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Don\'t know where to start on contributions and almost everything I need is already packaged.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I started NixOS because I wanted to be able to manage my OS as code and make sure I could safely evolve it. It started Linux with Ubuntu and Arch, I tried Exherbo which is not that far from Nix on reproducibility but it did not filled my desire of low/high level configuration as code. ','Y','','Y','','','','','Declarative system configuration','Rollbacks / Versionning','Images','I don\'t know, I am clearly satisfied with it!','Archlinux','Y','','','','','','','Y','','','','','',''),(264,'1980-01-01 00:00:00',5,'en','569640764','A2','A4','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','','','','','Y','','','','','','','Y','Y','','Y','','','','A3','A1','A2','','','','','','','','A8','A5','A13','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','','','','','','','','','Make Nix less confusing/obscure. Streamline common use cases','','Y','','','','','','','Y','','','','home-manager, disko','',''),(265,'1980-01-01 00:00:00',5,'en','253432014','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','','','','ChromeOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Was interested by the notion of being able to define a whole system by code.','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A4','A3','A8','','','','','','','','','','','','',NULL,'PKGBUILD from Arch Linux as it’s the most sane approach to build packages.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','Drone','A9','A7','A1','A2','A15','','','','','','','','','','','','','','','','','A7','A1','A20','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Reproducible systems. Had to try 3 times and only after taking lots of to read through the documentation did I really understand how it worked and not to fight the system but really use it to define each of my projects.','Y','','Y','Y','','','','Modules','Nix','','Cleaner pre-packaged desktop environments like KDE. Lots of little things aren’t working or not as polished as Fedora would for example.\r\n\r\nI don’t use those desktop myself but it would be easier to get people interested.','Arch Linux as it’s the most up to date while being the least battery included.','Y','','','','Y','','','','','','AwesomeWM','','Hydra','Documentation, documentation, documentation.\r\nAnd a more modern CI that isn’t related to Hydra would be fantastic.'),(266,NULL,1,'en','236763415','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(267,'1980-01-01 00:00:00',5,'en','1442295207','A2','A3','male','','','','','','','','','','Y','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','NixOS configurability','','','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A7','','','','','','','','A8','A6','A7','','','','','','','','','','','','',NULL,'arch','A1','','','','Y','','','','','','','','Y','','','','','','','','','','','A4','A3','A1','A2','A5','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','configurability','custom self-made patch maintenance','','','arch','Y','','','','','','','','','','i3','','','<3'),(268,'1980-01-01 00:00:00',5,'en','1014648966','A2','A2','-oth-','','Y','','','','','','','','','Y','Y','','','','','','Y','','','Y','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A1','I used arch but i broke it or it broke i don\'t know.\r\nI started to look for a different distro to use and i came across nixos, now it is a part of my desktop ','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A1','A2','A3','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'i would probably use arch or a debian based (if you are talking about the package manager than pacman or apt )\r\n','A4','','','','','','','','','','','','','','i havent delved into any experimental features','','','','','','','','i dont know what a ci is so i dont think i use any','A4','A3','A13','A1','A6','A5','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I don\'t think i have enough knowledge to contribute yet.\r\nBut i am looking for ways to learn and start contributing mainly update packages that i use or even develop new packages','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Like nix i broke arch and then decided to switch to NixOs and the rest is history','','','','','','','','The packages system','The reproducibility','The imutability','I honestly just want better learning ressources so i can learn some more ','Arch or a debian based','','','','','','','','','','','I3wm','I do not know','Everything i started using i kept using','I really really really like NixOS.\r\nEver since i started using NixOs it has become my main distro.\r\nI am currently looking for ways to contribute to the community\r\nI really thank you all for this amazing distribution and all your efforts into making it something unique.\r\nI will keep using it for a long time :)'),(269,'1980-01-01 00:00:00',5,'en','1942696960','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','I have too little time to try new things','I wish I had more time to not be afraid to find myself in a situation where I desperately need to do something right now, but can\'t figure out how','Y','','','','','Y','Myself having enough free time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A3','','','','For trying out new things','A1','I have seen people talking about nix and saying they use nixos, and the novel approach nix takes seemed compelling to me, particularly that the packages are reproducible, I think this is good and important for free software and open source, because it allows for agreeing on what that source code compiles to and if it\'s good, because the source is good. So I decided to install nixos to make myself learn nix. In times where I have enough free time, I reboot to it. I know I can just use nix on my main operating system, but that would probably just result in me not using it at all. I consciously chose to have a little bit of a controlled locking: I have to reboot to my main os when I\'m in nixos, so there\'s some additional incentive for me to actually try and study and troubleshoot without just giving up immediately. I opted for that, because there are usually periods of my life when I\'m free and when I\'m not free. So far I haven\'t been in nixos much, tho I invested at least 1 hour of my life into it.','','','','','','','Daily driver laptop','Reproducibility','Having different versions of the same library installed and used simultaneously','Making it possible to have a single config for the whole operating system and user environment to easily bootstrap new machines','I would add the ability to install it without an internet connection from the official ISO image, currently the default graphical installer requires that the device has internet connection.\r\nI would also add some out of the box experience interactive tutorial on how to use it and why it\'s a good way to do things.','I\'m still using archlinux most of the time and rarely boot into nixos. I would just always use arch, probably.','','','','','','','','','Y','','','','','When I first started out with nixos, I used the KDE edition ISO image, and it had wrong associations or something: when I opened links in whatever the present browser was (and it wasn\'t firefox, some KDE thingy), for some search engines (I don\'t remember which, maybe Google or Bing, or something else) it would open the website\'s HTML code in Okular instead of, well, opening the search result\'s url in the browser. I still don\'t know why that was sometimes happening. Also, I still don\'t remember how I installed firefox and if that was the preferred way to do it. I also couldn\'t see a youtube embed in discord, so I wanted to do `dog youtube.com` just to see if it fetches the youtube\'s ip address at the very least, and the name of the package was not entirely obvious, something like `bind` or something. I fetched the youtube\'s ip address and then the embed worked, as far as I remember. Maybe that was a coincidence, and also maybe my internet service provider had some issues with their censorship system or something and blocked youtube temporarily.\r\nAnd thank you very much for working on a thing as important as nix!'),(270,'1980-01-01 00:00:00',5,'en','1409049655','A3','','-oth-','Tux','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','Y','','','','','Y','Y','Y','','','Y','','Y','Y','Y','Y','','Y','','A2','A1','A4','','','','','','','','A8','A4','A14','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A2','A3','A4','A5','A6','A7','A9','A10','A13','A15','A22','A19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','Y','Y','Y','','Y','','','','','','','Y','Y','','','','','','','','','Hyprland','','',''),(271,'1980-01-01 00:00:00',5,'en','1573651037','A2','A3','male','','Y','','','','','Y','','','','','','','','','','','Y','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Some people say it was life-changing on hackernews, so I tried it.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A5','','','','','','','','A8','A9','A3','','','','','','','','','','','','',NULL,'Maybe docker, but it would be very sad.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','woodpecker','A15','A2','A4','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','Y','','','','','','','','','','Y','','','','','','','','','','','home-manager','',''),(272,'1980-01-01 00:00:00',5,'en','1554918279','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','Y','','','','','','Y','','','','','','','','','Y','','','','A7','A1','A6','','','','','','','','A14','A8','A9','','','','','','','','','','','','',NULL,'ansible','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I use nixos for the homelab server - i got sick of manual steps so i automated all with nixos','','','Y','','','','','Declarative Configuration ','Rollbacks','Easy upgrades','Make it possible to nixos-rebuild offline.','Ansible and a lot of swearing','Y','','','','','','','Y','','','','None. I try to use nixpkgs','Home-manager. NUR.\r\n\r\nI cannot use it on the desktop',''),(273,'1980-01-01 00:00:00',5,'en','7676148','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I wanted to have a better package manager.','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A6','A8','A9','','','','','','','','','','','','',NULL,'Pacman/Paru','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A4','A3','A1','A2','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I don\'t think my Nix code is very clean. That being said I might contribute soon.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I wanted to have a configuration that I could quickly apply to any new computer.','Y','','','','','','','Flakes/Reproducibility','The extensibility (overlays, etc.)','The filesystem','Better support for secrets','Arch Linux even though it isn\'t similar to NixOS because I\'m experienced with it.','Y','','','','','','','','','','Hyprland','','','Great language and operating system'),(274,'1980-01-01 00:00:00',5,'en','1079971837','A2','A4','male','','Y','','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','perfectionist','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A7','A2','A1','','','','','','','','A8','A3','A12','','','','','','','','','','','','',NULL,'fedora silverblue','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A11','A1','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','','','','','reproducibility','rollback','Declarative configuration','add types to nix','fedora silverblue','Y','','','','','','','Y','','','','home-manager','All python related projects (mach-nix, dream2nix) do not work!',''),(275,NULL,1,'en','1981299934','A6','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(276,'1980-01-01 00:00:00',5,'en','1151932556','A2','A6','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','','z/OS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Heard about it on Linux Unplugged podcast, a lot! Finally gave in and had to check it out','','','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A3','','','','','','','','A14','','','','','','','','','','','','','','',NULL,'dnf','A4','','','','Y','','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'m too new / inexperienced','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Same as Nix above','','','','','','','Personal desktop','No compromises needed, I can do everything in NixOS (with a bit of effort to set up) than a \"normal\" Linux distro','Declarative configuration','','I\'m too new and still learning to be able to give a good answer','Fedora Silverblue','Y','','','','','','','Y','','','','','',''),(277,'1980-01-01 00:00:00',5,'en','1515544931','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','','','','A1','A3','A7','','','','','','','','A8','A2','A6','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','','Y','','','','Declarative system configuration','(Mostly) reproducible systems','Atomic rollbacks','Add a graphical software center\r\nSpeedup rebuild times\r\nImprove tools for writing system configs\r\n','Guix','Y','','','','','Y','','Y','','','','nixos-generators\r\nmach-nix','dream2nix (but will revisit)',''),(278,'1980-01-01 00:00:00',5,'en','554194213','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted an immutable configurable distribution after getting dissolutioned with ansible/puppet, tried ostree but didn\'t like it so settled on nixos.','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A8','A6','A14','','','','','','','','','','','','',NULL,'OsTree','A4','','','','Y','Y','','Y','','','','','','','','','','','','','','','','A4','A1','A3','A15','A2','A10','','','','','','','','','','','','','','','','A15','A10','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time...','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Needed a declarative package manager and thought doing the OS as well was logical.','Y','','Y','Y','','','','Easy, declarative configuration','Flakes','Rollback, forward','Improve documentation, particularly configuring a system with flakes. Perhaps a best practices guide.','Fedora Silverblue','Y','Y','','','','','','','','','SwayFX','','Finding NixOps 2.0 difficult to keep moving with and am going to exit to something else soon.',''),(279,NULL,1,'en','1687002555','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(280,'1980-01-01 00:00:00',5,'en','1386523419','','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','Y','An application settings, can be applied with GUI, but they don\'t persist or addons, themes, plugins (, mods ?) can\'t be downloaded and used (of KDE Plasma, as for example), if it\'s (still) correct.','','','Y','I didn\'t do packaging work. Sometimes software that was developed for mutable distributions, needs to be patched to build and run on NixOS. I don\'t understand when such \"hacks\" are needed. Lastly, to elaborate: the \"hacks\" (called there as such by their purpose) are seen in not a relatively little amount of packages over Github Nixpkgs, but are not commented throughout the code, usually, and the \"hacks\" are different because of: the certain software and the certain knowledge of the packager. It might have impact on some people who are entering the packaging (as they encounter these patches without comprehension of them).','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'1. I couldn\'t apply (install) KDE addons.\r\n2. There is no official driver for a certain discrete audio-card.\r\nSo, in comparison to MS, the Linux distributions might look fragmented by their composition. \r\nBut I think NixOS has a potential to impact the situation.\r\n3. I think that I don\'t know where to expect bugs from when using software packaged for NixOS. Have the maintainers or packagers done enough the right patching?\r\nSteam (for example Steam) got another \"add X dependency to BuildInputs\" commit?\r\n-----------------\r\nIt looks like that there are many different ways to package one (especially GUI?) application. Which package to choose as a template when one would try to package another software?\r\nSoftware usually can\'t update itself, for example, browsers or a game, because it doesn\'t follow the standard of Nix reproducibility.\r\n\r\nTo solve these problems, developers should be the packagers of their software, I think. They should want to package for NixOS. And NixOS is interesting, \"appealing\".\r\n\r\nAbout documentation. There is Guix which documentation is maybe not full and it is expected from the learners to already have a certain knowledge of packaging or that they are being able to research (which I doubt a beginner would appreciate), but written in the manner delightful to read, at least where I read it.\r\n\r\nI think NixOS is a big leap forward in Operating Systems:\r\n- it\'s development is open\r\n- it\'s community has progressive purposes and has some freedom and time to decide the future of the OS!\r\n(thanks to besides it not being commercial?)\r\n- it is ecological in many ways (by it\'s actions, not by any marketing or words), i.e. it feels that:\r\n = it\'s not meant to degrade people minds and hearts or litter our Planet Home.\r\n = it\'s not meant to rise the unemployment rate\r\n = it values anything real more, than anything virtual (digital). It makes value time, life, ...\r\n = it doesn\'t make me want to waste time sitting in front of PC. Thank you.\r\nIt\'s calming.\r\n\r\nI wish Nix packages would be mainstream as Deb and RPM are, that developers would package their software on Nix. So, Chrome, Firefox and (or) other popular software products would use it as one of the methods of their software distribution methods on their web pages.','... If a certain discrete audio-card and popular high-quality user programs would support Linux as a \"\"first-class citizen\"\", of course it would be great.\r\n\r\nI think NixOS should become more popular to make developers (who develop, for example, for Windows) pay attention to it. Some ways to reduce fragmentation, I suppose:\r\n- market the NixOS to users from other Linux distributions, so they get transfered to it\r\n- market the NixOS to and work with developers of existing popular projects (KDE, Gnome and others), so they would develop their software on NixOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','The \"Home-manager\". I wish it could clear dotfiles after a program uninstall.','Could something like /nix/store/ be implemented for the \"Home-manager\", so each dotfile could have own hash and each program could have own immutable dotfiles?\r\nThank you and thanks to the moderators of Discourse very much!'),(281,'1980-01-01 00:00:00',5,'en','29861367','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Security researcher','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Declarative specification, large package repository','','Y','','','','','Y','Y','','','','Y','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A9','A14','A6','','','','','','','','','','','','',NULL,'Pacman','A4','','','','','Y','','','','','','','','','','Y','','','','','','','','A2','A3','A9','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Declarative system configuration, 6 month release interval','Y','','Y','','','Y','','Declarative system configuration','Atomic upgrades (i.e. nixos-rebuild boot)','Binary caching','','Arch Linux (or Guix, by now)','Y','','','','','','','Y','','','','','',''),(282,'1980-01-01 00:00:00',5,'en','1801964022','A2','A2','male','','','','','','','','','','Y','Y','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I had been using pop! os for about a year, and accidentally deleted my dm. Not knowing how to fix it, I turned to discord. A friend at the time was a nixos user. Although he told me I shouldn\'t jump into it with that little linux experience, I ignored his advice and went straight into nixos. The biggest hurdle was partitioning, as a beginner like me at the time didn\'t know how to partition for dual booting properly.','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A10','A2','A7','','','','','','','','A11','A2','A8','','','','','','','','','','','','',NULL,'Guix perhaps?','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Every time I tried cloning the repo it took 10+ mins on my bad internet. I need to look into how to only clone the latest commit','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','same story as how I started using nix','Y','','Y','','','','','Declarstive configuration ','Extensibility (I can create custom modules which tune configurations across multiple apps and services)','Reproductible builds','- I\'d love for the nixos, nix and home-manager to be merged into a single cli','- guix','Y','','','','','','','','','','xmonad & hyprland','home-manager, impermanence, stylix','','home-manager *needs* a better option search method. I know a website exists already, but it\'s far from perfect (I can\'t specify the search as a query param for example)'),(283,'1980-01-01 00:00:00',5,'en','814972689','A2','A3','male','','','','','Y','','Y','','','','','','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A10','A12','','','','','','','','','','','','','',NULL,'','A4','','Y','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(284,'1980-01-01 00:00:00',5,'en','278098009','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started using Nix because almost all linux distros I\'ve tried work in more or less the same way and suffer from the same problems. I always end up making a list of all the packages I have installed as a way of backing up the system, and I end up relying on things like docker instead of the actual operating system so I can keep track of all the changes I make to everything and to make configuration easier. Though I think containers are cool, they\'re certainly not for everything, and I like that NixOS achieves a lot of the benefits of containers (in terms of reproducibility and ease of configuration) without forcing me to make workarounds to punch holes in security when things don\'t work the way I want (unlike flatpak and docker).\r\n\r\nRight now, my impressions of Nix are that it\'s a super cool technology, but it\'s hard to understand. I have ideas for what to do with it that I\'m excited about, but I don\'t always know how to execute them, and I\'m often left scouring the internet for bits of working code to copy-paste and not learning much. There have been times that I\'ve thought about giving up on Nix because it\'s been so frustrating and I want to go back to where I can just make whatever changes I want to my system without having to worry about reproducibility. I think what would help solve problems like this the most are the development of tools like language servers that offer code completions and tell me when I mess up (and sometimes how to fix it). Anyway, I\'m rambling at this point. There you go, the story of my Nix(OS) journey until this point.','','Y','','','','','Y','Y','','','','Y','','Y','Y','Y','Y','','','','A1','A10','A2','','','','','','','','A14','A6','A5','','','','','','','','','','','','',NULL,'I would probably just use normal package managers and build tools, which mostly rely on bash.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A15','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','PR\'s and waiting for them to get merged...............','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started using NixOS because almost all linux distros I\'ve tried work in more or less the same way and suffer from the same problems. I always end up making a list of all the packages I have installed as a way of backing up the system, and I end up relying on things like docker instead of the actual operating system so I can keep track of all the changes I make to everything and to make configuration easier. Though I think containers are cool, they\'re certainly not for everything, and I like that NixOS achieves a lot of the benefits of containers (in terms of reproducibility and ease of configuration) without forcing me to make workarounds to punch holes in security when things don\'t work the way I want (unlike flatpak and docker).\r\n\r\nMy first exposure to Nix was when trying to make a reproducible environment for audio production (for multiple people to use) and I kept going.','Y','','Y','','','Y','Desktop/laptop','A stable system.\r\n\r\nNixOS is built like a tank. There\'s an interpreter that yells at you when something is messed up! I love that it lets you do crazy things (e.g. changing desktop environments) without having to worry about whether you followed all 10 steps of a guide to the T.','Configurable packages.\r\n\r\nThe fact that you can override parts of packages and have it build is amazing. Going further, I love that this lets you grant first-class system-level support to any application, regardless of whether it\'s in the repos. Not to mention the fact that you can configure services through a single configuration language.','A manageable system.\r\n\r\nHaving everything in one place is so nice! If something gets updated, I don\'t need to apply a fix by hand or re-install a configuration file (or worse, find out the hard way something\'s broken). This work is left to package maintainers, which takes the burden off the users to keep track of things like this. I think about distributions like Arch Linux, where most people have more or less the same system plus or minus a few tweaks. Yet to get there, everyone has to repeat the same to build that system. Nix takes care of that for you and does it in a reproducible way.','Have more resources for learning how to get from any idea to implementation. (Documentation.) Right now, the only resource I know of is the community, which works all right for the most part, but it\'s not good in every case.\r\n\r\nComing from a background of never having used functional programming prior to using Nix, after 6 months I still find it impossible to know where to start with most things without asking for help somewhere. Search engines aren\'t great about finding resources for how to do things in Nix and neither are large language model AI chatbots. I can tell there are things out there to teach me what I want, but I\'m usually not able to find them when I need them. If I had a magic wand to change something about NixOS, I would make really good learning resources and guides for how to do a wide variety of things that most NixOS users will need to do at some point, so everyone can be given a fair introduction to the system. Guides would include things like how to setup your system and how to extend it to do some common things that more knowledgeable users all do but might be hard for a new user to pull off even if they want to. The manual is great and all, but it\'s so big that I think I would die before I got to the end of it. It needs to be broken up into chunks that are digestible and applicable for new users.\r\n\r\nOnce people have a strong understanding of Nix, they will know where to go. Right now, I think educating new users is the most important thing Nix(OS) can do.','I would probably use an arch-based distro. The AUR might technically have less software than nixpkgs, but more often than not, I find the software in it is more relevant to what I\'m trying to find. If I can\'t find something in nixpkgs, there\'s almost always an AUR package calling my name and trying to make me switch back to Arch.','Y','','','','','','','Y','','','','- envfs','','This was a fun survey, not gonna lie. Good questions! It was actually really helpful for me to think out loud about some of these things, and your list of Nix features and improvements was very good and exciting! I hope we can eventually see all of them! Also, what are \"granular incremental builds\"? Sounds cool.'),(285,NULL,2,'en','755175103','A2','A2','male','','','','','','','Y','','','Y','','','','','','','','Y','','','','','Y','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A15','A2','A1','','','','','','','','','','','','','','','','','','A13','A15','A2','','','','','','','','','','','','','','','','','','','','Y','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(286,NULL,NULL,'en','850280218',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(287,NULL,1,'en','358763248','A2','A3','male','','Y','','','Y','','Y','','','','','','','','','Y','','Y','','','','','','','','','','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(288,'1980-01-01 00:00:00',5,'en','1187396538','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Stumbled upon it on Reddit and got curious about reproducibility as I had to migrate my setup a couple of times between different machines and it was a pain. ','','','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A7','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'Whatever is the default package manager from my current OS','A4','','','','Y','','','','','','','','','','','','','','','','','','','A10','A13','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Lack of time and lack of information about how to contribute. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducible builds got me intrigued. ','Y','','','','','','','Reproducibility','Everything in code','Amount of supported packages and services','Add secure boot and better secure defaults.\r\n\r\nFinalize flakes and encourage everyone to use them. ','Debian or fedora or arch or osx.','Y','','','','','','','','','','Sway','','','Thank you for doing what you are doing. Have a great day!'),(289,'1980-01-01 00:00:00',5,'en','1466254170','A2','A4','-oth-','non-binary ','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Tried it 10 years ago. Back then it was just too rough around the edges. Flakes make nix much better. There is more and better documentation. So it feels like the right time to start using nix.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A4','A9','','','','','','','','A8','A5','A9','','','','','','','','','','','','',NULL,'I built a similar system a decade ago. I built it specifically because nix was not as mature back then.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','A10','A1','A4','A3','','','','','','','','','','','','','','','','A1','A10','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Other people seem to be quicker at fixing issues/ updating packages','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','Y','','','','','atomic deploy ','no clutter ','you know what is actually deployed ','atm I\'d use the magic wand to keep nixos as it is','probably debian as it is well supported ','','','','Y','','','','','','','','home-manager','',''),(290,'1980-01-01 00:00:00',5,'en','573504114','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Had a colleague who tried it out, and then, my archlinux broke down, I gave it a go','','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','Y','','A7','A8','A2','','','','','','','','A12','A9','A14','','','','','','','','','','','','',NULL,'Same concepts, written with Haskell','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A1','A13','','','','','','','','','','','','','','','','','','','','A1','A13','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same as nix','Y','','Y','','','','','Reproducibility','Unified configuration, in code','Fresh packages','Onboarding documentation (written, video, audio, you name it)','Archlinux','Y','','','','','Y','','','','','xmonad, hyprland','','',''),(291,'1980-01-01 00:00:00',5,'en','1905772464','A5','A3','male','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','Because I started using nixos.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A8','A5','A9','','','','','','','','','','','','',NULL,'Docker images, or shell scripts','A1','','','','Y','Y','','','','Y','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I only learned how to use flakes, so I thought having a flake.nix in my CLI utility repository was good enough for now (im new).','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','My current main computer that Ive been running Ubuntu on for 3.5 years has been having space issues recently. Its so hard for me to manage software using apt that I dont do a good job purging old software. I came to nix because I could 1 to 1 manage the software installed on my system that I wanted to keep around, knowing I could garbage collect all the random things I just tried for fun. In short, I use nixos on my laptop to have 1 to 1 coorespondence with packages installed and a list in a text file.','Y','','','','','','','Declarative installed packages','Declarative services','','Easy way to explore packages, options, etc from the command line. That is, a cli alternative to the website.','Some script that maintains a list of apt packages in a text file that would install/uninstall for me. I believe there exists installers, but nothing that removes packages that arent listed.','Y','','','','','','','','','','xmonad','','','I wish there was a page on the docs that just talked about the schema for what a \"derivation\" is. I know theres mkderivation and mkshell, but as a programmer, I want to know the actual attribute set schema like I can see for flakes. Im shocked there isnt a docs page explicitely titled \"derivation\" to explain the concept and schema outright.'),(292,'1980-01-01 00:00:00',5,'en','560751299','A2','A3','male','','','','','','Y','','','','','','','','Y','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I kept hearing about it and was very interested in the immutable/declarative system ideas and infrastructure as code. I first tried nix by itself but had a hard time \"getting it\". I took the plunge and installed NixOS, where the one \"configuration.nix\" to describe the whole system made sense to me and what I was looking for.','','Y','','','Y','','Y','Y','Y','','Y','','','','Y','Y','Y','Y','','','A2','A9','A10','','','','','','','','A8','A2','A13','','','','','','','','','','','','',NULL,'A configuration system like puppet or ansible.','A2','','','','Y','Y','','','','','','','','Y','','','','Y','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I could not get the declarative experience I was expecting from nix with just the package manager, so I tried the full NixOS instead. It \"sold\" it for me and helps to understand how to get declarative environments outside of NixOS as well, which I couldn\'t manage at the beginning.','Y','Y','Y','','Y','','','declarative system (packages and services/modules) from one configuration','being able to rollback to a know good state, both with the generations and through git (with flakes)','abstract the configuration of services, e.g. to get a webserver with ACME certificates','I would remove channels and make flake with lock files the default. I would replace the nix language with a more general purpose typed configuration language.','Configuration management system like puppet','Y','','','','','','','Y','','','','poetry2nix, agenix, nixos-generators','Briefly tried home-manager and direnv but haven\'t put enough time to really use it.',''),(293,'1980-01-01 00:00:00',5,'en','299217874','A2','A3','male','','','Y','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','A friend told me about it. I was looking to switch from Ubuntu to something else because snap pissed me off.','','Y','','','','','','Y','','Y','','','','Y','','','Y','Y','','','A7','A2','A10','','','','','','','','A8','A5','A4','','','','','','','','','','','','',NULL,'Back to Ubuntu ?!','A5','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A1','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Time an better knowledge about nix lang','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','Y','Y','','','','','','','Make flakes stable and improve the rebuild switch Cli output, make it better readable\r\n','','','','','','','','','','Y','','','','','communicate more to your community about incoming changes and proposals '),(294,'1980-01-01 00:00:00',5,'en','536149837','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Easy to contribute to nixpkgs, high number of packages, rollbacks independent of filesystem.','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A9','A10','','','','','','','','A8','A5','A13','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Immutable but configurable, declarative.','','','','','','','','','','','Nix language','Arch, Fedora Silverblue','Y','','','','','','','Y','','','','','',''),(295,'1980-01-01 00:00:00',5,'en','412430373','A2','A2','male','','','','','','','Y','','','','','','Y','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A2','','','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A7','A2','','','','','','','','A14','A5','A3','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','A2','A19','A13','','','','','','','','','','','','','','','','','A2','A19','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Lack of free time','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','Y','','','','','','','','','','Y','Y','','','','','','','Y','','','','',''),(296,NULL,0,'en','828621508','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(297,NULL,2,'en','1076039662','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','N','N','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(298,NULL,1,'en','264393996','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(299,'1980-01-01 00:00:00',5,'en','400424713','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','more packages (and installed NixOS, so no choice :D)','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A3','A9','','','','','','','','A8','','','','','','','','','','','','','','',NULL,'Guix, I guess','A4','','','','','Y','','','','','','','','','','','','','','','','','','A1','A5','','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','','','','creating MRs','A1','','I already do','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Declarative system configuration sounded intriguing','Y','','Y','','','','','declarative system configuration','declarative home configuration','a lot of packages for self hosting','Remove: Problems when running non-nix binary on NixOS','Guix','Y','','','','','','','Y','','','LXQt with Openbox','simple nixos mailserver','','Sometimes I miss some documentation for selfhosted apps: \r\nfor example If I still have to add postgresql config for the service to run \r\nor nginx config one probably wants (took me quite some time to figure out for seafile) \r\n \r\nJust a little more info regarding a module when searching on https://search.nixos.org/options'),(300,'1980-01-01 00:00:00',5,'en','1250042042','A2','A4','-oth-','','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','manage dev envs\r\nmanage multiple machine configuration from single place','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A4','A5','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','nothing, i try to when i can','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','all configurations in a single place, atomic updates','','','','','','','','flake system config','build-vm','','- add more and better documentation!\r\n- boot entry manager - easy ability to rename entries, pin from GC, remove certain ones manually\r\n- default hardware config should cover everything a \"layman\" may need: microcode, video drivers, opengl.\r\n- nixos configuration diff or something like that. see diff between existing system configuration, see diff between existing generation and a flake file','fedora','Y','','','','','','','','Y','Y','','','','great work! thank you, everything envolved!\r\n'),(301,'1980-01-01 00:00:00',5,'en','1886514086','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Decided to try NixOS for declarative configuration','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A1','A2','A7','','','','','','','','A12','A8','A2','','','','','','','','','','','','',NULL,'Ansible, kubernetes, cloud-init','A2','','','Y','Y','Y','Y','Y','','','','','','Y','','','Y','','','Y','','','','A9','A15','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Decided to use declarative OS','Y','Y','Y','Y','','','','Declarative Modules','Binary cache','Nixpkgs','Add security tools for audit, add integrated secret management ','Ansible, cloud-init, kubernetes ','Y','','','','Y','','','','','','hyprland','Ethereum.nix, home-manager, flake-parts, devshell, devenv, agenix/ragenix,nixos-anywere','Deploy-rs','Need to improve nix as a language - make it more user friendly, need to improve a security field - it\'s hard to sell NixOS to security team (no security scanning, no audit tools)'),(302,NULL,2,'en','1174053408','A8','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','To configure my laptop in a reproduceable way.','','Y','','','Y','','Y','Y','','','','Y','','Y','Y','Y','Y','Y','','','A2','A3','A1','','','','','','','','A5','A8','A12','','','','','','','','','','','','',NULL,'Guix perhaps','A1','','Y','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(303,'1980-01-01 00:00:00',5,'en','243151058','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','Y','','','Y','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to share configuration (vim, awesomewm, etc) between my different machines. ','Y','Y','','','','','Y','','','Y','','','','','Y','Y','Y','','','','A2','A3','A8','','','','','','','','A2','A8','A6','','','','','','','','','','','','',NULL,'Guix','A2','','','','Y','Y','','','','','','','','','','','','','','Y','Y','','','A15','A1','A2','A17','A9','A22','','','','','','','','','','','','','','','','A15','A2','A17','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Not clear how much effort','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted an os that was completely configurable with code.','Y','','','','','','','Rollbacks','Configuration with flakes','Easy to add new/custom packages','First class flake support','Guix','Y','','','','','','','','','','awesomewm','Rust overlay\r\nCrane to build rust','',''),(304,'1980-01-01 00:00:00',5,'en','69264393','A2','A2','-oth-','lol','','','','','','','Y','Y','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','It was all the rage in our local hackspace','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A6','','','','','','','','A5','A13','A14','','','','','','','','','','','','',NULL,'Flatpak, Docker','A2','','','','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','Because fuck Ubuntu server.','','','Y','','','Y','','Configuration sharing','Modules that do the heavy lifting for me','History management','Overriding modules somehow','Docker? Nothing?','','','Y','','','','','Y','','','','nom, morph, home-manager, nixfmt, direnv/direnv-nix, nix-tree, npins, patchelf, moz-overlay, nixGL','niv, nixpkgs-fmt, alejandra, nur',''),(305,'1980-01-01 00:00:00',5,'en','2011197247','A2','A2','-oth-','any','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','At work I do C++ Dev with some python bits. The existing development approach is to install and rely on system packages to build the software. But the dev machines use a different OS than the prod machines, so version inconsistencies cause headaches. I\'ve been using Nix to manage build environments locally, with the hopeful goal to eventually present it as a solution to the team if/when I can get in a mature state. Currently the blocker is being able to bundle several executables and a Python C++ shared library into the current distribution package: a Python wheel. Nix\'s shared library links doesn\'t work reliably with this however.','','Y','','','','','Y','Y','','Y','','','','','Y','','Y','','','','A7','A9','A2','','','','','','','','A3','A8','A4','','','','','','','','','','','','',NULL,'Guix sounds closest in approach. But I probably would not have heard of it and begrudgingly used something like Ansible. ','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','A3','','','','','','','','','','','','','','','','','','','A2','A4','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I have raised a few PRs. It\'s mostly difficult to\r\n1. Find out the best packaging practices (e.g. documentation. Reviewers are helpful but disagree amongst themselves)\r\n2. Getting reviews and approval\r\n3. Maintaining the packages separately while developing them. I will typically implement them in my own Flake with an overlay, but to raise them as a PR I need to fork nixpkgs, copy things over, and follow the rest of the nixpkgs bits. Syncing between my Flake and the nixpkgs branch is tedious.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted to create a reproducible system configuration under proper version control. I was unsatisfied with the typical solutions (ansible et all) from seeing them used in corporations. Nix\'s approach sounded novel and more solid.','','','Y','Y','','','','Atomic upgrades and rollbacks','Reproducible deployments','Declarative configuration','Ability to temporarily make configuration mutable during testing. Like systemd overrides, but for individual service configuration files. E.g. copy files to /etc instead of symlinking to /nix/store','GNU Guix or just give up and use Ansible','Y','','','','','','sops-nix','','','','','poetry2nix\r\nsops-nix\r\nnixGL to run nixpkgs apps on non-NixOS','mach-nix (didn\'t like it\'s approach of downloading huge indexes of Pypi)\r\nNixops (was using it while testing out secrets deployment. It didn\'t seem to work with a NixOS VM, so I gave up on it)\r\n','For gender question, the typical options IMO should be man, woman, non-binary, other. Male/female is sex.\r\n\r\nI would like to see some guides into gradually adopting Nix in companies. Some developer relations stuff. Marketing to make Nix seem more professional and appealing when trying to get management on board. Some recommended companies offering Nix consulting and support.'),(306,'1980-01-01 00:00:00',5,'en','2076455275','A1','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I searched for a dotfiles manager that can keep my dotfiles insync across 3 computers and *also* manage related packages, while being flexible enough to adhere to unique properties of individual machines (eg. no steam on the work PC).\r\n\r\nThis search made me gain interest in home-manager, which also made me start learning nix.','Y','','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A7','A2','A10','','','','','','','','A6','A2','A13','','','','','','','','','','','','',NULL,'Probably still pacman on Arch Linux, maybe I would have migrated to brew, also apt and/or yum at work.','A2','','Y','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A15','A1','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','After using Nix + Home-Manager on Arch Linux on 3 machines for a while (~6 months) the BTRFS on all of these ran into an error that was well known back then and is unfixable.\r\n\r\nOut of curiosity I first replaced my personal machine with NixOS and played with it for a weekend, when Covid struck and Germany went into the lock-down and I had to dig into NixOS quickly to make my personal laptop suitable for work from home.\r\n\r\nAfter the first week I felt proficient enough to switch from a WSL on the work computer (which I used via RDP for some things) with a NixOS VM, which I continued to use after the lockdown, when being physically in the office.\r\n\r\nBeing able to just roll back after having done errors in the config was what I really enjoyed in the learning process, much different to Arch Linux, where small mistakes can be hard to impossible to be undone.','Y','','Y','','','','','Declarative Configuration','Atomic rollback','Package customisability (eg. override and overrideAttrs)','Builtin secrets management, that could also work for non-file secrets, unlike sops- or age-nix which require that one can pass a path to the secret.','Probably still Arch Linux, but not with BTRFS :D','Y','','','','','Y','','','','','awesome WM','* flake-parts\r\n* dream2nix\r\n','* flake-utils\r\n','Thanks for the work put into the survey!\r\n\r\nStill some suggestions for the future:\r\n\r\n* I think \"Development Environments (nix-shell, nix shell)\" should have been \"Development Environments (nix-shell, nix develop)\" and \"nix develop\" should be dropped from the \"Building and packaging software\".\r\n* Some languages are missing, and as you clearly can\'t serve everyones needs, perhaps add a free form field where poeple can add their languages if missing above? (in my case Erlang and Elixir are missing which are the most important actually)\r\n* I wish there was a \"magic wand\" question in the \"nix\" section, not only in the NixOS section\r\n\r\n'),(307,'1980-01-01 00:00:00',5,'en','1334154378','A8','A4','male','','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Was looking for a way to manage my dot files and heard about home manager. Started learning that, then saw a video by DistroTube about NixOS. Dived into that on an old laptop, and have been slowly replacing all my old workflows with nix.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','nixos-shell, but need to get into doing containers.','A2','A3','A1','','','','','','','','A5','A13','A3','','','','','','','','','','','','',NULL,'Git dot files and Ansible ','A2','','','','Y','','','','','','','','','','','','','','','','','','','A4','A15','A2','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Don\'t feel I have a good enough grasp on the nix language. Still takes me far too long to do some things, and I\'m certain it\'s not the best way','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Same as above with nix','Y','','','','','','','Ease of experimenting.','Deployability of shared environment ','Ease of set up. Especially remembering some esoteric config months later.','Not sure if this is a thing but ability to add flake inputs in modules ','Probably Endeavor ','Y','','','','','','','','Y','','Hyprland, newm','','',''),(308,NULL,1,'en','1937332730','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(309,NULL,2,'en','1683019865','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Went to NixOS meetup, liked immutability of it and how nice it was to maintain over time.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A2','A7','A10','','','','','','','','A8','A3','A4','','','','','','','','','','','','',NULL,'Guix. Or if no nix inspired distros: Fedora.','A2','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A7','A5','A2','A6','A14','A1','A15','','','','','','','','','','','','','','','A5','A7','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(310,'1980-01-01 00:00:00',5,'en','692649431','A2','A2','male','','','','','','Y','Y','','','','Y','','','','','','','','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I was experimenting with immutable linux distros and after testing fedora silver blue I have moved to nixos and currently it works very well.','','','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A3','A8','A11','','','','','','','','','','','','',NULL,'Fedora core os for servers and silver blue on desktop mostly relying on distrobox and podman.','A4','','','','Y','Y','','','','','','','Y','Y','','','','','','Y','','','','A15','A3','A2','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','NUR','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','Rollback','Flakes','Wide variety of packages in both nixpkgs and NUR.','Improve the documentation, because some things are extremely hard to figure out for example I hade spend a lot of time learning about packaging binaries.','Fedora silver blue / core os and podman.','Y','Y','','','','','','Y','','','','','',''),(311,'1980-01-01 00:00:00',5,'en','1645541367','A2','A4','male','','Y','','','','','','','','','','','','','Y','','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','FS slices for package replacement in Linux From Scratch aren\'t easy to manage in the context of config file conflicts, package conflicts in deb/rpm are just annoying, consequences of interuppting a typical OS update are annoying, too.\r\n\r\nSaw an article about an early NixOS version, tried out.','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A1','A10','A9','','','','','','','','A15','A2','A12','','','','','','','','','','','','','Much more orthogonality and more consistent CLI access for separate steps (like derivation handling).\r\n\r\nBetter build scheduling.','Guix; it it doesn\'t exist either — whatever Julia uses for its binary package handling as it also seems to need separate-prefixing. Failing that, probably GoboLinux would be more popular.VC','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Separate makeExtensible package set, importing the deps','A5','',NULL,'N','Y',NULL,'· systemd is ill-suited for my laptop use patterns\r\n· module system as it is used creates more complexity than it resolves\r\n· for setups where I can tolerate systemd, I can as well use minimal «provided» Debian (Mobian, VPS image) and install Nix on top; Debian stable is fine for booting a kernel\r\n\r\n«System instantiation is a Nix package» is valuable, but I can do better without NixOS. \r\n\r\nConfig generators are valuable but there are hacks to import the specific ones I need without dealing with the rest of the NixOS.','· pluggable init systems\r\n· splitting the single module namespace where everything can spaghetti-modify everything\r\n· simple overrides for everything: it is faster for me to learn how to write three lines of shell to do a thing during boot, than to make NixOS generate them',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Common Lisp support in Nixpkgs','',''),(312,'1980-01-01 00:00:00',5,'en','303277775','A2','A3','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Needed a new Laptop.\r\nAnnoyed by changes introduced in Windows 11.\r\nWanted to try to use Linux outside a VM.\r\nThe declarative nature of Nix and Nixos was appealing.','','','','','','','Y','','','Y','','','','','Y','','Y','','','','A2','A7','A10','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'The default application manager of whatever distro i use instead of Nixos.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','A6','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','All software I use is already packaged and usually up-to-date.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Needed a new Laptop.\r\nAnnoyed by changes introduced in Windows 11.\r\nWanted to try to use Linux outside a VM.\r\nThe declarative nature of Nix and Nixos was appealing.','Y','','','Y','','','','Declarative configuration','Atomic deployment and rollback','Package and Module configurability','Fix the following issue: https://github.com/NixOS/nixpkgs/issues/180175','Some other Linux distro, probably either Ubuntu or Arch.','Y','','','','','','','','Y','','','- home-manager\r\n- nur: provides Firefox extensions\r\n- nixos-generators: custom install iso\r\n- tuxedo-nixos (https://github.com/blitz/tuxedo-nixos): Never merged into nixpkgs due to upstream frequently using EOL versions of node and electron\r\n- nixos-vscode-server (https://github.com/nix-community/nixos-vscode-server): The Remote-SSH extension freqently broke otherwise. Perhaps unnecessary once https://github.com/NixOS/nixpkgs/issues/180175 prevents regressions\r\n- agenix\r\n- peerix (https://github.com/cid-chan/peerix) \r\n- nil (https://github.com/oxalica/nil)\r\n- nvd\r\n- nix-diff\r\n- nix-du','When looking for deployment tools I considered bento (https://github.com/rapenne-s/bento) as its pull model was much more appealing than the rest, but due to the low number of personal Machines, I never deployed it, and manually ran nixos-rebuild instead.',''),(313,NULL,1,'en','2135371930','A2','A3','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(314,'1980-01-01 00:00:00',5,'en','690967428','A2','A4','male','','','','','','Y','','','Y','','Y','','','','','','','','','','','Y','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Stumbled upon a YT video by DistroTube which made me very interested on the descriptive and repeatable approach. Some time later, I started using it for setting up dev environments.','','Y','','','Y','','Y','','Y','','','Y','','Y','Y','Y','','Y','','','A2','A8','A1','','','','','','','','A4','A9','A5','','','','','','','','','','','','',NULL,'Docker + Dockerfile for CI/CD\r\nUbuntu for base OS','A1','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Still learning Nix but I do want to contribute sometime.','N','N','More time! It\'s a bit of a time investment to reconfigure everything as I would like, but I will do a full switch eventually.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-','-','I love NixOS concept but too much bad software (proprietary mostly) relies on the Linux Filesystem standard and having certain files in certain places. It would be great to have the possibility of a \"hybrid\" NixOs in which one could more easily to accommodate these types of requirements.'),(315,'1980-01-01 00:00:00',5,'en','1430669434','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A12','A5','','','','','','','','','','','','',NULL,'building/ci: ad hoc solutions, docker\r\ndistro: Arch Linux\r\ndistro(server): dunno','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A1','A2','','','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','','Y','','','A2','','the repo being too big to contribute to with bad internet','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','Y','Y','','','','','declarative configuration','reproducability','rollbacks','','Arch Linux, ?? on servers','','','','Y','','Y','','Y','','','','','',''),(316,'1980-01-01 00:00:00',5,'en','1835645907','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A1','One of my personal projects is a langauge server, so it should integrate well with a wide variety of editors/IDEs. \r\n\r\nMy dream is to be a `nix run …` command away from spinning up an environment pre configured with library version X, server version Y and editor version Z for demos and testing\r\n\r\nI’m still working towards that dream however… ','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','nix run','A2','A3','A10','','','','','','','','A14','A5','A10','','','','','','','','','','','','',NULL,'Hard to say… containers and/or shell scripts perhaps ','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Knowledge and understanding. I have contributed a patch before but it was a trivial change - applying a known fix to a related issue on a different package. ','N','Y',NULL,'It was a silly issue really - couldn’t figure out how to partition my disks with the tools available on the install ISO. \r\n\r\nThat was before the new installer was available mind. ','Not sure. I’ve since settled on using Nix on top of Fedora Kinoite, it seems to work well for what I need, so I see no reason to change for the time being. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None',''),(317,'1980-01-01 00:00:00',5,'en','680927375','A2','A3','-oth-','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I wanted to keep a list of installed and requested packages that I could sync between machines','Y','Y','','','','','Y','Y','','','','','Cloud VM','','Y','Y','Y','','','','A10','A7','A1','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'Macports and/or pkgsrc','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','I didn’t like having to remember how I set up Arch when I reinstalled it, nor the breaking updates','','','Y','','','','Cloud VM','Declarative configuration','Service modules','Atomic system updates','systemd','Arch or Gentoo','Y','','','','','','','','Y','','','','NixOps',''),(318,'1980-01-01 00:00:00',5,'en','347895823','A2','A2','male','','','','','Y','Y','Y','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I started using Mint, later switched to Arch and slowly became more and more annoyed with how messy config files tend to be and the difficulty in reproducing my system configurations across my three devices, then switched all my systems to NixOS and has since used Nix for work and school work.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A7','A2','A9','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'Docker and/or ansible','A1','','','','Y','Y','','','','Y','','','','','','','','Y','','Y','','','','A20','A13','A2','A1','A17','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','','A2','','Have nothing concrete to add / some additions would be too major for a single developer (better Julia support for instance)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Switched to NixOS due to frustrating config files and irreproducible configurations across multiple systems.','Y','Y','Y','Y','','','','Atomicity and the system being very robust to becoming bricked like other bleeding edge distributions (Arch, etc.)','Reproducibility','Easy to set up configs','Standardise the CLI, remove duplicate ways of doing the same thing, and writing exhaustive documentation for Nix and NixOS','Ansible or Docker','Y','','','','','','','','','','xmonad','','Mach-nix and other tools for managing Python, since they tend to break',''),(319,'1980-01-01 00:00:00',5,'en','617361763','A2','A4','male','','','','','Y','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Automated and Reproducible development environments','Y','Y','','','','','Y','','Y','','','','','','Y','','Y','','','','A2','A6','','','','','','','','','A8','A5','A3','','','','','','','','','','','','',NULL,'Docker','A1','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A2','A19','A1','','','','','','','','','','','','','','','','','','','A19','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time. ','N','Y',NULL,'Using nixos requires more buy-in from a team than just nix alone. Packaging own applications can be tricky (gradle builds, etc). Hence, i focus more on popularising nix for development environment. ','Once nix is more established in teams',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(320,'1980-01-01 00:00:00',5,'en','687214196','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Declarative management and reproductible builds are sexy','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A2','A7','A1','','','','','','','','A15','A5','','','','','','','','','','','','','','Consistency between tools, indicate clearly in docs what command is deprecated, what is THE WAY to do something','OpenSUSE','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Clear documentation on how to do it, also most software I use is already well maintained by more competent people','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Always looking for a CLEAN way to manage my Linux and stumbled upon NixOS while doing research. The declarative and rollback ability sold it to me, as well as the already impressive number of packages','','','','','','','Desktop','Ease of use','Package availabity','Stability','Remove unecessary overlaps (ex: flake vs channels)','OpenSUSE','Y','','','','','','','Y','','','','','','Thank you for this amazing piece of software that makes Linux easy and fun to use'),(321,'1980-01-01 00:00:00',5,'en','628716539','A2','A3','male','','','','','','','Y','','','','','','Y','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','I love the reproduceability and portability of my configurations. ','Y','','','','','','Y','','','','','','','Y','','','Y','','','','A2','A7','A10','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'Homebrew on MacOS, Pacman on Linux','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A19','','','','','','','','','','','','','','','','','','','','','A19','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','High learning curve.','N','Y',NULL,'I decided to stick with a home-manager flake until I learn enough to manage an entire NixOS machine and the co figuration repository. ','Flakes stable, better IDE and intellisense for Nix.\r\nSupport for JetBrains products in packages. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Thank you so much for your efforts!\r\nI really wish to see Nix become even more mainstream!'),(322,'1980-01-01 00:00:00',5,'en','1491274582','A2','A2','','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I didn\'t want to reconfigure my server setup for a specific project all the time when I reinstalled, and I\'m bound to give that project to another person sometime in the future. So I wanted to have a way to actually _describe_ the system rather than having a mutable furball, and once someone on Discord told me about NixOS, it all went {down,up}hill from there.','','Y','','','','','Y','','','Y','','','','','Y','','Y','','','','A2','A7','A10','','','','','','','','A2','A4','A14','','','','','','','','','','','','',NULL,'Most likely I\'d be in a weird mix of ansible and custom solutions.','A2','','','','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A2','','- High count of PRs in the sense of \"my additions are not that interesting and are just more noise\"\r\n- No clear directions on how a PR should be structured\r\n- Not clear if third-party-but-actually-not-since-they-have-merge-access software should be used or not (see: nixpkgs-review)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Was annoyed about having to set up servers all over again for a reinstall, and I didn\'t want to present someone with a mutable furball once they\'d need to take over the project. Whoops, I heard about NixOS on Discord, and here we are, with an extra module for the project we\'re using.','Y','','','Y','','','','Declarative configuration','Atomic upgrades','(if done right) No hidden surprises','Somehow make it possible to cache or communicate profile-guided packages, so I don\'t have to rebuild the same package like the kernel which is built using `fastStdenv` on every individual machine, which are all very similar setups.','Ansible and custom hacky scripting solutions.','Y','','','','','Y','','','','','sway','nix-index (and I\'d _love_ to have this integrated in Nix itself)','Flakes. But seeing that they praised and almost enforced from the community while being unstable, I wasn\'t exactly sure if I wanted to rely on them.',''),(323,NULL,1,'en','553747727','A5','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(324,NULL,2,'en','1577498039','A2','A3','male','','','','Y','Y','','Y','','','','','','','','','Y','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','For reliability, my Linux system broke 3 times in one month after the Arch project knowingly pushed the system-breaking changes to release without a warning.','Y','Y','','Y','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A10','A7','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'Immutable container-centric operating systems and DevOps processes. ','A2','','','','Y','','','','','','','','','','','','','','','Y','','','','A2','A13','A15','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(325,NULL,1,'en','1588646237','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(326,NULL,1,'en','552557446','A1','A2','-oth-','prefer not to answer','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(327,'1980-01-01 00:00:00',5,'en','1365880358','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A3','A9','A10','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'Arch or Alpine','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','','Hyprland','','',''),(328,'1980-01-01 00:00:00',5,'en','1797185296','A2','A2','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','for example, override package versions if I use channel (not flake)','','','','','','','Y','there isn\'t graphical package installation/config editor as official package','','','Y','flakes are experimental, but recommended by most users to use','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'- flake uncertainty\r\n- no graphical applications to install packages/setup the system\r\n- some options only through nix files which screws up some graphical applications','If everything I have described above is corrected',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Keep up the good work! You are very interesting to watch and I am looking forward to more exciting news from the project'),(329,'1980-01-01 00:00:00',5,'en','1544248554','A5','A4','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','Y','','','','','','Y','','','','','','','','','Y','','','','A7','A10','A1','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'debian','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A3','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(330,NULL,1,'en','573786631','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','Android','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(331,'1980-01-01 00:00:00',5,'en','1186973731','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Wanted to distrohop from Void since xbps had (has) pretty limited versatility when it comes to building packages (wine WoW is not a thing there). I was considering Alpine, but then I found out about Nix (don\'t remember how) and decided to give it a spin on Void. Wasn\'t particularly great, so I decided to install NixOS directly. Never looked back.','','','','','','','Y','Y','','Y','','','GitHub CI','','Y','Y','Y','','','','A2','A3','A10','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'Alpine or Arch.','A2','Y','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A3','A4','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Same story as Nix.','Y','Y','Y','Y','','','','Declarative configuration','Rollbacks','Easy installation using flakes','Better type errors. Reading walls of stack traces and getting no definitive answer as to what\'s going wrong is time-consuming.','Alpine or Arch.','Y','','','','','','MatthewCroughan/nixinate','','','','Hyprland','Home Manager, nix-direnv, Cachix, agenix, lanzaboote','','Keep up the good work! Nix will thrive!'),(332,'1980-01-01 00:00:00',5,'en','346264586','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A8','A9','A14','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(333,'1980-01-01 00:00:00',5,'en','615652450','A2','A3','male','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I didn\'t understand what people meant by a functional, immutable OS... So i tried, understood, and became addicted ;)','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','Y','','A2','A3','A10','','','','','','','','A4','A13','A11','','','','','','','','','','','','',NULL,'There no replacement really..','A4','','Y','','Y','Y','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','A3','A4','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was curious about what a functional OS was. So i tried, understood, and I\'m hooked!','Y','','Y','Y','','','','Declarative conf that you can share between many machines','Easy to personalize everything, OS, conf, software packaging, and even the software itself.\r\nAll while still being able to update everything easily ','Lots of packages and up to date','Content addressed store and better error messages','Probably archlinux with aur, but that\'s so far away from nixos...','Y','','','','','','','Y','','','','The ability to patch packages and still be able to update them.\r\nHome-manager!\r\n','','Thanks for everything '),(334,NULL,1,'en','119667209','A2','A3','male','','','','','','','','','','','Y','','','','Y','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(335,'1980-01-01 00:00:00',5,'en','1727699983','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I was made to use NixOS on a new desktop build, so I started using Nix for most of my projects.','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A5','A6','A9','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A3','A15','A13','A5','A4','A17','A21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I\'m not really proficient enough to make meaningful/useful contributions.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I built a new desktop then tried to install Arch on it but there were a large number of IO related issues. A friend of mine had been using NixOS for about a year, so I installed that and everything worked.','Y','','Y','','','Y','','Modular declarative system configurations. It makes configuring a large number of slightly different devices very easy.','Reproducibility.','Well-documented service and application configuration.','','Debian with Nix if that still exists in the hypothetical. Arch otherwise.','Y','','','','','','','','','','i3wm','','',''),(336,'1980-01-01 00:00:00',5,'en','451695686','A2','A2','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted to have a way to put my /etc in git, and reuse it across machines. Tried Ansible, didn\'t stick for workstations, then I discovered Nix and stuck with it since. ','Y','Y','','','Y','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A7','A6','','','','','','','','A6','A8','A9','','','','','','','','','','','','',NULL,'Probably Ansible or equivalent','A4','','Y','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A2','A9','A15','A3','A1','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted a way to put my /etc in git. Tried Ansible, which didn\'t stick, ended up discovering NixOS, never looked back','Y','','','','','','','Cross-machine usability (and cross-platform)','Stability','The fact that it\'s Nix based','Secrets management\r\nI used to use nixos for my personal servers, but I dont want to have to go through the trouble of writing a nice and clean nixos module on a Friday evening when I just want to start a Minecraft or Factorio server to play with friends, so I went back to debian ','Debian for servers (which I currently do, see previous question)\r\nArchLinux for workstations ','Y','','','','','','','','','','i3','poetry2nix\r\nrust-overlay\r\nnix-darwin\r\nhome-manager\r\nsoxin (which I develop)','Basically all of the deployment tools',''),(337,'1980-01-01 00:00:00',5,'en','253482438','A8','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','The declarative and functional nature is very appealing when dealing with system configuration and development for my work.','','','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A2','A7','A10','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'Bash scripts + Docker I guess?','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A3','','','','','','','','','','','','','','','','','','','','A15','A2','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time and lack of experience','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Started on Arch because I was got fed up with Windows. Moved over to NixOS after I heard about its declarativity.','Y','','','','Y','','','Declarative configuration model','Reproducible system configurations','Rollbacks','Fully functional, mature GUI configuration editor','Probably Arch, maybe Guix?','Y','','','','','','','','','','SwayWM, newm','','','I <3 Nix and NixOS :D\r\nThank you to everyone in the community who works on this project!'),(338,'1980-01-01 00:00:00',5,'en','386087232','A2','A3','male','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Followed a fairly traditional journey to Linux. Windows -> Ubuntu -> Arch -> NixOS. Experienced frustration with how the system was managed until I found Nix.','Y','Y','','Y','','','Y','','','','','','','Y','Y','Y','Y','Y','','','A1','A2','A8','','','','','','','','A3','A5','A14','','','','','','','','','','','','',NULL,'Honestly can\'t really imagine not using it. Would just be distro package manager and random configs','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Pretty sure I\'m too stupid','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Same as prev, was introduced to Nixos and hence Nix','Y','','','','','','','Entire system configuration as code','Stable','Ease of use once understood ','','Nix-darwin','','','','','','','','Y','','','Hyprland / BSPWM','Devenv.nix\r\n','Poetry2nix. Mainly due to devenv.nix providing fantastic abstractions and consistently works. This is most likely due to problems with python and it\'s ecosystem however.','Thank you as always and appreciate the hard work.'),(339,'1980-01-01 00:00:00',5,'en','1707070550','A2','A2','male','','Y','Y','','','Y','Y','','','','','','','','','','Y','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','As a natural consequence of using NixOS.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A10','A4','A2','','','','','','','','A8','A9','A11','','','','','','','','','','','','',NULL,'Probably something based on OSTree.','A2','','','','Y','Y','','','','','','','','Y','','','Y','Y','','','','','','A13','A9','A5','A2','A4','A3','A1','','','','','','','','','','','','','','','A5','A9','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','People on the internet tried to bully me into using NixOS. I installed it in a VM to try it out so I could tell them things aren\'t as great as they advertised. Things were as great as they advertised.','Y','Y','Y','Y','','','','Fully declarative OS management, \"as Code\"','Managing anything from app deployments to OS upgrades through git push, truly the GitOps way','NixOS Tests','I would make services multi-instance capable, e.g. instead of services.nginx.enable giving you one systemd service for nginx, you could have multiple, similar to what services.redis does. I would also try to make services more self-contained, so it would be possible to build them independently from any full NixOS configuration, making it possible to easily deploy them via systemctl link, essentially a replacement for systemd-portabled that can use the Nix store instead of juggling filesystem images.','I would probably still be working on a custom distro that does something similar to what NixOS does.','','','','','','Y','Hercules CI Effects runNixOS, \"nix system\" from Nix Super','Y','','','','Agenix, Lanzaboote, flake.parts','devenv, due to its --impure requirement, will probably revisit',''),(340,'1980-01-01 00:00:00',5,'en','1609571497','A2','A3','-oth-','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','','','Y','Y','','Y','Y','','','','','','','Y','Y','Y','Y','Y','','A7','A9','A6','','','','','','','','A12','A2','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','sway','','',''),(342,NULL,NULL,'en','1358120812',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(341,'1980-01-01 00:00:00',5,'en','1806810344','A2','A3','male','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','The ideas behind Nix/NixOS looked interesting. I got a new laptop from work I used to experiment with it (NixOS), eventually migrated all of my devices.','Y','','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A7','A1','','','','','','','','A6','A7','A2','','','','','','','','','','','','',NULL,'Probably containers.','A4','','','','Y','Y','','','','','','Y','','','','','','Y','','','','','','A6','A2','A3','A9','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I started using Nix with NixOS, so the previous answer applies.','Y','Y','Y','Y','','','','Declarative configuration','Module system','Easy sharing of configuration between machines','Better support for minimal systems ala NixNG, secure boot (I\'ve yet to try lanzaboote).','Guix. If that doesn\'t count, probably Arch or Void, although around 2019 when I left, the Void community had some issues. Not sure how things are right now.','Y','','','Y','','','','Y','','','','home-manager, nix-index, nil, noogle, nixos-generators, flake-parts, haumea, nix-direnv','flake-utils: replaced by flake-parts, lorri: replaced by nix-direnv',''),(343,NULL,NULL,'en','936780585',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(344,NULL,2,'en','561053450','A2','A2','male','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','Y','','','Y','','Y','','Y','','','Y','','Y','Y','Y','Y','Y','','','A7','A2','A10','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','Y','Y','','','','Y','','','','','','A2','A13','A3','A15','A14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(345,'1980-01-01 00:00:00',5,'en','445180365','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','to keep my configurations reproducible','','Y','','','','','Y','Y','','','Y','','','','Y','Y','Y','Y','Y','','A2','A1','A7','','','','','','','','A2','A12','A6','','','','','','','','','','','','',NULL,'macOS','A2','','','','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','it was more stable than macOS once configured','Y','','Y','','Y','','','declarative system configuration','reproducible builds','rollbacks','strongly typed Nix','macOS','Y','','','','','','','Y','','','','home manager, easy-purescript-nix, mobile-nixos','',''),(346,'1980-01-01 00:00:00',5,'en','1800425730','A2','A3','fem','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','','','','','Y','','Y','','','','','','','','Y','','Y','','','','A2','A7','A10','','','','','','','','A8','A7','A14','','','','','','','','','','','','',NULL,'Ubuntu with distrobox ','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I need to get more familiar with the Nix language to do so','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','The declarative nature of Nix, absolute game changer for me','Y','','','','','','','Reproducibility','Expressiveness','','','Ubuntu with distrobox','Y','','','','','','','Y','','','','','','Option to create a flake config from the installer, although being it experimental.\r\n\r\nAlso having a suggested way to build the flake config for nixos'),(347,NULL,1,'en','102391245','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(349,'1980-01-01 00:00:00',5,'en','438351551','A2','A2','male','','','','','Y','Y','Y','','Y','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','','','Y','','','Y','','Y','','','','','','','','Y','Y','Y','Y','','','A2','A5','A10','','','','','','','','A4','A3','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','dwl','','',''),(348,'1980-01-01 00:00:00',5,'en','1376556979','A2','A3','male','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A6','','','','','','','','A8','A14','A3','','','','','','','','','','','','',NULL,'','A2','','','Y','Y','','','','','','','','','','','','','','','','','','','A2','A15','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','','','Y','','','','','','','','Y','','','','','','','','','','hyprland','','',''),(350,NULL,2,'en','1185804765','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I started using Nix because I was tired of the very slow onboarding on my distro of choice at the time when reinstalling my system (archlinux). At this point I had a dotfiles repo, a length wiki about the Archlinux installation rom the archiso and some scripts to tie it up all together.\r\nNixOS was generally brought upon when discussing the Archlinux installation process in the /r/archlinux subreddit. I decided to jump on it when I had some time (3-day week-end) and haven\'t looked back since. I\'m now using NixOS on all my systems and all the installations are kept in a common github repository. Re-installing a system is as easy as going through the minimal NixOS setup and running \"nixos-rebuild\"!','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A10','A7','A3','','','','','','','','A9','A8','A6','','','','','','','','','','','','',NULL,'Linux distro: I would use Archlinux\r\nPackage managing: a mix of pacman/pip/pyenv/pipenv/dotfiles repo/stow/scripts','A1','','','','Y','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','A21','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don\'t know the basics of packaing/updating/testing a package in nixpkgs. For example for a simple package update, is it as simple as bumping a version somewhere? How do I easily test the new version on my fork?','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(351,'1980-01-01 00:00:00',5,'en','802283206','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A3','','Y','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'Guix or Arch','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A15','A3','A1','A13','','','','','','','','','','','','','','','','','','A13','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(352,NULL,1,'en','322925226','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(353,'1980-01-01 00:00:00',5,'en','636107980','A2','A3','male','','','Y','Y','Y','','','','','','','','','','','Y','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Found out about nix from DistroTube the YouTuber, and have always wanted to be able to centrally configure a system in one place, without dot file hell. That’s what drew me in.\r\n\r\nThe fact that nix-unstable is as up to date as Arch&AUR most of the time, but I’ve not had breakage yet. That’s what’s going to keep me!','','','','','','','Y','','','','','','','','','','Y','','','','A10','A1','A7','','','','','','','','A14','A5','A13','','','','','','','','','','','','',NULL,'Probably Arch+dot files+config scripts','A2','','','','','','','','','','','','','','','','','','','','','','','A9','A21','','','','','','','','','','','','','','','','','','','','A9','A21','','','','','','','','','','','','','','','','','','','','','','','','A1','','Learning curve with Nix language to make and maintain custom expressions ','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Was introduced by YouTuber DistroTube, who also did a video on GNU Guix. I wanted the ability to centrally control and configure my system from one place rather than ‘dot file hell’. That’s what got me into trying it.\r\n\r\nI’ve had three runs at using Nixos, keeping it for longer and longer times before hopping.\r\n\r\nThe unstable channel is as up to date as Arch&AUR and I’ve had no update related breakages yet. That’s what’s keeping me into nix.','Y','','','','','','As lightweight desktop OS on old laptop','Unstable has 99% of packages I ever search for','0 Desktop environment bugs caused by updates','Centralised config, with many options','I would add in a simple interface for finding the options available to a package. If the wand is powerful enough, I’d actually want a GUI app which serves all those options graphically.','Arch + install script ','Y','','','','','','','Y','','','Hyprland ','','Home manager\r\n- it fails consistently on my system, and when I can get it to install packages, as soon as I try to update them it breaks\r\nI’ve tried to debug it at length but have given up and just use plain Nixos config to set packages','Thanks for doing such an excellent job, and creating such a cool but also extremely useful technology.\r\n'),(354,'1980-01-01 00:00:00',5,'en','298623077','A8','A4','','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','I own a mug which reads \"Use Nix for Literally Everything\"','A4','I was annoyed at tools like Ansible where asking for a configuration change and then deleting the ask caused software to be left behind. I was annoyed at Gentoo for needing manual `emerge -e world` when you changed CFLAGS. Nix solved both of these problems, and it looked like people were taking the time to do things right.','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A9','A4','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'Probably a really sad Rube Goldberg contraption of containers to try and get some kind of build isolation.','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A13','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Declarative configuration done right. I was sick of rebuilding my personal machines every N years.','Y','Y','Y','','','','','Declarative Configuration','','','','Gentoo','Y','','','','','Y','','','','','i3','haskell.nix','',''),(355,NULL,1,'en','121085559','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(356,'1980-01-01 00:00:00',5,'en','1743648392','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','Y','','Y','','','','','Y','','Y','','','','','A2','A8','A9','','','','','','','','A8','A3','A5','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A14','A2','A1','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(357,'1980-01-01 00:00:00',5,'en','633705891','A2','A4','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A7','A9','A10','','','','','','','','A8','A9','A15','','','','','','','','','','','','',NULL,'','A4','','','','','Y','','','','','','','','','','','','','','','','','','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(358,'1980-01-01 00:00:00',5,'en','294422965','A1','A3','male','','','','','','','','Y','','','','','','Y','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted to install something not supported on the ancient Debian version we use at work. ','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','','A2','A3','A9','','','','','','','','A8','A12','A2','','','','','','','','','','','','',NULL,'I guess nothing','A1','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A2','A1','A9','A15','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','The complexity of things I want to package, such as font-bakery for python','N','N','I do want to try it for a homelab, I just have to build it',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nix with Racket via dream2nix. It’s very cumbersome at the moment, would be nice to see improvements ','',''),(359,'1980-01-01 00:00:00',5,'en','1363683735','A5','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A7','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'Arch Linux or maybe look at Fedora Silverblue ','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','Y','','','','','','','','','','','','','','','','','','Y','','','','',''),(360,'1980-01-01 00:00:00',5,'en','964397060','A2','A3','male','','Y','','','Y','','','','Y','','','','','','','','','Y','','','Y','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','Y','','','Y','Y','','','Y','Y','Y','Y','Y','','A2','A1','A6','','','','','','','','A8','A2','A5','','','','','','','','','','','','',NULL,'bazel','A4','','','','Y','','','','','','','','','','','Y','','Y','','Y','','','','A2','A4','A17','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','Y','Y','','Reproducibility','Declarative system configuration','Remote management','Make flake feature the default','Arch linux','Y','','','','','','','','','','i3wm','poetry3nix','mach-nix',''),(361,NULL,2,'en','1192190866','A2','A3','male','','Y','','','','','Y','Y','Y','Y','','','','','Y','','','Y','','','Y','','Y','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Originally? It was just too difficult to manage my GHC toolchain versions and Nix was super helpful for that. :)\r\nA few months later, I used more and more Nix packages so I tried to use NixOS on a server to set-up my mailserver etc.\r\nSince it was super easy and maintainable, a year later I moved to full-time NixOS :)','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A8','A4','A14','','','','','','','','','','','','',NULL,'Probably Homebrew / Debian packages; Docker. Would be a sad life though.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A11','A4','A2','A1','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Nothing worthwhile to contribute, sadly.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(362,'1980-01-01 00:00:00',5,'en','2175751','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','Found NixOS while looking for a Linux Distro and saw Nix. I found the principles around Nix to match what I was looking for and it seemed to solve a lot of problems I\'ve had.','Y','','','Y','','','Y','','','','','','','','Y','','','','','','A2','A3','A1','','','','','','','','A8','A4','A5','','','','','','','','','','','','',NULL,'Distrobox or similar','A1','','','','Y','Y','','','','','','','','','','','','','','','','','Non','A4','A3','','','','','','','','','','','','','','','','','','','','A4','A3','','','','','','','','','','','','','','','','','','','','','','','Non','A2','','lack of knowledge on how to package software and the complexity of the Nix language. ','N','Y',NULL,'Found it tricky to set up and I haven\'t had time to try again ','Better documentation, especially for flakes ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(363,NULL,NULL,'en','1821717984',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(364,'1980-01-01 00:00:00',5,'en','1769410912','A2','A5','male','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I was looking for an OS that would work well with some lxd containerized apps. NixOS helped me build an OS with all the apps installed and configured, with relatively easy deployment. Something that could be easily destroyed and redeployed. ','Y','Y','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A6','A2','','','','','','','','A14','A4','A8','','','','','','','','','','','','',NULL,'lxd and ansible','A1','','Y','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','It is really hard to learn how to write packages with python dependencies if you are a beginner. I am really trying!','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','Y','','','','','Flexibility ','Reproducible ','Build cache','A gui wizard for creating boilerplate .nix','Lxd and ansible. ','Y','','','','','','','Y','','','Hyperland and bspwm ','','','Please focus on users that are not programmers so it lowers the barrier of entry. It is also important to decide that flakes are to become 1st citizen or not. There are a lot of documentation dispersed and going on different directions. '),(365,'1980-01-01 00:00:00',5,'en','1280345134','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','A guy on a discord server kept talking about it. He kept posting blog posts and other materials. I looked at it and it looked cool so I tried it. The zero to Nix guide was really good.','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','','A1','A2','A3','','','','','','','','A5','A14','A3','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','Y','','Y','','','','A4','A6','A12','A2','A1','','','','','','','','','','','','','','','','','A12','A15','A4','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','N','Better learning resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(366,'1980-01-01 00:00:00',5,'en','876390663','A5','A3','male','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I was performing analysis of next-generation sequencing data and found myself annoyed at the lack of reproducibility in “install this Python package but first install this C library,” so I turned to Nix for a better way to manage dependencies.','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A4','A5','','','','','','','','','','','','',NULL,'Guix?','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A21','A2','A4','A3','','','','','','','','','','','','','','','','','A21','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I wanted to try something new for my VPS, particularly something declarative so I could not have to remember a million tiny details next time I set it up.','Y','','Y','','','','','Declarative system configuration','Type-checked modules','Rollbacks','I would stabilize flakes as the way of configuring the system.','Probably Arch? Maybe Debian for some cases.','Y','','','','','','','','','','','home-manager','',''),(367,'1980-01-01 00:00:00',5,'en','2025924783','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A2','','','Y','','','','','Y','','','Y','','','','','','','Y','','','','A2','A10','A1','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'Freebsd, arch','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A2','','','','','Y','','','','','','','','','Y','','','','','','','Y','','','','','',''),(368,'1980-01-01 00:00:00',5,'en','2001942316','','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It was an improvement over Gentoo.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A6','A2','A1','','','','','','','','A11','A15','A6','','','','','','','','','','','','',NULL,'Tup','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Better than Gentoo.','Y','','Y','','','','','Declarative configuration and package selection.','','','Init system agnosticism.','Genode, OpenBSD.','Y','','','','','','','','','','sway','','',''),(369,'1980-01-01 00:00:00',5,'en','1884220157','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','need reproducible dev setup','','Y','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A2','A1','A3','','','','','','','','A6','A8','A14','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','lack of knowledge','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','','','','more documentation, more packages, better cli','','Y','','','','','','','','','','hyprland','','',''),(370,'1980-01-01 00:00:00',5,'en','1668678572','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A6','','','','','','','','A8','A9','A2','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','','flake-parts','flake-utils','Ask about sentiments towards Nix consultancies next year.'),(371,'1980-01-01 00:00:00',5,'en','1451622409','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A2','It got recommended to me by a fellow student to solve dependency issues','','','','Y','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A5','A9','','','','','','','','','','','','',NULL,'Docker','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','A1','A13','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Did not have the need except for niche packages','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A2','I decided to try it after playing with Nix a bit. I was looking for a linux distro for my laptop and after breaking few Debian instals i decided to try NixOS','Y','','Y','','','','','Declarative environment','Stability','','- add a warning when installing a package with environment.systemPackages that is available as programs.package-name instead.\r\n- make some best practice recommended ways of writing and modularising configuration.nix.\r\n- built in configurable generations trimmer (eg. keep all younger than x, and at least y)','Debian','Y','','','','','','','','Y','','','','',''),(372,'1980-01-01 00:00:00',5,'en','1600126943','A2','A4','male','','Y','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','','','','','','ProxMox','','Y','','Y','','Y','','','Y','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','Y','','','','','','A6','A10','A4','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','','Y','Y','Y','','','','','','','','','Y','','','','','','','','','','','','',''),(373,'1980-01-01 00:00:00',5,'en','1228703921','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','NixOS was recommended to me by a friend, I started using it because I found the promise of a reproducible environment appealing.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A1','A7','A10','','','','','','','','A7','A8','A3','','','','','','','','','','','','',NULL,'Another Linux distribution.','A4','','','','Y','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I\'m not very good with the Nix language.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started using it the same time I started using Nix, it was recommended to me by a friend.','Y','','','','','','','Reproducible environment','Centralized configuration','Atomic updates','I would change Nix to have better error messages','Linux Mint','Y','','','','','','','','Y','Y','','','',''),(374,'1980-01-01 00:00:00',5,'en','588538864','A5','A3','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','Y','','A2','A7','A10','','','','','','','','A8','A2','A12','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A13','A15','A3','','','','','','','','','','','','','','','','','','','A15','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I have contributed, but it is a pain. PRs sit open for an extreme amount of time, even in an approved state.\r\n\r\nNixpkgs itself is full of broken and out of date derivations that I have to override, but fixing them upstream has too much friction.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','','Y','','','','','','','Y','','','Y','','','','','','','Xmonad','','Nixops',''),(375,'1980-01-01 00:00:00',5,'en','1167425710','A2','A2','male','','','','','','','','','','Y','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','More powerful replacement for docker as deployment tool.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','','','','','A7','A8','A2','','','','','','','','A13','A6','A15','','','','','','','','','','','','',NULL,'podman / custom build scripts / docker-compose','A1','','','Y','Y','Y','','','Y','','','','','Y','','','','','','Y','','','','A1','A15','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I needed an ability to ~safely~ update configuration of remote host.','Y','','Y','','','','','Declarative configuration','Reversible upgrades','Reusing same configuration for multiple servers','- Tool for Initial deployment to VPS or best practice for doing that.\r\n- Apps deployment best practice (something like https://github.com/astro/skyflake)\r\n- Refactor module system','k8s / docker-compose / CI scripts','','','','Y','','','','','','','','flake-parts\r\nnix-tree\r\ndevenv\r\nragenix\r\nmanix','',''),(376,'1980-01-01 00:00:00',5,'en','1319626409','A5','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started using Nix so I could describe my entire OS with a single .nix file. This seemed like a huge improvement in the management of my personal computers.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','Building container images (arion)','A7','A2','A10','','','','','','','','A8','A2','A4','','','','','','','','','','','','',NULL,'I would have to take a deeper look at some of the other package managers which try to do what Nix does... but such a reality sounds like a bad nightmare to me.','A4','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A15','A1','A17','','','','','','','','','','','','','','','','','','','A15','A17','A1','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','The idea behind single configuration file with high level abstractions (NixOS options) to configure your OS was amazing to me. Instantly sold.','Y','Y','Y','Y','','','','Reproducible','Declarative','Reliable','Improve the speed of evaluating/building systems.','I don\'t know of anything similar. The premise of this question terrifies me ;-)','Y','','','','Y','Y','','','Y','','','arion, sops-nix','',''),(377,NULL,1,'en','855409337','A2','A3','male','','','Y','','','Y','','','','','','','','','','','Y','','','','','','','Y','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(378,'1980-01-01 00:00:00',5,'en','1933152666','A2','A4','male','','','','','','Y','Y','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Development shells, specifically for Perl projects that needed different package versions.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A8','A9','','','','','','','','A9','A8','A7','','','','','','','','','','','','',NULL,'Debian APT and Docker','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','Azure Pipelines','A13','A15','A4','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','patches','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Mainly because of declarative containers and reproducible installation.','Y','','Y','','','','','Declarative configuration','Declarative containers','Fix-point merging with imports','Rename system.stateVersion to system.compatibilityVersion or something that confuses people less.\r\n\r\nImprove evaluation speed.','Debian','Y','','','Y','','','','','','','xmonad or hyprland','- Cachix\r\n- cachix-action (GitHub)\r\n- flake-utils\r\n- Home Manager\r\n- install-nix-action (GitHub)\r\n- Naersk\r\n- nix-direnv\r\n- nix-top\r\n- nixfmt\r\n- nixos-hardware\r\n- NUR\r\n- sops-nix\r\n- update-flake-lock (GitHub)','Lorri (switched to nix-direnv)','Good work with the survey!'),(379,'1980-01-01 00:00:00',5,'en','1670043097','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','Y','','A2','My school is using it for projects ','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A4','','','','','','','','A8','A5','A9','','','','','','','','','','','','',NULL,'GUIX','A4','','','','Y','Y','','','','','','Y','','','','','','','','','','','','A2','A15','A6','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Don\'t have much time right now','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(380,NULL,1,'en','961002090','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(381,NULL,1,'en','2047110893','A2','A4','male','','','Y','Y','','','Y','','','','Y','','','','','','','Y','','','','Y','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(382,NULL,2,'en','1234375356','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(383,'1980-01-01 00:00:00',5,'en','683909011','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Had dependency problems with cabal so I switched my Arch install to NixOS','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A3','A2','','','','','','','','A8','A14','A3','','','','','','','','','','','','',NULL,'Arch and package managers for languages I use','A4','','','','','','','','','','','','','','','','','','','','','','','A13','A2','A14','','','','','','','','','','','','','','','','','','','A4','A2','A13','','','','','','','','','','','','','','','','','','','','','','','A2','','I will start during Summer of Nix :)','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Arch had dependency problems for my Haskell builds so I switched to NixOS','Y','','','','','','','No dependency hell','nix-shell','automatic memory management','Use some more sane language than nix.\r\n\r\nFeature for updating things in place for devices with little memory.','Arch','Y','','','','','','','','','','i3','','',''),(384,'1980-01-01 00:00:00',5,'en','1763315995','A5','A5','male','','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','When I changed jobs, I wanted to set up the new OSX laptop with the same software and configuration on both. Home-manager and nix-darwin looked like a great way to do this but the learning curve has been very steep. I\'ve had to uninstall and reinstall many times after I get into some broken state.','Y','','','','','','Y','','','','','','','','Y','','Y','','','','A3','A10','A1','','','','','','','','A8','A5','A9','','','','','','','','','','','','',NULL,'I\'ve tried many tools over the years and none are great for synching software and configuration across machines. In the past, I\'ve tried unison, got repositories, gnu stow, but nix has been the best so far. I feel like if nix leaned into home-manager and nix-darwin for personal machine config across machines, it would fill a missing niche and become really successful and popular.','A1','','','','','Y','','','','','','','','','','','','','','','','','','A20','A5','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Not knowing flakes which seems like the new thing and not knowing the process around contributing.','N','N','When I get the opportunity to develop on a Linux laptop. Right now, our company is completely OSX.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager\r\nnix-darwin\r\n','','The nickel language looks interesting from a types and error message perspective. I hope it doesn\'t lead to a fractured ecosystem like flakes seems to have done.'),(385,'1980-01-01 00:00:00',5,'en','1221922366','A2','A3','male','','Y','','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Originally, I and my friends/colleagues had set on trying out NixOS to manage a shared devbox, as an alternative to Archlinux+AUR. We had rather soon reverted the decision and moved back to Archlinux, due to unapproachable level of complexity, inconsistent documentation, and, most importantly, our particular use-cases not being supported by anyone. I\'ve been, however, using NixOS as my daily driver ever since, because it provided me with the means to contain the state, and because the distribution supported the option of deviating from maintainers\' decisions using local overlays.','','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','Y','','A9','A10','A2','','','','','','','','A2','A1','A5','','','','','','','','','','','','',NULL,'I\'d be suffering with archlinux and conda','A2','','Y','','Y','Y','','','','','','','','','','','Y','','','Y','','','','A4','A2','A15','','','','','','','','','','','','','','','','','','','A15','A9','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Same story as for Nix','Y','','Y','','','','','\"Containing the state\": however dirty I make the environment, I can later discard most of the garbage by removing a few of lines in the config','Making systemd almost usable','Declarative containers','1. I\'d have it so you could define several instances of any service, without falling back to containers\r\n2. I\'d make it possible to `nixos-rebuild switch` to a new nixpkgs revision without breaking driver-related libraries in `/run/opengl-driver`','Same as with Nix: I\'d suffer with archlinux and conda','Y','','','','','','','','','','sway+lightdm','nix-init','poetry2nix, numtide/devshell',''),(386,'1980-01-01 00:00:00',5,'en','355455272','A2','A4','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Reproducibility, wanted to learn something new','','','','Y','','','Y','','','','','','','','','Y','Y','','','','A2','A1','A3','','','','','','','','A4','A10','A6','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Experience, once I\'m more comfortable with the language and tooling I probably will.','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','Y','','','','','','','Reproducibility','Package availability','Common language to configure files','','Arch','Y','','','','','','','','','','Hyprland','','',''),(387,'1980-01-01 00:00:00',5,'en','56179958','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','A friend recommended NixOS and the descriptive nature was very appealing to me.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Nothing, really. Have not yet made any useful changes.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','Declarative system definition','Rollback','Customizability','','Arch','Y','','','','','','','','','','xmonad','','','Keep up the great work! Thanks.'),(388,NULL,1,'en','1736698376','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(389,'1980-01-01 00:00:00',5,'en','1803999563','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Nix with home-manager on Linux distro was mostly a \"trying out\" experiment as an additional package manager.\r\nPinning, rollbacks, sane dependency management and package configurations were nice extras.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A7','A2','A1','','','','','','','','A4','A5','A8','','','','','','','','','','','','',NULL,'- GUIX, if it didn\'t consider unfree packages as second class or I could live without them.\r\n- regular FHS distro otherwise, distro package manager for system packages and programming language specific tools for everything else.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Not enough experience with Nix language and Nixpkgs functions.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Switch to NixOS was related to a time when on my personal machine (Ubuntu LTS) major upgrade broke a lot of things (pip, libreoffice, python-related dependencies), realistically the easiest way to fix it was going to require full reinstall from scratch.','Y','','Y','','','','','declarative package and configuration management','rollbacks','ability to use impermanence (wiping out root from unnecessary state after each boot)','Add better error messages.\r\nCurrently some errors related to nix language while trying to rebuild (syntax errors, etc.) sometimes require looking through a list of random looking traces. And hopefully one of them points out something that you can recognize from your configuration and figure out what\'s wrong.','- GUIX, if it didn\'t consider unfree packages as second class or I could live without them.\r\n- regular FHS distro otherwise, distro package manager for system packages and programming language specific tools for everything else.','Y','','','','','','','','','','bspwm','home-manager, nix-direnv, nix-init, crane','',''),(390,NULL,NULL,'en','705488693',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(391,'1980-01-01 00:00:00',5,'en','1226705757','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Configuration through a single .nix file is what drew me to the idea. I was tired of manually installing OS, or trying to use my hacked together shell scripts. Nothing was ever exactly like I needed it. NixOS fixed that immediately and I eventually moved any leftover non-NixOS devices to running Nix package manager.','','Y','','','Y','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','Y','Y','','A2','A1','A7','','','','','','','','A5','A4','A6','','','','','','','','','','','','',NULL,'Likely GNU Stow or Git Annex or just GNU Guix (Altho that came after Nix, so...)','A2','','','','Y','Y','','Y','','','','','','','','Y','','','','','','','','A13','A22','A15','A9','','','','','','','','','','','','','','','','','','A22','A13','A15','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Confidence','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I distro-hopped from Ubuntu, Arch, Debian to lighter Void or Alpine. Realized that systemd was not actually that bad so looked to get back into a distro that included it and spotted NixOS. Never looked back.','Y','Y','Y','Y','Y','Y','','Flakes','Configuration','Reproducibility','Software manager that works specifically with Nixpkgs/NixOS that integrated configuration options in a GUI.','Force myself to learn Scheme/Guile and use GNU Guix','Y','Y','Y','Y','Y','','','Y','','','Hyprland','Home-Manager','krops, sops-nix','Doing great work folks. Keep it up. If we could get some of the package managers to create some step by step documentation on how they specifically brought packages to nixpkgs, that would be a great learning resource for those like myself who wish to contribute but just arent exactly sure we can do it right.'),(392,'1980-01-01 00:00:00',5,'en','1601595654','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A7','Heard about several people online using nix to set up complex development environments. ','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A10','','','','','','','','A4','A8','A14','','','','','','','','','','','','',NULL,'Combo of ansible, docker and dotfiles','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A9','A15','A2','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','skill','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','','Y','','','','','','','portable declarative environment','','','','pop-os or arch','Y','','','','','','','','','','sway','','',''),(393,'1980-01-01 00:00:00',5,'en','1512797412','A2','A3','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','I heard about Nix from my friend and I found it quite interesting.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A7','A9','','','','','','','','A2','A8','A14','','','','','','','','','','','','',NULL,'Archlinux ','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A5','A19','A9','','','','','','','','','','','','','','','','','','','A5','A19','A15','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Nothing ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','Declarative configuration','Image generations','','I\'d add more documentation and human-readable errors','Archlinux ','Y','','','','','','','','','','Sway ','nix-ld, nix-direnv','',''),(394,'1980-01-01 00:00:00',5,'en','264888778','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A3','','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'Arch Linux and/or Docker','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A13','A5','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A2','','Many things are already there (yay!), but when it’s not there, it’s the lack of good documentation/how-to guides.\r\n\r\n For example, what are the conventions (adding parameters etc.)? You have to figure out it by looking to other packages most of the time. I know that “new-package.enable” should be used as in the rest of the packages, but other things require research.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','Y','','','','','Reproducible environment','Rollbacks','','*CONSISTENT* Documentation and guides','Arch linux','','','','','','','','','','','i3wm / sway','','','NixOS rocks! Ty all who contributes!'),(395,'1980-01-01 00:00:00',5,'en','2096805694','A1','A2','male','','Y','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A4','A12','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','A11','A4','A3','A2','A1','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Not familiar with the rules for contribution. I only have small patches for updated versions or manually pull plugins for vim.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','reproducibility','declarative configuration','','first-class secret management','','Y','','','','','','','','Y','','','','',''),(396,NULL,2,'en','452801324','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Ubuntu upgrade crashed my system. Couldn\'t work for a full day. Apt scripst collection was getting ridiculous.','','Y','','','','','Y','','','','','','','','','','Y','','','','A7','A1','A8','','','','','','','','A3','A14','A5','','','','','','','','','','','','',NULL,'Guix','A4','','','','','','','','','','','','','','','','','','','','','','','A7','A1','A17','A2','','','','','','','','','','','','','','','','','','A7','A1','A17','','','','','','','','','','','','','','','','','','','','','Y','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(397,'1980-01-01 00:00:00',5,'en','93742372','A5','A5','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','Daily driver','A2','Heard about it on the PodCast \'Linux Unplugged\' and want to test it. I have converted all my workstation devices over, and I am in the process of migrating my servers to NixOS.','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A8','A5','','','','','','','','','','','','','',NULL,'I was a long-term Arch user before trying to leverage ansible to do what NixOS does by default. ','A2','','','','','','','','','','','','','','','','','','','','','','','A2','A3','A4','A9','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Time and understanding the parts well enough to contribute.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I heard about it on the PodCast \'Linux Unplugged\' and decided to give it a go. It totally replaced my Arch Linux/Ansible set up I was trying to use.','Y','','Y','','','','','Declarative config','Role-back','Package selection','...? I am still learning NixOS and Nix, so I am not sure yet. I know I do not know everything, but I do not know enough to challenge why something is done the way it is. Give me a few more months.','I would use Arch w/ Ansible scripts','Y','','','','','','','','','','sway','','','Thank you for taking your time and energy to develop a secure, (fairly) easy to use OS.'),(398,NULL,1,'en','1401405991','A8','A5','male','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(399,'1980-01-01 00:00:00',5,'en','57445685','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','It\'s what runs NixOS','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A5','','','','','','','','A8','A1','A4','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I\'m a new Nixling, as soon as I get comfy with the ecosystem and good practices of the language I\'ll be sure to submit something, already have a few packages that I think need changes.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Converted from Guix after a long tough decision, because of the much larger community and backing, also general higher speed of development and ZFS support. Originally came to declarative systems because I love to tinker and customize but didn\'t want to lose my progress whenever I changed machines.','Y','','Y','','','','','Declarative system','Single language to configure everything on the system','Same system on multiple machines','Probably a cleanup of the codebase. Refactors and stuff.','GuixSD','Y','','','','','','','Y','','','','Dotenv, Nixified-ai, nix-tree, nur-packages, emacs-overlay, a ton of other occasionally useful tools in flake repos','nix-env tbh I just reconfigure or create a shell, my user profiles are completely empty','Thank you for all the hard work, you\'re the best. I adore how great y\'all\'s project has become.'),(400,'1980-01-01 00:00:00',5,'en','1568861413','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A13','A4','A6','','','','','','','','','','','','',NULL,'Fedora Silverblue. You can rebase to a custom container image, which lets me keep atomic updates. See https://ublue.it/ for an example','A2','','','Y','Y','Y','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Most packages that I need are already available','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','','','','','','Atomic, safe updates','Infrastructure as code','Package availability','Add good types to the Nix language.','Fedora Silverblue','Y','','','Y','','','','Y','','','','Alejandra (formatter)','Impermanence',''),(401,'1980-01-01 00:00:00',5,'en','212173837','A2','A6','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I\'m intrigued by declarative configurations for entire operating systems and applications.','','Y','','','Y','','Y','Y','','','','','','','Y','','Y','','','','A2','A3','A7','','','','','','','','A8','A6','A13','','','','','','','','','','','','',NULL,'Fedora blue, or arch.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A13','A17','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Lack of knowledge/confidence.','N','Y',NULL,'Lack of secure boot support (very hard at present!), Plus company uses Ubuntu.','Secure boot support baked in.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(402,'1980-01-01 00:00:00',5,'en','1032954608','A6','A3','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I came across its philosophy it made sense so I started using it. I have been down the FP rabbit hole, so it was easy to buy what nix was selling.\r\n\r\nDeclarative dotfiles management is great.\r\nRollbacks - great\r\nReproducibility - great. (A couple of times I had to set up new machines and I can just get to the current working setup in a few hours, this used to take days to weeks earlier)\r\nI absolutely love direnv + nix combo.','Y','','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A8','A4','A3','','','','','','','','','','','','',NULL,'That is a loaded question. Nix eliminates the use of quite a few tools\r\nI am answering this question as a mac user (primarily)\r\nFor the package management needs - probably brew (I do use it sometimes when a package is not available on nixpkgs)\r\nWill need to manage multiple language tooling for versions etc, pyenv, nvm, rustup etc.\r\nSome kind of dotfile manager too.\r\nI still won\'t get a lot of things lice declarative management -> most likely I would have gone towards puppet, chef, or some other tool.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A13','A17','','','','','','','','','','','','','','','','','','A2','A15','A17','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Tried to contribute a couple of times.\r\nThe first PR was reviewed and merged after ages. (Probably after a year or more than that)\r\nOne time I tried to contribute the terraform treesitter support that I was using in my config, so I asked around in the NixOS unofficial discord and got no response at all.','N','Y',NULL,'I was working mostly using a desktop then I switched to mac for work so I had to stop using NixOS','As soon as I use a work machine that is not a Mac I will use NixOS on it. I will use NixOS if I don\'t plan to game on that device.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A few packages from NUR (firefox plugins)\r\nflake-utils\r\nrust-overlay','poetry-to-nix\r\nWay too many issues to get this working in a pragmatic sense.','I am not a fan of writing bash. I think nix expression language should be capable enough that we don\'t have to use bash all over the place.\r\n\r\nLastly, it is one of the best projects ever and I thank everyone who has ever worked on it.'),(403,'1980-01-01 00:00:00',5,'en','1762886535','A5','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','Y','Y','','Y','','','','','Y','','Y','','Y','','A2','A7','A4','','','','','','','','A5','A12','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','Y','','','','','','','','','Cirrus','A2','A1','A9','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','','','','',''),(404,NULL,1,'en','1200338066','A1','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(405,'1980-01-01 00:00:00',5,'en','1815973020','A2','A4','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I need a reproducible system to setup a compute cluster. I am using NixOS ever since and never looked back.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'gentoo, containers.','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A2','A4','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','Declarative configuration','Simple configuration via modules','','','gentoo','','','Y','','Y','','','Y','Y','','','','Nixops',''),(406,'1980-01-01 00:00:00',5,'en','689559932','A2','A2','male','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','I found the concept of nix/nixos very intriguing.','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A7','A2','A1','','','','','','','','','','','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A11','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','nothing','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','','','Y','','','atomic upgrades and rollback','packagr availability ','reproducibility','','','Y','','','','','','','','Y','','Hyprland','','',''),(407,NULL,1,'en','549478444','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(408,'1980-01-01 00:00:00',5,'en','969962191','A2','A2','male','','','','','','','','','','Y','Y','Y','','','','','','','','','','','Y','','','Y','Y','','','','','N','N','Y','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(409,'1980-01-01 00:00:00',5,'en','1817290887','A3','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(410,'1980-01-01 00:00:00',5,'en','1089143973','A4','A2','male','','','','','','','','Y','','Y','','Y','Y','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','My friend told me about NixOS long before I started using Linux. After I finally made the switch and got comfortable (and irritated) with debian based distros, I decided to checkout NixOS and really liked the idea. ','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A10','A9','','','','','','','','A6','A3','A2','','','','','','','','','','','','',NULL,'Arch or Fedora','A2','','','','Y','Y','','','','','','','','','Evaluable flake inputs. Custom patch. ','','','','','','','','','A1','A2','A4','A6','A17','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','My friend told me about NixOS long before I started using Linux. After I finally made the switch and got comfortable (and irritated) with debian based distros, I decided to checkout NixOS and really liked the idea. ','Y','','','','','','','Pure and correct packages across my entire pc. ','Being able to make my pc entirely declarative. ','Development environments. No conflicts. ','I really don\'t like how flake inputs work and how limiting flakes are. I hope you resolve these before making them stable..\r\n\r\nNot sure what I\'d change exactly, though.. But I\'d probably start by making flake inputs evaluable.','Arch or Fedora','Y','','','','','','','','','','Hyprland','My own project, \"combined-manager\".\r\n\r\nI also use \"nix-super\", a fork of nix, so I could have evaluable flake inputs.\r\n\r\nI also use home manager','','Awesome distro'),(411,NULL,1,'en','1881429710','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(412,NULL,1,'en','347183417','A2','A2','fem','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(413,NULL,3,'en','125921885','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(414,'1980-01-01 00:00:00',5,'en','1559262883','A5','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','Y','','','','','','','','','Y','','','','A1','A2','A7','','','','','','','','A6','A14','A8','','','','','','','','','','','','',NULL,'Probably arch & controlled by ansible. Not the same but best approximation. ','A2','','','','Y','','','','','','','','','','','','','','','','','','','A9','A7','A5','A2','A1','','','','','','','','','','','','','','','','','A9','A7','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','Descriptive config','Versionable','Atomic','Make flakes stable/official ','Arch & anisble','Y','','','','','','','Y','','','I3','Flake utils plus','',''),(415,'1980-01-01 00:00:00',5,'en','770132303','A1','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','Y','Y','','','','','Y','Y','','','','','','Y','','','Y','','','','A1','A2','A6','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A4','A3','A17','A8','A11','A5','A9','','','','','','','','','','','','','A8','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A5','','Y','','Y','','','','','','','','','','','','','','','','','','','','','','',''),(416,'1980-01-01 00:00:00',5,'en','588652359','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Wanted declarative configuration on a minimal system & it looked fun','','','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'Docker, arch','A2','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A2','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Knowing how to build software and setup flakes for building software.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Arch broke :(','Y','','Y','','','','','Declarative machine config','Reproduceable config','Package availability ','Better documentation','Arch','Y','','','','','','','','','','Hyprland','Home-manager, Fenix, sops-nix','','I love this project '),(417,'1980-01-01 00:00:00',5,'en','1724196442','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A6','A3','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','','','','','','','','','','','','Y','','','','','','','exwm','','',''),(418,'1980-01-01 00:00:00',5,'en','542534738','A4','A2','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was using Ubuntu for about 7 years before switching to NixOS. I decided to switch when an update broke my OS. I found about GNU Guix first and I started using it, but I couldn\'t find the software I want. Then I found Nix, and been using it since then.','','','','','','I have Windows 11 as dual-boot. I use it for gaming, but rarely.','Y','','','','','','University Servers (for academic research)','Y','Y','Y','Y','','','','A7','A2','A1','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'I wanted to say GNU Guix, but that probably wouldn\'t exist without Nix.\r\nMaybe VoidOS. Not as powerful as Nix, but I think it\'s the best alternative to Nix and GNU Guix.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A2','A7','','','','','','','','','','','','','','','','','','','A1','A15','A5','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','The same reason I started using Nix. I started using them together.','Y','','','','','','','Configurability (there are options for everything).','Functional OS (My OS is a function of my configuration file). I just need to backup my config file and I\'m good.','Atomic updates and rollbacks. NixOS never broke since I started using it. When any issue happens, I just rollback.','I will add first class support for sandboxing and permissions.','Same answer for Nix.','Y','','','','','','','','','','Qtile','Home-manager. Flakes.','Doom Emacs Overlay. Rust Overlays.','Thank you for all the work you do!'),(419,'1980-01-01 00:00:00',5,'en','1926741768','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','For work','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','','A2','A1','A8','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','Y','','A13','A1','A21','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','For work','Y','','Y','','','','','Declarative system','Rollbacks','','Integrated home-manager','Arch Linux','','','Y','','','','','','','','Xmonad','Home-manager\r\nHaskell.nix','',''),(420,NULL,NULL,'en','1598350863',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(421,NULL,2,'en','71905948','A5','A3','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','Home configuration with home manager ','A3','Nix was the natural progression for my dotfiles and system configuration. I initially started with a bare got repo and checking in my dotfiles, to Ansible to have some system state and then to nix and nixos.','Y','','','Y','','','Y','','','','','','','','Y','Y','Y','','','','A2','A3','A9','','','','','','','','A4','A10','A5','','','','','','','','','','','','',NULL,'I moved from Ansible to nix I would go back to Ansible or salt. I work in the games industry so I have to work with windows I would probably move to salt. From what I remember it has better windows support','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A4','','','','','','','','','','','','','','','','','','','A15','A1','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(422,'1980-01-01 00:00:00',5,'en','1584108849','A2','A3','male','','Y','','','Y','Y','Y','','','','','','','','','Y','','','','','Y','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','','','','A4','was fed up with ubuntu breaking up, wanted to be able to reproduce my setup declaratively. Heard about it from friends and tweag','','','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','Y','','A2','A7','A5','','','','','','','','A9','A8','A3','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','Y','','','','Y','','Y','','','','A13','A17','A21','A2','A1','A3','','','','','','','','','','','','','','','','A13','A17','A1','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','fed up with distribution updates breaking system and having to reinstall. apt breaking mid update leaving unusable system. python hell','Y','Y','Y','','Y','','','atomic update','reproducibility','rollback','I would remove the experimental flags from nix','guix','Y','','','Y','','','','','','','sway','home-manager','nixops is a joke. Could be the best thing but in 5 years the project actually got worse','let\'s make flakes the default, and why the hell do we gate features behind experimental flags ? such a pain'),(423,NULL,NULL,'en','1915568531',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(424,NULL,1,'en','1223313612','A5','A4','male','','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(425,NULL,1,'en','2090904817','A2','A3','male','','','','','','','','','Y','','','','','','','Y','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(426,'1980-01-01 00:00:00',5,'en','853796252','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','Y','','','','','Y','Y','Y','','','','A1','A9','A7','','','','','','','','A4','A10','','','','','','','','','','','','','',NULL,'Ansible and Saltstack','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','Woodpecker','A15','A4','A1','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','','','','','','','','','Y','','','','','','','Sway','sops-nix\r\nhome-manager','',''),(427,'1980-01-01 00:00:00',5,'en','562110708','A2','A4','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','Y','','','A2','A1','A3','','','','','','','','A8','A3','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','Declarative config','Rollbacks','Remote deployment','','','Y','','','Y','','','','','','','Hyprland','','',''),(428,'1980-01-01 00:00:00',5,'en','1936444567','A5','A4','male','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','There\'s something about declarative configuration that I am particularly attracted to. I\'m guessing I was reading about nix on reddit/HN and once I \"got the point\" of nix I became very interested. Initially used it for a year on my MacBook. Very recently I\'ve switched my home server to NixOS from arch and am super happy. I\'ve also started using nix on my work MacBook and my company\'s \"personal VM\" that they provide in the cloud.','Y','Y','','','','','Y','Y','','','','','','','','Y','Y','','','','A2','A1','A6','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'Arch/homebrew','A5','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I contributed my first package recently. The gasket driver.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I\'ve been using it on my Mac for a while. Decided to give NixOS a shot for my home server. Switched from arch.','','','Y','','','','','Declarative system configuration','','','Nothing specific but just making the box language more intuitive somehow. It took a long time to accomplish some simple things like running a private repo python package on a schedule. End result was worth it though.','Arch','Y','','','','','','','','','','','Home manager ','',''),(429,'1980-01-01 00:00:00',5,'en','488677701','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A4','A12','A6','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A15','A2','A5','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','Y','','','','','Declarative configuration ','Rollbacks','Available packages','Add content addressable derivations so that rebuilds don\'t take so long','','Y','','','','','','','Y','','','','Home-manager\r\nSops-nix','',''),(430,'1980-01-01 00:00:00',5,'en','9343305','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I heard about NixOs somewhere online a couple years ago and thought it sounded very cool, so I decided to try it out.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'Maybe Guix. Likely whatever package manager my distro uses','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A4','A2','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I’m not really a developer.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I heard about it online somewhere a couple years ago and thought it looked really cool. What convinced me to actually try it was watching one of Andrew Kelly’s Zig development videos where he was using Nix and NixOs and it looked really nice.','','','','','','','','Declarative configuration','Home manager','Flakes','Better documentation/learning resources. It’s really hard to get into Nix/NixOs. Also using something like Scheme instead of Nix would be really nice. The only thing stopping me from using Guix is that it doesn’t work very well.','Maybe Guix. Probably Arch.','','','','','','','','','','','Awesome','','',''),(431,'1980-01-01 00:00:00',5,'en','1086415496','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','N','N','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','need stability',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sway','-','we need strict types ... badly'),(432,NULL,2,'en','64908453','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I initially heard about Nix when I was trying to learn functional programming. Since I had been using multiple DevOps tools and was already sold on the functional mindset, the idea sounded amazing. Once I tried it, I quickly went all in with it, including NixOS. First on my personal computer (migrating from Gentoo managed through Ansible), on my work computer and finally on all my machines. Including servers and a Raspberry Pi.\r\nAt the same time, I turned all my software projects into flakes.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A7','A2','A10','','','','','','','','A4','A12','A1','','','','','','','','','','','','',NULL,'Ansible\r\nDocker\r\nFrustration','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A11','','','','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(433,'1980-01-01 00:00:00',5,'en','910957586','A3','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A while ago, I\'ve watched a video by wolfgangschannel where he configured his server using Ansible (which I\'ll find very interesting) and that got me thinking what else could I do in a declarative way. So there I was surfing the web and i be stumble upon NixOS (which I\'ve never heard of) and all the ways you could configure it in a declarative form.','','Y','','','','','Y','Y','','','','','','Y','','','Y','','','','A7','A1','A2','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'Ansible + any other immutable distro ','A1','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A5','A17','A15','A13','A3','A2','A1','','','','','','','','','','','','','','','A17','A5','A15','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I can\'t figure the Nix language just yet. I\'ve seen a few videos and a read a few guides but everytime its slightly different. I\'ll love to have a well structured and up to date guide on how to configure and develop','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Like i said before. I\'ll learn by a video and that got me into nixos.','Y','','Y','','','','','Declarative configuration ','Immutable file system','Snapshots','A GUI installer (don\'t know if there\'s one yet)','Tumbleweed','Y','','','','','','','Y','','','Hyprland, Bspwm','Home-Manager, Cachix','I\'ve tried to use an overlay for Neovim because the stable package was old and I didn\'t like the fact that I\'ll be using Neovim Nightly (I like bleeding-edge but love stability)','Keep up the good work, love the distro. Don\'t forget the pain of documentation! '),(434,'1980-01-01 00:00:00',5,'en','1916498594','A4','A2','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I saw a lot of recommendations about using Nix for Haskell development on the Haskell subreddit, saw the introduction video on the NixOS site and thought it was nice and kept it in the back of my head.\r\n\r\nLater, I was searching for a Linux distribution to use. The reality was every distribution I tried highlighted more properties I care about and cannot ignore about my distribution of choice - and, remembering my search about Haskell development back then, I was looking into Nix and NixOS to find out they satisfied those properties. I was experimenting in WSL (Ubuntu) with Nix I then tried NixOS. ','','','','Y','','','Y','','','','','','','','Y','Y','Y','','','','A2','A7','A10','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'I would probably use Bazel and a lot of containerised software and environments','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A2','A17','A15','A11','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Lack of familiarity with the Nix ecosystem and lack of knowledge about Nix which I try to improve.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','After using Nix, I wanted my workflow to integrate better with it and be better affected by its design and philosophy.','Y','','','','','','','Reproducibility ','Declarativity','Ecosystem ','I am afaird I don\'t have anything insightful to say.','Hard to say, I guess some immutable OS of some kind ','','','','','','','','','','','i3','home-manager','','Thank you for everything :)'),(435,'1980-01-01 00:00:00',5,'en','1048582597','A5','A6','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','hobbyist','','','Y','','','nixos','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','long time Debian user, decided (after an unrelated computer hardware failure that required rebuilding my system) that it was time to explore again, advantages (replicable configuration of everything of importance to me, rollback possibility, worthwhile investment skill-set) enough to make switch permanent','','','','','','nixos','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'Debian still probably','A2','','','','Y','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Primarily time. But I note that my language of choice D for development is not even mentioned on your language list :-p','Y',NULL,NULL,NULL,NULL,'A1','','','','solely','A3','tried it, preferred possibilities it gave, ... configure zsh, starship, tmux, i3, printers, development environments, (mpd, vimpc, ncmpcpp whatever) etc. once and sorted for (any machine for) all time\r\n(i do not use homemanager)','Y','','Y','','','','','configuration (of work environment)','development infrastructure (even for my so far, extremely poorly supported language D)','extensibility','proper support for D (dlang) add gdc continue to support ldc (ensure dub continues to work with nix tools)\r\n','might not have moved from Debian, else Guix','Y','','','','','','','','','','i3 tmux etc. (ad hoc/ bespoke)','','','please do not rule out other, minority communities... it is hard (as a developer) to have REALLY STRONG preferences for different relatively specialized communities (languages/tools) that have little intersection ... try NixOS (Nix Flakes); D (dlang); Doom Emacs (org-mode, vim bindings) ... etc. but avenues for them to grow should be encouraged (and certainly not be obstructed) please.'),(436,'1980-01-01 00:00:00',5,'en','1333631965','A5','A4','male','','Y','','','Y','','','','','','','','','','','','','Y','','Y','Y','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','Y','','','Y','','Y','Y','','','','','','','Y','','Y','','Y','','A2','A6','A1','','','','','','','','A6','A8','A14','','','','','','','','','','','','',NULL,'Guix ','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A22','A15','A13','','','','','','','','','','','','','','','','','','A2','A22','A15','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I found out about it inhaler news and it seemed like a great fit for what I wanted in a distribution and now I’m hooked','Y','','Y','','','','','Single repository of complete configuration ','Safe rollback','Excellent community and package support','Maybe have. An easy installation gui, bsd kernel support (I’d love a nixos openbsd router), systemd optional? ','Probably a container management Linux distro on servers and vanilla Ubuntu on my laptop','Y','','','','','Y','','','','','i3','Agenix','I struggled with using systemd-based networking ','I love nix. How can I best help the community with my skills and time?'),(437,'1980-01-01 00:00:00',5,'en','546688481','A4','A4','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','A colleague nerdsniped me','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A5','','','','','','','','A8','A4','A5','','','','','','','','','','','','',NULL,'Arch','A4','','','','Y','','','','','','','','','','','','','','','','','','','A9','A15','A2','','','','','','','','','','','','','','','','','','','A2','A9','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Merges take ages','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','Reproducible systems','Declarative system config','','Better, more up to date, nixpkgs','Arch','Y','','','','','','','','','','Xmonad','home-manager','pip2nix poetry2nix etc','I love nix 💕 '),(438,'1980-01-01 00:00:00',5,'en','1897658335','A5','A3','male','','','','','Y','','Y','','','','Y','','','','','Y','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','','A2','A3','A7','','','','','','','','A5','A8','A11','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','Y','','','','','Y','','Y','','','','A2','A15','A1','A11','A5','','','','','','','','','','','','','','','','','A15','A5','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Utilities to test changes are expensive to run.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I asked my brother for the new meme operating system. Now hundreds of hours of development later, I also drink the Nix kool-aid.','Y','Y','Y','','','','','Reproducible environments','Configuration as code','Nix language for customizing configuration ','','Arch','Y','','','','','Y','','','','','i3','','',''),(439,NULL,NULL,'en','917901719',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(440,'1980-01-01 00:00:00',5,'en','42731923','A2','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','','Y','','','','','','A2','A3','A1','','','','','','','','A2','A15','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A3','A4','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Direnv\r\nNix-direnv','Lorri',''),(441,'1980-01-01 00:00:00',5,'en','1021618283','A5','A3','male','','','','','','','Y','','','Y','Y','','','','','','Y','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','Y','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A1','A6','A2','','','','','','','','A14','A6','A8','','','','','','','','','','','','',NULL,'','A4','','','','','Y','','','','Y','','','','','','','','Y','','','','','','A1','A5','','','','','','','','','','','','','','','','','','','','A5','A1','','','','','','','','','','','','','','','','','','','','','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','Y','','','','','','','betrer docs','','Y','','','','','','','','','','i3','','',''),(442,'1980-01-01 00:00:00',5,'en','1528835233','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A7','A2','A1','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'guix','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A15','A13','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Complexity and having to take future responsibility after contribution','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','Y','Y','','','','','Atomic rollbacks','Rolling release','Reproducible environment','Replace the nix language with a Haskell DSL. Better errors, more sensible structure','guixsd? Debian unstable?','Y','','','','','','','Y','','','','','',''),(443,'1980-01-01 00:00:00',5,'en','2043925998','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','Colleague and podcasts talked about it','','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Yay','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','','Y','','','','','','','','','','Better docs','Arch','Y','','','','','','','','','','','','',''),(444,'1980-01-01 00:00:00',5,'en','260513458','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A7','','','','','','','','A14','A8','','','','','','','','','','','','','',NULL,'Continue to use Debian, or maybe try Guix.','A4','','','','','','','','','','','','','','','','','','','','','','','A9','A2','A15','A1','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','Y','','','','','Package availability','Ease of system configuration','Customization','','Debian or maybe try Guix.','Y','','','','','','','','','','','Home manager','',''),(445,'1980-01-01 00:00:00',5,'en','932829374','A8','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','Y','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted to know what a purely functional OS was like. I was sick of bad scripts and reinstalling Debian.','','','','Y','','','Y','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','A1','A2','A5','','','','','','','','A12','A13','A3','','','','','','','','','','','','',NULL,'Guix','A1','Y','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A1','A15','A4','A3','A13','','','','','','','','','','','','','','','','A9','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Privacy','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','','','Declarative configuration','Rollback','Atomic upgrade','Add editor support for refactoring. Replace nix language with nickel.\r\nRemove all other 2nix tools and use dream2nix.\r\nBetter document idioms, e.g. settings and generators, handling secrets etc.','Guix','Y','','','','','','','','','','sway, arcan','Standard, dream2nix','flake-parts, mynixos.com','Thank you'),(446,'1980-01-01 00:00:00',5,'en','208026555','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','systems architect','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A6','I wanted declarative configuration.','Y','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','','Y','','A2','A3','A6','','','','','','','','A8','A6','A2','','','','','','','','','','','','',NULL,'Debian, Bazel/buck2, gnu stow, guix.','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A1','A2','A21','A9','A10','A7','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','','N','Y',NULL,'I switched to Mac hardware.','On servers: truly easy, pain free nixos installation + easy remote management from macOS + good SELinux support on the server.\r\n\r\nOn desktop: maaaaaybe eventual support for Apple silicon laptops? Or maybe being really easy to run virtually on top of macOS, like an even better version of https://www.tweag.io/blog/2023-02-09-nixos-vm-on-macos/?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tutorials to share with colleagues to help them understand nix, supporting tooling like nix-tree, deploy-rs, nickel, terraform…','','Great work getting the RFC process moving last year + I’d really like to see that continue to improve!\r\n\r\n(Also, while I know that there’s more to do to stabilize flakes, perhaps including source tree support… flakes have completely taken over how I use nix and I would really like to see them continue to be developed and improved!)'),(447,NULL,NULL,'en','1437744246',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(448,'1980-01-01 00:00:00',5,'en','200400075','A2','A3','male','','','','','Y','','Y','','','','','','','','','Y','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I needed a reliable package management tool that can be used to replicate environments across different computers running different operating systems. ','Y','Y','','Y','','','Y','Y','','','','','','','Y','','Y','','','','A2','A3','A7','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Container-based solutions.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','inhouse made solutions','A2','A13','A15','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','The lack of good documentation and relevant resources makes it hard to even know where to begin. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Main os on personal computers','A2','I needed a reliable and replicable system that I can use on both personal and work computers with minimal changes. I made a decision to switch to NixOS after Arch Linux 3 times in one month knowingly pushed system-breaking changes release without notifying the community, breaking my working computers in a way not even sophisticated rollback configuration can mitigate. NixOS turned out to be the ultimate solution to having an up to date working and personal systems without compromising on reliability. ','Y','','Y','','','','','Reliability.','Ability to have a replicable, modular OS via configuration project managed with Git.','Ability to separate concerns and modify system options with overlays, flakes, and home manager.','The lack of good documentation and comprehensive learning resources makes learning, understanding, and contributing to nix ecosystem a challenge even for an experienced software developer. ','A container-centric immutable distribution like Vanilla OS ','Y','','','','','Y','','','Y','','','','',''),(449,'1980-01-01 00:00:00',5,'en','775698754','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A7','','','','','','','','A9','A8','A11','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A9','A13','A3','A15','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','','','Rollbacks','Easy configure ','','','','Y','','','','','','','Y','','','','','',''),(450,NULL,2,'en','888847','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A9','','','','','','','','A6','A8','A4','','','','','','','','','','','','',NULL,'Flatpack','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A5','A2','','','','','','','','','','','','','','','','','','','A5','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(451,'1980-01-01 00:00:00',5,'en','2034093375','A5','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','home-manager was a much better solution than managing all of my dotfiles with gnu stow. I started by moving all of that stuff into home-manager while I was using POP-OS personally and MacOS for work.\r\n\r\nI was enamored by the ability to check a reproducible config into git. So I switched full time into Nixos shortly after.','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A9','','','','','','','','A9','A8','A4','','','','','','','','','','','','',NULL,'guix i guess.','A2','','','','Y','','','','','','','','','Y','','','','','','Y','','','sourcehut’s build','A15','A2','A1','','','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Nothing. Every time I find something I’ve wanted to fix and had time/energy to do it, someone’s already made a patch and I realized I just had to update my nixpkgs pin.\r\nI have made patches to nix-community projects though ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started with home-manager on POP-Os and MacOS. I liked the declarative config and was sick of making tweaks in GUIs repetitively. So I tried out nixos and never went back. For me it’s superior in every way.','Y','Y','Y','Y','','','','declarative ','Reproducible ','Massive community packing up almost everything I have ever wanted ','Flakes or something similar is the default and everyone uses it ','Guix i guess','Y','','','Y','','','','','','','Sway','home-manager\r\ncachix\r\ndevenv.sh\r\ndeploy-rs \r\nnix-doom-emacs','nixops\r\npoetry2nix\r\nmach-nix','I love nix and community around it 😍'),(452,'1980-01-01 00:00:00',5,'en','1304534934','A5','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Got a new Mac, didn\'t want to use homebrew','Y','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A3','A10','','','','','','','','A14','A13','A4','','','','','','','','','','','','',NULL,'A therapist','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A2','A3','A4','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','My boot drive for my home NAS died, so instead of reinstalling Ubuntu, I went with NixOS to set up services and regain access to data','Y','','Y','','','','','service modules','Atomic upgrades','','','Arch for desktops, Ubuntu for servers','Y','','','','','','','','','','','Nix Darwin ','',''),(453,NULL,1,'en','1479975369','A5','A4','male','','','','','','','','','','','','','','','Y','','','Y','','','Y','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(454,'1980-01-01 00:00:00',5,'en','695488482','A5','A6','fem','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','In 2021 I had purchased a Framework laptop (batch 1) and needed an OS. I wanted to run zfs. Graham Christensen had just posted some great articles about his [installing NixOS and zfs to his Framework](https://grahamc.com/blog/nixos-on-framework/). I saw that nix had matured a lot since I had last considered it. That was all I needed to give it a try; it worked better than I expected. I love having access to the latest software. Being able to bisect config changes with git made finding a working kernel (for Intel\'s AX210 wifi) reasonably easy. Being able to roll-back on boot removed all concern for breaking my OS -- freeing me to experiment and learn much more than ever before.','','Y','','','','','Y','Y','Y','','','','','','Y','','Y','','','','A2','A6','A1','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'Ubuntu.','A2','','','','Y','','','','','','','','','','','','','','','','','','Azure DevOps (unfortunately)','A15','A4','A3','A17','A2','A1','A6','','','','','','','','','','','','','','','A15','A4','A3','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Time. I still spend too much of my free time figuring out how to use nix just to get the behaviors I want for my own systems. I do not yet understand nix well enough to contribute code. At least now I have enough understanding to contribute helpful Discourse answers.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','As I wrote for nix.','Y','Y','Y','','','Y','','declarative, comprehensive configuration','roll-back at boot','multi-platform','Interactive, source-level debugging of flakes (as with gdb). As a programmer, I am used to learning a code-base by inspecting how code executing changes the state of the system. Let me set a break point to see the parameter values passed to a function. Let me step through code execution to see how that execution mutates the system. I believe these capabilities would flatten the curve, making learning nix significantly easier for anyone with programming experience.','Ubuntu.','','','','','','','','','','Y','i3','documentation','nix-repl','Thank you (and all contributors) for all your hard work! I hope one day to join the effort.'),(455,'1980-01-01 00:00:00',5,'en','1955862172','A3','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','Music/Video','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Well, I don\'t like flatpaks, so I wanted to avoid using them the best I could. First, I landed on Arch, but the problem with it was the godforsaken package manager (handling optional dependencies is annoying as all hell), so when I saw that nix/nixos/nixpkgs had incredible amounts of packages, I was immediately captivated. My start with it wasn\'t the easiest, multiple hopping between Fedora, Arch and NixOS, until eventually I settled with NixOS when I learned how to manage it. Luv it.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A1','A7','A10','','','','','','','','A5','A3','A4','','','','','','','','','','','','',NULL,'I would use Arch, but wouldn\'t really enjoy it. Or perhaps Guix? But Guix is way too into only FOSS stuff, and it has a very very very small repository... Honestly, because of NixOS, I\'m hesitant to move to MacOS, because beyond the hardware, I really really like NixOS.','A1','','','','','','','','','','','','','','','','','','','','','','','A4','A15','A19','','','','','','','','','','','','','','','','','','','A1','A15','A19','','','','','','','','','','','','','','','','','','','Y','','','','A1','','My experience with the language is not good enough for me to feel comfortable to contribute. I have written my own derivations, but I still need more experience. Plus better documentation for how stuff is done wouldn\'t hurt. Some functions and things are impossible to figure out unless you read the nix source code @ the nix github or nixpkgs github.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','[Pasted from the same question earlier] ]Well, I don\'t like flatpaks, so I wanted to avoid using them the best I could. First, I landed on Arch, but the problem with it was the godforsaken package manager (handling optional dependencies is annoying as all hell), so when I saw that nix/nixos/nixpkgs had incredible amounts of packages, I was immediately captivated. My start with it wasn\'t the easiest, multiple hopping between Fedora, Arch and NixOS, until eventually I settled with NixOS when I learned how to manage it. Luv it.','Y','','','','','','','Package availability and configurability\r\n','Declarative configuration, be it for the system, or projects thru shell.nix.','Modules! They are amazing. Easy configuration....','Better documentation definitely. And stabilizing the new nix cli. And error messages, they are obscure...','Arch, but wouldn\'t be happy. Perhaps I\'d just move to macOS. No, I wouldn\'t use Windows. I have self esteem.','Y','','','','','','','Y','','','','home-manager, rnix-lsp, nix-index','None really. ','Thanks for all the stuff you do fellas. I really hope NixOS keeps growing and getting better and more usable each year. It has finally finished my distrohopping habits. '),(456,'1980-01-01 00:00:00',5,'en','468905655','A5','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I used Nix for the first time when I started using NixOS, I hadn\'t heard (or really understood) either until I went in face-first.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A7','A1','A3','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'If Nix+Nixpkgs the package manager didn\'t exist, I\'d probably be using Flatpak. If Nix the OS didn\'t exist, it\'d probably be Fedora Silverblue. If Nix the language didn\'t exist then my life would not be that radically different.','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Maintaining packages sounds extremely confusing and frustrating. I have built a few packages from source myself, and I have never enjoyed the experience lol','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I have faux OCD about my filesystem being \"dirty\", but can handle nuking a home folder if I need to, so I really loved the idea of immutable distros. I initially started with Fedora Silverblue, just because I already liked Fedora, but gave NixOS a shot because I was curious what the differences were. I\'ve been pretty consistently in love with it since then!','Y','','','','','','','Immutability','configuration.nix','Tight integration with Nixpkgs','I would just make learning how to configure NixOS easier. The documentation can be downright frustrating at times. I spent a few full entire 8+ hour days trying to understand Flakes so I could rollback the version of GNOME I was using, but even setting up a simple up-to-date config is just confusing for a simpleton like me.','Fedora Silverblue','Y','','','','','','','Y','Y','','','','Flakes','I love NixOS very much and I have no intention of leaving the project any time soon. Just wanna say thanks for making a distro that FINALLY doesn\'t make me wanna distrohop <3'),(457,NULL,1,'en','1449029129','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(458,NULL,1,'en','31837981','A2','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(459,NULL,1,'en','758237592','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(460,NULL,1,'en','1129800288','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(461,'1980-01-01 00:00:00',5,'en','1507407958','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','To spawn a dev shell','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A7','A1','A9','','','','','','','','A5','A14','A10','','','','','','','','','','','','',NULL,'Fedora Silverblue','A4','','','','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','knowledge of nix, I never really understand what I\'m doing','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','To be able to tweak my system config without fear','Y','','Y','Y','','','','Rollbacks','Reproducibility','Up to date software','Nix, the language, is painful to use. Why isn\'t there an official auto-complete tool?','Fedora Silverblue, probably','Y','','','','','','','','Y','','','','','Thank you!\r\nAbout the survey, even after more than a year of \"daily use\" (but not \"daily tweaking\"), I still consider myself a \"nix/nixos beginner\" and some of the questions confused me and I might have answered NixOS stuff in the Nix section.\r\n\r\n'),(462,'1980-01-01 00:00:00',5,'en','1807565331','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Friend of mine was a contributor to GNU/Guix and got me interested in its properties. I also contributed for a while before deciding to try Nix as it’s origin. I found the Nix ecosystem to be a lot more mature (and less dogmatic) and I stuck around','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'I would probably stop using computers and become a goat herder because I’ve lost patience for all other package management tools','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','When I went down the path of installing my first “proper Linux desktop” I decided to use NixOS due to its ease in trying out different services or desktop environments without having to copy scripts out of a wiki. Liked it so much I use it on all my personal machines ','Y','','Y','','','Y','','Declarative configurations and atomic rollbacks','Leveraging all the work that has gone into writing modules for services and programs','The freedom and ease to patch and pin specific services ','Native secrets management would be cool! I use agenix which is great but it does have some sharp edges','Probably some kind of “immutable OS distro” with a bunch of flatpaks','Y','','','Y','','','','','','','Sway','crane, agenix, cachix','naersk - too difficult to wrangle for advanced use cases\r\ndeploy-rs - cross compiling for aarch64-Linux too slow, deployments can be finicky (turns out nixos-rebuild works well enough for me)',''),(463,'1980-01-01 00:00:00',5,'en','521581127','A2','A4','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','I’ve been lurking on immutable OS for years.\r\nI’ve been extremely impressed by erase your darling.\r\nSo I finally took the plunge with nixos and impermanence. (Not very straight forward for a newbie but I managed it thanks to “tmpfs as root” post.','','','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A10','','','','','','','','A5','A7','A14','','','','','','','','','','','','',NULL,'Fedora silverblue or pacman','A4','','','','','','','','','','','','','','','','','','','','','','','A1','A9','A17','','','','','','','','','','','','','','','','','','','A1','A17','','','','','','','','','','','','','','','','','','','','','','','','A1','','Time and knowledge ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','For immutability with impermanence and the desire to have a clean state on each reboot','Y','','','','','','','Immutability ','Impermanence ','Declarative configuration of the OS','Old and unhelpful docs (sorry) which is quite bad compared to archlinux wiki','Fedora silverblue or pacman ','Y','','','','','','','Y','','','Sway or hyprland ','impermanence ','','Make docs for using modern desktop and impermanence easier for newcomers.\r\n\r\nCreate a section (or provide tools) to easily track config in Git.\r\n\r\nIf possible or makes sense, allow for better sandboxing or separation of dev tools. There’s a lot of risk of supply chain attacks with modern development due to 1000s dependencies being installed. If nixos could create some sandbox easily to install them without worries that would AWESOME\r\n\r\nThanks for your work as well <3'),(464,'1980-01-01 00:00:00',5,'en','1147791609','A5','A3','male','','','','','Y','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was getting a second computer and wanted to easily maintain a similar system on both. Then, as I read more about it, I realized it could help me avoid system drift, and I got excited about the idea of isolated dev environments. ','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'Arch Linux, possibly with Ansible','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A3','A1','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Getting more than one machine meant I needed a solution to maintain a base state between machines as well as avoid system drift. Dot files repo wasn’t nearly enough control, so I came to Nix! And found solutions to other problems along the way, like dev environments. ','Y','','Y','','','','','Declarative system state','Reproducible dev environments','Same management of package versions','ArchWiki quality documentation around flakes. Please. And stabilize it for heavens sake, get everyone on board so we can shift all the documentation towards it. ','Arch Linux. ','Y','','','','','','','','','','Sway','Home manager, Mozilla rust overlay, dream2nix (although it needs a lot of work but I love the promise of it)','cargo2nix','Documentation as a first class citizen - the more users you have, the more money and effort and time makes the whole ecosystem better for everyone, and the documentation around flakes is actively driving people away. We want to onboard people to flakes, but there isn’t even an official installation doc (at least that is visible) on how to install from a flake. You gotta discover the flake flags for yourself!\r\n\r\nI don’t want that to sound too harsh though. Thank you to everyone who contributes and I try to do my part to add PRs where I can!'),(465,'1980-01-01 00:00:00',5,'en','1084993134','A4','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A1','I believe immutability and declararivity is easier in the long run.','','','','','','','Y','','','','','','','Y','','','Y','','','','A7','A2','A1','','','','','','','','A5','A4','A13','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A1','A15','A2','A17','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I don’t know how. Nix lang and all.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Immutability, declarativity and all.','','','','','','','','Being able to declare an OS','Nothing breaks if you don’t touch','Being able to move my config to another machine easily','I’d add a GUI to manage the system configuration. Everyone would take a GUI over manually editing configuration.nix any day, even us devs.\r\nI’d make it so that it would not miss any configuration options of packages.','Just Arch','Y','','','','','','','','','','Cinnamon','','','Build a GUI for configuration and see adoption skyrocket.'),(466,'1980-01-01 00:00:00',5,'en','329646359','A5','A3','male','','Y','','','Y','','Y','Y','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A10','','','','','','','','A8','A9','A7','','','','','','','','','','','','',NULL,'Debian','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','A3','A13','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Haven\'t found the time just yet.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','','','','','','','','','','Y','','','Sway','','',''),(467,NULL,NULL,'en','56841561',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(468,'1980-01-01 00:00:00',5,'en','598284481','A2','A3','fem','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A7','A6','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','The idea of having a Linux system as code with everything configured with my preferences done it for me. So last Christmas I had time to mess around and installed NixOS on an old laptop to see what the fuss was about. Long story short, I then wipe the drive of my main personal laptop and replaced the old system whith NixOS and it works like a charm :)','Y','','','','','','Personal laptop','System as code','Generations','You can try packages whiteout installing them ','I would add way more documentation and ressources to understand flakes and advanced possibilities of NixOS','I guess a Fedora with scripts to copy my dotfiles ','Y','','','','','','','','','','Hyprland','','','Thanks you for Nix and NixOS! \r\nI didn\'t understood all the possibilities of nix yet but enought to know that you\'re awesome guys!\r\nKeep up the good work :)'),(469,'1980-01-01 00:00:00',5,'en','1067254964','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','Y','','Y','','A7','A2','A3','','','','','','','','A5','A14','A1','','','','','','','','','','','','',NULL,'ansible, dev containers','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A15','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','local packages','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted to deploy my server without ansible. A former colleague had talked about nix, so I gave it a shot','Y','','Y','','','','','mostly declarative management','atomic rollbacks','','Add: a GUI for configuration.nix\r\nChange: Improve documentation (arch linux has the best documentation)\r\nRemove: nix-lang from the homepage - it\'s very confusing','ansible','Y','','','','','','','','Y','','','','NixOps - honestly, the documentation didn\'t get me far\r\nnix command and nix flakes - what are they even and why do they exist? nearly all related documentation is from third parties and everything seems cobbled together','The survey wasn\'t clear on the difference between nix and nixos. Atomic deployment and rollback was mentioned in the nix section and so was nixos-rebuild.\r\n\r\nThank you for your efforts and looking at the last survey, I hope documentation makes bigger visible strides'),(470,'1980-01-01 00:00:00',5,'en','295784947','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend was very enthusiastic about it and shared it with me. Then tried it and loved it :)','','Y','','Y','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A1','A6','A7','','','','','','','','A6','A14','A1','','','','','','','','','','','','',NULL,'guix','A2','','','Y','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A1','A2','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Repeatability','shareable','Just works','A magic LSP server that helps a lot in editor','guix or debian','Y','','','Y','','','','','','','i3vm','terranix ','',''),(471,'1980-01-01 00:00:00',5,'en','1360800399','A2','A3','male','','','','','','','Y','Y','','','','','Y','','','Y','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A2','A9','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','garnix.io','A15','A2','A19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(472,'1980-01-01 00:00:00',5,'en','18177757','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','System as conf, easy dev environment','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A13','A4','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A9','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','','','','','','Y','','','','','','','sway','home-manager','',''),(473,NULL,1,'en','808463712','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(474,NULL,1,'en','101028004','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(475,'1980-01-01 00:00:00',5,'en','1674652330','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Failed Gentoo install... figured I\'d try out NixOs instead.','','Y','','','','','Y','','','','','','','Y','','Y','Y','','','','A1','A7','A10','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'Gentoo, hopefully.','A2','','','','Y','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A1','','Just started with Nix.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Failed Gentoo install... same answer as before.','Y','','','','','','','','','','Add documentation like the Gentoo handbook where there is a step-by-step guide to using it instead of having most of the information on one large page and other bits of information elsewhere.','Gentoo','Y','Y','','','','','','','Y','','','','',''),(476,'1980-01-01 00:00:00',5,'en','2115330374','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','i am linux user since my childhood, but i left to OpenBSD later, i was forced to go back to linux during my carrier as sysop, when i left company i have been using OSX awhile and then moved back to linux Manjaro but, then i found NIX installed \"home-manager\" in manjaro and i felt in love and moved to NixOS completely, i love it thank you','','Y','','','Y','','Y','','','','','','','Y','Y','','Y','Y','','','A2','A1','A3','','','','','','','','','','','','','','','','','','','','','','',NULL,'Manjaro or some kind of BSD ','A4','','','','','','','','','','','','','','','','','','','','','','','A4','A1','A22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','workstation','A3','same as i wrote in NIX section','','','','','','','workstation','','','','i am happy :) ','manjaro or BSD','Y','','','','','','','','','','bspwm','maybe filesystem','','it is best operating system i have ever used... my dream machine'),(477,NULL,1,'en','1866641054','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(478,'1980-01-01 00:00:00',5,'en','2050174201','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','Y','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','Y','','Y','','','Y','Y','','Y','','Y','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A8','A9','A10','','','','','','','','','','','','',NULL,'pacman and appimages, snaps, … and manual configuration.','A3','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A4','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Too few maintainers that actually review and merge PRs','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','','Y','Y','','Y','','reproducibility ','central configuration and packagemanagement','flakes','home-manager merged into nixpkgs, cli to modify module options.','Arch Linux','Y','','','','','Y','','Y','','','','home-manager, nur','nix-env','cuda integration (especially for ml python projects) right now is a pain.'),(479,NULL,1,'en','14327837','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(480,'1980-01-01 00:00:00',5,'en','1637533133','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','Security researcher','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','For use on my personal server. Instantly hooked. ','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A10','A7','A1','','','','','','','','A4','A6','A8','','','','','','','','','','','','',NULL,'GNU Guix','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Don\'t want to shit up the repo with my noob code. Will contribute when I feel like it would be a net positive for the community','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','For my home server','Y','','Y','','','','','Reproducibility ','Configurability','Package availabilify','Better error messages. Wayyyyy better','GNU Guix','Y','','','','','','','Y','','','Hyprland','','','i love nixos more than air'),(481,'1980-01-01 00:00:00',5,'en','804368006','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I use Nix today primarily for reproducible development environments, but also for managing my NixOS system.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A7','','','','','','','','A4','A5','A8','','','','','','','','','','','','',NULL,'Potentially Guix? Or Ansible to manage my system. And containers for development environment needs.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A9','A1','A18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I liked the promise of not needing to rebuild my system every time I re-installed it. When my Arch Linux system broke after updating when my disk was nearly full, I decided to finally make the move to NixOS. I started building a basic config in a VM, then once I was somewhat comfortable with it, reinstalled my system and applied my config from the VM. Everything transferred over!\r\n\r\nI eventually threw out my config and switched it for a community one I found on GitHub which had flake support. I think adapted that to my needs, converted more machines to Nix and now I\'m a happy enthusiast!','Y','','','','','','','Reproducible system.','Atomic upgrades/rollbacks.','A single configuration that can be used across multiple machines.','Much better documentation. Remove old documentation from the NixOS wiki and more tightly integrate the wiki and the manual.','Guix or Ansible.','Y','','','','','','','Y','','','','','','This system is amazing. Keep focusing on making it more approachable and it\'ll take over the world.'),(482,'1980-01-01 00:00:00',5,'en','1656019115','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A6','A2','A8','','','','','','','','','','','','',NULL,'Docker, docker-compose, ansible ','A4','','','','Y','Y','','','','','','','','','','','','','Y','Y','','','','A2','A20','A9','A4','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Nothing, I contribute too','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','Reproducibility','Declarative configuration ','Reuse of configuration ','Finish work on nixos containers v2','','Y','','','','','Y','','','','','sway','Home manager, ragenix','',''),(483,'1980-01-01 00:00:00',5,'en','122019031','A2','A3','male','','','','','','','Y','','','','','','','Y','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because it allowed me to easily patch software that I want to install.\r\n\r\nI\'ve then discovered all the other benefits and got addicted.','','Y','','','','','Y','','Y','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A3','A5','A14','','','','','','','','','','','','',NULL,'Maybe gentoo or guix. But I know guix only because nix exists..\r\n\r\nProbably some Debian like Ubuntu... But it would feel unsatisfying','A1','','','','','Y','','','','','','','','','','','','','','Y','','','','A10','A1','A3','A7','','','','','','','','','','','','','','','','','','A10','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I\'m not feeling comfortable. Also I\'ve the feeling there is too much going on,so adding further small packages upstream would create an overhead that\'s not worth it. I already tried and closed the PR.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I\'ve learned nix and replaces my macos on a Macbook Air with NixOS cause that felt way better.','','','','','','','private laptop','Configuration of the system.','Using a previous setup in case an update breaks','','','Probably some Debian derivate.','Y','','','','','','','','','','i3wm','home-manager and phps','',''),(484,NULL,1,'en','459072940','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(487,'1980-01-01 00:00:00',5,'en','1051231128','A5','A5','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Finally heard about it and knew it was for me immediately. Started with home-manager on my existing ubuntu installation until I had most things setup, then migrated to nixos on all my machines.','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A10','A7','','','','','','','','A14','A9','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A1','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Knew it was for me when I heard about it. Not sure why I hadn\'t heard of it before, I\'ve been a programmer for over 20 years. I\'ve always wanted to have all my configuration source controlled and reproducable and just been using horrible shell scripts before, so it was a no brainer.','Y','','Y','','','','','reproducibility','package availability','','I wish the language were more accessible. I don\'t come for a functional background and found it hard to get going and still consider myself a novice after 3 or 4 years.','guix, maybe, but would that be around if not for nixos? probably unhappy on ubuntu or arch.','Y','','','Y','','','','','','','sway','home-manager, did you ask about that? that is huge for me and really helped me migrate to nixos as I could slowly gain confidence with the nix language and packaging things without being blocked while I couldn\'t figure things out.\r\n\r\ndirenv.. which is probably how i found nixos','','I\'m so much happier with my computers after having found nixos. It was amazing to find a community so full of people that have many of the same computing values as I have; I just wish I could have found ya\'ll sooner!'),(485,'1980-01-01 00:00:00',5,'en','395405382','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','Y','Y','','','Y','','','Y','Y','Y','Y','','','A2','A5','A8','','','','','','','','A12','A11','A10','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','Y','Y','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','','','Y','','Reproducible','Declarative','','','','Y','','','','','Y','','Y','','','','','',''),(486,NULL,2,'en','478267260','A2','A2','male','','','','','','','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Tired of having to manage my dotfiles without a proper build system ','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A8','A5','A4','','','','','','','','','','','','',NULL,'No idea ','A1','','','','Y','','','','','','','','','','','','','','','','','','','A2','A1','A3','A4','A6','A5','A9','A12','A19','A22','A15','A17','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(488,'1980-01-01 00:00:00',5,'en','876708417','A2','A2','male','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','Declerative system','Rollbacks','','','Guix','Y','','','','','','','Y','','','','','',''),(489,'1980-01-01 00:00:00',5,'en','2132559303','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','Y','','','Y','','','','','','','Y','','','','A2','A7','A9','','','','','','','','A8','A12','','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','Y','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','Y','AwesomeWM','','',''),(490,NULL,2,'en','1313545599','A5','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','Y','Y','','Y','','','Y','','Y','Y','','Y','','Y','Y','Y','Y','','Y','','A6','A7','A4','','','','','','','','A9','A5','A4','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','Y','','','A13','A3','A4','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(491,'1980-01-01 00:00:00',5,'en','1312663650','A2','','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','Y','','','Y','','','','','','','','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','A1','','','','','','','','','','','','','','','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(492,'1980-01-01 00:00:00',5,'en','18187853','A5','A3','male','','','','','','Y','','','','','Y','','','','','','Y','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A6','A1','A2','','','','','','','','A8','A6','A10','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','A1','A9','A3','A4','A15','','','','','','','','','','','','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','Reproducibility','','','Add windows support','Ubuntu','','','','','Y','','','','','','','','',''),(493,'1980-01-01 00:00:00',5,'en','2122346327','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducibility','','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','','Y','','A7','A2','A5','','','','','','','','A8','A9','A11','','','','','','','','','','','','',NULL,':(','A4','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A13','A2','A1','A22','A15','A3','','','','','','','','','','','','','','','','A13','A2','A1','','','','','','','','','','','','','','','','','','','Y','','Y','','A2','','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','System configuration all in one place, no more forgetting what that workaround that made that package work was.','Y','Y','Y','Y','','Y','','Centralised system configuration','Atomic upgrades and rollbacks','Transparency in how Nixpkgs/NixOS is structured so I can hack it to work as needed','The option to use s6 instead of systemd (this would be especially useful for embedded devices and servers).','Idk Gentoo?','Y','Y','','','','Y','','','','','xmonad','Hydra, poetry2nix, npmlock2nix','haskell.nix mainly due to its reliance on IFD and partly due to the lack of binary caches. node2nix mainly due to how frequently I\'d need to hack a node module to honour `NODE_PATH` and partly due to its reliance on IFD.','Thanks :)'),(494,'1980-01-01 00:00:00',5,'en','82828542','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Had encountered it a couple of times in projects that use it and had been wanting to try it out for a while, and once I did I quickly fell in love with how nice it is to be able describe an environment for a given context and know it\'ll just work. No more fragile setup scripts to ensure the python scripts in my dotfiles have a virtualenv to run in; just use nix-shell as a shebang and it\'ll _just work_! ','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','Y','','A2','A3','A6','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'The same thing I used before, which was Arch Linux, ASDF to manage environments for projects, lists in README files with the package names you need on various distributions, and some custom scripting to glue it all together.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A1','A15','A9','A5','A7','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Just haven\'t got around to it yet. I have some things in my dotfiles that I intend to contribute, but I need to sit down and create PRs for those.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Once I had seen how I could use Nix to improve the reproducability of my setup I wanted to extend this further. I had already partially automated setting up a new personal machine with my dotfiles, including a list of packages needed, but this was perpetually out-of-date. The idea of moving to a system where my dotfiles could be the source of truth for my system instead of a loose description that I had to manually keep in sync was very appealing, so I took the plunge. It\'s been great so far!','Y','Y','Y','','','Y','','Reproducability.','Convenience.','','','Arch Linux.','Y','','','','Y','','','','','','i3','home-manager, nix-darwin','',''),(495,NULL,4,'en','1240816155','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','N','','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(496,'1980-01-01 00:00:00',5,'en','2121497394','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','Y','','A2','A6','A1','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'Homebrew and Ansible','A2','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','Y','','','','','reproducibility ','stability','fun','improve documentation ','….windows?','Y','','','','Y','','','Y','Y','','','sops-nix, home-manager','',''),(497,'1980-01-01 00:00:00',5,'en','2034115544','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My MacBook installation was somehow f** up, so I decided to define the new setup with nix. And shortly ditched the macbook in order to install NixOS on a new laptop. Best decision ever. ','Y','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A9','','','','','','','','A4','A2','','','','','','','','','','','','','',NULL,'Ubuntu','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A2','A1','A5','A11','','','','','','','','','','','','','','','','','A1','A5','A11','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I have no clue, if whatever I would submit would just be blamingly not-according-to-current best practices, since it feels like they change a lot. Or are just not clear enough to me to learn, somewhere. I. E. Any PR from my side would for sure lead to am extensive discussion on how to do it right.\r\n\r\nIn essence: feat to blame myself with half-wisdom. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Oh, did already. Had a new laptop, needed to choose a distro. ','Y','','Y','Y','','','','Declarative system spec','Automatic, continuous Updates','Reusable part\'s for other systems ','Add, proper error messages!!\r\nSomething that gives at least a clue instead of 10000 lines. ','Ubuntu ','Y','','','Y','Y','','','','','','Xmonad ','divnix/Std, divnix/hive ','Nvidia Support',''),(498,NULL,1,'en','1494156492','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(499,'1980-01-01 00:00:00',5,'en','70051390','A2','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Heard about it in a discord, looked into it and needed a project so i installed it on my laptop','','','','','','','Y','','Y','','','','','','','Y','Y','','','','A2','A7','A9','','','','','','','','A9','A8','A5','','','','','','','','','','','','',NULL,'apt or pacman','A2','','','Y','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A2','A5','','','','','','','','','','','','','','','','','','','A15','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Heard about it on a discord, looked interesting and needed a project','Y','Y','Y','','','','','Declarative system','Near complete unbreakability (atomic rollbacks/updgrades)','','Better support for offline usage/installation/rebuild','Mint or arch','Y','','','','','','','','','Y','','home-manager, (r)agenix, lanzaboote, jetbrains-updater, disko, nixos-hardware','',''),(500,'1980-01-01 00:00:00',5,'en','234148570','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I needed some old versions of libraries.','','Y','','','','','Y','','','','','','','','Y','Y','Y','Y','Y','','A1','A2','A6','','','','','','','','A8','A13','A9','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','Y','','','','','Y','','Y','','','','A1','A15','A3','A4','A2','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Arch install was broken after 2 years of packaging weird software, so i needed smth more stable','Y','','','','','','','Really stable system','Easy access to old versions of programs','Rollbacks','Fix the opengl stuff.\r\n\r\nAdd a history for the config file, maybe by being forced to check it into a local git repo.','Arch probably, maybe ubuntu or alpine.','Y','','','','','','','Y','','','','fenix\r\nflake-utils\r\nany-nix-shell\r\nThe huge binary cache\r\n\r\n','Nixops 1,\r\nNixops 2,\r\nEverything that does not support flakes,\r\nThe nixos docker image,\r\nNix on darwin\r\n','The nix programming language is one of my least favorite PLs and it is always consistently a bad experience to use it.\r\n\r\nIm no expert but I feel like an optional Typesystem like in TS help a lot. Also maybe remove or unify syntax of constructs with weird syntax like with, inherit or let.\r\n\r\nI really like the concept of a lazy functional language but hate the current implementation.'),(501,'1980-01-01 00:00:00',5,'en','858323060','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was running Arch and wanted to use nix package manager to be able to temporarily install runtimes/compilers for languages I don\'t usually use. I needed to do this for work when looking at client codebases, etc. Once I learned how nix was achieving this I got more and more into it and started using it for everything.','Y','Y','','','','','Y','Y','','','','Y','','Y','Y','Y','Y','Y','','','A10','A2','A7','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'for packages I would create containers and mount my required directories into them. As an OS I would look into Fedora Silverblue or return to Arch.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A15','A17','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','When I learned how the nix package manager was doing what it does, I started to see how it could apply at the OS level. I decided to dive right into it and installed it on my work laptop over a weekend. After a few days I realized how much I appreciated the declarative approach to all of this and I installed it on the rest of my machines too.','Y','','Y','','','Y','','Reproducibility - my UX for everything is the same no matter which machine I am using. This is really helpful when jumping between my work and personal machines.','Rollbacks - configuring complicated things like jumping from KDE to sway was made really comfortable knowing I could jump all the way back to my KDE configuration without any issue','Community - the NixOS community is thriving and is attracting so many like-minded people. It\'s always a pleasure to discuss Nix on reddit or mastodon and it feels great to be a part of such an active project and community.','','Probably Fedora or Arch.','Y','','','','','','','','Y','','sway','home-manager, agenix, homeage. nix-darwin','','Thanks for all your work!'),(502,'1980-01-01 00:00:00',5,'en','627379600','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A10','','','','','','','','A5','A6','A4','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Github requirement','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','configuration as code','reproducible','stability','','','Y','','','','','','','','','','','','',''),(503,'1980-01-01 00:00:00',5,'en','1553986382','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Was curious, moved on from gentoo (too inconsistent/timeconsuming/custom) and debian (boring, slow to get new stuff)','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'bash/debian/ansible/docker. depends on use case.','A2','','','','Y','Y','','','','','','','','','','','','','Y','Y','','','','A15','A5','A2','A19','A9','A1','A11','A12','','','','','','','','','','','','','','A5','A15','A2','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','reproducible across machines','dev shells','many things packaged','easier to way to handle things not set up for nix/nixos (eg bazel, steam, etc)','debian?','Y','','','Y','','','','','','','sway','agenix/ragenix; impermanence?','',''),(504,'1980-01-01 00:00:00',5,'en','1068314702','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','','','',''),(505,'1980-01-01 00:00:00',5,'en','217407156','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','Y','','','','','','','','','Y','','','','A2','A1','A9','','','','','','','','A14','A4','A13','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I feel like problems I encounter would require a deeper technical understanding of the problems and nix itself to contribute properly. I am also uncertain, if things I do get to work are worth documenting or if they would be \"bad style\". As for packaging software, I usually was in luck and it was already packaged (also, I doubt I would\'ve managed to package something myself)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I came across NixOS during distrohopping and I was intrigued, in part because I was learning some Haskell at that time. ','Y','','Y','','','','','Declarative system management','Package availability and unified way of installing and managing all software','Rollback capabilities','- Native, simple and unified secrets management for configuration files\r\n\r\n- A simple way to run binaries compiled for other distros (imagine e.g. something the complexity of MATLAB or some Linux native games. Especially proprietary software that is unlikely to be packaged already or not widely used is difficult to use). Tools like nix-ld go in the right direction, but in my experience don\'t work out-of-the box.\r\n\r\n- Faster updates. Probably just a cost of the design principles, but updates for flakes are so slow, when the entire system is being rebuilt every other time','Probably an Arch derivative, potentially would look into Ansible as well','Y','','','','','','','','Y','','Hyprland, but only experimentally','','','I appreciate the effort that is invested into Nix and NixOS by so many people and it is really nice to see this survey again. Glad that you stay in touch with the casual users in the community!'),(506,NULL,1,'en','1116865058','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(507,'1980-01-01 00:00:00',5,'en','1816910525','A2','A3','-oth-','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A10','A2','A3','','','','','','','','A13','A4','A8','','','','','','','','','','','','',NULL,'Docker, ansible','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(508,'1980-01-01 00:00:00',5,'en','1856088215','A5','A4','-oth-','enby','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','tired of hard to reproduce software setups','','Y','','','','','Y','','','','','','virtual machines','Y','Y','Y','','','','','A6','A5','A7','','','','','','','','A1','A10','A5','','','','','','','','','','','','',NULL,'vagrant','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I have contributed issue reports and small fixes to nixpkgs.\r\n\r\nThe difficulty of fixing cross compiling support for a language-specific compiler and its runtime has been a barrier to me making larger contributions.','N','Y',NULL,'I use Qubes OS exclusively now, and there is no NixOS TemplateVM for Qubes OS, and I lack the expertise with Qubes or NixOS to understand how to make one myself.\r\nAdditionally, inheritance of the nix store between TemplateVMs and AppVMs in Qubes OS is an unsolved technical challenge separate from the challenge of creating a NixOS TemplateVM image.','If there were a NixOS TemplateVM for Qubes OS, I would start using it for some AppVMs.\r\nIf there were also a solution that allowed the AppVM\'s nix store to reuse the TemplateVM\'s nix store in a space efficient manner, I would switch to using NixOS for almost all TemplateVMs and AppVMs.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Please improve the support for building nixpkgs (or any other derivation) from sources offline.\r\nI have wasted so much time trying to figure out how to do that, only to continually be wrong about what is and is not necessary, and this feels like something Nix should just be able to do out of the box.\r\nI work with a lot of virtual machine images on a space-constrained system, so for archival purposes being able to efficiently save the minimum necessary to rebuild and tweak my overlays offline is critical to me, and I would much prefer to rebuild all of nixpkgs than to rely on a bunch of opaque binaries that cannot be reproduced locally either due to link rot or nondeterminism.\r\n\r\n\r\nI haven\'t tried this yet, but my current hope for building my own overlays from sources is this project, though there is absolutely no way I would have ever been able to piece together the how of how to do this on my own:\r\nhttps://tildegit.org/solene/nixpkgs-mirror-tarballs\r\nIt\'s totally not obvious that one would go for fetchurl invocations instead of just searching for all fixed-output derivations and all content addressed derivations in the expression, and the find-tarball.nix script & its contemporaries aren\'t easy to find for someone using search engines to look for prior work on this to reuse rather than reinvent.'),(509,'1980-01-01 00:00:00',5,'en','395447916','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','','Y','','','Y','Y','','','','Y','Home router','','Y','Y','Y','','Y','Generating config files for systems not managed by Nix','A2','A7','A5','','','','','','','','A8','A1','A9','','','','','','','','','','','','',NULL,'Probably Docker/Podman.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A15','A6','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','Applying patches to nixpkgs within my system flake.nix','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','All personal computing','A3','I used a few Vyatta on a few routers, and I really enjoyed declaratively configuring a system. I also have a functional programming background (mostly Haskell). I was frustrated with Ubuntu on my home machines, so I switched to NixOS and never looked back. I wish I had known about and understood it earlier.','Y','','Y','','','Y','Home router','Cross-compilation of packages and whole systems','Patching some packages while still using binary cache for others','NixOS Containers','Add tooling to more easily run software not in nixpkgs, especially closed-source software like games. I\'m thinking something like steam-run, but that hasn\'t worked for me.\r\n\r\nThis is more Nix proper, but: Some kind of substitution rules so that cross-compiled outputs could be used in lieu of natively compiled outputs, and vice-versa. Or more generally, some changes to cut down on the amount of local compilation needed for users who want to build for different architectures.','Guix, or maybe Gentoo.','Y','','','','','','nix build SD images for RPis','Y','','','','Projects: nixos-hardware, Lanzaboote, impermanence, home-manager (although home-manager is much less important to me than it seems to be to most folks).','','As an occasional contributor, it\'s frustrating that PRs take so long to merge. Some of my PRs have sat unreviewed for months, despite posts on the Ready For Review thread. These delays discourage me from spending more time contributing. At the same time, although I am an experienced software engineer, I don\'t know how to contribute to code reviews to improve the review backlog situation. There seem to be undocumented standards that experienced reviewers know to check, so I cannot confidently put my approval on anything - and doing so doesn\'t seem to help anybody. I suggest firstly having experienced reviewers spend some time documenting what budding reviewers should look for, or perhaps setting up an apprenticeship program; and secondly providing some visibility into how reviews done by aspiring reviewers can help the process. For example, maybe committers should prioritize (or only merge) PRs that have an approval from a non-commiter. In brief, we should invest in a better on-ramp for nixpkgs contributors and reviewers.'),(510,NULL,1,'en','860080611','A4','A1','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','arcolinux',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(511,'1980-01-01 00:00:00',5,'en','1325882389','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','hackability and reproducibility','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A2','A3','A10','','','','','','','','A6','A12','A8','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','curious and idealistic','Y','','Y','Y','','','','declarative','hackable','reproducible','add better typing','Guix','','','','','','Y','','','','','Xmonad','','','Thank you for this survey'),(512,NULL,1,'en','1032858705','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(513,NULL,NULL,'en','882642327',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(514,NULL,1,'en','1175970452','A2','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(515,'1980-01-01 00:00:00',5,'en','993987109','A2','A2','-oth-','agender','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','nix-shell was a killer app. Reproducible development environments proved really necessary quickly. ','Y','Y','','Y','','','Y','','Y','','','','','','Y','Y','Y','Y','Y','','A2','A1','A6','','','','','','','','A8','A13','','','','','','','','','','','','','',NULL,'I would struggle in many ways, but probably would use some arcane bash tool for containerized dev environments. Obviously guix doesn’t count here. ','A1','','Y','Y','Y','Y','','','','','','','','','','','Y','','','Y','','','','A13','A1','','','','','','','','','','','','','','','','','','','','A13','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','lack of time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','nix for my OS','Y','','','','','','','configuration being reproducible ','rollbacks in config ','','Flakes by default ','Debian, probably. Gentoo? ','Y','','','','','','','','','','bswpm ','flake-parts!','',''),(516,'1980-01-01 00:00:00',5,'en','1775129623','A1','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A8','','','','','','','','A13','A11','A12','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A15','A1','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','','','','','','','Y','','','','','','','','','','xmonad','stacklock2nix, nix-output-monitor, purifix, purenix','haskell.nix',''),(517,NULL,NULL,'en','1672298187',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(518,'1980-01-01 00:00:00',5,'en','1005395845','A5','A2','-oth-','non binary','','','','','','','','','','','','','','','','','Y','','','','','','','cable technician','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I was bored of arch linux, and had heard a friend talk about how much they loved nixos. I switched to nixos and started using nix for my programming projects then.','','','','','','','Y','Y','','','','Y','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A8','A9','A14','','','','','','','','','','','','',NULL,'I would probably either just use other linux package managers (pacman), or I might give guix a shot.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A15','','','','','','','','','','','','','','','','','','','','A13','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I\'ve actually been working on getting a package ready for a pr :)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','Y','','Declarative system configuration','Rollbacks','','','arch linux','Y','','','','','','','','','','sway','Home Manager','nix-direnv',''),(519,'1980-01-01 00:00:00',5,'en','408052938','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was very impressed by the way in which, on NixOS, system configuration, update management and reproducibility are handled','','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A7','A3','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'I\'m not an expert, maybe Ansible, btrfs for snapshot and rollback, idk','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I\'m not a developer and I would feel unsuitable or of little use','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Same answer that I said before for Nix','Y','','','','','','','All config in one place','Easy updates','reproducible','perhaps I would try to simplify some aspects','Same answer that I said before for Nix','','','','','','','','Y','','','','','','you already know this, but I would like to underline the lack of complete, user-friendly and up-to-date documentation. I understand that it is a complicated thing, but I think it is very important, above all to make the work you are doing better appreciated.'),(520,NULL,1,'en','895675053','A5','A3','male','','','','','','','','','','Y','','','Y','','','','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(521,NULL,1,'en','460955311','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(522,NULL,-1,'en','1213196548','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(523,'1980-01-01 00:00:00',5,'en','1495647861','A5','A4','male','','','','','','Y','Y','Y','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','Y','','A2','A6','A10','','','','','','','','A2','A11','A4','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A2','A13','A4','A15','A9','A3','','','','','','','','','','','','','','','','A2','A15','A13','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','Time','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A5','','Y','','Y','','','','','Declarative systems ','Atomic upgrades / rollbacks','','','Arch','Y','Y','','','','Y','','Y','','','','','',''),(524,'1980-01-01 00:00:00',5,'en','382717167','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Kept breaking normal distros when labbing at home','','Y','','','','','Y','Y','Y','Y','','','','Y','','','Y','','','','A1','A2','A7','','','','','','','','A8','A5','A13','','','','','','','','','','','','',NULL,'I don\'t wanna think about it!','A2','Y','','','Y','Y','','','','','','','Y','','','','','Y','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','ADHD','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because I kept breaking Manjaro','Y','Y','Y','Y','','','','Declarative things','Loads of packages','','Types, editor support','McDonalds','Y','','','','','Y','','','Y','','Want to use something with declarative configuration','disko, home-manager','','Thanks for making Nix, Nickel and Nixpkgs! <3'),(525,'1980-01-01 00:00:00',5,'en','489740092','A5','A3','-oth-','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A3','For access to libraries and compilers on NixOS','','','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A7','A10','A3','','','','','','','','A6','A12','A2','','','','','','','','','','','','',NULL,'pacman most likely, having come from Arch Linux','A2','','Y','','Y','Y','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Uncertainty of what/how to contribute','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Wanted to experiment with isolated package prefixes with LFS, then discovered NixOS which provides that and more, and more robustly.','','','','','','','Personal daily driver','Atomic updates and rollbacks','User-level package installation','Declarative configuration','The dependency on systemd ','Most likely Arch','Y','','','','','','','','','','i3','','',''),(526,'1980-01-01 00:00:00',5,'en','863903800','A1','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','','Y','','','','','','','','','Y','','','','A1','A2','A3','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A15','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(527,NULL,4,'en','852520484','A7','A5','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','N','N','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(528,'1980-01-01 00:00:00',5,'en','617161901','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','As a casual user, I need some premade config file without taking the time to understand every single line','','','','','','','','','','','Y','Waiting for a user friendly GUI with pre-made base configs','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Same as the previous reasons','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(529,NULL,NULL,'en','1976676682',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(530,'1980-01-01 00:00:00',5,'en','555309464','A5','A4','male','','Y','','','','Y','Y','Y','','Y','Y','','','','','','','Y','','','Y','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Wanted declarative management and OS-agnostic names for packages installed in my user profile (my \"dotfiles\", as it were). Old solutions put the configuration files in the right spot but couldn\'t reliably handle installing the packages on all the systems I needed them on, so I started looking at home-manager for professional use and NixOS at home.','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A6','A1','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'Guix, personally, I guess? Professionally, I would be using Ansible/Puppet and a bunch of ad hoc scripts','A4','','','','Y','Y','Y','','','','','','','','','','','Y','','','','','','A15','A2','A5','A14','','','','','','','','','','','','','','','','','','A1','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was tired of ad hoc configuration of my personal machines that quickly lost cintext and became out of date. NixOS promised to fix that (and I think it mostly does these days!)','Y','','Y','','','Y','','Reproducible, generational builds and installs','Hardware profiles (with nixos-hardware)','Easily handled deployment scenarios (with tools like deploy-rs or krops)','Improve the documentation and stabilize flakes, alongside some flake improvements (Lazy copying of files to the store, for instance)','If Guix still existed, probably Guix. Otherwise, I would probably go back tk Void or Crux for my personal machines.','Y','','','Y','','','','Y','','','river','devenv.','',''),(531,'1980-01-01 00:00:00',5,'en','501962620','A2','A4','male','','','','','','','Y','Y','','','','','','','Y','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','Y','','','Y','','','','Y','','Y','','','','A1','A3','A10','','','','','','','','A6','A5','A4','','','','','','','','','','','','',NULL,'Guix, Pop_OS','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I want to contribute an eclipse plugin, but have to check legal stuff first','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','Y','','','reproducability','','','','','Y','','','','','','','Y','','','Phosh','','',''),(532,'1980-01-01 00:00:00',5,'en','1902776728','A5','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I read about Nix in multiple blogs from developers I looked up to, and decided to take the plunge with a new laptop. The onboarding process was relatively smooth, with the only big hurdle being understanding the current recommended practices (as there are many sources which still viewed flakes as “experimental”, when they seem to be the accepted future for system configurations). I really enjoyed the configuration and use experience of my new system, and it naturally followed that I eagerly followed NixOS development and championed it to coworkers and friends alike.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A8','A14','A4','','','','','','','','','','','','',NULL,'Arch Linux','A4','','','','Y','','','','','','','','Y','','','','','','Y','Y','','','','A15','A13','A4','','','','','','','','','','','','','','','','','','','A13','A4','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Most of the software I develop are already available via nixpkgs.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I started my journey with Nix and NixOS after stumbling across a passionate blog post. After getting inspired and reading more about all its advantages, I decided to take the plunge with a new laptop I had gotten. The onboarding process was very smooth, and I found the declarative configuration a breath of fresh air from the absolute chaos my Arch machine had become. With more use, and a deeper dive into the internals of Nix and NixOS, I fell in love with the distribution, the philosophy, and the community. I use NicOS on my main development machine now, and use Nic and flakes for reproducible build environments and dev shells for my personal software projects.','Y','','','','','','','Declarative, reproducible system configuration','Large package collection with ease of installation','System rollback','I would love for flakes to become the de facto standard across the board, as their odd position as experimental really confused me when starting.','Most likely Arch Linux.','Y','','','','','','','','','','Sway','','','Thanks for continuing to make such a great operating system and package manager! While I found the process simple, the chief complaint I have heard about Nix/NixOS is that there is a the steep learning curve. Any additional documentation or feature stabilization (so that there is less confusion as to the “blessed” way to do things) would help the ecosystem greatly.'),(533,'1980-01-01 00:00:00',5,'en','184637070','A5','A4','male','','','','','Y','','Y','Y','','','Y','','','','','','','Y','','','','','','Y','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','Coworker rabbitholed on it, bludgeoning it into his daily workhorse through brute force. He sorted all the core nixos stuff, mainly i3 and espanso hotkeys. He made it through learning homemanager and pulled me in for the shift towards digga. We recently ported our configs to use hive/std/colmena and are stoked about the flexibility and the coherent 30k ft view from the filesystem, the file layout is intuitive now.','','','','Y','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A10','','','','','','','','A8','A6','A11','','','','','','','','','','','','',NULL,'Debian and docker','A1','','','','Y','Y','','','','','','','Y','','','Y','Y','','','Y','','','','A15','A9','A2','A6','','','','','','','','','','','','','','','','','','A15','A9','A2','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Imposter syndrome','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Tired of maintaining a memorized set of setup steps for after wiping and reinstalling debian','Y','','Y','','','','','Rollback ','Idempotent builds','Declarative configuration ','Flakes, std, hive and colmena get official support ','Debian and docker ','Y','','','Y','Y','','','','','','i3','Std and Hive','Digga','I love you all 🤗'),(534,'1980-01-01 00:00:00',5,'en','379530043','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I saw a cool rice using nixOS','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'Guix 🙃','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A2','A1','','','','','','','','','','','','','','','','','','','A13','A2','A1','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Haven\'t had a need to package software yet. I plan to contribute.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I saw a cool nixOS rice.','Y','','Y','','','','','Rollbacks','Reproducability','','Allow builtins.currentSystem to work in the builder to remove the need for flake-utils.\r\n\r\nDepracate the old `nix-` whatever commands such as `nix-env` and replace them with the new 2.0 commands like `nix develop`\r\n\r\nIntegrate home-manager into vanilla NixOS.\r\n\r\nHave Nix/NixOS come with flakes and nix-commands enabled by default (everyone is already using them)','ArchLinux (btw) 🤡','Y','','','','','','','','','','Sway','nix-init\r\nhome-manager\r\nflake-utils','','❄️ Gang'),(535,NULL,2,'en','1732839007','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I needed an OS configuration tool and had little experience using any. Tried Ansible and Salt and hated them. Tried Nix and hated it less :-)','','','','Y','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A10','A1','','','','','','','','A8','A3','A9','','','','','','','','','','','','',NULL,'bash scripts and ansible','A5','','','','','Y','','','','','','','','','','','','','','Y','','','','A6','A1','','','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','At work we upstream anything that makes sense, but one of my colleagues usually does that work.\r\n\r\nFor my personal stuff nothing\'s come up worth contributing.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(536,'1980-01-01 00:00:00',5,'en','1418523670','A5','A4','male','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','To make my development environment and build dependencies reproducible.','Y','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A7','A3','','','','','','','','A12','A2','A11','','','','','','','','','','','','',NULL,'GNU Stow (for home-manager), home grown scripts (for dev shells), Bazel.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A1','A2','','','','','','','','','','','','','','','','','','','A13','A15','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Burdens of maintaining packages up-to-date (without proper toolings).','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Realized that NixOS provides better declarative configurations and reproducibility than Ubuntu.','Y','','','','','','','Reproducibility (including atomic updates and rollbacks).','Declarative (more modular and higher level system configurations, hence version-controllable).','Package availability (most packages I need are in nixpkgs, and I can create packages if needed).','Slightly better configuration language and abstraction (nickel).','Ubuntu/Debian.','Y','','','','','','','Y','','','','home-manager, impermanence, flake-utils-plus (and flake-utils), devenv (pre-commit-hooks.nix), lanzaboote','nix-doom-emacs (revert back to vanilla doom-emacs, as its emacs version was too old)','Better integration of Nix with Bazel/Buck would be great.'),(537,NULL,1,'en','2112874485','A2','A6','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(538,'1980-01-01 00:00:00',5,'en','133500530','A5','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I saw a few IRL friends adopt it and noted some of the tradeoffs. I tested NixOS in a VM and eventually came up with a migration plan from a Gentoo architecture to a NixOS architecture. Migrated and it\'s worked out well. I have my concerns with NixOS - no cohesive vision or direction but certainly it has some nice technical tradeoffs. I am unsure if I can get enterprise adoption on a system that becomes EOL every 18 months.','Y','Y','','','Y','','Y','Y','Y','','','','','','','Y','Y','','','','A2','A6','A5','','','','','','','','A6','A8','A9','','','','','','','','','','','','',NULL,'GUIX has a lot of overlap for development workflows.\r\n\r\npkgsrc, portage, homebrew/linuxbrew prefixes combined with direnv or another environment manager.','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','A1','A7','A9','A17','A18','','','','','','','','','','','','','','','','A2','A18','A11','','','','','','','','','','','','','','','','','','','','Y','','old style overrides because it just works','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','same story','Y','','Y','','','','','QA testing provided by nixos-release branches','NixOS configuration as a replacement for ansible','Decent package selection though it should be slimmed down','Delete about 25% of the least utilized packages from nixpkgs. We need to increase quality of nixpkgs.','Custom distribution built with Gentoo, pkgsrc, and/or linuxbrew.','Y','','','','','','','','Y','','awesomewm','direnv, poetry2nix, flake-utils, some homegrown scripts to keep me away from nix\'s inconsistent CLI design.','Briefly assessed home-manager and it seemed like a lot more work than synchronizing home dirs between hosts and dealing with file update conflicts (it\'s really not that scary and easy to resolve, even if you use a DE).','Nix and NixOS needs direction and vision to build a cohesive product that is mature and understandable to the lay person.'),(539,'1980-01-01 00:00:00',5,'en','1751597037','A5','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','tired of arch linux install scripts, remembering everything i changed, state changing over time etc','','Y','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A10','','','','','','','','A6','A4','A2','','','','','','','','','','','','',NULL,'i don\'t want to think about life without nix. i have no idea how i managed with imperative environments','A2','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','declarative','Y','','','','','','','declarative config','containers','virtual machines','sound support in nixos-rebuild build-vm','this question makes me uncomfortable i dont wanna go back to the stone ages','Y','','','','','','','','','','hyprland','stylix','disko','declarative disk partitioning built-in\r\n\r\nhttps://github.com/nix-community/disko/blob/master/docs/quickstart.md\r\n\r\nway too many commands\r\n\r\njust let me nixos-install the flake i want and auto-setup partitions without all of this curl disko editing mess'),(540,'1980-01-01 00:00:00',5,'en','216391454','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','because I can create a dev environment (with direnv) for my projects without installing packages system or user wide.','','Y','','','','','Y','','','','','','','','Y','','','','','','A1','A7','A3','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'maybe apt, because thats where i came from','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A6','A5','','','','','','','','','','','','','','','','','','','A15','A6','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','i havent given much thought to it','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','i wanted to find a better alternative to ubuntu, because i didnt feel comfortable to install packages which could break the system easily. ','Y','','','','','','','rollback','shell environments','flakes','declarative flatpaks\r\nperfect vr support','ubuntu or arch','Y','','','','','','','','','','Hyprland','','nix develop because i still dont understand what i need it for when i have nix shell with direnv',''),(541,'1980-01-01 00:00:00',5,'en','561301878','A5','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Easy dependency management, configuration as code, and an interest in trying out me (to me) technologies.','','Y','','','Y','','Y','Y','Y','','Y','','','Y','Y','Y','Y','Y','','','A1','A2','A8','','','','','','','','A6','A8','A7','','','','','','','','','','','','',NULL,'Gentoo and many, many, scripts.','A2','','Y','','Y','Y','','','','Y','','','','','','Y','','Y','','Y','','','','A13','A2','','','','','','','','','','','','','','','','','','','','A2','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','Y','Y','','Y','','','Configuration as code','Easy rollback on boot','','','Gentoo','Y','','','Y','','','','','','','XMonad / Sway','','',''),(542,'1980-01-01 00:00:00',5,'en','42012497','A7','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A2','I liked the thought of different type of package manager. The ability to rollback the system to a prior state along with installing everything declaratively was different and interesting.','Y','Y','','Y','','','Y','','','','','','','Y','','','Y','','','','A1','A2','A6','','','','','','','','A14','A5','A9','','','','','','','','','','','','',NULL,'Gnu guix ','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'m sort of a beginner and don\'t have in depth programming skills ','N','Y',NULL,'I didn\'t fully understand how it would work with other package managers like npm and anaconda ','I\'d like to get back to it when I have more time and be able to try flakes ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Good job guys! Improve the docs and provide up to date learning resources and I think adoption would increase.'),(543,NULL,1,'en','1540753931','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(544,NULL,NULL,'en','1643464911',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(545,'1980-01-01 00:00:00',5,'en','2077604717','A2','A3','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A1','A7','A5','','','','','','','','A8','A12','A2','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A4','A15','A2','A1','A9','A5','','','','','','','','','','','','','','','','A1','A5','A9','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','Y','','','','','','','','','','','','','Y','','','','','','','home-manager, agenix','morph, nixops',''),(546,NULL,1,'en','409329749','A1','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(547,'1980-01-01 00:00:00',5,'en','2002470820','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I initially heard about Nix when I was trying to learn functional programming. Since I had been using multiple DevOps tools and was already sold on the functional mindset, the idea sounded amazing. Once I tried it, I quickly went all in with it, including NixOS. First on my personal computer (migrating from Gentoo managed through Ansible), on my work computer and finally on all my machines. Including servers and a Raspberry Pi.\r\nAt the same time, I turned all my software projects into flakes.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A7','A2','A10','','','','','','','','A4','A12','A1','','','','','','','','','','','','',NULL,'Ansible\r\nDocker','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A11','','','','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I initially heard about Nix when I was trying to learn functional programming. Since I had been using multiple DevOps tools and was already sold on the functional mindset, the idea sounded amazing. Once I tried it, I quickly went all in with it, including NixOS. First on my personal computer (migrating from Gentoo managed through Ansible), on my work computer and finally on all my machines. Including servers and a Raspberry Pi.\r\nAt the same time, I turned all my software projects into flakes.','Y','Y','Y','Y','','Y','','Reproducibility','Atomic upgrade/rollback','Declarative configuration','','Gentoo deployed with Ansible','Y','','','Y','','','','','','','Xmonad','sops-nix\r\nsimple-nixos-mailserver\r\ndevenv','NixOps\r\nnix-doom-emacs','Nix is in the rare category of tools that the more I use it, the more I like it.\r\n\r\nTo whomever may read this, thank you for making/working on this survey and have a nice day ;)'),(548,'1980-01-01 00:00:00',5,'en','820479892','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was tired of my unstable arch install and wanted a declarative configuration for my whole system. I could never get into Guix because I don\'t like Lisp, so Nix seemed like the best option. At first, I struggled. The documentation is there, but often lacked key info I needed to develop my configuration. For a while, I gave up and installed everything as a user (nix-env). After a couple months, I decided to commit to migrating my system to a flake config, and it stuck! Since then I\'ve been using it to manage my system, dotfiles, vps, and environments for all my dev projects. I even wrote my first nix package recently :)','','','','','','','Y','','','','','','VPS','','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A5','A4','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A13','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','See answer to the question about Nix; I switched directly to NixOS.','Y','','','','','','VPS','Declarative system config','Rollbacks','Ability to try new features quickly and easily','Better docs','Artix','Y','','','Y','','','','Y','','','','N/A','N/A','Awesome project! I hope to be able to contribute more to the ecosystem as my knowledge of Nix gets better :)'),(549,NULL,NULL,'en','865356069',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(550,'1980-01-01 00:00:00',5,'en','23255976','A5','','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Watched a Youtube video about it.','Y','Y','','Y','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A9','','','','','','','','A5','A6','','','','','','','','','','','','','',NULL,'Ubuntu','A4','','','','Y','','','','Y','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Nothing','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Youtube video','Y','','','','','','','declarative config','package availability','fearless upgrades','better docs','ubuntu','Y','','','','','','','','Y','','','cachix','',''),(551,'1980-01-01 00:00:00',5,'en','429168413','A5','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','Loved the idea of declarative, reproducible configs to basically have a self-documenting setup that could be nuked and recreated trivially.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A7','A10','','','','','','','','A8','A9','A3','','','','','','','','','','','','',NULL,'Ansible or something.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A17','A15','','','','','','','','','','','','','','','','','','','A2','A15','A17','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Don\'t know enough yet; also, I think that in the future, each upstream project should just ship their own flake and then Nix should be used as the one package manager to rule them all (with dependency resolution and all).','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','Declarative reproducible config','Atomic rollbacks','Impermanence','Stabilize flakes, CLI. Make dream2nix stable. Make nixpkgs obsolete by having all upstream projects use flakes, then make Nix a general-purpose package manager too (with dependency resolution and all).','Arch/Gentoo','Y','','','','','','','','','','qtile','Impermanence, disko, home-manager','Dream2nix (not ready yet)',''),(552,'1980-01-01 00:00:00',5,'en','881660494','A5','A2','male','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I started with NixOS.','Y','','','','','','Y','','','Y','','','','Y','Y','Y','Y','','','','A9','A2','A6','','','','','','','','A5','A12','A11','','','','','','','','','','','','',NULL,'Not Guix, because I need nonfree software. Probably Pacman on Arch and Homebrew on macOS? Although neither come anywhere close to Nix.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A3','A5','A2','A21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I contribute occasionally, but it\'s not my main involvement with Nix ecosystem. I am limited on time, and Nix has almost all the packages I need, so I don\'t have any need to contribute new packages. I guess I could do maintenance stuff, but again, free time is the issue.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','I used to constantly distrohop, and always felt that my system would end up in a less clean / messy state, with me not knowing what files are where and what\'s been installed. When I found out that I could erase $HOME and root on every boot with NixOS, I was hooked. Plus I like programming and computer science and found using a programming language interesting.','Y','','Y','Y','','','','Declarative, reproducible configuration','Atomic rollbacks and safety of my configuration always working and never in a broken state','Easy customizability and extending of packages. No messy PKGBUILDs laying around.','I\'d make the wiki official and able to compete like Arch wiki.','Arch, I guess.','Y','','','','','','terraform-nixos','Y','Y','','Hyprland','','NixOps because its so broken, unmaintained, and bad flake support.',''),(553,'1980-01-01 00:00:00',5,'en','785648720','A8','A2','-oth-','503 Service Unavailable','','','','','','','Y','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','I\'d been interested in a reproducible system for a long time, but while the Arch build system seemed to be the best among the established distros (and I was running an Arch-based OS), it was imperfect and not worth the hassle. Nix was a greater hassle and had a steep learning curve, but offered more benefits.','','Y','','','Y','','Y','','Y','','','','','Y','Y','Y','','','Y','','A7','A2','A1','','','','','','','','A1','A9','A6','','','','','','','','','','','','',NULL,'Arch build system','A4','Y','Y','','Y','Y','','','','','','','','','','','','Y','','','','','','A6','A15','A4','A1','','','','','','','','','','','','','','','','','','A19','A6','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','Y',NULL,'Refuses to boot, probably disk failure','As soon as I have free time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Cachix','Robotnix','<3'),(554,'1980-01-01 00:00:00',5,'en','291402936','A6','A2','male','','','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Hype','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A10','A6','A1','','','','','','','','A9','A8','A12','','','','','','','','','','','','',NULL,'Arch Linux','A4','','','','','','','','','','','','','','','','','','','','','','','A9','A4','A20','A2','A3','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','','','','A2','','Y','','','','','','','More mirror cache repo','Verbose command line interface','','I would add verbose command line interface','Arhc linux','','','','','','','','Y','','Y','','','',''),(555,'1980-01-01 00:00:00',5,'en','1014721068','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was interested in a way to reliably maintain my settings and programs in git for when I setup a new computer or wanted to play with a new tool. ','Y','Y','','Y','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A7','','','','','','','','A5','A4','A3','','','','','','','','','','','','',NULL,'Probably a combination of homebrew/pacman/flatpak/distrobox with an immutable core OS, bundled with ansible or bash scripts.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I’m not sure how to add tests and run enough of them on all architectures. Also, when I get a non-nixpkgs program working it feels like a hack. I could probably figure it out, but I haven’t dedicated the time.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','Declarative configuration','Atomic deployment and rollback','Nixpkgs software and NixOS options availability','Make home-manager a core feature of the OS instead of an add-on','Another immutable distro with home-manager','Y','','','','','','','','','','i3','nix-darwin, NixOS-WSL, disko, nix2vim','','Very appreciative of the community and this incredible project!'),(556,'1980-01-01 00:00:00',5,'en','1735232347','A3','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','main operating system (nixos)','A7','','','','','','','','Y','','','','','','','Y','','','Y','','','','A1','A7','A10','','','','','','','','A9','A5','A14','','','','','','','','','','','','',NULL,'Opensuse Tumbleweed','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Technical knowledge and other duties ','Y',NULL,NULL,NULL,NULL,'A1','','','Y','daily drive ','A1','high amount of precompiled kernel and software, making it more interesting than Arch\'s aur and easier to install software. \r\nThe automated generations boot entries allows for a relatively safe tinkering, the only other distro that offers something similar, out of the box, is btrfs snapshots with Snapper in Opensuse, obviously they are two vastly different technologies but allows for that same safety feeling that almost none of the major distributions offers.','','','','','Y','','','nixpkgs huge amount availability ','rollback (generations) bootloader entries by default','the ability to test a program in a temporary shell','Default and official GUI programs integrated with Plasma allowing to manage nixos-generations and bootloader associated configs. \r\nAlso, an unified software management center, similar to synaptic (in advance mode) or Discover (easy mode) would be interesting. Currently, the closest I know of is the unofficial libadwaita app nix-software-center maintained by vlinkz on Github.','Opensuse Tumbleweed or Arch','Y','','','','','','','','Y','','','','','Just that feels truly good using Nixos-plasma '),(557,'1980-01-01 00:00:00',5,'en','1479249160','A2','A3','male','','','','','','','','','Y','','','','','','Y','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was getting suggestions to use NixOS for some time, and when I was switching my job, I just bit the bullet and migrated from Gentoo to NixOS. I immediately introduced it in a new job to ensure everyone uses the same development environment.','','','','','Y','','','','Y','','','Y','','','Y','Y','Y','','Y','','A2','A3','A6','','','','','','','','A8','A9','A1','','','','','','','','','','','','',NULL,'Multiple other tools including: docker, bash, ansible..','A3','Y','','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','With new work, I just installed it and migrated all my systems over time. It was a suggestion from my friends. I also tried NixOS as an alternative firmware for embedded in the previous workplace but that was just an investigation of it.','Y','Y','Y','','','Y','','Ability to rollback and manage system description with git','Distributed deployment (prepare and deploy on and to different machines)','Cross-compilation support','I would improve cross-compilation a lot, but that is mostly just an issue of nixpkgs, not NixOS itself. I would also reduce the memory needed to evaluate NixOS but that is probably an issue of Nix, not NixOS again.','Probably what I was using previously. That is my homebrew version of Gentoo for development PCs, Alpine Linux for embedded boards, and OpenWrt for network devices.','','','','','','Y','','','','','sway','agenix','',''),(558,'1980-01-01 00:00:00',5,'en','950918867','A8','A2','fem','','','','','','','','','','','','','','','','','','','','','','','','','not in tech','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','Gaming PC','A1','Distrohopped from Arch for better config management','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A10','A1','A7','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'I\'d probably still be on Arch or possibly guix','A2','','','','','','','','','','','','','','','','','','','','','','','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','Gaming PC','A2','','','','Y','','','','','','','','','','Y','','','','','','','','','','bspwm/dwm','','',''),(559,'1980-01-01 00:00:00',5,'en','657316291','A6','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Because i wanted to settle on something future proof and something that paysoff in future work. I find that nix is advancing that traditional linux.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'Archlinux as an DIY guy.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A21','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Understand nix. Surely it aint easy, so there is a learning to be done.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','For an future advancing distro which could pay-off in some way','Y','','','','','','','Config to rule \'em all','Reproducibilty and unifies lots of stuffs','Could be the best software/os to work with anywhere. Like commercially people should implement nix for work','Unnecessarily download the exisiting packages whenever i update channels and rebuild system.\r\nMany people dont want to try nixos because of requiring high bandwidth for upgrades.','Archlinux as an DIY guy.','Y','','','','','','','','','','Hyprland','','',''),(560,'1980-01-01 00:00:00',5,'en','122352602','A2','A3','male','','Y','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Come with NixOS','','','','','Y','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A2','A7','','','','','','','','A5','A14','A3','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A20','','','','','','','','','','','','','','','','','','','','A2','A20','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Packaging software correctly seems very complicated. Might look into it with more time. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','(Doom) Emacs got me interested in configuration my environment through a configuration file. I saw his easy it was to share and sync my Emacs configuration, and was getting frustrated that the same was not true for my non-Emacs environment. ','Y','','Y','','','','','','','','','Guix','Y','','','','','','','Y','','','Qtile, Hyprland','agenix, home-manager','',''),(561,'1980-01-01 00:00:00',5,'en','1025424461','A5','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I needed a cluster-wide package manager for a mesos cluster before Docker was pervasive, and nix fit the bill perfectly ','','Y','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A9','','','','','','','','A5','A9','A8','','','','','','','','','','','','',NULL,'Debian packages, which would be painful\r\nAnd maybe freebsd ports?','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A2','A9','','','','','','','','','','','','','','','','','','','A1','A2','A13','','','','','','','','','','','','','','','','','','','Y','','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was so fed up with puppet and chef and debian packages. NixOS managed to replace all of them and it was a miracle.','Y','','Y','','','','','Declarative system configuration','Atomic upgrades/rollbacks','Reproducibility ','Commercial software makers maintaining nix derivations for their own stuff','Maybe arch Linux? Or ChromeOS, no joke','Y','','','','','','','Y','','','','home-manager','kubenix',''),(562,'1980-01-01 00:00:00',5,'en','864204723','A2','A4','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','Y','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Started using at work to solve software packaging problems in a better way, then started using it at home. ','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A1','A2','A4','','','','','','','','A8','A7','A5','','','','','','','','','','','','',NULL,'Arch at home, likely something home-grown at work ','A4','','','','Y','Y','','','','','','','','Y','','','','','Y','Y','','','','A4','A2','','','','','','','','','','','','','','','','','','','','A5','A2','A4','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Got into it after using Nix','Y','','Y','','','','','Modules','Rollback','Mixing stable and unstable packages and modules','Remove the channel concept, people should use flakes now','Arch','Y','','','','','','','','','','I3','','',''),(563,'1980-01-01 00:00:00',5,'en','211169808','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','Y','','','','A2','Reproducible builds for mobile robots.','','Y','','','','','','','Y','Y','','','Robots','','','Y','Y','','','','A2','A7','A5','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'apt','A2','','','','Y','','','','','','','','','','','','','Y','','','','','','A2','A4','A3','A15','A1','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','We need a declarative os with atomic updates for our mobile robots','Y','Y','','Y','','','robots','declarative ','atomic upgrades/rollbacks','multiple versions of packages','Smooth and final transition to flakes and better canonical documentation.','Ubuntu','Y','','','','','Y','','','','','none','','','Nix and NixOS can play a (big?) role in robotics'),(564,'1980-01-01 00:00:00',5,'en','1702897839','A2','A4','male','','','','Y','','','','','','','','','','','','Y','','Y','Y','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Colleagues introduced me. It\'s also part of my job to know how it works. ','','','','','Y','','Y','','','','','','','','Y','Y','Y','Y','','','A2','A3','A1','','','','','','','','A3','A9','A13','','','','','','','','','','','','',NULL,'Anaconda or pip or docker','A1','','','','Y','','','','','','','','','','','','','','','','','','','A13','A2','A3','','','','','','','','','','','','','','','','','','','A2','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Everyone around me used it','Y','','','','','','','Declarative config','Reproducibility','','','Ubuntu','Y','','','','','','','Y','','','','','',''),(565,'1980-01-01 00:00:00',5,'en','1424474517','A1','A2','fem','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Ran out of things to tinker with my Linux machines, saw some folks talking about NixOS, jumped into it. I can\'t even remember what I did in the beginning, but it was probably just a NixOS config.','','','','','Y','','Y','','Y','Y','','Y','','','Y','Y','Y','','Y','','A2','A1','A9','','','','','','','','A1','A8','A3','','','','','','','','','','','','',NULL,'Some ad-hoc scripts for machine and dev environment setup. I used to keep a repo with config files and a script to symlink them into places.','A1','','Y','','Y','Y','','','','','','','','Y','','','','','','Y','','','Woodpecker','A15','A4','A3','A2','A13','A19','A1','','','','','','','','','','','','','','','A22','A19','A1','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Lack of time (I did send some patches, and they got merged. But I am by no means an active contributor).\r\n','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Ran out of things to do with my Linux machines.','Y','Y','Y','Y','','Y','','Up-to-date, but pinnable and binary-cached packages from Nixpkgs.','Full-system rollback.','QEMU integration (NixOS containers and NixOS tests).\r\n\r\nThey are not only useful for Nixpkgs, but also for my projects that require full desktop environments to be tested.','Add declarative configuration for KDE Plasma.','Ad-hoc shell scripts for installing and configuring systems.','Y','','','','','','','','Y','','Qtile','disko.','home-manager. Keeping two dependencies (nixpkgs and home-manager) turned out to be worse than just making everything global for me.',''),(566,'1980-01-01 00:00:00',5,'en','1283646194','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Friends migrated to nixos,i followed','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A7','A2','A3','','','','','','','','A8','A3','A6','','','','','','','','','','','','',NULL,'Pacman ','A4','','','','Y','Y','','','','','','','','','','','','','Y','','','','buildbot','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Friends mitgrated to nicos, i followed','Y','Y','Y','','','','Laptop ','Reusing configuration from others','A dingle config file, no fiddling in /etc','Easy remote deployments','Secrets Management from first hour','Arch at home, ubuntu at work','Y','','','','','','krops','Y','','','','Disko','','Cheers to the last years release managers (dasj,hexa), nixpks became much more stable wrt updating'),(567,NULL,NULL,'en','676017273',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(568,'1980-01-01 00:00:00',5,'en','1443759924','A2','A3','fem','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','Y','','Y','','','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started with NixOS, not really understanding what Nix was.','','Y','','','','','Y','Y','','Y','Y','','','Y','Y','','Y','','','','A2','A7','A1','','','','','','','','A9','A8','A14','','','','','','','','','','','','',NULL,'distrobox','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','After trying Guix, which was too limiting for me due to their libre software requirements.','Y','','Y','Y','Y','','','Clean system, all the time','Declarative configuration','NixOS modules in nixpkgs. I never have to write anything myself','The ability to run binaries downloaded from the internet','Guix','Y','','','','','','bento','Y','Y','Y','','','- peerix, but it\'s not maintained and not working very reliably, but it does a job without alternative\r\n- deploy-rs, but it\'s pushing a whole closure so it\'s not always practical\r\n- Arion, but it seems unmaintained and wasn\'t reliable','Thanks for the survey \\o/'),(569,'1980-01-01 00:00:00',5,'en','1506975516','A2','A3','male','','','','','','','','Y','','','','','','','','','','Y','','Y','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A2','A9','A1','','','','','','','','A9','A8','A14','','','','','','','','','','','','',NULL,'','A4','','Y','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A4','','','','','','','','','','','','','','','','','','','','','A2','A1','A14','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','','','','Declarative configuration','Rollbacks','','','CoreOS ?','Y','','','','','Y','','Y','','','','- home-manager\r\n- agenix\r\n- simple-nixos-mailserver','- devenv','Nix rocks!'),(570,'1980-01-01 00:00:00',5,'en','1695611959','A6','A2','male','','Y','','','','','','','','Y','','','Y','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I began to use Nix right when I start my first day at using NixOS.','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A7','A2','A3','','','','','','','','A5','A6','A9','','','','','','','','','','','','',NULL,'I might be using anything that depends on the programming language used or the development ecosystem specific ones.','A2','','','','','Y','','','','','','','Y','','','','','Y','','','','','','A1','A19','A15','A5','A10','A4','','','','','','','','','','','','','','','','A1','A22','A4','','','','','','','','','','','','','','','','','','','Y','','Y','','A1','','The size of the project is big, it really makes me think that I need to spend more time with Nix before I can be confident enough to actively contribute. My professional experience is limited to web development in general.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','At one point in my life, my hard drive was broken to death and became no longer usable. Usually, when such things happened, I\'d typically take that as an opportunity to jump between Linux distribution that I would find to be interesting to try at the time. But this time, there\'s something different, something that I have come to understand after my years of distro hopping, is that I need a very specific feature to exists, something that I came to learn from NixOS that I have not been able to have since.\r\n\r\nThere are some other distributions that I know that tries to achieve similar things with different technical implementations that I did not like much, but NixOS, is well performing at what it does for years since. So with that in mind, despite the limited amount of documentation and feedback to refer to when I first tried it, I went all in to give my best to understand and use it since to look no further.','Y','','','','','','','','','','','It\'s very likely that I would either use Debian SID, or Arch based Linux Distribution.','Y','','','','','','','','Y','','','Mostly sites like search.nixos.org and the forums (discourse, reddit).','','With all due respect, thanks. I really wanted to contribute but at the same time I felt powerless to understand the entire Nix ecosystem.'),(571,'1980-01-01 00:00:00',5,'en','1325636310','A2','A5','male','','','','','','','','','','','Y','','','','','','','Y','','','','Y','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Mainly two reasons; \r\n- I love functional programming\r\n- After using mostly Debian and Ubuntu for 2 decades, I got annoyed with the time spent setting up machines to config. I also got tired of Ansible and SaltStack. Nix seemed to solve all my issues already in the base system (+home-manager)','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A6','','','','','','','','A8','A14','A6','','','','','','','','','','','','',NULL,'Guix, Debian or Ubuntu, Fedora Silverblue','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A12','A6','A1','A22','A2','','','','','','','','','','','','','','','','','A12','A22','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','It\'s something I\'d like to do once I understand it better','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','Stability','Configuration Management with Flakes and Git','No annoying pop-up dialogs for OS stuff','Better darwin support, smaller closures for containers','Guix, Debian/Ubuntu, Fedora Silverblue','Y','','','','','','','Y','','','','Home Manager','LnL7/nix-darwin',''),(572,'1980-01-01 00:00:00',5,'en','1093592628','A2','A5','male','','','','','','Y','Y','','','','','','','Y','','','Y','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A3','A6','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'A combination of Docker (dev envs) and Ansible/Puppet (system setup)','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','A3','A15','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','More documentation','','Y','','','','','','','','','','i3','Home Manager','',''),(573,'1980-01-01 00:00:00',5,'en','2133750511','A2','A3','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking for a solution for deterministically reproducible python environments for Jupyter Notebooks for my project at work','','Y','','','','','Y','','','','','','','','Y','','','','','','A2','A9','A4','','','','','','','','A2','A8','A14','','','','','','','','','','','','',NULL,'My most usual use-case is per-project configuration and nix-shell, so I guess I would use docker or just suffer','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A3','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I guess I still don\'t use intensively enough to understand what I want to contribute','N','N','I don\'t know, curiosity I guess',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(574,'1980-01-01 00:00:00',5,'en','1883772851','A2','A4','male','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I work for a company that\'s heavily invested in Nix, so I had a strong incentive to use it for all kinds of work projects.','','Y','','','','','Y','','','','','','','','Y','Y','Y','Y','','','A2','A1','A3','','','','','','','','A4','A14','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','Y','Y','','','','A2','A7','A1','A21','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Colleague convinced me to','Y','','','','','','','Safe updates and easy rollbacks','Declarative system configuration','Stability','','Ubuntu','Y','','','','','','','Y','','','','Home manager','nix-direnv','While Nix is sometimes annoying, it\'s a fascinating technology and makes life often much easier. Thanks to everyone involved in this effort!'),(575,NULL,NULL,'en','1785335858',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(576,'1980-01-01 00:00:00',5,'en','210745018','A2','A4','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A1','','','Y','','','Y','','Y','Y','','Y','','','','Y','Y','','Y','Y','','','A7','A9','A10','','','','','','','','A13','A9','A8','','','','','','','','','','','','',NULL,'Debian + Ansible','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A4','A19','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','Y',NULL,'- out of date/incomplete documentation\r\n- missing hardware support','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(577,'1980-01-01 00:00:00',5,'en','1367555113','A2','A7','male','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','I had to use 2 versions of BOOST so having nix do this for me in 2 different projects seemed like the only solution at the time.','Y','Y','','','','','Y','','','Y','','','','Y','Y','','','','','','A3','A1','A10','','','','','','','','A5','A10','A15','','','','','','','','','','','','',NULL,'I have no idea','A1','','','','Y','','','','','','','','','','','','','','','Y','Y','','','A13','A21','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'N','N','I suppose if it had support for excel but I really am used macOS and Windows and wouldn\'t really wish to spend time moving.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The chat channels. I find these now confusing. I used to get really high quality help.','','Can the language be typed? It would really help understanding what functions do and with error messages.'),(578,'1980-01-01 00:00:00',5,'en','1487166588','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Reproducible dev shells (nix-shell) for the team, following bugs we had because of different versions of software.','','Y','','Y','','','Y','','Y','Y','','','','Y','Y','Y','Y','','Y','','A3','A1','A7','','','','','','','','A3','A6','A10','','','','','','','','','','','','',NULL,'Guix','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A1','A2','A5','A7','A11','A15','','','','','','','','','','','','','','','A13','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','A Ubuntu upgrade crashed halfway through, I lost everything.\r\nThen I had to reinstall absolutely everything, and it took me like a week.','Y','Y','','Y','','','','Safe upgrade & rollback','System configuration for many services (NixOS options)','','Less disk consumption/easier analysis of why the Nix store is so big. I have to garbage collect every week or so because the Nix store takes most of my disk, yet it is not easy to understand what roots cause what.','Guix','Y','','','','','','','','','','I3','','',''),(579,'1980-01-01 00:00:00',5,'en','358512992','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I initially started using NixOS on my personal desktop computer so I can more easily manage my system configuration.','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','Y','','A2','A7','A9','','','','','','','','A8','A9','A2','','','','','','','','','','','','',NULL,'I\'d probably still use language-specific tooling & docker/podman. As for NixOS, I\'d likely still use Fedora.','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A6','A1','','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I\'ve been using davious distributtions before and friend recommended NixOS and the concept sounded so much better, especially for people with an dev or sysadmin background.','Y','Y','Y','','','','','Declarative OS configuration','Reproducibility','Easy customizability','Improved RISC-V support, built-in secrets management','Likely still Fedora','Y','','','Y','','','','Y','','','','home-manager, flake-utils, search.nixos.org, crane','naersk (switched to crane)',''),(580,NULL,1,'en','2038849477','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Pilot','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(581,'1980-01-01 00:00:00',5,'en','916594259','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I joined a company that uses Nix extensively. Using Nix wasn\'t mandatory but I figured I\'d learn anyway, so I converted my main dev machine to NixOS.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A2','A7','','','','','','','','A13','A9','A5','','','','','','','','','','','','',NULL,'Some other linux distribution.','A2','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A1','A2','A9','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I sent a couple of PRs but they never got any response','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I started using NixOS at the same time as I started using Nix, and for the same reason.','Y','','Y','','','','','declarative configuration','portable configuration (i.e. most of my configuration can be applied to multiple machines seamlessly)','','So I haven\'t thought through the design and implications of this at all, but sometimes I want to \"fiddle\" with my running system to resolve a problem that I don\'t yet know how to fix. With NixOS, I usually have to rebuild the system multiple times before I figure out what I need to do. It would be cool if I could just edit the config files live (with an easy roll-back to the declarative configuration when I break something).','Some other linux distribution','Y','','','','','','','','','','hyprland','oxalica/rust-overlay and direnv','',''),(582,'1980-01-01 00:00:00',5,'en','1231169210','A2','A3','male','','Y','','','','','','','Y','','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','Y','Y','','','Y','Y','Y','Y','','Y','','A7','A2','A4','','','','','','','','A2','A11','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A4','A14','A2','','','','','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','Y','','single configuration input','atomic deployment and rollbacks','reproducibility','','','Y','','','','','','','','','','sway','','NixOps, morph',''),(583,NULL,1,'en','18092577','A2','A5','male','','','','','','','Y','','','','Y','Y','Y','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(584,NULL,1,'en','1620986609','A2','A2','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(585,'1980-01-01 00:00:00',5,'en','1141036030','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Started using it around 2018/2019 to get a haskell-language-server matching the ghc version in the project.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','','A7','A2','A1','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Arch for the developer workstation\r\nRedHat in production servers probably.','A4','','','','Y','Y','','','','','','','','','','Y','','Y','Y','','','','','A15','A1','A19','A9','A13','A5','','','','','','','','','','','','','','','','A1','A19','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','since 2018/2019 getting haskell-language-server matching ghc version in project. Then I got curious about NixOS, too. I think its very convenient after getting through the learning curve and if you don\'t need stuff not already packaged / provided by NixOS modules.','Y','Y','','','','','','Declarative system configuration / sharing of configuration between different configurations','Documentation via search.nixos.org and the nixos options','Easy reproducibility','better error messages\r\nbetter evaluation guaranties\r\n\r\nOne way to implement that, might be:\r\n\r\nAdd static typing to the nix language or if nickel-lang seems good (have not looked at it in detail, yet) turn nixpkgs into nickel-lang.','Probably Arch / RedHat and their package managers ... also lots of docker','Y','','','Y','','','','','Y','','Plasma + Awesome','oxalica/rust-overlay\r\nhttps://github.com/input-output-hk/haskell.nix\r\nnaersk\r\n','',''),(586,'1980-01-01 00:00:00',5,'en','886172302','A2','A4','male','','Y','','','Y','','Y','','','','','','','','','Y','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I liked functional languages like Haskell since longer and found the principle of NixOS appealing. I was using Gentoo at the time and heard that NixOS was at least as configurable as Gentoo. Also, the community made a sympathetic impression.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','','','','A9','A10','A1','','','','','','','','A6','A8','A4','','','','','','','','','','','','',NULL,'No idea if anything else seriously exists. Possibly Guix','A3','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A13','A15','A2','A21','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same story as Nix','Y','Y','','Y','','','','Reproducible systems','Modular, functional system configuration','','* Separate packages (nixpkgs) and module systems (NixOS)\r\n* Improve error messages for modules','Gentoo','Y','','','','','','','','Y','','','Home manager\r\nLanguage-specific overlays\r\nnixos-hardware','I looked at nixops and then found the documentation to be too sparse to work with it reliably','Consider allowing more answers in the drag & drop priorisation questions next time'),(587,NULL,2,'en','82665991','A2','A2','male','','','','','','Y','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A7','A6','','','','','','','','A7','A2','A5','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A3','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(588,'1980-01-01 00:00:00',5,'en','7053598','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','','A2','A3','A9','','','','','','','','A8','A9','A2','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','Drone CI','A13','A7','A2','A5','A9','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','To store a reproducible configuration of my home server in a single repository.','','','Y','','','','','Declarative configuration','Rich module system','Reproducible','','','Y','','','','','','','','','Y','','','',''),(589,'1980-01-01 00:00:00',5,'en','1369841171','A2','A3','male','','','','','','Y','Y','Y','Y','','','','','','','','','Y','','','','','','','','','','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Watched a few videos from NixCon, fell in love.\r\n\r\nMostly because home manager.','','Y','','','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','Y','','A1','A2','A10','','','','','','','','A10','A8','A4','','','','','','','','','','','','',NULL,'Guix','A4','','Y','Y','Y','Y','Y','','','','','','Y','','','Y','','Y','Y','Y','','','','A13','A15','A3','A2','A4','A9','A14','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Started using Nix, switched to NixOS a week later','Y','Y','Y','','Y','Y','','Reproducibility','Easy to maintain other people\'s computers','','','Guix','Y','','','','','','','Y','','','','nixos.org, home-manager, snowflakeOS','',''),(590,'1980-01-01 00:00:00',5,'en','816745462','A2','A3','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','','','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Easy to setup desktop and laptop in exactly the same way as well as making reinstalling machine more easily.\r\nLater on reproducible builds for work.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A8','A14','A4','','','','','','','','','','','','',NULL,'I\'d still be using Ubuntu and probably more containers.','A4','','','Y','Y','Y','','','','','','','','','','','','Y','','','','','','A3','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','Most of the time I don\'t need to','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Want the same environment on all my machines. Also makes it easy to reinstall.','Y','','','','','','','Configuration files describing an entire system','','','The nix channels seem redundant. If I use Flakes then what\'s the point of having them besides not getting useful feedback when commands aren\'t found.\r\nI\'d also appreciate having a Microsoft Defender for Endpoint for Linux package to comply with work policies (I currently don\'t comply).','Ubuntu (work) or Arch (home)','Y','','','','','','','Y','','','','','',''),(591,'1980-01-01 00:00:00',5,'en','1716202291','A5','A2','-oth-','Nonbinary','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I found the flexibility of configuration and easy creation of dev environments quite useful.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A5','A13','A4','','','','','','','','','','','','',NULL,'I don\'t have an alternative to Nix','A2','Y','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Flexible system configuration','Y','','','','','','','','','','Documentation','Arch Linux','Y','','','','','','','','','','sway','fenix, flake-utils','',''),(592,'1980-01-01 00:00:00',5,'en','902081710','A2','A2','male','','','','','','','Y','','','Y','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','','','','','','Y','Y','','','Y','','','Y','','Y','Y','','Y','','A2','A1','A6','','','','','','','','A2','A12','A6','','','','','','','','','','','','',NULL,'GUIX','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A19','A5','','','','','','','','','','','','','','','','','','','','Y','','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A4','','Y','','Y','','','','','Declarative','Reproducible','Abstract','Perl/Bash activation scripts','Arch, Alpine or GUIX','Y','','','','','','','Y','','','i3/sway','','','Thanks :)'),(593,'1980-01-01 00:00:00',5,'en','589070371','A3','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','Y','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','Y','Y','','A3','A2','A1','','','','','','','','A12','A5','A3','','','','','','','','','','','','',NULL,'Ad hoc shell scripts ','A4','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A4','A2','A3','A9','A13','A15','','','','','','','','','','','','','','','','A15','A2','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','Y','','','','','','','','','','Y','','','','','Y','','','','','','','',''),(594,NULL,NULL,'en','357928037',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(595,'1980-01-01 00:00:00',5,'en','1133541628','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','In my opinion, one of the great advantages of Open Source is that it blurs the line between ‘producers’ and ‘consumers’ of software, allowing a diverse audience to participate in its evolution. However, that only works when the software you run on a day-to-day basis is close to the latest version, otherwise the ‘gap’ with ‘upstream’ becomes hard to bridge.\r\n\r\nFor that reason, after more than a decade on Debian, I was ready to distro-hop to a ‘rolling release’ distro. After a brief attempt at Arch, which I didn’t find too collaboration-friendly, I decided to give NixOS a try.\r\n\r\nTo be honest, I kinda thought this departure from FHS ‘could never work in practice’. However, I was quickly impressed by the quality of nixpkgs, how easy it was to run nixpkgs-unstable and switch back to a previous profile in case of breakage, and the way the ‘monorepo’ approach to packaging aids wide collaboration.\r\n\r\nThis was about 4 years ago, since then I’ve become a nixpkgs maintainer and committer and am still extremely happy with Nix - and excited by its still-untapped potential.','','Y','','','','','Y','Y','','Y','','Y','','','Y','Y','Y','Y','','','A2','A10','','','','','','','','','A3','A6','','','','','','','','','','','','','',NULL,'guix','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A11','A5','A2','A10','A15','A9','','','','','','','','','','','','','','','','A2','A10','','','','','','','','','','','','','','','','','','','','','','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','In my opinion, one of the great advantages of Open Source is that it blurs the line between ‘producers’ and ‘consumers’ of software, allowing a diverse audience to participate in its evolution. However, that only works when the software you run on a day-to-day basis is close to the latest version, otherwise the ‘gap’ with ‘upstream’ becomes hard to bridge.\r\n\r\nFor that reason, after more than a decade on Debian, I was ready to distro-hop to a ‘rolling release’ distro. After a brief attempt at Arch, which I didn’t find too collaboration-friendly, I decided to give NixOS a try.\r\n\r\nTo be honest, I kinda thought this departure from FHS ‘could never work in practice’. However, I was quickly impressed by the quality of nixpkgs, how easy it was to run nixpkgs-unstable and switch back to a previous profile in case of breakage, and the way the ‘monorepo’ approach to packaging aids wide collaboration.\r\n\r\nThis was about 4 years ago, since then I’ve become a nixpkgs maintainer and committer and am still extremely happy with Nix - and excited by its still-untapped potential.','Y','','Y','Y','','Y','','Declarative build','Customizability (including applying patches etc)','','','','Y','','','','','','','','','','volare, notion','','',''),(596,'1980-01-01 00:00:00',5,'en','301604344','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Was draw in by the possibility to declare my entire operating system in one file. Tried to look into it many times but seemed very complicated. So after a year I finnaly took the time to look all over the internet to learn the details about nix and nixos. Learning curve was extremy steep, but once you get past the initial moutain of learning nix language, how basic packages are build, what flakes are, what modules are and what home-manager is, after that I am really pleased with the system and seems much more cleanly constructed than it seemed at first.','','','','Y','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A7','A1','A2','','','','','','','','A14','A8','A4','','','','','','','','','','','','',NULL,'Arch/Fedora for distribution, normal packaging tools for the given programming language.','A4','','Y','','Y','Y','','Y','','','','','','','','','','','','','','','','A2','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time commitment currently.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Wanted to try to have the abillity to declare my operating system in a git repository.','Y','','Y','','','','','Declartive systems and ability to share modules between systems in the same repo','Package availability','Rollbacks','Better error messages and better module documentation. Have each module have its own documentation and not just documentation per option.','fedora/arch','','','','Y','','','','Y','','','Hyprland','Systemd services and service isolation.','',''),(597,NULL,NULL,'en','1657273746',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(598,'1980-01-01 00:00:00',5,'en','2121062825','A2','A2','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','Everything','A3','I wanted a declarative package manager for my 3 devices and there was not really an alternative.','','Y','','Y','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','Configuring switches ','A7','A3','A4','','','','','','','','A8','A9','A2','','','','','','','','','','','','',NULL,'I don\'t know 😵‍💫 some half assed Debian unstable things','A2','','Y','Y','Y','Y','','','','Y','Y','','Y','','','Y','','','','Y','','','','A9','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','Pull requests','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I needed something declarative which you can easily extend','Y','Y','Y','Y','','','','Declarative configuration ','Extendability ','Atomic updates ','- ca-derivations\r\n- module system for package options\r\n- improve performance ','Debian unstable while being unhappy about it','Y','','','','','Y','','','Y','','','microvm.nix, NixOS-WSL, nil, comma, many more','home-manager','🏳️‍🌈'),(599,'1980-01-01 00:00:00',5,'en','607263398','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','Y','','Y','','Y','','','','','Y','Y','Y','Y','Y','Y','','A2','A8','A10','','','','','','','','A8','A2','A6','','','','','','','','','','','','',NULL,'Docker and custom scripts','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A20','A1','A2','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','','Y','','','','','','','Add secrets support\r\nFlakes only\r\nNixos containers without sudo\r\n','Probably Archlinux','Y','','','','Y','','','','','','Sway','clj-nix','devshell\r\nflake.parts',''),(600,'1980-01-01 00:00:00',5,'en','719278025','A2','A2','male','','','','','','Y','Y','','Y','','','','','','Y','','Y','Y','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','The band\'s rig is set up with it 😉','A4','Went into the LISP and SmallTalk machine rabbit hole, found some obscure forum about LISP machines, someone was talking about Nix. Haven\'t looked back since.','Y','Y','','Y','Y','','Y','Y','Y','Y','','Y','In Ear Monitoring rig.','Y','Y','Y','Y','Y','Y','','A9','A1','A4','','','','','','','','A4','A11','A13','','','','','','','','','','','','',NULL,'I\'d say Guix… But I\'d probably just go back to Arch + AUR + lots of bash scripts. Since that\'s most familiar.','A7','Y','Y','Y','Y','Y','','','','Y','','','Y','Y','','Y','','','','Y','Y','Y','','A15','A2','A1','A7','A4','','','','','','','','','','','','','','','','','A5','A10','A6','','','','','','','','','','','','','','','','','','','','Y','','','-oth-','I help where I can 😅',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same story as with Nix, I went all in.','Y','Y','Y','Y','','','','The module system','The packaged services','The weirdly active Minecraft community','A way to \"dynamically\" upgrade systems. I don\'t like the fact that NixOS is an \"all or nothing\" type of system. Either everything builds, or everything fails. For a workstation, this is okay, but for a server? I don\'t like it when I can\'t upgrade a service that\'s unrelated to another one that just so happens to be failing.','Again, Arch.','Y','','','Y','','Y','','Y','','','','home-manager, nixos-hardware, Musnix','A lot of the secret management systems, like sops-nix. Not that I don\'t like them, just took too long to understand.','Keep up the amazing work!'),(601,'1980-01-01 00:00:00',5,'en','1990250490','A3','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','It\'s my main daily distro','A2','A friend recommended it','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Archlinux','A4','','','','Y','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','Main daily distro','A2','','Y','','Y','','','','','Repeatable builds','All configuration in one place','','Add more documentation and learning material','Archlinux','Y','','','','','','','','','','i3','','',''),(602,'1980-01-01 00:00:00',5,'en','641942132','A3','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Switched to NixOS from Arch Linux in search for reproducibility and to avoid breaking the system with a config change (root on tmpfs).','','Y','','','','','Y','Y','','','','','','','Y','','Y','','Y','','A2','A3','A1','','','','','','','','A8','A7','A1','','','','','','','','','','','','',NULL,'Some combination of devcontainers and pacman, probably.','A3','','','','Y','Y','','Y','','','','','','','','','','','','Y','','','','A9','A2','A4','A1','A17','','','','','','','','','','','','','','','','','A1','A9','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','root/home on tmpfs','modules/declarative config','easy package patching','better/more streamlined systemd initrd boot support\r\nbetter [graphical/user] containers\r\ncryptsetup-suspend support\r\nAppArmor\r\nnixpkgs-to-flatpak tool, or some translation layer from nix to flatpak/ostree\r\nmeasuring','Probably Arch Linux','Y','','','','','','','','Y','','','flake-utils-plus, home-manager, agenix, nixvim','deploy-rs, devos',''),(603,NULL,2,'en','2075875716','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A3','A9','A1','','','','','','','','A4','A12','A2','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','A4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(604,'1980-01-01 00:00:00',5,'en','595040792','A2','A5','male','','Y','','','','','Y','','','','','','','','','','','Y','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It\'s been a while, but I think that the trigger was Nixos solved a problem I\'ve always been having but never really could articulate before. I\'ve been experimenting with all kind of scripts and stuff to try and minimise the amount of work needed to install a new computer and me feeling at home with it. When I had a job working closely with other people who already used Nix, I let myself convince easily, and could use their help for onboarding.','','Y','','','','','Y','','Y','','','','','','Y','','Y','Y','','','A1','A2','A3','','','','','','','','A8','A9','A10','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A14','A13','A1','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A5','Nixos was my entry into Nix, so see infra.','Y','','','','','','','Declarative system configuration','','','','','Y','','','','','','','Y','','','','','',''),(605,'1980-01-01 00:00:00',5,'en','2146564880','A5','A4','male','','Y','','','','','','','','','Y','','','','Y','','','Y','','','','','','Y','Philosopher','','','Y','','','Android (kill me now)','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I tried it as a toy, a curiosity. That\'s what I do with software: I fiddle with it. I realized that my way of doing things on Arch, ultimately, was untenable by comparison. I have a complex specification of my system, and I want something that lasts.','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A1','A10','A7','','','','','','','','A1','A12','A15','','','','','','','','','','','','',NULL,'Counterfactuals are hard problems, as I don\'t understand how the world might really look like if this ecosystem didn\'t obtain. It has clearly influenced the world. Arch Linux, Guix, Debian, Silverblue, and, really, distrobox. I\'d containerize much harder.','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'m new, but I can say I think it\'s is too centrally controlled. I\'d be willing to share what I do in P2P environments (the reliance upon tools like github seems insane to me). I also find that doing things the Nix-way isn\'t obviously correct. I\'ve got a dozen bullshit hacks I have to use to get what I could easily have up and running on a more traditional distro. Nix provides a base layer for me, but synchronizing `/home` is how I move plenty of my configuration (and my software) .','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','I know the file I\'m editing to change my system, and I can reproduce or roll it back easily. Iterative development is fearless and fast, even if painful, unintuitive, and poorly documented in some respects. ','Software configuration is often much easier in NixOS. Packagers sometimes have sane or better defaults with simple options that make it so hours of work can be saved. Note, however, fighting against an official package sucks.','The package repo is relatively large and up-to-date. ','I wish it were easier to override packages out of the box. The barrier to entry is higher than it should be here. Meshing with the rest of the GNU/Linux ecosystem is also too painful; there\'s still too much software that I can\'t really get running well on my system. ','Prolly Arch','Y','','','','','Y','','','','','i3','','','Thank you. Please move toward P2P distributions. Ideally, I could walk up to a machine, enter my password into Argon2, use that key to join an encrypted swarm that downloads my secrets, including my config, and installs the system from there. '),(606,'1980-01-01 00:00:00',5,'en','643952009','A2','A2','fem','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I used ubuntu/pop-os/raspbian/debian-server before and got annoyed with updates breaking things, outdated packages, etc and gave it a try since it was referenced on basically every github README as a up-to-date package source','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A3','A7','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'a mix:\r\nwork: ubuntu\r\ndesktop: fedora or arch\r\nlaptop: arch or gentoo\r\npi: raspbian','A2','','','','Y','Y','','','','','','','','','','','','','','','','','Gitea Actions','A15','A2','A17','A1','A5','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','i dont know the process and maintaining a NUR kind of works','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','Add a easy method for packaging qt (python) and electron (js)','','Y','','','','','Y','','','','','i3wm','','',''),(607,NULL,2,'en','368829256','A2','A2','male','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A3','A2','A1','','','','','','','','A6','A3','A13','','','','','','','','','','','','',NULL,'Guix ','A7','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A4','A17','A1','A15','A19','A25','','','','','','','','','','','','','','','','A4','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(608,'1980-01-01 00:00:00',5,'en','626104593','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Security Engineer','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','Because it is powering NixOS.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A9','','','','','','','','A2','A6','A4','','','','','','','','','','','','',NULL,'Guix.\r\nOr shell scripts...','A1','','','','Y','Y','','','','','','','','','','','','','','','','','builds.sr.ht','A1','A7','A2','A15','A14','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','True reproducibility, broader support of packages and services than Ansible.','Y','','Y','Y','','','','Reproducible','Declarative','','Add vulnerability information to derivations.','Guix.','Y','Y','','','','','','','','Y','','','Cross compilation for old devices.',''),(609,'1980-01-01 00:00:00',5,'en','1734900385','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A3','A1','','','','','','','','A2','A4','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A15','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','Reproducible configuration','','','','Arch Linux','Y','','','','','','','Y','','','','','',''),(610,NULL,1,'en','1983842608','A2','A6','male','','','','','','Y','Y','Y','','','Y','','Y','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(611,'1980-01-01 00:00:00',5,'en','2104567896','A2','A3','male','','Y','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Friend told me about that, and I was interested be NixOS and it\'s configuration using one config file. This the best way of managing servers','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','','Y','','','','A2','A10','A7','','','','','','','','A3','A8','A12','','','','','','','','','','','','',NULL,'containers, make','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','gitea actions','A2','A6','','','','','','','','','','','','','','','','','','','','A2','A6','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Better knowledge of nix language','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Because of my friend told me, and I like the way of managing servers','Y','','Y','Y','','','','Configuration of server in one file, truth of source','Reproducible server configuration ','Atomic update and rollbacks','','Ansible, containers ','Y','','','Y','','','','','','','sway','Home-manager','',''),(612,'1980-01-01 00:00:00',5,'en','788425417','A2','A3','male','','Y','','','','Y','Y','Y','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Devops simplification','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A1','A2','A8','','','','','','','','A3','A4','A8','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A6','A2','','','','','','','','','','','','','','','','','','','','A6','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','Y','','','','','','','','','Y','','','Y','','','','Y','','','','','',''),(613,'1980-01-01 00:00:00',5,'en','171773006','A4','A3','male','','Y','','','','','','','Y','','','','','','','','','Y','','','Y','','Y','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I got sick of configuring my machines over and over again without the assurance that I can revive my setup easily in case of of crisis..','','','','Y','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A6','A2','','','','','','','','A5','A4','A1','','','','','','','','','','','','',NULL,'Guix','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','A1','A7','A5','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Same story as with Nix','Y','','Y','','','','','Modules','The pure nix lib','','Improve all documentation infrastructure..','Guix','Y','','','','','','','Y','','','','direnv with \'use nix\'','','Best of luck in finding alternatives to the cache.nixos.org issue.'),(614,'1980-01-01 00:00:00',5,'en','931455174','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','A2','A7','A1','','','','','','','','A11','A8','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A1','A3','A2','','','','','','','','','','','','','','','','','','A15','A1','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','','','','','','- service plurality (more than one instance of a service)\r\n- explicit module imports for faster evaluations\r\n\r\n- get rid of all-packages.nix (that\'s nixpkgs, I know)','either horrible container monstrosities, or horrible ansible monstrosities','Y','','','','','Y','','','','','sway','nix-diff, kolloch/crate2nix, sops-nix, flake-parts, disko, direnv','lots of abandoned/half-baked 2nix \"solutions\", lorri','if the opencollective funds gain a more expensive purpose (full-time docs person, nixpkgs gardening) instead of just infra, the donations might grow to match demand (within limits). right now, there isn\'t much of a point in contributing (or if there is, it\'s very intransparent)'),(620,'1980-01-01 00:00:00',5,'en','1797269429','A2','A4','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Pure, reproducible package management and system configuration. The theory is clearly superior.','','','','','','Only use NixOS','Y','Y','','','','Y','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A9','A8','A5','','','','','','','','','','','','',NULL,'Arch Linux, maybe Guix','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A3','A4','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Lack of understanding of the Nixpkgs architecture. Lack of understanding of the Nix language and familiarity with functional concepts in general. Oops, bash! everywhere.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Superior theory for how to configure systems.','Y','','Y','','','Y','','Version-controlled system configuration','Version-controlled home profile management','Atomic upgrade/rollback','Make it _simpler_, somehow?','Arch Linux, maybe Guix.','Y','','','','','Y','','','Y','','','','',''),(616,NULL,1,'en','1642126898','A2','A3','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(617,NULL,1,'en','818266199','A7','A4','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(619,'1980-01-01 00:00:00',5,'en','213883462','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Used Gentoo, got burned by impurities during upgrades, decided to build own system with snapshots, isolated builds and reproducible upgrades. Found NixOS that does exactly that, using Nix for as much of package management as I can ever since.','Y','','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A6','A1','A2','','','','','','','','A10','A11','A2','','','','','','','','','','','','',NULL,'I\'d build build isolation and reproducibility system on top of Gentoo.','A7','','','','Y','Y','','','','','','','','Y','','Y','','','','Y','','','','A1','A9','A15','','','','','','','','','','','','','','','','','','','A15','A1','A9','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','Y',NULL,'I got disappointed in Linux on desktop in general, nothing NixOS-specific. I still find it great for servers though!','After staying in Apple ecosystem for a long time, I am sure switching back to Linux will be too painful. But that\'s not NixOS\'s fault.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://github.com/stephank/yarn-plugin-nixify - really like the approach of integrating into language ecosystem\'s package manager to generate necessary Nix bits instead of hacking around it\r\nhttps://github.com/LnL7/nix-darwin - nice to use for macOS system configuration','divnix/std (sneakily rebranded to paisano-nix) - had to use for work, never liked it at all. Chaotic development, no backwards compatibility, breaking flake conventions with poor replacements',''),(618,'1980-01-01 00:00:00',5,'en','1985477538','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I found the concept of describing the system in a central place interesting, so I tried it out and keep using it.','','','','','','','Y','','','','','','','','','','Y','','','','A2','A7','A1','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Not enough time for contribution','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I found the concept of describing the system in a central place interesting, so I tried it out and keep using it.','Y','','','','','','','Central point for configuring the system','Atomic rollback for recovering from mistakes','','','Arch Linux ','Y','','','','','','','','Y','','Hyprland','','',''),(621,'1980-01-01 00:00:00',5,'en','1508620795','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A few years ago I was using homebrew on Mac. A few co-workers started to use Nix as they got new Macs from work and were talking about it. The project sounded interesting and a few months later when I was leaving that company I thought it would be a good idea to give Nix a try on fresh hardware. The new company I was joining allowed us to work on our computer so I installed NixOS on my desktop. I never looked back :)\r\n\r\nI started using Nix because of its package management capabilities (I started with nix-env), gradually moved to configuring my system via configuration.nix and nix-channels and ended up managing all of my machines from a single flake repo.','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A6','A9','','','','','','','','A8','A1','A6','','','','','','','','','','','','',NULL,'First, I would shed a tear, second I\'d probably stick to homebrew on Mac and whatever package manager came bundled with the Linux distribution I was using','A7','','','','Y','','','','','','','','','','','','','','','Y','','','','A1','A15','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','It\'s intimidating. I submitted a patch once and I ended pointing the PR at the wrong branch which pinged a bunch of people that shouldn\'t have been notified. If I\'d find a bug directly in a package hosted on nixpkgs I\'d probably try to submit a patch but right now I prefer maintaining my own flakes for custom packages.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same story as before :)','Y','','Y','','','','Raspberry Pis','reproducible configs. I can take a config on one machine and move it to another one ','nixos generations','package availability','I\'d clean up the confusion that\'s nix-channels, nix-env, nix profile and nix flake. It\'s hard to explain to new joiners and even I don\'t understand how they relate to each other','probably Arch','Y','','','','','','','','Y','','','home-manager, nix-darwin, agenix','I don\'t think I\'ve abandoned anything so far','Keep up the good work :)'),(622,'1980-01-01 00:00:00',5,'en','1008672620','A2','A3','male','','Y','','','','Y','Y','','','','','','','Y','','','Y','Y','','','','Y','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'Hard liquor','A7','','','','Y','Y','','','','','','','','','','','Y','','','Y','','','','A13','A2','A15','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','Reproducible builds','Declarative builds','Shared builds across machines','Even better test support ','Arch linux ','Y','Y','','','','Y','','','','','Xmonad','home-manager, agenix','Hydra','Thanks for the survey, looking forward to the results.'),(623,'1980-01-01 00:00:00',5,'en','245796664','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was using macOS and found that using Docker to encapsulate and run databases for development was eating a lot of my memory and being very slow. I wanted a way to run multiple database versions and to launch them concurrently in a single shell window. So I used Nix to setup a version-controlled shell environment with all the tools I needed. I later switched to a Linux laptop where it seemed obvious to use NixOS. ','','','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A2','A1','A5','','','','','','','','A6','A8','A14','','','','','','','','','','','','',NULL,'Guix','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A20','A1','A5','','','','','','','','','','','','','','','','','','','A20','A5','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted to experiment with using Linux as a desktop for daily development work, and I wanted a system which I could break and easily revert changes to without having to remember what I changed. I don\'t have the patience to manually configure things. ','Y','Y','Y','Y','','','','Declarative configuration','Atomic deployments and rollbacks','Ease of configuring complex components (e.g. services.bluetooth.enable)','Automatic software upgrades which integrate with flakes. Support for application isolation (e.g. installing flatpak applications). Secure boot. ','Guix','Y','','','','','','','','','','Sway','flake-utils, home-manager, emacs-overlay, jkxyz/uno','NixOps, morph','I think that search.nixos.org is a great documentation interface and it should be placed front and center. It could be improved by integrating examples of common package overrides, or configuration setups, which are community-curated in the style of clojuredocs.org. \r\n\r\nNixOS has the potential to be the most user-friendly Linux distribution. '),(624,NULL,1,'en','570046862','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(625,NULL,1,'en','351666786','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(626,'1980-01-01 00:00:00',5,'en','1618956478','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I started using Nix to configure NixOS','Y','Y','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A6','','','','','','','','A3','A5','A8','','','','','','','','','','','','',NULL,'Poetry for Python packaging, Docker','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','A9','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Lack of time, but I contribute to Nix community otherwise: I maintain a flake library and try to contribute to other flakes when I can (jupyenv, poetry2nix).','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Being interested in functional programming, having a troubled Arch install and a month of time before the 1st year of Bachelor degree (that was 2020), I installed and configured a flake NixOS setup using @balsoft\'s configuration and the help of NixOS telegram chat (I\'m Russian). One year after that, I made a flake library, base16.nix, which is now a foundation of a ~popular Stylix library (200 stars xD). One year ago I\'ve also installed Nix on my gf\'s M1 Mac, to share my JupyterLab and LaTeX flake (we study at the same uni program).','Y','','','','','','','Very easy to configure / install anything on my laptop ','Configuration is declarative','','Faster build & switch times, other wishes are more Nixpkgs focused: more packages, better Python and Linux/M1 Mac compatability.','Arch','Y','','','','','','','','','','Hyprland','home-manager\r\nflake-parts\r\npoetry2nix\r\njupyEnv\r\nbase16.nix','',''),(628,'1980-01-01 00:00:00',5,'en','1101478570','A2','A3','male','','','','','','','Y','','Y','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','For the benefits of nix-env, mainly installing recent versions of tools on old distros like Ubuntu LTS and having a reliable and quick way to install tools I use often in any distro.','Y','Y','','','','','Y','','','','','','','Y','Y','','','','','','A1','A2','A3','','','','','','','','A4','A8','A12','','','','','','','','','','','','',NULL,'A horrendous mix of shell scripts and notes in Markdown files.','A6','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A2','A15','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I have already done so in the past, one or two package updates I think, and want to get involved again. Already started reading the contributing docs.','N','N','More free time 😅 I really want to get into it for managing my self-hosted services.\r\nI\'m also considering hopping to it from Manjaro on my main Linux Worstation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Thank you fir all your work! I really want to start contributing more. I\'m reading the thesis right now and it\'s amazing, it seems like if flakes can get stabilized and the UX -especially errors - improves sufficiently, nix will be the future of software deployment!'),(629,'1980-01-01 00:00:00',5,'en','971761797','A2','A2','male','','','','','','','Y','','','','Y','','','','','','','Y','','','Y','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','reproducibility, functional paradigma, declarative configuration of everything','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A2','A1','A10','','','','','','','','A8','A4','A14','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A5','A6','A4','A2','A3','A13','','','','','','','','','','','','','','','','A4','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','learning the language, grasping how to write packages','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','','','','','arch','Y','','','','','','','','','','i3','','',''),(630,'1980-01-01 00:00:00',5,'en','1542794565','A2','A2','male','','','','','','','','Y','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A1','I use NixOS, so it\'s a bit rare to use Nix outside NixOS. It\'s always good to have a cross-distro package manager with a massive repository that is good for both GUI and CLI software that isn\'t Flatpak or Snap','','Y','','','','','Y','','','','','','','Y','','','','','','','A1','A6','A5','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'Native package manager and Flatpak (which I already use)','A2','','','','','Y','','','','','','','','','','','','','','','','','','A7','A9','A15','A4','A17','','','','','','','','','','','','','','','','','A7','A9','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'m new to NixOS and Nix (a few months of experience), so I don\'t know how to package software yet for nixpkgs','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','As a lover of Debian testing, Arch, etc (base distros specifically) I found out about NixOS on Youtube and I knew I had to give it a try. Once i found out about the magic of NixOS, I immediately loved it.\r\nHere\'s what I like about NixOS:\r\n\r\nDeclarative and reproducible configuration of your system\r\n. A distro with a massive package repository and both a stable and unstable channel\r\n. Temporary isolated package installation with nix-shell\r\n. Nix generations are pretty cool for system safety\r\n. The installation method is flexible because there\'s both a manual CLI installation and a live image with Calamares, but both can give you the same system setup due to the declarative nature\r\n. The base system install is quite minimal, that\'s a cool alternative to Arch and Void\'s minimalism\r\n. The Linux kernel has multiple versions in the repository! Some other packages do too, such as ffmpeg and Ruby!\r\n\r\nAnd of course the most important aspect:\r\n. Nice logo','Y','','Y','','','','','Declarative and reproducible nature and configuration.nix','Massive repository with both stable and unstable channels with multiple Linux kernels and multiple versions of certain other software like Ruby and ffmpeg','Very flexible: minimal install setup, and both Calamares and manual CLI installation available','. Add an official open source alternative to steam-run and appimage-run made by the NixOS team\r\n. Improve the documentation, especially documentation for packaging software yourself or patching it','Debian testing, Arch, possibly Void, OpenSUSE and Fedora','Y','','','','','','','','Y','','Cinnamon','','',''),(631,NULL,2,'en','1432093178','A4','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was using Arch beforehand. I tried to create a script that will reproduce my system configuration and then I found nixos had already solved that problem. ','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A3','A4','','','','','','','','','','','','',NULL,'Arch','A4','','','','Y','','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(632,'1980-01-01 00:00:00',5,'en','2058499727','A2','A3','male','','','','','','Y','Y','','','Y','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','Y','','','','','Y','','','','','','','Y','Y','Y','','','','','A2','A8','A6','','','','','','','','A13','A8','A6','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(633,'1980-01-01 00:00:00',5,'en','688001920','A2','A3','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Was frustrated with Arch linux, but Ubuntu felt too complex when trying to organise anything. NixOS gave me peace of mind because of rollbacks.','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A2','A7','A5','','','','','','','','A8','A11','A2','','','','','','','','','','','','',NULL,'Probably Ubuntu, but I never would have went this deeply into open source.','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A13','A24','A2','A1','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','See my Nix answer','Y','','Y','Y','','','','Declarative system management','Module system with assertions','High reproducibility','Remove the scriptey networking system in favor of systemd-networkd','Probably Ubuntu','','','','','','Y','','','','','Sway','home-manager\r\nnixos-hardware\r\nnixos-mailserver\r\nagenix\r\ncrate2nix','Nixops\r\ncarnix',''),(634,NULL,1,'en','1692206548','','A2','-oth-','Non-binary','Y','Y','','','Y','','','','Y','Y','Y','Y','Y','','Y','Y','','','','Y','','Y','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(635,'1980-01-01 00:00:00',5,'en','329396827','A5','A4','male','','','','','','Y','Y','','','','Y','','','','','Y','Y','','','','','Y','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','When the startup that Graham Christensen was working at imploded and laid him off, I hired him for a small contract gig to demo Nix and port one of our work systems to use it. ','Y','Y','','','','','Y','','Y','','','','','Y','Y','','','','','','A2','A3','A1','','','','','','','','A5','A13','A4','','','','','','','','','','','','',NULL,'Custom per project','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A7','A5','A1','A15','A25','','','','','','','','','','','','','','','','','A7','A5','','','','','','','','','','','','','','','','','','','','','','','I don’t and would like better docs for this','A2','','Docs on the process. Introductions to maintainers. ','N','N','We are evaluating it for our prod systems',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Bundix, Fenix','flake-utils ',''),(636,'1980-01-01 00:00:00',5,'en','774129755','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','Y','Y','','Y','','Y','','','','','Y','Y','Y','Y','','','','A2','A1','','','','','','','','','A10','A5','A14','','','','','','','','','','','','',NULL,'','A1','','','','','','','','','','','','','','','','','Y','','','','','','A13','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','A1','','Tried once with a PR, went through numerous nitpickings from PR reviewers, at the end someone else with merge rights pushed their own package instead of improving mine, so I just abandoned any effort.','N','N','Really, do not know. I do not have any tasks that would require full NixOS instead of a \"Linux Distro + nix\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'HomeManager is a blast, I highly recommend it to all linux users.','',''),(637,'1980-01-01 00:00:00',5,'en','781738657','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I transitioned to a Linux desktop as a primary environment after strongly disliking the Windows 11 ecosystem. After using Arch Linux as a desktop and Ubuntu as a server, I learned about NixOS from the Linux Unplugged podcast. I\'m a big fan of declarative systems like terraform, so I hopped into NixOS and found it fit well with my needs. My server and dekstop environments were transitioned over.','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A8','','','','','','','','A8','A2','A6','','','','','','','','','','','','',NULL,'I guess dpkg or pacman.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','AWS CodeBuild','A1','A2','A15','A5','','','','','','','','','','','','','','','','','','A1','A6','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','Declarative system definitions','Up-to-date packages','Extensible system configuration (flakes)','The \"re\"-install process, for someone who has an existing NixOS definition (in a flake, in a git repo) that they want to use, is painful. It would be nice to document/support how to do that well in the manual.\r\n','Arch Linux','Y','','','','','','','','Y','','','','',''),(638,'1980-01-01 00:00:00',5,'en','452161765','A2','A4','male','','','Y','Y','','Y','Y','','','Y','Y','','','','','Y','Y','Y','','Y','','Y','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was interested in the declarative and pure configuration.','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'I used Debian and Ansible. Maybe Guix, but it wouldn\'t exist without Nix.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','done,woodpecker,gitea actions','A9','A1','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I have sent a PR, nobody has reviewed it','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was interested in the declarative and pure configuration.','Y','Y','Y','Y','','','','declarative configuration','simultaneous install of different versions','package availability','More polish, especially documentation','Debian and ansible, as before, or maybe Guix, but it wouldn\'t exist without Nix.','Y','','','','','','','','','','xorg + notion','','','thank you!'),(639,'1980-01-01 00:00:00',5,'en','1150834398','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Home manager is irreplaceable','Y','','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A6','A2','','','','','','','','A8','A14','A4','','','','','','','','','','','','',NULL,'Chezmoi for dotfiles, homebrew for pkg management','A1','','','','Y','','','','','','','','','','','','','','','','','','','A9','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','N','N','If i had to use linux',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(640,'1980-01-01 00:00:00',5,'en','454717496','A5','A1','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','My dad recommended NixOS, so I installed it, and it has been great!','','','','','','','Y','','','','','','','','','','Y','','','','A1','A6','','','','','','','','','A14','A5','A3','','','','','','','','','','','','',NULL,'Pop!_OS or Linux Mint, maybe Vanilla OS','A2','','','','Y','','','','','','','','','','','','','','','','','','','A13','A2','A17','A3','','','','','','','','','','','','','','','','','','A13','A17','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I don’t know how, trying to figure out how though!','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','My dad recommend it, and I was having issues with Pop!_os so I switched.','Y','','','','','','','Ease of installing packages','Being able to define my system from one file','Flakes','I would add a dedicated update command where it would update cercian system packages to a specific channel. ie. nixos-update ','Vanilla OS','Y','Y','','','','','','','','','Xmonad','Home Mannager','','I love NixOS! Keep up the good work!'),(641,'1980-01-01 00:00:00',5,'en','298521730','A3','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I was looking for an alternative to arch linux package manager, nix offers pretty much everything pacman has and more because i can save my whole configuration in a file and even break it down into modules which is amazing. Nix works really well for me.','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A1','A7','A2','','','','','','','','A5','A14','A3','','','','','','','','','','','','',NULL,'I would probably use pacman or look for another declarative option like gnu guix.','A2','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A2','A3','A1','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don\'t feel qualified enough to contribute there yet, maybe one day.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','The idea of making a declarative configuration caught my attention, also the rollbacks out of the box are a life-saver. Especially because I have a nvidia gpu card, I\'ve had so many problems on other linux distributions because of the drivers, which didn\'t happen with NixOS.','Y','','','','','','','Declarative configuration','Nix flakes','Packaging','Honestly i think NixOS is on a pretty good path but if I could change something, that would be it\'s documentation. It was really hard to understand how things work at first because the documentation seems outdated. Improving it and providing learning resources would help new users switch to NixOS, I\'m 100% sure most people don\'t switch because they don\'t understand what\'s happening, I\'m saying this from experience.','I would probably stay on Arch linux or try GNU Guix.','Y','','','','','','','','','','Hyprland','','',''),(642,'1980-01-01 00:00:00',5,'en','1149049502','A2','A4','male','','Y','Y','','','Y','Y','','','','','','','','','','','Y','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','A7','A2','A1','','','','','','','','A8','A9','A3','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A13','A2','A1','A5','A4','A10','A21','','','','','','','','','','','','','','A5','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','','','','','Probably Guix, or still Debian?','Y','','','','','Y','','','','','xmonad','nix-index, comma, sops-nix, home-manager, flake-utils-plus','',''),(643,'1980-01-01 00:00:00',5,'en','1839020284','A5','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Heard about its benefits online, was tired of re-installing operating systems.','','','','','','','Y','','','','','','','Y','Y','','','','','','A2','A7','A3','','','','','','','','A15','A12','A6','','','','','','','','','','','','','nix-modules from the nixcon talk \"Nix modules: Improving Nix\'s discoverability and usability\"','Gentoo and docker','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Slow PR approval and even slower RFC process for anything significant I\'d add','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Tried of re-installing operating systems, wanted nix','Y','','','','','','','Reproducible environment','','','Add secure boot support, fix Plymouth password prompts.','Gentoo and docker','','','','','','','','','','','Sway','Impermanence, home-manager','',''),(644,'1980-01-01 00:00:00',5,'en','2052179612','A2','A4','male','','','Y','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A3','A1','','','','','','','','','A5','A9','A8','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(645,'1980-01-01 00:00:00',5,'en','270919094','A3','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My current employer already used it to manage their development environments. After learning it, I began using it for my personal projects as well in that capacity and then started managing my personal machines using home-manager.','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A3','A1','','','','','','','','A8','A4','A14','','','','','','','','','','','','',NULL,'Ansible/Chef and lots of dockerfiles.','A1','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','A13','A25','A1','A2','A15','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Time availability and a greater understanding of the ecosystem.','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(646,'1980-01-01 00:00:00',5,'en','2021329945','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was looking for a way to reproducably declare my setup in general for my personal and work systems. Then I tempered nix and it looked promising.','Y','Y','','','','','Y','Y','','','','','','Y','Y','','','','Y','','A2','A3','A7','','','','','','','','A5','A6','A9','','','','','','','','','','','','',NULL,'I was using toolbox which allows creating adhoc containers with access to home directory. ','A4','','','','','','','','','','','','','','','','','','','','','','','A5','A11','A15','A19','A14','A7','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','','N','N','I will try NixOS when I have time to change my personal OS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(647,'1980-01-01 00:00:00',5,'en','1288352454','A2','A5','male','','Y','','','','','','','','','','','','','','','','Y','','','','','','','inventor','','','Y','','','','N','N','','','','Y','I wanted a souce based distribution, that was easyer to upgrade then gentoo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I just tool you, but here I will repeat.\r\nI want a source based distribution that is easier to upgrade than Gentoo.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Non, I am currently, trying NixOs. I usually use Gentoo, but that is stated to feel old.','non',''),(648,NULL,2,'en','120707520','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(649,'1980-01-01 00:00:00',5,'en','409232802','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A7','A1','','','','','','','','A14','A8','A10','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I heard from a friend of mine and I liked the idea of a whole declarative system.','Y','','','','','','','Declarative','','','better documentation\r\nstable flakes','arch linux','','','','','','','','Y','','','','','',''),(650,NULL,1,'en','934112768','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','SecOps','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(651,'1980-01-01 00:00:00',5,'en','118061944','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Started using it for NixOps several years ago, and then more recently NixOS took over my desktop.','','','','','Y','','Y','Y','','','','','','','Y','Y','Y','','Y','','A10','A7','A3','','','','','','','','A12','A6','A15','','','','','','','','','','','','',NULL,'For devops, probably Terraform, but when I chose NixOps I didn\'t look back so who knows what I\'d pick today.\r\nFor desktop, I switched from Arch Linux.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A3','A2','A15','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Got sick of maintaining my personal repository of package patches and ad-hoc infrastructure for applying them when I upgraded my distro. NixOS lets me customize what I want in a modular and declarative way, which is awesome.','Y','','Y','','','','','Easily overriding packages','Rollbacks','Single place to go for configuration','Improving support for programs that expect things in places that NixOS doesn\'t put them.','Arch Linux','Y','Y','','','','','','Y','','','','Home-manager. It\'s great and should be a first-class part of NixOS.','I am this close to giving up on flakes. They are so heavyweight for humble use cases and it\'s constantly unclear to me when I encounter a frustration whether this is an intended part of the design or a temporary drawback to be tolerated until things stabilize. And this is coming from someone who thought all the fuss about the Nix learning curve was much exaggerated. I can\'t help but feel something much simpler, like a design just for pinning channels, could have occupied this niche and been polished and adopted much faster. If the community took a hard turn in that direction, I would be delighted (but I\'m not holding my breath).','Nixpkgs, specifically, has an enormous ongoing human maintenance cost, and the only sustainable way out of that hole is investing in automation infrastructure. Central pieces of the existing automation infrastructure seem critically undermaintained, to the point where not only are the maintainers not actively improving on them, but contributions from non-maintainers are being ignored. This is, in my estimation, the single biggest long-term threat to the Nix ecosystem, and it deserves far more attention than I think it is getting. If automation can\'t grow as Nixpkgs does, it will eventually collapse under its own weight, even if it continues to attract human contributors.'),(652,'1980-01-01 00:00:00',5,'en','1496008859','A5','A3','male','','Y','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I wanted to use home-manager for it\'s reproducible developer environments.','','Y','','Y','','','Y','Y','','','','','','Y','','','Y','','','','A2','A7','A3','','','','','','','','A8','A14','A9','','','','','','','','','','','','',NULL,'Docker and tools like poetry & virtualenv for python. I\'m not aware of other tools that provide the same functionality as home-manager.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A21','A15','','','','','','','','','','','','','','','','','','','A2','A21','A25','','','','','','','','','','','','','','','','','','','','Y','','','A2','','The knowledge to do it right or the use-case.','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','For experimentation. I wanted to try a NixOS dual-boot on a surface pro 4.','Y','','Y','','','','','Reproducible builds.','All setup & build steps are in version control, so I never have to remember how to get something working on a new install.','nix shell & nix run.','Overall CLI & community stability. I use flakes almost exclusively, but would switch to vanilla nix if the community decided it was the best way forward. It\'s maybe a bit confusing when there are 2 different ways of doing things.','A debian based OS.','Y','','','','','','','Y','','','Hyprland','devenv, poetry2nix','','I\'ve really enjoyed the past 6 months with nix. A few issues that could be resolved, but overall a very positive experience. Thanks everyone!'),(653,'1980-01-01 00:00:00',5,'en','210470370','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','','','','','','','','Y','Y','','','','','','Y','Y','','Y','','Y','','A1','A2','A7','','','','','','','','A14','A7','A5','','','','','','','','','','','','',NULL,'Fedora Kinoite','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A5','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(654,'1980-01-01 00:00:00',5,'en','987937533','A5','A5','male','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A1','Arch user, fascinated with being able to script a build and reproduce across machines and periods of time.','','Y','','','','','Y','','','','','','','','','Y','','','','','A1','A10','A7','','','','','','','','A13','A14','A4','','','','','','','','','','','','',NULL,'Clear Linux or Fedora Silver Blue','A1','','','','Y','Y','','','','','','Y','','','','Y','','','','','','','','A2','A17','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Lack of knowledge','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','Arch user who wanted a reproducible scripted system. I hated having to rebuild my arch system time and again, some packages that existed before didn\'t or got renamed and merged without notification, so the build would fail or the packages I needed would have to be searched. NixOs promised to make that process easier. The only issue was with learning the Nix programming language and interacting with programming libs.','Y','','','','','','','Reproducibility','Community','NUR','Easier way at setting systemD processes on inital boot. Better documentation for optimization of CPU arch. It\'s clear NixOs is targeted at servers, but it would be great to have a section dedicated for workstations/laptops configurations.','Clear Linux or Fedora Silver Blue','Y','','','','','','','','','','Hyprland','I\'m a beginner, but Neovim and VSCode are a must use for me. I find myself using Lua, Node, and Python quite a bit and have run into some issues with interating with the libs.','','I love the concept. Excited to get into it more and eventually replacing my Arch instance with NixOs completely.'),(655,'1980-01-01 00:00:00',5,'en','1599834311','A5','A5','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','Engineering manager','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Desired a declarative system for server management. Now running my personal laptop using NixOS. Use at work for dev tooling (Mac OS via devenv.sh)','Y','','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A3','','','','','','','','A14','A8','A5','','','','','','','','','','','','',NULL,'Arch (came from Arch)','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A7','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','Declarative/repeatable configuration','nix develop','','Probably Nix the language','Arch','Y','','','','','','','','','','Cinnamon','devenv','',''),(656,'1980-01-01 00:00:00',5,'en','726108227','A5','A2','male','','','','','','','','','','','','','','','Y','','','Y','','','Y','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I really like the idea of a declarative system, which would allow me to rebuild my entire system with relative ease if necessary. The notion of having to rebuild a system from scratch (previously used Arch Linux) was daunting, and having Nix as a safety net (i.e. how can I quickly rebuild my system the way I want it if my hard drive breaks or my laptop is stolen, etc..) is the reason I like NixOS. It\'s also really nice to not have to worry about an update breaking my system, since I can just rollback. This has been especially true for my Emacs configuration, since before, updates would often break my Emacs config, and since Emacs is such an integral part of my workflow, I was always wary of updates. Now, it doesn\'t matter, since I can rollback if I need to get work done, or fix the breaking changes in my config if I don\'t need to get work done!','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A2','A7','A1','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'I would still be using Arch Linux, since Arch is very customizable (like NixOS) and I have a very opinionated system/workflow.','','','','','Y','','','','','','','','','','','','','','','','','','','A25','A2','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I feel like I have barely scratched the surface with understanding Nix as a language, and only have the bare minimum knowledge to write a working system configuration with flakes.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I started using NixOS because I like to have a declarative system configuration and like the ability to rollback in case an update breaks something!','Y','','','','','','','Declarative configuration','Atomic upgrades and rollbacks','','I would want a NixOS wiki on par with the Arch Wiki. Coming from Arch, I find NixOS to be lacking in documentation.','I would still be using Arch Linux.','Y','','','','','','','','','','XMonad','Home manager (very important to my setup)','',''),(657,'1980-01-01 00:00:00',5,'en','971319532','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','by extension of using NixOS','','','','','','','Y','Y','','','','','','Y','','','Y','','','','A7','A2','A1','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'custom bash scripts','A4','','','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','personal time outside of work :(','Y',NULL,NULL,NULL,NULL,'A1','','Y','','peronal travel laptop','A1','I was watching an old DJWare video, and became interested in a OS that was configured, by a config file. Prior I was using Alpine as my personal daily driver, and it is great, however the ability to replicate configs in a single file is what converted.\r\nhttps://www.youtube.com/watch?v=jJg1HI4gLXs','Y','','Y','','','','','reversible changes','package/option depth, and width','user environment isolation for testing','A option in the GUI install to modify the configuration.nix, or an option to import a configuration.nix from some source, git, nfs, etc...','Alpine Linux','Y','','','','','','','Y','Y','Y','CLI','At this point I am only using NixOS on a few machines, and am working to convert one of my home servers','','While the manual is very helpful, I do think the documentation needs some work. For example, there are a number of packages that can be installed, however the correct way to use them, is via an option to enable it. If there was a note one a package that there are option requires, that would be nice. However with that example, it might be a requirement for package maintainers.'),(658,NULL,NULL,'en','1121907795',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(659,'1980-01-01 00:00:00',5,'en','1820803541','A2','A2','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A2','because its used at the company i work for','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A4','A11','','','','','','','','','','','','',NULL,'LANGUAGE SPECIFIC BUILD TOOLS for development and DOCKER for deployment','A1','','','','Y','Y','','','','','','','','','','','Y','','','','','','','A13','A1','','','','','','','','','','','','','','','','','','','','A1','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Laziness/time involvement\r\n&\r\nI define packages as flakes','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A1','I wanted to declare my computer configuration once, for good. It seems easiest to do with nixos. Other than that I hope for the experience to not be much different from other linuxes and I have no attachment to the previous distribution (manjaro) that I used.','Y','','','','','','','Declarative configuration of system services (systemd, audio, desktop)','','','','For configuration: git tracked configs, (ala https://www.atlassian.com/git/tutorials/dotfiles)\r\nFor OS: some arch distribution with an installer','','','','','','','','Y','','','','home-manager, nix-melt','npmlock2nix, node2nix',''),(660,'1980-01-01 00:00:00',5,'en','1377197943','A2','A6','male','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Discovered nixos a year ago, installed it on my new computer and never regret it.','','','','','','','Y','','','','','','','Y','Y','','Y','','','','A3','A7','A1','','','','','','','','A6','A14','','','','','','','','','','','','','',NULL,'Fedora silverblue','A4','','','','','','','','','','','','','','','','','','','','','','','A10','A1','','','','','','','','','','','','','','','','','','','','A10','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Not yet skilled enough with nix language','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','Y','','','','reproductibility','','','','','Y','','','','','','','Y','','','','','',''),(661,'1980-01-01 00:00:00',5,'en','1094243216','A5','A2','male','','','','','','','','Y','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','','','','','Y','Y','','','Y','','','Y','','Y','Y','','Y','','A1','A9','A7','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A4','A2','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','Y','','','','','','','','Y','','','','','','','Y','','','','','',''),(662,NULL,1,'en','2029429728','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(663,NULL,1,'en','1353404098','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(664,'1980-01-01 00:00:00',5,'en','1016141347','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','','','','','','Y','','Y','','Y','','A10','A1','A2','','','','','','','','A6','A3','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A13','A1','','','','','','','','','','','','','','','','','','','A7','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','Holistic configuration','Stability of the stable channel','Ability to mix-and-match from unstable','Magically fix the icons ecosystem in gnome and provide default icons if no set is installed.\r\n\"nixos-rebuild switch with kexec\"','Arch Linux','Y','','','','','','','','Y','','','regular: home-manager, nixos-shell, terranix, sops-nix, disko, nixos-hardware, nix-direnv','NUR','Awesome work, thank you'),(665,'1980-01-01 00:00:00',5,'en','769088771','A2','','male','','','','','','Y','','Y','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','Y','','','','Y','Y','','Y','','','','A2','A7','A1','','','','','','','','A4','A5','A2','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','atomic upgrades, rollback','declarative configuration','','throw away the nix language and create something more sane, typesafe and not necessarily functional','','Y','Y','','','','','','','','','sway','home-manager','',''),(666,'1980-01-01 00:00:00',5,'en','1936322434','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','Mitchell hashimoto keeps saying it is awesome, and it is! watching \"what nix can do\" talk by Matthew sold me 100%','','Y','','Y','','','Y','','','','','','','','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A6','A8','A3','','','','','','','','','','','','',NULL,'maybe wolfios ','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A1','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','have not yet found something I use that is not yet packaged, otherwise I would ','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','wanted to try it on my personal laptop','Y','','','','','','','config in code ','easy to recreate system','','a better way to browse configuration options, with examples','fedora','Y','','','','','','','Y','','','','','',''),(667,NULL,1,'en','474147410','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(668,'1980-01-01 00:00:00',5,'en','1751138189','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I have been using Arch Linux on 4-5 personal systems for over 10 years (laptops, desktops, servers, routers, etc.). In the long run, it was a lot of work to maintain these many very heterogeneous installations. I have tried to change this. First with ansible, then with puppet. I wasn\'t that happy with any of them. Nix with flakes, however, hit the sweet spot of how I can administrate a few private systems declaratively from a central git repo.','','Y','','','','','Y','Y','','','','','Router','','Y','Y','Y','','','','A2','A10','','','','','','','','','A8','A14','A13','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A3','A4','A15','A18','A25','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I have no interest in participating in projects that use github unless necessary.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I have been using Arch Linux on 4-5 personal systems for over 10 years (laptops, desktops, servers, routers, etc.). In the long run, it was a lot of work to maintain these many very heterogeneous installations. I have tried to change this. First with ansible, then with puppet. I wasn\'t that happy with any of them. Nix with flakes, however, hit the sweet spot of how I can administrate a few private systems declaratively from a central git repo.','Y','','Y','','','','Router','Declarative configuration of an environment/system','A useful functional language that is not so complicated to learn','The ease with which I can augment the system from the outside, be it by extending the module system for myself or by modifying packages or even writing my own.','','Arch Linux.','','','','Y','','','','','','','Herbstluftwm','','','Thanks for nix/nixos.'),(669,'1980-01-01 00:00:00',5,'en','244466513','A2','A2','male','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','','','','','','Y','','','','','','','','Y','Y','Y','','Y','','A3','A2','A1','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'','A1','','Y','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A15','A25','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','declarative system config','bootstrapping new installs with same config','','TYPE SYSTEM FOR NIX','','Y','','','','','','','','','','Hyprland','nil\r\nnixd\r\n','rnix-lsp\r\n',''),(670,'1980-01-01 00:00:00',5,'en','346748974','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Main reason is a config files system - can easily tell when something was changed by me and reverse if needed','','','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A7','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'probably debian','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A5','A15','A1','A9','','','','','','','','','','','','','','','','','','A5','A15','A9','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Not really understanding how that works','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','','','','','','',' .nix files contain all information about system -> could easily see what was changed from earlier version','Package availability and configurability','Rollbacks','add more and better documentation','debian ','Y','','','','','','','','','','Hyprland','','',''),(671,'1980-01-01 00:00:00',5,'en','835535385','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','','Y','','','iOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I’d used Ubuntu from its beginning, but I find the immutability of Nix appealing. I’m tired of the looming complexity that grows out of unmanaged state. It might sound counterintuitive but I find simplicity in Nix.','','','','','','','Y','','','','','','','','Y','','Y','','','','A1','A3','A10','','','','','','','','A12','A6','A8','','','','','','','','','','','','',NULL,'Containers on Fedora SilverBlue','A4','','','','','','','','','','','','','','','','','','','','','','','A1','A15','A7','A2','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Nothing; I do contribute. You only let me pick one answer above.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','See my answer for Nix. I’m using Nix only as a consequence of using NixOS. You asked about Nix first so I gave you the NixOS answer there.','Y','','','','','','','Avoiding mutable state','Ease of overriding packages','Ease of using ad hoc development environments','Application sandboxing','Fedora SilverBlue','Y','','','','','','','Y','','','','Community forum, Matrix space, popular third-party channels such as nixos-hardware, Rust overlays, community vscode-extensions, feedback about the documentation and learning resources','',''),(672,'1980-01-01 00:00:00',5,'en','851136511','A5','A5','male','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','Y','','Y','','','Y','Y','','','','','','Y','','','Y','','','','A7','A1','A2','','','','','','','','A6','A14','A10','','','','','','','','','','','','',NULL,'','A3','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','Y','','','','','','','','','','','','','','','','','','','','Hyprland','','',''),(673,'1980-01-01 00:00:00',5,'en','608351196','','A2','-oth-','Non-binary','','Y','Y','','Y','Y','','','','','','Y','Y','','Y','Y','Y','','','','','Y','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A3','I\"m so high because Jan Misali','Y','','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A1','A3','A6','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'EndeavorOS','A2','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','Y','Y','Y','','','','A20','A24','A15','A13','A14','A12','A22','A26','A23','A17','A19','A11','A2','A5','A6','A18','A7','A9','A8','A10','A4','A13','A20','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I\'m scared.','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','i\'m so high because Jan Misali','Y','Y','Y','Y','','','','Flakes','Packages','Jan Misali','Improve the configuration lang to make it into a scheme like Gnu/Guix','Maybe Gnu/Guix but likely Endeavor ','Y','Y','','Y','','','','Y','Y','','Hyprland/AwesomeWM','','Channels','Jan Misali.'),(674,'1980-01-01 00:00:00',5,'en','1191238289','A5','A2','male','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was sick and tired of not understanding the state of my Ubuntu machine and so I decided to use NixOS for it\'s declarative nature and stability. ','Y','','','','','','Y','','','','Y','','','Y','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'I probably would use containers to keep everything isolated and declarative.','A1','Y','','','Y','Y','','','','','','','','','','Y','','','','','','','','A2','A11','A3','A5','A13','A25','','','','','','','','','','','','','','','','A2','A11','A22','','','','','','','','','','','','','','','','','','','','Y','','','A2','','The contribution document is long as hell and it looks very tedious to submit to nixpkgs. I\'m also afraid I\'ll get yelled at.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','','','','','','Declarativeness','Not having to interface with systemd directly','Full integration with nix','A fully integrated backup system and home-manager built in (not too big of a deal).','Ubuntu','','Y','','','','','','','','','sway','','poetry2nix. Poetry is fine on its own, nix is fine on its own. Both of these together make for very hard to debug issues.',''),(675,'1980-01-01 00:00:00',5,'en','715092431','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A7','I want to create replicable environments on all my laptops.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A10','A9','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'apt, snap, stow','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','lack of experience','N','N','more free time to try it out :)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Keep up the good work :)'),(676,'1980-01-01 00:00:00',5,'en','551303047','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My broken work laptop had to go to repair repeatedly, and they erased the system every time. NixOS helped me to set up a working system quickly. Later I started using nix shells for dev environments.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A3','A1','','','','','','','','A4','A6','A14','','','','','','','','','','','','',NULL,'Bundles and bundles oft shell scripts and dot files.','A1','','','Y','Y','','','','','','','','Y','','','','','','','','','','','A1','A20','A13','A25','','','','','','','','','','','','','','','','','','A20','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Lack oft time. I contribute if I stumble upon sth.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Needed to repeatedly set up my laptop after repairs.','Y','','','','','','','Configure my system from a single source oft truth','Rollback','Big package repo','Pinpoint versions of individual packages by just adding a version number','Tougj choice... Something from Arch and lits oft backups?','Y','Y','','','','','','','Y','','Xmonad','','',''),(677,'1980-01-01 00:00:00',5,'en','758739566','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I was aware of Nix because of recommendations by various Haskeller programmers. At my previous job, we deployed to Linux while development was split between Linux and MacOS users. I was immensely frustrated with the unreliability of the Python and Docker ecosystems, and trialed Nix to solve my issues. From there, I went on to use NixOS for my development laptop and MacOS with Home-Manager for my non-development laptop. ','Y','','','','','','Y','','Y','Y','','','','','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'MacOS','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A2','A1','A8','','','','','','','','','','','','','','','','','','A8','A2','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Knowledge','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','I started using Nix on MacOS and ran into endless problems. I bought a framework laptop to run NixOS on for developing personal projects and to better understand Nix and Linux as a whole. Now I use that and my original Mac w/ Home-Manager, and have a better understanding of the whole ecosystem.','Y','','','','','','','Declarative System Configuration (under version control)','Ad-Hoc Environments','Reliable and Available Packages','Basically make it like SnowflakeOS with a beginner-friendly GUI so I can recommend it to newcomers and colleagues.','MacOS','Y','','','','','','','Y','','','','Home-Manager','- Nix-Darwin - I like my current workflow and would re-incorporate it if i could use it as a module to Home-Manager or NixOS\r\n- haskell.nix - never works for me\r\n- anything with npm doesn\'t work for me',''),(678,'1980-01-01 00:00:00',5,'en','515613113','A1','A2','male','','Y','Y','','','Y','Y','Y','Y','Y','Y','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','Y','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','','A2','A7','A8','','','','','','','','A1','A11','A6','','','','','','','','','','','','',NULL,'','A2','','','Y','Y','Y','','','','','','','','','','Y','','Y','','Y','','','','A15','A1','A6','A5','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','Y','Y','Y','','Y','','Atomic updates','Multiple package versioning','Declarative systems','','Silverblue','Y','Y','','','','','','','Y','','','Dream2nix','All the secret management flakes, theyre too finicky',''),(679,NULL,2,'en','116781580','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A5','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(680,NULL,NULL,'en','1831202861',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(681,'1980-01-01 00:00:00',5,'en','1233115180','A2','A4','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Nix style package management just makes sense.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A3','A7','A10','','','','','','','','A13','A8','','','','','','','','','','','','','',NULL,'Guix? Perhaps more likely a ton of stateful scripts on top of Arch Linux.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A3','A14','','','','','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Arch systems just degrade over time and I needed something more manageable.','Y','','Y','','','','','Infinite rollback','configuration.nix ','Ephemeral nix shells','- add a type system to Nix (a. k. a. issue #14)\r\n- easy incremental builds for custom (Git) kernels','','Y','','','','','','','','','','awesomewm','patchelf\r\n\r\nI find myself using it everywhere.','','Keep up the good work and sorry I no longer contribute as much as I would like to.'),(682,NULL,2,'en','854581111','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I wanted to try NixOS, so I used Nix on Alpine Linux to build an ISO for a Raspberry Pi 4.\r\nSince then, I\'m using Nix exclusively on NixOS.\r\n\r\nI was initially a bit put off by the immense RAM usage by `nix-env -qa`, but I simply stopped using `nix-env` once I figured I could use flakes instead and search with `nix search`.\r\n\r\nAfterwards, I also used my own Hydra instance to automatically rebuild some of my projects.\r\n\r\nIt\'s very cool to still be able to use `nix shell` and `nix develop` *while* I\'m upgrading NixOS.','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A10','A3','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'For ephemeral environments I would probably use distrobox. For an easy-to-use cross-language build system, there is no alternative I know of.','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','My Debian server was starting to get too hard to manage. I wanted my configuration to be all in one place to reduce the mental burden.\r\n\r\nI had a Raspberry Pi 4 waiting to get properly configured (with a new operating system), and I tried NixOS. I eventually also installed NixOS on my laptop (a little more than a month later). I really like being able to put all my configuration in Git.\r\n\r\nMy own Hydra instance is much more useful than things like DroneCI, since Hydra lets me keep the outputs, and since testing a build locally is a simple `nix build`.\r\n\r\nNow, I can\'t stop using NixOS. Applying overlays and patches on packages is very useful in ways I could not even imagine when I was using Debian.','Y','Y','Y','','','','','Letting me put ALL of my system\'s configuration in Git','Applying custom overlays to add new packages, change dependencies of existing ones, and apply patches to fix some problems that can\'t wait for upstream.','Custom service modules, making me learn to love SystemD.','I would make the whole thing use less RAM. `nix search` is much better than `nix-env -qa` because of the eval cache, but the initial run still uses a lot (3GB).','Probably some messy setup of docker-compose for my services and maybe Ansible for the whole system.','Y','','','','','','','','Y','','','agenix','nix-env',''),(683,'1980-01-01 00:00:00',5,'en','1508279418','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','As a dev, immutability has become a must for most of what I do... hence Nix was just a natural consequence of that.','Y','','','Y','','','Y','','','','','','','Y','Y','','Y','','','','A2','A3','A7','','','','','','','','A12','A5','A8','','','','','','','','','','','','',NULL,'Guix ;)','A7','','Y','','Y','Y','','','','','','','','','','Y','','','','','','','','A13','A1','A15','','','','','','','','','','','','','','','','','','','A13','A12','A1','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','Text based configuration of my system, which is highly reproducible','Easy rollback of system','All the benefits of nixpkgs','','Some flavor of linux','Y','','','','','','','','','','Mac','','',''),(684,NULL,4,'en','1021990068','A5','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I don\'t remember exactly it was a long time ago. I came across it somewhere and it was obvious this is the way software/systems should be managed. I\'ve been using it off and on since then depending on how much time I had to spend futzing with things not fully working.\r\n\r\nFor my company, I\'m using it because I\'m personally a fan of nix, and because Obelisk/reflex-platform uses it.','','','','','','','Y','','','Y','','','','Y','Y','Y','Y','','','','A7','A9','A1','','','','','','','','A5','A4','A6','','','','','','','','','','','','',NULL,'apt or equivalent, docker, ansible or something','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A2','','','','','','','','','','','','','','','','','','','','A13','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I don\'t quite know the nix language well enough. Exactly what the process for contributing is is a bit unclear/intimidating.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','see answer for nix, it\'s the same for me.','Y','','','Y','','','','Atomic updates/deploys with rollbacks','ability to configure most of my system in one place in the same language (even if I don\'t really like said language ...)','most of the things I need are already packaged','Replace nix with something more strongly typed that gave better error messages','some other linux. I haven\'t kept up, but probably a debian derivative.','','','','','','','obelisk deploy','Y','','','xmonad (though I need to find a wayland compatible replacement)','Obelisk, reflex platform','Home manager - I\'ll probably go back to this my config broke at some point and I just haven\'t gotten back to getting it working.',NULL),(685,'1980-01-01 00:00:00',5,'en','1080958291','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A8','A9','A1','','','','','','','','','','','','',NULL,'GNU/Guix or ArchLinux','A4','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A1','A15','A4','','','','','','','','','','','','','','','','','','','A1','A4','A19','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','A friend pitched NixOS to me on the basis of ad-hoc environments and reproducible builds. The prospect of sharing NixOS modules between our configurations became enticing as well as the simplified install process Nix affords.','Y','','Y','','','','','Reproducible builds','Ad-hoc environments','Flakes','First class IPFS support.','GNU Guix or ArchLinux ','Y','','','','Y','','','Y','','','Hyprland, XMonad','nixos-generators, hive, std, home-manager, nix-doom-emacs, nil, arion, disko','digga, rnix-lsp',''),(686,'1980-01-01 00:00:00',5,'en','2095457183','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started working at a Haskell consultancy (MLabs) that was primarily focused on Cardano at the time, and all of the Cardano tooling used nix.','','','','','','NixOS only','Y','Y','','','','','','','Y','Y','Y','Y','Y','flakes','A11','A1','A2','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Ubuntu or MacOS','A7','','Y','','Y','Y','','','','','','','','','','Y','Y','','','Y','','','','A13','A1','A2','A25','','','','','','','','','','','','','','','','','','A1','A15','A13','','','','','','','','','','','','','','','','','','','','','','','A2','','I don\'t really understand nix very well. I use it for work, but a lot of it is making very small changes and hoping nothing breaks.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I want to learn more about nix, and was attracted by the promise of rollbacks.','Y','','Y','','','','','Declarative configuration','Roll backs','','I would remove (censor) all bad documentation and decide on a single accepted, didactic way of explaining things.','Ubuntu.','Y','','','','','','','','','','Sway','','',''),(687,'1980-01-01 00:00:00',5,'en','531374303','A2','A3','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','','','','','','','','Y','','','','','','','Y','','','','','','','A2','A1','A7','','','','','','','','A12','A14','A8','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A4','A15','A1','A2','','','','','','','','','','','','','','','','','','A4','A13','A15','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(688,'1980-01-01 00:00:00',5,'en','1324077640','A2','A4','male','','Y','','','','','','','Y','','','','','','Y','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','managinf family computers','A4','Windows 7 EOL was approaching and for the upgrade I considered Debian and Arch (possibly Void). Having done some work with Yocto before, NixOS instantly appealed as my distro of choice. Never regretted since.','','Y','','Y','','','Y','','','','','','','','Y','Y','Y','','','','A2','A7','A9','','','','','','','','A2','A8','A12','','','','','','','','','','','','',NULL,'Uh, depends on the task .. bundlewrap, bazel, bitbake, ...','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A26','','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','','Y','','upstreaming :) ','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','personal/family desktops/laptops','A4','Uh, same as nix. I just dived right in.','Y','','','','','','','rock stable','prebuild systems on one machine, then push them to laptops','','','Debian, Arch. Not Guix (too many parentheses).','Y','','','','','Y','','','Y','','LXQt','home-manager (using it on Ubuntu), guides for setting up the DE in home-manager on Ubuntu are a bit lacking (e.g. how do i configure sway and launch it from Ubuntu\'s greeter?)','','Thank You! Being part of the Nix(OS) community has been a joy from the beginning!\r\n\r\nRegarding the survey: You could have asked about the different doc ressources and means of communications. I\'m sure there are people that are not aware of nix.dev or the Matrix rooms.'),(689,'1980-01-01 00:00:00',5,'en','1824656250','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','It seemed like a good idea.','Y','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A7','','','','','','','','A8','A4','A6','','','','','','','','','','','','',NULL,'N/A','A7','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A17','A25','A15','','','','','','','','','','','','','','','','','','','A15','A17','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','It seems the projects I want to work on already have maintainers, and I am unsure how to self-insert, etc.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Good idea.','Y','','','','','','','Flakes are portable, simple, small, and easily stored in git repos and work with the underlying OS.','Much of the OS can be easily configured through the language and put into small files.','It\'s easy to restore previous configurations if I mess up / something is messed up.','I am unsure what channels do.','mac/windows/fedora','Y','','','','','','','Y','','','','N/A','Channels.','I\'m enjoying it.'),(690,'1980-01-01 00:00:00',5,'en','711144582','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','they maintain packages that can be installed outside of the usual filesystem hierarchy','','Y','','','Y','','Y','','','','','','','Y','','Y','','','','','A1','A9','A10','','','','','','','','A9','A5','A12','','','','','','','','','','','','',NULL,'Gentoo prefix maybe','A4','','','','','Y','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A6','',NULL,'N','N','new features that appeal to me somehow',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','need better built in tools for creating a binary cache. `nix copy` is behind a feature flag. post build hook has a lot of foot-gun examples'),(691,'1980-01-01 00:00:00',5,'en','544808839','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','Y','','','Y','','Y','','','','','','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A8','A4','A6','','','','','','','','','','','','',NULL,'','A2','Y','Y','Y','Y','Y','','','','','','','Y','','','','','','','Y','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','','','','','','Declarative configuration','Reproducibility','','','Guix or Arch','Y','','','','','','','','','','River','','',''),(692,'1980-01-01 00:00:00',5,'en','596824970','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I heard about it through the Haskell community.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A4','A11','','','','','','','','','','','','',NULL,'Docker','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I don\'t really know where to start. Also most things I want are already available.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','When my Arch Linux installation on my personal PC broke during some upgrade I decided to switch.\r\n','Y','Y','','','','','','Reproducible dev/build environments','Declarative system configuration','Fearless updates','Add typing to the Nix language\r\nAdd flawless incremental building a la Bazel','Arch Linux','Y','','','','','','','','','','Sway','','',''),(693,'1980-01-01 00:00:00',5,'en','821691248','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','','funder','','','Y','','','android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','Easier development environments. Quick switch between software versions.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','nix flake','A5','A7','A2','','','','','','','','A8','A12','A4','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','woodpecker','A15','A1','A2','A4','A3','A5','A13','A17','A18','A25','','','','','','','','','','','','A5','A25','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I offered easy switching between software versions.','Y','Y','Y','Y','','','','easy system management','quick switching between versions','reproducible environment','- move to a FOSS git hoster such as codeberg.\r\n- configure data folders and backups as core feature\r\n- configure monitoring and alerts as core feature\r\n- make nix-shell and `nix develop` use sandboxes to e.g. prevent network access','guix','Y','','','','','','','','Y','','','nix flake','home manager, nixops, nix containers','I would love to contribute but my dislike for GitHub makes this very hard.'),(694,NULL,1,'en','699241551','A2','A4','male','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(695,'1980-01-01 00:00:00',5,'en','1054785645','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Arch computer broke','','Y','','','','','Y','','','','','','','','','','Y','','','','A1','A2','A7','','','','','','','','A4','','','','','','','','','','','','','','',NULL,'Arch','A4','','','','Y','','','','','','','','','','','','','','','','','','¯\\_(ツ)_/¯','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I don\'t know how','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Arch computer broke','Y','','','','','','','','','','more packages, working packages','arch','Y','','','','','','','','Y','','','','',''),(696,'1980-01-01 00:00:00',5,'en','1768301360','A3','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','NixOS','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A7','A1','','','','','','','','A5','A4','A6','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I dont know enought of nix to do it, but maybe in the future','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Im learning it to replace my Arch Linux installation thinking on more stability, the reproducibility is a big bonus since i generally work on my desktop but sometimes need to travel and work from my laptop, so not needing to maintain two systems and just run one command to have all the packages and configuraions sync is aweasome.','Y','','','','','','','Generations and roll back','Reproducibility','Being declarative','A more complete and organized documentation and some type of support for secrets such as passwords and ssh keys','Probably continue on Arch','Y','','','','','','','','','','Hyprland','None','None','Thanks for all the effort of making something different'),(697,NULL,NULL,'en','1504802293',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(698,'1980-01-01 00:00:00',5,'en','969800852','A5','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A6','','','','','','','','A14','A9','A8','','','','','','','','','','','','',NULL,'Guix, Docker','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A13','','','','','','','','','','','','','','','','','','','A3','A13','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Declarative configs','Remote builds','Share configs with work machines, MacOS','Single up-to-date, reliable, comprehensive source for configurations with examples','Debian, Alpine','Y','','Y','','','','','','','','Sway','','',''),(699,NULL,NULL,'en','546988307',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(700,'1980-01-01 00:00:00',5,'en','1169378317','A1','A4','male','','','','','','','Y','','','','Y','Y','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Frustration with difficult reproducibility of work projects','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'guix if it could somehow exist without nix\r\notherwise, probably one of the immutable-base-plus-images distros like Vanilla or Blend','A7','','','','Y','','','','','','','','','','','','','','','Y','','','sourcehut builds','A15','A1','A13','A25','','','','','','','','','','','','','','','','','','A15','A22','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Migrated from arch after frustration with reproducibility','Y','Y','Y','Y','','','','Reproducibility','Declarative config','Optional bleeding-edge versions','Remove channels, use flakes as primary entrypoint by default','guix if available or an immutable-base distro','Y','','','','','','','','','','Sway, Hyprland','cachix\r\ndiscourse\r\ngithub.com/nixpkgs\r\n','nixops\r\nold haskell and rust packaging utils (carnix, etc)',''),(701,'1980-01-01 00:00:00',5,'en','153012684','A8','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','','','','','','A2','A10','A1','','','','','','','','A13','A5','A8','','','','','','','','','','','','',NULL,'ansible/salt\r\nguix','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A11','','','','','','','','','','','','','','','','','','','','A13','A11','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Was previously using ansible to manage rhel servers, configuration would regularly break and would need constant maintenance ','Y','','Y','','','','','Declarative system configuration','Ease of use around setting up services','Easy rollback','Better tooling support around editors (things like nil being first class) \r\nA strongly typed alternative configuration language ;D ','Some rhel derivative and ansible ','','','','','','Y','','','','','','home-manager\r\nnil','',''),(702,'1980-01-01 00:00:00',5,'en','1785756717','A1','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted a way to declaratively manage my operating system so that I could easily switch between machines','Y','Y','','','Y','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A3','','','','','','','','A1','A8','A12','','','','','','','','','','','','',NULL,'Probably just containers & devcontainers + arch pacman based package management ','A7','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A1','A2','A3','A4','A15','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted a declarative way to manage my machines and ensure they have similar state','Y','','','Y','','','','Being able to configure an entire system from one clear location (can follow imports etc)','Being able to roll back to previous stable configurations','Being able to easily configure and package new applications','A better configuration editor to make it more beginner friendly (essentially adopt SnowflakeOS\'s approach, with more developer resources)','Something Arch based, or maybe fedora silverblue / opensuse','','','','','','Y','','Y','','','','flake-parts, nil, poetry2nix, crane, nix-tree, snowflake os (software center and configuration editor) , cachix','mach-nix, arion','Thanks for all the hard work!'),(703,NULL,1,'en','438462300','A5','A4','male','','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(704,'1980-01-01 00:00:00',5,'en','1775729916','A5','A5','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was frustrated with Homebrew’s shortcomings, and was intrigued by a build system aiming for idempotency. And as a Haskell fan, I was intrigued by the nix language. ','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A9','','','','','','','','A4','A14','A5','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','Y','','','','Y','','','','','','A15','A9','A13','','','','','','','','','','','','','','','','','','','A15','A9','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A3','I liked the ability to configure the whole system for a single DSL. Also I found it to be immediately reliable and packages plentiful and up-to-date. ','Y','','Y','','','','','','','','','','Y','','','','','','','','','','','nix-darwin','devshell project',''),(705,'1980-01-01 00:00:00',5,'en','449382015','A5','A2','male','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','needed reproducibility for my code and configurations','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'conda, stack, cargo','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A13','A15','A21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','most of the stuff i need is already available','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A2','','Y','','','','','','','Determinism','Install all configs with one command','most software already available','','archlinux','Y','','','','','','','','','','xmonad','','',''),(706,NULL,1,'en','466456076','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(707,'1980-01-01 00:00:00',5,'en','1807163949','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','','','To maintain my system','A1','Friends told me it\'s great, tried in VM, really liked it, switched.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A9','','','','','','','','A5','A8','A1','','','','','','','','','','','','',NULL,'Lame package managers and containers.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A17','A2','','','','','','','','','','','','','','','','','','','A3','A4','','','','','','','','','','','','','','','','','','','','','','','','A1','','It\'s a bit intimidating for someone like me who doesn\'t really code that much.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Same story as for Nix','Y','','','','','','','Reproducibility and being able declare system config','Experiment with system quicker','','More friendly FHS compatibility.','Definitely not Guix\r\nProbably Arch or Fedora','Y','','','','','','','Y','','','','Nixvim','','I find this Nix/NixOS thing really cool! Thank you to everyone who took part in this!'),(708,'1980-01-01 00:00:00',5,'en','68571203','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','Infrastructure engineer','','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I love functional/declarative programming, especially Haskell. I also desire reproducible builds.','Y','Y','','','Y','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A4','A8','','','','','','','','A9','A6','A2','','','','','','','','','','','','',NULL,'Kaniko, brew, dpkg','A7','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','A9','A15','A13','','','','','','','','','','','','','','','','','','A1','A19','A13','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A2','It\'s superior to using Ansible for config management.','Y','','','','','','','Programmatic config management','Easy atomic rollback','Raspberry Pi 4 support','Add better secrets management','Ubuntu Server\r\nFreeBSD','Y','','','','','','','','','','None -- NixOS is used on a headless RPi4, I prefer wayland and i3wm','','Channels\r\nHydra','Thank you for all your hard work!'),(709,NULL,0,'en','719836082','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(710,'1980-01-01 00:00:00',5,'en','2130498674','A1','A3','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','','','','','','Y','','','android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','interested in functional programming, I changed my computer and decided to try NixOS on the new one.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A9','A5','A14','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I mainly hack things for me when I don\'t find something in nixpgs that I need, but I don\'t know enough about the codebase/best practices to publish my packages.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','interested in functional programming, I changed my computer and decided to try NixOS on the new one.','Y','','','','','','','nothing is breaking when updating','it is easy to add a package (but the repo has mostly everything I need)','declarative configuration makes it easy to replicate my configuration on another computer','','I was using Solus before. If NixOS disappeared now, I would probably use Fedora.','Y','','','','','','','Y','','','','','','Thanks to everyone involved in the project!'),(711,NULL,NULL,'en','677448516',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(712,'1980-01-01 00:00:00',5,'en','1066453068','A5','A3','male','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducible python environments for machine learning','Y','Y','','','','','Y','','','Y','','','Development vms','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A2','A5','A8','','','','','','','','','','','','',NULL,'','A1','','Y','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A2','A15','A13','A3','A4','','','','','','','','','','','','','','','','','A2','A15','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'N','Y',NULL,'Not supported at work, better (less buggy) gpu driver support on aws','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nixpkgs-upkeep','',''),(713,NULL,NULL,'en','1675625786',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(714,NULL,1,'en','2106011965','A2','A4','male','','','','','','Y','','','','','Y','','','','','','Y','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(715,'1980-01-01 00:00:00',5,'en','1030312935','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A7','A3','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'Fedora Silverblue','A4','','','','','','','','','','','','','','','','','','','','','','','A9','A5','A15','','','','','','','','','','','','','','','','','','','A9','A5','A15','','','','','','','','','','','','','','','','','','','','','','','A1','','Skill issue','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','','','','','','Declarative configuration','Rollbacks','ZFS support','Stabilize Flakes, add support for ZFSBootMenu','Fedora Silverblue','Y','','','','','','','Y','','','','','',''),(716,'1980-01-01 00:00:00',5,'en','182552169','A7','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Tutor','Y','','','','','','N','N','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Windows became to slow on my old laptop. ','Y','','','','','','','Not applicable ','Not applicable ','Not applicable ','The ability install Microsoft 365 (office) ','Guix','','','','','','','Not applicable ','Y','','','','Microsoft 365 (office) ','Microsoft 365 (office) ','- Please add Microsoft 365 (office) \r\n- create a certification program for learning Nix and Nixos eg: Nix certified developer, NixOS certified administrator, etc\r\n'),(717,'1980-01-01 00:00:00',5,'en','1855162465','A2','A4','male','','','','','','Y','','','','','Y','Y','','','','','','Y','','','','','','','','Y','','','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Once I started using NixOS, I began using nix on both working PCs and servers.','','Y','','','','','Y','Y','','Y','','Y','','Y','Y','Y','Y','','Y','','A7','A1','A4','','','','','','','','A12','A4','A14','','','','','','','','','','','','',NULL,'Probably pacman for package managing and some automation tool like ansible for configurations.','A4','','','','','Y','','','','','','','','','','','','','','','','','','A1','A3','A10','A13','A2','A9','','','','','','','','','','','','','','','','A1','A3','A10','','','','','','','','','','','','','','','','','','','','','Y','','A1','','Not enough time. Also, community is mostly active in IRC and I don\'t use IRC anymore, so it\'s harder to get any advice.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Gaming, leasure','A5','I bought a new laptop and I was already looking at NixOS and even tried it once before. With that new laptop I decided to use NixOS as a main OS. I still use the same laptop and the same installation with regular updates and upgrades.','Y','','Y','Y','','Y','','Atomic builds. I find this feature very vital for my servers and less vital but still important for working PCs as well. ','Reliability. I get the same build with the same nix config and need not to worry about misconfiguration. ','Up to date packages and option to use older packages.','Each time I need to add a package or option I look into nixos web page for the correct name and if the package is available. In 2023 there should be a tool and/or editor plugin for that.\r\n\r\nI\'d also make nixops less dependent on old and insecure packages.','Arch','Y','Y','','','','','','','','','i3wm','','nixops because of dependence on old insecure packages that makes it harder to build a system. ','I use the lenovo laptop with wifi and BT on the same module. It\'s quite often that NM and BT services become less stable and sometimes even completely break. Once I had to install an older version of Linux kernel just to deal with it. I see two problems here: bad QA for a key component, and the way the bugfix is delivered. If a critical bug like this is fixed, the fix must be available right now for build/rebuild utils, ignoring any cache.'),(718,NULL,2,'en','1460420482','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I don\'t remember 😭','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A2','A5','','','','','','','','A8','A6','A14','','','','','','','','','','','','',NULL,'Is there an alternative? Guix maybe?','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A24','A1','A23','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','Only just diving into flakes','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(719,NULL,NULL,'en','1937152280',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(720,'1980-01-01 00:00:00',5,'en','1235672007','A2','A3','fem','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','Y','Consultant','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Guix didn\'t have proprietary packages. I used guix to keep my laptop setup mostly identical to my desktop, except for the differences in hardware.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A5','A10','A7','','','','','','','','A6','A5','A14','','','','','','','','','','','','',NULL,'Guix, or a lot of bash scripts','A1','','','','Y','Y','','','','','','','Y','','','Y','','','','','','','Drone (no nix specific stuff)','A15','A13','A3','','','','','','','','','','','','','','','','','','','A13','A3','A15','','','','','','','','','','','','','','','','','','','Y','Y','','PRs','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Guix didn\'t have proprietary packages. I used guix to keep my laptop setup mostly identical to my desktop, except for the differences in hardware.','Y','Y','Y','Y','','','','Reproducible','Declarative','Reliable','I\'d make the language either a lisp or haskell, I dislike having to learn the nix language (who needs another dsl in their life). I\'d make the tooling more intuitive, and less fractured. I\'d have easy to understand and find for beginners documentation.','Guix and bash scripts.','Y','','','','','Y','','','','','XMonad','nix-index','home-manager (still exists in some places but I informally consider it under deprecation in my configs).','The Nix community being welcoming and respectful to diverse people has been a huge reason for me telling everyone I know about it and for wanting to contribute back to the project, instead of keeping it a open secret that I use it (like e.g. cloudflare).'),(721,'1980-01-01 00:00:00',5,'en','853085871','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','Y','','Y','','','','','Y','','Y','','','','A2','A3','A7','','','','','','','','A6','A5','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','Y','','','','','','','','','','','A3','A2','A15','A22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','sway','','',''),(722,'1980-01-01 00:00:00',5,'en','900813412','A1','A4','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','One messed up Ubuntu upgrade and I couldn\'t take it anymore','','Y','','','','','Y','','','','','','','','','Y','Y','','','','A7','A2','A1','','','','','','','','A1','A8','','','','','','','','','','','','','',NULL,'Guix','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','After one failed upgrade on Ubuntu I couldn\'t take it anymore','Y','','','','','','','Fearless tinkering with rollbacks','Reproducible builds and configuration','Configuration with a simple text file in version control','Give me a GUI for everything like installing packages','Guix','Y','','','','','','','Y','','','','','','the Matrix server is truly helpful'),(723,'1980-01-01 00:00:00',5,'en','418210505','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A1','Brew sucked and I wanted a better package repository + installer.','Y','','','','','','Y','','','','','','','Y','','','','','','','A1','A6','','','','','','','','','A14','A5','A3','','','','','','','','','','','','',NULL,'brew','A6','','','','Y','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','The packages I need are already there.','N','N','Nothing, I have 3 different friends you tried using it for 6+ months and gave up because of the horrendous documentation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Please make nix more approachable.\r\n\r\nThe packages repository is great, the declarative aspect is great, but:\r\n- The language is hard to grasp with no good LSP\r\n- The documentation is questionable\r\n- The learning resources are inexistant or outdated'),(724,NULL,NULL,'en','977157335',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(725,'1980-01-01 00:00:00',5,'en','1249133900','A2','A2','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using nix with nixos ','Y','','','','','','Y','Y','','Y','','','','','Y','Y','','','Y','','A1','A3','A7','','','','','','','','A5','A8','A3','','','','','','','','','','','','',NULL,'','A3','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A2','A1','A3','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I used Debian with ansible before and it was very frustrating. A friend of mine (nixos commiter) showed me nixos as alternative.','Y','','Y','Y','','','','Config Management / Modules','Rollback ','','Better Documentation, easier modules, better integration with binaries from outside the nix world (in the direction of nix-ld)','ansible with Debian or arch','Y','','','','Y','Y','','','','','Sway','home-manager, sops-nix, nixos-hardware, search.nixos.org, noogle.dev, nixos.wiki','','Thank you <3'),(726,NULL,2,'en','470880150','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I used to distro-hop a bit, but always got annoyed by something in the \"mainstream\" distros. Being a fan of functional programming I finally tried NixOS and never looked back. ','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A14','A8','A13','','','','','','','','','','','','',NULL,'I have no idea, hopefully it continues to exist ;)','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A11','A15','','','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I\'m not sure how to properly add a package do nixpkgs, but I haven\'t spend to much time trying to look into it',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(727,'1980-01-01 00:00:00',5,'en','1803572432','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Avoiding system-wide dependencies in a work-related subpath of my filesystem ','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A3','A5','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'Docker images','A4','','','','Y','','','','','','','','Y','','','','','','','Y','','','','A10','A15','A13','','','','','','','','','','','','','','','','','','','A10','A15','A5','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Lack of experience with the nix language: it\'s complicated and messy to work with ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Setting up a home lab server ','','','Y','','','','','Stability','Reproducibility','Atomic upgrades','Remove the nix language, replace it with any pre-existing pure functional language ','Docker','Y','','','','','','','','','','','','Freecad: building it leads to a broken/segfaulting program ',''),(728,'1980-01-01 00:00:00',5,'en','1469644165','A5','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','Y','','','Y','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','','Y','','A10','A2','A3','','','','','','','','A2','A12','A10','','','','','','','','','','','','',NULL,'maybe Gebtoo?','A2','','','','Y','Y','','','','','','','','Y','','Y','','','','','','','','A15','A4','A2','A5','A1','A25','A3','A6','A17','','','','','','','','','','','','','A2','A1','A6','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','Y','Y','Y','Y','','Y','','','','','','','Y','','','Y','','Y','','','Y','','','','',''),(729,'1980-01-01 00:00:00',5,'en','1539540421','A1','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A3','I love reproducible things, as I\'m a SA/SRE. The concept is very important.','Y','Y','','','','','Y','Y','','','','','','','','','Y','','','','A1','A2','A10','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'I don\'t know, before I working in Yahoo!, there was a great tool call yinst/ignor, in some aspect, it could make the system configuration reproducible either, it impressed me a lot. After leaving Yahoo!, there is no tool could realy make things reproducible, docker? No. until I found Nix two years ago.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','no','A9','A1','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Most of time, the software in nixpkgs is enough for me for daily usage, as I only use the most common tools. Unless I meet some issues and overlays could not help, I would try contributing.','N','N','Whole system control by Nix',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NO.','NO.','Great job, great community.'),(730,NULL,NULL,'en','496307920',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(731,'1980-01-01 00:00:00',5,'en','1133440549','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Heard about it through a group of friends, liked the idea of a fully declarative OS.','','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A10','A7','','','','','','','','A4','A9','A6','','','','','','','','','','','','',NULL,'Archlinux, for the simplicity of packaging and the AUR','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A15','A17','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','A1','','Difficulties understanding the nix language, and the helpers found in the nixpkgs repository.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Through friends','Y','','Y','','','','','Declarative configuration','Ability to roll back versions','','Magically resolve linking issues when using binaries','Archlinux','Y','','','','','','','','Y','','','','',''),(732,'1980-01-01 00:00:00',5,'en','1812639106','A2','A2','-oth-','Non-Binary','','','','','','','','','','Y','','','','','','','Y','','','','','Y','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','Y','','','Y','Y','','Y','','Y','','','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A9','A8','A10','','','','','','','','','','','','',NULL,'Ansible','A7','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A1','A15','A6','A9','A13','A12','A2','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','Arch Linux and Fedora','','','','','','Y','','','','','','NixOS-WSL','',''),(733,'1980-01-01 00:00:00',5,'en','403561505','A1','A4','male','','','','','','Y','Y','Y','','','','','','','','','Y','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','As a replacement for homebrew after it fell apart yet again. Probably triggered by one of Xe\'s posts.','Y','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','A2','A6','A1','','','','','','','','A6','A9','A2','','','','','','','','','','','','',NULL,'Alcohol','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A3','A2','A7','A9','A15','A25','','','','','','','','','','','','','','','','A25','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','Y','','','','','Service management','Versioning','','Provide a nicer way of doing relational database configuration / initial stand-up. Separate instances or user management would be nice too.','Saltstack / packer','Y','','','','','','','','','','','','','It would be great if you contributed the nix documentation automatically to devdocs.io'),(734,NULL,2,'en','34974063','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','Y','','','N','N','','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(735,'1980-01-01 00:00:00',5,'en','288989133','A2','A3','male','','','','','','Y','Y','','Y','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I read on Mastodon how easy it was to setup a new instance using nixos, and I fell down the rabbit hole','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A7','A6','','','','','','','','A5','A6','A14','','','','','','','','','','','','',NULL,'I\'ve used docker for development environments, but I hated it every second\r\n','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A3','A9','','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Same as Nix','','Y','Y','','','','','Declarative and versioned environment','Ease of managing multiple machines','Ease of configuration via NixOS modules','','','Y','','','Y','','','','','','','','','',''),(736,'1980-01-01 00:00:00',5,'en','1244481277','A2','A3','male','','Y','','','Y','','','','','','','','','','','','','Y','','','Y','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','As I started to use NixOS, I learnt about Nix and now use it for more and more things such as development environments.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'Python\'s virtualenv for Python development environment.\r\nMy distro package manager/repository for the rest.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started to hear about it and was intrigued by the declarative configuration part.\r\nThe ability to entirely configure my system (and home programs) was really appealing.\r\nThen I learnt about all of the other benefits along the way.','Y','','Y','','','','','Declarative and reproducible system configuration.','Minimal source based distribution.','Nixpkgs repository for packages.','Enhance the documentation so that I can get all my friends to use it.\r\nOther than this, I find the distribution to be very nice in its current state.','Probably Arch.','Y','','','','','','','Y','','','Sway','I use home-manager and Nixvim (a tool to which I contribute that lets you configure Neovim with Nix).\r\nI also use agenix to manage my secrets.','','Nix is an amazing technology and I hope it will continue to strive.\r\nThank you to the countless contributors/maintainers/team members/companies that collaborate to make Nix what it is <3'),(737,'1980-01-01 00:00:00',5,'en','472441831','A2','A3','male','','Y','','','','','Y','','','','','','','','','','','Y','','','Y','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A5','A13','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A25','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(738,'1980-01-01 00:00:00',5,'en','1318198399','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','','Y','','','','','Y','','Y','','','','A3','A10','A4','','','','','','','','A14','A6','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A17','A9','A15','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','','Y','','Y','Y','','','','','','','','','','','','','','','','','','','','','',''),(739,NULL,1,'en','1300852311','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),(740,'1980-01-01 00:00:00',5,'en','1260541183','A1','A3','male','','','','','','','','','','','','','','','','Y','','Y','','','','','','','Database developer','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','','','','','','','','Y','','Y','','Y','','A1','A3','A2','','','','','','','','A2','A6','A4','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','A2','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(741,'1980-01-01 00:00:00',5,'en','89187607','A2','A3','fem','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','recommended by a friend','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A7','A2','A3','','','','','','','','A8','A5','A4','','','','','','','','','','','','',NULL,'Debian','A7','Y','','','Y','Y','','','','','','','','Y','','','','Y','','','','','','A15','A2','A10','','','','','','','','','','','','','','','','','','','A15','A2','A10','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','recommended by a friend','Y','Y','Y','Y','','','','rollbacks','declarative configuration','','','Debian','','','','','Y','Y','','','','','i3 / sway','','','meow :3'),(742,NULL,1,'en','198245004','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(743,'1980-01-01 00:00:00',5,'en','1503224381','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I was looking for a good package manager with lots of available software.','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A6','','','','','','','','','A8','A11','A3','','','','','','','','','','','','',NULL,'AUR','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A4','A5','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','A1','','no need necause it\'s already really good maintained','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Tried the package manager first and wanted to try the os.','Y','','','','','','','lots of packages','stability','personalization','less storage space usage','some other gnu/linux distro','Y','','','','','','','','Y','','i3','','','You\'re doing a great job.'),(744,'1980-01-01 00:00:00',5,'en','1538766968','A2','A4','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Friend showed me.','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A4','A9','','','','','','','','','','','','','',NULL,'Debian. Or Guix if it existed.','A2','','','','','Y','','','','','','','','','','','','Y','','','','','','A2','A15','A3','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Friend showed me.','Y','Y','Y','','','','','','','','','','Y','','Y','','','','','Y','','','','','nixops','good job'),(745,'1980-01-01 00:00:00',5,'en','1322652169','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A6','','','','','','','','A8','A4','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','A13','A3','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','Y','','','','','','','','','','','','','','Y','','','','Y','','','nixos-hardware\r\nDisko','',''),(746,'1980-01-01 00:00:00',5,'en','711499582','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducibility of desktop system, long term reproducibility of haskell projects.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A10','A1','','','','','','','','A12','A6','A2','','','','','','','','','','','','',NULL,'all the other ones are pretty much rehashed versions of the same thing, so whichever one is stable and has a big list of maintained packages','A2','','','','Y','','','','','','','','','','','','','','','','','','','A11','A13','A7','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','Reprooducible OS, OS as code','','','virtualized /home to make all my computers the same','','','','','','','','','','','','i3','','',''),(747,NULL,NULL,'en','1923688701',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(748,NULL,2,'en','1927892547','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Saw a few YouTube videos / Reddit posts about it - thought it looked really cool, especially as someone who enjoys customizing my desktop','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A9','','','','','','','','A8','A9','A14','','','','','','','','','','','','',NULL,'Arch or Artix Linux','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A25','','','','','','','','','','','','','','','','','','','A15','A24','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don\'t have the time (school)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(749,'1980-01-01 00:00:00',5,'en','2080237721','A2','A5','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','Y','','Y','','Y','','','','','Y','Y','','Y','Y','','','A3','A7','A8','','','','','','','','A6','A14','A9','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','Y','','Y','','','','A9','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','As I‘m unfortunately not using Nix/NixOS in my profession, there is very limited time beside job, family and all the rest 😬','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','Roll back changes','Stable system even within „unstable“','Hyprland and Pantheon integration','Improve documentation ','Fedora','Y','Y','','','','','','','','','Pantheon or Hyprland','','','Thank you!\r\nKeep up the exceptional work'),(750,NULL,2,'en','1704009525','A2','A5','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','debian was always too old and I was curious','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A2','A8','A9','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','A13','A18','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(761,'1980-01-01 00:00:00',5,'en','1696944270','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','Reproducible and documented server configurations.','','Y','','','','','Y','Y','','Y','','','HTPC','','Y','','Y','','','','A2','A3','A1','','','','','','','','A14','A8','A12','','','','','','','','','','','','',NULL,'Arch Linux','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A10','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Reproducible and documented server configurations','','','Y','Y','','','','Reproducible, declarative, documented system configuration','Portability of configuration snippets','Able to use different versions of the same package','Use Flakes by default','Ansible on Debian?','Y','','','','','','','','','','','nixos-hardware\r\nnixified.ai\r\nsimple-nixos-mailserver','','Keep up the good work!'),(752,'1980-01-01 00:00:00',5,'en','511338051','A2','A2','fem','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I used to distrohop a lot, and before Nix I was using bedrock Linux in order to satiate my curiosity about different distributions, package managers and so forth. Brl didn\'t (doesn\'t? I don\'t know?) support nix or the nix package manager but I\'d seen some stuff about nix online, as well as some of Wil T\'s tutorials) and was intrigued by it: I wanted to try it out. At the time, I had gotten most of the use I was going to get out of brl (mainly using an arch stratum) so I decided to install NixOS, try it out and replace it with Arch if I didn\'t like it. I\'ve never looked back.','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A2','A7','A1','','','','','','','','A8','A5','A9','','','','','','','','','','','','',NULL,'Guix, if that still existed without nix...\r\n\r\nIn reality, I would probably have hopped to VanillaOS (assuming that etc...) and be using it on my laptop with Proxmox VE on my servers','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','Garnix CI (https://garnix.io)','A1','A2','A4','A15','A6','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','NUR (https://github.com/nix-community/NUR)','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I started using NixOS at the same time as nix, please refer to that question','Y','','Y','Y','','','','premade configuration options to extremely quickly get reasonable defaults that I can still later extend','declarative configuration with nixos-rebuild and tools such as deploy-rs','configuration is easy to version control and rollback if needed','NixOS tooling is quite fragmented and some of it is deprecated with no clear alternative (e.g. NixOps). ','Same as with the nix answer, I almost always use Nix and NixOS together','Y','','','Y','','','','','','','swaywm','home-manager','NixOps',''),(753,'1980-01-01 00:00:00',5,'en','2137398611','A5','A3','-oth-','nonbinary man','Y','','','','','','','','','','','','','Y','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A10','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'a mainstream linux distro such as fedora or arch, and GNU stow with a git repo','A2','Y','','','Y','Y','','','','','','','','','','','','','','','','','','A17','A25','A1','A15','A9','A2','A13','','','','','','','','','','','','','','','A17','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','i dont yet know much coding','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','reproducible system configuration','atomic updates/generations','package availability','the ability to declaratively install flatpaks etc, even if impurely','fedora, arch, or guix','Y','','','','','','','','','','awesomewm, hyprland','nix-doom-emacs','disko',''),(756,'1980-01-01 00:00:00',5,'en','388479258','A2','A3','-oth-','NB','','','','','Y','Y','','','Y','Y','','','','','Y','Y','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It was one of those things that just clicked, like my first experience with vim. Someone showed me :w, then :q, then told me you could combine them as :wq and I\'d never used another editor since.\r\nI installed NixOS, edited my config file to configure ssh and nginx, and decided I\'m never going back. I\'ve never regretted it, and even for the desktop it\'s ended up being by far the most stable experience I\'ve ever had on Linux.','Y','Y','','Y','','','Y','Y','','Y','','','','Y','Y','','Y','','','','A1','A4','A6','','','','','','','','A8','A6','A7','','','','','','','','','','','','',NULL,'Gentoo for its slots system, most likely. Various other ad-hoc installations, probably some sort of an instrumentation system like k8s, maybe dokku for simpler stuff?','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A7','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as Nix','Y','','Y','Y','','','','Declarative config','Rollbacks','The language itself, metaprogramming, generative configs','Zoop, everything is now flakes (or something else, as long as everything is it). Also, nixops is updated ...','','','Y','','','','','','Y','','','','','',''),(755,'1980-01-01 00:00:00',5,'en','1893012762','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Liked the idea, tried it and never went back to anything else.','','','','','Y','','Y','','','','','','','Y','Y','','Y','Y','','','A1','A2','A10','','','','','','','','A5','A6','A3','','','','','','','','','','','','',NULL,'Probably BlendOS','A7','','','','Y','','','','','','','','','','','','','Y','','','','','','A9','A6','A7','A1','','','','','','','','','','','','','','','','','','A6','A9','A7','','','','','','','','','','','','','','','','','','','','','Y','','A1','','I honestly don\'t know how to do it.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Like the idea, tried it, still ussing it.','Y','','Y','','','','','Declarative configuration','Declarative package manager','Declarative configuration','All package are in a container and can be set to run from any distro (à la dristrobox) and any and all config option are declarative for all packages.','BlendOS','Y','Y','','','','','','Y','','','NSCDE','None.','None.','Please add support to NSCDE nativelly.\r\nDo that and you\'ll be the best distro ever made.'),(760,'1980-01-01 00:00:00',5,'en','987329564','A8','A4','male','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I am working towards having my machines defined once and not having to configure anything again','Y','','','','','','Y','','','','','','','Y','','','','','','','A7','A10','A1','','','','','','','','A14','A5','A6','','','','','','','','','','','','',NULL,'Ubuntu/fedora with ansible','A4','','','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Time, skills','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','',''),(757,'1980-01-01 00:00:00',5,'en','1823617691','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Fed up with Ubuntu, wanted a more stable and reproducible solution. ','','Y','','','','','Y','','','Y','','','','','Y','Y','Y','','Y','','A7','A1','A2','','','','','','','','A15','A5','A1','','','','','','','','','','','','','Content addressable store by default. Reduce the resources required for patching openssl / glibc / other low-level lib. ','Ubuntu','A4','','','','','Y','','','','','','','','','','','','Y','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Slow approvals ','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Fed up with Ubuntu. Possibility to rollback. ','Y','','','','','','','Reliability ','Reproducibility ','Declarative syntax','','','Y','','','','','','','','','','Cinnamon','','',''),(758,'1980-01-01 00:00:00',5,'en','1418031714','A2','A4','-oth-','','','','','','Y','Y','','Y','','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I like configuration management, infrastructure as code, tangible configuration. And functional programming (former Common Lisp developer). Nix is embodiment of configuration as code.\r\n\r\nAlso, isolated, locked, and fully reproducible per-project development environments <3','','','','','','','Y','Y','Y','','','','','','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A8','A6','','','','','','','','','','','','','',NULL,'Ansible/Chef/Puppet','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I like configuration management, infrastructure as code, tangible configuration. And functional programming (former Common Lisp developer). Nix/NixOS is embodiment of configuration as code.','Y','Y','Y','','','','','','','','','ansible/chef/puppet','','','','Y','','','','','','','Hyprland','Home Manager, nix-direnv, sops-nix, Alejandra, Statix','NixOps – seems abandoned','Thank you! <3'),(759,NULL,1,'en','964572269','A2','A4','male','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(762,'1980-01-01 00:00:00',5,'en','1225080520','A2','A3','male','','','','','','','Y','','','Y','','','','','Y','','','','','','','','','','','','','','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','Y','','','','','','Y','','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''); +INSERT INTO `limesurvey_survey_2023` VALUES (763,'1980-01-01 00:00:00',5,'en','1121162504','A2','A3','male','','','','','','','Y','','Y','','Y','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Friend recomended','','','','','','','Y','','','','','','','Y','Y','Y','','','','','A1','A3','A2','','','','','','','','A5','A4','A13','','','','','','','','','','','','',NULL,'Arch pacman','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A15','A4','A1','A3','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Friend recommended ','Y','','','','','','','Declarative, reproducible config','Ease if changing kernel version, and other options','Hassle frew rollback','Add better documentation, more explicit error messages\r\n\r\nRemove: decrease the possible ways to use nix ( at least officially). For example having flakes and other ways to manage packages introduces confusion and not helful. There should be way less and recommended solutions to use nix so there is less confusion and easier learning curve','Arch ','Y','','','','','','','','','','Sway','','','Please better documentation and more coverage and up to date articles on wiki. Also we shold stop introducing new solutions or extensions of nix like flakes and try to improve and perfect what we have now. Instead of having another wrapper around nix we should make nix better, more understandable, more stable and easier to use.'),(764,'1980-01-01 00:00:00',5,'en','218871459','A5','A3','male','','Y','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','','','','','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A12','A11','A2','','','','','','','','','','','','',NULL,'guix','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A3','A2','A9','A1','A13','A14','A21','A4','','','','','','','','','','','','','A14','A11','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','Y','Y','Y','','','','','','','','','','','Y','','','','','','','xmonad','dream2nix, home manager, nix top, nix du, fup, ','',''),(765,'1980-01-01 00:00:00',5,'en','202050892','A5','A4','male','','','','','','','Y','','','Y','Y','','','','Y','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','After years of using asdf version manager to install tools and runtimes, got tired of having different problems across developer\'s environments. So we introduced Nix to get all of us the exact same development environment.','Y','Y','','Y','','','Y','Y','Y','','','','','Y','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A2','A6','A4','','','','','','','','','','','','',NULL,'asdf-vm','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A11','A15','A22','A24','','','','','','','','','','','','','','','','','','A11','A15','A22','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','snowfallorg/lib\r\n\r\n','',''),(766,NULL,1,'en','734616799','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(767,'1980-01-01 00:00:00',5,'en','807397470','A5','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','been aware of it for years, started experimenting with nixos personally to evaluate if it was a good solution to packaging issues at work. now use nix in all software development and run nixos on all my personal devices','','','','','','','Y','','','Y','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A4','A5','A8','','','','','','','','','','','','',NULL,'likely docker for packaging environments and Ansible for building os images. These are the tools nix replaced for me','A2','','','','Y','Y','','','','','','','','','','','','','','Y','Y','','','A9','A15','A2','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','evaluation for use at work','Y','','','Y','','','','reproducible os images','centralized human readable configuration ','safety of making large or tricky os changes','document and exploration of nixos options should be much better. flakes should be stabilized, default enabled, and better integrated into nixos. more of the os should be read-only/ephemeral by default. config in /etc/nixos feels out of place as it generates the world around itself.','likely debian/Ubuntu/arch with tools like Ansible/docker for provisioning environments','Y','','','','','Y','','Y','','','sway','home manager ','',''),(768,'1980-01-01 00:00:00',5,'en','1445938718','A2','A2','male','','','','','','','','Y','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','When I learned about Nix, it was very similar to what I imagined would be an ideal package manager, after my experience with Gentoo, Ubuntu and Antergos (Arch). So I naturally quickly switched tobit.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A7','A5','A10','','','','','','','','A11','A2','A8','','','','','','','','','','','','',NULL,'Guix. And if Guix didn\'t existed, likely portage (gentoo).','A1','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A15','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','daily driver','A4','For the same reason I started to use Nix: It is very similar to what I imagined would be the ideal package manager.','Y','','Y','','','','','Configuring the systems with programmable and unified files in a declarative way','Overriding packages','Installing/testing software with no worry about breaking stuff (rollbacking at worst)','','GuixSD, and if not for it, Gentoo.','Y','','','','','','','','Y','','','simple-nixos-mailserver, that I use (and is very convenient) to host my emails.\r\nNixpkgs of course\r\nA pletora of flakes for various things.','NixOps. Too complicated when I can just use nixos-rebuild and specify an ssh deployment remote server.\r\nsoong2nix. Just a POC that would be really good if it could compile Android.','I was a bit confused about what to put in the Nix and what to put in the Nixos section. I put pretty similar result for both most of the times, as I use both Nix and Nixos at the same time.'),(769,'1980-01-01 00:00:00',5,'en','383969977','A2','A4','male','','','','','','','','','Y','','','','','','','Y','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Started using Nix on CentOS as a solution for our internal software delivery. This never took off but I still use it and later started using NixOS at work as well.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','Y','','A7','A9','A1','','','','','','','','A8','A7','A2','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','Y','','','Y','','','','','A4','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','Atomic updates rollbacks','Declarative','','','','Y','','','','','','','Y','','','','','',''),(770,'1980-01-01 00:00:00',5,'en','570417748','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A10','A9','','','','','','','','A9','A4','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(771,'1980-01-01 00:00:00',5,'en','1231801181','A2','A6','male','','','','','','','','','','','','','','','','','','','','','','','','','robot programmer','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Installed NixOS','','','','','','','Y','','','','','','','','','','Y','','','','A9','A7','A6','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A25','A7','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','no','-oth-','to configure nixos',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','investigating the reproducability','Y','','','','','','','','','','','','Y','','','','','','','','','','JWM','','',''),(772,'1980-01-01 00:00:00',5,'en','1394922995','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I heard about it online. I had been using Fedora Kinoite with container and flatpaks but found the difficulty in altering the base image constraining. I decide to switch to nixos as it offered declarative config with adjustability. ','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A10','A7','','','','','','','','A9','A5','A6','','','','','','','','','','','','',NULL,'Containers like toolbox on an immutable base with flatpaks for user apps.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','It offered the benefits of immutability and such without being difficult to adjust.','Y','','Y','','','','','Configurability','Reproducibility','Extensibility','Simplify flakes slightly to allow for replacing configuration.nix with a flake by default. Then deprecating channels and the old nix-Command commands.','Fedora Kinoite ','Y','','','','','','','','Y','','','Sops-nix\r\nHome-manager\r\nDisko\r\nImpermanence','',''),(773,'1980-01-01 00:00:00',5,'en','1964370289','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','Y','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A3','I wanted to install NixOS and I fell in love with the whole nix ecosystem','','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A2','A7','','','','','','','','A7','A5','A8','','','','','','','','','','','','',NULL,'Docker, ansible, flatpak, terraform','A4','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','ConcourseCI','A15','A9','A2','A1','','','','','','','','','','','','','','','','','','A1','A15','A9','','','','','','','','','','','','','','','','','','','','','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was an old arch user that was fed up with its instability and willing to easily contribute to my OS. NixOS was the only distro with the same/bigger amount of packages easily available, very stable, looking like a toy (Being able to *code* your os conf was really appealing) and with a clear/easy contribution workflow','Y','','Y','','','','','Stability','Huge package set','Reproducibility','Support for SELinux','Fedora Sericea','Y','','','','','','','','Y','','Sway','Flake-parts to easily build flake','',''),(774,'1980-01-01 00:00:00',5,'en','1586351376','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A2','A3','A7','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Homebrew, Docker','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A5','A7','A13','A14','A20','','','','','','','','','','','','','','','','','A1','A20','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','Y',NULL,'Because i work on a mac','If I had a Linux machine, I would definetly use NixOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(775,'1980-01-01 00:00:00',5,'en','516385933','A4','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','I wanted a system that did not break and forced me to be organized ','','Y','','','','','Y','','','Y','','','','Y','Y','','Y','','','','A2','A1','A9','','','','','','','','A6','A13','A9','','','','','','','','','','','','',NULL,'Guix because it is also declarative ','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A22','A2','','','','','','','','','','','','','','','','','','','A22','A4','A19','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I wanted a declarative system that didn\'t break and didn\'t require me to package everything by myself (lots of pre included packages)','Y','Y','','','','','','Declarative system management','Reproducability','Ease of use, consistency (everything in Nix, no 27462 different languages to configure tools)','I would allow NixOS to be configured with other languages, such as Python ','Guix, because it is basically the only other declarative os','Y','','','','','','','','Y','','','fenix and nil','','Thank you all for the best OS ever! ♥️'),(776,'1980-01-01 00:00:00',5,'en','1940972130','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Desire to have virtualenvs for all projects, not just Python.','','Y','','','','','Y','','Y','','','','','','Y','Y','Y','','','','A1','A3','A9','','','','','','','','A9','A5','A13','','','','','','','','','','','','',NULL,'I\'d probably be clobbling together a lot of Docker containers with tools instead.','A4','','','','','','','','','','','','','','','','','','','Y','','','TeamCity','A9','A4','A3','A20','A2','A1','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Frustration with yet another ArchLinux upgrade failure, and wanting a more declarative system.','Y','','Y','Y','','','','atomic rollbacks','declarative configuration','large package selection','add: secure boot\r\nchange: nix language','Probably still ArchLinux, but maybe I would have ventured into a BSD by now?','Y','','','','','','','','','','herbstluftwm','nixos-generate','remote builders',''),(777,'1980-01-01 00:00:00',5,'en','1883087214','A2','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I learnt about it through the HPC group at Grenoble university who regularly organises meetups about Nix and Guix.','Y','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A6','','','','','','','','A5','A9','A6','','','','','','','','','','','','',NULL,'Guix','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A13','A14','A15','','','','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Learning resources ','Y',NULL,NULL,NULL,NULL,'','','Y','','','A2','Saw it mentioned on Twitter, got intrigued ','Y','','','','','','','Declarative configuration ','Up-to-date desktop packages','Swift upgrades and rollbacks','A GUI to discover and edit configuration options','Debian','Y','','','','','','','Y','','','','nixos-hardware, home-manager, nix-darwin','','Keep up the good work, you\'re awesome!'),(778,'1980-01-01 00:00:00',5,'en','759446131','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','N','N','Y','','','','too many ways to do the same thing (flakes?)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','good, stabilized tooling and docs, one way to do things, documentation or example to start off when migrating from debian, especially when you have 100% debian in your cluster',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(779,'1980-01-01 00:00:00',5,'en','54150884','A2','','male','','Y','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A1','A10','A2','','','','','','','','A5','A13','A6','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','Y','Y','','','','Y','','','','','','A15','A22','A24','A23','A20','A26','A2','','','','','','','','','','','','','','','A22','A15','A24','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','Declarative System','Hassle-Free installation of software','','','','Y','','','','','','','','Y','','','','',''),(780,'1980-01-01 00:00:00',5,'en','1827917481','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started using Nix through NixOS because of the centralization of the configuration and the possibility to deploy a system with a couple of commands. I was using Debian, and while I was very happy about it, it was always trouble to switch between computers because of the configuration part of the process. With NixOS, all the hassle disappeared.','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'I would use something like Ansible.','A4','','','','','','','','','','','','','','','Y','','','','','','','','A15','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I switched from Debian with NixOS 22.11 because of the reproducibility and the centralized configuration, which make it a lot less troublesome to deploy the same configuration on a new machine.','Y','','','','','','','Centralized configuration','Reproducibility','Easily extensible','The standard library: it feels a bit chaotic, with functions available from builtins or lib, not available everywhere, and I sometimes get lost about it. And the corresponding documentation, which I would prefer to be more easily searchable, instead of being part of a huge web page that must be text-searched with a lot more information.','Debian','Y','','','','','','','','','','Sway/i3','home-manager\r\nimpermanence\r\nnix-prefetch','I don\'t remember any','Thanks for the great work, it is a real pleasure to use NixOS as a daily driver. It takes some time to get used to the Nix language (especially how to use it with NixOS/nixpkgs), sometimes due to outdated examples or difficulty to find the information (a lot of resources, I find it difficult to get the most relevant for my case) , but when you get a grasp on it, it feels really powerful for system administration.'),(781,'1980-01-01 00:00:00',5,'en','876957427','A4','A2','male','','','','','','','','','Y','','','Y','','','','','','','','','','','','','','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(782,NULL,2,'en','1079825969','A6','A4','male','','','','','Y','','','','','','Y','','','','','','','Y','','','Y','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducible desktop/laptop setup','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A1','A2','A9','','','','','','','','A12','A8','A6','','','','','','','','','','','','',NULL,'Ansible for some things. ','A4','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A9','A4','A2','','','','','','','','','','','','','','','','','','','A2','A9','A4','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(783,'1980-01-01 00:00:00',5,'en','1908859646','A2','A2','male','','','','','','','Y','Y','Y','Y','Y','','Y','Y','','','','Y','','','','','Y','Y','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(784,'1980-01-01 00:00:00',5,'en','728698341','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Flakes and declarative builds were definitely the biggest reason for me. Also the fact that it\'s a single tool for almost everything; that simplifies things a lot.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'Don\'t even want to think about that.','A7','','','','Y','Y','','','','','','','','','','','Y','','','','','','','A2','A17','A25','','','','','','','','','','','','','','','','','','','A2','A17','A25','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Still figuring out the language. Documentation also.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Same as nix. Declarative builds and flakes mainly.','Y','','Y','','','','','Isolation','Consistency','Boot speed','Make it better documented. As far as that goes trying to put all the documentation for everything in like a single page would be great.','Probably Arch.','Y','','','','','','','','','','i3','Alejandra is pretty good. flake-parts, flake-utils, NUR, home-manager.','neovim overlay','Doing a great job with these and keep going!'),(785,'1980-01-01 00:00:00',5,'en','1932005932','A2','A5','male','','Y','','','','Y','Y','Y','','Y','Y','Y','Y','','Y','','','Y','','','Y','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','- Transparency and reproducibility\r\n- Portability\r\n- Large number of available packages','','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','','A1','A2','A8','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'Vagrant, Ansible, Puppet/Chef','A4','','','Y','Y','Y','','','','','','','Y','','','','','','Y','','','','','A1','A7','A3','A4','A17','A2','A5','','','','','','','','','','','','','','','A1','A7','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'N','Y',NULL,'Not stable enough - losing too much time debugging issues when things go wrong.','I already have a NixOS VM that I try to maintain and see how stable it is throughout time before committing - it works well, but not well enough - needs rock-solid stability like Debian and Fedora.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The problem with the Nix ecosystem is that there are TOO MANY projects - it needs concentrated effort on a few that work well, instead of many that don\'t.','','I already mentioned this, but maybe it\'s worth repeating. For Nix to succeed, it needs first and foremost stability: few tools that just work and good documentation that shows the orthodox way to do things - these days it seems everyone starts their own half-though project that gets abandoned after a short while, and while it\'s great for hacking, it\'s not very productive.'),(786,'1980-01-01 00:00:00',5,'en','1213917707','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','it is the de-facto need for nixos','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A10','','','','','','','','A3','A13','A5','','','','','','','','','','','','',NULL,'Probably Guix, although the syntax of it seems impossible.','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I like declarative systems and nixos seems to be the best one so far.','Y','','Y','','','','','Declarative Configuration','Able to revert stuff easily','Stability','Make declaration less optional and have a \"recommended\" way of doing things. Modifying a package can be done literally 10+ different ways.','Probably guix or arch','Y','','','','','','','','','','Awesomewm','Home Manager ','Nixops','We need documentation, or god forbid even support a new syntax, for mere mortals who doesn\'t come from functional programming background.'),(787,'1980-01-01 00:00:00',5,'en','1077080468','A2','A2','male','','','','','','','Y','Y','','Y','','Y','','','','','','','','','','','Y','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A2','I wanted to try something new ','Y','Y','','','','','Y','','','','','','','Y','Y','','','','','','A1','A7','A2','','','','','','','','A3','A10','A6','','','','','','','','','','','','',NULL,'Arch or gentoo probs','A1','','','','','','','','','','','','','','','','','Y','','','','','','A15','A4','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Flatpak :^)','A2','','My own laziness (:','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A2','','Y','Y','','','','','','Huge Package Repo','Immutable FS ','Rollbacks and easy rice stealing :^)','Add Rust support for the .nix files :^)','Artix or Gentoo most likely','Y','','','','','','','Y','Y','','','','',''),(788,NULL,2,'en','2045526980','A2','A4','male','','','','','','','','','','','','','','','','Y','','Y','','','','','','','Freelance Solution Architect','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','Y','Y','','','A2','The main reason is: because I can have the exact same system across all my machines, with certainty. All the other strengths of Nix too, obviously, but this is the main one.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','Y','I want to automate everything. I\'m not there yet because I still have to nearn Nix but this is what I want to use it for.','A1','A7','A2','','','','','','','','A14','A5','A1','','','','','','','','','','','','',NULL,'ArchLinux and Terraform/Ansible','A4','','','','Y','','','','','','','','','','','','','Y','','','','','','A1','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','-oth-','Sorry but this poll is weirdly made. I had to choose \"Yes I use Nix\" because the initial question included \"NixOS\", but I don\'t really use Nix, I use NixOS. I want to learn Nix but the ressoures are not that great to be honnest. What we need is a wiki as great as the one for ArchLinux.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(789,'1980-01-01 00:00:00',5,'en','885280317','A2','A2','male','','','Y','','','','Y','Y','','Y','Y','Y','Y','','','','','Y','','','','','Y','Y','','','','Y','','','Gentoo','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Work requires it.','','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','Y','Y','easier to tell for what we do not use it (for taxes)','A5','A6','A10','','','','','','','','A5','A11','A14','','','','','','','','','','','','',NULL,'Gentoo','A2','','','','Y','Y','Y','Y','Y','','Y','','','','','','','','Y','Y','Y','','','A3','A4','A22','A19','A5','A15','','','','','','','','','','','','','','','','A1','A15','A10','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','If it was not required for work I\'d use Gentoo on my work laptop etc.','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','I wanted to see how good Nix interavcts with me if I\'m using full OS instead of standalone PM.','Y','','','','','','','System config','Reproducible','Hard to maintain','Portage','Gentoo','','','','Y','','Y','','','Y','','Arcan + Durden','zig-overlay','IDK','If only such manpowers and hype were given to Gentoo... It suffers from lack of contributors a lot.'),(790,'1980-01-01 00:00:00',5,'en','939331601','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','N','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(791,'1980-01-01 00:00:00',5,'en','787605413','A2','A4','male','','','','','','Y','Y','Y','','','Y','','','','','','','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Having the same environment across different Operating Systems, without the need to virtualize or use containers.','Y','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A1','A2','A9','','','','','','','','A9','A8','A6','','','','','','','','','','','','',NULL,'Dockerfiles, *sigh*','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A3','A4','A15','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducibility. It is addictive to add more machines to your personal setup and have them with bells and whistles one command away (nix-install --flake ...). Defining your system in a declarative way is a superpower.','Y','Y','Y','','','','','Reproducibility','Declarative','Composable','Nix/NixOS/nixpkgs are good as they are, evolving them is fine. However, I would focus on a *layer* on top of it, that is approachable by everyone in a trivial fashion, but that at the same time keeps all Nix/NixOS/nixpkgs properties.','Highly imperative-driven fur-balls of state in the form of OpenSUSE, Ubuntu, or something of the sorts.','Y','','','','','','','Y','','','','home-manager, sops-nix','--','I\'d like to check stuff like NixOps and similar; but I\'m doing nixos-rebuild manually on all my machines, all of them taking a flake as an input that is stored in my GitHub account.'),(792,'1980-01-01 00:00:00',5,'en','1335911149','A2','A3','male','','','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','Y','','','','','','','Y','Y','','','','','','A2','A6','','','','','','','','','A14','','','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A8','A4','A22','','','','','','','','','','','','','','','','','','A8','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(793,'1980-01-01 00:00:00',5,'en','1305247124','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','nixos, reproducible development environment','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A4','A3','A6','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A25','A13','A14','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','declarative os','Y','','','','','','','','','','','','','','','','','','','','','','','','',''),(794,'1980-01-01 00:00:00',5,'en','1273341881','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I played around with Unix systems for a while, but was frustrated by the volatility of my work. Every setup I had would require continuous maintenance. I found nix to completely free this overhead. Declaring my own system in a language gave me a stability I\'ve only been dreaming of. It scales across machines and architectures, and saves me a lot of time and effort. Nix is Linux done right.','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A5','A8','A1','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','','','','','','','','','','','','','','','Y','','','','A2','A4','A13','','','','','','','','','','','','','','','','','','','A2','A4','A13','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','Y','','','','','Declarative and reproducible OS configuration','Stable packages for Linux desktop','Modularity and configuration re-use across systems','I would provide better documentation and search engines for OS/package configuration settings\r\nI would also provide much better support for Wayland','Guix','Y','','','','','','','','','','Hyprland','','','Thank you for your efforts. You are really making a difference '),(795,'1980-01-01 00:00:00',5,'en','455881043','A2','A2','male','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I thought the concept of declarative configurations was very appealing.\r\nHeard from it from a friend.','Y','Y','','Y','','','Y','','','','','','','','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A4','A8','A10','','','','','','','','','','','','',NULL,'Not Linux.\r\nNo seriously.','A7','','','','Y','','','','','','','','','','','','','','','Y','','','','A22','A15','A13','','','','','','','','','','','','','','','','','','','A24','A22','A8','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Having nothing that\'d be well placed in nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Friend introduced me to it, loved the idea of declaractive configurations.','Y','','','','','','','Declarative Configuration','Dependency Management','Reproduceability','Add: A transpiler, that transpiles to Nix.','Windows only.','Y','','','','','','','','','','river, xmonad','-','nix-channels, because nix-flakes were much more comfortable to use.','You do god\'s work, seriously, thank you so much!'),(796,NULL,1,'en','891876292','A2','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(797,NULL,2,'en','2019800435','A2','A3','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Wanted to be able to manage a server declaratively.\r\nI also ran in an situation where I would need two versions of the same library , which is complicated on arch','','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','','A1','A2','A8','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Arch, with AUR','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A4','A9','A1','','','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Working on building and deploying closed source software ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(798,'1980-01-01 00:00:00',5,'en','93607381','A2','A4','','','','','','','Y','Y','','','Y','Y','','','','','Y','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Heard of it through a friend.','Y','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A6','A2','A12','','','','','','','','','','','','',NULL,'guix. but if not, classical config mgmt ala puppet and containers on arch.','A4','','','','','','','','','','','','','','','','','','','','','','','A1','A5','A15','A2','A11','A9','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Friend.','Y','','Y','','','','','Snapshot/rollback','Configurability if the system','All the advantages of nix+nixpkgs','- Standardized support for secrets\r\n- Content addressable store and package signing \r\n- Better security story\r\n- Generally improved UX, such as debuggability of derivations and modules','Guix or Arch','Y','','','','','','','','','','Awesome','','',''),(799,'1980-01-01 00:00:00',5,'en','2081576294','A5','A5','male','','','','Y','','','','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Bumped into NixOS on some random YouTube video. Tickled by the idea of a Linux system that could be captured in a config file & rolled back to a previous consistent state in case of problems. Currently using NixOS on personal machines; I think I might find uses for it at work once I get smart enough about it.','','Y','','Y','','','Y','','','','','','','Y','','','Y','','','','A2','A1','A7','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Fedora, maybe Silverblue.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don\'t know how. I\'m still struggling to learn enough to make my personal machines do what I want. I\'d like to contribute to Nixpkgs, but I\'m not smart enough yet (and it\'s unclear how to progress).','Y',NULL,NULL,NULL,NULL,'A1','','Y','','As daily driver','A2','See answer from previous Nix section.','Y','','','','','','','Declarative / reasonably complete & reproducible system config','Rollback to previous / known-good generations','','Right now? Clear, comprehensive, high-quality documentation & learning materials.','Fedora, maybe Silverblue.','Y','','','','','','','Y','','','i3/sway curious','Home-manager is a central part of my Nix experience. I\'m currently trying to figure out how to get emacs-overlay working; this is also fairly important to me.','None.','Thank you for bringing Nix/NixOS into the world! Despite a significant amount of frustration trying to figure things out, I\'m still really excited by Nix/NixOS.'),(800,'1980-01-01 00:00:00',5,'en','1160883004','A5','A4','fem','','','','','','Y','Y','','','','Y','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was at a Haskell workshop in 2014 where the instructor switched configuration from one version of GHC to another with one command and from that point I was hooked. ','Y','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A9','','','','','','','','A6','A2','A12','','','','','','','','','','','','',NULL,'Whatever was native to the BSD I was using, probably. ','A6','','','','Y','Y','','','','','','','','','','Y','','Y','','Y','','','','A1','A15','A13','A11','A23','A7','','','','','','','','','','','','','','','','A23','A24','A11','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','My kids\' laptops','A5','I needed Nix on Linux and I didn\'t want to compromise on principles by shoving Nix on Fedora or whatever I would be using. ','Y','','Y','Y','','','','Declarative system + user configuration in code','Binary substitution/cache','Ability to choos own adventure (using stable versus unstable channels)','Native, industrial strength, yet extensible secrets management mechanisms. ','A BSD, probably DragonflyBSD. ','Y','','','','','','','','','','Sway','','NixOps. We are no longer on speaking terms and in 2016-2017 I did try to make it make sense. (It works ok for tiny scenarios but not what I needed.)','Keep up the great work.<3'),(801,'1980-01-01 00:00:00',5,'en','1594237436','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','haskell packages on gentoo','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A5','A1','A2','','','','','','','','A13','A8','A5','','','','','','','','','','','','',NULL,'gentoo','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A25','A3','','','','','','','','','','','','','','','','','','','A3','A4','A13','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','nix language is hard because no types','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','tired of maintaining two gentoo machines','Y','','Y','','','','','declaritive','source based','haskell packages ','I would fix all the theming issues','gentoo ','Y','','','','','','','','','','LXQT','','',''),(802,NULL,1,'en','1488075651','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(803,NULL,NULL,'en','1627417842',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(804,NULL,NULL,'en','46665229',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(805,NULL,NULL,'en','225687205',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(806,'1980-01-01 00:00:00',5,'en','1413972412','A1','A2','male','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','YouTube video about NixOS I watched last year was really interesting. And I found home manager is hero for me ( as dotfiles freak). ','Y','Y','','Y','','','Y','','','','','','','Y','Y','Y','Y','','','','A6','A2','A7','','','','','','','','A8','A4','A6','','','','','','','','','','','','',NULL,'arch linux and asdf','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A17','A25','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','YouTube video ','Y','','','','','','','','','','','arch linux','Y','','','','','','','','','','i3','','',''),(807,NULL,2,'en','372071887','A2','A5','male','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','Consultant ','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','','','','','','Y','','Y','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','','','','','','','','','','','','','','','',NULL,'Gentoo portage','A4','','Y','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(808,'1980-01-01 00:00:00',5,'en','542161535','A4','A2','male','','','','','','','Y','','','Y','','','','','','','','Y','','','','','Y','','','Y','Y','','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(809,'1980-01-01 00:00:00',5,'en','1900423213','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducible configuration of complete Linux systems, so NixOS brought me to Nix.','','Y','','','','Android via nix-on-droid','Y','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','A7','A2','A10','','','','','','','','A8','A12','A11','','','','','','','','','','','','',NULL,'guix','A4','','Y','','Y','Y','','Y','','','','','Y','Y','','','','Y','','Y','','','','A2','A15','A1','A10','A9','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Declarative configuration','Y','Y','Y','Y','Y','','','Declarative Configuration','ZFS Support (for rollbacks)','Systemd integration','Make the minimal closure smaller, getting rid of the perl requirement, dashboards for package upgrades.','guix-sd or fedora silverblue','Y','','','','Y','','','Y','','','','direnv-flakes, nixos-anywhere, dream2nix, floco, others','doom-nix',''),(810,NULL,2,'en','91085026','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A1','A3','A7','','','','','','','','A2','A12','A5','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(811,NULL,NULL,'en','1620215739',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(812,'1980-01-01 00:00:00',5,'en','1119361108','A2','A3','male','','','','','','','','','','','','','','','','','','','','','Y','','','','Security Engineer ','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted an reproducible OS. ','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A10','A2','','','','','','','','A6','A9','A14','','','','','','','','','','','','',NULL,'Debian','A1','','','','','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Time and complexity of the repo.\r\nAnd I\'m not a good nix writer yet. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted a reproducible desktop OS. ','Y','','','','','','','Declarative configuration','Going back in time ','Share configuration with others ','Better ressources to learn NIX','Debian','Y','','','','','','','','Y','','','The website/documentation ','Secrets managements options ',''),(813,'1980-01-01 00:00:00',5,'en','833297523','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A1','A3','A2','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A13','A5','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','Y','Y','','','','Declarative configuration','Common configuration language for various programs','','','','Y','','','','','','','Y','','','','home-manager\r\nsearch.nixos.org\r\nstatus.nixos.org\r\nhttps://nixpk.gs/pr-tracker.html','',''),(814,'1980-01-01 00:00:00',5,'en','940764771','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','I had three computers and managing their config was difficult as was keeping them in sync. Instead of using chef or puppet I moved from Ubuntu to nixOS’s declarative syntax to specify the packages and configuration. System config is all I’ve learned so far but it’s been incredibly helpful. ','','','','','','','Y','Y','','','','','','','','','Y','','','','A1','A9','A7','','','','','','','','A14','A5','A6','','','','','','','','','','','','',NULL,'Chef','A4','','','','','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Need to learn more. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','','','','','Chef+Ubuntu','Y','','','','','','','Y','','','','','',''),(815,'1980-01-01 00:00:00',5,'en','253396861','A2','A3','male','','','','','','','','','Y','','','Y','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','With imperative configuration it is easy to lose track of your work, and that kept happening to me. Since Nix serves both as a source of truth and allows me to document things in the code itself, Im less likely to forget how or why a certain part was configured. Its more useful than keeping a separate journal for that.','','','','','Y','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A2','A10','','','','','','','','A8','A6','A2','','','','','','','','','','','','',NULL,'System package manager, spack','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A4','A22','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as with Nix, for a single source of truth configuration.','Y','Y','','','','','','Configuration-as-code','Sharing configuration between multiple machines','Ease of packaging, extending packages, and overriding packages','- Incremental builds, as hacking on larger things like Linux is a pain because of the recompilation time.\r\n- A way to add private flake inputs','Another Linux distribution','Y','','','','','','','','','','river','','',''),(816,NULL,NULL,'en','81050778',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(817,'1980-01-01 00:00:00',5,'en','564762202','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','','','','','','','','Y','Y','Y','','Y','','A2','A3','A9','','','','','','','','A3','A4','A12','','','','','','','','','','','','',NULL,'docker, asdf','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A21','A2','A15','A17','A4','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','awesonewn','','',''),(818,'1980-01-01 00:00:00',5,'en','1381416761','A2','A5','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Bad influence by friends. ','Y','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','A7','A2','A6','','','','','','','','A4','A8','','','','','','','','','','','','','',NULL,'Ansible ','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A18','A4','A17','A15','A26','','','','','','','','','','','','','','','','A26','A9','A17','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','For home server initially ','Y','','Y','Y','','','','Rollbacks ','Declarative config ','Big package catalog ','Stabilize flakes','Ansible ','Y','','','','','','Hey','','','','Nimdow ','','',''),(819,'1980-01-01 00:00:00',5,'en','441350862','A2','A4','male','','','','','','Y','Y','','','','','','','','','Y','Y','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','I wanted my home server to be easy to maintain and liked the idea of a declarative configuration file for configuring the entire machine that NixOS brought, and I invested some time in getting familiar enough with it that I could get something running on a Raspberry Pi. It kept running for years and was eventually upgraded to more powerful hardware.\r\n\r\nI\'ve recently started embracing Nix more on the MacOS laptop I use for work in order to reap the benefits there as well.','Y','','','','','','Y','Y','','','','','','Y','','','Y','','','','A1','A2','A9','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'Probably Arch Linux and Homebrew','A4','','','','','','','','','','','','','','','','','','','Y','','','','A2','A9','','','','','','','','','','','','','','','','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','On a Raspberry Pi I wanted to use it as a small home server with minimal maintenance, and I liked the idea of the declarative configuration format.','','','Y','','','','','Declarative configuration','Modules to ease the configuration of various services','Automatic updates and garbage collection','A stable, rolling-release option would be grand','Arch Linux','Y','','','','','','','','','','','Agenix for encrypting secrets and Home Manager','I tried out Nixops once but didn\'t immediately get it to work so dropped it',''),(820,NULL,1,'en','570216782','A2','A3','male','','','','','','Y','Y','Y','','Y','Y','','','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(821,'1980-01-01 00:00:00',5,'en','449593474','A4','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','','','','','','Y','','Y','','','','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A6','A5','A8','','','','','','','','','','','','',NULL,'If Nix didn\'t exist, I suppose Guix wouldn\'t exist either, so that doesn\'t count. I wolld probably still be using Pacman. ','A2','','','','Y','Y','','','','','','','Y','','','','','Y','','','','','','A2','A20','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','','','','','','Declarative system configuration','Rollback support','Pacbage availability','','Archlinux, as GuixSD wouldn\'t exist either. ','Y','','','','','','','','Y','','','','',''),(822,NULL,NULL,'en','2085546888',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(823,NULL,NULL,'en','244011312',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(824,NULL,1,'en','1046032311','A2','A3','male','','','','','','','Y','Y','','','','','','','','Y','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(825,NULL,-1,'en','87685334','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(826,'1980-01-01 00:00:00',5,'en','344883147','A1','A5','male','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','It was annoying to setup development environment and daily tools especially when I buy a new computer.','Y','','','','Y','','Y','','','','','','','Y','','','Y','','','','A1','A7','A9','','','','','','','','A8','A10','A14','','','','','','','','','','','','',NULL,'homebrew','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A2','A13','A15','A21','A25','','','','','','','','','','','','','','','','','A13','A25','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Nix seems to have multi layer concepts for me and it is difficult to fully understand those concepts.','N','Y',NULL,'I didn\'t have much knowledge about Nix at that time and it was too difficult for me to use NixOS easily.','If I have enough free time to try NixOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'No.','No.','I read a blog post about Nix in Japanese language, which I can\'t find the URL, it made me some insights about Nix idea. The important thing about Nix might be a document about concept related to Nix. Nix is complex system but I feel if the complex concepts are well organized or well presented, it would have been much easier for me to start using Nix. I now regularly use Nix but I don\'t think I fully understand important thing, it is nice for me to have a well organized concept document.'),(827,'1980-01-01 00:00:00',5,'en','1118694936','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Read about it on a blog and was fascinated about it','','Y','','','','','Y','Y','','','','Y','','','Y','Y','Y','','','','A2','A10','A6','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A2','A4','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','That one time i wanted to change something there was already an open PR with a long discussion without a result','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Read about the erase your darlings setup and config drift was and not knowing what i configured anymore were previously reasons why i reinstalled linux','Y','','Y','','','Y','','Reproducibility','Only requiring nix store to boot','','Configuring KDE plasma (panels, wallpaper) is difficult\r\n\r\nBetter support for building Raspberry Pi sd images and then continue updating using the same config','Arch Linux because of the AUR','Y','','','','','','','','Y','','','home-manager\r\nplasma-manager\r\nsops-nix\r\ncomma\r\n','',''),(828,'1980-01-01 00:00:00',5,'en','730765606','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Looked for a tool that could help with automating my Mac beyond what Brew could offer.\r\nEventually expanded into trying NixOS.','Y','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','','A2','A7','A1','','','','','','','','A4','A12','A3','','','','','','','','','','','','',NULL,'Probably some combination of Puppet and Ansible for servers.\r\nAnd just Brew and shell scripts for my Mac.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A4','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'','Y','Y','','','A2','Became comfortable with Nix on my personal machines, wanted to explore using it for servers.\r\nAlso the automation capabilities of NixOS appealed to me. ','Y','','Y','Y','','','','Remote building capabilities - can build a machine \'image\' ahead of time, resulting in very fast deployments.','Strong ecosystem - haven\'t needed to create many custom pkgs/modules, and when I do, I can find examples online.','Customization - outside of some \'core\' services, the system can be customized as desired','It would be nice if the \'disko\' and \'impermanence\' projects were eventually collapsed into NixOS, and officially supported.\r\nEven with \'disko\', disk management has always been a pain point.','Probably Debian for stability.','Y','','','','Y','','','','Y','','','* impermanence - most of my production machines are \'stateless\'.','* disko - loved the idea, but the documentation just wasn\'t there.',''),(829,'1980-01-01 00:00:00',5,'en','1808354737','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','Y','','','Y','','Y','Y','','','','Y','Y','Y','Y','','','','A6','A1','A2','','','','','','','','A4','A5','A8','','','','','','','','','','','','',NULL,'Docker','A1','','','','Y','Y','Y','','','','','','','Y','','','','','','Y','','','garnix.io','A10','A9','A1','A15','A5','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','Y','Y','','','','Deployments using Colmena','Everthing is in Nix code','Provision a lot of machines','','Debian','Y','','','','Y','','','Y','','','','Devenv','',''),(830,'1980-01-01 00:00:00',5,'en','148747586','A8','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I got tired of having different machines with different configurations. I just wanted a single configuration I could customise and migrate across. A nix flake system configuration makes this quite fun and easy to accomplish that doesn\'t feel.. \'hacky\'.','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A3','A2','A7','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'PopOS or Gentoo','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Imposter syndrome - perceived lack of skill.\r\nI find writing in Nix difficult.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I watched a youtube video of matthewcroughan who showed some features of nix.\r\nI gave it a go as a test run, then quickly fully migrated my entire home lab over.','Y','','Y','','','','','Rollback support','Configuration file stored in git repository','Temporary environments','Better documentation with nix derivations.\r\nMore examples of custom python modules, more examples of custom compiled software, etc.','PopOS, Debian or Gentoo','Y','','','','','','','Y','','','','Home manager','I tried getting nixos onto my old Oneplus 6. I failed with reasons I don\'t understand why.',''),(831,'1980-01-01 00:00:00',5,'en','1108819215','A2','A4','male','','','','','','','Y','Y','Y','','Y','','','Y','Y','','','Y','Y','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','Teach to students/employees','A4','I got towards nix via the haskell bubble on twitter in ~2016. I was amazed that all projects that have a shell.nix file provide a single-command workflow to simply start working with the right toolchains and deps. After reading more about it i decided in the same month to start using NixOS on my personal laptop to ramp it up quickly and use all the advantages: Congruent sys administration, declarative whole-system description, dependency management, etc. etc. ','Y','Y','','Y','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','Y','','A2','A7','A1','','','','','','','','A3','A2','A9','','','','','','','','','','','','',NULL,'This is very hard to imagine because there is nothing comparable. Probably still docker and a lot of hard alcohol to ease the pain.','A4','','','','Y','Y','','','','','','','','Y','','Y','Y','Y','','Y','','','','A13','A2','A4','A15','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Teach to students/employees','A5','What nix does with packages was completely unbelievable to me, and NixOS is basically applying the same strategy at building whole-system images/top-level closures. It enables declarative, congruent system administration. I can now test exactly the same system unit configurations as the ones that i deploy on real HW. No more stupid docker compositions.','Y','Y','Y','Y','','Y','','Declarative System Configuration','Mixing in my own modules with nice auto-documentation etc.','Remote-zapping of new configs over old configs without risk','I would love to have my own list of module imports that starts from zero, so i can choose which modules i actually have to deal with. Also, i would like to make all modules files \"side-effect free\" regarding their changes on the system config by just importing - no module should change anything in the system config when you only import it. this could maybe be tested automatically? Only profiles should enable things when importing them.\r\nOn top of that, it should be possible to build strictly smaller systems.','Different distros for different purposes, and hard alcohol to ease the pain.','Y','','','','','','','Y','','','','Nixos-anywhere, nixos-hardware, IOHK\'s haskell.nix, horizon haskell, crane','',''),(832,NULL,NULL,'en','758626772',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(833,'1980-01-01 00:00:00',5,'en','1878298408','A2','A3','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I ran into an old program that needed an old library to build, and it hard in other distro to have multiple versions of the same library ','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A2','A1','A8','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Archlinux with AUR','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A4','A9','','','','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Working with closed source software','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Native support of nix\r\nDeclarative configuration of whole OS','Y','Y','Y','','','','','Declarative configuration of the whole OS ','Reproductible build','The whole configuration is in a file with comments ','','Archlinux with ansible, deploy more with Kubernetes','Y','','','','','','','','','','i3','Home Manager, direnv, rust tooling (Fenix, crane)\r\n\r\nNot regularly, but I really like disko','',''),(834,'1980-01-01 00:00:00',5,'en','645305318','A2','A2','male','','','','','Y','','','','','','','','','','','Y','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I wanted to share my LaTeX notes in a more reproducible way. I also use Nix for a weird JSON config generator; started to just get more comfortable in the language, but loved it, and I find it now much better than YAML or other custom DSLs.','Y','Y','','','','','Y','','','','','Y','','Y','Y','Y','','','Y','','A2','A8','A1','','','','','','','','A12','A2','A6','','','','','','','','','','','','',NULL,'Makefile and defensive testing','A4','','Y','','Y','Y','','','','','','','','','','','','','','','','','','A2','A25','A21','A17','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','N','I\'m open to trying it! Just need to find the time :)\r\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(835,'1980-01-01 00:00:00',5,'en','401148034','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Separate my project workspaces with different environments to easily switch between them without any impact to my system.','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A1','A3','','','','','','','','A8','A9','A2','','','','','','','','','','','','',NULL,'Vagrant','A1','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A13','A2','A1','A19','A11','','','','','','','','','','','','','','','','','A2','A19','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time and take responsibility','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Setup a raspberry pi reproducible','','','Y','','','','','Modules','home-manager','reproducible','','debian','Y','','','','','','','','','','','','nixops',''),(836,'1980-01-01 00:00:00',5,'en','1548798619','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(837,'1980-01-01 00:00:00',5,'en','1019295333','A2','A4','male','','','','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Functional Programming + a lot of DevOps experience','','Y','','Y','','','','Y','','','','','','Y','','Y','Y','','','','A2','A7','','','','','','','','','A6','A10','','','','','','','','','','','','','',NULL,'A whole bunch of shell scripts','A4','','','','Y','','','','','','','','','','','','','','','','','','','A11','A2','','','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A5','','','','Y','','','','','Functional','','','','','Y','','','','','','','','','','','','','1. Nix is the superior answer to containers/K8s for a lot more use cases. We need to increase our marketing and influence in that space.\r\n2. Nix on Cloud '),(838,'1980-01-01 00:00:00',5,'en','1753505992','A5','A2','male','','','','','','','Y','Y','','','Y','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A1','It makes life much easier for getting through reinstalls due to flakes. So copying an entire server over isn’t very hard.','','Y','','Y','','','Y','Y','','','','','','Y','Y','','','Y','','','A2','A3','A6','','','','','','','','A10','A14','A6','','','','','','','','','','','','',NULL,'Likely Debian as it was what I used before.','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A1','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Haven’t had a reason to.','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Because my home server is using nixOS, so running a WSL environment makes it easier to test and deploy flakes.','Y','','Y','','','','','Flakes','Dev environments','Atomic installation.','N/a','Debian','','','','Y','','','','','','','No desktop env or window manager.','','',''),(839,'1980-01-01 00:00:00',5,'en','928481084','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','For home-manager & then NixOS','Y','','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A14','A9','A8','','','','','','','','','','','','',NULL,'brew on macOS with custom dotfiles management','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A17','','','','','','','','','','','','','','','','','','','','A15','A17','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','Reproducibility','Backup & Sync','Code-as-OS','Better documentation & Starter guide. Possibly config generation with support for choosing between X11/Wayland, PulseAudio/Pipewire, etc...','Arch','Y','','','','','','','','','','i3','nix-darwin/home-manager','-',''),(840,'1980-01-01 00:00:00',5,'en','2092137843','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','SecOps','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Reproducible Linux systems','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A8','A9','A14','','','','','','','','','','','','',NULL,'Probably Arch with Pacman and language specific package managers like Cargo.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A13','A2','A3','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Reproducible Linux configurations, specifically user configurations with home-manager','Y','','Y','','','','','Reproducible systems','Simple installation of services in configuration','Rollbacks','A simple method for building the system using optimizations. ','CachyOS','Y','','','','','','','Y','Y','','i3, Hyprland','flake-parts, flake-utils-plus, nil, home-manager, nur','nix-darwin (stopped having to use macos)',''),(841,'1980-01-01 00:00:00',5,'en','1589045681','A2','A5','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','They use it a the computer center I use for my research work. It took me time to get use of it, but I\'m now using it for pretty much all my research projets.','Y','Y','','','','','Y','','Y','Y','','','','Y','Y','','','','','','A2','A1','','','','','','','','','A9','A8','A14','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A3','A25','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'N','Y',NULL,'Too complex.','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Direnv\r\nNUR','',''),(842,'1980-01-01 00:00:00',5,'en','1505215274','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started using Nix and NixOS like 8 years ago after seeing the \"nix\" word in hackage and google it. I ended up reading some posts about NixOS and decided to give a try, and never went back.','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A2','A6','A8','','','','','','','','','','','','',NULL,'Fentanyl is a popular alternative, right? XD\r\n\r\nJokes aside, I don\'t know an alternative to Nix. I would need multiple tools, docker, cabal, npm, apt-get... and that wouldn\'t be the same.','A1','','','','Y','','','','','','','','','','','','','','','Y','Y','','','A13','A1','A25','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I was planning on making a PR for a CLI for hyper.sh (a serverless container platform) when the project was shut down. I\'ll check how I can contribute in the future to nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I discovered Nix and NixOS at the same time, I saw some nix version something in hackage and I google that. That was the start.','Y','','Y','Y','','','','Declarative configuration: having my config in a git repo, comments and so have been a game changer for me.','Reproducible system configurations (being able to run the nixos config in another machine or a VM).','Atomic upgrades and rollbacks','','I guess I would be using Arch Linux.','Y','Y','','','','','','','','','Xmonad','Nixops, flake-utils, nix-filter, comma, microvm.nix....','','Thank you Nix/NixOS developers for such an amazing job.'),(843,NULL,1,'en','2050639353','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(844,NULL,4,'en','1832744316','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL),(845,'1980-01-01 00:00:00',5,'en','448904465','A5','A2','fem','','','','','','','Y','','','','','','Y','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Distro-hopped because tmpfs on root and liked \"nix run\"','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A7','A2','A6','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'Probably docker / absolve','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A15','A9','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Same as prev','Y','','Y','Y','','','','declarative configuration','Tmpfs on root','ZFS support','I would make it possible to view the configration that the system was built from (with intact directory and file structure)','Gentoo Linux','Y','','','','','','','','','','Swaywm','','',''),(846,NULL,1,'en','1739449650','A5','A3','male','','','','','','','Y','','','Y','Y','Y','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(847,'1980-01-01 00:00:00',5,'en','981348319','A2','A3','male','','','Y','','Y','Y','Y','','','Y','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A8','A12','A9','','','','','','','','','','','','',NULL,'Guix','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A1','A2','A3','A4','A5','A6','A9','A15','','','','','','','','','','','','','','A1','A2','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','declarative configuration','amount of packages','configurability','better flatpak support (probably only useful for some of the more cursed software)','arch linux','Y','','','Y','','','','Y','','','hyprland','home-manager','',''),(848,'1980-01-01 00:00:00',5,'en','328773813','A2','A3','fem','','','','','','','Y','Y','','','','','Y','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','installed nixos','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A7','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A6','A15','','','','','','','','','','','','','','','','','','','','A6','A15','','','','','','','','','','','','','','','','','','','','','','','','A1','','No clear explanation on how to package software, from reading nixpkgs it\'s done in all manner of way and nothing seem consistent. I tried to create packages but failed to find what was missing to have the package working, error message were not helpful + documentation and example are too few to really understand correctly how to do it.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','- wanted to switch from manjaro\r\n- wanted to have nixos rollback\r\n- being able to git os configuration','Y','','','','','','','able to git system config','rollback','','i would add nixos own sandbox system something similar to firejail but entirely made in for the nix lang','arch linux','Y','','','','','','','','Y','','','','',''),(849,'1980-01-01 00:00:00',5,'en','251626432','A3','A4','male','','','','','','','','','Y','','','','','','','','','','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I use multiple machines and until Nix I had used scripts to sync all setups; Nix seemed as a step on the right direction.','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','A3','A8','A9','','','','','','','','A8','A13','A12','','','','','','','','','','','','',NULL,'Scripts','A2','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A15','A9','A3','A1','A19','A5','A2','A4','','','','','','','','','','','','','','A1','A9','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','After moving to Nix I moved to NixOS.','Y','','Y','Y','','','','reproducability','convenience','flexibility','Nicer Docker Compose management','Scripts','Y','','','','Y','','','','','','i3','home-manager and disko','\r\naria',''),(850,NULL,1,'en','1173174222','A3','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(851,'1980-01-01 00:00:00',5,'en','1131694387','A1','A5','male','','','','','','Y','Y','','','Y','Y','','Y','Y','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducible, reliable. As a replacement for tools like nvm, rvm, rbenv, asdf, rtx, docker ','Y','Y','','Y','','','Y','','Y','','','','','Y','Y','','','','','','A2','A1','A3','','','','','','','','A8','A13','A14','','','','','','','','','','','','',NULL,'docker, saltstack','A1','','','','Y','','','','','','','','Y','','','','','Y','','Y','','','','A5','A1','A19','A7','A9','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Knowledge and environment','N','N','Easier and lower learning curve',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Hydra','None',''),(852,NULL,NULL,'en','206028508',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(853,'1980-01-01 00:00:00',5,'en','214002073','A2','A3','male','','','','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Heard about it from a friend, and really liked the idea of having a file that describes the packages I have installed. Well, NixOS allows me to describe more than just the packages, and I like it a lot :)','','Y','','','Y','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A9','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Containers, devcontainers, github codespaces, native per-system setups','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A11','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','Declarative configuration','Configuration in git','Configuration shared between machines','Make flake-evaluation, i.e., during `nixos-rebuild *` and `nix develop`, faster :) ','Arch Linux','Y','','','','','','','Y','','','Hyprland','Home-manager','','NixOS is great! :)'),(854,'1980-01-01 00:00:00',5,'en','909940063','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was fascinated by the philosophy behind Nix, namely reproducible package management implemented through a functional language. I decided to give it a try and it stuck (although the learning curve wasn\'t too flat).','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A7','A6','','','','','','','','A4','A6','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','A13','A15','A6','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Time.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was fascinated by the idea of defining the configuration of an OS declaratively in a reproducible manner with atomic upgrades on top. I gave it a go and it stuck.','Y','','Y','','','','','Declarative configuration','Reproducibility','Atomic upgrades (rollbacks)','I\'d add a standard way to install a specific package version without the need to figure out the exact commit of Nixpkgs that provides it.','No idea, probably Debian.','Y','','','','Y','','','','','','XMonad','','I used to use NixOps, unfortunately at some point its maintenance was close to non-existing (which is understandable), and I didn\'t have the time to contribute, so I moved on to colmena.','Nothing but a huge \"thank you\" for the amazing work you\'re doing! Hats off!'),(855,'1980-01-01 00:00:00',5,'en','1926656787','A2','A2','fem','','','Y','','','Y','Y','','','Y','Y','Y','Y','Y','','Y','Y','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Interested at the concept, wanted to give it a try.','','','','','','','Y','Y','','Y','','','','','','','Y','','','nix flakes','A6','A10','A2','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Docker','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A10','A6','A1','A17','A2','','','','','','','','','','','','','','','','','A10','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Lack of knowledge, and learning resources','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','Same as Nix: Curious about the concept, especially reproducibility.','Y','','Y','Y','','','','Fast rebuilds','Rollback abilities (+ built into grub)','','Built-in configuration options list, basically https://search.nixos.org/options but locally','Docker','Y','','','','','','','','Y','','','','','Thanks for the amazing job <3'),(856,'1980-01-01 00:00:00',5,'en','1157471603','A2','A3','male','','','','','','Y','','','','','Y','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','Y','','','','','Y','Y','','','Y','Y','','','','Y','Y','','','','A2','A10','A7','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','Y','','','Rollout','Configurable os','','Documentation without flake version','','Y','','','','','','','Y','','','','','',''),(857,'1980-01-01 00:00:00',5,'en','633837586','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Having one configuration file to find all my configuration in.','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A1','A10','A6','','','','','','','','A8','A6','A10','','','','','','','','','','','','',NULL,'Arch Linux with AUR.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Having one configuration file to find all my configuration in.','Y','','','','','','','One configuration file for all configs','Easily being deployed on a new machine','Rollback to previous version','Better KDE configuration in configuration.nix','Arch Linux','Y','','','','','','','','Y','','','nixos-hardware','',''),(858,NULL,2,'en','1242027041','A5','A3','male','','','','','','','','','','','','','','','','','','Y','Y','','','Y','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Heard the Linux Unplugged podcast talk about it a lot, and at the same time I was learning how to use ansible. I tried it out on a laptop, and never looked back. Now every machine I run from desktop, laptop, to server, runs nix.','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A10','A7','A2','','','','','','','','A6','A14','A4','','','','','','','','','','','','',NULL,'Probably arch or ubuntu with an ansible configuration controlling everything.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','At the moment I just write packages and import the nix file into my configuration.nix','A2','','I\'m honestly really shy and afraid of submitting bad code on top of that. I have packaged a few applications myself but have not shared them to the repo.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(859,NULL,1,'en','1011468075','A5','A6','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(860,'1980-01-01 00:00:00',5,'en','912629675','A2','A6','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Once you use kubernetes for a while and its declarative nature you want that everywhere. And having used and ./configure\'d endless packages (installed into /usr/local/bin) over the years I get fed up with doing the same thing time and time again. I looked at Ansible and that wasn\'t for me. And then I discovered Nix. And now I find it a drug. Some days I bash my head against the wall (hello infinite recursion) and the days where I spin up a VM and have my complete development environment available is magic! It would be great if macOS could get some additional love. Thanks to all the Nix developers - the whole shebang! make me very happy.','Y','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A2','A1','A4','','','','','','','','A6','A9','A5','','','','','','','','','','','','',NULL,'./configure; make; make install\r\nThen shake my fist! And curse. ','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A3','A9','A15','','','','','','','','','','','','','','','','','','','A8','A15','A22','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time and experience. Mostly the latter. Though the former is always in a problem. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Once I had played around with home-manager on top of $DISTRO I began to see the light. I wanted more. And if more meant completely declarative system then there was no going back from that.','Y','','Y','','','','','Complete system definition.','Modern kernel','Rollbacks','systemd-networkd. \r\ndocumentation\r\nexamples\r\n','Fedora Silverblue.','Y','','','','Y','','','Y','','','','emacs-overlay\r\nhome-manager','nix-sops','Nix/NixOS really changed the way I think about building systems. I\'d also encourage the community to decide whether flakes are go or no-go. I\'ve poured a tonne of effort into understanding flakes and it would be nice to know whether they will be adopted formerly. Thank you to all the people and volunteers that make Nix feasible.'),(861,'1980-01-01 00:00:00',5,'en','1873569878','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','To use reflex-platform project for frontend haskell development','','Y','','Y','','','Y','','Y','Y','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A4','A2','','','','','','','','','','','','','',NULL,'Docker','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time availability','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Seemed like the logical next step on nix path, also helped with distro hopping','Y','Y','','Y','','','','Declarativity','Rollbacks','Ease of deployment','','Wsl with home manager','Y','','Y','Y','','','','Y','','','','home-manager, deploy-rs','Nixops, morph',''),(862,'1980-01-01 00:00:00',5,'en','223496875','A2','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','Y','','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','','','','','','','','','','A14','A6','A5','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','No good documentation or learning resources on how to contribute to Nixpkgs','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Home-manager','Flox',''),(863,NULL,NULL,'en','820002795',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(864,'1980-01-01 00:00:00',5,'en','1394129594','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A5','A8','A13','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A11','','','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Mostly everything was already there','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was switching distros from time to time looking for something that would work for me, being a functional programming enthusiast I finally tried NixOS and never looked back','Y','','','','','','','Declarative configuration','Atomic upgrades + rollbacks','Reproducability','Add a static type system to Nix (boring answer, I know)','I honestly don\'t know, nothing comes close','Y','','','','','','','','','','i3','home-manager, cachix','','Thank you'),(865,'1980-01-01 00:00:00',5,'en','378899899','A5','A4','male','','','','','','','','','','Y','Y','','','','','','','Y','','Y','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Got tired of dependency hell on other distros','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A11','','','','','','','','A14','A8','A3','','','','','','','','','','','','',NULL,'Guix? docker containers? Not sure','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Learning curve, difficulty of getting help','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','','','','','','Declarative, reproducible system configuration','Package availiability','','- Better tutorials\r\n- Less dogmatism in programming language build chain (i.e. figure out an official path to bootstrap, e.g., a non-reproducible Python environment with Nix and work inside of that)','Ubuntu with docker containers? Guix? Not sure','Y','','','','','','','','','','xmonad','','niv',''),(866,'1980-01-01 00:00:00',5,'en','369154340','A2','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Was curious and Debian was always stale','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A9','','','','','','','','','','','','','','',NULL,'Debian, Arch, Void, Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A18','','','','','','','','','','','','','','','','','','','','A13','A18','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','','','','declarative, replay-able software and configuration','','','add i386 and other platforms\r\noptionally make a tiny installation (without dbus, without systemd)','','Y','','','','','Y','','','','Y','xmonad','','home-manager',''),(867,'1980-01-01 00:00:00',5,'en','1111825921','A5','A5','male','','','Y','','','Y','Y','','','','','','','','','','Y','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using Nix by running NixOS.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'Some combination of apk (Alpine builds), docker-compose, Ansible, and chezmoi.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','- Time coupled with learning curve.\r\n- Something that sufficiently bothers me that I feel compelled to fix it.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Hardware support -- I was an Arch Linux user, but had an old Mac laptop I needed to get working, including its proprietary webcam. The instructions for getting the camera it to work on NixOS were trivial so I figured I\'d give it a try and haven\'t left.','Y','','Y','','','','','Things work. Figuring out the right options or translating over from other systems can sometimes be confusing, but once configured (which is usually simple) everything I\'ve tried just works, both at the module and package level.','Consistent deployment across multiple boxes (both workstations and servers).','Much simpler to maintain configuration across package and system upgrades. (No more constant merging of changed configuration files in /etc.)','','Alpine Linux (or maybe fall back to Arch)','Y','','','','Y','','','Y','','','Sway, Hyprland, River','I read Discourse frequently and use search.nixos.org all the time.','','I have been very impressed with Nix, NixOS, and the community around it.\r\n\r\nThanks for putting the survey together and all the effort it is going to take to sort through all the replies.'),(868,'1980-01-01 00:00:00',5,'en','446323686','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I found the immutability and reproducibility parts very attractive. Before switching to NixOS I had been using Debian for more than 10 years but found found myself often limited by the package manager (eg. not being able to have multiple versions of the same package, not being able to roll back easily, not being able to easily test a package without installing it system wide, and not having a way to back up my configuration).','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A3','A4','A14','','','','','','','','','','','','',NULL,'Now that I’ve used Nix it would be really hard to go back to something else. I guess I’d try Guix or another distribution that allows declarative configuration.','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as the Nix question.','Y','Y','','Y','','','','Declarativeness','Reproducibility','Number of packages available','I would make it possible to run NixOS on a CI (allowing me to create the test/build environment declaratively). i would also add a built-in way to manage multiple servers with NixOS (instead of scripting my `nixos-rebuild` invocations).','See the Nix answer.','Y','','','','','','','','','','qtile','','','Thank you!\r\n\r\nAbout the questionnaire, I think it would be nice to not be asked the same questions for Nix and NixOS.'),(869,NULL,NULL,'en','96869202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(870,'1980-01-01 00:00:00',5,'en','1963523979','A4','A3','-oth-','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','Y','','Y','','','','','Y','','Y','','','','A1','A2','A3','','','','','','','','A5','A6','A2','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','Y','','','','','','','','','','','Y','','','','','','','','sway','nix-direnv','',''),(871,'1980-01-01 00:00:00',5,'en','1193154835','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','RPA developer','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','For a long time, I was annoyed by how difficult it can be to reproduce your Linux installs and how much stuff can accumulate on your system after a while. I was introduced to Nix by Burke Libbey\'s introductory videos on YouTube 2 years ago, and have been slowly interating my NixOS config ever since.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A7','A10','A2','','','','','','','','A8','A2','A4','','','','','','','','','','','','',NULL,'Probably Fedora Silverblue / Flatpaks','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A5','A2','A3','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','See the same question about Nix','Y','','','','','','','Version controlled system state','Rollbacks','Package configurability','Flatpak-like sandbox permissions for packages','Probably Fedora Silverblue','Y','','','','','','','','','','i3wm','home-manager, impermanence, cachix','nixos-rebuild build-vm (my config doesn\'t really work with it anymore)',''),(872,NULL,NULL,'en','751643249',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(873,'1980-01-01 00:00:00',5,'en','1222689024','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A2','A1','A7','','','','','','','','A8','A2','A4','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A3','A4','A13','A22','','','','','','','','','','','','','','','','','','A2','A9','A22','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','Y','','','','','','','','','','','','','','Y','','','Y','','','','','',''),(874,NULL,3,'en','996447647','A5','A2','male','','','','','','','Y','Y','','Y','Y','','Y','','','','','Y','','','','','Y','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I liked the idea of reproducibility.','Y','Y','','Y','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A7','A3','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Something like Silverblue','A2','Y','Y','','Y','Y','Y','','','','','','','','','','','','','Y','','','','A4','A3','A17','A2','A9','A15','A13','A22','A24','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I overwrote my Void Linux partition on accident while distro hopping and just liked the idea of reproducibility so much I kept using it','Y','','Y','','','','','Reproducibility','Rollbacks','Ad-hoc environments','The legacy commands','Silverblue','Y','','','','','','','','','','LeftWM, River',NULL,NULL,NULL),(875,'1980-01-01 00:00:00',5,'en','1415336146','A2','A4','male','','','','','Y','Y','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because I wanted to manage my systems declaratively.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A3','A2','','','','','','','','A8','A9','','','','','','','','','','','','','',NULL,'No idea. I guess the Guix package manager? I do not think there is a good alternative.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A1','A15','A2','A4','','','','','','','','','','','','','','','','','A1','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Again, I wanted to manage my systems declaratively. I started using Nix and NixOS simultaneoulsy.','Y','','Y','','','','','Declarative system management.','Smooth updates; when I have a problem, others usually have the exact same problem, and together it is easy to solve.','','- Have a stable rolling release channel which requires less manual intervention.','Again, I think I would try Guix OS; but maybe I would end up going back to Arch Linux again.','Y','','','Y','','','','','','','Custom setup with XMonad','Flakes, flakes, flakes. (You asked about them, but well, I use Flakes for all of my projects including the system configurations).','Many XXX2Nix tools.\r\nNixOps.\r\nColmena.','Thanks a lot for your work!'),(876,'1980-01-01 00:00:00',5,'en','1058512298','A2','A2','fem','','Y','','','','','','Y','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Demo of nix-shell -p','','Y','Y','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A10','A5','A6','','','','','','','','A2','A3','A1','','','','','','','','','','','','',NULL,'Meson, Guix','A2','','','','','Y','','','','','','','','','','','','','','','','','https://spectrum-os.org/git/infra/about/','A15','A3','A7','A14','A18','','','','','','','','','','','','','','','','','A15','A7','','','','','','','','','','','','','','','','','','','','Y','','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','nix-darwin was frustratingly impure.','Y','Y','Y','Y','','','','Declarative configuration','Rollbacks','Up to date packages','Add a migration framework for module state.','FreeBSD or Guix','Y','','','','','Y','','','','','sway, weston','nixos-hardware, nix-output-monitor','lorri',''),(877,'1980-01-01 00:00:00',5,'en','1015745095','A2','A3','-oth-','Chaos','Y','','','','','Y','','Y','','','Y','','','Y','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted to impress a girl','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','Y','','A2','A1','A10','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'I would use a \"normal\" Linux distribution, whatever package manager comes with the programming environment I\'m using, and I\'d maybe use ansible for deploying and managing server state','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A24','A5','A17','A18','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A2','','I do sometimes contribute things to nixpkgs but having a PR open for weeks and not really getting any useful feedback is frustrating. I understand why it happens but eh. I\'m also not so much the kind of person who wants to maintain a Linux distribution. I used to do it a lot more, but as my time and energy is limited, I tend to focus on trying to fix problems in my own projects, before taking on tasks in nixpkgs.\r\n\r\nGenerally a lot of things in nixpkgs are _fundamentally_ broken (and flakes don\'t really automatically make them better) and so, \"better things are possible\", but they require an intense amount of work and I\'m not capable of providing it, so I just don\'t do anything.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I got sick of my Ubuntu/Fedora/Arch Linux server breaking and NixOS seemed like the perfect choice for it.\r\nAt some point I thought doing NixOS on my development machine was a good idea but after about 3 years of suffering I went back to Arch Linux','Y','','Y','Y','','','','Atomic Rollbacks','Being able to test a configuration in a VM before applying it','Configuration stability','I would separate a lot of the internals of modules and the public API and make it easier for breaking changes to be warnings before they turn into errors, then I would increase the stability guarantee for configuration to maybe 2 years, while also backporting security updates and the likes for that long for a stable release.','Arch Linux server with LXC/ docker containers probably. Maybe ansible for managing deployments','Y','','','','','Y','','','','','','home-manager and niv. I really love niv. It\'s kinda straight to the point, exactly what I want and none of the fluff of flakes','I started using flakes for everything and then peddled back and am now only using them for some things. They feel overblown and weird','Boop'),(878,'1980-01-01 00:00:00',5,'en','600575967','A2','A5','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A6','A1','','','','','','','','A4','A9','A14','','','','','','','','','','','','',NULL,'','A5','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','Declarative config all the way','Best practice for services, etc','Safe upgrades','Better language, faster compilation, nicer less elitist UX','Arch','','','','','','','','','','','Bspwm ','','',''),(879,'1980-01-01 00:00:00',5,'en','203973724','A2','A3','male','','','','','','Y','Y','','Y','','Y','Y','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I encountered NixOS on hackernews while writing my thesis in 2015. I was immediately taken in by the promise of managing dotfiles and declarative configuration and I tried using it as a daily driver. Unfortunately the learning curve was too high so I had to uninstall again in order to finish my thesis on time. The next couple of years I tried a couple of times more until it stuck. Now I use NixOS for all my machines and Nix for almost all development environments.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A8','A9','A14','','','','','','','','','','','','',NULL,'docker, terraform, virtualenv, maybe other stuff idk','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A24','A1','A13','A3','A5','','','','','','','','','','','','','','','A15','A24','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I have contributed a few times, and every time my changes sat for a long time unmerged, were nitpicked to death, and I was asked to change stuff unrelated to what I wanted to contribute. Meanwhile I see lots of people with merge rights just merge their stuff instantly without review. For these reasons I usually keep the stuff I would have considered contributing in my local flake instead.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','','','Declarative configuration','NixOS modules for services','Atomic upgrades and rollback','Stabilize flakes, ','','Y','','','Y','','','','','','','XMonad','oxalica Rust overlay\r\nnil (nix language server)\r\n','NixOps (because it was killed during the rewrite, it seems so stupid to me to deprecate the old version, spend all that effort on the second version and then not releasing anything. I think the best course of action is to declare it unmaintained so it doesn\'t draw attention away from other similar projects.)\r\nNiv (obsoleted by flakes)\r\n',''),(880,'1980-01-01 00:00:00',5,'en','1015993466','A2','A3','male','','','','','','','Y','Y','','','Y','','','Y','','','','Y','','Y','','','','','','','','Y','','Y','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','failed to install it and getting my server to run','','','','','','','','','','','Y','documentation is sometimes a bit weird and not to the point','','','','','','','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','mic92 & makefu','','','Y','','','','','config in one place','easy','ZFS','better docs','FreeBSD','Y','','','','','','','','','','no gui','n/a','n/a','nope'),(881,'1980-01-01 00:00:00',5,'en','1715488821','A5','A3','fem','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','Declarative stuff is interesting.','','Y','','Y','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','','A2','A10','A1','','','','','','','','A8','A5','A10','','','','','','','','','','','','',NULL,'PKGBUILDs and bash','A2','','','','Y','Y','Y','','','','','','','Y','','','','','','Y','','Y','','A15','A13','A25','','','','','','','','','','','','','','','','','','','A15','A1','A13','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','It\'s declarative!','Y','Y','Y','Y','','','','Declarative ','Reproducibility ','Sharability','First class source-level generatable documentation ala `cargo doc`','Make my own os','Y','','','','','','','','Y','','','','Most of them, but documentation is always miserable.','Please stabilize flakes and improve documentation!'),(882,'1980-01-01 00:00:00',5,'en','230575332','A2','A3','-oth-','Non-binary','','','','','','Y','','','Y','Y','Y','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The typical story: A friend \"coerced\" me. ;)','','','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'Debian probably. Maybe devuan.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A1','A13','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A2','','The review process is horrible. My usual experience goes something like this:\r\n\r\n* First your PR gets ignored for extremely long time.\r\n* Then someone reviews it who does not have merge rights.\r\n* Then someone with merge rights come and nit-pick something small and mostly unrelated.\r\n* You answer immediately and fix pretty quickly.\r\n* It gets ignored for another few days\r\n* Then it gets merged, unless someone else with merge rights comes and asks for another unrelated nit-pick.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same answer as for nixpkgs, as I started using both at pretty much the same time:\r\n\r\nThe usual story: A friend \"coerced\" me ;)','Y','Y','Y','Y','','','','','','','','Probably debian. Maybe devuan.','Y','','','Y','','Y','','','','','xmonad','','',''),(883,NULL,4,'en','2135357755','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','N','Y','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(884,NULL,NULL,'en','255556285',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(885,'1980-01-01 00:00:00',5,'en','1873754689','A5','A4','male','','Y','','','Y','','Y','Y','Y','Y','Y','','','','','Y','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Installed nixos','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A7','A3','A2','','','','','','','','A8','A3','A6','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A13','A3','A4','A9','A2','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Installed it','Y','','','','','','','Declarative package management','Deterministic environment','','','','','','','','','','','Y','','','','','',''),(886,NULL,1,'en','501441241','A5','A3','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(887,'1980-01-01 00:00:00',5,'en','1483176999','A2','A4','male','','','','','','','','','Y','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A5','A3','A4','','','','','','','','','','','','',NULL,'pacman, OCI containers, apt','A7','','','','Y','','','','','','','','','','','','','','','','','','','A15','A2','A24','A23','A9','A3','A4','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Nothing! I\'m just in the learning period and didn\'t need anything that wasn\'t already packaged yet.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','After more than 10 years on arch, I was tired of not knowing/remembering how/why things were installed on my laptop, plus wanted to see how well it fits to package software. ','Y','','','','','','','Source of truth of installation/configuration in a declarative config file','Rollbacks/reconfiguration','Nixpkgs/Community packages','Better docs','Arch','Y','','','','','','','','Y','','sway','crane for rust packages','','<3'),(888,'1980-01-01 00:00:00',5,'en','741858753','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A3','I started to use Nix at university because my master\'s thesis was about usage of Nix for CI/CD.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A3','A6','A4','','','','','','','','','','','','',NULL,'Docker','A4','','','','','','','','','','','','','','','','','','','Y','','','','A2','A1','A5','','','','','','','','','','','','','','','','','','','A2','A1','A5','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I do not have enough free time.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to have option to replicate my OS setup easily, eg. when I buy a new laptop.','Y','','Y','','','','','OS description in one file','Option to generate virtual machine, ISO file, container and so on from one configuration.nix','Option to do simple rollback','I would add NixOS options whisperer into my text editor.\r\n\r\nI would also add some GUI app for managing NixOS generations. I think that it would be helpful to see the difference between generations and to have option to mark some generations as non-deletable when garbage collector is executed.','Ubuntu','','Y','','','','','','Y','','','','nixos-generators','Flakes',''),(890,NULL,2,'en','2105573850','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A2','A1','A7','','','','','','','','A14','A4','A8','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','Y','','','','A2','A15','A17','','','','','','','','','','','','','','','','','','','A17','A15','A2','','','','','','','','','','','','','','','','','','','Y','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(889,NULL,1,'en','850085592','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(891,NULL,NULL,'en','896759099',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(892,'1980-01-01 00:00:00',5,'en','16878614','A5','A3','male','','','','','','','Y','Y','Y','Y','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','When I started to watch the Haskell community it kept coming up, and at the time I happened to want to switch off of my current distro (not sure what I was on), I used arch for a while and the lack of stability was an issue for me, and I used Ubuntu and something lead to me having to reinstall, I hate that, so I was between Fedora and NixOS, and I chose NixOS because I felt it was interested and aligned with principles from the Haskell echo systems that I came to value. From there I started to used nix more on its own.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A11','A3','A12','','','','','','','','','','','','',NULL,'Package native systems','A1','','','','','','','','','','','','','','','','','','','Y','','','','A13','A15','A25','','','','','','','','','','','','','','','','','','','A13','A15','A6','','','','','','','','','','','','','','','','','','','','','','','A1','','Did not need too yet','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Like I said for nix. Got word about nix/NixOS from the Haskell community, was switching distros at the time. I liked that arch was rolling and did not I never had to reinstall, but it would break for me. I liked that Ubuntu was stable and polished, but hated upgrades. I was looking at Fedora and NixOS, and NixOS seemed more interesting, and shared some principles I valued. It felt like arch but configuration was something that the community could maintain, not me. So it could have the polish of Ubuntu.','Y','Y','','Y','','','','Decorative configuration','Congruent configuration','Immutability','Some kind of across the board hook for all login managers to launch a completely user configurable desktop environment with a fallback to a system configurabile desktop environment. \r\n\r\nSo I have use NixOS of configure systems and provision users with a default desktop environment, but then allow themselves to configure there user environment completely using home-manager or whatever they like.\r\n\r\nIt\'s as if the os if the BIOS and the user shell/environment is the os.','I guess I would try Fedora next, does not sound like that would have solved my problem.','Y','','','','','','I have a shell.nix file next to my system configuration that wraps nixos-rebuild to use the config file in the repo.','','','','Sway','niv\r\nnix-thunk\r\nHome-manager\r\nnixos-hardware\r\ngenerate-firefox-addons\r\n','','nix on windows and nix as a build system (like basil) are the most important for adoption.'),(893,'1980-01-01 00:00:00',5,'en','1267294413','A2','A4','male','','','','','','Y','Y','Y','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Nix challenge on the linux unplugged podcast.','','Y','','Y','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A2','A8','A7','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','A4','A15','A9','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','Rollback','Immutable OS','Declarative config','Would make it easier to look up why dependency X is included in the build.','','Y','','','Y','','','','','Y','','Sway','','',''),(894,'1980-01-01 00:00:00',5,'en','1660424305','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A8','A4','A5','','','','','','','','','','','','',NULL,'Arch','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A25','A2','A15','','','','','','','','','','','','','','','','','','','A2','A25','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','Y','','','','','Declarative system management','Reproducibility of builds','','Simple packaging','Arch','Y','','','','','','','','','','Hyprland','','',''),(895,'1980-01-01 00:00:00',5,'en','1464656168','A7','A4','male','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Environnment reproduction','','Y','','','','','Y','','Y','Y','','','','','Y','','','','','','A1','A2','A3','','','','','','','','A5','A4','A7','','','','','','','','','','','','',NULL,'Docker','A7','','','','','','','','','','','','','','','','','Y','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A2','','','N','Y',NULL,'Missing latest KDE packages','Having a kind of rolling release with latest KDE packages ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-she','N/A','Good job guys ☺️'),(896,'1980-01-01 00:00:00',5,'en','1969648916','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I originally came for declarative package management. I later discovered how nice dev shell + direnv can be working on different machines. That was the main reason I stuck with nix. ','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A4','A3','','','','','','','','','','','','',NULL,'pacmanfile( a declarative wrapper if pacman) for package management, containers for development env. \r\n','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I\'m not very knowledgeable, and don\'t really have a specific issue I know I can solve','N','Y',NULL,'Had to compile the kernel for my hardware','When I get a \"normal\" hardware that wouldn\'t need a custom kernel',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(897,'1980-01-01 00:00:00',5,'en','1817847494','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I got tired of having to babysit config files and redoing things if I ever had to reinstall my OS. Having a reproducible configuration makes using the computer much easier and more satisfying.','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A2','A1','A10','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'Ansible','A2','','Y','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Horrible documentation for beginners. Becoming \'responsible\' for new packages.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted a versatile OS that is simultaneously up-to-date with sane defaults for configurations and does not regularly break like other rolling release distributions of Linux.','Y','','Y','','','','','Reproducible configuration','Atomic rollbacks','Package sandboxing','Add a GUI for controlling everything in configuring NixOS.\r\n\r\nChange package creation & approval times in nixos-unstable. Currently it can take days or weeks to be approved and available.\r\n\r\nRemove all legacy documentation online and start from the ground up.','Arch Linux','Y','','','','','','','','Y','','','','',''),(898,'1980-01-01 00:00:00',5,'en','1648961110','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I greatly prefer using gui software for as much as possible. Nix does not have a great gui tool for installing packages, so I decided to use something else.','If one of the gui focused projects like SnowflakeOS reached a stable release.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(899,'1980-01-01 00:00:00',5,'en','376396939','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Comes with NixOS','','Y','','','','','Y','Y','','Y','Y','','','Y','Y','','Y','','','','A2','A1','A8','','','','','','','','A14','A6','A1','','','','','','','','','','','','',NULL,'Very scripted Arch','A3','','','','','Y','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','badly','A1','','Nix is arcane magic','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I set aside a weekend to switch my server from arch to Nixos, as I wanted a minimal base to run containers that I could reliably auto upgrade and redeploy. It took me 3hrs. ','Y','','Y','Y','','','','Single file Configuration.nix ','Tons of modules to configure software in the same language','Rollbacks','First class support for Dhall or even yaml, as Nix is unnecessary complex for the act of declaring a system configuration (hardly use any of its language features, I just enable modules or declare configs)\r\n\r\nRebuilds without internet access or correct time are nigh impossible too','Arch with lots of scripts','Y','','','','','','','','','','sway','','Nixops. It\'s near abandoned, other deploy tools are incredibly obtuse and have no documentation or examples','Thanks a lot for NixOS!'),(900,'1980-01-01 00:00:00',5,'en','2108597865','A5','A3','-oth-','🤷','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','To use NixOS','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A7','A1','','','','','','','','A6','A5','A4','','','','','','','','','','','','',NULL,'pikaur or paru','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A10','A4','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','not knowing NEL or nix packaging well enough','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I had been trying to set up everything I used in Ansible, which was not really ideal. NixOS\' declarative config, especially in combination with impermanence, appealed to me for cruft prevention and portability. Copied a friend\'s flake and rebuilt it to suit me.','Y','','Y','','','','','declarative system config','package availability to rival AUR','','Add secure boot support, better documentation for NEL','Arch or an Arch derivative, and Ansible','Y','','','','','','','','Y','','awm','impermanence','',''),(901,NULL,NULL,'en','1477470996',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(902,'1980-01-01 00:00:00',5,'en','1168565474','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','Just as a ','A2','same as how I discovered NixOS','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A7','A2','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'I\'d likely still be using arch and its derivatives','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A6','A15','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','home usage (gaming etc.)','A2','I found out about it, I think via a DistroTube video, and decided to try it on my machine. i found it rather complicated, so I switched back to using arch.\r\nSeptember last year, I discovered SnowflakeOS, and I have been using that install ever since.','Y','','','','','','','Stability without compromises','freshest package repo on repology','declarative','I would integrate external projects (i.e. home-manager or snowfall lib)','Arch and its derivatives','Y','','','','','','a wrapper called snow made by VlinkZ','Y','','','sway','','',''),(903,'1980-01-01 00:00:00',5,'en','971876423','A2','A2','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I moved my Raspberry Pi to NixOS to try it out. From there it quickly \"infected\" my other headless machines until I finally installed it on my desktops as well.','Y','Y','','','','','Y','Y','','Y','','Y','','Y','Y','Y','Y','Y','Y','','A1','A2','A10','','','','','','','','A2','A4','A12','','','','','','','','','','','','',NULL,'Ansible/Terraform','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','Y','','','','Declarative and reproducible system configuration.','Remote deployment tools (Colmena/deploy-rs)','Nixpkgs','','Arch Linux','Y','','','Y','Y','','','','','','Sway','Home-Manager','NixOps, as I wanted a stateless solution',''),(904,'1980-01-01 00:00:00',5,'en','1739433467','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Job required using an older version of a package provided by Arch repositories. So, I packaged it with Nix.','','','','','','','Y','Y','Y','','','','','','Y','Y','Y','','Y','','A1','A9','A3','','','','','','','','A12','A2','A6','','','','','','','','','','','','',NULL,'pack','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A5','A13','A1','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','home-manager was a \"gateway drug\" for configuring system using nix and also Arch become too boring to use.','Y','','Y','','','','','Declarative environments.','Ease of configuring.','Fresh software.','','Arch','Y','','','','','','','','Y','','','','',''),(905,'1980-01-01 00:00:00',5,'en','135612381','A2','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A2','A9','','','','','','','','A8','A4','A5','','','','','','','','','','','','',NULL,'Guix','A1','','','','Y','','','','','','','','','','','','','','','','','','','A3','','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','','','','','My tears to cry','Y','','','Y','','','','','','','i3','','',''),(906,NULL,1,'en','1445064371','A2','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(907,NULL,2,'en','1640509291','A8','A2','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Became interested in Nix from hearing about declarative package/system management, and gradually learnt more from there.','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A2','A6','A1','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(908,'1980-01-01 00:00:00',5,'en','941686465','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I’ve started using nix as my daily driver at work in order to have a fully reproducible setup, then I used it to generate k8s resource definitions for one of our applications. Nowadays I use it on my personal computer, mistype with sevens and got managing a server I use to host a few small things. $day job does not allow use of nix but I would other wise use it there if possible','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A6','A2','A7','','','','','','','','A8','A4','','','','','','','','','','','','','',NULL,'Guix? ','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A2','A7','','','','','','','','','','','','','','','','','','','A7','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','Y',NULL,'Switched to macos','Migrating my desktop computer, but I’ve got no time for that atm',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Devenv, nixbuild , home manager, colmena','',''),(909,'1980-01-01 00:00:00',5,'en','367111955','A5','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','NixOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I liked the declarative config and seems harder to break than Arch Linux. Home manager and a single config for my Mac and Linux machines sealed the deal.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A6','A7','','','','','','','','A8','A4','A6','','','','','','','','','','','','',NULL,'She’ll scripts with softlinking I used the last 10 years before discovering nix.','A7','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A1','A17','A15','A4','A9','','','','','','','','','','','','','','','','','A15','A17','A2','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Wanted something more stable than Arch Linux that was easy to rollback and with declarative config','Y','','Y','','','','','Atomic changes with flakes ','Reproductive builds ','Declarative config','Replace the language with something better. The existing one is really hard to learn and not intuitive. The error messages are also horrible.','Arch Linux','Y','','Y','','','','','Y','Y','','Hyprland','','','Love nix. Improve the docs stabilize flakes and improve debugging messages so more can adopt it.'),(910,'1980-01-01 00:00:00',5,'en','911135166','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Everything is broken. Nix brings a bit of sanity into this world.\r\n\r\nI can fix problems myself (think: overlays), without having to rebuild / re-package dependent libraries / packages manually.\r\n\r\nI have a consistent dev env for my projects, not risk project does not build anymore if I get back to it after three weeks. Also, builds locally, builds on CI.','Y','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A1','A2','A7','','','','','','','','A6','A8','A2','','','','','','','','','','','','',NULL,'Maybe guix.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','Y','','','A11','A13','A2','A1','A4','A3','A5','','','','','','','','','','','','','','','A11','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I want to have up-to-date packages, and also want to be able to put control my system configuration declaratively.','Y','','','','','','','declarative system configuration','rollback','','','Some other immutable linux distribution perhaps.','Y','','','','','','','Y','','','sway, xmonad','cachix, nil','',''),(911,NULL,2,'en','1542604153','A2','A5','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A7','A1','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'Debian based','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(912,'1980-01-01 00:00:00',5,'en','2038138413','A2','A2','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','My colleagues were using it.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'Docker (Deployment / development environments)\r\nGentoo (Operating System)','A7','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A2','A3','A1','A5','A9','A15','A19','A14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Never found something that needed a PR.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Same as Nix.','Y','','Y','','','','','Declarative','Atomic','','More documentation.','Gentoo','Y','','','','','','','Y','','','Sway','','',''),(913,'1980-01-01 00:00:00',5,'en','336237626','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was shown and told about NixOS and how easy it was to set up a new computer if you lost your old from just the configuration files, then I wanted to try it for myself and have found it to be a really smart way to set up a computer and install new software.\r\n\r\nI haven\'t gotten around to using nix the package manager directly in projects. But that is my next step.','','','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A10','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A25','A20','A13','A24','A22','','','','','','','','','','','','','','','','A1','A25','A20','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I feel like I am not good enough to do it as of yet. Maybe a beginner\'s guide or someone being available to teach how to do it would help me get started.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Because my friend showed me how cool it was to share a config file between multiple computers and if you lose your laptop it is really easy to get back up and running.','Y','','','','','','','Reproducible OS, so I can always get a new computer up to speed really fast.','Declarative config. Being able to specify how I want the computer to be set up.','Easy installation and configuration of a plethora of packages','Better secrets handling, so I can safely specify variables that are unreadable without a password or some other secret.','Guix','Y','','','','','','','','','','Hyprland','','',''),(914,NULL,1,'en','1837946278','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(915,'1980-01-01 00:00:00',5,'en','926062686','A8','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Electrical Engineer','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','Y','','','Y','','Y','','','','','','','Y','','','','','','','A1','A6','','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I\'m still learning the nix Eco-system, i feel i need to understand it better before i can contribute in a meaningful way.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','As a linux user that takes the time to get my main home system \"just right\". I\'m usually reluctant to rebuild my main personal machine, even though i tend to hack and slash my way through my machine with different development tools. In time I\'ll have different versions of tools installed. some cleanly installed/uninstalled, others not... :-) I should do a better job of tracking things, but in the end I\'m usually interested in getting a task done. So my main machine often suffers from my multiple project methods.\r\n\r\nNix seems to give me the power to return my machine back to \"just right\", without spending a ton of time . I can modify a toolset do my work and not be afraid since i can roll back. I\'m only at the beginning of my journey but I\'m excited to see what i can do with this.','Y','','','','','','','configuration.nix','rollbacks','nix','I know nix is aimed at developers but i would like to see some more user friendly method for non-programmers to configure the configuration.nix (and similar files). not everyone knows that a missing bracket can break everything','Arch, Fedora, possibly Void','Y','','','','','','','','Y','','','','flakes, i found them confusing to start out with decided to go back to basics and try flakes later.','Thanks for the hard work!'),(916,'1980-01-01 00:00:00',5,'en','1349930667','A1','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A10','A1','','','','','','','','A8','A9','','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','','Sway','','',''),(917,'1980-01-01 00:00:00',5,'en','334664172','A2','A2','male','','Y','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','','','Y','','','','Y','Y','Y','','Y','','A1','A9','A6','','','','','','','','A10','A1','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A14','A15','A4','A3','A2','','','','','','','','','','','','','','','','','A8','A12','A22','','','','','','','','','','','','','','','','','','','','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','','Y','','','','','','','','Y','','','','','','','Y','','','','','',''),(918,'1980-01-01 00:00:00',5,'en','1340222404','A2','A3','male','','','','','','','Y','','','','','','Y','','','Y','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','A friend told me about it. I enjoy having a single text configuration for all of my machines.','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A6','A1','A2','','','','','','','','A4','A8','A9','','','','','','','','','','','','',NULL,'git + dotfiles, maybe GNU Stow; I might try out guix but lack of non-free software make it too much of a hassle','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A2','','','','','','','','','','','','','','','','','','','','A25','A5','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Same as nix','Y','','Y','','','','','Declarative, modular configuration','','','Maybe try to make nixos-rebuild a bit faster. Some kind of nix LSP could be also useful (show hints from schema of nixos config values). Make flakes stable.','Arch','Y','','','','','','','Y','','','','home-manager\r\ndevenv.sh\r\nnix-darwin\r\noxalica/nil','tadfisher/android-nixpkgs\r\nnix-community/nixpkgs-wayland',''),(919,'1980-01-01 00:00:00',5,'en','1017237124','A2','A3','-oth-','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','','Y','','A7','A1','A9','','','','','','','','A12','A9','A11','','','','','','','','','','','','',NULL,'','A5','Y','','','','Y','','','','','','','','','','Y','','Y','','','','','','A15','A9','A3','A4','A2','A1','A10','A5','A18','A7','A23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','Y','','','','','','','','','','','','Y','','','Y','','','','flakes\r\nnixops',''),(920,'1980-01-01 00:00:00',5,'en','1617947068','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A post in r/unixporn of someone using NixOS','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A8','A6','A14','','','','','','','','','','','','',NULL,'Arch and Ansible','A1','Y','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Post on r/unixporn','Y','','Y','','','','','Declarative system','Rollbackable derivations','','Declarative way to format and mkfs the discks','Arch and Ansible','Y','','','Y','','','','','','','Away','home-manager,\r\ndigga,\r\narion','hercules-ci,\r\ncachix',''),(921,'1980-01-01 00:00:00',5,'en','628528029','A5','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','Y','','','','','Y','Y','','','Y','','','','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A9','A11','A2','','','','','','','','','','','','',NULL,'Docker, Kubernetes, makefiles','A4','','','','','Y','','','','','','','','','','','','','','','','','','A1','A15','A3','A4','A2','A5','A14','','','','','','','','','','','','','','','A1','A5','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','Y','','','Configuration management','Declarative configuration','','','Docker, Kubernetes','','','Y','','','Y','','Y','','','Emacs','sops-nix, emacs-overlay','','Thank you!'),(922,NULL,2,'en','1579165716','A2','A3','male','','','','','','','Y','Y','Y','Y','Y','','Y','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Coming from Haskell','Y','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','Y','','A1','A2','A6','','','','','','','','A8','A12','A11','','','','','','','','','','','','',NULL,'Containers','A2','','Y','','Y','Y','','','','','','','Y','','','Y','','','','Y','','','','A13','A12','A4','','','','','','','','','','','','','','','','','','','A13','A12','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(923,'1980-01-01 00:00:00',5,'en','792112663','A2','A4','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I looked for a robust alternative with a sandbox to Gentoo\'s package manager.','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A2','A3','A5','','','','','','','','A9','A12','A6','','','','','','','','','','','','',NULL,'Gentoo','A7','Y','Y','','Y','Y','','','','','','Y','','','','Y','','','','Y','','','','A15','A4','A3','A13','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Was the maintainer of Gentoo linux distribution. Was interested in sandboxing and precise dependency tracking that `nix` provides. Used `nix` sporadically for a few years on top of Gentoo. Then switched to NixOS 2 years ago.','Y','','Y','','','','','Declarative system configuration','Atomic rollbackable updates','Binary cache for most of packages','It would be nice to have a hermetic plugin system for NixOS to avoid breakages caused by library version mixing (in opengl or glibc-nss): https://github.com/nixpkgs-architecture/issues/issues/15','Gentoo','Y','','','','','','','','','','sway on wayland, no DE','','',''),(924,'1980-01-01 00:00:00',5,'en','1380982100','A2','A3','male','','','','','','','','','','','Y','','Y','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I liked the declarative concept and specifying all my configs in a central location. I also wanted to get rid of Homebrew on macOS and have heard about Nix before. The concept of just using \"nix run\" and \"nix shell\" also intrigued me.','Y','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'Homebrew on macOS and configuring everything by hand like a caveman.','A1','','','','Y','Y','Y','','','','','','','','','','','','','','','','','A2','A1','A9','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I maintain a private repo where I have packaged some software with Nix for myself but I\'m not sure about the quality + maintaining it in the future.','N','N','More free time ;)\r\nI have tried NixOS in a VM and I plan to replace Ubuntu on my VPS with NixOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-darwin & home-manager','','Please improve the documentation, especially for nixpkgs libs! Plus with more examples and easier to understand explanations.'),(925,NULL,1,'en','1577853825','A8','A2','male','','Y','','','','','','','','','','','','','Y','','','','','','','','Y','','Developer, FPGA','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(926,'1980-01-01 00:00:00',5,'en','2078114545','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','Y','','Y','Y','','','','','','','Y','','Y','Y','','','A2','A3','A8','','','','','','','','A8','A5','A11','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','Y','','','','','','','','','','','','Y','','','','A1','A2','A15','A9','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','','','','','','','','','','Y','','','','','','','Y','','','hyprland','','',''),(927,'1980-01-01 00:00:00',5,'en','1750267054','A2','A3','-oth-','enby','','','','','','Y','','','','','','','','','Y','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It was heavily used at my previous company, and I\'d been curious to try it out for some time.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A1','A7','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'- Some other linux distro (instead of NixOS)\r\n- Global install and ad-hoc environments (instead of nix shell)\r\n- I would do as little devops work as I possibly can','A4','','Y','','Y','Y','','','','','','','','Y','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was curious to try it out, and my previous company had a lot of happy users, so I did the switch when I joined them.','Y','','Y','','','Y','','Declarative system configuration','The large number of modules with great defaults','Ease of deployment and rollback','- Make `nixos-rebuild` much faster/incremental, to make config changes a lot easier to prototype\r\n- Improve error messages in Nix and the module system\r\n- Add native support for secrets\r\n- Improve the UI around binary caches with flakes','Some other less good linux distro','','','','','','Y','','','','','sway','- devenv\r\n- nix-locate','',''),(928,NULL,1,'en','919401592','A2','A3','male','','','','','','','','','','Y','Y','','','','','','','Y','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(929,'1980-01-01 00:00:00',5,'en','226402428','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','','','for fun','A1','I want to use nixos, so I start using nix :)','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A1','A2','A7','','','','','','','','A14','A5','A3','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A15','A2','A17','','','','','','','','','','','','','','','','','','','A15','A2','A22','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I want to try a new distro after using few mouth archlinux, but the reproduction of archlinux is painful and boring at that time I bought a new ssd which I have to reinstall and reconfig OS on, however I read an article about nixos, I really like the idea of nixos, so I get nixos on my new ssd to find ultimate experience.','Y','','','','','','','rollback, so I can play with a lot dangerous option which hard to other distro.','easy to start, just use gui installer and edit configration.nix, easy to manage my config.','set up develop enviroment with nix develop and nix-shell','more friendly to beginner','archlinux','Y','','','','','','','','Y','','','no','no','long live nix!'),(930,'1980-01-01 00:00:00',5,'en','142667372','A6','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','Y','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','It\'s absolutely mad that my typescript projects have better dependency management than what I can do at the operating system level. Thankfully I found Nix, which I am rolling out on all my machines.','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','Y','','A2','A7','A3','','','','','','','','A5','A9','A14','','','','','','','','','','','','',NULL,'Are you trying to make me feel bad?\r\nProbably apt...','A1','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A1','A17','','','','','','','','','','','','','','','','','','','','A17','A1','A15','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Learning curve and personal time, it will probably happen. If the learning resources were better, more accurate and up to date then I\'d get there sooner. I have trouble consuming fragmented information where imprecise or contradictory wording creates incorrect assumptions, this kills time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','There were a lot of things wrong with my workflow. I set out to fix them and stumbled on nix and nixos. The selling point became clear immediately and I have no reason to look back.','Y','Y','Y','','','','','As with nix','','','I draw a blank, need more time with it because at the moment it\'s absolutely amazing.\r\nFor nix lang, it would be nice to get types and complete lsp','Continue with debian for workstation for some semblance of boring sanity and alpine for containers for not thinking too much about them.','Y','Y','','','','','','Y','','','Playing around with bspwm since i can match it with yabai on macos, and hyprland','','','Keep going, you\'re all doing the right thing. This is how things are meant to be done, and most friends I\'ve given the elevator pitch have bought in for a good reason.'),(931,'1980-01-01 00:00:00',5,'en','2028217108','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Cybersecurity Engineer','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','Former heavy user, now mostly helping other and maintaining Nixpkgs package','A2','','','','','Y','','Inside VMs','Y','','','','','','','','Y','','Y','','','','A3','A2','A1','','','','','','','','A10','A4','A8','','','','','','','','','','','','',NULL,'Cry with standard package manager (probably DNF or Emerge)','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A4','A2','A1','A15','A24','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'N','Y',NULL,'I came back to Windows','The thing is, I do a lot of small experiments here and there, and each projects requires at least 10, regularly 30 minutes to put in a derivation. For long projects, the benefits FAAAR outweighs the time... But when you want to compile a loose IOCCC contribution, writing a default.nix is too long',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DeterminateSystems\' alternative installer. Really nice','NixOS WSL Image. Always out of date, and really brittle','I really like Nix and NixOS... But the \"just works\" experience of Windows is hard to match. I just really with there was an alternative to ephemeral shells on Windows'),(932,'1980-01-01 00:00:00',5,'en','1903092668','A4','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','N','N','Y','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','knowing how the package manager works or having a guided experience',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','great project but you desperately need better and more importantly simpler documentation'),(933,'1980-01-01 00:00:00',5,'en','313514018','A5','A2','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Developer, firmware','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The maintainer of Doom Emacs, which I use, mentionned that he wanted a system similar to nix for rollback. His dotfiles were public which used nixos and then I went down the rapit hole','','Y','','','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','CI, similar to Development enviroments','A3','A2','A1','','','','','','','','A8','A9','A10','','','','','','','','','','','','',NULL,'Containers, shell scripts, dotfiles manager','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A1','A4','A6','A14','A3','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Nothing, I contribute a bit. The complexity sometimes prevents me from writing the package but I try to get help on the discourse/matrix','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Setted up my computer using home-mamager but I wanted and opengl applications failed to launch, so I still depended on my dristo package manager. Thus I migrated to nixos to have a fully declarative OS','Y','Y','Y','','','Y','','Declarative environment','Reproductible os builds','Rollbacks','Vscode often has issues with manually installed extensions when using fhs. And some extensions are not available. So either have them all available or fix vscode when using fhs. ','Opensuse since it has good support for rollback. ','','','','Y','','','','','','','i3','','Nixops since it doesn\'t seem to support flakes. ','Flakes are the only way I use nix. It makes more sense in my head and it was how I grasped nix. \r\n\r\nI feel like there is too many derivatives and ways to do things. Devenv vs nix develop, Riff vs nix run, nixops vs deploy-rs and others, digga vs divnix/std vs handroll. It feels like the official tools have a void and the community tries to fill it. I personally only use pure nixos/flakes, but I was confused at first as to why so many tools exists. '),(934,NULL,1,'en','871102990','A2','A3','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(935,'1980-01-01 00:00:00',5,'en','35659240','A2','A3','male','','','','','','','','','','Y','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','Y','Y','','Y','','Y','','','Y','','Y','','','','A7','A2','A3','','','','','','','','A13','A8','A6','','','','','','','','','','','','',NULL,'Debian or Arch, probably','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A25','A1','','','','','','','','','','','','','','','','','','','A25','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Declarative, atomic, functional? It was love at first sight','Y','','Y','Y','','Y','','Atomic, declarative, clean handling of packages','Immutable store strongly discourages undocumented hacks','Immense package repo','Better documentation, statically typed language','Debian or Arch','Y','','','','','Y','','','Y','','','home-manager\r\nagenix','nixops (because python 2)','💜'),(936,'1980-01-01 00:00:00',5,'en','1976854574','A2','A2','-oth-','None Binary ','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I talked to some people, they showed me nix, then I got a new laptop and thought it would be fun to try nixos out. After using it for a few months I found a few packages were missing from nixpkgs and asked a more knowledgeable user: \"how do I package stuff\" they showed me how to package $application and helped me upstream it. That escalated and now I maintain >30 packages.','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','','A2','A7','A3','','','','','','','','A6','A13','A5','','','','','','','','','','','','',NULL,'OCI Images ','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','Woodpecker','A2','A1','A15','','','','','','','','','','','','','','','','','','','A2','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','For Infra at places I volunteer ','A2','See why I started using nix.','Y','Y','Y','Y','','Y','','Declarative System State ','Generations','Being able to easily add packages to the offical repo.','Make State Management for modules a no-problem','Docker-Compose and Ansible ','Y','','','Y','Y','','','','','','Sway','Home-Manager\r\nSops-Nix\r\nNix-init ','','Thanks for all the hard work '),(937,'1980-01-01 00:00:00',5,'en','945436324','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','Since I started using NixOS I consider software without a Nix package to be a pain, and so I package everything I need.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A10','A3','','','','','','','','A11','A8','A9','','','','','','','','','','','','',NULL,'I would write Nix again from scratch in Zig.','A4','','','','Y','Y','','Y','','','','','Y','','','Y','','','','Y','','','https://github.com/input-output-hk/cicero','A22','A15','A9','','','','','','','','','','','','','','','','','','','A1','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','As an intermediate beginner with linux, I was very frustrated with the state of other operating systems and how easy they were to break by, for example, simply updating a package. This almost made me lose interest in computers for a short while, until a friend of mine sent me a link to NixOS. Thank you!','Y','Y','Y','Y','','','','declarative configuration','composable configuration (the module system)','atomic deployment and rollback','Maybe make all service modules support multiple instances.\r\nAnd then write a highly-available distributed scheduler that deploys services from NixOS modules to a network of NixOS machines.\r\n\r\nOther than that... Maybe replace systemd? It\'s pretty good as it is.','Probably Gentoo, but I\'d pay someone to bring it back.','Y','Y','','Y','Y','Y','','','','','Sway','flake-parts, treefmt, alejandra, impermanence, (r)agenix, disko, nixos-images, home-manager-shell, nixos-shell, flake-programs-sqlite, NUR, github:StevenBlack/hosts, github:input-output-hk/spongix','flake-utils, flake-utils-plus, NixOps, disnix(os) / dysnomia, Hail','While I have seen a few more jobs that work with Nix/NixOS than years back, they still feel rare. We need to drive industry adoption so we can more easily find a place to work that is not depressing.\r\n\r\nFor that, key issues are, in my experience:\r\n\r\n1. Long and unpredictable evaluation times (especially when there is no alternative to IFD). This is a real pain for companies writing Haskell, which seem to have a tendency to like Nix.\r\n\r\n2. (Relating to the first point) Cache locality. We have a large cache but our builds still take a long time because the have to fetch huge amounts of data if they are scheduled on a machine that happens not to have stuff cached locally in its nix store. Adding more caches is problematic as sequentially requesting a missing path from them all still takes a while. We are currently trying to write a scheduler that runs nix builds on the machine with most store paths in its local cache.\r\n\r\n3. Developer experience. I don\'t primarily mean the Nix language but all the small gotchas along the way. Are you a trusted user? Are permissions on your netrc file correct? For all users you run nix builds as? access-tokens doesn\'t suffice, you still need a netrc for remote HTTP stores. Have you enabled a gazillion experimental features? Here, just copy most of this flake — oh, but it doesn\'t support your system, you need to add another output. ...'),(938,'1980-01-01 00:00:00',5,'en','1234351585','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A former colleague of mine told me about a new Linux distribution, that was purely functional and had configuration management built-in. I found that interesting, so I installed it alongside ArchLinux. Maybe a month later it became my primary operating system both at work and at home.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A5','A4','A9','','','','','','','','','','','','',NULL,'ArchLinux, pacman, and ansible','A1','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','','','','','','Declarative configuration management','Atomic upgrades and rollbacks','Interactive shell (flakes)','More comprehensive documentation for Flakes','ArchLinux, pacman, and Ansible','Y','','','','','','','','','','startx, i3','','',''),(939,'1980-01-01 00:00:00',5,'en','1294151380','A2','A4','male','','','','','','','','Y','','','Y','','Y','','','','','Y','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','Y','Y','','Y','','','Y','Y','','','','','','Y','','','Y','','','','A1','A6','A3','','','','','','','','A4','A3','A1','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','Y','','Y','','Y','','A1','','','','','','','','','','','','','','','','','','','','','A1','A8','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','Sway','','',''),(940,NULL,2,'en','1454130425','A5','A3','male','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Been a while now, but it really wasn\'t anything special. Just was using Arch Linux and Ansible for a time, and pretty unhappy with it. Found out about Nix at random and starting building a NixOS VM on my machine. Once I got it to where I thougth I could use it as a daily driver, I installed it on bare metal and the rest is history.','','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','Y','CI','A2','A4','A9','','','','','','','','A2','A6','A15','','','','','','','','','','','','',NULL,'Just some traditional package manager, and docker, et al. for work','A2','','','','Y','Y','','','','Y','','','Y','','','','','','','Y','','','Standard Action','A15','A1','A11','A9','A13','A24','','','','','','','','','','','','','','','','A11','A15','A1','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(941,'1980-01-01 00:00:00',5,'en','1584777452','A8','A2','male','','Y','','','','','','Y','','','','','','','Y','','','Y','','','','','Y','','Developer, FPGA','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','','','','A2','','','','','','','','','','A3','A11','A2','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A4','A5','A15','','','','','','','','','','','','','','','','','','','A4','A5','A15','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','Y',NULL,'Broken and out of date packages.','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(942,'1980-01-01 00:00:00',5,'en','833003899','A2','A2','male','','','','','','','','','','Y','','Y','Y','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A8','A6','A14','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','System configuration','Reproducible builds','Software availability','Pinning versions of dependencies in flakes similar to package.json/cargo.toml.\r\nBetter language server.\r\n','Fedora with dotfiles.','Y','','','','','','','Y','','','','','',''),(943,'1980-01-01 00:00:00',5,'en','2037128317','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Got annoyed about macOS, liked functional programming from Haskell','','Y','','','','','Y','','','','','','','Y','','Y','Y','','Y','','A7','A10','A1','','','','','','','','A13','A9','A8','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Was annoyed at macOS, liked functional programming from Haskell','Y','','','','','','','Declarative configuration','Openness and ability to customize','Continuous community maintenance','Improve the quality of modules. A lot of modules are of mediocre quality and could use a rework.','','','','','','','','nixus','','','','xmonad','','',''),(944,'1980-01-01 00:00:00',5,'en','1991285311','A5','A5','male','','','','','','','','','','','Y','','','','','','Y','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Found it distro-hopping.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A10','','','','','','','','A6','A8','A3','','','','','','','','','','','','',NULL,'saltstack','A1','','','','Y','','','','','','','','','','','Y','','','','','','','','A9','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Lack of time and familiarity with the inner-workings of nix (some good tutorials may exist already, but I haven\'t seen them yet).','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','distro-hopping','Y','','Y','','','','','declarative system config','declarative nix containers','rolling release','Ad-hoc development made easier (without the need for a dev shell). Also, an effective jail for nix containers to protect the host OS.','Arch Linux most likely.','Y','','','','','','have explored just about all of these','Y','','Y','i3WM','none','none','Nix/NixOS are awesome. Keep up the good work!'),(945,'1980-01-01 00:00:00',5,'en','44056553','A5','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Many software build and distributions systems are not reproducible (enough). I got too annoyed with build procedures that would fail due to reproducibility issues, caused by things like dependency hell, dead URLs of dependencies, under-specified build environments, and lack of versioning control.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A11','A2','A7','','','','','','','','A8','A9','A13','','','','','','','','','','','','',NULL,'Some sort of container-based build scheme that I may need to make myself.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','* Stabilize flakes plz\r\n* Nix the language is often confusing. It has a steep learning curve, with many unusual (to me) design choices (e.g. Essential functions are split between `builtins` and `nixpkgs.lib`; some functions use currying as parameters, some use attrsets, some use both; there are several ways to import another nix module, each with their own idiosyncrasies (`import other.nix`, imports = [other.nix], callPackage other.nix))\r\n* nixpkgs is slow to accept pull requests, especially some that appear trivial such as adding an additional attr to an existing `config.option`','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I am a longtime, and still am, Arch Linux user. I began the switch to NixOS when I hit dependency hell and unclean chroots much too often when building various things through Arch Linux\'s build tools; the promises of reproducibility and well-specified build inputs were attractive.','Y','','','','','','','Reproducibility','Well-specified dependencies and build inputs','Declarative configuration','Do not create a totally new domain-specific language (DSL) and instead do something like how Guix uses Scheme. This mitigates many, many papercuts (e.g. there will be an existing documentation ecosystem; easier adoption process; leverage a mature language with better-known behavior)','Arch Linux','Y','','','','Y','','Hive','','','','Hyprland','Home Manager, Standard, devshell, disko, crane','',''),(946,'1980-01-01 00:00:00',5,'en','1979052853','A8','A6','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','The organisation I work for already had a heavy Nix infection and I am not always able to avoid it.','','Y','','','','','Y','Y','','','','','CI','','Y','Y','','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'Debian (AFAIAC, its much less trouble than NIx).','A7','','','','','','','','','','','','','','','Y','','','','Y','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I think the ideas behind Nix are great, but the implementation is poor. \r\nNIx language is also IMO poor.','N','Y',NULL,'Prefer Debian','Hell freezing over.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(947,NULL,NULL,'en','1536194472',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(948,'1980-01-01 00:00:00',5,'en','173953098','A8','A5','male','','','','','','','Y','','Y','','','','','','','','','','','','','','','','Security consultant','','','Y','','','SmartOS (Illumos)','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because I needed to learn how to configure NixOS. Using nix for personal project builds came (slightly) later','','Y','','','','','Y','Y','','','Y','','','','Y','Y','Y','Y','','','A1','A2','A10','','','','','','','','A6','A4','A5','','','','','','','','','','','','',NULL,'For os configuration, ansible\r\nFor software projects build, cargo','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A18','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I\'ve made a few small PR\'s but it\'s mostly a skill issue, to a lesser degree that PR\'s can take a long time to get attention and be merged.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because I was tired of stale software and big release jumps, and wanted to get back to a more rolling release setup ','Y','','Y','','Y','','','Declarative configuration, consistency across multiple machines, single configuration method rather than many files with different syntax','Current software, rolling release, easy rollbacks in case of rare problems','The ability to find, adopt and adapt customisations and tweaks shared by others easily','More consistent and opinionated patterns on how things should be done, and tooling to lint and help maintain this consistency across the nixpkgs repo and incoming PRs.','ubuntu or gentoo with a bunch of ansible config','Y','','','','','','','Y','','','','','',''),(949,'1980-01-01 00:00:00',5,'en','1514745277','A5','A3','-oth-','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','My most esteemed colleagues directed me to Nix for its killer feature set in Developer Experience','','Y','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A2','A3','A5','','','','','','','','A8','A6','A13','','','','','','','','','','','','',NULL,'Arch Linux ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','A7','A5','','','','','','','','','','','','','','','','','','A9','A7','A2','','','','','','','','','','','','','','','','','','','','','','','A2','','Need to learn how to contribute and where','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Once I saw the unstoppable force of the Nix language in a developer environment context, I looked into NixOS. Just learning that it was a fully Declarative OS was enough to switch me immediately from 10y+ of Arch','Y','','','','','','','declarative','Source AND binary distribution ','Rollback in time (even at boot)','Change nixos-rebuild to require root or a --force flag\r\nMake takeover scripts fully fledged so that any Linux can be injected with NixOS (existing ones are bad)\r\nAdd more support for complex LVM & LUKS setups','Arch Linux','Y','','','','','','','Y','','','','Home-manager','','Keep up the great work. '),(950,'1980-01-01 00:00:00',5,'en','473352359','A2','A3','male','','','','','','','Y','Y','Y','','','','','Y','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','First, to manage C++ dependencies / development environments, I mean C++ libraries (best alternatives was Conan or CMake\'s CPM) AND tooling (best alternatives was distro packages managers).\r\nNow I work on creating a self hosted media server cluster FULLY as code, based on NixOS + Hashicorp stack.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A2','A7','A1','','','','','','','','A6','A7','A14','','','','','','','','','','','','',NULL,'APT, CMake\'s CPM, Ansible','A7','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','To create a self hosted media server cluster based FULLY as code, based on NixOS + Hashicorp stack.','Y','','Y','','','','','OS as code','large nixpkgs content','','- Add real override possibility for NixOS modules, like it is for derivations\r\n- Add support for other init systems, regular systemd alternatives but above all distributed ones like Hashicorp Nomad or svanderburg/disnix','Ansible and Kubernetes I guess','','','','Y','','Y','nixos-anywhere','Y','','','Mate','Disko is a pearl, I also use sops intensively, thus sops-nix','','Thank you'),(951,'1980-01-01 00:00:00',5,'en','1487361399','A5','A2','-oth-','Non-binary','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','because i wanted to use nixos','','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'whatever package manager comes with the distro i would have hypothetically chosen','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','bitter hatred for microsoft, utter refusal to use github','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','general desire to break away from windows and begin using linux (software freedom being the motivator). had an ABSURD amount of time to deliberate on a distro; eventually became seduced by the idea that i could define nearly everything about my system and user environment with a handful of files and pretty much never have to do it again. not being condemned to dependency hell is also nice although that\'s technically a feature of nix','Y','','','','','','','configuring my system with my silly little configuration flake','nix in general (aforementioned dependency hell, but also being able to nix-shell -p a program when i just need to borrow it for a bit)','the rollbacks that i have not needed to use YET','more modular monitor hotplugs, mostly? currently managing this with autorandr service. in my case, i\'ve got a pen display could be connected to different ports or different devices, and my understanding is that i\'d have to write a profile for each possible configuration thereof; it\'d feel more \'correct\' if i could somehow define my pen display\'s output configuration once and import it as a module.\r\n\r\nalso, the ability to manage opentabletdriver profiles. otd profiles are in json and could hypothetically be simple to nixify but i haven\'t found motivation to do this for myself in my own cfg yet...','bedrock, if not silverblue/kinoite','Y','','','','','','','','','','bspwm','','','i use nixos btw'),(952,'1980-01-01 00:00:00',5,'en','632715456','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Curiosity.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A9','','','','','','','','A4','A8','A9','','','','','','','','','','','','',NULL,'GNU Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','The logo.','Y','','','','','','','Configuration','Package availability','Generations','','Guix','Y','','','','','','','','','','Hyprland','','',''),(953,'1980-01-01 00:00:00',5,'en','1024855575','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','i heard about Nix right after learning to package a project of mine in dpkg\r\npackaging that project in Nix straightened out a lot more about the project than dpkg did\r\nand since the project is a daemon, i ended up writing a module for it and switching to NixOS','','','','','','','Y','Y','','','','Y','','Y','Y','Y','Y','','','','A1','A3','A9','','','','','','','','A9','A14','A1','','','','','','','','','','','','',NULL,'probably still dpkg\r\nif it (and Guix) disappeared today, maybe snap or docker','A2','','','','','Y','','','','','','','','','','','','','','','','','','A15','A25','A3','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','i packaged a project of mine which straightened out that project a lot\r\nsince the project is a daemon, i wrote a module for it, that also improved the project a bunch','Y','','Y','','','Y','','configuration management','the condensed know-how of thousands of contributors','ease of contributing','runtime sandboxing (like snaps?)\r\nRFCs 140 and 101 (more of a nixpkgs change than a NixOS change)','probably debian, or maybe something ostree based','Y','','','','','','','','','','','nix-channel-monitor','','i was hoping for more questions to guide the documentation development'),(954,NULL,1,'en','1980248280','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','Y','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(955,NULL,1,'en','1909346188','A2','A3','male','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(956,'1980-01-01 00:00:00',5,'en','1291009527','A2','A3','male','','Y','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Declarative','','','','Y','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A11','A8','A6','','','','','','','','','','','','',NULL,'I guess arch','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A4','A1','','','','','','','','','','','','','','','','','','A4','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Declarative','Y','','Y','','','','','Slim','Easy nix integration','','Declarative Disk formatting with config (Disko)','Arch I guess','Y','','','Y','','','','','','','sway','Sops, generators, ','',''),(957,NULL,NULL,'en','491926281',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(958,'1980-01-01 00:00:00',5,'en','1507563992','A2','A5','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','Learning the nix way','A1','Started using automation at work and was wondering if Nix can help me develop my automation and infrastructure-as-a-code skills.\r\nI Love the ideas behind Nix/NixOs, and decided to give it a go, so far so good, more or less :P','','Y','','','','','Y','Y','','','','','','','','Y','Y','','','','A1','A10','A6','','','','','','','','A14','A8','A9','','','','','','','','','','','','',NULL,'I\'m coming from traditional linux approach, and package managers that I have been using for decades by now...','A4','','','','Y','Y','','','','','','','','','','','','','','','','','none atm','','','','','','','','','','','','','','','','','','','','','','A25','A2','','','','','','','','','','','','','','','','','','','','','','','','A1','','Knowledge of nix ;-)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','to learn it','A1','I started looking into automation and nixos seem lika a good idea/way to automate os deployment.','Y','','Y','','','','','automation and the idea of having my os defined as code','amount of available packages','Finally I will be able to put it in git and have control over what I do with it (I hope)','no Idea, using NixOS not that long to understand its shortcomings, so far I\'m the limitation and my knowledge of the system... perhaps some documentation I have found bit confusing at the time specially around flakes and the new way but I\'m getting there slowly and I accept that, huge thanks at the same time.','Arch and Debian','Y','','','','','','','Y','','','hyprland','None yet','None yet','Yes, Thank you,\r\nI appreciate the time and effort everyone puts into os projects and although I\'m at the receiving end of the things I understand what it takes to maintain it and push things forward, so It is me/us users who owe you huge thank you from me.\r\nThanks'),(959,'1980-01-01 00:00:00',5,'en','541122194','A8','A5','male','','','','','','Y','','','Y','','Y','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because trying to do a clean, repeatable install with Debian, Arch or Fedora was still a bit of a hack and required too much TLC after the fact, Homebrew\'s take-over of /usr/local eventually just made me mad, and the myriad of nvm, rvm, sdkman, etc never worked exactly the same in the same team of Dev\'s.','Y','Y','','','','','Y','Y','Y','','','Y','','Y','Y','Y','Y','Y','Y','','A2','A3','A10','','','','','','','','A14','A12','A3','','','','','','','','','','','','',NULL,'Debian','A7','','','Y','Y','Y','','','','','','','','Y','','Y','','','','Y','','Y','','A15','A9','A1','A20','A2','A13','A7','A24','','','','','','','','','','','','','','A15','A9','A5','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','Declarative + Functional language foundation','Hermetic + repeatable guarantees','','Readability of the Nix language can be challenging sometimes, even if you read it every day.','Debian','Y','','','','','Y','','Y','','Y','','Communities, like nixos-hardware, emacs, nixos-generators','',''),(960,'1980-01-01 00:00:00',5,'en','724862081','A2','A3','male','','','','','','','','','','','','Y','Y','','','','','Y','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Heard about it in some chat randomly. Tried out home-manager. Then switched to NixOS when I upgraded my pc.','','Y','','Y','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A3','A7','','','','','','','','A4','A8','A3','','','','','','','','','','','','',NULL,'proxmox','A2','','','','Y','','','','','','','','Y','','','','','','','','','','','A15','A2','A17','A1','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I am not confident the packages I needed to built myself have enough users to warrant contributing them to nixpgs.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I rebuild my PC and was already using home-manager.','Y','','Y','','','','','easy rollbacks','easy configuration compared to ArchLinux','ZFS on root was unproblematic to set up','','proxmox','Y','','','','','','','Y','','Y','sway','','dream2nix',''),(961,'1980-01-01 00:00:00',5,'en','1568053848','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','Declarative dev environments and super fast CI with cool caching. ','','Y','','Y','','','Y','','Y','Y','','','','','Y','Y','Y','Y','','','A3','A2','A7','','','','','','','','A5','A3','A10','','','','','','','','','','','','',NULL,'Alpine Linux apk','A5','','','','Y','','','','','','','','','','','','','Y','','','','','','A24','A23','A1','A6','','','','','','','','','','','','','','','','','','A24','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I was maintaining package updates, but now mostly think this all should be completely automated.','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A4','Ability to rollback.','','','','Y','','','','Ability to rollback (even if never used)','','','','Alpine Linux','Y','','','','','','','','','','','','','Keep the friendly spirit. That\'s all we need.'),(962,'1980-01-01 00:00:00',5,'en','1703969133','A2','A4','male','','','','','','','Y','Y','','Y','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A5','A4','A6','','','','','','','','','','','','',NULL,'Debian with Guix.','A4','','','','','','','','','','','','','','','','','','','','','','','A1','A5','A9','A7','A10','','','','','','','','','','','','','','','','','A13','A22','A14','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','','Guix','Y','','','','','','','','','','Sway','','',''),(963,'1980-01-01 00:00:00',5,'en','1390181410','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted unified configuration across different linux machines, have experience with saltstack & ansible, but knew the pitfalls of external configuration management and NixOS solved these problems.','','','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A1','A2','A9','','','','','','','','A12','A8','A9','','','','','','','','','','','','',NULL,'Probably a mixture of ansible with arch linux.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','Buildbot','A2','A15','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as with nix.','Y','Y','Y','Y','','','','Module system','Package availability','Binary cache','','Arch Linux','Y','','','Y','','','','','','','Sway','','',''),(964,'1980-01-01 00:00:00',5,'en','1025830041','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I became a DevOps and was managing several services with Ansible, Docker and Terrraform.\r\nOne day I read a blog post on https://news.ycombinator.com/ about Nix and got interested.\r\nThe idea of a DSL for service and system management hooked me a lot.\r\nI migrated all my personal machines to NixOS.\r\nI also found a new job offering to work with Nix, because it was hard to convice and sell nix to people in my previous company.','','Y','','','Y','','Y','Y','Y','Y','','','RaspberryPI4','Y','Y','Y','Y','','','','A1','A2','A7','','','','','','','','A3','A6','A7','','','','','','','','','','','','',NULL,'Guix > Ansible/Terraform > Docker','A2','Y','','','Y','Y','','','','','','','Y','','','Y','','Y','','Y','','','Cicero','A15','A3','A25','A13','A24','A1','A20','A19','A11','A5','A8','A21','A23','A22','A17','A14','A2','A9','','','','A1','A11','A20','','','','','','','','','','','','','','','','','','','Y','Y','Y','importing my own modules','A2','','As developer, when I develop an environment for a repository I use a nix flake, so it is repository specific logic written in nix, which doesn\'t make sense to contribute.\r\nAs admin/devops, I use nix for deploying services. The software I want to use is most of the time already packaged as service.\r\nWhen I really want to use something which is not already packaged, I will try to contribute but other contributers are already pretty fast.\r\nAs system-user installing software, most of the time when I hack on my configuration.nix and override a package, this is my personal configuration, which also doesn\'t make sense to contribute.\r\nIf I would use nix as a programming language, then I would have better reasons to contribute.\r\nBut the language-server for nix only helps writing flakes and configurations, for actual programming the IDE support is lacking compared to programming languages. For example: Jump to definition and autocompleting/suggesting after typing a \'.\', are the most important features to learn and use a programming language. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','managing my infrastructure','A3','Same story for nix.','Y','Y','Y','Y','','','RaspberryPi4','Reproducibility','Everything is code','On restart, I can choose which generation I want to run.\r\nReally helps if you somehow managed to lock yourself out of your system.','Setting nix.conf via configuration.nix is inconsistent.\r\nFor example when setting netrc-file or access-tokens and using a flake.nix which fetches from multiple private artifact hosters, I ran in multiple problems.\r\nRunning nix build always resulted in a 401 at some point.\r\nHowever when I ran \'nix build --access-tokens \"tokens\" it fixed the problem and afterwards I could run \'nix build\'.\r\nI garbage collected the /nix/store, restarted the nix-daemon and even restarted my machine before none of this was fixing the problem.\r\nMy only quess was that something inside the nix-daemon was stuck, maybe even inside the db of the nix-daemon.\r\n\r\nI would love to have a guide which explains me how to debug this kind of problem inside the nix-daemon itself, or access to the nix-db to find and delete a locking row manually.\r\nBut the inconsistently also happened when I was trying to set all the distributed builder settings for a nix-daemon on a machine, which should act as a general builder for my network.\r\n\r\nAlso the experience of using javascript/typescript with flakes on professional gigs always resulted in not using nix for javascript development.\r\nI know there is documentation for javascript here: https://github.com/NixOS/nixpkgs/blob/master/doc/languages-frameworks/javascript.section.md\r\nWith all the privacy on our projects we are fetching a lot from private endpoints, so we tried to use fetchYarnDeps to get all the packages we wanted but the offlineCache which is generated by fetchYarnDeps transforms \'-\' to \'_\' and adds some weird naming. \r\nIf you run mkYarnPackage and mkYarnModules afterwards, they won\'t care about all the dependencies in yarn.lock and will only use what is required by package.json, which just doesn\'t work when you are using a project with multiple subprojects.\r\nThe weird naming from fetchYarnDeps also doesn\'t allow to reuse the fetched files as node_modules to run \'yarn\' directly.\r\n I was trying to hack something together over the course of several day but ended up not using nix for this project and using a container made in 1day. ','Guix > VoidLinux/FreeNAS/Gentoo > Debian/ArchLinux','','','','','','Y','wrapping nixos-rebuild --target-host','','','','Xmonad','flake-utils, Hydra, nil, nix-direnv, nix-tree, nixos-generators, home-manager, vulnix','NixOps, rnix-lsp','NixOS really made me eager to try administration, because before I didn\'t wanted to deal with impurity.\r\nIt would be great if NixOS manages to be controlled by voice.\r\nI think the next paradigm shift happens when we leave our keyboard behind.\r\n\r\nKeep doing great work and see you soon.'),(965,'1980-01-01 00:00:00',5,'en','384110990','A2','A4','male','','','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','Y','','','no_std','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A coworker introduced it at work. He was the Evangelist. From there it spread into our projects and then as NixOS in people\'s laptops, mine included.','','Y','','','Y','no_std','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','','A2','A4','A1','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'Maybe bob or something with docker.','A4','','','','Y','Y','','','','','','','','','','','Y','Y','','Y','','','','A15','A4','A13','A3','A2','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','We first used it in projects at work. Then it became convenient to use NixOS as well. I started with my private laptop and then later also used it on my work laptop. We also slowly migrated our IT away from Ansible/Ubuntu to using deploy-rs/NixOS','Y','Y','Y','Y','','Y','','Package configurability (override, patches, ...)','Deterministic environment ','Recent GNOME desktop ','I would try to find a Nix enthusiast from the GNOME project to work on GNOME bugs.','Fedora for laptops, maybe Ubuntu for servers','Y','','','Y','','','','Y','','','','Hercules CI, cachix, nixbuild.net','Hydra',''),(966,'1980-01-01 00:00:00',5,'en','2048973408','A2','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Seems logical as it is part of NixOS.','','Y','','','','','Y','Y','','','Y','','','','Y','','Y','Y','','','A2','A1','A3','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'git','A3','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A15','A5','A1','A20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I am contributing, but obviously using nix best describes my involvement.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I started with Debian in 1996 as it seemed the most pure Linux distribution. In 2010 I started to use Puppet professionally, became a big fan of declarative configuration management. In 2016 I discovered NixOS - with an integrated configuration management system much more powerful than Puppet - and replaced all my Debian.','Y','','Y','','Y','','','Reliable and atomic configuration management','Huge amount of software available','Rolling release','I would add up to date documentation.','Debian.','Y','','','','','','','Y','','','Sway','','NixOps, about a year ago. I just could not get even the smallest thing done with NixOps. It seemed in an in-between state with not much happening.','<3 Nix & NixOS'),(967,'1980-01-01 00:00:00',5,'en','152235580','A2','A3','male','','Y','','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','','','','','','','','Y','','','','','','','','Y','','Y','','','','A1','A7','A3','','','','','','','','A4','A5','','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A25','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','The reproducibility of personal configurations.','The ease to extend package with overlays','The ability to easily mix stable features and cutting edge packages with flakes','I would make it easier to understand and debug configurations errors.','Arch Linux','Y','','','','','','','','','Y','leftwm','Home-Manager','',''),(968,'1980-01-01 00:00:00',5,'en','657762052','A2','A3','male','','','','','','','Y','Y','','Y','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Nix was the deployment and packaging solution for work project. Developers 99% of time didn\'t need to touch it, but over time my curiosity increased, a colleague of mine and active community member explained to me how it works, so then I decided to use it as my go-to package and environment manager','Y','Y','','','Y','','Y','','Y','','','','','Y','Y','Y','Y','','','','A2','A5','A1','','','','','','','','A6','A7','A2','','','','','','','','','','','','',NULL,'a mix of asdf + docker + something like bazel (in certain circumastances)','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','custom','A1','A11','A15','A25','','','','','','','','','','','','','','','','','','A1','A11','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time constraints, projects I need in nixpkgs either can\'t be there (legal), are already present in nixpkgs or are available with flakes','N','N','macOS-quality desktop environment for Linux or need to maintain own server ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'flake-related utils: flake-utils, numtide devshell, source filtering, etc.','various 2nix projects for JS/TS integrations, they all are somewhat flawed in presence of workspaces','Nix\'s language performance is also causing problems in workspaces with many interdependent packages; \r\nHaving a way to define multiple packages in a single repo using flake-like syntax, where each always depends on the latest version of others would be nice.'),(969,'1980-01-01 00:00:00',5,'en','1248935605','A2','A3','male','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','Y','Y','','','','','Y','','','','','','','','','','Y','','','','A11','A10','A6','','','','','','','','A6','A5','A14','','','','','','','','','','','','',NULL,'dotfiles','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','A1','A22','','','','','','','','','','','','','','','','','','','Y','','','','A1','','High barrier to entry, hard to understand','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-darwin, home-manager','',''),(970,'1980-01-01 00:00:00',5,'en','1634647178','A2','A3','male','','','','','','Y','Y','Y','','','Y','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was tired of bricking Arch Linux, and of old software in Debian','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A2','A6','A7','','','','','','','','A10','A11','A2','','','','','','','','','','','','',NULL,'Docker','A4','','','','Y','Y','Y','Y','','','','','','','','Y','','','','Y','','Y','we have this Cicero experiment at IOG','A1','A2','A3','A4','A9','A13','A15','A18','A23','A25','A11','','','','','','','','','','','A11','A5','A19','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Was tired with bricking Arch Linux / too old software in Debian','Y','Y','Y','Y','','','','No way to brick the OS – can rollback from boot menu','Write once and forget (almost), it won\'t break','Reproducibility','Windows support','Debian + VMs / Docker','Y','','','Y','Y','','nix-darwin','','','','i3','','','fingers crossed for it taking the world'),(971,NULL,2,'en','1839586425','A2','A1','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','Daily driver ','A1','I wanted a stable system with newer packages than debian but not the bleeding edge of arch so i choose nixos ','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A6','A1','A10','','','','','','','','A5','A14','A10','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','idk nix language ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(972,NULL,3,'en','789887035','A2','A3','male','','Y','','','','Y','','Y','','','Y','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','Y','','','Y','Y','Y','','','','','','Y','','Y','','','','A2','A7','','','','','','','','','A5','A8','A10','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A1','A4','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(973,'1980-01-01 00:00:00',5,'en','578622408','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','The main reason that I started using Nix is NixOS. I wanted to have a clean, reproducible system with a lot of packages available. I can easily garbage collect, change desktop environments, and do whatever without leaving a bunch of unused dependencies behind. That is how this distribution really differs from the \"regular\" ones.','','','','Y','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'ArchLinux, more specifically the offical Arch repository as well as the Arch User repository (AUR).','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A15','','','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','The amount of knowledge required, I do not have the motivation.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted to be able to manage multiple machines, declaratively in a single git repository. I have a personal computer and a laptop, and I can easily have both share the same configuration with tiny differences. Another thing I really like is the garbage collector. I can replace my desktop environment for example, rebuild and remove (all) left behind dependencies / store paths to have a clean system again. I also see it having really great potential for servers, in fact I once used it. And in my opinion you do not need one of these third party deployment tools. NixOS has everything you need.','Y','','','','','','','Declarative system management, sometimes one option enables so many other options which is just awesome because a lot of effort is taken off of you','Flakes for `nix run`, `nix develop`, `nix build` and passing git repositories to rebuild with a specific configuration','Garbage collection and store optimisation to clean up the system','Much better documentation for the modern way of doing things. There is for instance Zero To Nix, which is great, but it does not go in depth and only covers a very few things. Really extend the NixOS manual with the modern way and easy to understand explanations following best practices and written by experts. I really love NixOS and I think not much is missing, besides documentation. Imagine it had as great documentation as ArchLinux, that would be incredible.','ArchLinux','Y','','','','','','','','','','SwayWM, configured via home-manager','home-manager','','Thank you for developing Nix and NixOS, it is really a blessing and I hope it gets maintained more and more and eventually gets great docs (probably the biggest pain point with using these tools at the moment).'),(974,'1980-01-01 00:00:00',5,'en','1696691721','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I heard a little bit about nix without understanding what it is, and one day, I wanted to try something new, and then I give it a try.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A14','A9','A8','','','','','','','','','','','','',NULL,'As OS : arch-linux\r\nAs Packet Manager : pamac, or maybe flatpak','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I\'m a beginner, and I\'m still learning about nix, so for now, I\'m not sure I understand everything. Today, if I had something to propose, I\'m not sure to do it correctly, so I prefer to wait and to learn more.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I tried Nix on an archlinux distribution, and I fill that I would have a better integration with Nixos ( for example desktop icons when I install a new application, etc... ).\r\nNow, that I tried Nixos, I really like :\r\n- the configuration of all my OS in a file\r\n- the feeling that I reinstall all my system each time I made a change. Thx to that, I don\'t have to think on how to reinstall my system, I use to do it and it\'s really simple.\r\n- I can save all my OS versions in git ','Y','','','','','','','The reproductibility','The configuration of a whole \"stack\" by only one option ( for example, I want to enable fingerprint, I just enable it with one option and that\'s ok)','The save of the different version of my OS','I don\'t use it since enough time to be able to answer.','I would have stay on Manjaro.','Y','','','','','','','Y','','','','None','None',''),(975,'1980-01-01 00:00:00',5,'en','1022348911','A2','A4','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I saw it tooted as \"functional programming made OS\". I wanted to prove that the claim was nonsensical. Here I am, 6ish years later.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A3','A14','A8','','','','','','','','','','','','',NULL,'Debian + pip + cargo + cabal + praying that nothing breaks ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A25','A5','A4','A14','','','','','','','','','','','','','','','','A15','A5','A2','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Sloth','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','In order to prove it can\'t possibly work…','Y','','Y','','','','','','','','','Debian','Y','','','','','','','','Y','','','home-manager','',''),(976,'1980-01-01 00:00:00',5,'en','1711654006','A2','A2','male','','','','','','','Y','Y','Y','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Started getting into Haskell and tried https://ihp.digitallyinduced.com which uses Nix. After that I used Nix primarily for dev shells','','Y','','Y','Y','','Y','Y','Y','','','Y','','','Y','Y','Y','Y','Y','','A2','A3','A1','','','','','','','','A2','A10','A3','','','','','','','','','','','','',NULL,'Maybe a manual approach?','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A15','A1','A9','A3','A4','A2','','','','','','','','','','','','','','','A13','A1','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Can\'t select 2 answers :(','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The only logical next step from Nix','Y','','Y','','','','','Programming a system with a language','Sharing parts of a system','Reproducible systems','+ Multiple init systems (nice to have)\r\n+ State management (e.g. snapshotting state folders before updates / rollbacks of services)\r\n+ Support more Systems / Archs (Windows, BSDs, Embedded)\r\n+ Better Module System via Types / LSP / better REPL\r\n','Arch / Gentoo / *BSD','Y','','','Y','','','','','','','XMonad','NixOS: Impermanence','','Great work!'),(977,NULL,2,'en','686870405','A2','A3','male','','','','','','','','','','','','Y','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Every time I reinstalled a linux-based OS I had to remember 20 steps in order to get things as I wanted. Drivers/packages etc and I kept forgetting things and dreaded reinstalling.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A8','A14','A4','','','','','','','','','','','','',NULL,'Probably a Setup.md file that describes in plain English any workarounds I needed to do, or drivers I needed to install per machine.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A22','A2','','','','','','','','','','','','','','','','','','','A2','A6','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I don\'t want to have the responsibility for maintaining packages for now - any overlays and patches to upstream packages I hack very dirtily as well just so it works for me.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(978,'1980-01-01 00:00:00',5,'en','1088313377','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','If I remember correctly, I found it randomly, liked the concepts and thus decided to use it (at the time I was a student, so I could afford to change Linux distributions on a whim)','','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','','','','A10','A3','A1','','','','','','','','A3','A8','A6','','','','','','','','','','','','',NULL,'Probably language specific infrastructure for shells, and a dotfile manager for configuration','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A14','A4','A25','A13','A22','','','','','','','','','','','','','','','','A14','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','Same as nix','Y','','','Y','','','','Declarative configuration','Ease of configuration (simple-nixos-mailserver)','Rollbacks','','Probably a dotfile manager','Y','','','','','','','','','','Bspwm, xmonad','Home-manager, simple-nixos-mailserver, nixvim, stylix, nil, alejandra','',''),(979,'1980-01-01 00:00:00',5,'en','12028580','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','A an old colleague of mine was running nix about 7-8 years ago. I gave it a go on my laptop at the time, but switched to macos later.\r\n\r\nFast forward many years, and I started running a desktop server at home. I tried ubuntu, and other distros, but nix popped a few times on hackernews, and I put it on my machine, and stuck with it.','','Y','','','','','Y','Y','','','','','','','','Y','Y','','Y','','A1','A7','A10','','','','','','','','A9','A14','A5','','','','','','','','','','','','',NULL,'Fedora.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I don\'t know where to begin with creating my own derivations.\r\n\r\nI find the ecosystem a bit overwhelming. I don\'t know a good way to iterate on a package development.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','Y','','','','','Nixos-rebuild and rollback','Nixpkgs','Flakes','I would add LSP support.','Fedora?','Y','','','','','','','','Y','','','','','Thanks!'),(980,'1980-01-01 00:00:00',5,'en','2053326169','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A7','A2','A6','','','','','','','','A2','A12','A8','','','','','','','','','','','','',NULL,'I would use what I used before I started using Nix which was containers for everything.','A4','','','','Y','Y','','','','','','','Y','','','','','Y','','Y','','','','A15','A1','A20','A7','A5','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','Y','Y','','','POS','Atomic deployment','One configuration language for everything','Very customizable','I would reduce the memory and processing power needed for evaluation.\r\nAnd I would add an integrated way of dealing with secrets (agenix works ok for now). ','Debian and containers','Y','','','','','Y','','Y','','','','','',''),(981,NULL,2,'en','1742766520','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Certifier','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I wanted to try a different distribution when I needed to do a reinstall due to a fundamental change in my setup.','','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A10','','','','','','','','A5','A3','','','','','','','','','','','','','',NULL,'Arch still','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A22','A9','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don\'t feel comfortable with my knowledge of the language yet',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(982,'1980-01-01 00:00:00',5,'en','676774991','A2','A3','male','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A5','A6','A11','','','','','','','','','','','','',NULL,'System management: homebrew/chezmoi \r\nBuilding: Docker, Make','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A15','A9','A2','A4','A3','','','','','','','','','','','','','','','','A13','A15','A9','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','Y',NULL,'I used it for work but company policy forced me to use macOS','Easy generation of ready to use VMs for aarch64 (like, passing a flake for my config, just run the image without going through an installation process with partitioning, etc and do work there)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(983,NULL,1,'en','258850811','A6','A3','fem','','','','','','','','','','Y','Y','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(984,'1980-01-01 00:00:00',5,'en','229763886','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was telling to my colleague about how unsatisfying it was for me to configure my spare laptop since every time I tried to do something with it I remembered that I did not install a piece of software, or forgot to configure something the way it is configured on my primary laptop. My colleague then told me about his NixOS setup and how he can copy his configuration to his spare laptop in case of emergencies and be up and running in no time.','','Y','','','Y','','Y','Y','','','','','','Y','Y','','','','','','A1','A2','A7','','','','','','','','A9','A3','A6','','','','','','','','','','','','',NULL,'Dockerfile','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I don\'t know what I can and cannot contribute, and who to contact in case I need my contributions to be reviewed.','N','Y',NULL,'I\'d like to use NixOS to host home services (paperless, monica, mealie, game servers) in LXC containers on Proxmox. Can\'t get `nixos-rebuils switch --target-host ...` to work with my configuration. I lack the knowledge to solve this issue.','More troubleshooting documentation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-devcontainer','',''),(985,'1980-01-01 00:00:00',5,'en','436469528','A2','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','','','','','','Y','','','','','','','','Y','Y','','','Y','','A1','A2','A9','','','','','','','','A8','A9','','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','A15','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','','',''),(986,'1980-01-01 00:00:00',5,'en','83458284','A8','A3','male','','','','','','','','Y','','','','Y','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking for a distro to best suit my desktop needs when I realised half the work I was doing while switching was attemping to recreate the same system over and over. I had read all the hype about NixOS and reproducibility, but I didn\'t really begin to understand the desire for it. It eventually occurred to me that this might be a solution to some of my problems. Despite my reIuctance towards SystemD, I resolved to give it a try, and after a few attempts and a fair bit of reading, I had a basic environment up and running. After struggling a little with the lack of immediacy around searching and installing packages compared to dnf or paru etc, I realised everything I did was meaningful and permanent, and the impact of what I had just achieved hit me; my machine was now an abstract entity, able to be raised from the dead perfectly intact, no matter the issue. After a few painful distro hops and mediocre package manager experiences, that *really* meant something. It gave me a sense of being bulletproof, and the freedom to experiment however I wanted without regrets. Now, every desktop and server I have any influence over (bar one, long story) is now on NixOS, and I don\'t expect that to change as long as this distro keeps kicking.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A8','A9','A13','','','','','','','','','','','','',NULL,'Guix, if I could ever get it to install. My previously mentioned SystemD aversion lead me to try it a few times first, but I was not well acquainted with Lisps, nor did I enjoy having to bundle my own nonfree firmware into the install ISO (which didn\'t work anyway). GNU\'s reputation for excellence once again shines through.\r\n\r\nFailing that, I would probably wing it with a minimal Alpine setup or something.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','Woodpecker','A15','A2','A3','A4','A25','A1','A13','A22','','','','','','','','','','','','','','A2','A15','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','1. My derivations are probably not up to standard (not that I recall finding a standard when I looked, tbh).\r\n2. Many are rewrites or do-overs of existing packages which either aren\'t (well) maintained, or to use some specific branch/bleeding edge patch/etc.\r\n3. I don\'t really trust myself to become a maintainer as I don\'t know a good way of regularly querying a bunch of git repos to see when they\'ve released/updated new things. Nix is already a junkyard of abandoned maintainership which I\'ve experienced occasional frustration over, I don\'t want to contribute to that.\r\n4. Extremely based developers including a flake.nix and sometimes even a binary cache, meaning I don\'t need it in Nixpkgs anyway (and can overlay it if I do).\r\n5. Usually the thing shows up on Nixpkgs eventually anyway so my dodgy and typically outdated once off derivation can be abandoned.\r\n6. I\'m an idiot and still don\'t know how to write a module properly.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wrote my NixOS story in the Nix box. C\'mon, man. I get it, they\'re different. But the same question twice?','Y','Y','Y','Y','','','','Reproducible machines and environments','Dev shells (especially with direnv)','Telling Arch users with bricked systems to \"just roll back a generation, it should be fine\"','Death to the old ways. Flakes are all you get from now on.\r\n\r\nSomewhere along the line, packaging Python libraries becomes slightly less awful (though it\'s the Python packaging ecosystem\'s fault, mostly).','See Nix section answer.','Y','','','','','','','','Y','','Hyprland','I know home-manager isn\'t official, but you should probably ask more about it. And by the way, home-manager /should/ be an official part of Nix. This is one thing Guix does sanely and correctly in comparison.','None. I delight in beating my head against the wall until a thing works. That\'s how I managed to do flakes.','I want a NixOS hoodie. A nice thick one with a big print.'),(987,'1980-01-01 00:00:00',5,'en','745251964','A2','A4','male','','','','','','','','','','Y','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','Y','(some time ago) I did not get firefox extensions to work','','','','','','','','','Y','Y','','','Y','Y','I\'ll try it again anyways, because I think its a fundamentally great approach!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I did not get firefox extension to work (some time ago)','I\'ll try it again anyways as soon as my new notebook arrives (Star Labs Starfighter). I think nix is a great approach and I like its rollback capability and defining the system completely via config. Managing lots of machines centrally would be a great thing for the future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Your doing a great job! I think nixos is the future of linux'),(988,'1980-01-01 00:00:00',5,'en','172283210','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','private: at the begin as replacement for Homebrew, later for system and user configuration (nix-darwin + home-manager)\r\n\r\nwork: building some examples how to build a package, a configuration module, NixOS configuration and deployment. I am currently building a POC (a shell env for macOS, Linux and WSL) at the request of colleagues.','Y','Y','','Y','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A3','A10','','','','','','','','A4','A8','A6','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','A1','A10','A5','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Expertise, courage :)','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','Y','','Y','','','','','declarative configuration','rollback in the case of problems after upgrade','','','none. No distro that I have tried since 2000 has been able to convince me for a longer period of time for desktop use. after more than 10 years of RISC OS (1988-2002) and macOS (since 2002), the desktops could not fulfil my expectations.\r\n\r\nI have only used NixOS headless so far.','Y','','','','Y','','','','','','','nix-darwin, home-manager, disko, flake-parts, devenv','',''),(989,'1980-01-01 00:00:00',5,'en','2086248030','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','','','','Y','','','Y','','','','Y','Y','Y','','','','','A2','A3','A1','','','','','','','','A14','A5','A2','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A6','',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(990,'1980-01-01 00:00:00',5,'en','979378504','A4','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','','','Daily driver - everything','A7','I have been always tempted to hope on linux and stop using windows for many reasons mainly performance and customization. was chatting with a friend who uses linux as his dev environment. and he mentioned his struggle on trying to make nixos work. after he explained to me what nixos is briefly. me begin me the next night I downloaded nixos and started to learn literally everything. I didn\'t even know what a dotfile means. yes literally eveything. and slowly nixos started growing in me the further I try to configure and change stuff to my liking. I cant imagine going or hopping to any other distro and losing my config.nix file where i can change stuff on the fly switch reboot and have a fail safe generation because I\'m bound to break something. I know every single comment or video where ever is warning the masses to not use nixos if they are new to linux. But I beg to differ. use nixos if you are new to linux because you will never be able to break anything. <3 NixOs','','','','','','','Y','','','','','','','Y','','','Y','','','','A2','A1','A10','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'cant really imagine nixos without nix. flatpaks maybe as that would be the only option','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I dont think I have the necessary skills ','Y',NULL,NULL,NULL,NULL,'A1','','','','Daily driver','A1','Same story in nixpkgs 🤦','Y','','','','','','','customization','flakes','backup generation','to get a better wiki. to have examples in options page show all sub options would help new linux babies like me GREATLY ','probably arch?','Y','','','','','','','','','','Hyprland','none','none','Thank you for NixOS '),(991,'1980-01-01 00:00:00',5,'en','1219083432','A1','A2','male','','Y','','','','Y','Y','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','A close friends of mine recommends me of NixOS and I was fascinated. ','','Y','','','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','','A2','A1','A4','','','','','','','','A8','A1','A11','','','','','','','','','','','','',NULL,'','A3','','','','Y','Y','Y','Y','','','','','','Y','','Y','','','','Y','','','','A15','A2','A9','','','','','','','','','','','','','','','','','','','A9','A1','A5','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','Y','Y','','Y','','declarative configuration','testing changes without fear','distributed/remote build','Add better documentation.','A bunch of ansible modules.','Y','','','','Y','','','','','','sway','nil (the lsp), nvfetcher, sops-nix, lanzaboote, disko','',''),(992,'1980-01-01 00:00:00',5,'en','1523809530','A2','A3','male','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Colleague of mine promoted it within our corp.','','Y','','','Y','','Y','','','','','','','','Y','','','','','','A2','A3','A1','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'Docker, poetry','A4','','','','Y','','','','','','','','','','','','','','','Y','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(994,'1980-01-01 00:00:00',5,'en','340671289','A5','A2','male','','Y','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','','','','','','','Y','','Y','','','Y','Y','Y','Y','','Y','','A1','A2','A6','','','','','','','','A8','A11','A14','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','Y','','Y','','Y','','A15','A3','A2','A1','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','Y','Y','','','','','','','','','','','','','Y','','','','','','Sway','','',''),(995,'1980-01-01 00:00:00',5,'en','854314350','A2','A3','male','','','','','','','','','','','Y','','','','','','Y','Y','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Found it through the Haskell community ','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','','','','A2','A7','A10','','','','','','','','A4','A6','A15','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','Y','','','','A2','A7','A13','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I am not sure how to get my packages in to nixokgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Found it through the Haskell community. Fell in love with the declarative approach that reminded me of Junos.','Y','Y','Y','Y','','Y','','Determinism ','Upgrade-ability ','Control ','Better networking support, no scripts that frequently break.','I have no idea. Nothing comes close.','Y','','','','','Y','','','','','Sway','','',''),(996,'1980-01-01 00:00:00',5,'en','148969558','A2','A3','male','','','','','','Y','','Y','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','wanted to declaratively configure my system','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A2','A8','A7','','','','','','','','A4','A5','A3','','','','','','','','','','','','',NULL,'universal blue, container based linux system','A1','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','learning curve, not enough time','N','Y',NULL,'AMD 6650 XT making flicker artifacts','Fix for AMD 6650 XT making flicker artifacts',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(997,'1980-01-01 00:00:00',5,'en','456406122','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','DPO / CISO','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','heard of it on Linux Unplugged podcast, and coming from microos wanted to try it','Y','Y','','','','','Y','','','','','','','Y','','','','','','daily driver, non-dev!','A1','A2','A7','','','','','','','','A5','A2','A4','','','','','','','','','','','','',NULL,'homebrew, generic linux','A4','','','','','','','','','','','','','','','','','','','Y','','','','A2','A1','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','heard of it on linux unplugged podcast, wanted to try. ','Y','','Y','','','','','declarative config','versioning / generations','portable os config','add documentation and better \"non-dev\" support\r\nchange: dont focus on flakes: make onboarding and config easier, flakes can be a power user feature but there\'s a gap to fill in the linux workstation landscape and you\'re losing it\r\nremove: flakes as the \'be-all-and-end-all\", nixos is very powerful and can be used for all kinds of purposes, it\'s just unbelievably (and stupidly so) hard to learn as there is 0 documentation that makes sense','Opensuse microOS (still do) and/or vanilla OS','Y','','','','','','','Y','Y','','','home-manager','flakes; way to complicated, too technical and adds zero value','just keep doing what you\'re doing, maybe focus on \"regular\" users a bit more and you\'ll do fine'),(998,NULL,NULL,'en','1618887276',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(999,'1980-01-01 00:00:00',5,'en','836549563','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','','Y','','','','','','Y','','','Y','','','','Y','Y','Y','Y','','','','A2','A6','A1','','','','','','','','A9','A5','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','garnix','A13','A9','A25','A1','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Mostly that the nix community in general has a certain lack of taste, so I know to expect unproductive bikeshedding or denial of rather apparent issues. I know it\'d be a hugely frustrating experience engaging more thoroughly with the project -- there\'s no useful coherent direction, and just doing my own thing would add to the mess. So I limit myself to providing fixes for obvious bugs.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','','Y','','','','','','','A straightforward way to redeploy automatically without granting root ssh access. (E.g. a module for deploy-only ssh access, or some kind of pull-integration with e.g. github actions).','I used Guix before, but it was too slow. Probably Debian.','Y','','','','','Y','','','','','','','',''),(1000,'1980-01-01 00:00:00',5,'en','482887754','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Only when using NixOS.','','Y','','','','','Y','Y','','Y','','Y','','','Y','','Y','','','','A7','A2','A1','','','','','','','','A6','A9','A5','','','','','','','','','','','','',NULL,'Use the tedious process of running into every missing package after I do a reinstall.','A4','','','','','Y','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Haven\'t found something to contribute yet :)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','At first a few years ago (in 2016 maybe) at the recommendation of a colleague.\r\nWhile I did like the philosophy of nix/nixos, it didn\'t work out for me then.\r\nNow I use NixOS on my personal devices and I love it.','Y','','Y','Y','','','','actually declaratively configure all systems in one place (using colmena)','Ability to not accrue unwanted state/configuration (I \"erase my darlings\").','One single consistent configuration language (nix) for all software on the system (though not 100% for everything)','Secret management kinda sucks now; or at least, it doesn\'t integrate well with the way I\'d like to use it.\r\nI\'m using sops-nix for a few things, and that works fine enough. \r\nBut I\'d like nix to integrate with my my passwordmanager, without having to put all the relevant passwords into sops-nix and having to actively maintain that in case a password changes (e.g. my work decides the WIFI password needs changing).\r\n\r\nAlso debugging can be quite frustrating, finding out what breaks a build. Usually it\'s directly related to a change, so that\'s no problem.\r\nBut right now for example, I run into \" Invalid package attribute path \'qt6Packages qt6ct\' \", and I don\'t think I use any Qt packages.','I used Arch Linux before, so probably that.\r\nUsing different shell scripts for managing differences between machines.\r\nMaybe something like ansible, though I prefer something that\'s actually declarative :). \r\nBefore NixOS I tried to keep a lot of stuff in systemd (user) services.','Y','','','','Y','','','','','','sway','I use NixOS on a Raspberry Pi 4B (not sure if that\'d count as embedded :p).\r\nSetting up cross-compiling was kinda complicated so I gave up and just waited a bunch while the Pi did a full nixos-rebuild the first time (the downside of ZFS :\'-) )','flakes, I couldn\'t get into it at the time. I\'d be nice to be able to integrate flakes one file at a time (I have no idea if that\'s possible; I haven\'t looked into it that much).','Keep up the amazing work! I really love the philosophy of NixOS, and the community is super helpful.\r\nI would recommend it to everyone if it didn\'t have such a steep learning curve :\'-) '),(1001,'1980-01-01 00:00:00',5,'en','884966987','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','At Demant we make hearing aids. We need to have reproducible build environments. Docker has been used for a long time but updating old containers is not always working correctly. Developers also make a lot of tools, some may have conflicting dependencies. That\'s when I heard about Nix and tried it out. Now Nix is installed everywhere, through we are working up to deploying NixOS for test setups and workstations.','','Y','','','','','Y','','Y','Y','','','','','Y','','Y','','','','A1','A2','A7','','','','','','','','A1','A6','A12','','','','','','','','','','','','',NULL,'Git and docker plus a bunch of adhoc crappy scripts.','A4','','','','','','','','','','','','Y','','','','','Y','','','','','','A2','A3','','','','','','','','','','','','','','','','','','','','A2','A5','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'ve always feared to update my Debian and hesitant to try out new fancy kernel features due to breakage. With Nix and git, i can reinstall even if everything on disk gets corrupted, and cross pollinate with other users on GitHub.','','Y','','Y','','','','Reproducible','Tweakable','Declarative','A way to easily run proprietary binaries. We have a compiler from Synopsis which currently has to run from Docker. It would be nice to let bubblewrap take OCI containers and run. Like nix Autobahn but more official and robust without guessing libraries.','Docker, podman','Y','','','','','','','','','Y','','Comma\r\nNixos-generators','Dream2nix\r\nPoetry2nix also has some baked in assumptions and fragile heuristics.','I\'ve been thinking about a ninja to nix converter. That would be cool '),(1002,NULL,NULL,'en','133901675',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1003,'1980-01-01 00:00:00',5,'en','318015605','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','Y','','A2','A9','A6','','','','','','','','A2','A8','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A13','A15','A3','','','','','','','','','','','','','','','','','','','A13','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Fairly classic AFAIK:\r\n - used Arch Linux before, already started using Nix as a package manager for reproducible dev envs\r\n - growing annoyance by difficulties in sharing configuration between different/new machines in a unified fashion\r\n - a friend finally recommending NixOS as a concrete motivation','Y','Y','Y','','','','','Declarative system specification','Package availability in nixpkgs ','Rollbacks','decrease the download size of upgrading a non-trivial NixOS system\r\n(not strictly NixOS-related, but most pressing in this context)','Going back to Arch Linux, or trying out sth Nix-like (i.e. guix)','Y','','','Y','Y','','','','','','i3',' - attic\r\n - nvfetcher\r\n - statix, deadnix\r\n - nix-output-monitor\r\n - comma','',''),(1004,'1980-01-01 00:00:00',5,'en','2004017955','A2','A2','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','Programming Hobbyist','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','When I started using NixOS.','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A3','A5','','','','','','','','A8','A3','A12','','','','','','','','','','','','',NULL,'I would probably still be using my system package manager of a rolling release linux distribution, and to manage my configuration files I\'d use a setup with GNU Stow and symlinks.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A15','A25','A24','A6','A11','A12','A5','A2','','','','','','','','','','','','','A6','A5','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was using Arch linux as my daily driver and was interested in the declarative nature of NixOS, the idea of having all of my system configuration declared in a single place instead of being cluttered through the system was cool. Not having to keep a list of tweaks I did to my system really appealed to me, so I tried it in VM and after that went successfully I started using NixOS as my main system.','Y','','','','','','','Declarative nature of system configuration.','Single source of truth for all my system (all system configuration and home configuration (using home-manager) live inside of a single git repo), this along with the declarative nature of NixOS allows me to use tmpfs as root to be able to have an uncluttered system that doesn\'t accumulate cruft.','Easy development environments/shells.','Stabilize flakes (or whatever it evolves into while stabilizing) and make it the recommended way to use NixOS, since I think flakes are a really cool feature (stating flake inputs inches Nix/NixOS towards what I love, increased reproducibility by being declarative instead of ad-hoc like channels), but the split ecosystem between flakes and non-flakes is an awkward situation and doesn\'t allow the full development force of the Nix community ecosystem to be unified under a recommended way to do things.\r\nImproving language specific packaging would also be good (some of them are already good, but some languages that are used less within the Nix community leave a little to be desired).','A rolling release distribution (probably Arch).','Y','','','','','','','','','','XMonad ','The nixpkgs binary cache is really nice and combines the power of a source distribution with the ease of use (and speed of downloading updates :P) of a binary distribution, search.nixos.org is indispensable to discover packages in nixpkgs and nixos options, nix-community/home-manager is really cool since it extends the NixOS concept of declarative config to the user\'s home, and nix-community/impermanence is very nice for making tmpfs as root easier to use.','','I really love Nix and NixOS, sometimes they\'re a pain to deal with (packaging obscure applications with byzantine build systems), but they provide a super impressive technical solution to packaging and dependencies (Nix) and system configuration (NixOS) that brings sanity to the otherwise insane world of packaging (imperative build systems that are different for each distribution, python dependency hell, etc.) and system management (things such as editing random dot files, which will surely be forgotten when reinstalling :), or the accumulation of cruft that a system with updating), that makes it so I don\'t see myself returning to regular linux distributions and packaging anytime soon. Thanks to everyone working on Nix, I really love it <3 '),(1005,NULL,2,'en','1537355487','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','','','','A4','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A3','A10','','','','','','','','A8','A4','A12','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','','','','A4','','Y','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1006,'1980-01-01 00:00:00',5,'en','977156013','A5','A2','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using Nix after being annoyed with all of the individual tools for managing packages and dependencies per-language and per-system. This started by installing Nix on Fedora Silverblue (which was not straightforward at the time). I started using Nix to first manage my global user dependencies (shells, tooling, etc) and for project dependencies (compilers, toolchains, etc).\r\n\r\nNix made my life a lot easier after I learned how to use it and ensured that I was able to get the latest versions of dependencies in one place rather than dealing with 20 different tools that are used relatively infrequently.','Y','','','','','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','','A1','A7','A2','','','','','','','','A6','A2','A8','','','','','','','','','','','','',NULL,'I previously lived in a world where Nix didn\'t exist, I don\'t know how I would survive without it.\r\n\r\nI would likely go back to using an assortment of individual tools or trying to rely on the native OS package manager for the packages that are available for it.','A2','','','','Y','Y','Y','','','','','','','','','','','','','Y','','','','A9','A1','A10','A15','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I started using NixOS after getting annoyed with Fedora Silverblue and it\'s relatively unstable package management, on top of the need to constantly reboot or replace default packages in order to get what I would consider to be basic features provided by other Linux distributions, such as hardware accelerated H.264 encode/decode (due to patent issues). While using Fedora Silverblue I was also using Nix to manage my global user packages and to develop software with local dependencies, so I was already familiar with Nix before switching to NixOS. My main interest with NixOS was the availability of Nix (and nixpkgs) and the declarative and reproducible nature of the OS itself. Being able to share an OS config that can be closely reproduced, especially when managing a fleet of machines is a dream come true.','Y','','Y','Y','','','','Atomic upgrade and rollback','Declarative configuration','Reproducibility','','I would likely switch back to Fedora for desktop/lab use and RHEL (or one of it\'s derivatives) for production servers.','Y','','','','Y','','','Y','','','','','',''),(1007,NULL,1,'en','1599936407','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1008,NULL,NULL,'en','1435903613',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1009,'1980-01-01 00:00:00',5,'en','1834994509','A5','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','Y','','','','','','Y','','','','The best way of doing things (flakes, pointing to a specific revision for actual reproducability) was never the official way','I think I was oversold on unifying configuration. Too often there\'s an impedence mismatch where the options someone has contributed are great, but all of the other options you just put into a config string, at which point why not put everything in the config string','Y','','','','','','flakes stabalized',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Was consistently frustrated by all the asterisks on the things that were the reasons I tried NixOS. Reproducability? Yeah, but only if you pin to a specific commit of nixpkgs, which nothing does by default. Unified config? Sorta, if you want a basic nginx server it\'s fine and dandy, if you want to use any interesting options than just stuff your nginx config in this string and call it good. And also the config for the only user on my system is separate from the system config? What\'s home manager? I\'m already learning a new language I can\'t learn that too. Swap config while running? Well yes but actually no. The thing that starts/stops systemd services is specific to systemd and nothing else changes live unless it can be done by adding/removing files','I don\'t know. Stabilize flakes, have the courage to make the good option the official and the default. Make compile times hurt a little less.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none','Tried to use just nix as a build manager but didn\'t really like it, not enough benefit to justify not using the usual in whatever ecosystem (cargo for rust, rubygems/bundler for ruby) though I don\'t have any C or C++ projects',''),(1010,'1980-01-01 00:00:00',5,'en','1041662335','A3','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking for a better language to write YAML/JSON config files\r\nI started with evaluation to JSON, then using as developer environment, and then now is my OS.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A2','A3','A1','','','','','','','','A8','A12','A4','','','','','','','','','','','','',NULL,'BMHATK.\r\nI would like to say Guix but to honest is hard to know that nix exists, guix is even harder, maybe docker but, I don\'t have HPC at work.\r\nFor my initial use case, wirte JSON/YAML, I\'d use CSS.','A4','','','','Y','Y','','','','','','','','Y','','','','Y','','Y','','','','A1','A2','A26','','','','','','','','','','','','','','','','','','','A26','','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started with sugar, then alcohol, then cannabinoids, ..., and finally NixOS\r\nNo more anxiety symptoms since then. Except when I had to enable flakes, no sure why isn\'t enabled by default.','Y','','','','','','','Declarative configuration','rollback','Start stop of related services','Support for other init systems\r\nEnough money to invest in marketing like canonical does\r\nEnough time to invest in security/LTS like Red Hat does','ArchLinux','Y','','','','','','','','','','Enligthenment','DevShell, DevEnv, DevBox, Flox','',''),(1011,'1980-01-01 00:00:00',5,'en','1918259770','A3','A2','male','','','','','','Y','','','','','Y','','','','','','Y','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A7','A3','','','','','','','','A8','A9','A11','','','','','','','','','','','','',NULL,'','A7','','Y','','Y','Y','','','','','','','','Y','','Y','','','','Y','','','','A15','A13','A10','A3','A1','A2','A17','','','','','','','','','','','','','','','A10','A2','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','Y','Y','Y','','','','Declarative configurations','Great abstractions for managing services','','Not exactly NixOS, but I\'d factor out the module system, and integrate home-manager together with nixpkgs, have it as a first class citizen.','Probably MicroOS or Fedora Silverblue','Y','Y','','Y','','Y','','','','','Hyprland, Sway','Hydra, home-manager','NixOps','Keep up the great work! I love the direction we\'re moving torwards, and how the community is growing.\r\n\r\nI hope I can get even more involved and help out more and more! I think it\'s a matter of time until Nix becomes a mainstream technology stack.'),(1012,NULL,1,'en','614930233','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1013,NULL,2,'en','397180448','A8','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Read about it on /r/programming, and fell in love with the idea and ecosystem','','Y','','Y','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A3','A8','A7','','','','','','','','A14','A13','A1','','','','','','','','','','','','',NULL,'SUSE','A1','','','','Y','Y','','','','','','','Y','','','','','Y','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Time constraints (kids) but i have contributed a couple small patches before',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1014,'1980-01-01 00:00:00',5,'en','1548022669','A2','A3','male','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I first used it on ArchLinux, because I liked the development environments.','','Y','','','','','Y','','','','','','','','Y','','','','','','A1','A2','A7','','','','','','','','A12','A8','A4','','','','','','','','','','','','',NULL,'Guix','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A4','A2','A15','A9','A22','A1','','','','','','','','','','','','','','','A15','A4','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','90% - time\r\n10% - i still have to learn how to build a package of my own properly, the documentation is not very clear.\r\n','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My path was: Windows (10 years) -> Arch Linux (8 years) -> NixOS (1 year and 6 months).\r\n\r\nWhat hooked me initially was the configuration part: change something, a new generation is born and you can always go back.\r\nNow, the development environments is what keeps me on NixOS. Every project I work on in the company now has a flake.nix\r\n\r\nA very big bonus point of NixOS: 6 months ago I changed my work laptop, I just cloned a repo, ran the nix install from the flake and after 1 hour I everything was back. I just copied the KDE config files from the old one, and that was it.','Y','','','','','','','Development shells','Generations','Home manager','For my use case, it\'s pretty good. I just miss the ca derivations.','Guix','Y','','','','','','','','Y','','','N/A','N/A','Thank you!'),(1015,'1980-01-01 00:00:00',5,'en','1073288662','A2','A4','male','','','','','','Y','','Y','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','','','','','','','','Y','','Y','Y','','','A2','A8','A1','','','','','','','','A11','A2','A8','','','','','','','','','','','','',NULL,'docker/podman','A4','','','','','','','','','','','','','','','','','','','','','','concourse ci with nix generated containers','A15','A4','A17','A2','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','reproducibility','configuration of the whole system','','','','Y','','','','','','','','','Y','i3','','',''),(1016,NULL,3,'en','126651250','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1017,NULL,NULL,'en','1567772446',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1018,'1980-01-01 00:00:00',5,'en','565138521','A8','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A3','','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A6','A14','A4','','','','','','','','','','','','',NULL,'Nothing','A5','','','','Y','','','','','','','','','','','Y','','','','','','','','A9','A13','A6','A2','A3','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Gradual increasing frustration with Microsoft and Windows. Can\'t upgrade to Windows 11, decided to move early.\r\nExperienced (ex-)Linux user, already use NixOS on the server so decided to use it for my destop too','Y','','Y','','','','','Rollbacks','Reproducibility','Large package set','More tests - manual testing at the current rate of change isn\'t sustainable','Debian','Y','','','','','','','','','','Budgie','age-nix for secrets management','Dotnet tooling is under documented. Still managed to hack something together but it wasn\'t an easy process','Thanks for the work you do. It means a lot.'),(1019,'1980-01-01 00:00:00',5,'en','1624406090','A2','A5','male','','','','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','Y','Y','','','A3','Doing a package manager in a functional programming style convinced me. Haskell packages are automatically included in Nix.','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','','A1','A7','A3','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'Debian','A4','','','','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','A13','A3','A4','','','','','','','','','','','','','','','','','','','','','','','A4','',NULL,'N','Y',NULL,'Over the years I tried again and again, but I always hit a roadblock relatively quickly and cannot get help.\r\nI have installed NixOS on a machine, but then USB-Ethernet adapter is no longer supported, although it worked throughout the installation. The LightDM login prompt does not show up anymore, although it worked once after the installation.\r\nNixPkg installation on Debian does not work in any way. I have installed nix-bin package, but then nix-env and nix-shell and most other nix commands cause the machine to kill all sessions. This only happens on an AMD machine, not on an Intel one. Alternatively I tried to chroot into a NixOS installation from Debian but got an incomprehensible error message about making the chroot directory private.\r\nNixOS Discourse was no help so far.\r\nMy Haskell packages are automatically included in NixOS, which is great. But some of them did not work out-of-the-box. It was very hard to get help to fix them. Eventually, I got most help by trying to submit pull requests.\r\n','Better documentation, better help.\r\nFlatpak documentation is a good example. It explains for every build system (autoconf, cmake) how to configure a package.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','It would be great if Nix would work on just any major OS, that is, MacOS, MS Windows, Debian etc. Such that I can concentrate on one packaging system. It seems that with WSL we finally also got Windows support. I have not tried, though. I invested some time in Flatpak, but Flathub dropped i386 (i.e. 32bit) support recently. And flatpak does not support CLI programs well, because you have to add desktop ballast to any program. And its sandboxing limits user data to the HOME directory, whereas it does not encapsulate safely anyway.'),(1020,'1980-01-01 00:00:00',5,'en','2033139514','A2','A4','male','','Y','','','','','Y','','','','','Y','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','','','','','','','Y','','','','','','A1','A3','A7','','','','','','','','A8','A5','','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A13','A3','','','','','','','','','','','','','','','','','','','','A13','A3','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1021,'1980-01-01 00:00:00',5,'en','1080864533','A8','A6','-oth-','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','','','Y','','','','','','','Y','','','','A1','A7','A9','','','','','','','','A5','','','','','','','','','','','','','','',NULL,'Arch','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I don\'t have (or want) accounts on Microsoft ecosystems such as GitHub','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','Y','','','','','','','','','Y','','','','','','','Y','Y','','','','','I find it really annoying that Eelco and many of the other developers of Nix are only interested in flakes but are using the nominally \"still experimental\" status of flakes to avoid the responsibility of documenting them fully in the official manuals. '),(1022,'1980-01-01 00:00:00',5,'en','1319873994','A2','A3','male','','','','','','','Y','Y','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started my first job as a Haskell developer and the team was using Nix there.','','','','','','','Y','','Y','','','','','','Y','Y','Y','','','','A3','A2','','','','','','','','','A8','A4','','','','','','','','','','','','','',NULL,'Honestly no clue, never cared too much about what my package manager is. Nix is just so useful with the shells that that\'s my go to. So I guess something that also supports these kind of dev shells?','A4','','','','Y','','','','','','','','','','','','','','','','','Y','','A13','A1','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','','','','A2','','Limited understanding of how to.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Gaming','A3','People at a new job were using it, and the job also used Nix, so I thought it would be convenient to use as my colleagues would be able to support me and I would have Nix already installed. I also just really liked the idea of NixOS (at least how those same people sold it to me, and they were right). I\'ve been using it ever since.','Y','','','','','','','Being able to add comments to my OS configuration. It\'s so useful I can comment why I installed a certain app, or why I configured something like I did.','Easy overview of what exactly is installed on my system (and combined with the comments why it is installed).','Being able to share my config over multiple computers with minimal effort. I have a desktop I don\'t use very often because I\'ve been out of the country a lot lately, but whenever I\'m home I just git pull and rebuild, and my system is fully up to date. I don\'t have to remember what software to install and where, it\'s all just there.','Add: Make home-manager a first-class part of it\r\nRemove: The need for semicolons (yea silly one, can\'t really think of anything else that I would remove, but I\'m hardly an expert so I don\'t actually know the weird edge cases, so don\'t listen to me here)','I\'d probably still be on Ubuntu. That\'s where I started using Linux, and I never found that stuff like Arch was really interesting enough to switch to because it doesn\'t do anything fundamentally different than Ubuntu. I tried NixOS because it\'s fundamentally different, even though it\'s perhaps harder to use. Or I would have tried some other declarative OS, but haven\'t looked into any yet.','','','','','','Y','','Y','','','','','',''),(1023,'1980-01-01 00:00:00',5,'en','108402524','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Easy to replicate and maintain, rollback, large pkg repo.','','Y','','','','','Y','Y','','Y','','','','','Y','','Y','','','','A2','A1','A7','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'GNU Guix','A1','','','','Y','Y','','','','','','','','','','','','','','','','','none','A3','A2','','','','','','','','','','','','','','','','','','','','A22','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of knowledge and time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','Large repo','Maintainability (declarative conf)','Rollback','NIX lsp with completion and linter for noxos options.','GNU Guix','Y','','','','','','','','','','sway','home-manager','','Doing great overall.'),(1024,'1980-01-01 00:00:00',5,'en','690318601','A2','A2','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','it\'s cool','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A8','A13','A4','','','','','','','','','','','','',NULL,'gentoo','A1','','','','Y','Y','','Y','','','','','','Y','','Y','','Y','Y','Y','','','','A2','A15','A17','A20','A24','','','','','','','','','','','','','','','','','A2','A15','A17','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','lazyness','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','it\'s cool\r\n','Y','Y','Y','Y','','','','Declarativity, specifically with a very expressive programming language','','','','Gentoo maybe? not sure, used arch before','Y','','','Y','','','','Y','','','hyprland, river, swayfx','','','Love you guys and what you\'re doing, keep it up <3'),(1025,'1980-01-01 00:00:00',5,'en','1042698991','A5','A2','male','','','Y','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A3','A friend in my dorm was using NixOS, and I figured I\'d try it out. Nix came with it.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A3','A5','A1','','','','','','','','A7','A8','A5','','','','','','','','','','','','',NULL,'Presumably Docker, or something similar.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A3','A1','A15','A13','','','','','','','','','','','','','','','','','A13','A14','A23','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Poor documentation, inconsistencies in best practices, and the desire to not be a maintainer of yet another thing.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','A friend in my dorm was using NixOS, and I figured I\'d try it out. Now I\'m stuck with it, because other choices seem worse.','Y','','Y','','','','','Declarative, file-based description of most of the software on my laptop.','Ease of trying out various programs without them clobbering too much global state.','','I would add better program/environment isolation support, something along the lines of what Spectrum is working on, or similar to QubesOS. I would make any small program integration inconsistencies go away. And I\'d like for NixOS modules to not feel... as esoteric or awkward as they do.','Presumably something ostree based.','Y','','','','','','','Y','','','','','','Thank you all for creating and working on NixOS, I truly appreciate it!'),(1026,'1980-01-01 00:00:00',5,'en','1496202365','A6','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A7','A5','','','','','','','','A7','A4','A13','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','Y','','','','','','','','Y','','Y','','','','','','A15','A22','A9','A13','A24','A2','','','','','','','','','','','','','','','','A15','A22','A9','','','','','','','','','','','','','','','','','','','','','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','','','','','Fedora Silverblue','Y','','','','','','','Y','','','','','',''),(1027,'1980-01-01 00:00:00',5,'en','430918948','A8','A3','fem','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','','Y','Y','','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','A2','A7','A10','','','','','','','','A13','A8','A2','','','','','','','','','','','','',NULL,'','A1','','','Y','Y','','','Y','','','','','','','','Y','','Y','','','','','','A8','A9','A15','','','','','','','','','','','','','','','','','','','A22','A17','A19','','','','','','','','','','','','','','','','','','','','Y','','','A1','','It\'s hosted in GitHub. If it was in some other src hosting service like GitLab I would have considered','N','N','SELinux support',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Consider moving to (self-hosted) Gitlab. Use Hetzner instead of S3 🤧'),(1028,NULL,1,'en','1565818999','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1029,'1980-01-01 00:00:00',5,'en','1714349116','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I had interest in packaging stuff, previously used paludis on Gentoo. Then I discovered Nix*, started to use Nix packages first, then full NixOS and ever since (for about a decade now).','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A9','A1','A2','','','','','','','','A9','','','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A3','A17','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','composition: import from a bunch of custom expressions','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I had interest in packaging stuff, previously used paludis on Gentoo. Then I discovered Nix*, started to use Nix packages first, then full NixOS and ever since (for about a decade now).','Y','','','','','','','rollbacks - it\'s easier to experiment when earlier \"systems+configs\" remain available reliably','lots of packages in good shape; things relatively often just work out of the box','FLOSS','I see a challenge in organizing the community, NixOS project\'s infrastructure, etc. Adapting to relatively fast growth of the community isn\'t easy.','Another Linux distro surely, but hard to guess which.','Y','','','','','','','','','Y','xmonad','','I haven\'t stopped, but `nix profile` turned out quite disappointing for me (in particular when compared with `nix-env`).',''),(1030,'1980-01-01 00:00:00',5,'en','1182035928','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','A2','A7','A1','','','','','','','','A8','A4','A11','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A24','A15','A1','A2','A10','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','atomic configuration changing','service and application configuration','very quick system reinstallation','','Arch ','Y','','','Y','','Y','','','','','sway','nix-index, comma, nixpkgs-review, nix-any-shell','',''),(1031,'1980-01-01 00:00:00',5,'en','669696773','A2','A3','male','','Y','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A2','Reproducible build!!','','','','','Y','','','','Y','Y','','','','','Y','','','Y','','','A2','A7','A5','','','','','','','','A13','A14','A6','','','','','','','','','','','','',NULL,'I don\'t know but fortunately exist.....','A1','','','','Y','','Y','Y','','','','','','','','Y','','Y','','','','','','A15','A4','A3','A9','','','','','','','','','','','','','','','','','','A3','A4','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Not a fan of Debian but I like their developer selection model, which happens in DebConf with Web-of-trust, contract signing and endorsement from existing 3 developers at least instead of radom people calling themselves NIX DEVELOPER','N','N','Good security model in package manager, Bad security in OS itself, Security through obscuriry is an excuse. Linux distros in general is insecure (Android, QubesOS amd ChromeOS are not Linux distros) [1] but Flatpak, wayland etc are making a good progress. Whonix lead criticized NixOS for this reason[2]. Fedora good track pf adopting state-of-art security model for example early adopter of secure boot in Linux, NTS support, FDE with LUKS2 and argon2id, selinux support, Wayland by default etc\r\n[1] https://madaidans-insecurities.github.io/linux.html out-of-date but most points still stands\r\n[2] https://www.whonix.org/wiki/Dev/Operating_System#NixOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Thanks for taking this survey. I hope you peeps will improve NixOS security'),(1032,NULL,2,'en','158069001','A5','A3','male','','Y','','','','','','Y','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I actually started by playing with NixOS before I started using Nix by itself for projects. It started with me needing to get work projects running on my NixOS desktop which required me to learn how to setup development environments using Nix.','','Y','','','','','Y','','','','','','','','Y','','','Y','Y','','A2','A7','A1','','','','','','','','A8','A6','A10','','','','','','','','','','','','',NULL,'Likely a combination of containers and the native package manager','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A4','A3','A15','A2','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Frustrated with Gentoo\'s Portage breaking all the time and giving cryptic error messages, I was looking for something that would give me the same flexibility. NixOS happened to fit that bill perfectly and then some.','Y','','Y','','','','','Declarative system config','Ease of rollback','The ease of adding custom packages to the environment','','Likely some combination of ansible and Debian. ','Y','','','','','','','','','','i3','','',''),(1033,'1980-01-01 00:00:00',5,'en','331253835','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','It seems like the one way to do it properly.','','Y','','Y','','','Y','','','','Y','','','Y','Y','','Y','','','','A1','A10','A2','','','','','','','','A4','A5','A6','','','','','','','','','','','','',NULL,'Arch','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A25','A17','','','','','','','','','','','','','','','','','','','A25','A17','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Need to go to like Nix.camp to get like a deepdive to learn how to, as I have not a good clue, and it feels a bit daunting to do alone.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Commit to fully learning nix.','Y','','','','','','','Configurable home-manager modules','Set certain things at boot, which is easier and transferable to other devices with the same set-up','Have all the configurations in a single place.','I\'d add more options and modules for the specific software I use. For example, set the numlock enabled at boot in the TTY. And other small nitpickings. ','Arch','Y','','','','','','','','','','Sway','Nix-shell-info. And various things to make learning about nix easier within the shell.','Certain programs I did use on Arch, but i am unable to get working in Nix.','To have like a Wayland-only ISO ready for people see how easy it is to use NixOS with Sway.\r\n\r\nI get that people use KDE and Gnome, but I find that Wayland is well-supported within Nix, and it would be nice to see it showcased so others might try it.'),(1034,NULL,NULL,'en','1028021328',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1035,'1980-01-01 00:00:00',5,'en','1138026953','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A colleague pointed out NixOS to me. At first Nix (the language) caused me to disregard it, but after a while the benefits of NixOS pulled me in anyway. Building my system config necessitated learning the language, and after I while I also started contributing to nixpkgs.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A9','','','','','','','','','','','','','',NULL,'Ansible','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'ve had a growing preference for declarative systems for years, due to the amount of manual work involved with managing workstations and servers. This resulted in working with Ansible, dotfiles directories and even QubesOS disposable VMs. NixOS seems to be the culmination of my story, at least for now.','Y','','Y','','','','','Declarative system configuration','Shared configurations between systems','Mostly stateless systems (leveraging impermanence)','I would make the Nix language much simpler, to make it easier for new users','Fedora Silverblue or some other immutable Linux OS','Y','','','','','','','','','','Qtile','home-manager, impermanence, agenix, lanzaboote, disko, devenv','',''),(1036,'1980-01-01 00:00:00',5,'en','1616621454','A2','A2','-oth-','non-binary','','','','','','Y','Y','Y','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because it was what came with NixOS','','Y','','','','','Y','Y','','','','Y','','','Y','Y','Y','','Y','','A6','A2','A3','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'Ansible, Docker, etc','A2','Y','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A3','A5','A4','A1','','','','','','','','','','','','','','','','A15','A2','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I liked what it provides, and it was the better option out of NixOS and Guix','Y','','Y','','Y','Y','','declarative system configuration','flexible module system','easy rollbacks','Better ways to keep parts of config private (this is DIFFERENT from secrets). Right now there\'s git-crypt (broken on non-dirty git trees), just adding your files to gitignore (broken because Nix simply checkouts the git repo to Nix store without the files, although you can make Nix treat it as a path by removing .git (file URLs are broken altogether at the moment)), and finally the option I went with is using a Nix plugin, but I really wish I didn\'t have to.\r\n\r\nAlso I often wish there were better ways to run multiple instances of a service.\r\n\r\nAnd a small pet peeve - nixos-rebuild --flake ... --target ... uses the build host\'s hostname when choosing the nixosConfiguration to build, while imo it should use target host\'s hostname.','If Nix still existed, somebody else probably would\'ve built an OS on top of it. Otherwise, Arch or Gentoo for personal devices, Arch or RHEL-based distros for servers. ','Y','','','','','','','','','','sway','home-manager, nix-init, nix-output-monitor, nix-plugins, comma, nix-gaming','nixpkgs-wayland (everything I want is already packaged in nixpkgs)','I love Nix, thanks to everyone who keeps making it better :3'),(1037,'1980-01-01 00:00:00',5,'en','1445590802','A1','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Other','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','Y','','','','','','Y','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1038,NULL,NULL,'en','711224823',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1039,'1980-01-01 00:00:00',5,'en','399294166','A5','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Was distro hopping heard about nixos on Linux Unplugged. Gave it a shot and it stuck','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'Probably popos. ','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','Y','','','','','','','','','Ubuntu','Y','','','','','','','Y','','','','','',''),(1040,NULL,2,'en','2046180215','A2','A3','male','','Y','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','My internship advisor gave me a laptop with nixos installed. I use it since then.','','Y','','Y','','','Y','','','','','','','Y','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A8','A2','A5','','','','','','','','','','','','',NULL,'probably arch linux','A7','','','','Y','','','','','','','','','','','','','Y','','Y','','','','A2','A15','A4','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','NUR','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1041,NULL,1,'en','506022027','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1042,'1980-01-01 00:00:00',5,'en','1449259222','A2','A3','male','','Y','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was looking for a more efficient replacement of Dockerfile','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A8','A11','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','buildbot, garnix','A2','A15','A9','A3','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','','','','','','Memory evaluation overhead','archlinux','Y','','','','','Y','','','','','sway','nixos-anywhere\r\ndisko\r\nnix-update','',''),(1043,NULL,1,'en','1905463444','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1044,NULL,1,'en','2080385962','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1045,'1980-01-01 00:00:00',5,'en','26178194','A2','A5','male','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A2','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A10','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','Y','','','','','','','','A2','A3','A15','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don\'t know how to contribute','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','herbstluftwm','','',''),(1046,'1980-01-01 00:00:00',5,'en','788187687','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Employer choose Nix.','','Y','','','','','Y','Y','Y','Y','Y','','','Y','','Y','Y','Y','Y','','A1','A2','A7','','','','','','','','A1','A8','A11','','','','','','','','','','','','',NULL,'Guix, maybe, but that\'s a Nix fork, so it feels like dodging the question.\r\n\r\nGentoo or FreeBSD Ports, maybe?','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A3','A4','A5','A15','A13','A2','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Employer choose NixOS.','Y','Y','Y','Y','','','','The nixos/tests/ test suite: It is a pile of proofs that hundreds of services are in a working state and is simultaneously example configuration for them.','Keeping all a machine\'s configuration in one git repo (with meaningful, reviewable commit diffs)','Boot-time rollback to previous known-good state. I don\'t often use it, but it\'s so freeing to know it\'s there if I need it.','Better binary trust. Mostly, this is having multiple, independent build farms that publish their built-artifact hashes, having binary-cache fetches check that a configurable set of build farms agree on the hash before fetching it, and having an exception process for packages that can\'t yet be built reproducibly enough for this. The rest is making the stdenv bootstrapping binary as small and legible as possible.','Gentoo or FreeBSD?','Y','','','','','Y','https://git.scottworley.com/auto-upgrade-with-pinch','Y','','Y','','The public Hydra server with all the build logs. This is great for determining how long something has been broken.','I can no longer run \"nixpkgs-review rev HEAD\" like the PR template directs me to because it runs out of RAM and is killed before it can complete. My computer has 8GB of RAM.\r\n\r\nI stopped trying to use flakes because there was a bug where flake inputs could not be used in `restrict-eval = true` mode because Nix was incorrectly referring to the input *source* rather than the fetched copy in /nix/store/ after fetching it. I\'d link the issue here, but this survey has an \"Oops, you took to long, so we threw away all your answers\" misfeature that\'s already bitten me once, and I couldn\'t locate the open issue quickly enough.','Survey folks: Thank you for running this survey.\r\n\r\nNix community generally: Thank you for all your contributions.'),(1047,NULL,1,'en','1006124604','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1048,'1980-01-01 00:00:00',5,'en','821459230','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','N','N','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1049,NULL,1,'en','260941252','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1050,'1980-01-01 00:00:00',5,'en','2039820549','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','N','N','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I have yet to begin to use it regularly. I am struggling w/ configurations and struggling to get into using NixOS. I love that idea, but having a hard time to translate example into my own practical use. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1051,'1980-01-01 00:00:00',5,'en','646172148','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','System configuration in a file sounds cool. :)','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','Y','','','A1','A2','A9','','','','','','','','A12','A13','A5','','','','','','','','','','','','',NULL,'Guix ;)','A2','','','','Y','Y','','','','','','','','Y','','Y','','','','Y','','','','A7','A1','A15','A9','A2','A3','A17','','','','','','','','','','','','','','','A7','A12','A6','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Declarative system configuration rabbit hole.','Y','','Y','Y','','','','Declarative system configuration','Atomic updatws','Rollbacks','Update Nix module system pls.','Guix ;)','Y','','','Y','','','','Y','Y','','sway, bspwm','','',''),(1052,NULL,2,'en','610130657','A5','A5','male','','','','','','','Y','','','','','Y','','','','','','Y','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to avoid the manual upgrade process associated with switching from one Ubuntu release to another. I wondered if Nix could replace Docker for some use cases.','','','','Y','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A1','A6','A7','','','','','','','','A14','A3','A4','','','','','','','','','','','','',NULL,'Ubuntu ','A1','','','','','Y','','','','','','','','','','','','','','','','','','A13','A1','A18','A9','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','I cargo culted a default.nix that I import into my configuration.nix. Is that an overlay?','A2','','I don\'t understand Nix and derivations and community conventions well enough.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I thought it would be easier to maintain than periodic Ubuntu upgrades.','Y','','Y','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1053,NULL,1,'en','1425409112','A2','A2','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1054,'1980-01-01 00:00:00',5,'en','873497201','A5','A3','male','','Y','','','Y','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I hate bitrot. I have found nix extremely painful/annoying and notably flawed, but not nearly as annoying as hearing \"well it worked on my machine\". Nix still has a long way to go but I hope I can help get it there over the next 10 years.','Y','Y','','Y','Y','','Y','Y','','','','Y','Robots','Y','Y','Y','','','Y','','A2','A6','A1','','','','','','','','A15','A4','A14','','','','','','','','','','','','','1. Nixpkgs (not nix CLI or the nix language) has excessive amounts of obfuscation and complexity. It should not take weeks to figure out where \"callPackage\" is defined. Accepting PR\'s that do stuff like split up lib into pureLib and stdenv, and make things like pureLib hierarchical (instead of recursive, because it does not need to be recursive). The focus shouldn\'t be more features, it should be compressing the existing spaghetti code into a streamlined understandible format.\r\n2. Work on support for mixing multiple versions of nixpkgs. E.g. python 3.6 from a super old nixpkgs commit working with python 3.11 from the latest stable channel. This would be by using patchelf to prevent packages from ever using LD_LIBRARY_PATH\r\n3. Having a package say what it is modifying (what binaries did it add to path, what services did it start, what ENV vars did it add). E.g. the ability to just install just the \"python\" binary, not \"pip\".\r\n4. Don\'t write *more* documentation rewrite/improve/overhaul the existing documentation. Theres so much documentation and so little I actually want to read.\r\n5. Consider adding something to the name so nix will actually return more than 0 relevant Google search results. ','I would be writing my own content-addressed package manager for the rest of my life, and using docker and WASM in the meantime.','A7','','','','','','','','','','','','','','None (I use nix for stability, why would I enable an unstable feature)','','','','','','','','','A15','A7','A2','A4','A1','A3','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','Y','Directly import packages from Github urls','A6','',NULL,'N','Y',NULL,'Adding new/custom tools involves time and high cognitive load. \r\n\r\nNixOS is highly incompatible with existing tutorials; e.g. a class assignment/tutorial says do X, Y, Z by Friday. Bob does it in 1 day on Ubuntu, but I have to spent 8 days figuring just how to do X in nix. Nix has very bad support for out-of-channel packages like ROS or python 2.6 (yes both were required for class work in 2023)','Better ease of use. There needs to be a apt-get equivalent that auto-edits the nix-conf. But, because nix lang isn\'t homoiconic, that\'s going to be a major challenge/problem. So if nix would deprecate the \"with\" statement, I would use the tree sitter parser to make an analog of apt-get install, as well as a graphical interface/store which I think would make it much more practical to use NixOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nixpkgs is literally unusable for me without lazamar.co.uk/nix-versions/ I use it more than I use nix search (daily). Patchelf is fantastic. All the other nix-tools I use are tools written myself; a syntax highlighter, comprehensive dev-evironment framework, nix-lang-bundle (like a JavaScript bundler for nix code), some searching tools, some auto-rewrite tools, etc.','niv, most of the *2nix tools. ','I complain a lot, but it doesn\'t mean the work you guys do isn\'t appreciated! Thanks for making a package system that categorically outclasses all others.'),(1055,NULL,2,'en','1106617452','A2','A4','male','','','','Y','Y','','','','','','','','','','','','','Y','','Y','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','','A1','A2','A9','','','','','','','','A6','A8','A3','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','Y','','Y','','','','A2','A15','A17','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1056,'1980-01-01 00:00:00',5,'en','1090503691','A2','A4','male','','','','Y','Y','','','','','','','','','','','','','Y','','Y','','','','','Data manager','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','When I switched to NixOS.','','','','','','','Y','Y','Y','','','','','Y','Y','','Y','Y','','','A1','A2','A9','','','','','','','','A6','A3','A14','','','','','','','','','','','','',NULL,'Gentoo','A2','','','','Y','Y','','','','','','','','','','Y','','Y','','Y','','','','A2','A17','A15','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time, documentation, ideas','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I used gentoo for many years and had a sort of stable snapshot I could roll back to if things broke. But it was in in perfect solution and the build time was killing me…','Y','Y','Y','','','','','Huge package repository.','Reproducibility ','Overlays','Good support for secrets. Easy mirroring of build cache to behind company firewall','Gentoo/Arch','Y','','','','','','Homemanager','','','','Sway/notion','Home Manager','','THANKS!'),(1057,'1980-01-01 00:00:00',5,'en','2124630646','A5','A3','male','','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','Y','Y','','','N','N','','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1058,'1980-01-01 00:00:00',5,'en','87280611','A2','A3','male','','','','','','Y','Y','','','','','','','Y','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A3','A1','A2','','','','','','','','A13','A8','A6','','','','','','','','','','','','',NULL,'Probably other state-of-the-art technology that kinda solves the same problems Nix does: Ansible, Docker, ...','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A2','A13','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Most things I need are already in nixpkgs, and things I don\'t need can easily be added locally fo rmy project without having to upstream my changes','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','','','','','','Y','','','Y','','','','','','','Xmonad','','','Typed nix would be great'),(1059,'1980-01-01 00:00:00',5,'en','729786232','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','Y','','Y','','','','','','Y','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1060,'1980-01-01 00:00:00',5,'en','235716990','A2','A1','male','','','','','','','','','','Y','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','When i started using using linux i was distro hopping a lot, i kept coming back to arch but it didnt feel perfect my system always felt unopimized/too much disk usage after a while. And while searching for solutions i found nixos. I installed it and i\'m not planning to use anything else soon!','','Y','','','','','Y','Y','','','','','','','Y','','Y','Y','','','A7','A1','A3','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'ansible or docker','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A15','A2','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','i\'m bad at packaging and almost everything is in nixpkgs (except for protonge)','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','same story as previously in nix','Y','','Y','','','','','declerative','garbage colect','','allow us to use systemd alternative','arch','Y','','','','','','','','','','HYPRLAND BABYYYY','','','make infinite recursion easier to solve lol'),(1061,'1980-01-01 00:00:00',5,'en','1119737380','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','After using Ubuntu for a couple years, I liked Linux, but I wanted a way to more declaratively manage my system configuration. This path led me pretty much straight to NixOS.','','','','','','','Y','','','','','','','Y','','','Y','','','','A2','A1','A7','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','The way things work internally within NixOS is very opaque, in my opinion, and it seems like there aren\'t any good resources to go from nixpkgs \"user\" to nixpkgs \"contributor\", since the gap in understanding is quite large.','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','Same way I started with Nix. (I will copy-paste from the previous page.) After using Ubuntu for a couple years, I liked Linux, but I wanted a way to more declaratively manage my system configuration. This path led me pretty much straight to NixOS.','Y','','','','','','','Declarative configuration management','Declarative package management','Easy system rollbacks','PLEASE ADD GOOD DOCUMENTATION! I cannot stress this enough. Seriously. I really want to build my own stuff on top of Nix, but it\'s a *painful* experience. I\'ll get something that seems like it should work, sometimes basing it off design patterns in other people\'s code on GitHub. Then I\'ll try it, and I\'ll get the most obtuse error message possible which tells me nothing about what I\'ve done wrong. Half the time it\'s because my code *should* work, but as I figure out many hours later, it doesn\'t due to some non-obvious design choice or quirk in the implementation. I really do love using NixOS for most things Linux, but it hurts sometimes.','I\'d probably go back to a different Linux distribution, although I wouldn\'t enjoy it as much :(','Y','','','','','','','Y','','','','https://github.com/nix-community/nixd\r\nhttps://github.com/nix-community/nix-index\r\nhttps://github.com/nix-community/nurl\r\n^ some nice utilities\r\n\r\nhttps://github.com/gytis-ivaskevicius/flake-utils-plus\r\n^ this is very useful for multi-system configs, although I\'m still working out some of its intricacies.','https://github.com/divnix/digga\r\nI really liked the idea of this, but it was very unclear what was happening behind the scenes, and felt over-engineered. The maintainers also recently said they plan to archive the project for similar reasons.','It seems like there are a lot of makeshift strategies people have come up with to do multi-system configs (i.e. where they have one repo for all their devices and they can reuse common code, and conditionally enable features on certain hosts). It would be very cool if something like this could be integrated into NixOS. Of course that\'s a long shot, but it\'s something to think about. Have a nice day!'),(1062,'1980-01-01 00:00:00',5,'en','354425565','A2','A3','male','','','','','','','','Y','Y','','','','','','','Y','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A7','','','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','Y','','A7','A4','A6','','','','','','','','A11','A8','A6','','','','','','','','','','','','',NULL,'GUIX','A1','','','Y','Y','','Y','Y','','','','','','','','','','','','','','','woodpecker','A3','A2','A15','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','time','N','Y',NULL,'memory hungry','better support for store bind mount',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1063,'1980-01-01 00:00:00',5,'en','665774313','A2','A4','-oth-','nonbinary','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I\'ve seen people on the Internet talking about it, and the concept sounded intriguing. Since I could install into onto my existing Linux installation, I decided to see what it was like in practice. ','','','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','','','','A7','A9','A4','','','','','','','','A8','A9','A15','','','','','','','','','','','','',NULL,'My distro\'s package manager, user-level language-specific environment managers (pyenv, nvm), ad-hoc repositories and backup archives for tracking configuration files, OCI containers. ','A1','Y','Y','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A1','A24','A26','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','After playing around with Nix on non-NixOS, I decided to install it on a home server that was running an outdated version of a distro with a long release schedule, since it needed upgrading anyway, and I figured NixOS might be better fit. I liked how well it worked there, so I switched other machines to it when similar circumstances came up. ','Y','','Y','Y','','','','Ability to deploy configurations statelessly','Ability to easily patch and roll back patches on essentially any part of the system (without having to fight a stateful package manager)','The way the NixOS module system allows specifying fairly complex service configurations involving multiple components ','','Distro package managers, ad-hoc configuration and configuration tracking, and containers.','Y','','','','','Y','','','Y','','','','',''),(1064,'1980-01-01 00:00:00',5,'en','157288203','A5','A2','male','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','A friend recommended it and I switched to nixos.','','','','','','','Y','','Y','','','','','Y','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A8','A5','A10','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A1','A15','A4','','','','','','','','','','','','','','','','','','A1','A2','A15','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','','','','','','declarative configuration','switch to different generations','','','','Y','','','','','','','','','','hyprland','','',''),(1065,NULL,NULL,'en','1793567028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1066,NULL,1,'en','1773837437','A5','A2','male','','','','','','','Y','Y','','','','','','','Y','','','Y','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1067,'1980-01-01 00:00:00',5,'en','32679445','A2','A7','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','N','','','','','A prefab Sway/Wayland setup',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I have disabled hands. i would like to try a prefab Sway setup similar to what I used standalone on Manjaro, and perhaps switch. I also need a package for nerd-dictation, which is now in AUR. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Your distro looks great! It isn\'t clear on the welcome page that is FOSS, but I assume it is. Why don\'t you say so? ;)'),(1068,NULL,0,'en','993376803','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1069,NULL,2,'en','1605005912','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Same dev environment across different OS.\r\n\r\nStarted with home manager... Then nix darwin and today I use nixOS. Everything using flakes','Y','Y','','Y','','','Y','','','','','','','Y','Y','','Y','','','','A2','A3','A6','','','','','','','','A8','A4','A9','','','','','','','','','','','','',NULL,'The saddest gigantic bash script that sets up everyhing. Hopefully pinning versions and using something similar to Stow.','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A11','','','','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I really would like to but I am slightly afraid. It is too exposure and there is lot I do not know. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1070,'1980-01-01 00:00:00',5,'en','1627992139','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I discovered Nix and Nixos with the release of 21.11 while browsing posts on HackerNews. As I\'m a system engineer working for a hosting and managed services provider, the claim to provide reliability, reproducibility and the declarative approach to Nix/Nixos drew me in immediately. Also, the sheer number of up-to-date packages was a significant bonus. As an aside, it was also an opportunity to learn new and exciting things with the nix language (that made me discover functional programming languages and haskell specifically) ! \r\n\r\nI started using Nix and Nixos at the same time, first while migrating my personal server to Nixos as an experiment in 21.11 and then definitely in 22.05. Then, I migrated my PC from Archlinux to Nixos too.','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A14','A4','A8','','','','','','','','','','','','',NULL,'There is no equivalent to Nix, but as a simple package manager I would probably get back to pacman on Arch or a derivative.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A15','A2','','','','','','','','','','','','','','','','','','','A13','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Mainly time to deep-dive into the language and to be more familiar and confident in my understanding of Nix in general. \r\n\r\nThat\'s on my TODO list though :)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I discovered Nix and Nixos with the release of 21.11 while browsing posts on HackerNews. As I\'m a system engineer working for a hosting and managed services provider, the claim to provide reliability, reproducibility and the declarative approach to Nixos drew me in immediately. Also, the sheer number of up-to-date packages was a significant bonus. As an aside, it was also an opportunity to learn new and exciting things with the nix language (that made me discover functional programming languages and haskell specifically) ! \r\n\r\nI started using Nix and Nixos at the same time, first while migrating my personal server to Nixos as an experiment in 21.11 and then definitely in 22.05. Then, I migrated my PC from Archlinux to Nixos too.','Y','','Y','','','','','Declarative approach','Atomic configuration changes','Configurability','','Guix or Arch','Y','','','','','','','','','','xmonad','search.nixos.org is awesome !\r\n\r\nAlthough not a \"product\", the nix community and its contributions are also one of the best resource that I use daily (personal/corporate blogs, forums, nix code examples, ...)','','Thanks to the Nixos Foundation and all involved in developing and maintaining Nix/Nixos and its infrastructure. These projects are invaluable.'),(1071,NULL,2,'en','1506333178','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted an OS which could be reproducibly set up from configuration in git. I made a setup with Ansible to configure Arch VMs that ran in KVM and used GPU passthrough and used that for about a year. Nix seemed like a more elegant way to do the same thing.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A9','','','','','','','','A5','A13','A2','','','','','','','','','','','','',NULL,'Instead of nix-shell: Docker containers with VScode remote. Instead of NixOS as a desktop system: Arch with Ansible.','A1','','','','','','','','','','','','','','','','','','','','','','','A1','A15','A2','A14','A4','A9','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1072,'1980-01-01 00:00:00',5,'en','304712614','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Coming from FreeBSD, QubesOS and other GNU/Linux distributions and evaluating a new distribution for my 32bit only Laptop, which I bought in 2014 without support from QubesOS. So I landed at NixOS with either the thesis from Eelco or from Domen\'s blog post (https://www.domenkozar.com/2014/03/11/why-puppet-chef-ansible-arent-good-enough-and-we-can-do-better/), i really don\'t remember it anymore.','','Y','','','Y','Android','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','Y','','A2','A3','A6','','','','','','','','A6','A1','A9','','','','','','','','','','','','',NULL,'Would switch to woodworking or other handcrafting jobs. <3','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A13','A9','A2','A3','A4','A6','A10','A18','A7','A5','','','','','','','','','','','A2','A5','A1','','','','','','','','','','','','','','','','','','','Y','Y','Y','contributing to nixpkgs','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same as using nix -> see answer there','Y','Y','Y','Y','Y','','','declarative','reproducible','community','- Improve evaluation time\r\n- remove docbook -> nixos/doc: dedocbookify #237557 \r\n- RFC42 all the modules\r\n- format all nix with something coming out of RFC101\r\n- improve all the documentation\r\n- add a news feed for contributors for changes that might be interesting for them (RFC42, new language features, deprecating of libs and so on)','I would switch to ... correct, woodworking.','Y','','','Y','Y','Y','krops','','','','i3wm','Mobile NixOS, Robotnix, home-manager, disko, nixos-anywhere, flake-compat, impermanence, NUR','','Thanks for your work <3'),(1073,'1980-01-01 00:00:00',5,'en','1535418800','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I was working on a personal project in python and most of the packages I used required system dependencies. I was looking for something that could: 1) Automate the installation of these system packages. 2) Support different operating systems and Linux distributions. 3) Pin the system packages to a specific version. This is when I learned that Nix could do all of these for me.\r\n\r\nAround the same time, I was also looking for a reproducible way to set up my dotfiles on different machines. My requirements were: 1) Support Linux and macOS. 2) No dependencies, since this will probably be the first thing I run on a new OS installation. Then I found home-manager and nix-darwin and have been using them ever since.','Y','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A6','','','','','','','','A14','A5','A3','','','','','','','','','','','','',NULL,'I would use Homebrew since it\'s cross-platform.','A1','','','','Y','Y','Y','','','','','','','','','','','','','Y','','','','A1','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','No time','N','N','What keeps me from using NixOS are possible issues that I will encounter since NixOS doesn\'t adhere to the Linux FHS. I\'ve seen a lot of these issues posted online and I don\'t want to try NixOS if it\'s going to create any new problems for me. Also, I\'m using popOS right now and while their desktop environment is the biggest advantage for me, I don\'t want to lose whatever tuning they\'ve done to the system.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I\'ve been keeping a list of possible improvements that could be made Nix so I\'ll list them all below:\r\n\r\n1. Garbage Collection - I had a lot of trouble deleting the old versions of every profile/channel on my system. Without an easy way to do this, things will quickly start to accumulate. I tried `sudo nix-collect-garbage -d`, but I still had some old profile/channel versions. I\'d also like a subcommand that lists all the current gcroots and the symlink chain for each so I can investigate why packages aren\'t being cleaned up.\r\n2. Downloading \"source\" - Most of the time when I run `home-manager switch` I get a message saying \'Fetching source\', but I do not understand what it is downloading. Maybe Nix should output why something is being downloaded so issues like this are easier to debug.'),(1074,NULL,NULL,'en','500914956',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1075,NULL,NULL,'en','1536218184',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1076,'1980-01-01 00:00:00',5,'en','1063479069','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was not happy with complie times on Gentoo Linux and not happy with fragile updates on Arch-Linux. I heard of NixOS on a podcast and decided to give it a try.','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','','','building containers using dockerTools','A9','A2','A1','','','','','','','','A12','A8','A9','','','','','','','','','','','','',NULL,'For OS I might be still using Arch, for container building normal docker build and for dev environments proot or chroot, maybe docker','A2','','Y','','Y','Y','','','','','','','','Y','','','','Y','','','','','','A9','A1','A6','A12','A15','A13','','','','','','','','','','','','','','','','A6','A12','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','1. Time or motivation to do in spare time\r\n2. Most things are already solved\r\n3. At work, my colleagues are not convinced yet use nix','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was using Gentoo for long time. I liked the rolling updates to get the latest versions of software but dealing with compiling was a pain. I tried to use Arch for a while but the updates were fragile. Then in a podcast \"binärgewitter\" someone pitched NixOS so I gave it a go and it turned out to be very practical for me.','Y','','Y','','','','','Robust updates/rollbacks','Declarative system configuration','rolling release - always most up to date software','Make updates smaller and use less disk space.','Arch Linux or Ubuntu? I might be more happy in general and more helpful to my fields and colleges which use those. I might be unhappy about reinstalling my OS every few months or having hunt down and fix config drift.','Y','','','','','','','Y','','','','','',''),(1077,NULL,2,'en','776549277','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','N','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1078,'1980-01-01 00:00:00',5,'en','1504133045','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','','','','','Y','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I needed to define a server environment statically. People mentioned it. Here we are.','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A7','A6','','','','','','','','A6','A3','A15','','','','','','','','','','','','',NULL,'Nothing, as all equivalent come from nix','A1','','','','','Y','','','','','','Y','Y','','','','','','','Y','Y','','','A24','A23','A1','A3','A15','A4','A25','','','','','','','','','','','','','','','A1','A2','A24','','','','','','','','','','','','','','','','','','','','','','never figured out how to make it work in all these years','A4','',NULL,'N','Y',NULL,'Could not figure out how to get a graphic environment running.\r\nCouldn\'t understand the FS stuff\r\nCouldn\'t find a good way to centrally manage the config.\r\nNo fast firmware update','Firmware update as fast as fedora\r\nAn installer that handle filesystem and graphic install automagically.\r\nA good story for managing the machine config remotely and secrets.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lorri\r\nHome-manager','Devenv','Figure out a user friendly way to combine nix derivations. Overlays make no sense and flake is even worse.\r\n\r\nAnd the nix interpreter memory usage is actively stopping use cases. It need a good 10x reduction.'),(1079,'1980-01-01 00:00:00',5,'en','1255399391','A4','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Finding a way of making the operating system I use declarative and reproducible.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A2','A1','A7','','','','','','','','A5','A8','','','','','','','','','','','','','',NULL,'Gentoo utilities','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1080,NULL,NULL,'en','1373597666',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1081,'1980-01-01 00:00:00',5,'en','1506539999','A2','A4','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got fed up with Homebrew and how everything gets broken with every update to a package, breaking other packages because of global dependencies with no way to roll back. So I liked the ideas behind Nix and that I can roll back too. Although the experience on macOS/Darwin is sub-optimal, yet still more stable than Homebrew IMO. ','Y','','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'a mix of homebrew/macports + ansible/salt','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A9','A17','A15','A2','A25','','','','','','','','','','','','','','','','A9','A17','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','Y',NULL,'Was hard to get it running on Apple hardware, especially setting your wifi & some random errors about harddisks ','Better support for Apple Hardware',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1082,'1980-01-01 00:00:00',5,'en','1582150069','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','NixOS :)','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A1','A5','','','','','','','','','','','','','','','','','','','A3','A4','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','native nix support','stability','','i\'d make KDE the default DE','fedora','Y','','','','','','','','Y','','','','',''),(1083,'1980-01-01 00:00:00',5,'en','1605211856','A4','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Reproducible builds essentially made configuring new servers a breeze, along with easier backups and sane versioning.','','Y','','','','','Y','Y','','Y','','','','','Y','','Y','','','','A1','A10','A6','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'traditional package management (brew on MacOS, pacman on arch)','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','A3','','','','','','','','','','','','','','','','','','','A2','A4','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Learning Resources and Documentation','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','Took the plunge and migrated my homelab to NixOS while sunsetting the hardware I had and moving to a new hardware stack. I since moved two personal servers, a production server, and a raspberry pi to nixos.','Y','','Y','Y','','','','Managing the whole environment through a single flake','more localized network management','easier reproducible user management','Make flakes the default way for OS configuration\r\nMake systemd-networkd the default networking solution','Workstation: Archlinux\r\nServer: Ubuntu LTS','Y','','','','','','','','','','text based','','',''),(1084,'1980-01-01 00:00:00',5,'en','385164921','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A1','Too many Arch installations that have to be kept up to date manually.','','Y','','','Y','','','Y','','','','Y','','','','Y','Y','','','','A4','A7','','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'Ansible','A2','','','','Y','','','','','','','','','','','','','','','','','','','A2','A15','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Nothing','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','','','','Y','','','','','','','','','','','','','Y','','','','Y','','','','','','Great work so far. But the learning curve is really steep.'),(1085,NULL,2,'en','1620932777','A5','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','To codify my operating system configuration.','','','','','','','Y','Y','','','','','','Y','','','Y','','','','A10','A1','A2','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'Arch Linux with hand-made scripts','A2','','','','Y','','','','','','','','','','','','','','','','','','','A1','A15','A17','','','','','','','','','','','','','','','','','','','A1','A15','A17','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Availability',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1086,'1980-01-01 00:00:00',5,'en','841811726','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','A University friend of mine introduced me to it because of a startup called Liqwid Labs where he now works.','','','','','','Android with Nix-on-Droid','Y','Y','','','','','','','Y','','Y','','','','A1','A10','A2','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'Docker if reproducibility on the project was important. Otherwise, just any distro, like Manjaro, and detailed instructions on packages to install for the build process.','A4','','','','Y','','','','','','','','Y','','','','','','','','','','','A2','A1','A15','A5','','','','','','','','','','','','','','','','','','A1','A15','A13','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Complexities in the correct way to package new software and making a pull request, limited or hard to find information on the process and intimidation by the size and amount of pull requests and issues of the nixpkgs repository.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','A University friend of mine introduced me to it because of a startup called Liqwid Labs where he now works.','Y','','','','','','','All-in-one-place configuration file','Reproducibility in any project','Stability','GUI tools to make nix more approachable and usable by anyone as a simple package manager. \r\nAlso, change my phone OS to nixOS and make everything work perfectly 🪄','Manjaro','Y','','','','','','','Y','Y','','','nixos-hardware. Especially for the microsoft-surface-pro-intel. But seems to break regularly, I\'d run `nixos-rebuild` with `--update-input nixos-hardware` and the surface kernel would be broken. Since pinned a version of nixos-hardware because of that\r\nNixOS nvidia-vgpu-module, to unlock vgpu in consumer nvidia cards (https://github.com/danielfullmer/nixos-nvidia-vgpu). Since it was made for such an older version I\'ve since had to make my own module (https://github.com/Yeshey/nixos-nvidia-vgpu_nixOS/tree/master)','mach-nix, for python. Tried more than once, but some python package has always been missing or giving problems.','Thank you for the amazing work!'),(1087,'1980-01-01 00:00:00',5,'en','1870944303','A2','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I was looking into different linux distributions and I really liked the concepts behind Nix/NixOS','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Gnu/Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Availability and lack of depth of documentations and learning resources','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I was looking into linux distributions and I really liked the concepts behind NixOS.','Y','','','','','','','Declarative, configuration based package management','Stability','Availability of packages','Better documentation/learning resources, and I would change the nix language to be strongly typed with good lsp support.','GNU/Guix, but if the whole concept of nix-like systems would not exist, then Fedora or Pop!_OS.','Y','','','','','','','','Y','','','','','I really like NixOS thanks for creating it and improving it.'),(1088,'1980-01-01 00:00:00',5,'en','1328277010','A3','A3','male','','','','','','Y','Y','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I come from the Haskell community and using started using Nix to simplify deployment of Haskell based applications.','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A9','A6','A2','','','','','','','','','','','','',NULL,'Shake, Buck or Bazel for building. Docker and bash profiles for providing an environment.','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A1','A2','A20','A15','','','','','','','','','','','','','','','','','A13','A2','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I\'ve done it once or twice for Haskell packages, but the packaging model makes contributing worthless, one might fix a package, but it will break again when haskell package set rolls. There\'s no point in fixing anything, it will break again and again, what\'s the point?','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I was curious for trying a fully declarative OS, I did heard about NixOS since I\'ve been using Nix for longer, so I tried it in a VM without success, what stopped me at the time was the bare bones installer and my custom keyboard layout, but I trucked on and in the end got it to work, then installed it in a home server, and been using it ever since, except for work which I still need to use Ubuntu due to enterprise policies.','Y','','Y','','','','','Declarative workstation configuration.','Rollbacks.','Switch to different configurations to try new setups easily.','Improve the documentation on the available modules, make them even easier to write, and have more modules available. Increase support NixOS for managing user-level configuration, it is odd to use both home-manager and NixOS, a single tool should do it.','Probably Arch Linux or Fedora Silverblue. As for configuration I would try to make Terraform work for my use cases some how, never Ansible.','Y','Y','','','','','','Y','','','','Home manager in Ubuntu for user level configuration.','nixfmt formats code to a style that not event Nixpkgs uses, I stopped using it.','Improve the god damn docs! stabilize the CLI and build a course or something, implement an official uninstaller. Build something to compete with Nomad and K8s, NixOps is not even close. Parsers in most languages to use Nix as a configuration language (like Dhall). A nix flavored alternative to terraform is also necessary.'),(1089,'1980-01-01 00:00:00',5,'en','1241738259','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','GHCJS hobby project used Nix. Also declarative System config.','','Y','','','','','Y','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','A2','A1','A9','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'I would go crying in a corner.','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A13','A3','A25','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','Y','','','','','','','','Y','','','','','','','','','','','https://github.com/xtruder/nix-devcontainer','','I really want this to get an updated Dockerfile: https://github.com/xtruder/nix-devcontainer'),(1090,'1980-01-01 00:00:00',5,'en','41038364','A3','A2','-oth-','','','','','','','','Y','','','Y','Y','','','','','','Y','','','','','Y','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','Documentation is unorganized and obscure','','','','','Y','','','','Y','','Better documentation, Stabilized Nix Flakes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'There is no clear way to organize multiple system configurations in a single flake, particularly the parts that sit between NixOS and home-manager (Xorg configuration for example)','Better documentation, stabilized nix flakes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1091,'1980-01-01 00:00:00',5,'en','941492081','A2','A3','-oth-','Genderqueer','','','','','','','','','','Y','','','','','Y','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','In around 2015 I wanted to have something along the lines of Infrastructure as Code/declarative configuration management tooling to manage my workstation and laptop; so I stumbled upon nix & decided to use it.','','Y','','','','','Y','Y','','Y','Y','','','Y','Y','Y','Y','','Y','','A2','A10','A7','','','','','','','','A13','A8','A6','','','','','','','','','','','','',NULL,'I do use Guix a lot, but as that’s a Nix fork… probably something like ansible at least for the configuration management part and good old dpkg/apt for packaging','A1','','','','Y','Y','','Y','','','','Y','','','','Y','','','','','','','','A15','A18','A25','','','','','','','','','','','','','','','','','','','A15','A18','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Nixpkgs usually is pretty up to date for the packages I tend to use, so there’s not much to do for me. I contribute to nix-community projects every once in a while though.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Out of the same reasons I started using nix.','Y','','Y','Y','','','','Declarative configuration','nix store instead of FHS','Rollbacks','Guile or any other scheme instead of nix as a configuration language.','Probably Debian.','Y','','','','','Y','','','','','Sway','home manager, devenv','',''),(1092,NULL,1,'en','587647736','A8','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Project Manager','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1093,NULL,0,'en','811939750','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1094,NULL,1,'en','171443601','A2','A4','male','','','','','','','Y','Y','','Y','Y','Y','','','','','','Y','','','','','','Y','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1095,'1980-01-01 00:00:00',5,'en','1388869892','A2','A3','male','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','I started using NixOS, so Nix is the way to go.','','Y','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A10','','','','','','','','A14','A5','A13','','','','','','','','','','','','',NULL,'Arch, openSUSE or Debian.','A4','','','','','','','','','','','','','','None, I\'m still learning the basics.','','','','','','','','None.','A2','A1','A6','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I\'m not a linux developer. I\'m an indie game dev wannabe, so my programming knowledge is mainly gdscript and c#.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I saw a review on the web and found it interesting, so tried it, and here we are.','Y','','','','','','','One config to rule them all.','Huge package repo which cover most of my needs.','A decently updated and stable system.','More \"options\", there are a huge amount, jet always feel like they\'re not enough and workarrounds are needed instead.','Arch, openSUSE or Debian.','Y','','','','','','','','','Y','','None, I think.','I\'m not sure.','I love you <3'),(1096,'1980-01-01 00:00:00',5,'en','462006706','A5','A4','male','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I needed to keep 3 machines in sync and consistent. Consistent settings, apps, etc. I worked at a Haskell shop for a while and they were always talking about nix, so I thought I’d try it. ','Y','','','','','','Y','','','','','','','Y','Y','','Y','Y','','','A2','A8','A3','','','','','','','','A13','A6','A2','','','','','','','','','','','','',NULL,'Guix ','A1','','','','Y','','','','','','','','Y','Y','','','','','','','','','Gitea and woodpecker','A2','A15','','','','','','','','','','','','','','','','','','','','A11','A1','A21','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time','N','Y',NULL,'It became a lot of overhead to get features working on my primary machine','I do try every few releases. hardware auto detection on first install is the big item that would help',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Home manager and nix Darwin. ','',''),(1097,'1980-01-01 00:00:00',5,'en','699110579','A2','A3','male','','','','','','','','Y','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Found it while in university and was hooked. Always liked system administration and having a fully declarative system + pinned dependencies is the holy graal.','','','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','','A2','A3','A10','','','','','','','','A12','A9','A2','','','','','','','','','','','','',NULL,'Guix, although if Nix didn\'t exist guix wouldn\'t either. Going back to arch maybe?','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','Drone','A9','A1','A15','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same story as with Nix, found in uni.','Y','Y','Y','','','','','Declarative configurations','Pinned outputs','Large repository','Having two \"ecosystems\", flakes vs non-flakes. I don\'t care which would take over really.','I guess going back to arch','Y','','','Y','','Y','','','','','riverwm','','',''),(1098,'1980-01-01 00:00:00',5,'en','159460406','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','PopOS','N','N','Y','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Dissatisfaction with my current distro PopOS. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I love the idea of a central file to configure the whole system. Keep up the good work.'),(1099,'1980-01-01 00:00:00',5,'en','1911907591','A2','A3','-oth-','applejack','','','','','','','','','','','','','','','','','','','','','','','','telecomunications specialist','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','Y','','','','Y','','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Confusing documentation. I tried it in 2019.','Better documentation or an effort to sandbox all the processes with something like bubblewrap or adding apparmor to everything.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1100,NULL,0,'en','287341934','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1101,'1980-01-01 00:00:00',5,'en','205417938','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','Y','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','Y','','','','','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A8','A12','A2','','','','','','','','','','','','',NULL,'Debian ','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','garnix','A13','A14','A25','','','','','','','','','','','','','','','','','','','A13','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','Y','','','','Declarative system description ','Lots of packages ','','','Debian','Y','','','','','','','','','','','','Niv, replaced by flakes, although I found niv to have the better UX',''),(1102,'1980-01-01 00:00:00',5,'en','300857879','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','A2','A7','A1','','','','','','','','A9','A6','A1','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A9','A7','A22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','','','','','','Y','','','','','','','','','','','','',''),(1103,'1980-01-01 00:00:00',5,'en','1771378268','A5','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','','','','Y','Y','','','Y','Y','','','Y','','Y','','','','A7','A2','A3','','','','','','','','A8','A4','','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A15','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','','Y','','Y','','Y','Y','','','','','','','Y','','','Y','','','','','','','xmonad','Flake-parts','Devos\r\nFlake-utils',''),(1104,'1980-01-01 00:00:00',5,'en','1723250053','A6','A2','male','','','','','','','','Y','','','','Y','','Y','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','For my sys configs, packages, home manager etc..','A1','Just for NixOS pretty much.. as i do manage all of my system using configuration.nix and home manager.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A10','A1','','','','','','','','A13','A8','A2','','','','','','','','','','','','',NULL,'I really liked apx as a package manager and it uses distrobox as the backend which is pretty cool. ','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Still in learning journey.. but liking nix so far','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I have been distrohopping since 10 years at this point.. and wanted immutability and reproducability.. first i stumbled upon Ublue which is based on silverblue and has a recipe.yml which i can reproduce.. but still it was very very clunky as compared to my Nix experience.. with home manager i can manage almost everything including most of my configs + packages. With configuration.nix i can simply enable stuff like zramSwap and other NixOS options which save me alot of time that I used to spend.. and best thing it is reproducable.. NixOS options and Home manager Options have been a game changer for me !','Y','','','','','','','NixOS / Home manager Options','Reproducible configs for my system and home.','Availability of packages','Make btrfs with subvolume setup the default filesystem in automatic partitioning. Most distros like Fedora Nobara Vanilla have already gone btrfs route.. subvolume setup also allows btrfs snapshots and dynamic home and root space. \r\n\r\nZRAMswap option in calamares would be nicehowever nixOS options make it easy anyway so not a huge deal.\r\n\r\nI may have many small default package knit picks but i would really like gnome tweaks by default. ','Vanilla OS.. with its apx package manager has been my second choice.','','','','','','','','Y','','','','','','Thanks for the amazing distro / tools and getting rid of distro hopping for me. Love the project ethics and work. ❤️'),(1105,'1980-01-01 00:00:00',5,'en','535195136','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I\'ve heard about it on youtube. The catch for me, especially, was the reproduciblity of system configurations. I happily using arch before, but dreaded the idea of recreating my configuration on new devices. I\'ve heard about nixos around late 2021 but only started using it late 2022. Now I\'m running it on my laptop, about to install it on my desktop, too.','','Y','','','','Android (Nix-on-droid)','Y','','','','Y','','','','Y','','Y','','Y','','A2','A1','A3','','','','','','','','A4','A9','A8','','','','','','','','','','','','',NULL,'I would continue to use arch, maybe guix i guess. I honestly don\'t think I would attempt to create install scripts because they get out of sync with your current configuration so easily.','A2','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A3','A5','A15','A13','A17','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I haven\'t found something missing, except e.g. juliaPackages, for which a PR already exists and I\'m not qualified enough to contribute.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Declarative, reproducible configuration. Solving problems only once.','Y','','','','Y','','','Declarative declaration','Impermanence','Large package ecosystem','I would greatly improve evaluation speed. I\'m using the home-manager nixos module and sometimes it seems like rebuilds do unnecessary work, so I would optimize that. Also, I would like the minimal install to include git, iwctl and nix flakes enabled by default','probably still arch, or guix','Y','','','','','','','','','','Hyprland','nix-direnv, home-manager, nix-on-droid, impermanence','',''),(1106,NULL,2,'en','218319355','A2','A5','male','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','NixOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Grew tired of breaking updates on Arch Linux.\r\n\r\n\r\nLove to have all dependencies of a project in a nix file.','','Y','','','','Android','Y','','','Y','Y','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A13','A3','A5','','','','','','','','','','','','',NULL,'Docker','A2','','','','Y','','','','','','','','','','','','','','','','','','sourcehut','A15','A19','A24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Most packages I use are already packaged',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1107,'1980-01-01 00:00:00',5,'en','1041118045','A2','A2','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Heard a lot of good stuff in Linux Unplugged podcast. I was curious about the ability to describe your Linux box with a configuration (I tried to use Ansible to do that for my previous Fedora setup, but it was painful to be honest).','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A3','A7','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'Probably Fedora (maybe Silverblue) as OS, and Distrobox/Toolbox, Flatpak for package installation. And probably Ansible (or something similar) to describe configuration','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A9','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I believe that I find almost every package I need. Also, I\'m not sure if how easy it would be to contribute - I mean, how much help I would get from community with a PR (as I don\'t feel confident with Nix language)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Heard a lot of good stuff in Linux Unplugged podcast. I was curious about the ability to describe your Linux box with a configuration (I tried to use Ansible to do that for my previous Fedora setup, but it was painful to be honest).','Y','','Y','','','','','Packages and ability to describe what I need with a language (additionally I use home-manager)','Rollbacks','Community','I would add an option in installer for disk encryption (and maybe btrfs)\r\n','Probably Fedora (maybe Silverblue) as OS, and Distrobox/Toolbox, Flatpak for package installation. And probably Ansible (or something similar) to describe configuration','','','','','','','','','','','i3','home-manager','',''),(1108,NULL,2,'en','207528141','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','','Y','','','','','Y','Y','','','','','','Y','','','Y','','','','A2','A7','A10','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'','A4','','','','','Y','','','','','','','','','','','','Y','','','','','','A2','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1109,'1980-01-01 00:00:00',5,'en','1785931858','A2','A4','male','','Y','','','Y','','','','','','','','','','Y','','','Y','','','Y','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I like immutability.','Y','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A3','A7','','','','','','','','A8','A9','A3','','','','','','','','','','','','',NULL,'Puh! A lot of stupid Ansible + OCI Images…\r\nOr guix;).','A4','','','','Y','Y','','Y','','','','','','','','','','','','','','','','A2','A24','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don‘t have any free time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Immutability and the ability to share configs and system states with other people.','Y','','Y','Y','','','','Atomic switching','Versionable System states','','ChatGPT solved a lot of my NixOS/NixLang issues. Something I suffer from a lot is Python-Package-Stuff.','Debian or FreeBSD, may be arch','','','Y','','Y','','','Y','','','','','','Love NixOS, so many things improved so much!'),(1110,NULL,1,'en','688409740','A3','A4','male','','','','','','','','','Y','','','Y','Y','','','','','Y','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1111,'1980-01-01 00:00:00',5,'en','760739341','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Tried gnu guix for a year, did not have time to learn the required information to generate a suitable system, tried packaging some software but I had not enough time for it so I came back to fedora and then I decided to try nix as it has a bigger community than guix, immediately started with flakes and home manager and I really like it.','','Y','','','Y','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A10','A7','','','','','','','','A8','A4','A14','','','','','','','','','','','','',NULL,'Guix and containers for development, fedora silverblue for workstation','A4','','','','Y','','','','','','','','','','','','','','','','','','','A15','A2','A26','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Documentation, lack of free time.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','Declarative system','Declarative dev environment with flakes','Stability','','Guix, containers for development, fedora silverblue for workstation','Y','','','','','','','','','','Hyprland','Home manager\r\njetpack-io devbox\r\nagenix','','Keep up the good work :)'),(1112,'1980-01-01 00:00:00',5,'en','1005532641','A2','A4','male','','','Y','','','Y','Y','Y','','Y','Y','','Y','','','Y','Y','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','CEO at company suggested nix for mobile builds. Every since we did that I\'ve been hooked.','Y','Y','','Y','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','','','','A1','A10','A7','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'Like 20 different package managers separately.','A1','','','','Y','','Y','','','','','Y','Y','','','','','','Y','Y','','','','A2','A1','A9','A7','A3','A4','A15','A5','A20','A26','A25','','','','','','','','','','','A9','A26','A20','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Someone at work suggested it.','Y','Y','Y','Y','','Y','','Version locking','Version overrides','Patching','Proper support for secrets.','20 different package managers.','Y','','','','','','','','','','Awesome WM','nixos-hardware','nixops\r\nhome-manager','Yes. I love Nix and NixOS, but the review process for getting packages/fixes into nixpkgs is killing me.'),(1113,'1980-01-01 00:00:00',5,'en','1126195455','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','An online friend started using it, we started it using it as replacement for Ansible-managed servers for a Linux distro\'s infra and now it\'s my main OS too.','','Y','','Y','','','Y','Y','Y','Y','','','','','Y','Y','','','','','A2','A7','A1','','','','','','','','A8','A9','A2','','','','','','','','','','','','',NULL,'Archlinux + Ansible','A2','','','Y','Y','Y','','','','','','','','','','','','','','Y','Y','','','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','Y','','Y','','','','Flakes / Reproducible environments','Atomic rollbacks','','','Archlinux','','','','','Y','Y','','','Y','','','','',''),(1114,NULL,1,'en','666955590','A5','A1','-oth-','Agender','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1115,NULL,2,'en','1562057839','A2','A2','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I did write a lot here and then my session expired and I don\'t feel like typing anymore','Y','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','Y','Y','','A3','A2','A7','','','','','','','','A8','A3','A9','','','','','','','','','','','','',NULL,'Guix','A1','','','','Y','Y','Y','','','','','','','Y','','','','','','','','','garnix','A15','A3','A1','','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Haven\'t tried it yet',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1116,'1980-01-01 00:00:00',5,'en','707378462','A5','A2','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Youtube video/others probably','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'Arch, or ubuntu/fedora','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Documentation, tutorials etc. Also lack of knowledge of nix ecosystem and conventions','Y',NULL,NULL,NULL,NULL,'A1','','Y','','For personal laptop OS','A1','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Great job'),(1117,NULL,1,'en','1138688832','A2','A3','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1118,'1980-01-01 00:00:00',5,'en','602480803','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Engineer, Mechanical','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Started using it private for the promise of reproducibility, liked it a lot rolled out to work (WSL)','','Y','','Y','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A2','A6','','','','','','','','A14','A9','','','','','','','','','','','','','',NULL,'Debian, ansible, arch','A4','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A21','A2','A17','A3','A4','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Not enough expirience','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Reproducibility of the system configuration','Y','','Y','','','','','Reproducibility','nix (the package manager)','Something new to learn','','Arch, Debian','Y','','','','','','','','','','awesome wm','home-manager, agenix','none','Keep the good work'),(1119,'1980-01-01 00:00:00',5,'en','321855613','A2','A5','male','','','Y','','','','Y','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Of all the widely applicable Linux distributions, NixOS is the one that comes closest to my idea of how a modern operating system should be organized and configured.','','Y','','','','','Y','Y','','Y','','Y','','','Y','','Y','Y','','','A2','A1','A6','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'Proxmox, Fedora, Centos, Rocky Linux, Alma Linux, ...','A4','','','','Y','Y','Y','','','','','','','','','','','','','','','','','A6','A2','A3','A4','A9','A15','A12','','','','','','','','','','','','','','','A6','A15','A12','','','','','','','','','','','','','','','','','','','','','Y','','A1','','experience','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Of all the widely applicable Linux distributions, NixOS is the one that comes closest to my idea of how a modern operating system should be organized and configured.','Y','','Y','Y','','Y','','declarative configuration','the same OS on all devices I manage','wide selection of packages','I would add a file system designed specifically for the Nix store that would make it possible to mount any number of read-only \"sub-stores\" which would contain only packages available in profiles defined for each sub-store mount point.','Fedora, Rocky Linux, Alma Linux, ...','Y','','','','','Y','','Y','','','','','',''),(1120,NULL,1,'en','2141933915','A2','A5','male','','','Y','','','Y','Y','Y','','Y','Y','','','','','','','','','Y','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1121,'1980-01-01 00:00:00',5,'en','1813392367','A2','A2','-oth-','Prefer not to say','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Came from ArchLinux. I had enough of having to regulary update my machine and debug it during work.','','Y','','','','','Y','Y','Y','','','Y','','','Y','Y','Y','','','','A1','A6','A9','','','','','','','','A12','A8','A1','','','','','','','','','','','','',NULL,'ArchLinux and Docker','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A3','A15','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lanzaboote <3\r\nTow-Boot\r\nHome-manager','',''),(1122,'1980-01-01 00:00:00',5,'en','1373053731','A5','A3','male','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Was heavily used at a company I worked at. Once you have seen the leverage it provides, it is very hard to stop using.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A10','','','','','','','','','A15','','','','','','','','','','','','','','','Pretty excited for a nixpkgs module system. Currently, package overriding is too complex.','Maybe spack, but that wouldn\'t exist without nix 🤷','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A4','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','Y','','A2','','Time. I have contributed in the past, but working on open source + job is too much time at the computer.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','Reproducibility','','','Not much, much more interested in improvements to nixpkgs. ','Arch maybe? ','Y','','','','','','','','','','Sway','','','From my perspective, things are pretty good. The main issue I see is that nixpkgs is somewhat unwieldy, and it would be nice if it was easier to learn / use. Better override mechanisms and package sets would be nice.'),(1123,'1980-01-01 00:00:00',5,'en','1287542094','A2','A3','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A6','A1','A10','','','','','','','','A3','A8','A5','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A4','','','','','','','','','','','','','','','','','','','','A10','A1','A15','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Time and contributing seems fairly involved and complex','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','I\'d kind of like nixpkgs to be split up into smaller flakes/repos, from what I can tell nixpkgs is pretty open for large number of people to commit. It\'d be nice to have a smaller \'core\' which more restricted commit access/reviews and other repos with relaxed requirements for less important software.','','Y','','','Y','','','','','Y','','','','nixops, got harder to use over time and the last upgrade (2.0 I think?) made me move to deploy-rs',''),(1124,'1980-01-01 00:00:00',5,'en','538513374','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','a friend told me and helped me start','','Y','','','','','Y','Y','','','Y','','','Y','Y','','Y','','','','A2','A7','A3','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','a friend told me about it and helped to install','Y','','Y','','','','','declarative','fearless upgrades','','UI to edit config','Arch','Y','','','','','','','','','','Sway','','',''),(1125,'1980-01-01 00:00:00',5,'en','1147385634','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A3','A10','','','','','','','','A1','A6','A5','','','','','','','','','','','','',NULL,'Ansible, Docker','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A5','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','','','','Declarative desktop and servers with all configs stored in git','','','','','Y','','','Y','','','','','','','Hyprland','','',''),(1126,'1980-01-01 00:00:00',5,'en','1027606200','A6','A3','fem','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I fine morning my Arch Linux didn\'t boot up arbitrarily. ','Y','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','','A1','A3','A2','','','','','','','','A13','A4','A2','','','','','','','','','','','','',NULL,'','A2','','','Y','Y','Y','','','','','','','Y','','','','','','','Y','','','Garnix','A1','A4','','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','One fine morning my Arch Linux didn\'t boot up arbitrarily. ','Y','Y','Y','Y','','','','','','','','','Y','','','','','','','','','','','','',''),(1127,NULL,1,'en','1915151363','A3','A2','male','','','','','','','Y','','','Y','Y','Y','','','','','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1128,'1980-01-01 00:00:00',5,'en','498893791','A3','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Curious to try it. Heard great things about it and decided to give it a go.\r\n','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A7','A10','A2','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'Dot files in a git repo + stupid bash script; Arch Linux; ansible','A7','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','A1','','I contributed a vim plugin and it was super straightforward. I want to contribute more, but I struggle too much.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','Easy to pin a version of a package','Dev + ad hoc declarative environments','Better reproducibility then others OSes, although I faxed a few irreproducible scenarios.','Setting some basic requirements for a package to be acceptable in nixpkg, currently anything goes.','','Y','','','','','','','','','','dwm','','','Thank you and have a nice day'),(1129,NULL,NULL,'en','970346110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1130,NULL,1,'en','1515617519','A2','A2','male','','','','','','','Y','','Y','','','','','','','','','','','','','','Y','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1131,'1980-01-01 00:00:00',5,'en','1922744235','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Immutability of build process. I was looking something similar to bazel for the linux build. I migrated from Gentoo.','','','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A12','A6','A2','','','','','','','','','','','','',NULL,'Gentoo','A4','','','','Y','','','','','','','','','','','','','Y','','','','','','A11','A5','A1','A15','A9','','','','','','','','','','','','','','','','','A11','A9','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Current work policy.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Build system for prototype deployment based in PXE.','Y','Y','Y','','','','','Immutable build','Switch of profiles with flake \"nixos-rebuild switch --flake\"','Remote deployment with deploy-rs','Secure separation of the nix-store between local artifacts and remote ones. It could be great to have guarantees that the locally build files will never be transferred outside of \"my network\". ','Gentoo','Y','','','Y','','','','','','Y','i3','Integration with bazel.\r\nnix-npm-buildpackage.','','The possibility to have full provenance information on the build system is unique for nix/nixos. This could be used for example to respond very fast to any new CVE, providing a tool to detect potential vulnerabilities in any deployment.'),(1132,'1980-01-01 00:00:00',5,'en','1228733385','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I wanted a system where i do not have to worry about setting up the dependencies for a project and don\'t have to deal with conflicts.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'Probably guix','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A14','A3','A15','','','','','','','','','','','','','','','','','','A14','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','no time','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I wanted a linux distribution that is as configurable as arch but where i can the system configuration is stored centrally so I can put it in version control and reproduce my system.','Y','','Y','','','','','central system configuration','ad-hoc environments','rollback','','Probably guix','Y','','','','','','','Y','','','','','',''),(1133,'1980-01-01 00:00:00',5,'en','39090365','A2','A3','male','','','','','','','Y','','','Y','Y','','Y','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started using it at work to realize a consistent setup between development machines of different engineers, CI, and eventually production.','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A8','A4','A3','','','','','','','','','','','','',NULL,'Probably a mix of Arch Linux and Docker.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A2','A7','A9','A13','A15','A17','A26','A19','','','','','','','','','','','','','A7','A9','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I had a MacOS laptop and a Linux desktop and wanted to keep my settings in sync between them.','Y','','Y','','','','','Safe rollbacks','Declarative configurations','search.nixos.org module options as documentation','I\'d add some sort of standard for secret management.','I was using Arch Linux before, so maybe that, though I\'m not really sure.','Y','','','','','','','','','','Sway','home-manager\r\nsearch.nixos.org','Various nixos deploy tools (nix-ops, deploy-rs, I think others). In the end I learned nixos-rebuild can deploy remote machines and does everything I need, so I use that.',''),(1134,'1980-01-01 00:00:00',5,'en','99009566','A2','A6','male','','','','','','','Y','Y','','Y','Y','Y','Y','','','','','Y','','','','','','','','Y','','Y','Y','','','N','N','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1135,'1980-01-01 00:00:00',5,'en','2092131679','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','','N','N','','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I\'m not using any linux distro right now as i\'m full-time on windows.\r\nNixOS seems interesting because it can enable me to recreate my configured work environement anywhere I need it.\r\nNo hassle regarding hardware changes.\r\nTemporary shell envs also look quite neat.\r\n\r\nTo whoever reads this, have a great day ! :)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None',''),(1136,'1980-01-01 00:00:00',5,'en','271490644','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A3','A2','A1','','','','','','','','A12','A14','A13','','','','','','','','','','','','',NULL,'Whatever Guile is using.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A1','A20','A2','A3','A15','A22','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','I was interested in concepts from the functional programming community and found them applied at the operating system level with NixOS. I think that I, as a user, should be in control of my computation but I don\'t want to spend to much time maintaining the machine. NixOS strikes a good balance. ','Y','','','','','','','','','','','','','','','','','','','','','','','','',''),(1137,'1980-01-01 00:00:00',5,'en','1145605570','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I became incredibly frustrated setting up a build system for a C++ project and came across Nix which solved most of the annoyances I had with the implicit nature of most build systems. At which point I tested out Nixos and having programs just work™ meant that I have never looked back even with the difficulties of discoverability and learning resources.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A7','A2','A1','','','','','','','','A6','A14','A5','','','','','','','','','','','','',NULL,'Arch','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Confidence','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Software just works','Atomic installs and rollbacks','Safe experimentation','Integrate home manager with nixos','Arch','Y','','','Y','','','','Y','','','','Editor modes for emacs','',''),(1138,NULL,1,'en','1003805331','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1139,'1980-01-01 00:00:00',5,'en','1102494069','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','','Y','','','','','Y','Y','','','','','','','Y','','Y','','Y','','A10','A2','','','','','','','','','A3','A12','','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A15','A25','A3','A2','','','','','','','','','','','','','','','','','','A15','A25','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','Y','','Y','','','','','','','','','Fedora Silverblue ','Y','','','','','','','Y','','','','','',''),(1140,'1980-01-01 00:00:00',5,'en','725898323','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I was attracted to its declarative configuration management.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Possibly Fedora Silverblue','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A1','A3','A4','A2','A13','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of time and motivation','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I wanted an environment more integrated with nix','Y','','Y','','','','','Declarative system management','','','I would make nixos not dependent on systemd as init/service manager.','Maybe Fedora Silverblue','Y','','','','','','','','','','Hyprland','agenix','sops-nix',''),(1141,'1980-01-01 00:00:00',5,'en','60141160','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','','A7','A10','A3','','','','','','','','A5','A14','A1','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','Y','Y','','','','','','','','','','','','','','','','A13','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I don\'t know how how all of that works. For me it\'s just easier to focus on writing my own flakes and make then available for the community. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I was bored and I wanted to experiment with different linux distros. At first I was incredibly confused to the pint I had to relearn how to use a linux distro...\r\n\r\nThen I\'ve realized how powerful this concept was and now I could not think of going back.','Y','','Y','','','','','Declarative configuration.','Modules integration.','Rollbacks.','Better documentation, more modules.','Maybe Guix? But it wouldn\'t be the same.','Y','','','Y','','','','','','','Hyprland','Home-manager, home-manager makes NixOS x100 better.','','Improve the docs, this is the main showstopper for most people. We need more flakes guides, for beginners this is really difficult to comprehend since every source available assumes previous knowledge. '),(1142,'1980-01-01 00:00:00',5,'en','1484266155','A2','A3','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','NixOS. Both equally: declarative configurations and composable modules.\r\n\r\nFed up with my Arch system being messy (what\'s this systemd unit that is not even enabled for years ?) over the years. It\'s also very hard to setup, it can takes weeks before I remembered all the little things I want to install or git clone there and there.\r\nMy home directory setup was evolved and a lot clearer but Nix can help bring it to the next level.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','Manage dependencies (flakes)','A1','A9','A2','','','','','','','','A13','A4','A8','','','','','','','','','','','','',NULL,'Docker (and bigger tools that rely on it) for testing and deployment. Alcool to cope with the pain for my local machines.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A14','A25','','','','','','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Everytime I look at a screen','A4','Fed up with my previous messy system. I started using Nix because of NixOS.','Y','Y','Y','Y','','','','Composable configuration','Easy and reliable deployment','Extreme expressiveness due to the Nix language, the many NixOS options, and the elegant activationScript model.','NixOS is hugely good and I can only think of small, fixable problems except learning.\r\n\r\nNixOS documentation is very terse and shallow. Concepts like overlays and flakes are not standard (many ways of being used, have alternatives) and have undisclosed flaws (should use override instead ? well it depends). \r\nIt took me hundreds of hours to be comfortable with it even though I agree with the general idea since the beginning.','Painkillers.','Y','','','','','Y','','','','','No DE, xmonad','nix-workspaces, nix-diff, nixos-hardware, nixfmt','None yet.','Thanks for this survey! I\'m confident this will help the community !'),(1143,NULL,NULL,'en','1126093473',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1144,NULL,1,'en','204754536','A1','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1145,NULL,1,'en','1378382988','A2','A3','male','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1146,'1980-01-01 00:00:00',5,'en','1729958062','A5','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','Y','','','A2','A1','A6','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'Docker','A1','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A14','A2','','','','','','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1147,'1980-01-01 00:00:00',5,'en','167283553','A2','A5','male','','Y','','','','','','','','','Y','','','','','','','','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I wanted a way to get around library version conflicts on macOS darwin , automate building from source and a better way to manage developer environments ','Y','','','','Y','','Y','Y','','','','','','Y','Y','','Y','','','','A6','A2','A3','','','','','','','','A9','A4','A8','','','','','','','','','','','','',NULL,'a mixture of homebrew and build scripts, templates, asdf + direnv and docker ','A6','','','','Y','Y','','','','','','','','','','','','Y','','','','','none','A2','A1','A17','A8','A3','A9','A22','A13','A14','A10','A7','A15','A18','A25','','','','','','','','A2','A22','A17','','','','','','','','','','','','','','','','','','','','','','modules','A2','','imposter syndrome and past experience of other groups.','N','N','I do plan to try it for my servers, raspberry pi and docker/vm. but will probably use them from MacOS which is my main OS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-darwin','non yet','I would really like better support for macOS especially a replacement for nix-darwin. \r\nI have also had a lot of issues with updating my nix-darwin, home-manager and nixpkgs system I recently updated flakes and nix-build or Darwin-rebuild will fail resulting in me having to go back to the old setup. I have used flakes a lot but on machines I work from I will probably use flakes and nix-env going forward sometimes it’s handy just to install a package without a rebuild. Often when setting up a system with flakes I will end up having multiple reversions of nix the nix used to first install then as a dependency from building from my flakes.'),(1148,'1980-01-01 00:00:00',5,'en','1202096698','A2','A3','male','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started Nix because it promised truly reproductible isolated environments with atomic rollbacks. It\'s not always easy but it delivered! I don\'t see myself ever going back. :)','Y','Y','','','','','Y','','','','','','','','Y','','Y','','','flake.nix','A2','A1','A10','','','','','','','','A8','A3','A9','','','','','','','','','','','','',NULL,'Gentoo or Arch for Linux, brew on MacOS (which I still use for gui apps)','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A15','A17','A19','A5','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I didn\'t often had the need to. I would be hesitant as it doesn\'t feel easy to navigate through package definitions. It\'s easy when it\'s a simple derivation relying on stdenv. But, often a lot of arguments are required coming from language specific tooling etc. And I have always found them more or less hard to track back and understand.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same reason as Nix, I started Nix because of NixOS.','Y','','Y','','','','','Centralized declarative and reproductible definition of all my OS and packages (flake + home-manager)','Atomic rollbacks/migrations','Stability, never had an issue.','I would have loved to start immediately with flakes and home-manager. I used nix-env before because I wasn\'t aware of those initially, and it\'s really just inferior in every way. So would love if those were more tightly integrated into NixOS, part of the examples, documentation etc.','Gentoo or maybe Arc.','Y','','','','','','','','Y','','','Agenix\r\nNix-darwin\r\nFlake-utils','Nix-env','Thank you for your work, Nix and nixpkgs are amazing.'),(1149,'1980-01-01 00:00:00',5,'en','921700715','A6','A2','male','','','','','','','Y','Y','','Y','Y','','Y','','','','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was using arch before switching to nix, only problem was that I often reinstall for various reasons, sometimes just for fun to get a clean install since I play around with random stuff very often. And it was a pain getting everything I had before to be present again properly, I even wrote an installer script that installs the packages I need, and used stow for managing my dotfiles. But I could never remember to add the packages to the installer script so it was always outdated. When I found out about Nix and NixOS, it piqued my interest, so I started doing some research on what it is and how it works, then I played around with my config in a VM, took a week to learn what I needed, and migrate my config, then I made the switch. I haven\'t had the need to reinstall yet since installing NixOS, but I will for sure, and when I do, I will be in peace knowing that Nix will handle like 95% of what I need to do with just a few commands. I\'m also looking into using Nix as a replacement for building docker images, but I haven\'t looked into that much yet.','','Y','','Y','','','Y','','','','Y','','Personal VPS','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A14','A6','A8','','','','','','','','','','','','',NULL,'I would just stick with Arch + stow for my desktop, and regular docker images.','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A1','A19','A2','A4','','','','','','','','','','','','','','','','','A15','A1','A2','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I\'m still too new to Nix, but maybe one day.\r\nI do have some packages on my dotfiles flake that aren\'t available on nixpkgs, maybe I\'ll try creating PRs to have them added to nixpkgs one day, one day...','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Oops, I already wrote everything on the Nix part.','Y','','','','Y','','Personal VPS','Declarative configuration','Easy rollbacks','Compatible with most programs I tried','Secure Boot with GRUB so that I can do more customization than systemd-boot.\r\nCurrently, I\'m using Lanzaboote but I would like to have a nice GRUB theme and some config changes while having Secure Boot (which I need for things on Windows).\r\nI can\'t really think of anything else so this would be it.','An Arch-based distro, vanilla Arch when I\'m feeling like it, otherwise something like Archcraft or EndeavourOS.','Y','','','','','','','Y','Y','','bspwm, i3, Hyprland, maybe sway in the future too','I use Home Manager.\r\nI don\'t yet, but I will use sops-nix soon™️.\r\nMy config template is this github:misterio77/nix-starter-config#standard\r\nAnd I use github:fufexan/nix-gaming for some games.','None that I can remember','Nope, just thanks for this amazing technology!'),(1150,'1980-01-01 00:00:00',5,'en','798953041','A1','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','Y','','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'The lack of easy documentation, my own laziness and not mentioning exactly how to solve the bugs of Devops domains with nix','he has everything, config as a code, container, sdlc relative handeling focus on devops and more more more ...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'yes, https://github.com/nix-community/awesome-nix#devops and other','...','You are awesome, please just keep going'),(1151,'1980-01-01 00:00:00',5,'en','1493528980','A2','A7','male','','','','','','','','','','','','','','','','','','','','','','','','','retired scientist','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','An update script (LXDE -> LXQT) on Lubuntu was a disaster. ','','','','','','','Y','Y','','','','','','Y','','','Y','','','','A2','A7','A1','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','complexity','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','The upgrade script (LXDE -> LXQt) on Lubuntu was a complete disaster, and I wanted such a thing never to happen again.','Y','','Y','','','','','Fearless system hacking (mistakes easy to correct, experimentation with features easy)','Nix language + Declarative configurations makes it easy to deal with several machines in a unified manner.','rebooting almost never necessary','Add a BSD','Don\'t know anymore. I went through so many linux distributions (+ NetBSD) and now I don\'t intend to change','Y','','','','','','','','','','LXQt','','',''),(1152,'1980-01-01 00:00:00',5,'en','242515225','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Guix, probably?','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','Garnix','A15','A3','','','','','','','','','','','','','','','','','','','','A5','A11','A19','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Declarative configuration','Easy upgrades','','Secure boot','Guix','Y','','','','','','','Y','','','','home-manager','',''),(1153,'1980-01-01 00:00:00',5,'en','1728494213','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','','','','','','','','Y','','','','','','','','','','Y','','','','A1','A2','A3','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','Y','','','',''),(1154,'1980-01-01 00:00:00',5,'en','704741051','A5','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','I started using nix as a homebrew replacement. I used and contributed to guix (and still use it for personal machines) for a few years. I got hired doing nix work almost full time 1.5 years ago where we support production and ci/cd in airgapped configurations. ','Y','Y','','','','','Y','','Y','','','','Production rack units','','Y','Y','Y','Y','Y','nix-eval-jobs for ci/cd','A7','A2','A4','','','','','','','','A6','A11','A12','','','','','','','','','','','','',NULL,'Guix, but it is built on the nix store. Nothing comes close!','A7','','','Y','Y','Y','Y','','','','','','','Y','','','','','','','','Y','','A11','A13','A2','A4','A3','A25','A9','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','I started using a qemu vm from nix a few years back and, after some time using the guix distro, got a job using nixos.','Y','Y','','','','','Production rack units configured with nixos','Purely functional extension language (and library - aka the modules system)','Atomic update/rollback (to the extent possible)','','MORE MAINTAINERS','Nothing compares. Guix of course, but it is too similar to count as an alternative.','','','','','','Y','','','','','Xmonad/startx','nix-eval-jobs, nix-diff, hocker, the various rust build platforms like naersk, the emacs overlay, nil, nixpkgs-fmt, nix-darwin, cabal2nix, yarn2nix, sbtix, nix-top','Sbtix has had on-and-off support so it has been difficult and patchy for us','Thank you. I can\'t believe how much nix has done and continues to do!'),(1155,'1980-01-01 00:00:00',5,'en','1757171057','A3','A4','male','','','','','Y','','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A10','A2','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','','Hypr','','',''),(1156,NULL,NULL,'en','2069869263',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1157,'1980-01-01 00:00:00',5,'en','475554035','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I use nix as a byproduct of using NixOS. It\'s incredibly useful, but I only really started using it because I started using NixOS.','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A4','A8','A14','','','','','','','','','','','','',NULL,'Docker maybe? There\'s not really a replacement to what nix does for me.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A4','A17','A3','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I saw some people using it on r/unixporn, and thought it looked cool, especially after dealing with my own janky solutions for managing dotfiles with shell scripts on Arch. After doing a bit of research I came across the video from DistroTube, which sealed the deal.\r\n\r\nI also had dealt with dependency hell on Arch, along with constantly breaking my system, and NixOS seemed like the perfect solution.','Y','Y','','','','','','Dotfile management (home manager)','Reproducible builds (lifesaver for multiple systems)','Nixpkgs ( Its huge already, and I can extend it easily if I need something)','I would add better support for errors. Often I get errors that are very dependent on context, and if it hadn\'t been something that I\'d just changed, I wouldn\'t know where it came from. Often errors come without line numbers, and I usually spend more time hunting for where an error originated from rather than actually fixing it.','Probably arch with a bunch of shell scripts. I\'d probably be more sane as well.','Y','','','','','','','','','','Hyprland and AwesomeWM','Home manager. Its a really nice tool for working with dotfiles.','None that I can think of.','Even though they drives me insane sometimes, I love nix and NixOS. Keep doing what ya\'ll do.'),(1158,'1980-01-01 00:00:00',5,'en','953468445','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A7','Because I am a programmer and this is sick after. ','','','','','','','','','','','','','','','','','','','','','A7','A1','A9','','','','','','','','A5','A9','A8','','','','','','','','','','','','',NULL,'Flatpak ','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A25','','','','','','','','','','','','','','','','','','','A15','A2','A13','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','','','','','','','','','Documentation ','Ansible/linux','Y','','','','','','','','','','Hyprland','','',''),(1159,NULL,2,'en','1363606998','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Because i wanted a reproducible system, and with a language like nix it was a perfect match','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A7','A2','','','','','','','','A3','A8','A13','','','','','','','','','','','','',NULL,'Fedora Silverblue','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','im not that good :(','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1160,'1980-01-01 00:00:00',5,'en','802139101','A5','A3','male','','','','','','Y','','Y','Y','','Y','Y','','','','','','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I thought it would be a good desktop os for my workstation because you can just keep all your configs In a repo and if you were to lose your primary drive its no big deal to pull it down and rebuild switch ','Y','','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','','A8','A7','A2','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'Arch Linux ','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A1','A6','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','The Nix language is pretty difficult for me but Ive been trying to package a proprietary piece of software for work and it\'s been going well.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Using it for a desktop. It\'s a great resource.','Y','Y','Y','Y','','','','A version controlled configuration ','Development shells','Creating containers and build environments','Nixops is perfect with support for secrets,\r\nNix builds are fast! Especially if not much has changed between builds.\r\nThere\'s an official Nix lsp that can recommend package names and options. ','Arch linux','Y','Y','Y','','','Y','','Y','','','Hypr','','Nixops','I LOVE Nix alot I think it is a near perfect solution for a declarative OS/package manager.\r\nIf we can get better documentation and tooling nix will be an easy recommendation to use at work.'),(1161,'1980-01-01 00:00:00',5,'en','1583638202','A2','A2','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Just out of curiosity ','Y','','','','','','Y','','Y','','','','','','Y','Y','Y','','','','A10','A2','A1','','','','','','','','A14','A3','A2','','','','','','','','','','','','',NULL,'Docker for CI and package managers like brew for local development','A1','','','','Y','Y','','','','','','','','','','','','','Y','','','','Concourse ','A13','','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','','','','-oth-','I develop Nix as a build system for CI and contribute to OSS projects like devenv',NULL,'N','N','Too big of a commitment ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'I use devenv a lot','','I\'d have loved to have more examples when I was first learning Nix. The documentation is not as bad as people say, but to less skilled Nix users, examples would be a much better tool that docs'),(1162,'1980-01-01 00:00:00',5,'en','637680350','A2','A2','fem','','','Y','','','','','','','Y','','','','','','','','Y','','','','','Y','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I have no idea. I think it started with me trying to mock the OS.','','','','','','','Y','','','','','','','','Y','Y','Y','','Y','','A7','A1','A2','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'Docker','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A6','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','No idea what to contribute','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','It started as a joke. Now I\'m trans aswell.','Y','','','','','','','configuration.nix','Rollbacks','immutable','add Secureboot support, secrets support, FHS compat module','Bedrock Linux','Y','','','','','','','','Y','','','home-manager, declarative-flatpaks, nixos-fhs, direnv','',''),(1163,'1980-01-01 00:00:00',5,'en','1270605292','A8','A2','male','','','','','','','','','','','Y','Y','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A7','To learn about the ecosystem to be able to have it as a tool that i can apply to different challenges and tasks.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','Y','','A6','A1','A7','','','','','','','','A10','A5','A8','','','','','','','','','','','','',NULL,'Most likely a combination of some quality of life software and containers','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A15','A25','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A2','','intimidated','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','','','','','','','Reproducibility ','Vast availability of packages','Good developer experience (after the learning curve)','Far later down the line, I would change it to be user-friendly so everyone could use it (i.e. interfaces for a lot of the functionality), and i would either have better documentation or reduce the amount of hacky/unoptomised ways for doing the same thing','','Y','','','','','','','Y','','','','','cachix',''),(1164,'1980-01-01 00:00:00',5,'en','363772172','A5','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A6','','','','','','','','A6','A2','A8','','','','','','','','','','','','',NULL,'\r\nGuix?','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','A9','A20','A22','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(1165,NULL,2,'en','2013063624','A3','A3','-oth-','','Y','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A8','A5','A2','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','Y','','Y','','','','Y','','','','A1','A7','A14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1166,NULL,-1,'en','1863487529','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1167,'1980-01-01 00:00:00',5,'en','1049717080','A2','A2','male','','','','','','','Y','','','','','','','','Y','','','Y','','','','','Y','Y','','','','Y','Y','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I was getting bored from how often my Artix setup was crashing, so I wanted to find a \"endgame\" distro which would let me config stuff once and use it for the rest of my lifetime. Subsequently, I found about the Nix(OS) ecosystem and I fell in love with everything. I\'m quite fond of ML-like languages (Haskell, OCaml, etc) so the Nix language was a breeze to learn. I now use Nix for almost everything: dektop, laptops and phone (portable shell, editor configs) (replaced termux on phone, same story as the Artix), work for various devshells for the different projects i work for ','Y','Y','','','Y','Android','Y','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','A1','A2','A3','','','','','','','','A8','A13','A6','','','','','','','','','','','','',NULL,'I would have probably started using GNU Guix or just stick with my old distros','A2','','','Y','Y','Y','','','','','','Y','Y','Y','','','','','','Y','','','','A15','A13','A22','','','','','','','','','','','','','','','','','','','A14','A20','A11','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Free time and anxiety','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A2','Same as Nix','Y','','Y','','','','','System configuration (beyond just dotfiles)','Trivial rollbacks (through generations) after kernel upgrades','','I\'d add more integrated support for flakes and deprecate the old plain configuration.nix (can really f*** up a system if one does a `nixos-rebuild switch` without the `--flake` flag, because it uses the (probably) really old `configuration.nix`)','Probably GNU Guix','Y','Y','','Y','','Y','','','','','Only WMs','I use nix-darwin and nix-on-droid a lot','','Thank you for keeping such a great project alive'),(1168,'1980-01-01 00:00:00',5,'en','1716822685','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','I\'ve been searching for a good dotfile solution. Home manager did it for me.','Y','Y','','','','','Y','','','','Y','','','Y','Y','','Y','','','','A1','A10','A3','','','','','','','','A4','A9','A10','','','','','','','','','','','','',NULL,'Gentoo or Arch..','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I\'m not a developer.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','due to home-manager\'s capabilities.','Y','','','','','','','integrated nix package manager','ability to roll back to a working state','','','Gentoo or Arch..','Y','','','','','','','','','','i3wm','None that I would know of','None that I would know of','keep up the good work :)'),(1169,'1980-01-01 00:00:00',5,'en','605827352','A2','A2','fem','','','','','','','Y','','','Y','','','','Y','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','i wanted to be able to customize my linux installation as much as possible, and the promise of having a reproducible system sounded nice to me, so i gave nixos a try','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A2','A10','','','','','','','','A8','A14','A9','','','','','','','','','','','','',NULL,'bash scripts and/or containers','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A1','A3','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','not having much time to do it','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','Y','','','','','Configuration is (almost) all in one place and can thus easily be backed up and versioned','How easy it is to install and configure a new service','Large package repository, which can easily be extended with my own packages if needed','Stabilize flakes and make them the default way to work with NixOS','Debian and/or Ubuntu, maybe with Docker for some services','Y','','','','','','','','','','','devenv','',''),(1170,'1980-01-01 00:00:00',5,'en','387638603','A1','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','from youtube','Y','','','','','','Y','','','','','','','','','','Y','','','','A2','A7','A6','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'macos','A2','','','','Y','Y','Y','Y','','','','','','','','Y','','','','Y','','','','A1','A2','A15','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','youtube','Y','','','','','','','','','','','','Y','','','','','','kexec','','','','sway','','',''),(1171,'1980-01-01 00:00:00',5,'en','2140790989','A2','A3','-oth-','x','Y','','','','','','','','','','','','Y','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','was working on devops related stuff, read about nix and instantly decided it was the correct and proper way to do things. Have been a user and advocate ever since.','Y','Y','','','','','Y','','Y','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A9','A2','','','','','','','','','','','','',NULL,'some cursed combination of ansible, docker and make files most likely ','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A4','A3','A25','A2','A15','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','free time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','as soon as I learned about nix I instantly wanted to be all in. ','Y','','Y','','','','','reproducible environments','deep control over all aspects of my system','ability to make sweeping changes without fear','for my needs it’s basically perfect. better documentation would be nice I guess, and just a stabilised flake and modern cli too. ','arch linux for my workstation and like debian plus ansible for servers I guess. ','Y','','','','','','','','','','sway','cachix\r\nflake-parts\r\nnix-direnv/direnv\r\nhome-manager','niv & morph. stopped using because flakes and nixos-rebuild solved the same problems with less moving parts ',''),(1172,'1980-01-01 00:00:00',5,'en','710458789','A5','A2','fem','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Ease of system management, reproduceability','','Y','','Y','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A1','A7','A2','','','','','','','','A8','A13','A3','','','','','','','','','','','','',NULL,'A hodgepodge of dotfiles, meson, and probably spack','A4','','Y','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A2','A15','','','','','','','','','','','','','','','','','','','A1','A6','A5','','','','','','','','','','','','','','','','','','','Y','Y','','upstreaming things','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A fully declarative system to reduce the headache, it makes system management easier and importantly, rollbacks possible, without engineering something like a btrfs snapshot system (like Fedora Silverblue)','Y','','','','','','','Atomic updates/rollbacks','System reproduceability','Testability','Both it and nixpkgs, making them less piles of inline-bash and more scripts with Nix (so you can add true support for other implementations), additional tests and external framework for testing users\' NixOS configurations, a libvirt domain module, and SELinux tooling/options','Probably Fedora Silverblue or Manjaro. Or piles of DSC and PowerShell modules on top of Windows :(','Y','','','','','','','','','','Sway','nixos-hardware, nix-on-droid, flake-utils, nixpkgs-lib, disko, impermanence, nix-index & nix-index-database, comma, nil, sops-nix, nixvim, gitignore.nix, pre-commit-hooks.nix, nix-direnv, nixos-icons, statix, poetry2nix, nixpkgs-fmt, terranix','node2nix, napalm, vulnix, nvd, rnix-lsp, rnix-parser, nix-linter, dream2nix, nixfmt, devshells.nix, digga','I really enjoy using Nix, but while it could be broken up, so could Nixpkgs like with its lib, builders, and maybe NixOS, and the limited type system of Nix really hurts sometimes. \r\n\r\nI\'ve also had some experiences with members of the community in the past who had strong Opinions that have...colored my opinion of the ecosystem as a whole and my willingness to contribute. Most of those members have either since been banned or I\'ve managed to avoid though, so I\'m largely better and more willing to help, but dealing with \"capital \'O\' \'opinions\'\" takes _a lot_ of energy, especially when its on something largely arbitrary'),(1173,NULL,1,'en','761675845','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1174,'1980-01-01 00:00:00',5,'en','954097490','A2','A3','male','','Y','Y','','Y','Y','Y','','Y','Y','Y','','','','Y','Y','Y','Y','','Y','Y','Y','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Someone told me the pitch, I thought it was impossible, I tried out in anger, and I was wrong.','Y','Y','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','Y','Y','research and a lot of other things.','A1','A7','A6','','','','','','','','A11','A2','A7','','','','','','','','','','','','',NULL,'Guix, and if nothing like Nix existed, Gentoo probably.','A3','','Y','Y','','Y','','Y','','Y','Y','','Y','','','Y','Y','','Y','Y','Y','Y','Buildbot, Drone CI, Gitea Actions','A15','A2','A13','A1','A7','A25','A22','A6','A24','A10','A3','A4','A9','A18','A17','A21','A19','A11','A5','A8','A14','A24','A10','A22','','','','','','','','','','','','','','','','','','','Y','Y','Y','Applying patches on the top of nixpkgs','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','When I thought it was impossible and I was wrong about Nix, I used Archlinux+Nix for a while and then a day my base packages exploded.\r\nI could not fix them in a timely fashion, at that moment, I knew that time to NixOS was faster than time to fix my Archlinux setup.','Y','Y','Y','Y','Y','Y','Routers, switch (network gear).','NixOS modules','Advanced systemd usage','System agility (specializations, boot, NixOS tests, etc.)','I don\'t have a magic wand, I have merge access :P.\r\n(1) Faster NixOS modules\r\n(2) Multi-instances \"as a first class citizen\" in NixOS modules design\r\n(3) NixOS convergence solution \"ensureXXX\", state migrations, etc. (see my issue on it in nixpkgs)','Oh lord… Gentoo and quitting computers ASAP.','Y','Y','Y','Y','Y','Y','','','','','sway','lanzaboote (ok I\'m author…), nix-index, home-manager, disko, nil, nix-eval-jobs.\r\nsoon: tvix?','nixpart, flakes.\r\nsoon: cppnix?',''),(1175,'1980-01-01 00:00:00',5,'en','503842351','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','At first I was attracted by the \"one configuration to rule them all\" approach. Then I realized the power that comes from packaging / managing things with nix.\r\n\r\nNow building things without it feels dirty and fragile. ','Y','Y','','','','OpenBSD','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','','Y','','A2','A1','A6','','','','','','','','A6','A9','A7','','','','','','','','','','','','',NULL,'Something like ansible.. and I\'d cry .. every.. night..','A1','','','','Y','Y','','','','','','','','','','','','','','','','','Shell Scripts','A9','A25','A18','A7','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','See \"Why did you start using Nix\" :D','Y','Y','Y','Y','','Y','','Worry free computing. My services, configurations, packages.. all set in stone.. things only change because I change them.','','','','OpenBSD.. while crying myself to sleep..','Y','','','','','Y','','','Y','','','','',''),(1176,'1980-01-01 00:00:00',5,'en','25887833','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I got introduced by it by a friend when I was still using Arch Linux. It really resonated with me, addressing some major pain points I had with Arch, like no longer having to lookup whatever commands I figured out to use 6 months prior to fix some random issue that tended to pop up due to Arch\'s bleeding rolling release.','','','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A10','A4','','','','','','','','A11','A7','A6','','','','','','','','','','','','',NULL,'yay (Arch Linux)','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A15','A13','A10','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I have contributed a few packages in the past, however I never really been a proper active maintainer of them, though almost all of them have been picked up by others that do want to maintain them. I stopped contributing new packages or patches after some bad experiences. A few times where I was forced to apply opinions or else it would not get merged, despite being clearly opinions, because there would for example be a lot of president in similar packages already in Nixpkgs. And a few where rather than asking for clarification they went and assumed I knew nothing and spammed all kinds of \"helpful\" messages that I then felt the need to defend myself for otherwise everybody would too assume I knew nothing. Making me feel like shit, and it only lead to everybody\'s time being wasted. At some point I just figured, why bother. I am currently only contributing in the form of a few flakes.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','It is the same story as for Nix, as I started using Nix using NixOS, only later that I also started using Nix outside of NixOS. I learned of NixOS through a friend and shorty after starting using it full time as a replacement for Arch Linux. This was 2015, so I still had to package a few things myself, but with the help of that friend and the IRC channel I managed and have been a happy user since.','Y','Y','Y','Y','','','','Having artifacts in the form of Nix files representing the knowledge (setup, fixes, etc.) you have about your system','Having reproducible builds','Easy to share development setups','A more independent module system that would work with NixOS, Home Manager, but also devenv and various container technologies, like Docker. It seems a waste that every different environment needs to reinvent their modules.\r\n\r\nIt would be awesome if you could have multiple instances of some modules. Their are submodules, but some modules are setup with the assumption that there will only be one running instance.','Arch Linux','Y','','','','','Y','','Y','','','i3','extra-container','devenv (due to not having access to the existing NixOS modules)','Keep up the good work!'),(1177,NULL,NULL,'en','2128016963',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1178,'1980-01-01 00:00:00',5,'en','1079572133','A2','A4','male','','','Y','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','got sick of installing ffmpeg with homebrew and it leaving a ton of random packages around I didnt care about','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','','','','','A2','A10','A7','','','','','','','','A8','A12','A14','','','','','','','','','','','','',NULL,'homebrew, asdf','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A7','A25','','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','One person reviewed my first pr, but then no one else so it\'s just sitting there unmerged for several months now? Idk what to do','Y',NULL,NULL,NULL,NULL,'A3','Y','','','','A1','Needed to build some arm64 linux things, used a vm on my m1 macbook','Y','','','','','','','','','','','','','','','','','','','','','','none','home-manager','','make some way for PRs to not fall through the cracks for months. It\'s very discouraging. Instead I\'ve just been working on my own flakes for things instead of sending things into the official nixpkgs repo. Like why bother making things nice for that repo when it\'s just ignored forever?'),(1179,'1980-01-01 00:00:00',5,'en','80396510','A2','A2','-oth-','agender','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Nix just \"came with NixOS\" for me, and now I use it to never have to install project-specific things system wide and have a unified build and packaging system for all my software.','','Y','','','','','Y','Y','','','','Y','','','Y','Y','Y','','','','A3','A2','A7','','','','','','','','A11','A9','A13','','','','','','','','','','','','',NULL,'I have no idea. I haven\'t really looked back since I started using nix. Probably different tools per language with direnv to keep project-specific tools with the projects','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A14','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','The core problem I was trying to solve, when I ran into NixOS by chance, was keeping my occasionally used machines, like my laptop, in-sync and up-to-date with my main workstation (in terms of installed software and their configuration). NixOS looked like a way to archive what I want, with quite strong guarantees. (It turned out to be a very good choice for what I wanted from it.) ','Y','','Y','','','Y','','Being able to manage my system configuration as code in git','Declarative configuration of anything I really care about in my system','Easy rollbacks if I break my system','','I don\'t know, possibly guix or ansible to keep my system configurations synced.','Y','','','Y','','','','','','','Sway (but not the nixpkgs/home-manager modules)','impermanence, agenix, home-manager, naersk, fenix, opam-nix (tweag\'s)','',''),(1180,NULL,NULL,'en','1256398957',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1181,'1980-01-01 00:00:00',5,'en','1994751668','A3','A3','male','','','','','','','Y','','','Y','Y','','','Y','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','','A8','A2','A3','','','','','','','','A8','A13','A3','','','','','','','','','','','','',NULL,'Container','A4','','','','Y','Y','','','','','','','','','','','','','','','','','Google Cloud Build','A15','A9','A1','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','N','System76 developing and maintaining a NixOS module that tries to match the Pop OS experience.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'direnv, Nix-IDEA, nix-mode','nix-doom-emacs',''),(1183,NULL,1,'en','1262621901','A2','A3','fem','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1184,NULL,2,'en','953645875','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','Y','Y','','','Y','','','','Y','Y','Y','','','','A1','A10','A7','','','','','','','','A12','A2','A1','','','','','','','','','','','','',NULL,'','A4','','Y','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A3','','','','','','','','','','','','','','','','','','','A15','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','Y','','Y','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1185,'1980-01-01 00:00:00',5,'en','372653218','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','Got into linux about a year ago, started distro hopping as one does. Went from manjaro to arch and then with the recent nixos release I was finally able to get nixos working on my primary desktop/laptop (previously i had been unable to get the graphical environment to start and this issue persisted across different devices so I decided to wait until the next major release). Through using arch I had gotten comfortable with the idea of downloading software from a repository, editing dotfiles, and using the linux command line. As I was considering various linux distributions I realized that nixos/nix just seemed to have a number of innovations (declarative builds, atomic upgrades, nix-shell for isolated development environments, flakes, etc.) over and above any of the other distributions which mostly just boiled down to choosing between different package managers.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A7','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'arch and pacman','A2','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A2','A17','','','','','','','','','','','','','','','','','','','','A2','A17','A1','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Inexperience','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Got into linux about a year ago, started distro hopping as one does. Went from manjaro to arch and then with the recent nixos release I was finally able to get nixos working on my primary desktop/laptop (previously i had been unable to get the graphical environment to start and this issue persisted across different devices so I decided to wait until the next major release). Through using arch I had gotten comfortable with the idea of downloading software from a repository, editing dotfiles, and using the linux command line. As I was considering various linux distributions I realized that nixos/nix just seemed to have a number of innovations (declarative builds, atomic upgrades, nix-shell for isolated development environments, flakes, etc.) over and above any of the other distributions which mostly just boiled down to choosing between different package managers.','Y','','','','','','','reproducible builds','Atomic upgrades & rollbacks','isolated development environments (nix-shell)','i\'d probably just improve the documentation.','arch','','','','','','','','','Y','','hyprland','home-manager','n/a',''),(1186,'1980-01-01 00:00:00',5,'en','1503798267','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Previously, I used Arch Linux and openSUSE Tumbleweed for multiple years. While they are both great distributions, NixOS allows me to have my computer configuration as code. Since I need my computer for work, I don\'t want to ever again have to reconfigure something in my setup. Once something is configured, it\'s done for good. If somehow my computer isn\'t usable anymore due to hardware failure, I can bring back my setup quickly on another computer and keep working. The extra safety of being able to rollback to a previous generation at boot is really a great feature. The huge amount of packages available is also awesome.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A7','A1','A2','','','','','','','','A5','A14','A9','','','','','','','','','','','','',NULL,'openSUSE Tumbleweed or Arch Linux','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A7','A24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I did contribute to Nixpkgs, but only minor patches. Previously on Arch Linux and openSUSE Tumbleweed, I maintained a dozen packages and while there was definitely a learning curve involved into getting started with packaging for those distributions, it\'s nowhere near what one has to learn for Nixpkgs. Even after 3 years of NixOS usage, I still am fairly beginner when it comes to packaging for Nixpkgs. The documentation is often lacking, outdated or quite verbose. This is the biggest barrier to overcome as a new contributor.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','See what I wrote for Nix in the previous section.','Y','','','','','','','','','','Better documentation','Arch Linux and openSUSE Tumbleweed','Y','','','','','','','','','','i3','home-manager','','Thank you for your work!'),(1187,'1980-01-01 00:00:00',5,'en','371615907','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','','Y','Y','','Y','','Y','Y','Y','Y','Y','Y','','A8','A1','A9','','','','','','','','A12','A5','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','Y','Y','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','A15','A1','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','Y','','','','','','','Y','','','','','Y','','','','','','nix2container','',''),(1188,'1980-01-01 00:00:00',5,'en','978701339','A2','A3','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','There\'s simply nothing like it. (I\'ve known about Nix since ~2007-2008, but resisted jumping in for the longest time because it seemed like a fuss. Honestly, it is a fuss, but it\'s worth it.)','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A6','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'Probably a Bazel-like (Buck2?) for builds, and something that makes me sad for configuration management. Maybe I\'d get into Kubernetes.','A2','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A15','A1','','','','','','','','','','','','','','','','','','','','A1','A15','A9','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','See my response to the Nix question: there\'s nothing else like it. Atomic upgrades, declarative configuration, and (relatively) immutable infrastructure are priceless. Plus it\'s not built out of string-templated YAML.','Y','','Y','','','','','Reproducible declarative environments and systems','Atomic upgrades and rollback','Ease of customizing packages/services and orchestrating complex interacting setups','I would make NixOS best-in-class for security and hardening and implement pervasive containerization (including user environments). I would also remove all the Bash and Perl.','Maybe Fedora Silverblue or something on the desktop, maybe I\'d get into Kubernetes for servers.','Y','','','Y','','','','Y','','','','nix-direnv\r\nnix-darwin\r\nhome-manager\r\nflake-utils\r\noxalica/rust-overlay (though I\'ve considered fenix too)\r\noxalica/nil (also interested in nixd)\r\n(r)agenix\r\nalejandra (but I will adopt whatever RFC 0101 ends up with)\r\ndevshell\r\nimpermanence','','Process is a big problem in NixOS. The RFC procedure is intended for large controversial changes and yet ends up not working well for precisely those (e.g. Flakes, the formatting RFC). There is also a lack of clear responsibility and ownership for many things, leading to PRs getting drive-by feedback but ultimately dying on the vine (I realize that this is in part limited by available volunteer resources and don\'t hold it against anyone permanently, nor do I want to significantly lower standards to fix this). I hope that the ruptures of community trust/confidence that Flakes has lead to can be healed and that the community can be united once again (I do think Flakes are an improvement overall, despite my standard technical misgivings - poor handling of systems and attendant boilerplate, lack of value-based parameterization, unclear overlay/leaf packages divide and attendant explosion of nixpkgs imports and input overrides). I hope that processes can be improved across the board and the contributor experience gets better as a result. Despite all this, I love Nix/nixpkgs/NixOS and there\'s nothing else like it.'),(1189,'1980-01-01 00:00:00',5,'en','793316623','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','Software Architect','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I only started using Nix outside NixOS later in my nix journy. The main reason was that I wanted to review nixpkgs PRs on my notbook wich was running Archlinux.','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A7','A1','A2','','','','','','','','A9','A8','A5','','','','','','','','','','','','',NULL,'Bitbake or Brew','A3','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A15','A4','A9','A5','A2','A10','A3','A1','','','','','','','','','','','','','','A15','A2','A5','','','','','','','','','','','','','','','','','','','','','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','I wanted to run Gitlab CI with docker at scale and ran into issues with overlayfs and aufs. To try out kernel, gitlab-runner and docker patches on production systems NixOS as it allowed me to relatively safely roll out patches and verfiy the fix the issue. I then learned more about the internals an also switched my debian server to NixOS.','Y','Y','Y','Y','','','','Single configuration file for the whole system','Source based from a single git repository','Atmic Update and rollback','Make all packages have deep test coverage so that the merging of package update PRs can be automated','Debian with Ansible or GuixSD','Y','','','','Y','','','Y','Y','Y','Cinnamon','nixpkgs-review\r\n','jupyenv - couldn\'t get it working with tensorflow\r\nNixOps - no good solution for state sharing at the time\r\nhome-manager - not in nixpkgs and I wasn\'t using flakes when I tried',''),(1190,'1980-01-01 00:00:00',5,'en','41327657','A5','A2','male','','','','','','Y','','','Y','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','','Y','','','Y','','Y','Y','Y','','','','','Y','Y','','','Y','','','A5','A8','A2','','','','','','','','A14','A9','A13','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','Self-hosted WIP Projects','A1','A9','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','Y',NULL,'Not a fan of systemd','I prefer minimalistic systems. I don\'t think that is what NixOS is trying to do (which is fine).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1191,NULL,NULL,'en','1072010112',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1192,NULL,3,'en','1500796931','A2','A2','-oth-','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A2','A4','','','','','','','','','','','','','',NULL,'','A2','','Y','','Y','Y','Y','Y','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','',NULL,NULL,NULL),(1193,'1980-01-01 00:00:00',5,'en','74302712','A7','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','','','','','','','','','','','','time to learn',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Couldn\'t get my GDM config working via Login Manager Settings Flatpak','Having the time to figure it out and configure GDM via dconf/gsettings',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1194,NULL,NULL,'en','994798415',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1195,'1980-01-01 00:00:00',5,'en','1370289089','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I heard Nix could compile Haskell projects more reliably than Cabal, then I got interested in switching from Arch to NixOS.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A9','A1','A7','','','','','','','','A8','A3','A6','','','','','','','','','','','','',NULL,'Docker','A1','','','','Y','Y','','','','','Y','','Y','','','Y','','','','Y','','','Semaphore','A1','A9','A15','A3','','','','','','','','','','','','','','','','','','A1','A15','A9','','','','','','','','','','','','','','','','','','','Y','','','applyPatches','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','','','Leverage community configurations to quickly get going','Compartmentalized configuration','Rollbacks','Better secret support','Ubuntu','Y','','','','','','','Y','','','','agenix\r\ncargo2nix\r\n','',''),(1196,'1980-01-01 00:00:00',5,'en','910919924','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','4ish years ago, I was trying to automate setup of both servers and pcs, trying to find a way to reduce a lot of the duplicated work and centralize things as much as possible. Lo and behold, I came across a distrotube video on nixos (the very first one he posted, tho by that point the video was like a year old). Nixos was basically what I wanted, just designed 100x better than what I could come up with :p','','Y','','','','','Y','Y','Y','','','Y','','Y','Y','Y','Y','Y','Y','','A6','A2','A10','','','','','','','','A15','A8','A13','','','','','','','','','','','','','Better (or at least more tested) cross compilation support','Guix, if that even exists in this hypothetical, otherwise some arch based system with a whole lotta ugly custom scripts on top','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','drone','A15','A2','A4','A3','A9','A18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time, and the sheer size of the project can be a bit daunting too.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','','','Y','','Whole system cross compilation support','Declarative configurations','Extensibility / modularity','','','Y','','','','','Y','','','','','hyperland','Home manager, vulnix, impermanence, agenix','','Keep being awesome (:'),(1197,'1980-01-01 00:00:00',5,'en','1162117374','A5','A2','-oth-','Non-binary','','','','','','Y','','','','','','','Y','','','','Y','','','','','Y','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','i first started using nix at the recommendation of a friend. for years i had been using dotfiles in a bare git repo, install scripts, ansible playbooks, etc. to keep my systems clean and easy to setup, as well as third party repos and flatpak for a lot of desktop apps. i was a bit hesitant to leave this at first, since nix(os) seemed pretty complicated and it would be yet another package manager i had to deal with. after making a nixos configuration for wsl though, my views changed up very quickly. i realized that all of these tools, repositories, and scripts i was using before could all be replaced by nixos; and since then, i haven\'t really stopped using it. i love how easy it is to customize my system, share configurations between them, override packages to have exactly what i want, and have any package i could ever need in one place. it\'s really been a game changer for me and i don\'t see myself leaving it anytime soon','','Y','','Y','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','','A3','A1','A2','','','','','','','','A5','A9','A10','','','','','','','','','','','','',NULL,'i would most likely use bare git repos to manage dotfiles and things like ansible and bash scripts to manage systems. i would also probably go back to using docker for most of my deployments','A2','','Y','','Y','Y','','','','','','','Y','Y','','','Y','','','Y','','','','A2','A15','A4','A1','A26','A9','A5','','','','','','','','','','','','','','','A1','A15','A26','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','i started using nixos and nix around the same time for similar reasons. ansible and random bash scripts worked for my devices previously, but having a way to declare everything i want in one centralized repository really appealed to me. i quickly found out about nixos modules, and once i saw how easy it was to setup services with them, i almost immediately switched all of devices to them. getting rid of all of these random tools - or replacing others like docker - was a massive benefit to me, especially for server management. it\'s awesome having a reliable system that i can control with basically just a git repository :)','Y','Y','Y','','','','','declarative management','package availability ','stability','i would add the ability to edit what some modules. i\'ve found myself creating my own modules to sort of wrap others, so it\'s not a major issue - but it\'d be very nice if if there was an official, supported method.','i would probably use RHEL/rocky linux. they\'re the only other distros i really enjoy managing and what i had used for years before nixos.','Y','','','Y','','','nixinate','Y','','','','home-manager, lanzaboote, and flake-parts are the main ones. they\'re all amazing projects and make writing stuff with nix and using it a lot better.','flake-utils, crane, naersk, and dream2nix are the only few projects i used for a bit but stopped. i felt the first three were a little pointless given the tools in nixpkgs, and with dream2nix i didn\'t enjoy the amount of abstraction - though i do see how it\'s very useful for those who are less familiar with nix or very large, complicated projects.',''),(1198,NULL,NULL,'en','84850767',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1199,'1980-01-01 00:00:00',5,'en','1816550166','A5','A2','-oth-','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Someone told me about it I found it interesting.','Y','','','','','','Y','','','','','','Virtual Machines','Y','Y','','','','','','A1','A6','A7','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A15','A17','A8','A1','','','','','','','','','','','','','','','','','A8','A17','A1','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','','Y','','','','','','Virtual Machines','Reproduceability','Amazing package manager ','Great customizability ','','','Y','Y','','','','','','Y','','','','','',''),(1200,NULL,1,'en','1902197855','A5','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1201,'1980-01-01 00:00:00',5,'en','410481130','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A1','A2','A8','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','Y','','Y','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A1','A11','A10','','','','','','','','','','','','','','','','','','','','','','newScope','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','','','','','','Y','','','','','Y','','','','','dwm','','',''),(1202,NULL,2,'en','238647729','A5','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A2','A7','','','','','','','','A14','A8','A5','','','','','','','','','','','','',NULL,'Arch','A4','','','','','','','','','','','','','','','','','','','','','','','A15','A17','A3','A2','A13','A14','A5','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I don\'t know how to',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1203,'1980-01-01 00:00:00',5,'en','442197907','A2','A4','-oth-','why?','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','NixOS','A2','Someone told me about NixOS, and it sounded exciting to me. It kinda follows that I started using Nix as well.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A5','A10','A1','','','','','','','','A14','A8','A9','','','','','','','','','','','','',NULL,'I would use Arch btw, I would probably do a bunch of shell scripting.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Skill, lazyness, lack of confidence.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','Daily driver','A3','This person was telling me all about it and I got super excited.','Y','','','','','','','Configurability','Reproducibility','package availibility','I would add documentation. A lot of it.\r\n\r\nI would change the store from: \r\n/nix/store/cwjdwjlyrwlqziybi04yyf5alqmc56vr-cudatoolkit-11.7.0.drv\r\nto:\r\n/nix/store/cudatoolkit-11.7.0.drv-cwjdwjlyrwlqziybi04yyf5alqmc56vr','I would use Arch btw.','Y','','','','','','','','','','sway','home-manager','well I tried home-manager, then I stopped, but then I started again.',''),(1204,'1980-01-01 00:00:00',5,'en','2008913325','A2','A3','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Stability stability stability','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'Portage','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','frankly, laziness, i know...','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Stability','Y','','','Y','','','','rollback','reproducibility, duh ;) ','package-availability','honestly pretty happy with the current state, the more i think about it','Gentoo','Y','','','','','','','Y','','','Hyprland','dont know right now','dont know right now',''),(1205,NULL,1,'en','963621472','A2','A5','male','','','Y','','','','Y','Y','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1206,NULL,1,'en','1214914705','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1207,'1980-01-01 00:00:00',5,'en','2135792619','A2','A2','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted a better dot file management solution for my Arch Linux setup, which ended up with moving to full NixOS + home-manager setup','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','Y','','A1','A3','A7','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'Probably Arch Linux, Ubuntu and Github Actions combined with Docker and lots of crap shell scripts','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A6','A1','A2','','','','','','','','','','','','','','','','','','','A6','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Same as Nix','Y','','Y','','','','','Easy configuration management','Easy access to any packages I need in scripts that’s then portable and reproducible','Great rollback support','','Docker, k8s, Terraform and Ansible on Ubuntu and Arch Linux systems','Y','','','','','','','','','','sway','','',''),(1208,NULL,1,'en','417380383','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1209,'1980-01-01 00:00:00',5,'en','1278198542','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I kept hearing people saying how amazing Nix was on online forums like Reddit and HackerNews, and then tried myself.','Y','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A6','A5','','','','','','','','','','','','','',NULL,'Ansible','A4','','','','Y','','','','','','','','','','','','','','','','','','','A23','A24','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Things mostly work for me, and as such have not had the need to contribute much.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Heard NixOS evangelism on online forums like reddit and hackernews, decided to try for myself.','Y','','','','','','','Declarative Configuration','Rollbacks','','','Ansible','Y','','','','','','','','','','i3','nix-direnv, home-manager, nix-darwin','lorri',''),(1210,NULL,NULL,'en','355352224',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1211,NULL,NULL,'en','1306011672',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1212,'1980-01-01 00:00:00',5,'en','1587150329','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','N','N','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Already planned to test it',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1213,'1980-01-01 00:00:00',5,'en','1193214378','A2','A2','fem','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','A friend recommended it to me and it looked very promising. Now I\'m about 3 months in and I can\'t stop.','Y','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A6','A4','A14','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A1','A2','A5','A6','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','','','','','','','','','','Y','','','','','','','','','','Hyprland (wayland)','','',''),(1217,NULL,NULL,'en','1502222349',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1215,'1980-01-01 00:00:00',5,'en','991662989','A2','A2','-oth-','non binary','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1218,NULL,NULL,'en','1203598856',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1216,'1980-01-01 00:00:00',5,'en','99230780','A2','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I started to use Nix cause I switched to NixOS','','Y','','','','','Y','Y','','','Y','','','Y','Y','Y','Y','','','','A1','A7','A2','','','','','','','','A14','A6','A5','','','','','','','','','','','','',NULL,'Ansible ','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Being very new to nix and programming in general\r\n','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Doing what I want to do with ansible was starting to become painful, as well as me getting confortable with Arch on my PC and Fedora on my laptop','Y','','Y','','Y','','','Configuring all of my computers with a single file','Having multiple generations for rollbacks','','A way to declarably manage flatpaks and KDE','Ansible ','Y','','','','','','','','Y','','','','',''),(1219,NULL,1,'en','535842937','A2','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','N','N','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1220,'1980-01-01 00:00:00',5,'en','1394036202','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Switched to NixOS, which sort of requires using Nix from time to time.','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A7','A3','A10','','','','','','','','A14','A8','A3','','','','','','','','','','','','',NULL,'Arch, probably. With a lot of cabal sandboxing.','A4','','','','','','','','','','','','','','','Y','','','','','','','','A13','A7','A3','A4','A14','','','','','','','','','','','','','','','','','A13','A7','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Not familiar enough with Nix, and especially with good coding practices for Nix. Afraid I\'ll pollute the waters with bad code/waste people\'s time.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','Daily driver','A4','Been running linux on my daily driver since 2011, first Ubuntu and then Arch. Eventually got tired of things breaking in Arch -- dependency hell -- and went looking for alternatives. NixOS sounded like a good fit because I already had experience with functional programming in Haskell and OCaml. Tested it out, haven\'t looked back.','Y','','Y','','','','','Atomic updates & rollbacks (updates are safe)','Sandboxing (nix-shell) for development projects','Stable configuration','Add some helper tools to make packaging programs not already in nixpkgs easier, enough that I\'d have confidence in the code being good enough to contribute upstream','Arch','Y','','','','','','','','','','XMonad','','',''),(1221,NULL,1,'en','621144949','A2','A3','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1222,'1980-01-01 00:00:00',5,'en','1923966719','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Constantly breaking my installs because I like to tinker, nix let me mess around and have an easy way to restore things.','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A10','A2','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'I previously used Arch for about 4 years, but I switched to Nixos from about 6 months of Gentoo. ','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A21','A13','A6','A25','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don\'t think I know nix well enough to contribute well.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','already answered','Y','','Y','','','','','','','','nix-profile and nix-env don\'t really need to exist, flakes shouldn\'t be experimental either','gentoo','Y','','','','','','','','','','i3','direnv','','just wanna give my personal kudos to nobbz and gerg for being such great help in getting me started with nixos'),(1223,NULL,NULL,'en','1659253217',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1224,'1980-01-01 00:00:00',5,'en','419148510','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','Y','','','','','','','','Y','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A8','A6','A10','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A13','A22','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','Y','','','','','Declarative system configuration','','','','guix','Y','','','','','','','Y','','','','https://devenv.sh/\r\nhttps://github.com/nix-community/impermanence\r\nhttps://github.com/nix-community/home-manager','',''),(1225,'1980-01-01 00:00:00',5,'en','1107889043','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A1','A3','A7','','','','','','','','A4','A5','A9','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','Y','','','','','','','','','','','A4','A2','A3','','','','','','','','','','','','','','','','','','','A15','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Stuff works or I\'m not sure how to fix it','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','Config sharing between devices','Abstractions using options','Rollbacks','Add better firewall options,','Arch or derivate?','Y','','','','','','','','','','Xmonad, i3/sway','home-manager, sops-nix','',''),(1226,'1980-01-01 00:00:00',5,'en','1596971075','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','Y','Y','','','Y','','','','Y','Y','Y','','','','A1','A10','A7','','','','','','','','A12','A8','A2','','','','','','','','','','','','',NULL,'Homebrew, pacman, paru, custom shell scripts','A4','','Y','','Y','Y','Y','','','','','','','','','','','','','','','','','A2','A3','A15','','','','','','','','','','','','','','','','','','','A15','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','Y','','Y','','','Fearless tinkering','The ability to patch any package','Keeping configuration files in sync on all devices','','Arch Linux and macOS','','','','Y','','','','','','','Phosh','mobile-nixos, home-manager, simple-nixos-mailserver','',''),(1227,'1980-01-01 00:00:00',5,'en','1112201609','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Suggested by a coworker. Big draw for me was having reproducible system configurations (instead of managing dotfies with stow).','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A2','A1','A9','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'Probably a combination of stow and ansible.','A1','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Suggested by a coworker. The idea of programatically defining my system configuration was a big draw for me.','Y','','Y','','','','','','','','','Probably a combination of stow and ansible.','Y','','','Y','','','','','','','sway','','',''),(1228,NULL,NULL,'en','1246892307',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1230,'1980-01-01 00:00:00',5,'en','134958908','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Came from Debian with Puppet. Liked the power of declarative configuration. Loved the ability to roll-back mistakes.','','Y','','','','','Y','Y','','Y','','','','','','','Y','','','','A2','A7','A1','','','','','','','','A6','','','','','','','','','','','','','','',NULL,'Debian with Puppet','A7','','','','Y','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I do not yet comprehend how to build software with Nix, and nearly everything I want to use is already packaged.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','I can deploy software to a server, evaluate it, and roll back if needed. ','I can share configuration of the software on the server and either bring someone else up to speed or learn a better way, record that in the repository, and keep that benefit','','','Debian with Puppet','Y','','','Y','','','','','','','Sway','','',''),(1231,NULL,2,'en','278550445','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Dynamically generated dotfiles. I had started writing a templating enginge for config files and someone mentioned that it was similar to Nix. Turns out he was right and I love it.','','','','','','Only NixOS','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A9','A2','','','','','','','','A5','A9','A8','','','','','','','','','','','','',NULL,'My aforementioned self written config file templating engine.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','The perception of my current skill level. I\'ve been using Nix for about 4-5 weeks now. I don\'t feel totally ready for making \"production software\" yet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1232,NULL,1,'en','876391580','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1233,NULL,0,'en','1538118592','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1234,'1980-01-01 00:00:00',5,'en','1076458617','A8','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I wanted to move from Windows to Linux ever since Windows 11 came out. I was still on Win10 on my desktop, but Manjaro on my laptop.\r\nAs soon as I found out about NixOS in January I just knew that it was the one for me. Both for learning a new skill but also for easy configuration management.','','','','','','','Y','Y','','','Y','','','','','','Y','','','','A1','A2','A3','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'YAML I guess','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A1','','','','','','','','','','','','','','','','','','','A15','A1','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I wanted to fully switch to Linux from Windows, and as soon as I heard about NixOS I was sold.','Y','','Y','','Y','Y','','easy system configuration','easy reliability and rollbacks','once it builds it just works, no need to worry about future changes','A native GUI that live syncs with my configuration.nix that has live search for options and packages locally.\r\nAnd each option has documentation and resources to deep dive into any option for more details. (could just be a link to a documentation site, but that skips having to google search first. Go right to the relevant page from within the GUI.\r\nThis GUI also has a few wizards for different setups with specific scopes.\r\nThe GUI also can auto format configuration.nix so all similar items are grouped together. ( services = {}; etc, etc...)','Arch','Y','','','','','','','','Y','','','Home Manager','','Keep up the good work.\r\nPlease prioritize hiring documentation admin/management personal, someone who can design a clear path forward to unify all Nix documentation.\r\nAnd try to use a custom AI build that only knows Nix, Nixpkgs and NixOS that we can chat with that helps newbies and veterans alike.\r\n^ I think if an AI can read all the current Nix information and manuals, and we can ask questions that it can answer with links to more detailed pages that would be great.\r\nAlso, a native peer-to-peer cache sharing system builtin to NixOS and enable with an option, so we can share bandwidth and storage with others, saving foundation money and then hiring more documentation maintainers. Win, win, win.'),(1235,'1980-01-01 00:00:00',5,'en','1215682213','A7','A2','male','','Y','Y','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','Y','','','','','Y','Y','','','Y','','','Y','Y','','','Y','','','A1','A3','A8','','','','','','','','A1','A14','A5','','','','','','','','','','','','',NULL,'','A6','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','The difficulty to do so','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','','','','','','','','','','','','Y','','','','','','Y','','','','Nix for ubuntu','Using nixos mobile',''),(1236,NULL,NULL,'en','219236065',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1237,NULL,1,'en','1768533976','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1238,'1980-01-01 00:00:00',5,'en','1265579234','A2','A3','','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','Y','Developer, HPC','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','','','','A2','A10','A3','','','','','','','','A5','A2','A8','','','','','','','','','','','','',NULL,'Guix','A4','','','','','Y','','','','','','','','','','','','','','','','','gitea-action-runner','A4','A2','A15','A18','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','Declarative services','Upgrade rollback','Large repository','','GuixSD','Y','Y','','','','','','Y','','','','niv, mach-nix, nixpkgs-review','flakes',''),(1239,'1980-01-01 00:00:00',5,'en','1486910761','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','','','','A7','','','','','','','','Y','','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1240,'1980-01-01 00:00:00',5,'en','1622641183','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I\'ve searching for a tool to manage a server declaratively and than I\'ve stumbled in, including desk maschines.','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A4','A8','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A5','A2','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time and motivation to dive in','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I\'ve searching for a tool to manage a server declaratively and than I\'ve stumbled in, including desk maschines.','Y','','Y','Y','','','','Declarative sys-config','stateless system','large package base','I\'ve add sane defaults, clear error messages and a working printing setup.','','Y','','','','','','','Y','','','','','',''),(1241,'1980-01-01 00:00:00',5,'en','1151656356','A2','A3','male','','','','','','','','','','','Y','Y','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A9','','','','','','','','A8','A13','A4','','','','','','','','','','','','',NULL,'pacman','A1','','','','Y','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','try out new things','Y','','','','','','','declarative system configuration','reproducibility','','Add static typing to the nix language','Arch','Y','','','','','','','','','','hyprland','','',''),(1242,'1980-01-01 00:00:00',5,'en','869396596','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Some coworkers, who were functional programming fans, discovered NixOS and we took a gamble on launching a new internal service with it using Nixops. From there, we started converting more across other jobs and did things like make repeatable dev environments and eventually running an entire production service infrastructure on nixos with pre-baked AMIs in AWS.','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A2','A7','A1','','','','','','','','A8','A12','A6','','','','','','','','','','','','',NULL,'containers, oci or docker.','A4','','','Y','Y','Y','','','','','','','','','','','','','','Y','','Y','','A15','A2','','','','','','','','','','','','','','','','','','','','A1','A15','A2','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','With a team that was also new to NixOS, developed a small internal (java, webapp) service for the company. It was a vast improvement over the chef based automation that the company was previously using. The pre-existing setup required multiple services to be set up manually and upgrades and maintenance were similarly manual, if they ever happened. From there, I went from using a mixture Centos/Ubuntu strictly over to NixOS for all my server needs.','','Y','Y','Y','','','','atomic upgrade/downgrade','Single configuration source of truth, ie, configuration.nix','repeatability','Add: secrets implementation\r\nChange: a more stream lined disk image generation setup. Being able to craft a disk image/amazon image without needing to boot a VM for some specific setup.\r\n','Likely some other container driven system.','Y','','','','Y','Y','AWS AMI Generation','','','','','sops-nix, crane','nixops, deploy-rs','thanks for everyone\'s hard work. '),(1243,NULL,1,'en','769476694','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1244,'1980-01-01 00:00:00',5,'en','2141513834','A2','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','I heard about it from a colleague and I was hooked when I learned about how reproducible environments work with nix','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A10','A1','A6','','','','','','','','A9','A4','A14','','','','','','','','','','','','',NULL,'Docker','A4','','','','','Y','','','','','','','','','','','','Y','Y','','','','','A15','A3','A25','','','','','','','','','','','','','','','','','','','A15','A25','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','As I\'m working and studying in parallel, I find very little free time to do so','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','The one config file which can rebuild and \"persist\" the whole distro','Y','','','','','','','/etc/nixos/configuration.nix','Nix','','','I used Ubuntu and EndeavourOS and still do, while I\'m learning more about NixOS','Y','','','','','','','Y','','','Hyprland','','',''),(1245,'1980-01-01 00:00:00',5,'en','1904607291','A2','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','When I tried it for the first time years ago I didn\'t quite grasp it. Now I\'m on my second try, this time I\'m closer to grasping the idea, but still not there, yet....','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'Any Distribution, configured using Ansible.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I don\'t understand how everything fits toghether. Documentation is sparse.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Same as with Nix. Went to ConfMgmtCamp and decided to give it another try.','Y','','Y','','','','','Rollbacks','Declarative System Configuration','','I\'ll extend the documentation and replace the nix language with one with a larger user base. Elixir, maybe...','Ansible, Shell Scrips and such, most likely on Debian.','Y','','','','','','','','','','Sway','','',''),(1246,NULL,1,'en','934424884','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1247,'1980-01-01 00:00:00',5,'en','1534507824','A5','A4','-oth-','agender','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','Was having some significant problems with an Ubuntu build that kept locking up my laptop. I decided that it was time for a re-install and happened to be working with one of the Nixpkgs core maintainers, so I decided to give it a whirl. Now I hate going to a system where I don\'t have a single declarative configuration.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','','','','','','','','','','A14','A3','A5','','','','','','','','','','','','',NULL,'Fedora, Ubuntu, or some other mainstream OS.','A2','','','','Y','','','','','','','','','','','','','','','','','','','A3','A9','A15','A1','','','','','','','','','','','','','','','','','','A15','A1','A9','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','Nixpkgs is a calamity of unwritten standards and intensely hard to use tools. The only package that I\'ve contributed in recent memory was a bundle for a commercial application, which requires blessedly little of the Nix tooling.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I started using it at exactly the same time that I started using Nix.','Y','','Y','','','','','System environment defined in a single small group of files','Development shells','','','Fedora, Ubuntu, or some other mainstream OS.','Y','','Y','','','','','Y','','','sway, hyprland','','Every single tool related to building source code. crate2nix, cargo2nix, carnix, buildRustCrate, buildRustPackage, npm2nix, node2nix, buildNodePackage, and so forth.','Please focus on making language-specific tooling consistent. Please focus on making the documentation better. There\'s a huge, vast swath of documentation, and almost all of it is wrong. There\'s rarely reference documentation, and the examples provided seem to always require an overwhelming amount of complexity to do what should be simple things, such as \"hey, I want to use this particular version of my compiler in this expression\".'),(1248,NULL,NULL,'en','168914849',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1249,'1980-01-01 00:00:00',5,'en','1541042191','A2','A3','male','','','','','','','Y','','','','','','','','','Y','Y','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','Tired of syncing all my home configurations across systems.','','Y','','Y','','','Y','Y','Y','','','Y','','Y','Y','','Y','','','','A1','A2','A10','','','','','','','','A8','A2','A13','','','','','','','','','','','','',NULL,'','A1','','Y','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A15','A17','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1250,'1980-01-01 00:00:00',5,'en','396649428','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','HelpDesk Tech','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Distro-hopped from another Linux distribution to see what all the hype was and ended up converting all of my Linux machines to NixOS due to its stability and reproducibility of build.','','Y','','','','','Y','','','','','','','','','','Y','','','','A7','A10','A1','','','','','','','','A10','A14','A5','','','','','','','','','','','','',NULL,'','A4','','','Y','','','','','','','','','','','','','','','','Y','','','','A9','A2','A15','','','','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Working on becoming a better programmer. Might contribute someday.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Heard about it and wanted to see what all the fuss was about.','Y','','','','','','','Stability','Reproducibility of builds','Large repository of software','Nothing that I can honestly think of.','Ubuntu','Y','','','','','','','','Y','','','N/a','N/a','I love NixOS so far, and I’m learning more about it on a daily basis. Thank you for all of your hard work and dedication!'),(1251,NULL,1,'en','1811907530','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1252,'1980-01-01 00:00:00',5,'en','1686668866','A1','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I need a declarative and stateless system configuration tool, so I start using Nix.','','Y','','','','','Y','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','A5','A9','A2','','','','','','','','A11','A12','A8','','','','','','','','','','','','',NULL,'Guix','A2','','Y','','Y','Y','Y','','','','','','','Y','','Y','','','','Y','','','','A15','A13','A3','A4','A2','A1','A9','A25','','','','','','','','','','','','','','A13','A2','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I need a stateless and declarative system configuration tool, so I started using NixOS.','Y','Y','Y','Y','Y','','','Declarative and reproducible','Cross-compilation','Automatic update and rollback','Something like `mkRemove` to remove a value from a list option.\r\n\r\nBetter error message. ','GuixSD','Y','','','Y','','','','Y','','','','nix-direnv, lanzaboote, nil, nix-index, ...','',''),(1253,'1980-01-01 00:00:00',5,'en','169124474','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A7','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','Y','','Y','','','','Y','','','','A15','A3','A5','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','','','','','','','','','llvm stdenv with llvm binutils and lld by default :)','Gentoo or Arch or Fedora','Y','','','','','','','','Y','','','','',''),(1254,NULL,1,'en','265109538','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1255,NULL,2,'en','1420470971','A1','A3','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','iOS ','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I got tired of maintaining Arch installations.','','Y','','','Y','','Y','','Y','','','','','Y','Y','Y','Y','Y','Y','','A2','A3','A10','','','','','','','','A12','A9','A13','','','','','','','','','','','','',NULL,'I refuse to live in that world.','A3','','Y','','Y','Y','Y','','','','','','','Y','','','','','','Y','','','','A7','A15','A17','A23','A24','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1256,'1980-01-01 00:00:00',5,'en','1379892399','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A1','A2','A7','','','','','','','','A8','A12','A4','','','','','','','','','','','','',NULL,'','A3','','Y','','Y','Y','Y','Y','','','','','','','','','','','','','','','','A2','A3','A4','A5','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','Y','','','','','','Hyprland','https://github.com/utdemir/nix-tree','',''),(1257,'1980-01-01 00:00:00',5,'en','1290708875','A1','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I love functional programming, and love Haskell the programming language, and there is friends tell me that NixOS is pure and reproducible and declarative, that\'s exactly what I want.','','Y','','Y','','','Y','Y','Y','','','','','','Y','','Y','','','','A6','A1','A2','','','','','','','','A10','A4','A6','','','','','','','','','','','','',NULL,'apt','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A2','A15','A1','A17','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','same as nix','Y','','Y','','','','','declarative','reproduciable','many software are ready in nixpkgs','1. make NixOS more security. (enable FDE & TPM & SecureBoot by default)\r\n2. GUI configurable.\r\n3. better AMD CPU & iGPU support. (can be used without problems directly without extra config)\r\n','Windows','Y','','','','','','','','Y','','','','',''),(1258,'1980-01-01 00:00:00',5,'en','943381999','A1','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','Y','','','','','Y','Y','','Y','','','','','Y','Y','','','','','A2','A3','A10','','','','','','','','A5','A13','A3','','','','','','','','','','','','',NULL,'guix','A1','Y','','','Y','Y','','','','','','','Y','Y','','','','','','','','','','A7','A15','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1259,'1980-01-01 00:00:00',5,'en','857615750','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','','','','','','Y','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A1','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1260,'1980-01-01 00:00:00',5,'en','1515847189','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A20','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','replace Nix with a mature functional programming language','Guix','Y','','','','','','','Y','','','','','',''),(1261,NULL,3,'en','826030534','A2','A2','male','','','','','','','Y','','','','Y','','','','','','','','','','','','Y','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A1','I started using Nix / NixOs because my friend recommended I should give it ago and said he would help me use it. ','','','','Y','','','Y','Y','','','','','','','','','Y','','','','A1','A6','','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Fedora Workstation','A2','','','','Y','','','','','','','','','','','','','','','Y','','','','A1','A9','A15','','','','','','','','','','','','','','','','','','','A1','A9','A15','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Time','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A1','My friend suggested I should use NixOs and said he would help me with it. ','Y','','Y','','','','','Reproducibility ','','','I don\'t know','Fedora workstation or MacOs','Y','','','','','','','Y','','','',NULL,NULL,NULL),(1262,'1980-01-01 00:00:00',5,'en','1684154354','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Convenient to have recent versions of programs.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A1','A2','A7','','','','','','','','A9','A8','A5','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A25','A13','','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The declarative nature and ease of adapting things.','Y','','','','','','','Declarative','Flexible (add patch to kernel, ...)','Community open to accept contributions','I\'d much prefer to use a proper programming language rather than an ad-hoc primitive one like nix (modules, data structures, ...)','Guix or another Linux distribution','Y','','','','','','','Y','','','','','',''),(1263,NULL,1,'en','1133810786','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1264,'1980-01-01 00:00:00',5,'en','1233219453','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Composer/Musician','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I wanted to stabilize my setups for live-electronics music (e.g. music software like Pure data, etc.).\r\nOften live-electronic setups are difficult to maintain and messy,\r\nbut for the performance they need to be super-stable.\r\nSo i thought nix would be a better for me to handle those cases.','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','','A1','A3','A2','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'buildout (https://github.com/buildout/buildout) on Debian','A4','','','','','','','','','','','','Y','','','','','','','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Time, Lazy','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','easy integration sound from nix-shell environment to host (e.g. if I start \"nix-shell ...\" and I run a music program like REAPER and I play music with this I can directly listen to the music. If, on the other hand, I use \"nix-shell...\" on another distribution like Debian, this doesn\'t work out of the box)','','','','Debian + buildout','Y','','','','','','','','','','Awesome WM','niv','',''),(1265,NULL,2,'en','1209546152','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A3','A8','A4','','','','','','','','','','','','',NULL,'Guix','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A15','A3','A11','','','','','','','','','','','','','','','','','','A13','A15','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1266,NULL,2,'en','1671396391','A5','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','NixOS was reviewed by one of my favorite Linux youtubers and I wanted to check it out. After learning about the configuration.nix I found it similar to Yaml that I use for Ansible and started down the rabbit hole.','','Y','','','','','Y','Y','','','','','','Y','','','Y','','','','A1','A2','A4','','','','','','','','A14','A10','A5','','','','','','','','','','','','',NULL,'Nobara or Nitrux','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I am an administrator not a programmer and I am just learning nix',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1267,'1980-01-01 00:00:00',5,'en','1846047880','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','Y','','','A1','A2','A7','','','','','','','','A8','A9','A3','','','','','','','','','','','','',NULL,'guix','A4','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A9','A15','A1','A2','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','its not flakes ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','Y','','','','declarative system config','customizing packages','rollback','','guix','Y','','','','','','','Y','','','sway','','',''),(1268,'1980-01-01 00:00:00',5,'en','625378065','A2','A3','male','','','','','','','','','Y','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I was introduced to it because many Haskell libraries use Nix (in particular the library Reflex FRP), and I stuck with Nix because I think it solves important problems that few other package managers even attempt to tackle.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','Y','','','A2','A3','A1','','','','','','','','A5','A4','','','','','','','','','','','','','',NULL,'Then I would probably just be using a mainstream package manager which doesn\'t do a good job of automating deployment, as I did before.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A15','A25','A2','A4','A5','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of understanding of Nix/Nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I was already using Arch, so when I started using Nix, there wasn\'t any reason for me not to switch to NixOS, as the distro I tended to use didn\'t offer much beyond its package manager.','Y','','','','','','','Declarative host configuration','','','','','Y','','','','','','','','','','i3','','',''),(1269,'1980-01-01 00:00:00',5,'en','1600534638','A2','A3','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','No more dependency hell','','Y','','Y','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Something like docker','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A5','A9','','','','','','','','','','','','','','','','','','','A15','A5','','','','','','','','','','','','','','','','','','','','','','','','A1','','Experience and a better understanding of the nix language','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Distro hopping and the configuration in one file and the reproducibility were a great feature so I stayed','Y','','','','','','','One config for all the system ','Generations','Reproducibility ','Nothing for now. I don\'t have enough experience to have an opinion on this subject ','Arch or min depending on the usage','Y','','','','','','','Y','','','','Home manager','','Nixos is great 😃'),(1270,'1980-01-01 00:00:00',5,'en','176475063','A2','A4','male','','','','','','Y','Y','','Y','','','','','','','','Y','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Because it looked like a decent solution at the time.','Y','Y','','','','','Y','Y','','Y','','Y','','','Y','Y','Y','','','','A4','A6','A5','','','','','','','','A3','A2','A1','','','','','','','','','','','','',NULL,'','A2','','','','','','Y','Y','','','','','','','','Y','','','','','','','custom systemd units, good enough','A15','A1','A2','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','','','custom package sets that define new scopes','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','','','','','','Y','','Y','','','Y','','Y','','','','','',''),(1271,NULL,2,'en','477343451','A5','A2','male','','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I saw hlissner on github use NixOs and then tried it!','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'I don\'t know','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A3','A4','A22','A9','A17','A13','A5','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','Complexity of certain packages.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1272,NULL,NULL,'en','212184842',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1274,'1980-01-01 00:00:00',5,'en','1514869034','A8','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Reproducible NixOS config','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','Y','','','A2','A7','A8','','','','','','','','A8','A5','A9','','','','','','','','','','','','',NULL,'Possibly Guix','A7','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Not enough time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Fully reproducible OS without any configuration drift and the ability to configure everything within Nix','Y','','Y','','','','','','','','Remove all reference to nix channels, only have nix flakes in documentation. Better Kubernetes support. Better declarative VM support.','Guix','Y','','','','','','basalt','','','','Hyprland','Home manager','',''),(1275,'1980-01-01 00:00:00',5,'en','1048875701','A3','A2','-oth-','Non-binary transfem','','','','','','','','','','','','','','','','','Y','','','','','Y','','Developer for fun','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','Liked the idea of an OS configured with a file','','','','','','','Y','','','','','','','Y','','','Y','','','','A1','A9','A7','','','','','','','','A7','A3','A9','','','','','','','','','','','','',NULL,'Arch','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','A1','A15','','','','','','','','','','','','','','','','','','','','','','','A1','','I don\'t want to','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I liked the idea of an OS configured with files','Y','','','','','','Home computer','Configurability with a file','Configurability with a file','Configurability with a file','Easy syncing of the configuration with an online file storage (git, or some other service)','Arch','','','','','','','Don\'t','','Y','','','None','None\r\n',''),(1276,NULL,1,'en','1481000423','A5','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1277,'1980-01-01 00:00:00',5,'en','1566019934','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I think I saw NixOS on Hacker News once, and I was tired of Gentoo\'s issues with the package manager.\r\nTried NixOS, loved the concepts behind NixOS, then loved the concepts behind Nix.\r\nUsed it more and more, participated in nixpkgs to fix the issues I stumbled upon (because it was so easy to participate), and then became maintainer of several packages.\r\nIntroduced Nix, then NixOS at work, because its reproducibility guarantees are very interesting for our very long / very stable projects (20~30 years). We\'ll see over time how that goes in the long run, we\'re still in a transition phase.','','Y','','Y','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','','Y','Caching software sources','A7','A1','A6','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'Manual packaging for work? Not sure','A7','','','','Y','Y','','','','','','','','Y','','','','Y','','','','','','A4','A3','A2','A5','A15','A17','A25','','','','','','','','','','','','','','','A5','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','Y','','Configuration as code','Reproducibility','Multiple types of outputs (e.g. toplevel, container, VM, netboot)','Documentation (guides, tutorial, explanations) for every module.\r\nHardened systemd services (but supported upstream).\r\nBetter support for embedded devices (e.g. U-Boot, more cross-compilation tests for packages)','Eh, probably Debian or something for work? Maybe Arch for development machines?','Y','','','','','','','Y','','','sway','home-manager\r\nnixos-hardware','','Thanks a lot! <3'),(1278,'1980-01-01 00:00:00',5,'en','1629686105','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','Y','','A1','I started using Nix because I liked the version management and package management capabilities it offered. I needed it to install a private package, and I really appreciated how the operating system functioned.','Y','Y','','','','','','Y','Y','Y','','Y','','Y','Y','Y','Y','','Y','','A7','A6','A2','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'I don\'t know ','A4','','','','','','','','','','','','','','','','','Y','','','','','','A2','A6','A1','A9','A3','A10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A2','I started using NixOS because I heard a lot about it. People mainly talked about the quality of NixOS configuration and how it could be beneficial for my projects. So, I gave it a try, and I really liked it. Now, I try to implement it as much as possible whenever I can, although I\'m not completely comfortable with Nix yet.','','Y','Y','Y','','Y','','','','','','','Y','','','','','Y','','','','','none','','',''),(1279,'1980-01-01 00:00:00',5,'en','1199457658','A5','A2','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Migrated from Arch. Was fascinated by reproducibility of system configuration and ability to configure entire system through an organized set of configuration files.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'Arch Linux and pacman','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A25','A1','A2','A3','A5','A9','A15','','','','','','','','','','','','','','','A2','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Extensively reproducible/declarative system configurations','Y','','Y','','','','','Nix flakes system configuration ','Nix-shell / nix develop project environment configuration ','Large nixpkgs library with easy ability to contribute through GitHub ','- stabilize a lot of experimental features\r\n- provide more thorough documentation of nix language capabilities','Arch Linux','Y','','','','Y','','','','','','Hyprland','Home-manager\r\nImpermanence\r\nColmena\r\nSops-nix\r\nMicrovm\r\nLanzaboote\r\n','Simple-nixos-mailserver\r\nNixops',''),(1280,NULL,NULL,'en','1654804526',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1281,NULL,NULL,'en','374126033',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1282,NULL,1,'en','504906987','A2','A3','-oth-','','','','','','','','','Y','','Y','','','','','','','','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1283,'1980-01-01 00:00:00',5,'en','1037741867','A5','A1','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','When I started using NixOS, I also began using Nix. I really enjoyed it because there were fewer problems with compatibility between packages, and I could very easily get a development environment up and running.','','Y','','','Y','','Y','Y','','','','Y','','','Y','Y','Y','','Y','','A2','A7','A10','','','','','','','','A2','A7','A5','','','','','','','','','','','','',NULL,'I could answer Guix, but that would be cheating. Maybe direnv could work?','A4','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','A2','A3','A1','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I contribute occasionally to smaller Nix-based projects, like home-manager, but I am not sure where to get started with Nixpkgs. I suppose I have not looked into it too much yet.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I heard that it could be configured declaratively, so I wanted to try it. Then, I switched over to it as much as I could because it was so much more convenient.','Y','','Y','','','Y','','Declarative configuration','Pushing configurations to remote servers','Rollbacks','','I could answer Guix, but that would be cheating. Maybe Git and a hand-written activation script.','Y','Y','','','','','','Y','','','sway','home-manager, fenix','deploy-rs (I just couldn\'t get it working, so I stuck with NixOps)',''),(1284,NULL,0,'en','1591146454','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1285,NULL,NULL,'en','211319812',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1286,'1980-01-01 00:00:00',5,'en','1061277384','A2','A3','male','','','','','','','','Y','','','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was impressed by \r\n\r\nservices.XYZ.enable = true/false; being everything you need to do\r\n\r\nI wanted to have the same programs and settings on my pc\'s.\r\n\r\nI didn\'t want to reinstall computers just because I fucked up installing a driver.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A8','','','','','','','','','','','','','',NULL,'I don\'t know how I could live without it.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A2','','','','','','','','','','','','','','','','','','','','A4','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','The only things i packaged up till know are a bit hacky or concern proprietary code of my company','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','i3wm','','',''),(1287,'1980-01-01 00:00:00',5,'en','442487778','A5','A6','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Retired','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Loved the stability and reproducibility of NixOS.','','','','','','','Y','','','','','','','Y','','','Y','','','','A7','A10','A1','','','','','','','','A8','','','','','','','','','','','','','','',NULL,'Portage','A4','','','','','','','','','','','','','','','','','','','','','','','A3','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','See Nix answer to same question.','Y','','','','','','','stability','reproducibility','declarative configuration','still trying to get my head around flakes and home manager. Perhaps more tutorials on how to accomplish common tasks - of course once flakes is stable.','Guix? Although their rigid licensing turns me away for now. I\'ve used Gentoo for years so I might go back. ','Y','','','','','','','','','','Dwm and i3. ','N/a','n/a',''),(1288,'1980-01-01 00:00:00',5,'en','934205274','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','I have used it years ago at a prior company but recently revisited it due to the Fleek project. I’m now working on going deep into Nix so I can use it for software builds. ','Y','','','','','','Y','','','','','','','Y','Y','Y','','','Y','','A1','A2','A3','','','','','','','','A9','A4','A3','','','','','','','','','','','','',NULL,'macOS, including homebrew, and Docker for deployments. ','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A2','','I did once and would like to again. Just the knowledge barrier keeps me from being more active, as well as family obligations.','N','Y',NULL,'I switched to a Mac, and the Nix knowledge barrier.','Having an available computer on which to run it, which I may have soon.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I love Nix and appreciate all the effort you all put into it! I would absolutely love to see more said about how a proper Nix build out into a Docker image is essentially a FROM SCRATCH Docker image for *any* language. '),(1289,NULL,2,'en','1137987952','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','Fun','A1','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A14','A6','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A2','A9','A15','','','','','','','','','','','','','','','','','','','A15','A9','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Since Nix is so unique, there is significantly less information out there, and I find the learning curve quite steep. So better learning resources would be much appreciated.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1290,NULL,3,'en','1234993898','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1291,NULL,2,'en','25474399','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','NixOS installed as server','','Y','','','','','','Y','','','','','','Y','','','Y','','','','A2','A1','A10','','','','','','','','A8','A4','A3','','','','','','','','','','','','',NULL,'Puppet or Saltstack','A5','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1292,'1980-01-01 00:00:00',5,'en','2035840194','A2','A3','male','','Y','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','NixOS >>> Ansible -> For serverhosting','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'','A7','','','Y','Y','Y','','','','','','','','','','','','Y','','','','','gitea-ci','A9','A15','A3','A4','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Lack of time.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','NixOS >>> Ansible -> for server hosting','Y','Y','Y','Y','','','','Reproducible','Declarative','','Maybe add better documentation and file templating similar to python\'s jinja2.','Unfortunately, Ansible or Saltstack','Y','','','Y','','','','','','','sway','','',''),(1293,NULL,2,'en','1197599073','A2','A3','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','I got tired of blowing up my configs and my system to be in an unusable state and not being able to go back to a good state.','','Y','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A3','','','','','','','','A5','A14','A9','','','','','','','','','','','','',NULL,'Ansible most likely, although I am not thrilled by it.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','A10','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Pretty new to the scene, but maybe in the future',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1294,'1980-01-01 00:00:00',5,'en','1958522161','A4','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A2','A10','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'Guix','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A22','A1','A15','','','','','','','','','','','','','','','','','','','A22','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','Whole-system declarative configuration','','','Support for other init systems','Guix','Y','','','','','','','','','','Sway','','',''),(1295,NULL,1,'en','441332096','A2','A3','male','','','','','','','','','Y','','Y','Y','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1296,'1980-01-01 00:00:00',5,'en','1287426372','A2','A3','male','','','','','','','','','Y','','Y','Y','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Declarative, reproducible systems and packages with rollback is very powerful and appealing.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A7','A2','A10','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'A standard distro with scripts.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A6','A3','A2','','','','','','','','','','','','','','','','','','A15','A6','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time to polish code.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Reproducible system with rollback, extensive package repository.','Y','','Y','','','','','Reproducibility','Configurability','Rollbacks','I\'d make everything more consistent and intuitive, with one obvious way of doing things: flakes, nix command, standard guidelines on how to structure configuration/package code.','Debian or Arch.','','','','','','','','Y','','','berry','','',''),(1297,'1980-01-01 00:00:00',5,'en','1879600470','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A7','','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A7','A2','A3','','','','','','','','A14','A9','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A1','','','Y',NULL,NULL,NULL,NULL,'A4','Y','Y','','','A1','','Y','','','','','','','Reproducible builds of my Computer','Atomic Commits and Rollbacks','Configuring packages via configuration file','','','Y','','','','','','','','','','Sway, Hyprland','','',''),(1298,'1980-01-01 00:00:00',5,'en','966007176','A8','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Needed a stable Linux desktop OS. Tired of atp-get breaking constantly. ','Y','Y','','','','','Y','','Y','','','','','','Y','Y','Y','','','','A1','A2','A9','','','','','','','','A3','A8','A5','','','','','','','','','','','','',NULL,'PopOS','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','Y','','A1','A15','A5','','','','','','','','','','','','','','','','','','','A5','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I don\'t know enough about the conventions used in nikpkgs. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I got tired of apt-get on Ubuntu being unreliable and lacking packages. \r\nI have had servers and desktops get into a broken state because atp crashes, fills up /boot, or the repo URLs gets taken down.\r\nI also got tired of needing to manually edit random files in /etc, each with their own special syntax. \r\nBeing able to put everything in one place configuration.nix and have it set everything up correctly is amazing.\r\nMoving to new hardware now is just a matter of copy pasting configuration.nix over.','Y','Y','Y','','','','','The safety and simplicity of configuring everything in one place ','Using flakes to get a shell that has the correct versions of the build tools that I can share with other devs.','The amazing availability of packages in nixpkgs, no need to install random third party repos.','configuration.nix for user level config. Its annoying to need sudo to add packages to my user profile, and I would like to avoid using nix-env.\r\nNix-env in general should probably be removed, it goes against the declarative idea that Nix has. \r\n\r\nBetter OS defaults for desktop users, like setting up polkit to allow non root users to mount USB drives and hidraw access so apps like Via/QMK can configure keyboards.\r\nAlso setting sysctl vm.dirty_bytes to a lower value. Enabling SANE and NTFS support. Maybe setup EarlyOOM\r\n\r\nWould be nice if the installer GUI could configure a static IP address.','PopOS, maybe Arch','Y','','','','','','','','Y','','','','dream2nix its a cool idea but I found it was too magical and difficult to understand how it works.\r\nMost of the *2nix packages are in various states of disrepair, a lot of fragmentation. ','Nix is really an amazing project, I think its one of the most important projects in the Linux ecosystem. keep up the good work.'),(1299,NULL,1,'en','1660397936','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1300,'1980-01-01 00:00:00',5,'en','1204842927','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','Y','','Y','Y','','','','','','','Y','','Y','','','arion','A1','A8','A3','','','','','','','','A4','A2','A6','','','','','','','','','','','','',NULL,'Docker, Arch Linux','A2','','','','Y','Y','','Y','','','','','','','','','','','','','','','','A6','A12','A2','','','','','','','','','','','','','','','','','','','A6','A12','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Atomic upgrades','Unified language for building packages and configuring OS','Reproducibility and software isolation ','I would add Build phases caching to reduce iteration time during package derivation development - e.g. don\'t rebuild package from scratch when all I do is just fixing test or install step','Arch Linux','Y','','','','','','','','Y','','','Arion, nixpkgs-review, nix-tree, home-manager, Nix User Repository','',''),(1301,'1980-01-01 00:00:00',5,'en','564510635','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','found out about it from a podcast, was intrigued about the reproducibility of systems.','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A1','A7','A2','','','','','','','','A8','A6','A14','','','','','','','','','','','','',NULL,'probably ansible, dotfile managers and other tools.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','not confident enough packaging software that others may use.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','found out about it from a podcast','Y','','Y','','','','','reproducibility ','amount of packages','atomic rollbacks','i would like better ways to find what I\'m looking for, documentation wise. ','probably another immutable OS with probably a bunch of arch containers.','Y','','','','','','','','Y','','sway','','',''),(1302,'1980-01-01 00:00:00',5,'en','1401446509','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A10','A3','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A2','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','sway','','',''),(1303,'1980-01-01 00:00:00',5,'en','1436163109','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Jupiter Broadcasting suggested NixOS. I found NixOS had better reliability of the OS vs. Arch Linux and Ubuntu.','','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Ansible, Arch and/or Ubuntu.','A4','','','','Y','','','','','','','','','','','','','','','','','','','A13','A2','A9','','','','','','','','','','','','','','','','','','','A13','A15','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Jupiter Broadcasting had some great shows about NixOS and I tried Nix-Bitcoin which worked great for running a Bitcoin node.','Y','','Y','','','','','Stable environment','Easy to maintain','Declarative environment','Better support for remote building environments over SSH with nixos-rebuild. Or documentation on what to use instead of nixos-rebuild.','Ubuntu and/or Arch with Ansible.','Y','','','','','','','Y','','','','Nix-Bitcoin','Nixos on WSL i don\'t use much. I only used it to play around with.','Thanks!'),(1304,NULL,1,'en','1150872026','A8','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1305,'1980-01-01 00:00:00',5,'en','499640805','A3','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','declarative','','','','','','','Y','Y','','','','','','','','','Y','','','','A2','A1','','','','','','','','','A5','A4','A7','','','','','','','','','','','','',NULL,'guix','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','lazy bastard','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Declarative','Y','','Y','','','','','Declarative configuration','','','Good Docs, first class Flatpak support','Guix','Y','','','','','','','Y','Y','','','','','To whichever grand and intoxicated being may have created nix, good job, it sure is declarative.'),(1306,NULL,NULL,'en','783708468',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1307,'1980-01-01 00:00:00',5,'en','1401008924','A4','A3','-oth-','Agender','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I just saw some people using it on reddit, got curious about it, and ended up addicted to it.','','Y','','','Y','','Y','','Y','Y','Y','','','Y','Y','Y','Y','','','','A7','A2','A3','','','','','','','','A5','A13','A14','','','','','','','','','','','','',NULL,'Default distributions package manager or docker','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','A22','A17','','','','','','','','','','','','','','','','','','A15','A22','A9','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Nix language','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I just saw some people using nixos and i just got curious\'','Y','','','','','','','Rollbacks','Declaritive way of defining system','Adhoc environments','Make the language more accessible.','Arch or fedora silverblue','Y','','','','','','','','','','Riverwm','','','♥️'),(1308,'1980-01-01 00:00:00',5,'en','501503297','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','','Y','','','','','Y','','','','','','','','','Y','','','','','A1','A2','A3','','','','','','','','','','','','','','','','','','','','','','',NULL,'','A7','','','','Y','','','','','','','','','','','','','Y','','','','','','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1309,'1980-01-01 00:00:00',5,'en','850423904','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','','','','','','Y','Y','Y','Y','','','A2','A1','A5','','','','','','','','A8','A9','A2','','','','','','','','','','','','',NULL,'apt, docker','A4','','','','Y','Y','','','','','','','Y','','','','','Y','','','','','','A2','A15','A21','','','','','','','','','','','','','','','','','','','A21','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','','','','','','Y','','','','','Y','','','','','i3','NixOS-Compose (https://github.com/oar-team/nixos-compose)','',''),(1310,NULL,1,'en','439189007','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1311,NULL,NULL,'en','1117497243',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1312,'1980-01-01 00:00:00',5,'en','101739091','A2','A3','male','','Y','','','Y','Y','','','','','Y','','','','','','','Y','','','Y','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Reproductible software environments for reproducible research. Control and share environments with dev teams and CI machines','','Y','','','','','Y','','Y','','','','HPC clusters, expérimental testbeds (Grid\'5000)','Y','Y','Y','Y','Y','','','A2','A3','A1','','','','','','','','A9','A2','A8','','','','','','','','','','','','',NULL,'No sane alternative AFAIK','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A4','A15','A3','A21','A2','','','','','','','','','','','','','','','','','A15','A21','','','','','','','','','','','','','','','','','','','','','Y','','Maitaining a NUR','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Rollbacks. Low user maintenance time cost. Avoid package redundancy with Nix','Y','Y','','','','','Expérimental testbeds (Grid\'5000)','Rollbacks','High level abstract system definition','Reproducibility (experiments on distributed systems)','Cache R packages. Build cache (fix ccache, improve Nix/Cargo integration)','Archlinux','','','','','','','NixOS Compose','','','','i3','','',''),(1313,'1980-01-01 00:00:00',5,'en','378941497','A2','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','Y','','','','A7','After a nix workshop given by a colleague','','Y','','','','','Y','','','','','','','Y','','Y','','','','','A3','A6','A10','','','','','','','','A10','A3','A5','','','','','','','','','','','','',NULL,'Docker','A7','','','','','','','','','','','','','','','','','','','','','','','A1','A6','A5','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','There is a person dedicated to Nixpkgs in our service','N','Y',NULL,'I\'m 90% of the time using windows','Installing linux server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1314,'1980-01-01 00:00:00',5,'en','860504288','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Raito_Bezarius converted me','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A3','A7','','','','','','','','A9','A4','','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','','','','','A2','A13','A22','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I\'ve never had the occasion to publish a package','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Raito_Bezarius converted me','Y','','Y','','','','','Declarative','Every stateless information in one place','','Because I\'m trying to do that now : ability to put an evaluated config in nixos-tests and more generally a better support at testing entire configd for nixos-tests (for instance to check that you won\'t loose the ssh connectivity from your server)','No idea','Y','','','','Y','','','','','','Sway','','','Nix/NixOS/Nixpkgs is awesome'),(1315,NULL,3,'en','948341585','A2','A4','male','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','','','N','N','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','a geek in my team forced me',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1316,'1980-01-01 00:00:00',5,'en','1602736957','A4','A1','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','ı was checking on c-plus-plus tag on github then i stumbled Nix over there','','Y','','Y','Y','','','','','','','','','Y','Y','Y','Y','','Y','','A1','A2','A7','','','','','','','','A10','A13','A8','','','','','','','','','','','','',NULL,'Probaly just a regular manager like apt or pacman','A4','','','','Y','Y','','','','','','Y','Y','','','','','','','','','','','A15','A4','A1','','','','','','','','','','','','','','','','','','','A15','A2','A9','','','','','','','','','','','','','','','','','','','','','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Casual','A1','I really liked the idea of declaring the OS in a single file and stability','Y','','','','','','','Declarative Configuration','','','ı would change Nix language\'s syntax','Arch Linux','Y','','','','','Y','','Y','','','','Vix','Home Manager',''),(1317,'1980-01-01 00:00:00',5,'en','1316135182','A5','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','','','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A8','A3','A12','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A13','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','','','','','','Declarative, deterministic build of entire build','Uniform configuration of services','Easier to version control','Better error messages and stability between updates.','Idk','Y','','','','','','','','','','None (Sway)','Home manager','Julia support',''),(1318,'1980-01-01 00:00:00',5,'en','1905714385','A5','A1','male','','','','','','','Y','Y','Y','Y','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I started using nix it cuz my dad told me about it.','','Y','','','Y','','Y','Y','','','Y','','','','Y','Y','Y','Y','Y','','A2','A10','A1','','','','','','','','A8','A5','A4','','','','','','','','','','','','',NULL,'Guix maybe','A7','','Y','Y','Y','Y','','','','','','','','Y','','','','','','Y','','','','A15','A3','','','','','','','','','','','','','','','','','','','','A6','A9','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Some guy showed me some cool stuff he did with his dotfiles so I tried NixOS.','Y','','Y','','','','','System configuration','System rollback','Nix integration','I would make rebuilds faster','Guix maybe','Y','','','','','','','','','','Hyprland','Home Manager','',''),(1319,'1980-01-01 00:00:00',5,'en','731747466','A2','A4','male','','','','','','Y','','Y','Y','','Y','','','Y','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','@Mic92','','Y','','','Y','MicroVMs','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','Y','','A2','A7','A1','','','','','','','','A8','A6','A11','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','Y','','Y','','Y','','','','A15','A2','A13','A24','','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','@Mic92','Y','Y','Y','Y','','Y','','Declarative configuration','Rollback','Image generation','Make Flakes stable','Debian','Y','','','','','Y','','','','','Sway','microvm.nix, deadnix, nix-openwrt-imagebuilder, niv, nix-tree, statix','home-manager',''),(1320,'1980-01-01 00:00:00',5,'en','1600214153','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','Y','','','Y','','','','','','','Y','','','Y','','','','','','','','','','','','','','A5','A9','A4','','','','','','','','','','','','',NULL,'','A1','','','','','','','','','','','','','','','','','','Y','Y','','','','A2','A24','','','','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1321,'1980-01-01 00:00:00',5,'en','311328739','A5','A5','male','','','','','','','Y','','Y','','Y','','','','','','','Y','','','','Y','','','','','','','','','nixOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','nothing but nixos','A2','Moving to open source and establishing a reliable steps towards a configurable OS that i love across all of my machines. ','','','','','','only nixos','Y','','','','','Y','','Y','Y','Y','Y','Y','Y','','A10','A2','A9','','','','','','','','A14','A3','A6','','','','','','','','','','','','',NULL,'ArchLinux, OSX and Windows as before. ','A1','','','','Y','','','','','','','','','','','','','','','','','','Would love to use Hydra for sky360 but need help establishing bootstraping it','A15','A3','A4','A2','A9','A25','','','','','','','','','','','','','','','','A15','A4','A2','','','','','','','','','','','','','','','','','','','','Y','','i still don\'t fully capture it as it feels a hack, i try my best to contribute to packages','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','reliability of my systems over years to come','Y','','','','','','','reliability (Reproducible)','Configuration Management','User Experience via source control','Dev tools are a key for me , is struggle with discovering all the options for everything, Specifically for hardware reliable configuration such as laptops. ','ArchLinux, OSX , Windows as before','','','','','','','I haven\'t gotten to it yet unfurtuannly','','','','Hyprland','','','I\'m trying to get help for sky360.org and how to setup our builds. Will really appreciate help with mentoring on that as well as mentor feedback on my own flakes . I find after a year it became very messy and still not single share across my systems.\r\n\r\nI\'m Ido Samuelson'),(1322,'1980-01-01 00:00:00',5,'en','1213417345','A5','A3','male','','Y','','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','','','','Y','','','','','','hpc systems','Y','Y','Y','','','','','A2','A3','A7','','','','','','','','A3','A8','A5','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','A25','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1323,'1980-01-01 00:00:00',5,'en','2121464232','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A6','A4','A14','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Hyprland','','',''),(1324,'1980-01-01 00:00:00',5,'en','1224044790','A2','A3','male','','Y','','','','','','','','','Y','','','','Y','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Because I love the idea.\r\n\r\nI had to set up a new computer, and decided to make the process reproducible.\r\n\r\nMitchell Hashimoto and Ian Henry (https://ianthehenry.com/posts/how-to-learn-nix/) were major influences.','Y','Y','','','','','Y','','','Y','','','','','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A12','A8','A9','','','','','','','','','','','','',NULL,'brew','A1','','','','Y','','','','','','','','','','','','','','','','','','','A1','A2','A13','A9','A15','A20','A17','A23','A5','A25','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Lack of knowledge.','N','N','Time perhaps? I am pretty stuck in macOS...\r\n\r\nI would love it if it was available in the private cloud infrastructure that I have access to.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1325,'1980-01-01 00:00:00',5,'en','1389930379','A5','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','I became curious after following an avid user on the Fediverse. I started a new project after struggling with dependency versions on a different one and decided to use Nix to help solve the problem.','Y','','','','','','Y','','','','','','','Y','Y','Y','','','','','A2','A6','A1','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'I\'m not sure. Maybe I\'d try containerization with specific package versions installed on the container.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I\'ve only just started to wrap my head around Nix, so contributing has barely crossed my mind. I would like to help create guides in the future, however.','N','N','I will try it eventually on a VM, but for now I\'m just testing out Nix on a per-project basis.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'cachix/devenv?','','Thanks for the hard work! I\'m excited to join this community.'),(1326,'1980-01-01 00:00:00',5,'en','2112905834','A3','A2','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','','','Y','','A1','A9','A3','','','','','','','','A8','A11','A6','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','Y','','','','','','','A13','A23','A15','A24','','','','','','','','','','','','','','','','','','A12','A14','A24','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','','Guix','Y','','','','','','','','','','xmonad','home-manager, comma, nix-index','','Add better documentation for flakes and overlays.'),(1334,NULL,1,'en','1353723270','A8','A2','male','','','','Y','','Y','Y','','Y','Y','Y','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1328,NULL,1,'en','111828472','A5','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1329,'1980-01-01 00:00:00',5,'en','512645242','A5','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Gamer from pen and paper to pc','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','fedora is the new ubuntu dnf is very slow for my taste mint is literaly behind ubuntu\r\nthat left independent distros i looked at nix0s but i was not ready for it i really liked solus but it doesn\'t seem beyond updating packages they have much of a plan beyond lets move to Serpent os with doesnt seem functional or see a lot of activity','','Y','','','','','Y','','','','','','','Y','','','','','','','A7','A2','A1','','','','','','','','A8','A10','A14','','','','','','','','','','','','',NULL,'arch or fedora\r\n','A4','','','','Y','','','','','','','','','','','','','','','','','','i dont believe i use one of thiese','A1','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','flatpacks','A1','','i feel i would be better at getting nixos attention by informing everyone about it','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','im tired of arch breacking and fedora cycle can be murder to keep up with','Y','','','','','','','reproducible systems','there are packages nix os has that most distros only have as flatpaks','atomic updates','more packages, a bigger community, ','arch or fedora','Y','','','','','','','','','Y','im currently playing with hyperland','home-manager its awesome because i have the same base files on all of my machines but they each have a specific purpose so through home manger i can set up gaming, pc gaming, and a pc for documentation and checking on the kids a school','none so far however i am very new a week at most in to nix','great job keep up the awesome work'),(1333,NULL,NULL,'en','666629638',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1330,'1980-01-01 00:00:00',5,'en','287429845','A1','A3','male','','','','','','','Y','Y','Y','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I like Arch Linux but it\'s really bad on versioning, and here I am.\r\nAlso the idea behind Nix is fascinating to me, I like how Nix solving dependency issue in a consistent and composition way. It\'s quite inspiring.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A9','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'Docker I guess','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A15','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Searching for a package that I like and has not yet been owned is hard','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','','','','','','declarative configuration','nixos options is a good way to explore system settings and useful software','','maybe remote channel\r\nmaybe add some kinds of preview for certain system configuration to understand what would happen after nixos-rebuild','Keep using Arch','Y','','','','','','homemanager','Y','','','i3','','','Nix is like the build tool version of lisp: every system (in my job) becomes just like Nix eventually.\r\nHope the idea of Nix could spread widely and inspire more new idea.'),(1331,NULL,NULL,'en','612403374',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1332,'1980-01-01 00:00:00',5,'en','1211103344','A8','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started using it with NixOS 5 years ago','Y','','','','','','Y','Y','Y','','','','','','Y','Y','Y','','Y','Running programs without installing them (nix run)','A2','A6','A10','','','','','','','','A8','A12','A2','','','','','','','','','','','','',NULL,'I would just be sad','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A2','A15','','','','','','','','','','','','','','','','','','','A8','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I\'d kept hearing about NixOS on Hacker News in 2018, and eventually I checked out the webpage and the properties (reproducibility and being declarative) that it advertised sounded so enticing as an Arch user who had broken their system multiple times.','Y','','Y','','','','','Freedom to tinker because you can rollback or generate your system again','Modular which allows users to share their configs and reduce duplicated effort on configuring things, as well as allowing for introducing abstractions/variations','Non-global package manangement, allows you to create isolated development environments, or to allow differing versions of packages and libraries to coexist','Integrate disko natively','Arch','Y','','','','','','','','','','i3, sway','nix-darwin, home-manager, agenix, nil, disko','deploy-rs','I really hope you can stabilise flakes, I think it\'s super important to the future growth of Nix, especially now that any newcomers will see a significant amount of people recommending using experimental features'),(1335,'1980-01-01 00:00:00',5,'en','2141654038','A2','A3','male','','','','','','','','','','','','','','','','Y','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A1','','','Y','','','','','Y','','','Y','','','','','Y','Y','Y','','','','A2','A4','A9','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'Docker','A7','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','A4','A3','','','','','','','','','','','','','','','','','','','A15','A17','A22','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A1','','Y','','','Y','','','','','','','stabilize flakes','Proxmox + Docker','Y','','','','','','','','','','dwm','Home Manager','','Thank you for your amazing work!'),(1336,NULL,1,'en','1431509027','A5','A3','male','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1337,'1980-01-01 00:00:00',5,'en','1631786385','A5','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I needed something with more control compared to Homebrew on MacOS.','Y','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A2','A6','','','','','','','','A13','A8','A9','','','','','','','','','','','','',NULL,'Go back to using Homebrew unfortunately.','A2','','','','Y','','','','','','','','','','','','','','','','','','','A3','A9','','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','','Y','','A2','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','Y','','A1','','Y','','','','','','','Stability (more stable than Arch for me!)','Pin down my environment (with flakes)','Nixpkgs being very good.','More configuration options. Making something like Home-Manager default.','A Nvidia friendly Arch distribution. ','Y','','','','','','','Y','','','','','','Just self host lol.'),(1338,NULL,2,'en','1544757209','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A10','A2','A6','','','','','','','','A3','A4','A8','','','','','','','','','','','','',NULL,'Probably Bazel/Buck2, the other usuals like ansible n co','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A15','A3','','','','','','','','','','','','','','','','','','','A9','A22','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1339,'1980-01-01 00:00:00',5,'en','1015596296','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Heard about it in a conference. They explained how it was possible to package old software that was not installable anymore (used very old libraries that are not maintained/supported).','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A2','A1','A7','','','','','','','','A8','A4','A15','','','','','','','','','','','','',NULL,'Silver blue, even though they are not comparable.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A17','A1','A2','A9','A3','','','','','','','','','','','','','','','','A8','A22','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I have contributed, it’s just not the best description of my involvement. Most of my time is dedicated to programming projects that nix shell packages the dev env for.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Same as with nix','Y','','Y','','','','','Hermitically sealed packages','Rollbacks','Harder to break a working system.','Easier ways to repackage software that requires FHS support.','Same as previous nix question, silverblue.','Y','','','','','','','','','','Hyprland','','',''),(1340,'1980-01-01 00:00:00',5,'en','872325099','A5','A6','male','','','','','','Y','','','Y','','','','','','','','','Y','','','','','','Y','Principal Software Engineer','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A2','','','Y','','','Y','','Y','','Y','','','Y','','Y','Y','Y','Y','','Y','','A6','A2','A1','','','','','','','','A8','A4','A9','','','','','','','','','','','','',NULL,'Guix ... :)','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A4','A2','A5','A1','','','','','','','','','','','','','','','','','','A4','A1','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','','','Y','','','','Y','','Build & cache server','Embedded device OS','','Automatically replace all GPL-V3 packages with something with a less brutal license (for embedded devices)','Heavily customiezed Ubuntu or Guix?','Y','','','','','Y','','Y','','','Sway on Wayland','','','THANK YOU !'),(1341,NULL,1,'en','1764570761','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1343,'1980-01-01 00:00:00',5,'en','1262678367','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','NixOS is my Daily Driver','A1','','','Y','','','','','Y','Y','','','','','','','','Y','Y','','','','A1','A2','A7','','','','','','','','A14','A5','A6','','','','','','','','','','','','',NULL,'Either Gentoo or a custom build of Silverblue','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A4','A13','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I have been meaning to. I just havent goten around to it','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I wanted the declaritive config and my gentoo config was becoming pain to maintain','Y','','Y','','','','','Declarative Config','Rollback','Binary cache','Make it braindead easy to package software.','Probably an image-based os like silverblue (without gnome obviously)','Y','','','','','','','','','','Hyprland','Home-manager','none',''),(1344,'1980-01-01 00:00:00',5,'en','210151371','A5','A3','male','','Y','','','','','','','Y','','','','','','','','','','','','','','Y','','Roboticist','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A1','Met some people at Anduril who told me about it. Seemed like a great way to avoid Docker overkill in robotics applications.','','Y','','Y','','','Y','','','','','','','Y','Y','','','','','','A2','A5','A9','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'CMake Package Manager','A4','','','','','','','','','','','','','','','','','','','','','','','A4','','','','','','','','','','','','','','','','','','','','','A4','','','','','','','','','','','','','','','','','','','','','','','','','A2','','I don\'t know how!','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','I wanted a declarative environment without all the excess that Ubuntu has','Y','','','','','Y','','Declarative Operating System','Deep nix integration','Reproducibility','Deploy a NixOS system easily','','','','','','','','','','','','','','','Please give us better docs! It is a really cool system and could be much easier to learn'),(1345,'1980-01-01 00:00:00',5,'en','1901695838','A2','A3','-oth-','non-binary','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I knew about Nix from the hackerspace in Vienna, eventually I went to the NixOS meetup where people helped me setting up a laptop in 2019. Through the NixOS community forum I managed to land my first NixOS job in beginning of 2023','','Y','','','','','Y','Y','Y','Y','','','Hospital Virtual Machines','','Y','Y','Y','Y','Y','','A2','A1','A8','','','','','','','','A2','A11','A12','','','','','','','','','','','','',NULL,'Bazel or Guix','A2','Y','','','Y','Y','','','Y','','','','','','','','','Y','','','','','','A9','A2','A25','A15','A20','A1','','','','','','','','','','','','','','','','A9','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','A2','','Big repository to clone, unclear how to exactly develop certain packages, no incremental builds (like bazel) - making it very hard to build projects like bambu-studio because my computer takes about 45 Minutes to build it each time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I learned about it by fpletz at hackerspace in Vienna, took me several years to finally start using it by going to the NixOS Meetup in Berlin in 2019. Now since beginning of 2023, thanks to NixOS community forum, I have a job where I\'m working with Nix/OS fulltime.','Y','Y','Y','Y','','','Virtual Machines in Hospitals','Reproducible configuration as code','Configuration abstraction and parsing','flakes','The NixOS Wiki\r\n\r\nThe fact NixOS is still on GitHub using Hydra','Guix or Bazel','Y','','','','','','','','','','swaywm with gdm and pipewire','https://github.com/nlewo/nix2container\r\nhttps://github.com/numtide/flake-utils\r\nAlejandra\r\n','nix-shell in favor of nix shell (and many of the other `nix-` commands in favor of nix command)\r\n','<3'),(1346,NULL,NULL,'en','616058964',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1347,'1980-01-01 00:00:00',5,'en','1114735596','A8','A3','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend of mine was using NixOS and so I tried it out as a package manager on MacOS.','Y','Y','','','','','Y','Y','Y','','','Y','','','Y','','','','','','A2','A3','A1','','','','','','','','A8','A13','','','','','','','','','','','','','',NULL,'I\'d probably use Docker, Linux Containers, or some virtualisation.','A6','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A3','A9','A17','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','After using Nix on my Mac system, I tried it out NixOS on a second computer.','Y','','Y','','','','','Declarative configuration','First-class access to nixpkgs','','','I\'d be using Arch Linux or a Debian derivative.','Y','','','','','','','','','','i3','','','thanks for the hard work, pls enjoy purely functional package management'),(1348,'1980-01-01 00:00:00',5,'en','1789168314','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I interned at replit as they started using it so I was a bit familiar, but what caught my attention was nixos.org being linked on Hacker News. ','','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','','','','A1','A3','A7','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'I would use the system package manager (apt etc) ','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A1','A3','A13','A6','A17','','','','','','','','','','','','','','','A13','A17','A1','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','After using nix package manager on my old distro for a while, I was eager to declaratively manage my entire personal system. ','Y','','','','','','','Declarative configuration ','Automatic rollback','access to nixpkgs','Better docs for how to figure out what is keeping a store path from being gced (nix-store -q --roots). Fix jankiness around input modules like fcitx. Add more modules','custom scripts for configuring my system and installing packages, or possibly ansible','','','','','','Y','','','','','lightdm+i3','home-manager, direnv, nix-index','node2nix, luarocks-nix','search.nixos.org should have something like nix-index\'s \"search for bin/$file\" functionality so that you can find what packages provide a given command '),(1349,'1980-01-01 00:00:00',5,'en','604888363','A8','A2','-oth-','bruh it should be man/woman, male/female is sex bruh bruv','','','','','','','','','','','','','','','','','','','','','','','','unemployed neet','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','',' whenever im on the pc','A3','Arch linux is not hip anymore and i wanna hav the linux street cred especially when i post on unixporn','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A3','A2','A1','','','','','','','','A8','A4','A6','','','','','','','','','','','','',NULL,'i cannot imagine a world where nix doesnt exist sry','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A26','A15','A1','A2','A21','','','','','','','','','','','','','','','','','A26','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','im shy + lazy + fear of being rejected + lazy + i havent had a reason to','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','same reason as nix','Y','','','','','','','DECLARATIVE','REPRODUCIBLE','RELIABLE','Make flakes the default, deprecate everything else','VOIDOS or ARCH or windows (:gag:)','Y','Y','','','','','','Y','','','paperWM','flake-parts','flake-utils','pls flakes flakes flakes flakes flakes flakes flakes flakes flakets tflarknse tnaei flakes falrekes!!! pls'),(1350,'1980-01-01 00:00:00',5,'en','510503890','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','The company I started working for in 2016 used Nix and NixOS for their entire infrastructure. When I left that company in 2020, I joined a different company that was introducing Nix to replace Ubuntu\'s APT and Python\'s pip for packaging their software. ','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A3','A9','A7','','','','','','','','A9','A14','','','','','','','','','','','','','',NULL,'Debian APT, cabal install and pip','A1','','','','Y','Y','','','','','','','','','','','','','','','','','Semaphore CI','A13','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','The company I started with in 2016 used it on all servers, raspberry pis and development machines. My development machine was also my personal laptop. When I left, I got to keep that laptop. It still runs NixOS. ','Y','','Y','','','','','Rollbacks','Building from other systems','The ability to build sd card images. If my home server crashes, I can just build a new image and be up and running in no time again. All I lose is state, which is backed up anyway. ','Consistency of the Nix commands. Please, stop giving existing names new meaning. The change of semantics for `nix run` -> `nix shell` in Nix 2.4 caused weeks of work converting build/deploy scripts and explaining to less experienced Nix users in our company. ','Arch, probably','Y','','','','','Y','','','Y','','I3','Nix-tree, nvd, niv','',''),(1351,'1980-01-01 00:00:00',5,'en','1188580463','A2','A3','male','','Y','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','i migrated from Fedora Silverblue because I was dissatisfied with the Flatpak ecosystem.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A5','A8','A7','','','','','','','','','','','','',NULL,'Probably some containerized approach to software development, packaging and distribution like Flatpak.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A2','A20','','','','','','','','','','','','','','','','','','','A2','A20','A5','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','i migrated away from Fedora Silverblue because I was looking for the ability to perform atomic upgrades without having to necessarily restart the computer, as uptime is paramount for my workflow.\r\nThe need for safe atomic upgrades that can be rolled back is a consequence of the fact that I need my computer systems to be operating at any time, as I heavily rely on them for every aspect of my life.\r\nIn addition, reproducibility is very important to me, as I don\'t want to tie my working environment to a particular machine, but be able to migrate easily to a new computer in case the old one breaks.','Y','','Y','','','','','Reproducible system configuration','Atomic upgrades and rollback','Centralized and declarative compile-time software customization','I would really like to see something like AppArmor/SELinux integrated with NixOS, in addition to boot-time security features like Secure Boot, PCR-based measurements and the like.','I would probably stick to some OStree-based distro.','Y','','','','','','','','','','Sway','Home manager, agenix','Disnix','We really need better documentation, as I frequently find myself browsing the Nixpkgs source tree not only to discover new library functions to use for my software development projects, but also for revisiting functions that I know exist but for which I forgot their usage.\r\nIn addition, Nix is not the nicest functional language, and it would really be awesome if it was to be made better (e.g. syntax sugaring around some basic operations, like access to list elements, maybe taking other more mature functional languages as an example).'),(1352,'1980-01-01 00:00:00',5,'en','1459381483','A2','A6','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','','','','','VSCode limitations','Plugins for VSCode that I used before could not be installed ','Y','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Too steep learning courve, not used to it and learning resources were rare and too complicate for me. Don\'t feel comfortable with the Nix language (too many semicolons in strange places, no type safety)','Good tutorial / basic introduction. Real world scenarios.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','My basic feeling is that Nix has solved some very important problems in devops in a elegant, simple way. I need just more time to learn and get hands on experience'),(1353,NULL,2,'en','1460917615','A1','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','','Y','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A6','A1','A3','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'Archlinux','A4','','','','','','','','','','','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','A8','A4','','','','','','','','','','','','','','','','','','','Y','','','','A1','','language + need time learn more',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1354,'1980-01-01 00:00:00',5,'en','976478380','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','The idea of organised and easily configured system spoke to me, especially after having small chaos with personal repos on different systems.','','Y','','','','','Y','Y','','','Y','','','','Y','Y','Y','','','','A2','A10','A1','','','','','','','','A14','A4','A8','','','','','','','','','','','','',NULL,'I would probably manually manage and configure everything. Maybe use gnu stow and bash scripts for package installation.','A2','','','','Y','','','','','','','','','','','','','','','','','','','A15','A20','A2','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Mainly my lack of deeper knowledge of nix-build. I\'ve tried to package some of my applications but after build I wouldn\'t be able to add them to nix store and path.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Stabilty and configurabilty.','Y','','Y','','','','','Stabilty','Configurabilty','Reproduceability','I would like to improve error messages when evaluating configurations and flakes.','Probably archlinux.','Y','','','','','','','','','','qtile','','','Keep up with good work :)'),(1355,NULL,NULL,'en','874874113',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1356,NULL,2,'en','191567507','A3','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','Y','','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1357,'1980-01-01 00:00:00',5,'en','980823440','A5','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A3','A2','A10','','','','','','','','A8','A13','A3','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A7','','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','',''),(1358,'1980-01-01 00:00:00',5,'en','1037143284','A8','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Kind of mixed in with how i started using NixOS, but they both happened at the same time.\r\nI had been using fedora for a few years on my desktop and laptop. I felt an urge to do a little experimenting (wanted to move from gnome to a tiling window manager and do some more customisation mostly...) and so played around with Arch on my laptop for a few days before remembering i had heard about how great nix was some time in the past. I forget where but i think it was on youtube.\r\n\r\nI was doing a course on haskell at uni at the exact same time so was very pleasantly surprised by the nix language. The reproducibility seemed great for setting up a consistent system between laptop, desktop and server. I then set up a server using nix, it was extremely trivial, which i loved. It helped immensely dealing with python package differences between systems (I have to do AI work and my home desktop uses an AMD gpu, so setting it up is extremely extremely finnicky, but now its nice to have a setup that feels like it will always work).','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'I was considering other immutable distributions like silverblue when i found nix, so maybe one of those. Probably just fedora though.\r\nFor dev environments... likely nothing, and if i had to for reproducibility then docker.','A1','','','','Y','','','','','','','','','','','','','','','','','','','A15','A2','A13','A1','A5','A25','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Lack of self percieved skill (probably for good reason) in nix. I would like to, just need to do more learning.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','','Kind of mixed in with how i started using NixOS, but they both happened at the same time.\r\nI had been using fedora for a few years on my desktop and laptop. I felt an urge to do a little experimenting (wanted to move from gnome to a tiling window manager and do some more customisation mostly...) and so played around with Arch on my laptop for a few days before remembering i had heard about how great nix was some time in the past. I forget where but i think it was on youtube.\r\n \r\nI started on my laptop, then eventually put nixos on my desktop in dual boot (but have since moved to only using nixos). I also used it to turn an old PC into a server for a variety of services which has been great.','Y','','Y','','','','','Declarative and Reproducible','Unifies system configuration/customisation','Package availability','Better/unified documentation and learning resources. Im mostly past it now, but that was a real headache getting started.','I would likely be on fedora, maybe silverblue (i was considering it when i found nix because an immutable os seemed interesting)\r\nI doubt it, but i might have used vanilla OS, it was something that fascinated me and set me on the path to finding NixOS.','Y','','','','','','','','','','Hyprland','Home manager','','Thanks for creating the most innovative OS ive ever found.'),(1359,'1980-01-01 00:00:00',5,'en','756137444','A3','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','','','Y','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A10','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A1','A2','A5','','','','','','','','','','','','','','','','','','','A1','A2','A5','','','','','','','','','','','','','','','','','','','','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1360,'1980-01-01 00:00:00',5,'en','1871384056','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A8','A9','A3','','','','','','','','','','','','',NULL,'Possibly GUIX or Fedora Silverblue as a budget version of nix','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A2','A20','A11','','','','','','','','','','','','','','','','','','A13','A20','A11','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','Declarative OS configuration','Portable OS configuration','Rollback NixOS builds','I would add even better error messages and more out of the box configuration for NixOS i.e. support more init systems other than systemd.','Maybe GUIXSD or Fedora Silverblue','Y','','','','','','','','','','i3','Just nix-community stuff like the emacs-overlay','none.',''),(1361,'1980-01-01 00:00:00',5,'en','275473928','A2','A3','male','','','','','','','Y','Y','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I read an article about it and was instantly hooked by the ideas of the package manager','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','A2','A7','A8','','','','','','','','A8','A14','A7','','','','','','','','','','','','',NULL,'Fedora silverblue','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A19','A1','','','','','','','','','','','','','','','','','','','A15','A1','A19','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Getting started to contribute to open source projects always has a steep learning curve. In combination with the sparse learning and \"getting started\" resources for everything but the most common workflows I feel like I can\'t really get started without having to resort to bothering humans directly via discrouse or matrix.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I read an article about the ideas of the nix package manager and was directly hooked.','Y','','Y','','','','','Flakes','Reproducible builds','Safe rollbacks','I would definitely add a huge amount of documentation and \"getting started\" resources. In the best case as extensive as the Arch-Wiki.','Fedora silverblue as workstation and for builds I\'m not sure, I\'d probably just be sad :(','Y','','','','','','','','','','Hyprland','I use home-manager a lot for configuring my workstation. And I recently discovered treefmt-nix.','','Continue the great work!'),(1362,NULL,2,'en','2059981661','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','Because I often get that I have to use different versions for projects that I am working on for university. So I started using flakes. And it works really well.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A7','','','','','','','','A5','A13','A4','','','','','','','','','','','','',NULL,'Yay','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I think I want to use the system for a while and then contribute, when a package doesn’t work.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1363,'1980-01-01 00:00:00',5,'en','1235441464','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','I wanted reproducible builds and declarative. As I have multiple versions of a program on my pc.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A7','','','','','','','','A5','A13','A4','','','','','','','','','','','','',NULL,'Yay','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','I want to use it longer and I want to understand the code before coding. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I wanted reproducible and declarative and reliable builds so it is a perfect fit. As I have two computers who I want to maintain with one file','Y','','','','','','','Reproducible ','Declarative ','Reliable','I would have more options so for instance that the customization that I do to the desktop that I can write that down in one file.','Arch','Y','','','','','','','','Y','','','-','-','-'),(1364,'1980-01-01 00:00:00',5,'en','2091890783','A7','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I joined a Nix \"shop\" (a company with Nix experts / enthusiast)','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','','A1','A3','A2','','','','','','','','A14','A4','A10','','','','','','','','','','','','',NULL,'Guix','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A14','A15','A13','','','','','','','','','','','','','','','','','','','A14','A15','A13','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Nothing really. I just found an OCaml package that isn\'t on Nixpkgs, and I\'m in the process of packaging it.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Joined a Nix \"shop\"','Y','','','','','','','','','','','Arch','Y','','','','','','','Y','','','','','',''),(1365,'1980-01-01 00:00:00',5,'en','1008567054','A5','A3','male','','','','','','Y','Y','Y','Y','Y','Y','','','','','','','Y','','','','','','Y','','','','Y','','','NixOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','Personal desktop','A3','Linux + declarative configuration','Y','Y','','Y','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','Y','','A2','A1','A3','','','','','','','','A4','A14','A5','','','','','','','','','','','','',NULL,'Arch Linux + Ansible or something?','A2','','','','Y','Y','','','','','','','','','','','','','','','','','Other','A15','A3','A2','A1','A9','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Nothing, I have on occasion. Maybe this should\'ve been multi-select?','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','Y','Y','Y','','Nixpkgs','Declarative Configuration','','I\'d invest time in trying to bring the community together on some of the major shortcomings. devnix/hive seems to be making good progress on some things but is largely unknown still.','I guess I\'d go back to Arch Linux for desktop and containers for production systems...','','','','Y','Y','','','','','','i3','devnix/hive and std','devnix/digga',''),(1366,NULL,2,'en','1526241112','A5','A3','male','','','','','','','Y','','','','','','','','','Y','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Having a reproducible way to configure my Linux machines and dev environments.','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'For an OS, I would use an Arch-based distro. For package management I would use pacman on Linux and brew on MacOS.','A2','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Time commitment currently. Would definitely like to contribute at some point.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1369,'1980-01-01 00:00:00',5,'en','2004632330','A6','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A7','Seeking for a way to have simple, reproducible configuration among multiple hosts. Nix also has a a lot of packages. After using Debian, Arch, and recently Fedora, NixOS was a breath of fresh air and was easier to configure and learn than Guix. ','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A6','','','','','','','','A14','A5','A9','','','','','','','','','','','','',NULL,'A toss up between Guix, Fedora, and VanillaOS at the moment. ','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','I suppose I answered this in the previous prompt. Again, to find reproducibility in systems and for package availability. Moreover, NixOS feels \"cleaner\" than other systems. ','Y','','','','','','','The system configuration','Home configuration','','Comprehensive documentation.\r\n\r\nEven though I don\'t use the CLI much I would still rewrite it to be something similar to `guix`. ','Fedora, Guix, or VanillaOS','Y','','','','','','','Y','','','Hyprland','','','Thanks for the great project. It has made setting up my local system a breeze. Providing more use friendly documentation to get people started with Home and Flakes would help with adoption. Once people get over the learning curve they\'ll see that Nix is quite special. '),(1368,'1980-01-01 00:00:00',5,'en','1885703382','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','Y','','','A1','A2','A3','','','','','','','','A8','A6','A3','','','','','','','','','','','','',NULL,'Kubuntu with apt','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A1','A6','','','','','','','','','','','','','','','','','','','A5','A2','','','','','','','','','','','','','','','','','','','','','Y','','','-oth-','I package missing software but doesnt contributed upstream',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','Y','','','','','modules (especially services)','','','','Kubuntu with apt','Y','','','','','','','','Y','','','static code analysis like statix, deadnix, vulnix\r\ndream2nix for packaging javascript/spa\r\ndisko for disk configuration\r\nplasma-manager as home-manager module for kde plasma (https://github.com/dominikstraessle/plasma-manager)','',''),(1370,'1980-01-01 00:00:00',5,'en','590067999','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Saw a youtube video and got really interested.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'Arch linux (or guix i guess)','A2','','Y','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I sometimes do (but not extensively)','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','','','Y','','Y','','','','','Declarative configuration','','','','Arch','Y','','','Y','','','','','','','river','','',''),(1371,'1980-01-01 00:00:00',5,'en','33196293','A6','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I came across a talk about Nix and NixOS which convinced me to give NixOS a try. I used it for quite a while along with home-manager, but the steep learning curve and the fact that it took some time to apply config changes (I couldn\'t just edit a config file managed by Nix or home-manager) made me switch back to other distro (popOS).\r\n\r\nDuring the short time of using popOS, I realised how Nix has spoiled me. The idea of reproducible dev environments (and the whole system with NixOS) is just amazing and it enables me to experiment with my machine more often without the fear of it breaking.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A1','A2','A3','','','','','','','','A9','A4','A14','','','','','','','','','','','','',NULL,'- package managers for every language I write code in (pnpm, cabal, bundler)\r\n- Arch\'s AUR as a replacement for nixpkgs','A7','','','','Y','','','','','','','','','','','','','','','','','','','A1','A3','A7','A13','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I have made one contribution to nixpkgs in the past. I do not get much time to contribute to nixpkgs although I wish to do it in the future.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','Reproducibility: It\'s the fastest to install it on a new system with my configs','Generations: For every new change in NixOS it creates a new generation. It\'s very helpful in cases when I break something, I can always go back to the older generation.','nixpkgs: It has every package that I need','','','Y','','','','','','','','','','i3wm','','',''),(1372,NULL,1,'en','461317822','A5','A6','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1373,NULL,1,'en','1276449374','A6','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1374,'1980-01-01 00:00:00',5,'en','1741602437','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because I started using NixOS.','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A5','A8','A15','','','','','','','','','','','','',NULL,'Whatever is provided by the programming language.','A4','','','','Y','','','','','','','','','','','','','','','','','','','A15','A2','A25','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Unclear or lacking documentation/guides especially about best practices.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I saw it in a university lecture.','Y','','Y','','','','','Declarative, reusable configuration','Very good/vast package ecosystem','shell.nix (with lorri)','Incorporate (parts of) home-manager into NixOS so that declarative user home configuration does not rely on a third-party flake.','Probably Arch Linux.','Y','','','','','','','','','','i3','None','niv',''),(1375,'1980-01-01 00:00:00',5,'en','1210629540','A2','A4','fem','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was fascinated by the idea of declarative, reproducible setups when a colleague introduced Nix/NixOS to me.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A3','A2','','','','','','','','A8','A2','','','','','','','','','','','','','',NULL,'bash scripts, ansible','A4','','','','Y','','','','','','','','Y','','','','','Y','','Y','','','','A15','A4','A2','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','Reproducability','Deployment tools','Modules (incl. custom ones)','','Ubuntu/Fedora','Y','','','Y','','','','','','','i3','home-manager','','I am very happy that Nix and NixOS exist :)'),(1376,'1980-01-01 00:00:00',5,'en','766110661','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','','','Y','','','','','Y','','','Y','','','','','','','Y','','','','A1','A10','','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'apt (nala)','A2','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I\'m new to Nix.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','','','','','Xubuntu and Gentoo','Y','','','','','','','','','Y','','','',''),(1377,NULL,1,'en','1557753443','A2','A5','male','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1378,NULL,3,'en','1305234423','A5','A3','-oth-','N/A','Y','','','','Y','','','','','','','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','Y','Y','Y','Y','Y','My motorcycle runs nixos','Y','Y','Y','Y','','','','A10','A7','A3','','','','','','','','A6','A3','A1','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','Y','','','','','','','','','','Nixos itself works fine','','','','','','','','','','','','','','','','','','','','','','A2','A25','A20','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','Y','Y','My motorcycle','Modules','Config in one place','Rollbacks','A better language than Nixlang.','','','','','','Y','Y','','','','Y','i3',NULL,NULL,NULL),(1379,NULL,NULL,'en','998821542',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1380,'1980-01-01 00:00:00',5,'en','1278891301','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','saw the hype on lemmy, thought it fit my needs due to me wanting a stable os thats impossible to break and has a huge amount of packages while allowing customization! haven\'t looked back! ','','Y','','','','','Y','','','','','','','','Y','Y','','','','','A1','A10','A6','','','','','','','','A3','A12','A5','','','','','','','','','','','','',NULL,'debian, stability and its the os i grew up with.','A4','','','','Y','','','','','','','','','','','','','','','','','','','A3','A2','A10','','','','','','','','','','','','','','','','','','','A3','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','general lack of knowledge, as im new to this whole nix thing.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','','','','','','stability','packages','reproducibility ','faster support for broken or out of date packages.','','Y','','','','','','','','','','enlightenmnent','','',''),(1381,NULL,NULL,'en','762194293',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1382,'1980-01-01 00:00:00',5,'en','319367040','A6','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Liked the functional aspect + ability to declarative environment.','','Y','','','','','Y','Y','','','','','','Y','Y','','','','','','A2','A6','A7','','','','','','','','A6','A13','A5','','','','','','','','','','','','',NULL,'Chef, ansible, stow?','A2','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Inexperienced.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','Declarative','Easy to configure','Easy to rollback','- Inconsistencies between methods - there are multiple ways to do one thing, which can be confusing for beginners. \r\n+ Support for secrets in nix language','Arch with some way to make my configs declarative','Y','','','','','','','','','','xmonad','- nix-sops\r\n- home-manager','- firejail + apparmor ( I believe that one of them is supported, but the support for it is limited)','I love nix. Thanks.'),(1383,'1980-01-01 00:00:00',5,'en','1334910253','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I heard it was a \"revolutionary\" package manager and wanted to give it a try. A month later all my devices ran it.','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A10','A7','','','','','','','','A4','A8','A6','','','','','','','','','','','','',NULL,'I genuinely don\'t know. Probably Fedora Silverblue.','A7','','','','Y','','','','','','','','','','','','','','','','','','','A25','A5','A4','A1','A20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Lack of knowledge of Git.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','','','','','','Reproducible.','Declarative.','Functional.','Home-manager into the core.','Probably Fedora Silverblue.','Y','','','','','','','','','','xmonad','','',''),(1384,'1980-01-01 00:00:00',5,'en','434192467','A2','A4','male','','','','','','','Y','Y','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Reproducibility. I started with plain Nix on Ubuntu and shared my configs with my $DAYJOB Mac. I eventually ditched Ubuntu and went full NixOS.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A6','','','','','','','','A5','A8','A2','','','','','','','','','','','','',NULL,'Maybe some concoction of Docker images and Bazel/Buck.','A4','','','','','','','','','','','','','','','','','','','','','','','A9','A15','A1','A2','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','The process seems complex. The huge GH PR template scared me.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Home manager made me do it! I also grew tired of using hacks like NixGL on Ubuntu.','Y','','Y','','','','','Reproducibility','One off dev shells','Home manager and NixOS modules','Stabilize and document flakes.','','','','','','','Y','nix-copy-closure','','Y','','LXDE','','NixGL to run GUI apps on non-NixOS Linux. It needs to be a nixpkgs builtin.',''),(1385,'1980-01-01 00:00:00',5,'en','948018840','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','','','Y','','','','','Y','Y','Y','','Y','','A1','A2','A7','','','','','','','','A12','A9','','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A7','A9','A10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','Y','','','','Declarative system configuration','','','','','','','','','','Y','','','','','xmonad','','',''),(1386,'1980-01-01 00:00:00',5,'en','370307363','A2','A3','male','','','','','','Y','Y','','','','','Y','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','Y','','','A2','A1','A7','','','','','','','','A3','A11','A12','','','','','','','','','','','','',NULL,'','A1','','Y','','','Y','','','','','','','Y','','','','','Y','','','','','','A4','A13','A1','A15','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','Y','','','','stability, atomic upgrades','easy to configure, configuration-as-code','wide availability of packages','','ArchLinux','Y','','','','','','','','','','sway','haskell.nix','home-manager','Thanks for your work!'),(1387,'1980-01-01 00:00:00',5,'en','258957572','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A1','','Y','','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A1','A7','A2','','','','','','','','A4','A14','A7','','','','','','','','','','','','',NULL,'','A6','','','','Y','','','','','','','','','','','','','','','','','','','A22','A7','A5','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Just spending more time trying to understand the internals.','N','N','The moment I buy a non Mac system.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1388,'1980-01-01 00:00:00',5,'en','1701294427','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'GNU Guix','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','A3','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','The complexity of Nixpkgs internal code structure','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I decided to try it after reading all the enthusiast comments on Reddit and, in general, all around the Internet.\r\nFirst of all, I installed NixOS in a VM and in a old computer but, having fallen in love with the single configuration file feature and immutable nature of the distro, I almost immediately installed it on my main machine to use it as my daily-drive.\r\nCurrently, I installed NixOS on two computers and one server.','Y','','Y','Y','','','','Single config file','Immutability','','More like a change in the Nix language itself, but I would love to see compatibility with the language used by Guix (Guile) to write configurations and derivations','GNU Guix','Y','','','','','','','','','','Hyprland','','','The Nix/NixOS project is really fantastic, and I will not stop using its products in the foreseeable future.\r\nHowever, I would like to point out that the (sometimes needless) complexity of the ecosystem makes working with it a real pain. To address this, it would be awesome to see the Flakes support and the new Nix commands getting stabilized and the old interface (along with channels) deprecated and removed, as this would reduce the number of ways available to do exactly the same things, simplifying every interaction.\r\nStabilizing the Flakes support, moreover, would allow a greater number of projects to host their Nix build instructions without having to contribute them to Nixpkgs (an operation that requires studying and comprehending a lot of strange and, at first glance, exoteric code).\r\nSpeaking of the language, I would love to see the possibility to use Guile (or a similar Lisp) as the configuration language introduced at least experimentally; I know that this would undermine my initial goal of simplifying the ecosystem, but having the possibility to replace the Nix language with a Lisp would, in my opinion, make scripts easier and discourage fewer new users (which are often not too eager to learn a completely new language that, as opposed to Lisp, has no use and documentation outside the project itself).\r\nIn any case, thank you for your hard work and for your incredible ecosystem.'),(1389,'1980-01-01 00:00:00',5,'en','1090092795','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','Y','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Tried it, liked it, that about it. It makes a lot of sense, and so far It hasn\'t failed me by becoming unsuable on my moms computer (I\'ve installed NixOS on my laptop, wifes laptop and moms PC, because I\'m the guy who has to deal with all the computer related stuff)','Y','','','','','','','declarative configuration','Ability to rollback','stability','I would add 12 extra hours in a day, that I would use to experiment with nixos at work, in order to migrate my managed CentOS servers to it. However since currently I used ansible to manage servers, it would have to be more than just plain migration.','I would try Debian 12 and fall back to Manjaro. However in ideal world I would use FreeBSD','Y','','','','','','','','Y','','','','','I really which documentation would be better. Currently in many areas it feels half baked at best. Especially about nix language.... in my opinion'),(1390,NULL,2,'en','1734967360','A2','A3','fem','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A7','A3','A2','','','','','','','','A2','A5','A9','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A15','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I don\'t feel like the software I package for myself is worth inclusion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1391,'1980-01-01 00:00:00',5,'en','1850667','A2','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I looked for a stable, open system and was frustrated with how macOS developed ','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A3','A1','','','','','','','','A8','A12','A3','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A21','A2','','','','','','','','','','','','','','','','','','','A13','A2','A21','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','My time constraints. I hope this changes','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I got frustrated with macOS ','Y','Y','Y','Y','','','','Reproducible shells','Flakes','Development shells','Stabilize flakes\r\n\r\nImprove hardware support (incl mobile)\r\n\r\nNixops improvements','Guix','Y','Y','','','','','','','','','Xmonad','Home-manager','-','-'),(1392,NULL,1,'en','1632169696','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1393,'1980-01-01 00:00:00',5,'en','712901749','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','A7','A2','A1','','','','','','','','A12','A8','A9','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','Y','','Y','','','','A15','A9','A2','A1','A3','A10','A7','A5','','','','','','','','','','','','','','A1','A7','A10','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','','Y','Y','Y','Y','','','','Readily available modules','Predictable release cycle and support policy ','Module documentation','','','Y','','','','Y','Y','','','','','sway','home-manager, lanzaboote, poetry2nix, napalm, direnv with flakes, snippets from nixos-hardware, impermanence, crane, flake-parts','flake-utils','Thank you for doing this! :)'),(1394,'1980-01-01 00:00:00',5,'en','278295048','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','When I started using NixOS and had to write some packages myself.','','','','','','','Y','Y','','','','Y','','','Y','Y','Y','','','','A2','A10','A9','','','','','','','','A8','A6','A1','','','','','','','','','','','','',NULL,'Would probably use KISS Linux and go live in the woods','A4','','','','','Y','','','','','','','','','','Y','','','','','','','','A13','A2','A3','','','','','','','','','','','','','','','','','','','A2','A5','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','','','Y','','Unified configuration','Reproducibility','Atomic updates and rollbacks','1. Make `nixos-rebuild` faster with no changes to the configuration\r\n\r\n2. Replace all `extraConfig` with type-checked `settings`\r\n\r\n3. harden all systemd services by default','See Nix answer','Y','','','','','','','','','','bspwm','nixos-mailserver','',''),(1395,'1980-01-01 00:00:00',5,'en','1305012172','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted to switch back to Linux and I liked declarative approach to configuration','Y','Y','','','Y','Nixos','Y','','Y','Y','','','','','Y','Y','Y','','','','A2','A3','A8','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'No idea really. Bash scripts? Guix?','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A12','A15','A17','A6','A1','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Same as with nix','Y','Y','','Y','','','','Declarative configuration and customization ','Remote deployment ','','','','Y','','','Y','','','','Y','','','','Sops-nix, nixos-generators, extra-container, flake-utils ','',''),(1396,'1980-01-01 00:00:00',5,'en','1815828721','A2','A4','male','','','','','Y','Y','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A1','A9','A2','','','','','','','','A9','A8','A13','','','','','','','','','','','','',NULL,'Docker, adsf','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A24','A15','','','','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Laziness :) ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','Declarative configuration','Atomic deployment','','- Add an alternative init system (remove the hard dependency to systems) \r\n- Split nixpkgs into lib, pkgs and nixos modules\r\n- develop a testing framework and best practices for them\r\n- develop a best practices for large scale deployments','Arch, gentoo','','','','Y','','','','','','','Sway','Devenv, cachix, deploy-rs','Nixops',''),(1397,'1980-01-01 00:00:00',5,'en','1382380782','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'m the IT guy in the family; i used to install lots of Windows and Linux machines and created scripts that would install all the desired apps automatically. NixOS does this out of the box and repeatable. It just works.','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A8','','','','','','','','A6','A3','A2','','','','','','','','','','','','',NULL,'Ubuntu with custom setup scripts; maybe Bazel in development for not-quit-as-good-and-lots-of-headaches reproducibility','A4','','Y','','Y','','','','','','','','','','','','','Y','','Y','','','','A15','A2','A13','','','','','','','','','','','','','','','','','','','A15','A2','A13','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','The structure of the nixpkgs setup feels too complicated and time consuming. Also the nix libraries to package software for different programming languages are vastly different and badly documented. Just look at Haskell and Python with several ***2nix libraries and none of them comes without headaches.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','Declarative, repeatable system setup that works for Laptops, Desktops, Servers.','Trying out software is soo damn easy and doesn\'t pollute my system','I can test the whole system easily in a vm before deploying it to a VPS server.','Out of the box easy method to deploy to servers via ssh (there are so many custom, half-maintained Nix deployment tools). I\'m (mis)using Nixos-rebuild for that with lots of quirks.\r\nAlso secret handling is super important for deploying servers (similar story for lots of custom, half-maintained, badly documented Nix secrets libraries).','Ubuntu','Y','','','','','','','','','Y','','','','You\'re doing a great job extending, promoting and improving NixOS! Many thanks.'),(1398,'1980-01-01 00:00:00',5,'en','1695795575','A2','A5','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Learning about Kubernetes and gitops concepts like immutability and declarative configurations .NixOs and Guix caught my attention. Been a NixOS user since :-)','','Y','','','','','Y','Y','','','','','','','Y','','Y','','Y','','A2','A3','A7','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'I would probably use Arch Linux or Alpine.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','N/A','A15','A9','A2','A3','A25','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Time and skill ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','Declarative configuration','','','','Arch or Alpine','Y','','','','','','','Y','','','Sway','','',''),(1399,'1980-01-01 00:00:00',5,'en','1019430292','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','Y','Y','','A6','A9','A2','','','','','','','','A2','A12','A5','','','','','','','','','','','','',NULL,'','A7','','','','','Y','','','','','','','','','','','','','','Y','','Y','','A13','A1','A2','A9','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Time. I do however provide financial support to people contributing.','N','N','On a Mac, but using home-manager.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Cachix, some TVL code (eg. readTree)','',''),(1400,NULL,1,'en','441839183','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1401,'1980-01-01 00:00:00',5,'en','741997341','A8','A6','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','Y','','Y','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','replace homebrew, provide isolated development environments with specific versions of packages per environment, and the hope that it would provide a tenable production build environment and something i could use to give my team production/dev parity, similar to how people now tend to use docker ','Y','','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A14','A4','A8','','','','','','','','','','','','',NULL,'either lots of docker and/or homebrew','A6','','','','','','','','','','','','','','none, my usage is pretty basic. trying to get the courage to use flakes','','','','','','','','none','A7','A1','A15','A14','A17','A24','A20','A6','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','','','','none','A2','','I barely have the IQ to use and manage nix, let alone contribute','N','Y',NULL,'so. much. time. spent. trying. to. make. it .f^&*(IJD. work. ','reason to hope that i might spend more time using it than fixing and configuring it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none. ','flakes\r\nnix-ops','i don\'t know how you\'d fix this, but its just so cryptic. the way packages are named is increadibly confusing. For eg I needed various binutils in a ruby project on darwin. working out what actual packages i needed just to be able to work took all the available time. variations on this are common for me. Also, the nature of nix means its theoretically ideal to be able to pull in old versions of packages when you have to work on legacy projects. I should be able to simply ask for ruby 1.8, but for some reason only the last 3 or versions are available at any time. this kills one of its most compelling use cases. Yes I can specify an old commit , but thats a lot of fooing around.'),(1402,NULL,2,'en','1857697181','A2','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','','','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(1403,'1980-01-01 00:00:00',5,'en','2049527935','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','To manage servers because other configuration tools weren\'t reliable enough. \r\n\r\nhttps://kevincox.ca/2015/12/21/service-management-with-nixos/','','Y','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','Y','','','A1','A10','A3','','','','','','','','A12','A2','A1','','','','','','','','','','','','',NULL,'Puppet + Arch','A1','','','','','Y','','','','','','','','','','','','Y','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','','','','contributing upstream 😉','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I liked it on the server and wondered if it worked well on desktop. Didn\'t like that in my Arch install I was slowly growing configuration cruft. ','Y','','Y','','','','','Declarative configuration ','Easy to customize packages. ','OS rollback ','Somehow to make it easier to keep using an old package when it is broken in a new version. \r\n\r\nFor example if the nixops package fails to build I don\'t want it to hold back my whole system. Right now this is a fairly manual process of pinning the old version with nix-env then uninstalling it in the config. Then you need to remember to do the reverse once it is fixed. ','Arch','Y','Y','','','','','','Y','','','','','',''),(1404,NULL,1,'en','1475246669','A5','A4','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1405,NULL,NULL,'en','744452239',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1406,'1980-01-01 00:00:00',5,'en','1454703575','A2','A3','male','','Y','','','','','','Y','Y','','','Y','','','','','','Y','','','Y','','Y','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','NixOS caught my attention and then slowly caused Nix to invade my whole life. Now I cannot live without it :/','','Y','','Y','','','Y','Y','','','','Y','','Y','Y','Y','Y','','Y','','A2','A5','A1','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'Gentoo, but that\'s not comparable at all.','A2','','Y','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A15','A2','A4','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','After going through 6 years of Gentoo madness, I needed to move on to something better but just as powerful.','Y','Y','Y','','','Y','','Declarative configuration and service management.','State immutability.','Ability to easily discover and compare configurations from other people!','A better standard library and some formatting rules. It\'s all over the place.','Probably guix, while crying.','','','','','Y','','','','','','sway','agenix, agenix-rekey, disko, home-manager, impermanence, microvm.nix','',''),(1407,'1980-01-01 00:00:00',5,'en','1378250298','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','','','Y','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A7','A2','A1','','','','','','','','A2','A3','','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A1','A2','A10','A13','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1408,'1980-01-01 00:00:00',5,'en','1716894089','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','because of cool logo.','','','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A2','A7','A3','','','','','','','','A4','A5','A8','','','','','','','','','','','','',NULL,'','A2','Y','','','Y','Y','','','','','','','','','','','','','','','','','','A24','A23','A13','A2','','','','','','','','','','','','','','','','','','A24','A23','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','asociality','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','cool logo.','Y','','','','','','','reproducibility.','rollbacks.','painless advanced package managment.','i would add adequate documentation.','fedora.','Y','','','','','','','Y','','','sway','','',''),(1409,'1980-01-01 00:00:00',5,'en','116185499','A2','A5','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Easily bring up different environments.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A9','A14','A8','','','','','','','','','','','','',NULL,'docker','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A10','','','','','','','','','','','','','','','','','','','','A10','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','','','Y','','','','','','','Declarative','Snapshots','Reproducible among devices','','Arch','Y','','','','','','','','Y','','','homemanager','',''),(1410,'1980-01-01 00:00:00',5,'en','1614357433','A2','A5','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Heart on it on the \'Functional Geekery\' podcast.','Y','','','','Y','','Y','','Y','Y','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Debian, Docker, …','A4','','','','','','','','','','','','','','','','','','','','','','Drone','A15','A25','A13','A20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Heart of it on the \'Functional Geekery\' podcast','Y','Y','','Y','','','','Declarative servers','Rollback','','Documentation to make it easier to get started with Nix and NixOS','Debian','Y','Y','','','','','','','','','xmonad','','',''),(1411,NULL,1,'en','1488974641','A5','A3','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1412,'1980-01-01 00:00:00',5,'en','150788913','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','A2','A1','A7','','','','','','','','A12','A2','A8','','','','','','','','','','','','',NULL,'I would invent something similar.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A17','A2','A21','A1','','','','','','','','','','','','','','','','','A17','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','','Y','Y','Y','Y','','','','','','','','','Y','','','','Y','','','','','','awesomewm','','',''),(1413,'1980-01-01 00:00:00',5,'en','616066105','A5','A3','male','','','','','','Y','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Had a dream of all my personal system configs in 1 GitHub repo. Nix makes that dream a reality. Jumped from Ubuntu to arch to nixos. Running on my steam deck and I am loving every second of it.','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','','Y','','A2','A1','A4','','','','','','','','A5','A3','A14','','','','','','','','','','','','',NULL,'Docker :(','A7','','','','Y','','','','','','','','','','','','','Y','','','','','','A3','A4','A2','A15','','','','','','','','','','','','','','','','','','A3','A4','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don\'t want to sign up for the complexity of maintaining a package for more platforms than what I am currently using.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','Flake system configuration ','Rollbacks','','The resize nixos bylabel bootloader config within the NixOS vms','Arch :(','','','','','','','','','Y','','','Flake-utils','',''),(1414,NULL,1,'en','1697402336','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1415,'1980-01-01 00:00:00',5,'en','679869238','A2','A2','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','Y','Y','','','','Y','','','iOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Used by friends at local hackspace and proved very useful for packaging and building Haskell projects, gradually got into NixOS.','Y','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','','Y','','A2','A3','A4','','','','','','','','A5','A11','A2','','','','','','','','','','','','',NULL,'Exherbo\'s packaging system','A2','','','','','','','','','','','','','','','','','','','Y','','Y','','A13','A15','A25','A3','A1','A2','A14','A18','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','Impressed with the possibility of having an entire system configured in a single file.','Y','Y','','Y','','','','Declarative Configuration','Rollbacks','','I would add painless modules for all things wayland (including less mainstream compositors like sway, river, …).','ArchLinux, Exherbo, …','Y','','','','','Y','','','','','sway','Niv, cabal2nix, nixpkgs-fmt, direnv, nix-tree, nix-diff, Hydra, nix-serve','',''),(1416,'1980-01-01 00:00:00',5,'en','1868875797','A2','A3','-oth-','Non Binary','','','','','','','','','','','','','','','','','','','','','','','','Silicon Hardware Engineer','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Heard it solves the ansible problem, wanted to learn more','','','','Y','','','Y','Y','','','','','','','Y','Y','Y','','Y','flakes','A2','A1','A3','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'Void Linux, possibly OpenSuse','A2','','','','Y','','','','','','','','','','','','','','','','','','none','A2','A3','A13','A15','A18','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','My Ubuntu lts was running out, void wasn\'t quite working, nix has always been interesting','Y','','Y','','','','','One flake for my system','Rollbacks for fast development ','Easy dependency management ','Better Docs, full move to flakes\r\nKDE config support in home manager (more a fault of KDE)','Ansible','Y','','','','','','','','Y','','','','','Make flakes non experimental'),(1417,'1980-01-01 00:00:00',5,'en','203120975','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Technical program manager ','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A9','','','','','','','','A8','A2','A14','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A22','A3','A12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','Up to date software','Large collection of software','Easy to stand up a new machine that shares a complex configuration ','','','','','','','','','','Y','','','dwm','','',''),(1418,NULL,1,'en','1170886484','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1419,'1980-01-01 00:00:00',5,'en','1452233461','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted a declarative way of managing my home and development environments. home-manager was my gateway into using Nix more broadly.','Y','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Either Conda or Docker Compose for development environments, and Homebrew and Stow for home management.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A24','A23','A1','A2','A14','A5','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I have not needed to so far; it provides what I need.','N','N','If I managed servers I would consider using NixOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Mach-nix',''),(1420,NULL,2,'en','1240599713','A2','A2','-oth-','Unsure','','','','','','Y','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Got hooked by a previous partner of mine, they were using it and told me why it is so good and after some time I tried it and kinda fell in love with it. I really like the declarative approach when it comes to managing my systems configuration combined witht he, for me personally, quite good stability of my systems.','','Y','','','','','Y','Y','','Y','','','','','','Y','Y','','','','A1','A7','A9','','','','','','','','A6','A14','A4','','','','','','','','','','','','',NULL,'I\'ve previously used ansible for my server deployments, but kinda hate(d) it.','A2','','','','Y','','','','','','','','','','','','','','','Y','','','','A2','A15','A10','','','','','','','','','','','','','','','','','','','A10','A1','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1421,'1980-01-01 00:00:00',5,'en','1128037003','A5','A2','male','','Y','','','','','','','Y','','Y','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','Y','','','','','Y','Y','','','','Y','','Y','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'','A1','','Y','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A2','A9','A4','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','Y','','','Y','','','','','','','Y','','','','','','','','Y','','','','',''),(1422,'1980-01-01 00:00:00',5,'en','1180058811','A2','A3','male','','Y','','','','','Y','','','Y','Y','','','','','','','Y','','','Y','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','','Y','','A2','A9','A1','','','','','','','','A1','A8','A2','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A15','A1','A13','A14','A25','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','I3','','',''),(1423,NULL,2,'en','17776575','A2','A4','','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','Interested in NixOS for immutable and declarative OS, previously liked using Fedora Silverblue.\r\n\r\nAlso interested in getting tools on non-NixOS systems via nix packages.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A7','A2','A3','','','','','','','','A8','A5','A13','','','','','','','','','','','','',NULL,'Fedora Silverblue. Toolbox.','A4','','','','','','','','','','','','','','','','','','','','','','','A15','A1','A5','','','','','','','','','','','','','','','','','','','A15','A5','','','','','','','','','','','','','','','','','','','','','','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1424,'1980-01-01 00:00:00',5,'en','1688665655','A3','A2','-oth-','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Needed a declarative GNU/Linux distribution, so I migrated from Arch Linux to NixOS. All the other aspects of Nix such as reproducibility, functional language, came as a plus that today I use including for development, infrastructure as code, etc.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A2','A1','A9','','','','','','','','A3','A8','A12','','','','','','','','','','','','',NULL,'GNU Guix?','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','A2','A19','','','','','','','','','','','','','','','','','','A15','A1','A19','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','Needed a fully declarative by design GNU/Linux distribution (migrated from Arch Linux to NixOS) with many packages available.','Y','','','','','','','declarative','package availability','easy to extend/change configuration','- better support for usage in professional settings: continuous deployment for example.\r\n- a standard reproducible store, making Nix and Guix compatible','GNU Guix System','','','','Y','Y','','','','','','xmonad','home-manager\r\nnix-init\r\nnil\r\nemacs-overlay\r\ndream2nix\r\nrust-overlay\r\nnaersk\r\nnix-cargo-integration\r\nflake-parts\r\nnix-overlay-guix\r\nsops-nix\r\ngpt4all-nix\r\nrednix\r\nhydra-check\r\ncachix\r\nnix-index\r\nnix-tree\r\nmanix\r\nnickel\r\nalejandra\r\nnixfmt\r\nnixpkgs-fmt\r\nstatix\r\nnix-tour','',''),(1425,'1980-01-01 00:00:00',5,'en','478109098','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I read the paper of Eelco and found the concept interesting. Then I did interviews for a company (in 2016) during which we talked about Nix, which motived me to do the real jump into it. Since then I\'ve been using Nixos daily on my computaters, both personnal and for work.','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A7','A1','A10','','','','','','','','','','','','','','','','','','','','','','',NULL,'Archlinux','A4','','','','','','','','','','','','','','','','','','','','','','','A11','A4','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Most of the things I want are already in Nixpkgs','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','','','','','','Atomic update','Rollbacks','Infrastructure as code','','Archlinux','Y','','','','','','','','','','i3','','',''),(1426,NULL,1,'en','249280105','A2','A4','male','','','','','','','','','','','Y','Y','','','','Y','','Y','','','','Y','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1427,'1980-01-01 00:00:00',5,'en','1924032069','A4','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A10','A1','','','','','','','','A8','A13','A5','','','','','','','','','','','','',NULL,'Nothing good','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A15','A1','','','','','','','','','','','','','','','','','','','A2','A1','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','Y',NULL,'Began using a Mac laptop primarily ','Different job',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Home-manager','',''),(1428,'1980-01-01 00:00:00',5,'en','1695188594','A2','A4','male','','','','','','Y','','Y','','','Y','','','Y','','','','Y','','','','','','Y','','','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Read some article on reddit about NixOS iirc and found it to be amazing to quickly switch hardware (which I do way too often) and to deploy development instances. Nowadays everything including my dot files are optimized for NixOS.','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','Y','','A10','A7','A1','','','','','','','','A13','A3','A14','','','','','','','','','','','','',NULL,'Gentoo, Arch, FreeBSD with Ports','A2','','','','Y','','','','','','','','','','','','','Y','','','Y','','','A2','A1','A15','A10','A13','','','','','','','','','','','','','','','','','A1','A10','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','','','','','','','','','','','','','','','','','Home manager','',''),(1429,'1980-01-01 00:00:00',5,'en','387077465','A2','A6','male','','','','','','','Y','Y','','Y','Y','','','','','Y','','Y','','','','','','','','','','Y','Y','','RSX-11M','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started using Nix when I first started installing NixOS','','','','','','','Y','Y','','','','','','Y','Y','','Y','','Y','','A2','A1','A3','','','','','','','','A14','A8','A9','','','','','','','','','','','','',NULL,'I would probably be using pacman in an Arch-based distro','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A5','A2','A11','A17','A24','A23','A25','','','','','','','','','','','','','','','A5','A2','A11','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I still don\'t feel that I understand the process well enough yet','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','The idea of declarative configuration was intriguing. I installed NixOS in a VM to try it out and liked it. I switched my home desktop and laptop to Nix from Manjaro after some packages in Manjaro got badly broken for the Nth time. NixOS has been one of, if not the most stable distro I have ever run at home. I won\'t deny there aren\'t times when I struggle to get some things to work, usually through a lack of understanding of the different filesystem structure and read-only Nix store. I am learning all the time although the documentation can be hard to follow sometimes.','Y','','Y','','','','','Rock solid stability','Declarative configuration','Availability of packages','I would add more learning resources to help with learning to administer NixOS.','Probably Arch or an Arch-based distro','Y','','','','','','','','Y','','','Home-Manager\r\nSnowflake Lib','','Thank you for developing an exciting and stable Linux OS that I enjoy learning about every day. Those \'Aha!\' moments when something that seemed incomprehensible suddenly makes sense are priceless.'),(1430,'1980-01-01 00:00:00',5,'en','1057830863','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','General productivity','A1','Discovered the nix package manager through social media.','','','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A10','','','','','','','','A8','A9','','','','','','','','','','','','','',NULL,'Probably flatpak','A7','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','General productivity','A1','Started exploring NixOS after discovering the nix package manager. The declarative model with built in rollback intrigued me.','Y','','','','','','','The declarative build system. The system feels really sturdy since I can easily rollback to a previous derivation. Can also quickly try out different system configurations worry free.','Package availability from nixPkgs','','Add clarity around nix flakes and thorough documentation around flakes.','','Y','','','','','','','Y','','','Hyprland','','',''),(1431,'1980-01-01 00:00:00',5,'en','1713471303','A5','A5','male','','','','','','','Y','Y','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was attracted to the rollback functionality of NixOS compared to Gentoo. I was also interested in the sound technical design.','','','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A1','A7','A2','','','','','','','','A12','A9','A10','','','','','','','','','','','','',NULL,'Maybe I would try Guix?','A2','','','','','Y','','','','','','','','','','','','','Y','Y','','','','A25','A13','A1','A5','A2','','','','','','','','','','','','','','','','','A5','A1','','','','','','','','','','','','','','','','','','','','','','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Its atomic rollbacks were a huge improvement over Gentoo. Its support for sharing declarative configurations across machines was attractive.','Y','','','Y','','','','declarative system configurations','atomic rollbacks','incremental updates','','Gentoo','Y','Y','','','','','','','Y','','','niv, nvd, nixd, lorri, nom, nixpkgs-fmt','nom','Thanks for all the great work on nix/nixpkgs/nixos!'),(1432,'1980-01-01 00:00:00',5,'en','1535442834','A1','A3','male','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','','','','N','N','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','To be honest, I loved chris titus video on it. And wanted a challenge. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None',''),(1433,'1980-01-01 00:00:00',5,'en','1950087179','A5','A3','male','','','Y','','','Y','Y','Y','','Y','Y','Y','','','','','','Y','','','','','','Y','','Y','Y','Y','','Y','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','Needed drivers in a newer kernel than NixOS shipped with at the time (shipped 5.15, needed 5.16), now that 23.05 is out I\'m going to give it another try.','','','','','','','Y','No network access so I wasn\'t able to do anything, same issue I mentiond the kernel for above.','','','','','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I needed a newer kernel than NixOS shipped with at the time, because of that I was not able to get network access with the distro. My laptop doesn\'t have an ethernet port, so if the wifi drivers don\'t work at the box I just can\'t use it.','I\'m going to try it now that a new version has released, to see if my issue was fixed and if I can finally give it a try.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','Nix package manager on Fedora just felt clunky to use. It doesn\'t integrate into the GNOME Software store at all, and I much prefer to have a graphical environment when doing my daily stuff. Terminal for me is when I want to start tinkering around, not when I\'m just trying to get something done.',''),(1434,'1980-01-01 00:00:00',5,'en','1988166985','A8','A6','male','','','','','','','Y','','Y','Y','Y','','','','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','Work, but local machines','A3','Love the philosophy and approach.','Y','','','','','','Y','Y','','','','Y','','Y','Y','','Y','','','','A2','A1','A10','','','','','','','','A14','A7','A6','','','','','','','','','','','','',NULL,'no real idea...','A2','','','','','','Y','','','','','','','','','','','Y','','','','','','A15','A2','A8','A14','A9','A22','','','','','','','','','','','','','','','','A15','A8','A25','','','','','','','','','','','','','','','','','','','Y','','','My own configuration overrides. ','A1','','There appears to be too many ways to create / structure packages, or even configure them / override them. The documentation, while improved, still leaves me confused - as a user of nixpkgs, as a potential contributor, as a nix user. Then add flakes on top and the confusing messaging, etc.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Discovered it via articles by Susan Potter...','Y','','Y','','','Y','','Reproducible systems.','Safe roll forward and reverting.','Package availability','I would make security features and value much more obvious and evident. Being able to use the Linux security features very easily without breaking packages (which would mean they may have to be fixed to be security conscious).','Ansible, RHEL (enterprise), - depressing - I would seek something like NixOS...','Y','','','','','Y','','','','','i3, if graphical','none come to mind','Flakes - feels like a hard switch','Right now nix/nixOS is not palatable to peers and I watch them try to implement immutable and other features - it\'s rather painful. What is more painful is the approachability of nix & nixOS. It is a real shame.'),(1435,NULL,1,'en','1250320641','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1436,'1980-01-01 00:00:00',5,'en','1800906415','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','Y','Y','','','','Y','Y','','Y','','','','A3','A2','A1','','','','','','','','A8','A4','A9','','','','','','','','','','','','',NULL,'Conda, docker, podman','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A11','A2','A6','','','','','','','','','','','','','','','','','','','A11','A6','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','Y','','','','Declarative and reproducible configuration.','','','','Ubuntu','Y','Y','','','','','','','Y','','','','Lorri, manix',''),(1437,'1980-01-01 00:00:00',5,'en','1884765956','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Coming from Debian on the server and Arch on the client, I heard about nix and guix here and there and then started to investigate nix when I created a development environment for a new team. Nix clicked immediately for me when I started to play around with nix shell and later nix develop.','Y','Y','','','','','Y','','','Y','','','','','Y','','Y','Y','Y','','A1','A2','A3','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'Makefiles with dependency checks to ensure that the local development environment is set up properly.','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','skaffold + Argo Workflows','A1','A9','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','I started with nix alongside ArchLinux. At the end of last year, I decided to replace a Debian server with a kubernetes cluster on NixOS and just this weekend I migrated my main laptop to NixOS, too.','Y','','','Y','','','','declaritive configuration','huge package repository','configuration as code','I\'d like to see NixOS container/docker story develop more.','Client: Arch, Server: Kubernetes + Alpine Containers','Y','','','','','','','','Y','','','','','Great work, thank you for the big effort! I\'m really happy about how easy it is to get a package merged and to contribute to Nix. This is actually the thing that I value most about Nix - ease of contribution!'),(1438,'1980-01-01 00:00:00',5,'en','619863575','A1','A2','-oth-','Non-binary','','Y','','','Y','Y','','','Y','Y','','Y','','','','Y','Y','','','','Y','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was looking into a solution to automate server provisioning and discovered NixOS.','Y','Y','','Y','Y','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A7','A2','A3','','','','','','','','A14','A9','A8','','','','','','','','','','','','',NULL,'Docker and a stable Linux distribution like Debian, Ubuntu, SUSE, or RHEL','A7','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','A1','A13','A15','A22','A4','A3','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','','Y','','','-oth-','I contribute to documentation in the Nix ecosystem',NULL,'N','Y',NULL,'I need non free software and making them work is too much of a hassle for me.','Better solution to run software that assumes FHS. Something like what VanillaOS is doing.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix.dev, devenv, home-manager, flake-utils','','Among us'),(1439,NULL,1,'en','933557826','A5','A3','male','','','','','','Y','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1440,'1980-01-01 00:00:00',5,'en','1705507295','A2','A3','male','','','','','','','Y','','','Y','Y','','Y','Y','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I have tried many Linux distributions (Ubuntu, Linux Mint, Debian, Linux Mint Debian Edition, OpenSUSE, Chakra, SolydXK, Raspbian, CentOS and much more… before NixOS)\r\n\r\nIn 2016, i wanted a solution to keep my configuration files, so i created my dotfiles repository\r\n\r\nSoon, i started to have scripts that install everything when i use a new distributions\r\n\r\nBut the scripts didn’t work well depending on the distributions (apt VS rpm, packages named differently depending on the repository, packages not available …)\r\n\r\nThen, in 2017, i discovered the reproductability of Docker\r\n\r\nIn 2018, i tried to put everything in a container… i failed, it was not really usuable\r\n\r\nLater, still in 2018, a friend showed me a magical setup that installs everything needed when entering in a folder (with DirEnv + Nix)\r\n\r\nI thought it was done by the distribution, so i installed NixOS 17.09, and struggled for weeks to get a minimum viable distribution\r\n\r\nThen i used Home Manager to handle packages separatly from the system\r\n\r\nA few years later, i used this Home Manager configuration with Ubuntu at work, then with Mac OS X at work\r\n\r\nA couple of years later, i started using Nix Darwin to better handle the Mac OS X configuration (that i still dislike with it)\r\n\r\nSince then, i have introduced a few colleagues and friends to DirEnv and Nix\r\n\r\nFor several years now, i used to practice Katas in a Dojo, and i hate waiting to have an installation that is only half working and absolutly not reproductible ; so i created a few starters to have a simple setup for many languages\r\n\r\nNow, when i start working on any project, i first add the configuration for Nix Flake and DirEnv','Y','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'bunch of bad scripts and containers to try to have some reproductibility','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A1','A2','A15','A25','','','','','','','','','','','','','','','','','','A2','A25','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I made a PR, which took more than 6 months to merge, a colleague boosted it several times, otherwise I would have given up ; with time, I moved on to other things\r\n\r\nI don\'t want to corner people if there\'s a problem and I\'m not available ; i don\'t want to feel uncomfortable because i could make an effort to be available but i don\'t have the energy right now','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','the story is the same as it is for Nix','Y','','Y','','','','','atomic environment / build / version / derivation','configuration as code','rollback system','when i introduce Nix / NixOS, i always say :\r\n> don\'t reproduce my mistakes:\r\n> 1. start Nixifying a few projects\r\n> 2. then use Home Manager\r\n> 3. then, if you\'ve understood the advantages and constraints: try using NixOS; you can look at my repo and ask your questions.\r\n\r\nthe last step is often too important :\r\n* there\'s little documentation for many tools and a large ecosystem\r\n* there are lots of blogs and forums explaining how to do the same thing, but they don\'t say the same thing or do it the same way\r\n\r\nit\'s really confusing for my nooby friends\r\n\r\nso i would say : simplify the documentation','probably a Linux distribution with many :\r\n* bad scripts\r\n* waste of time\r\n* sadness\r\n* containers','','','','','','Y','pushnix','','Y','','','Home Manager','i tried to many stuff that i don\'t remember','Thanks for bringing us Nix'),(1441,'1980-01-01 00:00:00',5,'en','1884739837','A5','A5','male','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted a better way to manage packages, particularly to be able to roll back to previous system states reliably. Over time I\'ve experimented with using nix to manage development environments, but personally I don\'t think it\'s ready for prime time in that respect. I know a lot of people use it for that purpose, and I do too, but I\'ve experimented with teaching other people in my various organizations and there is a steep learning curve that is not worth climbing. I spent some time using Hydra as a distributed build tool, but I found the code for Hydra to be unstable and I regularly ran into problems with it so I gave it up even though I think it has a lot of potential.\r\n\r\nAs a general rule, I find the nix ecosystem to be that way: steep learning curve (the nix language is weird), major changes appearing somewhat out of nowhere if you\'re not plugged in and following things (e.g., flakes), uneven documentation. I wish you guys would improve that!','','Y','','Y','Y','','Y','Y','','','','','','Y','Y','','','','','','A1','A3','A4','','','','','','','','A13','A5','A9','','','','','','','','','','','','',NULL,'I work mainly in scala, and the sbt build tool + maven binary distribution mechanism works fairly well for my software development purposes. I work largely in Ubuntu and apt is OK, not great. Guix is interesting, but (a) I dislike scheme syntax, and (b) it might not exist if nix didn\'t exist (😃). I think in the absence of nix I\'d fall back on using containers a lot more and throwing them out to \"roll back\", or something along those lines.','A1','','','','Y','Y','','','','','','','','','I didn\'t know about 99% of these','Y','','','','','','','GoCD','A11','A2','A25','','','','','','','','','','','','','','','','','','','A11','A5','A2','','','','','','','','','','','','','','','','','','','','','','I don\'t','A1','','I don\'t have the slightest idea how to even begin doing that. I wouldn\'t know where to find the documentation, and in general nix documentation is so uneven I have little confidence the documentation would help me understand how to do it. I also find several members of the nix community fairly condescending and offputting, so I wouldn\'t be inclined to ask for help.','N','Y',NULL,'I\'ve used NixOS in containers in the past, and that worked well for me. However, I don\'t have much need for it now.\r\n\r\nUsing NixOS as my daily operating system is just feels too painful to me. I think the nix language is weird. It\'s also kind of slow. The documentation is uneven, and the community members can be condescending. ','- Extensive, excellent documentation\r\n- Helpful, available community members who are not condescending\r\n- Some kind of wrapper around nix that allows you to write declarations without using that language',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None I can think of','I used \"nox\" as a way to more easily find and manage packages. I stopped using it because at some point it stopped working.','I\'ve said it a few times in the survey, but I\'d like to reiterate: I think there are high-profile members of the nix development community who are a real impediment to adoption. I\'m basing that on my own experience, obviously, but it is worth thinking about. After two or three negative experiences on e.g. github issues where a well-known nix developer more or less says something can\'t be done, or is the \"wrong way\" to do something, or you just have to persist and learn it better, and I leave. I don\'t have time for that. Please, eradicate the phrase \"the nix way\" from your community, and convince people to stop saying things like \"we can\'t do X/add feature X/whatever because that\'s not the nix way\". This isn\'t a religion or a cult, it\'s a piece of software. You really ought to listen to your users and bend \"the nix way\" into what they want and need, and not try to bend potential users into some sort of shape where nix seems intuitive. '),(1442,'1980-01-01 00:00:00',5,'en','366890587','A2','A5','male','','','','','','','','','','','','','','','','','Y','Y','','','Y','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','To only makes configuration one time, no more.\r\nNo brain upgrade, rollback\r\nAnd : minimalist os, service and user isolation in order to limiting surface attack for vps.','','','','','','none','Y','Y','','Y','','','','','Y','','Y','','','','A1','A2','A7','','','','','','','','A5','A6','A4','','','','','','','','','','','','',NULL,'Archlinux','A4','','','','','','','','','','','','','','','Y','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Learning Nix language and good documentation ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','Atomic update ','Remote build','Minimalist os with easy service isolation ','Add : IoT, arm...','Archlinux ','Y','','','','Y','','','','','','budgie','','',''),(1443,'1980-01-01 00:00:00',5,'en','698670668','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','Y','','Y','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A14','A6','A8','','','','','','','','','','','','',NULL,'Arch Linux','A7','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','Y','Y','','','','','','','','','','Y','','','Y','','','','','','','bspwm','','',''),(1444,'1980-01-01 00:00:00',5,'en','1233046259','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A2','A13','','','','','','','','','','','','',NULL,'Probably something like ansible with whatever OS to get a kind of reproducible environment.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','A13','A2','','','','','','','','','','','','','','','','','','A13','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I already have but it can take too much time. + the auto-updating bot is doing a better than me to keep packages up-to-date.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','For getting a reproducible env.','Y','','Y','','','','','Reproducibility','Ease of deployment','Easy rollbacks','The nix-channel, nix flake are way superior','Fedora Silverblue I guess','Y','','','','Y','','','','','','xmonad','','',''),(1445,'1980-01-01 00:00:00',5,'en','1291994438','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','A friend talks very highly of it and I am curious person','Y','','','','','','Y','','','','','','','Y','Y','','Y','','','','A11','A1','A2','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A2','A12','A19','A23','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','The documentation is lacking tutorials and I don’t understand the example packages I find','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I liked home-manager and I wanted to try something different for my personal laptop','Y','','','','','','','','','','','Ubuntu','Y','','','','','','','Y','','','','home-manager','',''),(1446,'1980-01-01 00:00:00',5,'en','129508814','A5','A3','male','','','','','','','Y','','','','','','','Y','','','','','','','','','','','','Y','','Y','','','Solaris','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Reproducible Linux VMs was the original intention.\r\n\r\nNix later became a solution for CI, flake repositories, deployment pipelines, licensing auditing, and now considering security testing + audits.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','A2','A10','A7','','','','','','','','','','','','','','','','','','','','','','',NULL,'Spack, or recreate nix.','A4','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A3','A15','A2','A4','','','','','','','','','','','','','','','','','','A24','A23','A22','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','The lack of tools used for testing nixos-modules and option combinations.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Reproducible VMs.','Y','Y','Y','Y','','','','','','','Nixos options should be able to be referenced, when creating new modules.\r\n\r\nExample:\r\n\r\nservices.tty.(submodule tty).option\r\n\r\nWhen creating a new option, if my module is dependent upon services.tty.*.\r\n\r\nThen instead of redefining the options, I should be able to reference submodule.tty \r\n\r\nFurther more, there should be the ability to have modules create multiple services.\r\n\r\nFor example:\r\n\r\nCurrently you may only run 1 SSH server, but what if I need more than 1?','Emacs.','Y','','','Y','','','','Y','','','I3','nix-index\r\n\r\nNaesrk\r\n\r\nComma','NixOps\r\n','Thank you'),(1447,'1980-01-01 00:00:00',5,'en','1324578894','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was tired of hearing some dude speaking of nix every day','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A10','A1','','','','','','','','A8','A3','A6','','','','','','','','','','','','',NULL,'guix lmao','A4','','','','Y','Y','','','','','','','Y','','','','','Y','','Y','','','','A15','A2','A1','A3','A4','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','Y','Y','','','','','','','','','','','','','Y','','','','','','sway','secrets managers','non-flake nixos\r\nnixops\r\nall the language specific weird unmaintained stuff for packages','you should be better at diversity in the nix events, it\'s often 99% of white people'),(1448,'1980-01-01 00:00:00',5,'en','633644075','A2','A2','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A3','','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I don\'t know where to start','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(1449,'1980-01-01 00:00:00',5,'en','684612542','A5','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','Y','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','','A2','A10','A1','','','','','','','','A8','A6','','','','','','','','','','','','','',NULL,'FreeBSD, wouldn\'t use Linux at all.','A7','','','','Y','Y','','','','','','','Y','','','','','Y','','','','','','A9','A15','A17','A22','A1','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A2','','I have before, but mostly lack of free time. I have a lot of other side projects. Also contribute to FreeBSD pkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I loved the idea of having my entire desktop/server in a single configuration.nix file, as someone that does a lot of configuration management at work this made sense to me.','Y','Y','Y','Y','','','','','','','Better docs.','FreeBSD','','','','','Y','','','','','','sway','','','Love you all!'),(1450,'1980-01-01 00:00:00',5,'en','448166095','A2','A4','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Heard about it from Linux Unplugged podcast','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A7','A2','','','','','','','','A5','A6','','','','','','','','','','','','','',NULL,'Ansible, Debian, Flatpaks','A4','','','','','','','','','','','','','','','','','','','','','','','A15','A2','A25','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Haven\'t had the time to learn about making a derivation and connected stuff','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Heard in Linux Unplugged podcast, and integration of Nix in Debian was imperfect','Y','','Y','','','','','Declarative configuration','Verified configuration deployment','Reliability','','Debian + Ansible + Flatpaks','Y','','','','','','','','Y','','','devenv','','As user of only NixOS (not Nix by itself) it was unclear the separation between the nix and the nixos part'),(1451,'1980-01-01 00:00:00',5,'en','1212531501','A2','A3','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','I like to distro hop and have been using arch derivations for the last few years. After hearing about NixOS and the fundamentals of how it operates I decided to give it a go as I like to tinker and atomic updates along with transferable reproducible builds was very interesting and useful to me','','Y','','','Y','','Y','Y','','','','','','','','','Y','Y','','','A7','A2','A9','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'Arch or arch derivation','A4','','','','','','','','','','','','','','None','','','','','','','','None','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','None currently','A1','','Knowledge and skill','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','I like to distro hop and have been using arch derivations for the last few years. After hearing about NixOS and the fundamentals of how it operates I decided to give it a go as I like to tinker and atomic updates along with transferable reproducible builds was very interesting and useful to me','Y','','Y','','','','','Atomic updates and rollback','Reproducible builds through the config.nix','Rebuild testing','GUI or CLI config.nix generator. Just for an example config that I can reference. The docs are mediocre at best and sometimes finding how to do a particular thing is very difficult. If I could select an option (add package and set these settings for this package) and see a resulting output, this would give a great starting point for further research/learning ','Arch or arch derivative','Y','','','','','','','','Y','','','None yet','None yet','Absolutely brilliant OS and extremely well put together. The ideas and the vision is focused enough to provide a versatile and stable Linux dristro'),(1452,'1980-01-01 00:00:00',5,'en','341337817','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The functional nature of the package manager intrigued me','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','','Y','','A2','A5','A6','','','','','','','','A4','A5','','','','','','','','','','','','','',NULL,'Void or Arch','A4','','','','Y','Y','','','','','','','','','','','','','','','','','builds.sr.ht','A24','A15','A13','A9','A25','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I do occasionally contribute, but time is a constraint, and I also feel as if I don\'t have the judgment necessary to approve PR\'s','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I regularly re-install my OS, NixOS made that much easier','Y','','Y','Y','','Y','','Infrastructure as Code','Cross platform builds / pi support','Extensibility','Better error messages','Arch or Void','Y','','','','Y','','','','','','Sway','','NixOps','Thank you for all your hard work, nix & NixOS are some of the best tools I have ever used '),(1453,'1980-01-01 00:00:00',5,'en','847932815','A2','A4','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','Standard config vs flake, only one user desktop don\'t need to over complicate things, module or not...','','','','','','','','','','','Y','Nix language is way too complexe for configuration, please abstract it with something more easy to start','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Playing with it in a vm, never installed on my main devive','Better start resource with minimal exemple on how to configure standard things',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I love nix and nixos, just first step to enter in the game is too hard '),(1454,'1980-01-01 00:00:00',5,'en','329514546','A1','A2','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Solves pain points with packaging, non-reproducible build and dev environments, and dirty Dockerfiles.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A3','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'Docker, guix','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A3','A2','A1','','','','','','','','','','','','','','','','','','A1','A9','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','It solved a lot of pain points with other distributions, eg. non-reproducible systems, configuration files being in multiple places, etc.','Y','','Y','','','','','All system configuration in a single place.','Reproducibility.','','Make nixpkgs / nixos modules more consistent, eg. style/conventions. Also extensive documentation.','guix, Debian','Y','','','','','','','','','','sway','home-manager\r\nimpermanence','',''),(1455,'1980-01-01 00:00:00',5,'en','1789540954','A2','A5','male','','','','','','','','','','','','','','','','','Y','Y','','Y','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Reading about inmutable systems.','Y','Y','','','','','Y','','','','','','','Y','Y','','','','','','A1','A2','A3','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A2','A23','A15','','','','','','','','','','','','','','','','','','A9','A15','A23','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1456,'1980-01-01 00:00:00',5,'en','249378331','A5','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','',' Wireless networking consultant','Y','Y','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','My company uses a proprietary VPN application called Aruba VIA that is only available in .deb or .rpm, the documentation for doing this in Nix/NixOS was not very intuitive','','','','','','','','','','','Y','Fedora worked with my company\'s VPN client binary, also NixOS would not associate to a wpa3-enterprise (AES CCMP128) ESSID out of the box where Fedora 38 (and Debian 12) did','','','','','','','','Y','','','','','Easier integration of binary-only packages created for other distributions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'My company uses a proprietary VPN application called Aruba VIA that is only available in .deb or .rpm, the documentation for doing this in Nix/NixOS was not very intuitive\r\n','Easier integration of binary-only packages created for other distributions\r\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Solving the third party / distribution binary support with an easier / automated solution would make me try Nix/NixOS again'),(1457,NULL,2,'en','1850753855','A5','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','Between Jobs','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Heard about nix many years ago while still new to linux and was scared of it, then promptly forgot. Now with a little more experience I heard someone raving about having their home setup decoratively and painless dev environments I was very interested and dove in. Now I have 2 computers running nixos and am working towards a configuration for my server. I\'m excited to get that running, then see what we decide to nixify next! (probably try building containers with nix, that sounds so nice)','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A10','A8','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'Probably Fedora Silverblue','A1','','','','Y','Y','','Y','','','','','','Y','','','','','','Y','','','','A1','A2','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Too new to the community yet, still learning the ins and outs of the nix language. But I have been lurking around nixpkgs, getting a feel for the workflow. Contributions will come with time :)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1458,'1980-01-01 00:00:00',5,'en','1005163749','A5','','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was looking for improved installation/configuration across personal devices after lots of problems over the years maintaining a stable Linux configuration and keeping particular applications working.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A10','A2','','','','','','','','A5','A6','A4','','','','','','','','','','','','',NULL,'Guix, more bare-bones Linux Distro like TinyCore or Alpine','A4','','','','','','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'ve found it hard enough to modify/build Nixpkgs that I just fall back to using another package manager rather than taking the time to learn it properly.','N','Y',NULL,'I have a laptop that was 7 or 8 years old at the time and the boot time for NixOS was significantly slower than my Arch setup and I found it so hard to manage things like npm package configurations I gave up.','Some combination of everything settling in to make it a better combined experience.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'I use Holochain and Holo who went all-in on using Nix and done so very successfully for both development environments and as servers deployed with NixOS.','','Even for people like me who only use Nix essentially as a consumer, when a particular dev team focusses on it, it works very well and is invaluable for the applications and development environments I use it for.'),(1459,NULL,1,'en','1060602513','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1460,'1980-01-01 00:00:00',5,'en','67877317','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','','','','','','Y','Y','','Y','','','','Y','Y','','Y','Y','','','A8','A7','A2','','','','','','','','A14','A5','A9','','','','','','','','','','','','',NULL,'Debian','A4','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','Y','','','','','','','','','Y','','','','','','','','Y','Y','','','',''),(1461,'1980-01-01 00:00:00',5,'en','48566306','A8','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','','','Y','','Y','','','Y','','','','','','','Y','Y','','Y','','','','A6','A3','A7','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'Arch','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A17','A15','A5','A3','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','nothing','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','Y','','','','','','','','Declarative flatpaks built-in','Arch','Y','','','','','','','Y','','','','','',''),(1462,'1980-01-01 00:00:00',5,'en','237487568','A5','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Homebrew\'s binary distribution was broken when JCenter closed their service at 2021. I originally switched to nix to use it only as a \"working\" package manager on macOS.','Y','Y','','','','','Y','Y','','','','','','Y','','','Y','','','','A2','A1','A9','','','','','','','','A14','A8','A1','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A3','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Lack of learning resources on best practices on packaging software and extending nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Declarative configuration management','Atomic deployment and rollback','Throw-away environments enabled by `nix shell`','A clear guideline on how NixOS modules should behave','There\'s no other choice other than NixOS! :D','Y','','','','','','','','Y','','','homemanager','',''),(1463,NULL,NULL,'en','632515948',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1464,'1980-01-01 00:00:00',5,'en','1851805351','A5','A6','male','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y','','','','N','N','Y','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1465,'1980-01-01 00:00:00',5,'en','598769807','A1','A2','male','','Y','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I hate homebrew, which is slow and not quite reliable. What\'s interesting is that I happened to be a researcher in programming language theory, and the pure nature of nix language, as well as the idea of mapping the whole state of operating systems into a derivation attracted me. As a result, I started managing software packages on MacOS and Archlinux with Nix package manager.','Y','Y','','Y','Y','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A13','A8','A1','','','','','','','','','','','','',NULL,'docker','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','N','Buying a new PC -- nothing more, as I\'m familiar with the nix ecosystem. I\'ve just thrown away the old PC with Archlinux.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Flakes.','Projects related to managing JavaScript dependencies with Nix. They\'re unusable as most Node.js libraries assume you\'re using either NPM or Yarn.','A better UI for search.nixos.org please!! It\'s 2023 and no one should be using Bootstrap 2 now!\r\nAlso, please consider adding type hints and doc strings into the nix language. This can alleviate the need of documentation and plays an important role in optimizing developers\' experience in programming in the nix language.'),(1466,'1980-01-01 00:00:00',5,'en','193796575','A2','A6','male','','','','','','','','','','Y','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I tried every linux distribution, after I tried nixos I didn\'t try another one.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','Y','','','A2','A10','A1','','','','','','','','A14','A4','A8','','','','','','','','','','','','',NULL,'ubuntu','A1','','','','Y','Y','','Y','','','','','Y','','','','','','','Y','','','','A1','A17','A15','','','','','','','','','','','','','','','','','','','A15','A1','A17','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','Declarative configuration','Reproducible builds','Atomic upgrades and immutability','I would delete the flakes dependency on git, the need to git add something to use flakes. I don\'t understand why this is a must ???','ubuntu ?','Y','Y','','','','','','','Y','','','','',''),(1467,'1980-01-01 00:00:00',5,'en','2141388962','A1','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I use docker to manage my daily dev env, which is kinda heavy I think.\r\nOne day, my workmate told me about Nix, which is really good at managing a declaretive and deterministic env, so I start using Nix everyday.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A6','A14','','','','','','','','','','','','',NULL,'Maybe docker for both dev and prod env.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','','','','','','','','','','','','','','','','','','','','A4','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I think I haven\'t mastering writing packages using Nix.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was using Ubuntu for daily work when I just start working. But there are always things like library version conflicts, can\'t boot after upgrading. \r\nOne day, one of my workmates told me about NixOS and Guix, then after some investigating(it\'s hard at the start, the official document didn\'t give me a top-level view of Nix and NixOS), NixOS became my favorite OS.\r\nI use NixOS for daily work and my personal working OS(even on my selfhosted services server).','Y','','Y','','','','','Deterministic and declaretiv building.','Always able to rollback.','Easy to extend/reuse when managing multiple computers.','Adds:\r\n1. A official secrets management tool.\r\n2. Better NixOps for deploy selfhosted services.','I would use Arch for work and use docker for service deployments.','Y','Y','','','','','','','','','i3, hyperland','None','None',''),(1468,'1980-01-01 00:00:00',5,'en','515717302','A1','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','Someone post a video about NixOS, and I want to try that','','Y','','Y','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A6','','','','','','','','A8','A14','A13','','','','','','','','','','','','',NULL,'podman, docker, flatpak, snap, appimage','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A15','A4','A5','','','','','','','','','','','','','','','','','','','','Y','','','A1','','need to learn Nix language','N','Y',NULL,'not followed the Filesystem Hierarchy Standard','the amount of nixpkgs is more than AUR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1469,NULL,3,'en','2087733907','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1470,'1980-01-01 00:00:00',5,'en','1818446425','A5','A3','male','','','','','','','Y','','','Y','Y','','Y','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Building and deploying Haskell code','Y','Y','','','','','Y','','','Y','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'many tears','A6','','','','Y','','','','','','','','','','','','','','Y','Y','','','','A13','A1','A22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Laziness','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Needed to deploy servers. Found NixOps thought it sounded interesting. So I tired it out. ','','','','Y','','','','Declarative configuration','','','Types in Nix','','','Y','','','Y','','','','','','','','',''),(1471,'1980-01-01 00:00:00',5,'en','450787758','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','','Y','','Y','Y','','','','A1','A2','A7','','','','','','','','A6','A9','A14','','','','','','','','','','','','',NULL,'','A4','','','','','Y','','','','','','','','','','','','','','','','','','A2','A7','A9','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1472,'1980-01-01 00:00:00',5,'en','1262410603','A5','A3','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A7','A1','','','','','','','','A12','A4','A11','','','','','','','','','','','','',NULL,'DNF or APT','A4','','','','','','','','','','','','','','Only `nix repl`','','','','','','','','','A15','A14','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Time','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A5','','Y','','','','','','','Good ZFS support','Declarative, centralized whole-system configuration','Boot into an old generation if needed','I would\r\n1. add the content-addressed or intensional store;\r\n2. fix #11908 (don\'t run systemd services as root unnecessarily) and #20186 (apply systemd sandboxing options, see also, e.g., #208780, #208751, #238222); and\r\n3. add more maintainers, especially for the hardened kernel and hardened profile.','maybe Fedora, Debian, or Qubes','Y','','','','','','','','','','i3wm','I don\'t think there are any.','I don\'t think there are any.',''),(1473,'1980-01-01 00:00:00',5,'en','434808196','A2','A4','male','','Y','','','','','Y','','','','Y','','','','','Y','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Came across it in the process of learning Haskell (the recursive rabbit hole method of discovery).','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A8','A4','A5','','','','','','','','','','','','',NULL,'Some kind of mish-mash of other things: bazel for builds?, homebrew for my personal machine config?, cargo, cabal, poetry, etc. etc.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A15','A2','A8','A1','A3','A4','','','','','','','','','','','','','','','A15','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I don\'t believe I\'m at a level of understanding or competency where I can help much.','Y',NULL,NULL,NULL,NULL,'','','Y','','','A1','I wanted a linux environment on my Mac, and ideally a declarative one. NixOS would be the ideal answer. I managed to cobble together a NixOS VM on MacOS, which is (almost) exactly what I want – this really could have been easier (and there\'s so much effort towards it - hat-tip to Gabriella Gonzalez)','Y','','Y','','','','','Declarative system','Declarative packages','Managing about 90% of a system without worrying about state','An easy way to (declaratively) configure drive volumes on a NixOS VM. This seems to be the missing piece from having a single .nix file to declare an entire VM that could be deployed / spun up on *any* compatible hardware.','Probably Ubuntu. Maybe PopOS (heard good things about it)','','','','','','','','','','','','nix-darwin','','Keep up the great work, please!'),(1474,'1980-01-01 00:00:00',5,'en','283224423','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','','','summoned by getchoo','Y','','','','','','N','N','','','Y','Y','proper instructions for people with no braincells',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Making it easier for those that don\'t understand big technical terms or non advanced users',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None (currently, because of the former questions)','None (currently, because of the former questions)','I came here because a friend is really into nix, and I would get into nix if I had more than the brain capacity of a walnut'),(1475,'1980-01-01 00:00:00',5,'en','940983777','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','doom-emacs (https://github.com/doomemacs/doomemacs) got me interested in reproducible systems, and the only two options were either Nix… or GNU Guix… yeah… ','','','','','','N/A','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A3','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'i guess GNU/Guix… 😔','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A4','A3','A5','','','','','','','','','','','','','','','','','','A15','A10','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','lazyness :<','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','ditto as for nix (saw doom-emacs and liked it)','Y','','Y','','','','','a lot of packages that are super reliable','customization','generations and rollback','kde configs 🥺','gnu guix… 😔','Y','','','','','','','','Y','','','n/a','n/a','trans rights'),(1476,'1980-01-01 00:00:00',5,'en','735513201','A6','A2','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','N','','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I was only trying to see and test things out. I wouldnt say I stopped using it. Its more of I\'m considering it less now. But its a good thing to be honest. I fell in love with Nix and Im thinking of using it directly in my own system(ArcoLinux Arch based distro). \r\n\r\nOne of the things was the lack of a software centre. I understand Nix and NixOS run on configuration but its easy for me to click and install and not have to learn Nix before using the OS itself. ','Having a Software centre removes a lot of friction from trying out new tools or the OS. It\'s a little overwhelming to learn Nix all at once before I can start installing and using NixOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Love Nix I want to try more of it. Nix-shell is just freaking cool. I always try a bunch of software, installing everything and trying them but forgetting to uninstall or abandoned files filling up the storage is a mess. Nix-shell solves all of that for me.'),(1477,NULL,1,'en','846503868','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(1478,NULL,1,'en','349648564','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1479,'1980-01-01 00:00:00',5,'en','798139302','A2','A4','male','','','','','','Y','Y','Y','','','','','','Y','','','','Y','','','','','','','','Y','','','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','Since Nix does not work on Windows you can\'t use it in bigger projects','','','Y','','','','','','','','Y','','','','','','','','','','','','cross platform support',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A5','As apt was the answer to LFS, Nix is the answer to apt/etc-managament: type safe configuration using NixOS option system with purely functional package management.','Y','Y','Y','Y','','','','Reproducibility','Nix language with lazy evaluation','The typed option system for configurations','Add cross platform support so nix can be used in Windows and also add nix support in package managers as it is done for haskell.','Gentoo and Docker (or containers in general)','Y','Y','','','','Y','','','Y','Y','','Package/Option search on nixos.org, nixcloud-webservices (I\'m the author)','- the internal mailserver: we created nixcloud.email\r\n- the cert management: we created nixcloud.tls\r\n- the webservice abstraction: we created nixcloud-webservices\r\n\r\nto name a few','Hope to see you succeed.'),(1480,'1980-01-01 00:00:00',5,'en','1833315368','A2','A3','male','','','Y','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','NixOS seemed like an interesting concept, and a friend recommended it for homelab use','','Y','','','','','','Y','','','','','','','','','Y','','','','A1','A7','A8','','','','','','','','','','','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A1','','So far all my needs have been met by others\' contributions','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Friend recommended it for homelab use','','','Y','','','','','Declarative configuration','Easy rollbacks in case of problems','Helpful and informative error messages','','CentOS or RHEL or Ubuntu probably','Y','','','','','','','','','','','','','Keep up the good work, you\'re all lovely people!'),(1481,'1980-01-01 00:00:00',5,'en','1858238415','A2','A2','male','','','','','','Y','','','','','','','','Y','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','to make my laptop configurable via a centralized organized cnfiguration ','','Y','','','Y','','Y','','Y','','','','','','Y','Y','Y','Y','','','A3','A1','A7','','','','','','','','A4','A5','A3','','','','','','','','','','','','',NULL,'probably justfiles','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A1','A25','','','','','','','','','','','','','','','','','','','A5','A1','A25','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','unclear what to contribute. Small number of \"good first issue\", unclear where to ask questions regarding the process. Little information about packaging best-practices.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','one configuration for my laptop that \"just works\"','Y','','','','','','','Atomic Updates/Rollbacks','Declarative unified nix-based Configuration','Easy setup \"from scratch\". ','Add:\r\n- standardized way to organize code into reusable and composable files in a folder structure\r\n- \"official\" opinionated Templates to get started \r\n\r\n\r\n\r\n','something Arch-based like Manjaro, possibly Ansible','Y','','','','','','','','Y','','','flake-parts, nix2container, nurl, nix-output-monitor','',''),(1482,NULL,1,'en','94056249','A1','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1483,'1980-01-01 00:00:00',5,'en','1191339556','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I already answered the same last year: I was tired of having to use different package managers for everything, searched the internet for the package manager to rule them all, found Nix, fell in love, installed NixOS, fell in love and never came back. Now, everybody around me talks about Nix or even uses Nix, but at the time, I had never heard of it.','','','','','','','Y','','Y','','','','','Y','Y','Y','Y','','Y','','A2','A1','A9','','','','','','','','A9','A8','A4','','','','','','','','','','','','',NULL,'Then I would use Guix XD\r\nI guess the question really meant: If Functional Package Management did not exist, what would you use instead?\r\nThen, I would use opam for OCaml package management, pip and venv for Python package and environment management, etc. and my life would not be as fun.','A1','','','','','','','','','','','','','','','','','Y','','Y','','','','A14','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I had already started using Nix and I liked it a lot. I also had never found a Linux distribution that I was satisfied with (at the time, I was on Fedora, after having getting annoyed with Ubuntu and not having managed to install ArchLinux). Installing NixOS went smoothly even if it was in 2016, without the graphical installer, and that my previous attempt at installing a distribution without a graphical installer had failed (said otherwise, the installation documentation was already pretty good). I discovered that this was the Linux distribution I had been looking for all along, never came back.','Y','Y','','','','','','Declarative configuration.','Atomic updates and rollbacks.','Package availability (nixpkgs).','Snap support? But not very important, because I would use it mostly for testing Snaps that I distribute to other people rather than for myself. I guess I should just use a VM more often.','Then, I would use GuixSD XD. But if that\'s not an option either, I suppose I would use Debian or ArchLinux as a Linux distribution.','','','','','','Y','','','','','i3','Coq Nix Toolbox (but I\'m the co-maintainer of it).','cached-nix-shell (lately I can just stand the small delays when running nix-shell).',''),(1484,'1980-01-01 00:00:00',5,'en','1782285186','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Don\'t remember how it came on my radar. Liked the \"infrastructure as code\" concept.','','','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A13','A3','A15','','','','','','','','','','','','',NULL,'Depends on the task. Most prob containers+ansible','A7','','','','Y','Y','','','','','','','Y','','','Y','','','','Y','','','','A15','A4','A2','A3','A1','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','Absence of a vision for the project, and clear management. What does nixpkgs trying to achieve? Is a server os? A desktop os? An academic experiment? Something that should be comfortably be used in actual production? If the answer \"yes\" to all of that, then we have a problem. nixpkgs looks like a collection of psychopathic patches on top of each other, where people just shove the problem to one another, and everyone doing their own thing. At this point I\'d rather extend nixpkgs locally via flake exported modules then trying to contribute back upstream, cause no one knows where this upstream is going','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','Y','Y','','','','Infrastructure as code','Reproducible builds','Development environments (that are same as prod)','I wish nixos would focus on servers. I think this might become a very nice tool to easily manage complex software infra deployed on complex hardware infra reproducibly.','ansible+podman','Y','','','','','Y','','','','','sway','flake-util lanzaboote fenix naersk','home-manager',''),(1485,'1980-01-01 00:00:00',5,'en','1111402504','A2','A6','male','','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','I\'ve been using Ubuntu since 2010 and have become frustrated with snaps and docker images. Several podcasts I listen to said good things about NixOS set up most of my environment in a VM and after getting that working installed it on my laptop (my only PC).','','','','','','','Y','','','','','','','','Y','Y','Y','','','home-manager','A1','A2','A3','','','','','','','','A5','','','','','','','','','','','','','','',NULL,'Probably stick with Ubuntu, maybe try guix.','A4','','','','','','','','','','','','','','','','','','','','','','','A25','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I\'ve been using Ubuntu since 2010 and have become frustrated with snaps and docker images. Several podcasts I listen to said good things about NixOS set up most of my environment in a VM and after getting that working installed it on my laptop (my only PC).','Y','','','','','','','Application isolation','Declarative configuration','','Make the nix language easier to get started with.','Stick with Ubuntu, maybe try guix.','Y','','','','','','','Y','','','','home-manager','',''),(1486,'1980-01-01 00:00:00',5,'en','793110938','','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A1','A7','','','','','','','','A8','A10','A6','','','','','','','','','','','','',NULL,'Something like SuSE MicroOS, i.e. Linux distribution with atomic updates and easy roll-backs','A4','','','','Y','Y','','','','','','','','','','Y','','Y','','Y','','','','A2','A20','A1','A9','A3','','','','','','','','','','','','','','','','','A2','A1','A20','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Absence of clear coding style rules and previous experiences when my coding style was outright rejected for arbitrary reasons.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Long story short, it was a combination of CFEngine, bash scripts and Debian in production.','Y','Y','Y','Y','','','','Declarative configuration that can\'t be (easily) altered on a running system, and that all manual changes will be lost upon reboot (erase your darlings).','Easy rollbacks, especially when remote hands involved.','Flakes.','Make flakes mainstream.','Probably, Ubuntu or Fedora on desktop, and Suse MicroOS or similar in production.','Y','','','','','Y','','Y','','','','Home manager, Devshell.','NixOps.','Thank you for all work on Nix and NixOS!'),(1487,'1980-01-01 00:00:00',5,'en','1120913004','A3','A3','male','','','','Y','','','Y','Y','','Y','Y','','','','','','','Y','','','','','Y','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I found the distro on Distrowatch and the concept of having the whole system configured from a file was really interesting.','','Y','','Y','Y','Android','Y','Y','','','Y','','','','Y','Y','Y','','Y','','A10','A1','A2','','','','','','','','A4','A3','A6','','','','','','','','','','','','',NULL,'Chezmoi for dotfiles and whatever package manager ships with the distro I would use','A2','Y','','Y','Y','Y','','','','','','','','Y','','Y','','','','Y','','','','A15','A9','A1','','','','','','','','','','','','','','','','','','','A22','A9','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','Y','','','','','','','','Y','','','','','','','','Y','','','','',''),(1488,'1980-01-01 00:00:00',5,'en','2007238443','A2','A3','male','','Y','','','','','','','Y','','','','','','','','','Y','','','Y','','','','','Y','','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','It came with NixOS.','','','','','','','Y','Y','Y','','','Y','','','Y','','Y','','','','A2','A10','A1','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'The distro\'s iterative package manager.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Nothing.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','I liked the idea of declaring my system\'s configuration in a set of files and not having to maintain an iterative system state.','Y','Y','Y','','','Y','','Declarative system configuration.','Helpful community.','Great package availability.','Stabilize flakes and make secrets first-class citizens. Add exhaustive documentation and consolidate deployment tools.\r\n\r\nReplace Nix with Lisp. ','GNU Guix or OpenBSD.','Y','','','Y','','','','','Y','','','sops-nix, home-manager','','Keep up the good work.'),(1489,'1980-01-01 00:00:00',5,'en','334065176','A5','A4','male','','Y','','','','','','','','','','','','','','Y','','Y','','','Y','Y','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','My development environments kept breaking and I wanted something reproducible. I also wanted to be able to test a new alternative and revert back to my original state if it didn\'t work out. One of the main areas where I had an issue with this was around docker/podman/nerdctl ','','Y','','','Y','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A3','A1','','','','','','','','A14','A5','A15','','','','','','','','','','','','',NULL,'I was thinking of using silverblue + snapshots or something like that. ','A4','','','','Y','','','','','','','','','','','','','','Y','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I am a beginner and I really don\'t have a full grasp on how Nix really works. I don\'t feel qualified / know the \"best practices\". Hopefully as I learn more, I\'ll be able to get there.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','My develop environment kept breaking when I was using debian - I was switching between docker/podman/nerdctl and was having issues with them stepping on each other. I also was running out of disk space as I would install all these build tools and then they would remain on my system even when I switched to something else. The final straw was when the dockerfile I was building (which uses cuda) was causing my system to run out of disk space and something got corrupted and I had to restart my dev environment from scratch. That\'s when I started to look for an alternative where I could have a declarative environment and if things broke, I could just recreate it.','Y','','Y','','','','','Declarative syntax to reproduce environment','Ability to test a new package and swap back while keeping the minimal system installed (ie post garbage collect) so that I don\'t keep adding unwanted dependencies to my system and eventually having it break','CUDA / Nvidia drivers : Nix can do a better job with this, but I was able to get it running','1. NVIDIA drivers: Make it clear what one has to do to install nvidia drivers in compute mode (ie without a GUI). \r\nTo add nvidia drivers, you have to do `services.xserver.videoDrivers = [\"nvidia\"];`. This made it feel like I had to install X11, but I didn\'t want to do that. That lead me down the rabbit hole of the cuda-maintainers-cache which was more than a year old. I ended up using the xserver.videoDrivers out of desperation, but then realized that it didn\'t actually install x11, which is what I wanted from the beginning\r\n\r\n2. Nerdctl - I switched to podman for nixos, but I use nerdctl / kaniko by default. There doesn\'t seem to be a nerdctl package and installing it doesn\'t seem straightforward as none of the expected files exist where they should be\r\n\r\n3. making flakes route the default. It just makes sense to maintain nix config in a git repo that is checked out in the user directory somewhere instead of /etc. Having home manager and splitting the files also makes sense. I\'m still new and playing around, but this seems like the way to go.','maybe silverblue + ansible start script? I prefer debian, but there wasn\'t an immutable option for that.','Y','','','','','','home manager, flakes','','Y','','headless / no gui','flakes, home manager','','This is a really great project and I appreciate the hard work everyone has put in. It truly appears to be a game-changing solution for development for me!'),(1490,'1980-01-01 00:00:00',5,'en','744175933','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','Y','','','','','','','','','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I didn’t test it just because I didn’t take time ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1491,'1980-01-01 00:00:00',5,'en','909725691','A1','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A3','A1','A6','','','','','','','','A9','A5','A6','','','','','','','','','','','','',NULL,'guix','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A17','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','Y',NULL,'Experimental features like nix-command and flakes are still experimental, poor documentation for it.\r\nHard to find how to use nix to manage system configurations, no idea on how to convert previous \'normal\' configurations into nix style.','Richer documentation like archwiki.\r\nMore mature features set.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','There should be rss or mailing list for announcements'),(1492,NULL,1,'en','1886534434','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1493,'1980-01-01 00:00:00',5,'en','2084113247','A3','A3','male','','','Y','','','Y','Y','','','','','','','','','Y','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend told me about it. I had a lot of pain trying to build C++ projects in my first job, so it looked great to me. Unfortunately I struggled a lot to learn it. Now I work in a company that uses Nix for its dependency management and feel quite fluent.','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A2','A5','A10','','','','','','','','A14','A8','A3','','','','','','','','','','','','',NULL,'Guix? If that wasn\'t available I would just cry on the corner','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A3','A14','','','','','','','','','','','','','','','','','','A15','A2','A3','','','','','','','','','','','','','','','','','','','','Y','','','A2','','It seems like too much effort... I prefer things to be permission-less and decentralized like flakes','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','First I used just Nix. After I learned more about it at work I got the courage to switch to NixOS','Y','','Y','Y','Y','','','Version-controlling the system configuration','Sharing configurations between multiple devices','Making it easy to undo changes to the system','I would add better documentation, also allow flakes to reference other local flakes','Guix or Ubuntu if it wasn\'t available','Y','','','','','','','Y','','','','','',''),(1494,NULL,NULL,'en','957489635',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1495,'1980-01-01 00:00:00',5,'en','899021604','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My boss had shown me the Nix language and then the Nix shell, and I\'ve got rid of all my Docker images that week.','','Y','','Y','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A3','A1','A10','','','','','','','','A4','A5','','','','','','','','','','','','','',NULL,'Docker and Debian','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A1','A15','A13','A8','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A2','','Where do I start?','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Arch wasn\'t cool anymore','Y','','Y','Y','','','','Reproducibility','Ease of installation','It\'s cool','I\'d make all the docs describe \"how to do a thing\" instead of \"how this component functions\".','Debian','','','','','','Y','','','','','xmonad','home-manager','','Thank you too!'),(1496,NULL,2,'en','1786953642','A3','A3','male','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A2','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A2','A3','A10','','','','','','','','A3','A13','A14','','','','','','','','','','','','',NULL,'','A1','','','','','Y','','','','','','','','','','','','','','','','','Internal tool','A2','A15','A3','A4','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1497,'1980-01-01 00:00:00',5,'en','40180923','A3','A3','male','','','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I\'m a fan of functional programming and was thrilled by Nix declarative reproducible approach as someone who teamed Linux systems for some time.','','','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A10','','','','','','','','A4','A5','A13','','','','','','','','','','','','',NULL,'Arch Linux, AUR, Homeshick, Dockerfile','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A15','A1','A2','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I don\'t find many packages missing.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','Reproducible configuration','Sharing config between machines','Rollbacks','I would add native support for secrets and make evaluation faster.','Arch Linux','Y','','','','','','','','','','i3','nix-direnv\r\nnixos-wsl\r\nnil','lorri',''),(1498,NULL,NULL,'en','2135533798',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1499,'1980-01-01 00:00:00',5,'en','73020549','A5','A3','male','','','Y','Y','','Y','','','','','Y','','','','','Y','Y','Y','','Y','','Y','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Reproducible dev + server environments with nix-shell, then later nixos.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A2','A3','A7','','','','','','','','A6','A4','A7','','','','','','','','','','','','',NULL,'','A7','','','','','Y','','','','','','','','','','','','','','','','','custom','A2','A15','A3','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','','','','','','','','','','','','','Y','','','','','xmonad','https://gitlab.com/deltaex/schematic/','',''),(1501,'1980-01-01 00:00:00',5,'en','55992684','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started to use Nix straight with NixOS. I never used Nix before NixOS.','','','','','','','Y','Y','','Y','','Y','','','Y','Y','Y','','','','A7','A2','A1','','','','','','','','A3','A9','A8','','','','','','','','','','','','',NULL,'Guix','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A3','A25','','','','','','','','','','','','','','','','','','','A13','A15','A1','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','In 2018 I needed to manage development and deployment of Linux software at work. But typical package managers were not focused on easy and reliability and reproducibility. I was already a functional programming devotee, so Nix ideas were easy to understand. Ironically, my first Nix & NixOS experience happened on Raspberry Pi and NanoPi Neo2, what made it harder for a newcomer, but not so much. At work I had two interns (students), who received tasks from me and managed to do most of the packaging work (they knew nothing about Nix before).','Y','','Y','Y','','Y','','Declarative deterministic configuration. All configuration is written in a single language as a whole piece. Git perfectly manages NixOS configuration files (especially compared to other distributions).','Deterministic deployments and updates (although, runtime updates have a bit lower determinism).','Systemd integration with lots of ready to use services (NixOS modules).','Add more services and applications.\r\nAdd interactive editors for configuration, which would take into account current configuration and xdg settings.\r\nAdd mature reliable ways to run unpackaged software or add packaging tool, which does packing in a semi-automatic way.\r\nImprove declarative monitors configuration (current best option is to use `xrandr`).\r\nRemove NixOS channels.\r\nAs for `nix-env` - let is save the changes it does into nix files. It might be useful for newcomers. Otherwise, `nix-env` sometimes makes more confusion by being incompatible with declarative configuration in many ways.','Guix System (GuixSD)','Y','','','','','Y','','','','','xmonad','Home Manager using Nix','','Let\'s make Nix closer to mainstream.'),(1502,'1980-01-01 00:00:00',5,'en','1190637241','A2','A5','male','','','','Y','Y','','','','','','','','','','Y','','','Y','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Got involved at Berlin C-Base.','','Y','','','Y','','Y','Y','','','','Y','Raspberry Pi','','','','','','','Desktop','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'Debian/Ubuntu','A4','','','','','','','Y','','','','','','','','','','','','','','','None','A14','A2','A3','','','','','','','','','','','','','','','','','','','A14','A2','A3','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Lack of time','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Got involved at Berlin C-Base','Y','','','','','','','','','','','Debian/Ubuntu','','','','','','','','Y','','','','','','Keep on the good package manager.'),(1503,'1980-01-01 00:00:00',5,'en','988352749','A2','A4','male','','','Y','','Y','Y','Y','','','Y','Y','Y','','Y','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','Because Hackage listed NixOS under \"Distributions\"','','','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','','Y','','A11','A7','A10','','','','','','','','A8','A1','A7','','','','','','','','','','','','',NULL,'','A2','','Y','Y','Y','Y','Y','Y','','','Y','','','','','Y','','','','','','','','A15','A13','A23','A3','A25','A2','A4','A10','','','','','','','','','','','','','','A5','A6','','','','','','','','','','','','','','','','','','','','','','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','Well, again because it showed up on Hackage - I immediately live-migrated all my machines to NixOS before even playing around with Nix on some other distro.','Y','Y','Y','Y','Y','Y','','The NixOS module system','Comes with all the nice Nix features included ;-)','','My biggest gripe is that networking.firewall.enable is true by default, it should be false ;-)','That\'s hard to say, since I do pretty much everything with Nix and NixOS for so long that it\'s hard to imagine going back to the stone age, err... other distros :-D','Y','Y','','','Y','Y','','','Y','','Hyprland an Wayland and i3 on Xorg','','',''),(1504,NULL,1,'en','1801384428','A5','A5','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1505,NULL,2,'en','1379092155','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','','','Y','','','','','','','','','','Y','','','','A1','A2','','','','','','','','','A14','A8','','','','','','','','','','','','','',NULL,'Arch and arch based Distrobutions','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Time and General Competence. The latter being most important. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1506,'1980-01-01 00:00:00',5,'en','1397477766','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','Y','','','','','','Y','Y','Y','','','','','A2','A1','A11','','','','','','','','A9','A2','A15','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A9','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A1','','hard to get stuff reviewed + committed, have to bug people repeatedly','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','','','','','','Y','krops','','','','notion','','',''),(1507,'1980-01-01 00:00:00',5,'en','116950840','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I got annoyed with how configuration of system utilities and services worked on Linux and started looking for alternatives. Nixos seemed perfect, it makes all the arcaich configuration solutions in /etc a breeze to navigate through. Then i discovered how great nix is to manage my personal projects. ','Y','Y','','Y','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A8','A5','A3','','','','','','','','','','','','',NULL,'I\'d live in a cabin in the woods without internet, on a more serious note, gui but that doesn\'t count as it is forked from nixos so probably just flatpak and different dumb build systems for each task','A2','','','','Y','','','','','','','','','','','','','','','Y','','','','A17','A4','A13','A3','A15','','','','','','','','','','','','','','','','','A17','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time, i want to','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Kinda explained this in the last one about nix.','Y','','','','','','','Managing /etc','Rollbacks','Software availability','Better documentation for different pieces of software and their quirks when paired with nixos. Flakes to stable. ','Open suse. ','Y','','','','','','','','','','Hyprland gaaaaang (desktop portals on nixos are confusing as hell)','Home manager, should probably be part of nixos by now.','Comma. When nix shell exists i see little reason to use comma','Thank you so much for making an amazing operating system and package manager. I cannot state enough how great this is. Something like a voluntary subscription/payment for using nixos/nix whould be appreciated. I\'d pay any day of the week for this. '),(1508,NULL,2,'en','1808882980','A1','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I start using Nix ','','Y','','','Y','','Y','','','Y','Y','','','Y','Y','Y','Y','Y','','','A1','A2','A3','','','','','','','','A3','A8','A9','','','','','','','','','','','','',NULL,'There\'s a twin project called Guix, which works just like Nix. Considering the fact that it builds on top of the store-only Nix, it probably won\'t be available if Nix didn\'t exists.\r\n\r\nIf Nix (and Guix) didn\'t exist, I\'ll continue to use Debian (and therefore apt), trying to stick to the stable channel with updates to avoid breakage, and use Flatpak and Appimage for new versions of projects. I\'ll have to build CERN ROOT (the statistical framework I use daily) manually, which is a pity.\r\n\r\nFor package availability, I might also try Conda.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A4','A3','A2','','','','','','','','','','','','','','','','','','','A2','A1','A9','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1509,'1980-01-01 00:00:00',5,'en','50627500','A2','A6','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Interest ','','','','','','','Y','','','','','','','Y','','','','','','','A1','A3','A7','','','','','','','','A8','A9','','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','','Hyprland, Sway','','',''),(1510,'1980-01-01 00:00:00',5,'en','648244428','A2','A4','male','','','','','','','','','','Y','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I had a lot of positive feedback, and as a programmer, the idea of a declarative OS configuration is amazing.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A14','A5','A6','','','','','','','','','','','','',NULL,'ArchLinux','A2','','','','','','','','','','','','','','','','','Y','','','','','','A1','A24','A19','','','','','','','','','','','','','','','','','','','A1','A24','A13','','','','','','','','','','','','','','','','','','','','','','','A2','','I’m not good enough','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I had a lot of positive feedback and the idea of configuring my system declaratively is amazing','Y','','Y','','','','','configuration.nix','generations','dir-env integration','','ArchLinux','Y','','','','','','','Y','','','','','',''),(1511,'1980-01-01 00:00:00',5,'en','898381300','A2','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','As a way to declare my system.','Y','Y','','','','','Y','Y','','','','','','','','','Y','','','','A1','A2','A9','','','','','','','','A6','A8','A12','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A15','A9','A4','A3','A23','A24','A22','A10','','','','','','','','','','','','','A15','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Sway','','','Keep up the great work!\r\n\r\nThank you!'),(1512,'1980-01-01 00:00:00',5,'en','461014991','A2','A4','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','','','','','Y','Y','','','N','N','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','i got tired of installing linux to each of laptop and trying to make the same environment happen, only to realize that there are small differences, regardless of what i do, due to distribution changes.','Y','','Y','','','','','most of the device configuration comes from config files','','','i think better documentation, to make everyone understand what your configuration.nix is for, and how the pacakge.nix files differ, and if you need to patch a package how to do it.','probably a bunch of docker images with directories config directory for each image.','Y','','','','','','','','','','sway','agenix','dont have any','you guys are doing awesome, thank you and keep up the good work!'),(1513,'1980-01-01 00:00:00',5,'en','257855373','A2','A7','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','N','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','failure of other Linux OS on my machine, which has happened and Im in the process to change over.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none','none','keep it going!'),(1514,NULL,2,'en','648017270','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducibility and the possibility to share config between machines easily','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A3','A7','A10','','','','','','','','A2','A6','A12','','','','','','','','','','','','',NULL,'Guix ;⁠-⁠) or Debian or Arch Linux','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A13','A17','A15','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Almost everything I need is already in there. Other than that the pr backlog is so big that it doesn\'t give me a lot of confidence that my work will be merged.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1515,'1980-01-01 00:00:00',5,'en','2078114802','A2','A3','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I have worked in crypto a long time and one of the early pieces of smart contract tooling I used (dapptools) was developed with Haskell and Nix. I began to deep dive Haskell initially and saw that Nix was a solution to a lot of the package management issues contained there. I eventually abandoned learning Haskell but was very intrigued with Nix and began using it as a daily OS. Currently on my 3rd rewrite of my system configs 4 years later! ','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A4','A8','A12','','','','','','','','','','','','',NULL,'As a developer, just suffer the usage of non-declarative imperative toolchains on Arch/Ubuntu','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','A25','A13','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Not much, just haven\'t enough time. Want to get involved more however','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same as previous answer in the Nix section','Y','Y','Y','','','','','System and user configurations are all declaratively defined','Vm\'s out of the box are useful','','Usage of imperative-like behaviour. `nix profile` and `nix-env` are counter-intuitive, everything should be declared in a file. \r\nWould also be useful to improve tooling to have configuration sources show as type hints in ides but there are obviously limitations. \r\nAdvanced-level, production configs would be useful to advertise to improve nix-fu and share production level system-management techniques. Xe Iaso\'s blogs as an example ','Arch/Ubuntu','Y','','','Y','','','','','','','I3 or hyprland','flake-parts is neat although confusing to grok initially. Would be useful if a more transparent solution was found','flake-utils-plus, just is redundant with the forAllSystems solution',''),(1516,'1980-01-01 00:00:00',5,'en','642210219','A2','A6','male','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','got tired of conflicting packages','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A4','A5','A6','','','','','','','','','','','','',NULL,'language based tools for Rust and Haskell','A4','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A13','A15','A25','','','','','','','','','','','','','','','','','','','A13','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','imposter syndrome','Y',NULL,NULL,NULL,NULL,'A1','','','','','','tired of borked upgrades with Arch linux','Y','','Y','','','','','atomic upgrades','declarative configuration','enormous up to date repository of packages','','guix linux? dunno, never looked back.','Y','','','','','','','','','','xmonad','','nixops',''),(1517,NULL,3,'en','68620664','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1518,'1980-01-01 00:00:00',5,'en','57225332','A2','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I learned that Nix could be used to declaratively configure my system. This is helpful for small projects where state is a hindrance.','','Y','','','','','Y','Y','','','','','','Y','','','Y','','Y','','A2','A1','A10','','','','','','','','A15','A6','A13','','','','','','','','','','','','','Improved reliability of packages. Nix mostly works, but there are a few packages that don\'t work out of the box and are messy to fix. I encountered this in mixed systems (Debian + Nix on top) or niche architectures (e.g., Raspberry Pi).','Virtualization and custom bash scripts to set up the system.','A4','','','','','','','','','','','','','','','','','','','','','','','A15','A1','A25','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','Y','Horrible hacks rewriting package configs','A1','','Not knowledgeable nor confident enough to work on Nix packages. (Arguably because of bad documentation?)','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','','Y','','Y','','','','','Reproducibility','Configs summarize what\'s important in the current system','','I\'d just make everything more reliable.','Virtualization.','','','','','','Y','','','','','','Home Manager.','NixOS on ARM (stopped probably because of hardware limitations).','Thanks for developing Nix!'),(1519,'1980-01-01 00:00:00',5,'en','1847735970','A5','A5','male','','','','','','','','','','','','','','','','','','','','','','','','','Software Engineering Manager','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','As a serial distro hopper, who basically re-creates the same setup on every new distro on every machine, I decided it made sense to build it once in code.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'openSUSE','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Knowledge','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Same reason I started using Nix: reproducing environments across multiple machines. Write once run anywhere.','Y','','Y','','','','','Software installation as code','Configuration as code','Defining hardware as code','Better documentation, convention over configuration','openSUSE','Y','','','','','','','','Y','','','','',''),(1520,'1980-01-01 00:00:00',5,'en','949497853','A5','A2','male','','','Y','','','Y','Y','','','','','','','','','Y','','Y','','','','Y','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I have been using Ubuntu for roughly 3 years. Ubuntu was intended to be my entry-point into Linux before I switched to a more difficult OS. For quite some time, I intended to go with Arch Linux next.\r\nI had a job where I worked primarily in Haskell and I really liked the concept of functional programming. I got a new laptop and was going to install Arch Linux on it, but upon scrolling through the linuxmasterrace subreddit, I saw a post about someone who switched from Arch to NixOS. I had never heard of NixOS before, but the idea of a functional operating system really appealed to me -- I did some research and decided to take the plunge.','','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A10','','','','','','','','A14','A13','A3','','','','','','','','','','','','',NULL,'I probably would be on Arch Linux on this laptop, with my Desktop still running Ubuntu as a backup. I still use it for work as I\'m learning to configure my NixOS laptop.','A4','','','','','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A13','A2','','','','','','','','','','','','','','','','','','','','','','','I use `pip2nix` for my python packages when the dependency tree contains many packages that aren\'t in Nixpkgs.','A2','','I\'m still learning. I would love to add new packages to Nixpkgs and maintain, but the learning curve is steep and frankly, I haven\'t done any research on how to contribute to Nixpkgs since I am worried about not knowing how to contribute properly.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I have been using Ubuntu for roughly 3 years. Ubuntu was intended to be my entry-point into Linux before I switched to a more difficult OS. For quite some time, I intended to go with Arch Linux next.\r\nI had a job where I worked primarily in Haskell and I really liked the concept of functional programming. I got a new laptop and was going to install Arch Linux on it, but upon scrolling through the linuxmasterrace subreddit, I saw a post about someone who switched from Arch to NixOS. I had never heard of NixOS before, but the idea of a functional operating system really appealed to me -- I did some research and decided to take the plunge.','Y','','','','','','','Declarative system. I love that I know what is installed on my device at any time via my `configuration.nix`. No dangling packages to worry about.','Portability. I intend to move my setup to another device, and it is very easy to do so thanks to the declarative system.','Developer environments. nix-shell + direnv makes managing development environments more seamless than I have experienced on any other device.','I would make streamlined ways to add libraries for each programming language (kind of what https://github.com/nix-community/dream2nix is attempting) to Nixpkgs, but also install libraries via pip in a declarative way that doesn\'t require tracking sha256sum, version or anything other than the package name. In theory I should be able to do something like a pip install in my shell.nix and have it only be available within that environment. It is quite a headache having to learn a bit more Nix for each environment that I want to create.','Probably Arch Linux.','Y','','','','','','','','','','i3','pip2nix. I have my own fork that allows overrides for each package.','','I love NixOS, but it\'s so hard to get into it. There should be an online lecture-style webinar series to learn the Nix language, the Nix package manager, Nixpkgs conventions, and the NixOS operating system! I think that would do wonders for Nix/NixOS adoption. It would certainly push me to contribute :)'),(1522,'1980-01-01 00:00:00',5,'en','2040402594','A2','A4','male','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was fascinated by the concept of declarative configuration of NixOS.','','Y','','Y','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A1','A9','A2','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'GNU Guix :P But, most probably, that would not exist without Nix either. I would struggle with Debian apt + flatpak probably.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A3','A20','','','','','','','','','','','','','','','','','','','A2','A20','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I cannot continuously dedicate time to became a reliable maintainer.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was fascinated by the concept of declarative system configuration of NixOS.','Y','','Y','Y','','','','Declarative system configuration','Unified configuration interface to many hardware settings, programs, services','Ability of easy rollback','Better cooperation with Home Manager (no duplicate, incompatible efforts). Establish \"the\" recommended way(s) of system Flake structuring blessed by the NixOS developer team.','Debian Stable + flatpak','Y','','','','','','','','','','sway','Home Manager','NixOps',''); +INSERT INTO `limesurvey_survey_2023` VALUES (1523,'1980-01-01 00:00:00',5,'en','2147241328','A2','A3','male','','','','','','','','','','','Y','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','','','Y','','','','','Y','','','','','','','','','','Y','','','','A1','A2','A10','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A19','A25','','','','','','','','','','','','','','','','','','A19','A2','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','Y','','','','','','','Reproducability','','','','','Y','','','','','','','','','Y','i3','','',''),(1524,'1980-01-01 00:00:00',5,'en','2113164773','A2','A5','male','','','','','','','','','Y','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Fed up with Ubuntu servers that became untouchable over time, plus interested in FP more generally','Y','Y','','','','','Y','Y','','Y','','Y','','Y','Y','Y','Y','','Y','','A2','A9','A1','','','','','','','','A8','A14','A6','','','','','','','','','','','','',NULL,'Ubuntu/debian and crappy automation I guess','A1','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A15','A2','A1','A8','A3','A13','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','Y','','Declarative system definition','Atomic rollbacks','Reproducibility','Make secrets handling easier.\r\nMake rollback easier on raspberry pi, where there is no GRUB menu.\r\nHave more automated garbage collection when disk gets full maybe?','Probably ubuntu and some crappy automation','Y','','','','','','','','','','','direnv + use flake\r\ncachix\r\nnixpkgs-fmt\r\n','various mechanisms for secrets','Nix and NixOS are totally awesome, but I have yet to try to raise awareness at work (despite having the seniority) because it took me years to understand, and I don\'t know how to explain the awesomeness to people in a simple consumable fashion.'),(1525,'1980-01-01 00:00:00',5,'en','1502020396','A3','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A3','A1','A10','','','','','','','','A5','A3','','','','','','','','','','','','','',NULL,'Arch-based distro','A4','','','','Y','','','','','','','','','','','','','','','Y','','','','A1','A2','A15','A11','','','','','','','','','','','','','','','','','','A19','A15','','','','','','','','','','','','','','','','','','','','','','','i don\'t','A1','','Better understanding of nix itself and how to pack','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','','','','Broken packages or old packages listed in search.nixos','Arch based distro','Y','','','','','','','','','','i3','','',''),(1526,'1980-01-01 00:00:00',5,'en','169432055','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Was looking for a way to easily share configurations between multiple machines. I had just picked up Haskell and everyone seemed to be using Nix so I looked into it and NixOS looked very promising so I gave it a try.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A2','A6','A3','','','','','','','','','','','','',NULL,'The standard package manager of the Linux distribution or programming language that I happen to be using.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A2','A1','A13','A15','A17','A9','','','','','','','','','','','','','','','A13','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Most of what I need is already there, and if something breaks it\'s usually fixed before I notice, sometimes I just have to wait for the branch I\'m following (nixos-unstable) to be updated.\r\n\r\nOther than that there is so much going on in the git repository that it is honestly quite intimidating, and I wouldn\'t have a clue where to start. And the pr backlog is so massive and seems to be growing that I worry if it will be worth my time or that my work will never be merged.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as why I started using Nix.','Y','','Y','','','','','Reliability: once I have verified that my system works as expected, I can always reboot that same generation and know that it works. And if my current system is broken I can always roll back to a previous generation.','Modularity + composability give me the ability to reuse and share config between many machines.','It\'s a lot of fun :⁠-⁠)','Have native support for the module system in Nix, so that my infinite recursion stack traces don\'t contain so much noise from the implementation details of the module system, which renders them mostly unusable.','Guix ;⁠-⁠) or Debian','Y','','','','','','','','','','herbstluftwm','Home Manager\r\nSops-nix\r\nImpermanence ','',''),(1527,'1980-01-01 00:00:00',5,'en','1335443359','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I was using Arch Linux, and it broke (not that uncommon but I wasn\'t in the mood to debug and tinker that night), I needed to get work done but some update caused something to misbehave, so I decided to switch distributions, I found the idea of atomic builds to be interesting, I tried NixOS for some days, and apparently it has more than atomic builds, nix-shell is a delight for (C++) development, declarative configuration is awesome, I just liked what NixOS is or wants to be, so I switched, I like Arch Linux, but sometimes I want my system to work, I need to get work done without hours of debugging and tinkering, in NixOS stuff can break but I can always roll back when I need to use my computer :)','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A3','A9','A10','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'Guix, if Guix also didn\'t exist (since it\'s based on Nix) I\'d use Arch Linux.','A4','','','','','','','','','','','','','','','','','','','','','','','A4','A2','A3','A13','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','I don\'t know how, why, what, I don\'t know if I am competent enough, I don\'t know what type of stuff I\'ll work on, I have no idea.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','See story of using Nix, same thing. Arch breaks, me don\'t want to debug and tinker for that particular moment, decide to get rid of it.','Y','','','','','','','nix-shell','all config in one place','atomic builds','documentation','Guix or Linux Mint','','','','','','','','Y','','','','-','',''),(1528,'1980-01-01 00:00:00',5,'en','552367589','A2','A3','male','','','','','','','','','','','','','','','','Y','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','I\'m tired of installation problems ah work, I want something REPRODUCTIBLE.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'Nothing seems to ne like Nix','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'m too new','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','When I started using Nix, I swaped from Arch to NixOS','Y','','','','','','','Declarative configuration','','','Exhaustive/up to date documentation','Arch','Y','','','','','','','','','','hyprland','','','The documentation is the main issue, I am not always sure I can trust everything from it'),(1529,'1980-01-01 00:00:00',5,'en','2048258678','A8','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','cybersecurity','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','Y','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A6','A2','','','','','','','','A9','A3','A14','','','','','','','','','','','','',NULL,'Spack is probably the next best thing?','A7','','','','Y','Y','Y','','','','','','','','','','','','','Y','','','','A1','A3','A9','','','','','','','','','','','','','','','','','','','A5','A8','A6','','','','','','','','','','','','','','','','','','','','','Y','Upstream first','A3','',NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'devenv','nixops',''),(1530,NULL,NULL,'en','723417370',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1531,NULL,1,'en','778353160','A1','A1','fem','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1532,'1980-01-01 00:00:00',5,'en','980356625','A1','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','On macOS, I used to use Homebrew at first. But some programs installed by brew had some problems. For example, tmux can\'t change the prefix key. Also, brew is slow. Next, I used macports but it is slow too because it would compile every package on your computer. At final, I gave Nix a try. However, I used nix-env -i to install programs at that time. So the experience was a little bad. Few days ago, I reinstalled macOS then installed Nix and nix-darwin. This time, despite the bug in nix-darwin(the bug doesn\'t affect daily use, but it print a log saying sth wrong) , it is very great because I can have the experience the same as NixOS. ','Y','','','','','','Y','','','','','','','Y','','','Y','','','','A1','A6','A9','','','','','','','','A5','A14','A13','','','','','','','','','','','','',NULL,'On macOS, maybe give homebrew one more chance. ','A2','','','','','','','','','','','','','','Maybe none','','','','','','','','Maybe none','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','personal ability. Some programs I want to install are a little outdated so I want to make a package at first, but idk how to do that (well maybe because of laziness.)','Y',NULL,NULL,NULL,NULL,'A1','','','','For entertainment, listening to music and watching live-streaming, etc.','A1','Because I have used other normal distros(ubuntu, debian, manjaro, Arch), it seems that the mechanism of package managers in other distros is almost the same. The declarative configuration in NixOS really appeals to me. Also, learning one more skill is good, isn\'t it ? ','Y','','','','','','','Declarative Configuration','rollback','So many updated packages','I would like to add a mirror of nixpkgs in Taiwan.','archlinux','Y','','','','','','','','','','Hyprland, bspwm, dwm','nix-darwin','nix-env -i (install package) that I have tried and now stopped using it.','A better documentation would be better. Like the use of nix-darwin, flakes and home-manager. Also, the website for the option of nix\'s config is a little hard to find (well, I almost used NixOS a month, I finally found it.)'),(1533,'1980-01-01 00:00:00',5,'en','1434961636','A1','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1534,'1980-01-01 00:00:00',5,'en','1767507893','A3','A3','male','','','','','','Y','Y','','','','Y','','','Y','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','','','Y','','Y','','Y','','','','','Y','Y','Y','Y','','','nix flake','A1','A2','A3','','','','','','','','A1','A13','A8','','','','','','','','','','','','',NULL,'GUIX','A2','','','','Y','Y','','','','','','','','','','','Y','Y','','Y','','','','A11','A13','A15','A2','','','','','','','','','','','','','','','','','','A5','A11','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','','','','','','Atomic Changes','Declarative Configurations','','Support for other kernels like BSDs (FreeBSD, NetBSD, etc) and RedoxOS','GUIX','Y','','','','','','','Y','','','','- Emacs Overlay: https://github.com/nix-community/emacs-overlay/\r\n- nix-direnv: https://github.com/nix-community/nix-direnv\r\n- nix-index: https://github.com/nix-community/nix-index\r\n- vulnix: https://github.com/nix-community/vulnix','NUR: https://github.com/nix-community/NUR/',''),(1535,NULL,2,'en','365630904','A5','A3','male','','','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend of mine started using it and kept trying to convince me to try using it. I started using nix shells for various projects while I was still on Arch. Eventually I migrated all my servers and PCs to nixos.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'A bunch of shell scripts to install and configure things in Arch Linux, then chezmoi for dotfile management.','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A9','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1536,'1980-01-01 00:00:00',5,'en','1152017181','A4','A2','-oth-','Non-binary','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','the usual story in broad strokes: I was using Arch and tried NixOS on my laptop before quickly adopting it everywhere I could. my config is 14848 lines now (9811 lines of nix, out of those)','','','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A7','A1','A2','','','','','','','','A4','A6','','','','','','','','','','','','','',NULL,'I previously used Arch with the AUR and lots of suffering. Also docker{,-compose} for servers.','A7','','','','Y','Y','','','','','','','','','I didn\'t realize there were so many features!','','','','','Y','','','','A15','A1','A4','A2','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','reproducibility','atomic rollbacks','abstraction from {systemd,packaging}-hell','Flakes. Please please fix flakes before daring to make them mandatory. There\'s a lot of restrictions, and I do weird things in my config that flakes would break. (And maybe I\'m not right to do those things, but they\'re things /I should be able to do/)\r\n\r\nhttps://github.com/ckiee/nixfiles','','Y','','Y','','','Y','','','','','i3wm','','','contact if needed: https://ckie.dev'),(1537,'1980-01-01 00:00:00',5,'en','478119444','A2','A5','-oth-','','','','','','Y','','','','','','','','','Y','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I have a blog hosted on GitHub, where an org-mode file holds the posts, they get exported and rendered with hugo.\r\nAll this within a GitHub action. For this to work in a pipeline, I had to setup emacs, and I found an action to do just that; it turned out that it used cachix!\r\nThis happened about three years ago.\r\nAround that time also, a friend of mine starting to play with Nix and NixOS, and we got hooked. I set it up on my work laptop, and used it for a few months.\r\nThen the layoffs came, and I had to return that laptop.\r\nAfter long intermission without using NixOS, about three months ago I decided to give it a try again. This time, learning about flakes, home manager, disko, stylix and whatnot. I fell in love hard, and it is my daily driver now. My only driver, actually. I have completely replaced my Arch linux setup with my NixOS flake, and couldn\'t be happier.','','Y','','','','','Y','','','','','','','','','','Y','','Y','','A2','A10','A1','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'Arch Linux + a comprehensive ansible setup (what I used before moving to NixOS).','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Kinda already did :-)','Y','','','','','','','Reproducible environments','Convenient abstraction level for describing a system','Stable-enough unstable channel, which enables rolling release-like experience (similar to Arch Linux).','With Nix flakes stabilized (declaring a wish here), I\'d love to have up-to-date documentation showing \"the flake way\".\r\nAlso, I\'d like for the wizard to support BTRFS out of the box, and possibly leverage disko as well.','Arch Linux with a comprehensive Ansible setup (what I used before).','Y','','','','','','','','','','Hyprland','Home Manager.\r\nStylix.\r\nDisko.','Well, I have moved most of my config from NixOS to Home Manager, leaving on NixOS only what Home Manager cannot manage and/or provide. I\'m quite happy with it.','GNU/Linux has been my daily driver since \'95. Nix and NixOS are a true FP rennaissance for the Linux ecosystem. So happy to be able to be part of this community.'),(1538,NULL,2,'en','1508845520','A2','A3','-oth-','nonbinary','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I started working at a company with a lot of Nix users. They sent me a laptop without an OS installed, so I decided to just take the plunge and go all-in on NixOS.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'Whatever was available, but I wouldn’t be happy about it.','A2','','Y','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','A7','A2','','','','','','','','','','','','','','','','','','A2','A15','A9','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Haven’t needed to yet, but open to doing it when I do.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1539,'1980-01-01 00:00:00',5,'en','1257483287','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Reproducible environments!','','Y','','','','','Y','','Y','','','','','','Y','Y','Y','','','','A1','A3','A10','','','','','','','','A4','A8','A6','','','','','','','','','','','','',NULL,'???','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A2','A1','','','','','','','','','','','','','','','','','','','A2','A1','A13','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Bit complicated.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','To force myself to use nix more.','Y','Y','','','','','','Community Configs for various laptops','Declarative system definition ','Easy way to configure system','Way easier to see what opts can be configured ','Ubuntuq','Y','','','','','','','','','','Xmonad','stacklock2nix\r\nFlake-utils\r\n','Npm to nix things\r\nPoetry2nix\r\nJupyenv',''),(1540,'1980-01-01 00:00:00',5,'en','1630326753','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A2','A10','A4','','','','','','','','A3','A2','A7','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A20','A1','A5','','','','','','','','','','','','','','','','','','','A20','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','Y','','','','','sway','clj-nix\r\ngomod2nix\r\ndevenv','flake.parts\r\ndrv-parts\r\n',''),(1541,'1980-01-01 00:00:00',5,'en','110362617','A2','A4','male','','','','','','','Y','','','Y','Y','','','','','Y','','Y','','Y','','Y','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A6','','','','','','','','A14','A8','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A1','A13','','','','','','','','','','','','','','','','','','','A1','A13','A2','','','','','','','','','','','','','','','','','','','','Y','','','A1','','learning resources + docs as a step-by-step guide to do stuff correctly','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','custom development environments','nix packages collection','feeling that I could do anything if I find the right documentation','I\'d remove all docs which are incomplete, outdated or not best practices','arch or ubuntu','','','','','','','','','Y','','i3/sway','devenv, home-manager','',''),(1542,'1980-01-01 00:00:00',5,'en','1934956604','A2','','','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','home-manager allowed me to replicate the same dev environment between 2 laptops\r\nThere were some quirks integrating home-manger and arch, after a year of using home-manager I\'ve decided to go full OS setup with NixOS','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A10','A7','','','','','','','','A4','A14','','','','','','','','','','','','','',NULL,'I\'ve used stow to replicate dotfiles between machines.\r\nI would probably try Ansible to have some way to replicate my setup between laptops.\r\nAlso would probably use Terraform to configure my home server.','A2','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Lack of knowledge. Simple apps are already packaged, the complex ones require more understanding of Nix and the app build details.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I\'ve been using home-manager with Arch Linux and loved the experience.\r\nBut there were some problems integrating home-manager with Arch and I decided to switch to NixOS','Y','','Y','','','','','version control of system packages and configurations using a single language','ability to rollback to the previous working state','ability to make big system changes by changing a single boolean flag in the configuration file','a simple way to freeze the channels definition to a specific version, something simpler than flakes','maybe ansible','Y','Y','','','','','','','','','xterm with i3wm','cachix','',''),(1543,'1980-01-01 00:00:00',5,'en','1001743055','A7','A5','male','','','','','','','','','Y','','Y','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I\'ve bought into the promise and the design of Nix since I first discovered it on (was it Slashdot!?) more than a decade ago. \r\n\r\nI could not switch to a source distribution at the time, and my local mirrors (here in South Africa) were Debian and RedHat heavy. So I stuck with Debian. \r\n\r\nThis year I our dev team grew a bit and the inconsistencies between environments got to me. We have embedded C++ toolchains, Clojure, all the frontend tooling (NPM, storybook, etc). Developing on OSX and running CI on Linux.\r\n\r\nA mess.\r\n\r\nhttps://devenv.sh was our gateway drug. One afternoon I just smacked it onto our one repo and from there we\'ve grown it out. We now run nix-darwin with consistent environments across all our Macs. With user-custom home-manager settings, all committed to the same repo. \r\n\r\nWe also wrangled all the embedded software IDEs, tools and toolchains into Nix flakes and our own binary cache. This has been a major win - to replicate that finicky environment across different Macs.\r\n\r\nA change or addition of a new tool into our environment has become smooth and obvious. \r\n\r\nIt is lovely.','Y','Y','','','','','Y','','Y','','','','','','','Y','Y','','Y','','A2','A6','A9','','','','','','','','A6','A8','A9','','','','','','','','','','','','',NULL,'We were using a set of Makefiles and bash scripting to sort of replicate our dev environments with https://github.com/Homebrew/homebrew-bundle (a Brewfile in every repository).\r\n\r\nIt was not ideal.','A6','','','','Y','Y','','','','','','','Y','','','','','Y','','','','','','A20','A4','A1','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','The packages I have is proprietary software that we unzip and rebundle into our Nix store. ','N','N','If I went away from OSX, which is not likely right now. My servers are all dumb pre-provisioned EC2 instances as part of a Cloudformation Template I bought which I Do Not Care about: https://docs.datomic.com/cloud/whatis/architecture.html#minimal-admin ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://search.nixos.org/packages','','Thank you all, for this Nix experience. \r\n\r\nThe learning curve remains steep, and it eventually makes sense.'),(1544,'1980-01-01 00:00:00',5,'en','1051174063','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Declarative machine setup','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A8','A13','A5','','','','','','','','','','','','',NULL,'GUIX :) Or Debian','A4','','','','Y','','','','','','','','','','','','','','','','','','','A1','A13','A15','A3','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Nix the language is a painful experience, and I still don\'t know how to configure the tangled soup of a nix pkg.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','Declarative machine config','NixOS exposes the config of the underlying software in a consistent(ish) fashion','','Nix-the-language','Debian, or GUIX','Y','','','','','','','','','','xmonad','','','After several years, I still can\'t abide nix-the-language. It\'s syntactically awkward, but worse, the expected semantics of any given \'thing\' are never clear - the lack of types, and lack of direct output make it feel like programming YAML.'),(1545,NULL,2,'en','632780655','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A14','A1','A12','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A4','A2','A5','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1546,NULL,NULL,'en','1951884909',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1547,NULL,1,'en','1239786521','A8','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1548,'1980-01-01 00:00:00',5,'en','1653886054','A1','A3','male','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','','','','','','','','Y','','Y','','Y','','A1','A3','A2','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'Adhoc scripts, homebrew, asdf','A1','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A2','A15','A9','','','','','','','','','','','','','','','','','','','A2','A17','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Time ','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A4','','Y','','Y','','','','','Declarative environments','Adhoc environments','Source controlled environments ','Add better documentation','Debian or Fedora ','','','','','','Y','','','','','','','',''),(1549,'1980-01-01 00:00:00',5,'en','1848001370','A2','A3','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','Y','','','','','','Y','','','','','','','Y','','','Y','','','','A1','A2','A3','','','','','','','','A9','A4','A14','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A13','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1550,'1980-01-01 00:00:00',5,'en','1177678903','A3','A3','male','','','','','','','Y','','','','Y','','','Y','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted to test what I had read about it in the context of haskell development environments and then had to take over nixops-based infrastructure in a job. Have been using it in work and personal projects ever since.','Y','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A9','','','','','','','','A2','A6','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','Y','','','','A13','A1','A25','','','','','','','','','','','','','','','','','','','A7','A24','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Have to learn better about best practices when contributing. Also the really steep learning curve it can sometime involve to properly elaborate the contribution. What if I’m missing an obvious (to maintainers/advanced users of the package I’m trying to contribute to) alternative?','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I had already used nix for software development and wanted to test NixOS. Was also interested in using home-manager.','Y','','','','','','','Declarative/reproducible configuration','Easy abstractions over system services configuration','Easy rollback changes','','Debian','','Y','','','','','','Y','','','','haskell.nix, direnv, cachix','','Great work on the survey!'),(1551,NULL,3,'en','419280421','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was intrigued by the declarative-ness and reproducibility of the system.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A11','A2','A10','','','','','','','','','','','','',NULL,'Probably a sad, home-made mix of bash and docker.','A2','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A15','A1','A9','A2','A4','A3','A13','A21','','','','','','','','','','','','','','A15','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I\'m not confident enough.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','After seeing the benefits of nix, using NixOS was the next logical step.','Y','','Y','','','','NixOS VMs in UTM on macOS','Declarative configuration ','Configuration via NixOS modules','Reproducibility ','','Ubuntu, maybe Arch ','','','','Y','','','','Y','','','','','',NULL),(1552,'1980-01-01 00:00:00',5,'en','457864542','A2','A4','male','','','','','','Y','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was using Gentoo before. I wanted the ability to build from source to be integrated into the package manager. I got tired of very long Gentoo updates. I was impressed by how well Nix was designed (reproducible builds etc.).','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A3','A7','A1','','','','','','','','A9','A2','A14','','','','','','','','','','','','',NULL,'Guix.','A4','','','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Lack of time, poor health.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same as nix.','Y','','','','','','','Versioned config of the entire system.','','','','','Y','','','','','','','','Y','','','','','I really wanted to learn nix (the language) well enough. I think the best way to do this would be through writing general purpose programs. I found it difficult to start writing general purpose programs last few times I tried (a few years back).'),(1553,'1980-01-01 00:00:00',5,'en','615966973','A2','A2','male','','','','','','','','Y','','','','','','','','','','','','','','','','','Not good at Linux, but now how to install gentoo for example:)','Y','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','Other','my main OS is Windows, so i don\'t use Linux much.','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I only use linux when I need to, as my main system is Windows, but I can use NixOS too','Better documentation ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None',''),(1554,'1980-01-01 00:00:00',5,'en','272178265','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'ve had a separate work-machine and personal-machine that were getting difficult to synchronize (installed applications, Git configuration, Emacs configuration etc.) - NixOS came to rescue.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A7','A1','A3','','','','','','','','A4','A9','A13','','','','','','','','','','','','',NULL,'For managing servers, I\'d probably use Ansible or Terraform; I\'m not sure what I\'d use for synchronizing configurations (probably just a couple of Bash scripts, though).','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','actually sending patches to nixpkgs 😄','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','I also used to use NixOS for work, but some time ago I switched to Mac M1 for which Linux doesn\'t provide proper GPU support just yet (I\'m using nix-darwin, though)','A3','I wanted to have similar environment on work and personal machines.','Y','','Y','','','','','atomic upgrades','atomic rollbacks','ability to add extra checks and assertions to my configurations (through builtins.throw etc.)','Not sure - there are a few things I\'d change in Nix itself, though (a proper type system, faster evaluation, better docs & marketing).','Ubuntu','Y','','','','','','','','','','I used to use xfce + i5 and kde + sway','Not sure if it was mentioned or not, but: nix-darwin, naersk','NixOps (felt somewhat fragile and I was afraid the stateful approach will bit me one time)','❤️🐧'),(1555,'1980-01-01 00:00:00',5,'en','1712265168','A2','A2','male','','','','','','','Y','','','','','','','Y','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','','Y','','A2','A3','A10','','','','','','','','A2','A7','A6','','','','','','','','','','','','',NULL,'ansible, Desktpop: fedora/arch, server: debian','A4','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','garnix','A15','A2','A1','A3','','','','','','','','','','','','','','','','','','A3','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','knowledge','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','Y','Y','','','','reproducibility','configurability','modular','SELinux','ansible, fedora/arch/debian','Y','','','Y','','','','Y','','','','sops-nix, lanzaboot, disko, home-manager','agenix','Thank you for the amazing work'),(1556,'1980-01-01 00:00:00',5,'en','1291590632','A2','A4','male','','','','Y','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Started learning NixOS looking for a better interface to Linux where I can reason about things, keep config under version control.\r\nNix on other systems came later.','','Y','','Y','Y','','Y','Y','Y','Y','','','','','Y','','Y','','','','A2','A1','A10','','','','','','','','A8','A2','A14','','','','','','','','','','','','',NULL,'Ad-hoc scripts','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','AWS CodeBuild','A2','A1','A6','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same story as Nix','Y','','Y','','','','','Version control for my OS config','Modules','','Being able to run NixOS modules directly on a container','Ubuntu','Y','','','','','','','','','','i3','','',''),(1557,'1980-01-01 00:00:00',5,'en','240399270','A7','A3','male','','','Y','','','Y','Y','Y','','Y','Y','','Y','Y','','','Y','Y','','','','','','Y','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','','Journey is outlined on my personal webpage https://amz-x.com','','','','','','AWS EC2','Y','','','Y','','','','','Y','','Y','','','','A1','A3','A2','','','','','','','','A14','A3','A6','','','','','','','','','','','','',NULL,'Docker, NVM, RVM, etc.\r\nFedora if it had 1st class support for Pantheon DE ','A2','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','Looking into Gitea related solution','A1','A15','A7','A5','A6','A10','A2','','','','','','','','','','','','','','','A15','A7','A1','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Online courses, Nixpkgs structure / documentation & currently looking for work.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Journey on my webpage, https://amz-x.com','Y','','','Y','','','','Nix Flake (System Configuration)','Services & Configurations ','Nixpkgs','Better contribution guidelines\r\nImproved Hydra (linking PR to build / channel)\r\nReduced complexity','I don’t know.','Y','Y','','','','','','','','','Pantheon DE','','','I hope the information I provided was useful! '),(1558,NULL,2,'en','329241726','A2','A6','male','','','Y','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','','Partly out of curiosity, I have an interest in functional programming at that is what first drew my attention though if that was the only aspect I would not have continued to use it. Being able to build and configure systems safely with simple rollback is a big plus and being able to construct isolated development environments for separate projects and development streams is even more so.','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'Possibly back to vmware / vagrant or just a bunch of raspberry pi\'s with individual builds','A4','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A19','A2','A11','A9','A5','','','','','','','','','','','','','','','','','A2','A19','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL),(1559,'1980-01-01 00:00:00',5,'en','2084241361','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','N','N','Y','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','I quickly fell in love with the reproducibility ','Y','','Y','','','Y','','','','','','Debian','Y','','','','','Y','','','','','sway','home-manager','',''),(1560,NULL,1,'en','894592591','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1561,'1980-01-01 00:00:00',5,'en','951024103','A1','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','Y','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','Y','Y','','A2','A3','A8','','','','','','','','A8','A10','A6','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','Bitbucket Pipelines','A13','A19','A1','A11','A2','A5','A3','A4','A17','A15','A14','','','','','','','','','','','A5','A19','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','','Y','Y','Y','Y','Y','Y','','','','','','','Y','','','','','','','','','','Sway','','',''),(1562,'1980-01-01 00:00:00',5,'en','751818093','A2','A6','male','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','N','N','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','distro-hopping; nowadays it\'s the only distro that provides a special package out of the box that I use on my home servers','Y','','Y','','','','','packages','','','immutable','not sure; most likely Kinoite','Y','','','','','','','','Y','','','','','Many thanks for producing the distro!!!\r\n'),(1563,'1980-01-01 00:00:00',5,'en','795404497','A4','A3','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','Coworkers ','Y','Y','','Y','Y','','','Y','Y','Y','','','','','','Y','Y','','','','A4','A1','A10','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'Systemd / docker / git','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A6','A2','A9','A12','A4','A15','A3','A1','','','','','','','','','','','','','','A2','A6','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Complexity','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','Production servers recommended by coworkers ','','Y','Y','Y','','','','Déclarative configuration ','Configurability for services','Stability','Ability to use modules and services on Ubuntu with same config declaratively','Docker, systemd, git','Y','','','Y','','','','','','','None','Sops-nix','Cachix','Make Nixos options / services usable on Ubuntu - same idea like nix package manager can be used to install packages'),(1564,NULL,2,'en','1332554712','A2','A3','male','','','Y','','','Y','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','Y','','','','A7','A9','A3','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','Semaphore CI','A2','A13','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1565,NULL,NULL,'en','1446714286',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1566,NULL,1,'en','30251481','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1567,'1980-01-01 00:00:00',5,'en','1153875664','A2','A2','fem','','','','','','Y','','','','','Y','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','','','','','','Y','','','','Y','','','','','','','','',''),(1568,NULL,1,'en','2100874398','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1569,'1980-01-01 00:00:00',5,'en','125894763','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I heard of someone using shell scripts to automatically set up their Gentoo install, and I though that seemed like a good idea. Then I heard of NixOS which functions like that but better, so I decided to make a partition on my Gentoo install to dual boot it, only to mess up and nuke my Gentoo install. So I just installed NixOS as it was during the school year and I wanted my laptop to work, I have been using it ever since.','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A2','A1','A7','','','','','','','','A14','A1','A6','','','','','','','','','','','','',NULL,'I probably would be using Gentoo and nothing like nix/reproducible','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','My knowledge of Nix, as I would like to make my own packages but I don\'t really know what to do. I probably could learn with more time, and most likely I eventually will. but I would like it if learning resources were better.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I heard of someone using shell scripts to automatically set up their Gentoo install, and I though that seemed like a good idea. Then I heard of NixOS which functions like that but better, so I decided to make a partition on my Gentoo install to dual boot it, only to mess up and nuke my Gentoo install. So I just installed NixOS as it was during the school year and I wanted my laptop to work, I have been using it ever since.','Y','','Y','','','','','Reproducability','','','Add support for secrets including at (build?) time. That way it would be possible to hide my factorio token. Not in your control but I would also like if more payed applications would be able to be natively installed on nixos by providing a username and token.','Gentoo','Y','','','','','','','','','','Sway','Home manager','','I really want build time secret support.'),(1570,NULL,NULL,'en','45389318',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1571,'1980-01-01 00:00:00',5,'en','2084206519','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','I used to use Fedora Linux, until Red Hat decided to make CentOS a \"closed source\" OS.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A7','A10','A1','','','','','','','','A14','A5','A13','','','','','','','','','','','','',NULL,'OpenSUSE','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I don\'t know how to contribute.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I used to use Fedora, until Red Hat decided to make CentOS \"closed source.\"','Y','','','','','','','Nix configuration.nix file','sudo nixos-rebuild switch','Reproducibility','Adding the Nix repo to GNOME Software interface.','OpenSUSE','Y','','','','','','','Y','','','','','',''),(1572,'1980-01-01 00:00:00',5,'en','829625168','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted to start using Linux for work. Because I\'ve been using various Linux distributions for years on my personal devices, I knew that it\'s very common that something breaks after an update. For work, this was unacceptable, so I decided to try NixOS to work around this. Because I had to learn Nix anyway, I also started to use nix shells for some projects. After 4 years, almost every project in the company uses nix shell.','Y','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','','Y','Y','','','A7','A2','A1','','','','','','','','A10','A8','A5','','','','','','','','','','','','',NULL,'Tears and Tissues, and probably some Docker hackery','A2','','','','Y','Y','','','','','','','','','','','','','','','','','Bitbucket Pipelines','A1','A5','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Time & complexity','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Atomic updates & rollbacks, declarative system config','Y','','Y','Y','','Y','','Atomic updates & rollbacks','Reproducibility','Ability to share whole system configurations','A web service to configure and download an image, or an iso that installs nixos directly? ','Windows with WSL 😓','Y','','','','','','','Y','','','','Home Manager\r\nDirenv','','Windows support would be HUGE'),(1573,'1980-01-01 00:00:00',5,'en','1145847533','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','Y','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','I was interested in functional programming, and saw Nix the research project. Got interested and tried it, but felt a bit too early. Got back into it when it was more useable.','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A2','A9','A13','','','','','','','','','','','','',NULL,'','A7','','','','Y','','','','','','','','Y','','','','','','','Y','','','','A11','A13','A25','','','','','','','','','','','','','','','','','','','A11','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same as for Nix.','Y','Y','Y','Y','','','','Declarative config and package management','Good System-D integration','','','','Y','','','','','','','','','','XMonad','nixbuild.net','',''),(1574,'1980-01-01 00:00:00',5,'en','644347924','A2','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A1','','','Y','','','','','','','Y','','','','','','','Y','','','','','A8','A7','A10','','','','','','','','A11','A14','A8','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','woodpecker','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','Y',NULL,'I couldn\'t setup a proper immutable system.\r\nSELinux is not well supported.','Hiring a Nix specialist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1575,'1980-01-01 00:00:00',5,'en','205671876','A8','A3','male','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','Y','','','','','','','','','','','','','','','','','','Y','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1576,NULL,NULL,'en','1103598343',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1577,NULL,1,'en','904696533','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1578,'1980-01-01 00:00:00',5,'en','425392796','A2','A5','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I had tried Mandrake, Gentoo, Ubuntu and Debian and was always disappointed that I couldn\'t install new software without compromising the stability of the system. Specifically, I was running Debian stable and wanted to install the Kdenlive video editor. The first step in the instructions was to install Debian Unstable, which I didn\'t want to do. Luckily I was able to install it via Nix. It didn\'t take too long to switch over to NixOS after that, and I\'ve never looked back.','','','','','','','Y','Y','','Y','','Y','','Y','Y','Y','Y','','','','A7','A2','A1','','','','','','','','A3','A6','A11','','','','','','','','','','','','',NULL,'The closest thing I could find, perhaps OSTree based.','A2','','','','Y','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','A1','','I used to, but I don\'t have as much free time any more. I did try to contribute via a PR fairly recently, but it wasn\'t accepted and I didn\'t really understand the reason why or how to satisfy the reviewer.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','After successfully installing a video editor on Debian Stable I started learning more about Nix and NixOS and very quickly realised that this was the OS I had been looking for.','Y','','Y','Y','','Y','','Atomic upgrades and rollbacks','Declarative configuration','Package isolation (being able to experiment with new libraries and tools and still have a stable, reliable system)','','The closest thing I could find, possibly OSTree based.','Y','','','','','','','','Y','','','','','Thanks so much for your work <3<3<3'),(1579,NULL,1,'en','879739190','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1580,'1980-01-01 00:00:00',5,'en','1578270388','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','Y','','','','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Portable development environment.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A5','','','','','','','','A6','A4','A8','','','','','','','','','','','','',NULL,'emerge/portage\r\npacman\r\nrustup\r\npoetry','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A3','A9','A4','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Ansible replacement','Y','','Y','Y','','','','Declarative pinned system configuration via flakes','extendable. changes can be local (overrides etc) but also easily upsteamed to nixpkgs','Seamless building from source','Make nix evaluation faster.\r\n\r\nMake nixos usable in offline environments. Small config change plus nixos-rebuild needs internet.','gentoo, arch, debian\r\nAnsible','Y','','','','','','','','','','sway','simple-nixos-mailserver','',''),(1581,'1980-01-01 00:00:00',5,'en','1810399832','A5','A4','male','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It was 2017, my background is Haskell development, I was attracted to the concept of pure recipes to build a system. However it took me almost 4 years to get comfortable with Nix lang patterns and coding.','Y','Y','','','','','Y','','Y','','','','','Y','Y','','Y','','Y','','A2','A9','A4','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'Brew, Apt or Emerge','A1','','','','Y','Y','','','Y','','','','','','','','','','','Y','','','concourse ','A9','A15','A13','','','','','','','','','','','','','','','','','','','A15','A13','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','Y',NULL,'Security software (sentry) couldn\'t run it\'s malware effectively in my work computer. For personal use I have a MacBook ','Security companies add support to Nixos in their tooling ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sops-nix','','Keep the great work, hopefully the docs keep improving and people stop being afraid of trying something different '),(1582,'1980-01-01 00:00:00',5,'en','699511760','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A1','A4','A9','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A13','A15','A3','','','','','','','','','','','','','','','','','','','A5','A11','A2','','','','','','','','','','','','','','','','','','','','','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','','','','','','','','','Y','','Y','','Y','Y','','','Y','','','','',''),(1583,NULL,NULL,'en','595106094',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1584,'1980-01-01 00:00:00',5,'en','575347684','A5','A5','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I heard other Lisp nerds talking about it :-) I wanted an OS that allowed me install and rollback packages in a simple and reliable way.','','Y','','','','','Y','Y','','Y','','','','','Y','','Y','','','','A3','A1','A7','','','','','','','','A14','A8','A6','','','','','','','','','','','','',NULL,'Don\'t make me think about it :-) I would probably be using Docker on Debian.','A4','','','','Y','','','Y','','','','','','','','','','','Y','','','','TeamCity','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','A better understanding of the nix language and fundamentals, like overlays. The learning curve is very steep and I just don\'t have the personal time to really overcome it.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Lisp nerds recommended it and I wanted to be cool like them.','Y','','Y','Y','','','','','','','','Debian + Docker','Y','','','','','','','Y','','','','Lorri','Flakes, NIM','Thank you for all of the great work you do maintaining an excellent package manager and OS!'),(1585,'1980-01-01 00:00:00',5,'en','1833514183','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','I used Debian since 2000 and a co worker, haskell lover, try nixos one time and show me his new laptop on Nixos. I try Nixos ... and NixOs adopt me','','Y','','','','','','','','','','','','Y','Y','','Y','','','','A7','A2','A1','','','','','','','','A3','','','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A7','','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Time ^^ I have a autistic children','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','','Y','','Y','','','','','rollback/atomic upgrade','stable','','package language','Debian','Y','Y','','','','','','','','','i3','','',''),(1586,'1980-01-01 00:00:00',5,'en','1345665038','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Interest in functional programming and buy-in from that.','Y','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A1','A9','A6','','','','','','','','A5','A10','A15','','','','','','','','','','','','',NULL,'checksums.','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A2','A25','A5','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','I have contributed a couple of patches, but not regularly.\r\nMainly it\'s documentation for Darwin specific steps, since that\'s my main work machine. I also think we need better caching support for Darwin to make the effort worth it.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Used nix-darwin for work, but then installed NixOS on home laptop','Y','','','','','','','More package support/packages up to date','Cross-compilation','Declarative env','Better documentation','Debian.','Y','','','','','','','Y','','','','Nix-darwin, home-manager, sops-nix','nix bundle - > I wish it worked well on aarch64 but it\'s just not very stable on aarch64','My personal laptop runs on x86_64 and using nix is very smooth. By contrast, using it on an aarch64 machine is much worse because of lack of caching.\r\nI would really appreciate it if aarch64 support was at the same level as x86.\r\n\r\nPersonally I very much value the fact that nix derivations work on Darwin, and I would like to see nix improve its Darwin support so that the experience is more stable. '),(1587,'1980-01-01 00:00:00',5,'en','1238180777','A2','A3','-oth-','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was intruiged by some of the concepts, e.g. dependency trees, caching, content-addressibility, declarative configurations, ...\r\n\r\nOne day decided to try NixOS but failed hard to learn it that way (too many new things at once). A few months later decided just to try to set up dev environments & later home-manager, which was an easier entry point. This year I took another shot at NixOS and am now very happy with it 🤘- it was still quite a learning curve, to understand why things work or don\'t work, but it\'s starting to come to a point where it serves me more than it requires. 💜','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','Y','','A2','A1','A7','','','','','','','','A4','A8','A1','','','','','','','','','','','','',NULL,'Dockerfiles 😵‍💫\r\n','A2','','Y','','Y','Y','','','','','','','Y','','','','','Y','','','','','self-made scripts','A1','A15','A25','','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','I am contributing some packages. Sometimes it took a (few) months to get reviewed, but I am not really discouraged by that.\r\n\r\nOtherwise, the unclarity of: adding a flake to the upstream repo might make it easier to maintain but harder to discover & use ...','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I actually tried NixOS as a way to learn Nix, but that was futile. I did not manage to figure out what dodo and why.\r\nBut then I got familiar with Nix in other ways (devenv, home-manager) on Fedora, and this winter gave it another shot, after watching a youtuber showcase of their NixOS setup.\r\n\r\nTook me about a month to get set up and ready on all levels needed for being productive, but it was a lot of fun and learning and now I\'m proud and happy :)','Y','Y','Y','','','','','Declarative / reproducible','Caching','Compatibility with almost all ecosystems & tools','Add: first-class flake registries, software GUI store, built-in ability to easily run/add legacy packaged apps (AppImage, distrobox ...)\r\nChange: waaay better error messages (god help us)\r\n','Fedora probably, maybe Silverblue or some other immutable distro','Y','','','Y','','Y','','Y','','','','Not sure what is part of the nix ecosystem...\r\ndevenv\r\nflake-parts\r\ndeploy-rs','numtide/devshell (now using devenv)','Thank you so much 💜\r\nLove this project & what it might become!'),(1588,'1980-01-01 00:00:00',5,'en','1128951034','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','Y','chief project','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I loved the idea behind nix and nixos','','Y','','','','','Y','Y','','Y','','','','Y','','','Y','','','','A2','A1','A7','','','','','','','','A3','A13','A6','','','','','','','','','','','','',NULL,'Debian','A4','','','','','','','','','','','','','','none','','','','','','','','drone','A25','','','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','nix language ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','reproductible','modularity','rollback','Better how to. Example it\'s difficult for new user to make a derivation. In Arch is very easy','','Y','','','','','','','','','','i3','none','none','please continue'),(1589,'1980-01-01 00:00:00',5,'en','1732526257','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using nix to manage package requirements for dev projects, using nix shell & devenv.','Y','Y','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A7','A10','','','','','','','','A3','A13','A8','','','','','','','','','','','','',NULL,'chezmoi & apk with a word file','A1','','','','Y','Y','','','','','','','Y','','','Y','','','','Y','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I either can\'t contribute packages that I\'m building (corporate/private stuff) or don\'t feel knowledgeable enough to fix quirks in packages already present in nxpkgs (because of my knowledge of the nix DSL)','N','N','I\'m currently trying NixOS (preparing custom images mainly)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'was using niv previously & switched to flakes few weeks ago','nickel, mainly waiting for a broader community adoption',''),(1590,NULL,1,'en','1804725479','A3','A3','male','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1591,'1980-01-01 00:00:00',5,'en','1648860801','A1','A3','male','','','','','','Y','Y','','','','Y','','','Y','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','There was a talk given to a university student group, where the package manager was introduced.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A4','A3','','','','','','','','','','','','',NULL,'Guix sounds like it\'s close enough to Nix. :P\r\n\r\nFor servers, probably cloud-init, or maybe ansible, in order to get a consistent setup.\r\n\r\nFor consistent dev environments? Would likely use various NVM or tools like asdf.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A2','A13','A15','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was apprehensive that using NixOS would be difficult. I worried about situations where \"I need to run some program, but can\'t\".\r\n\r\nInstead, I only started using NixOS once I was more comfortable with writing Nix code.','Y','','','','','','','Declarative','Single file / source of truth','Modularity / Composability','A popular batteries-included \'distribution\' of NixOS.\r\n\r\ne.g. vanilla unconfigured Emacs is abysmal; but Spacemacs or Doom Emacs make for powerful tools.\r\n\r\nAnalogously, NixOS is more of a meta-distribution... many things are one or two lines to add, but some stuff like Bluetooth audio seems more difficult.\r\n\r\nI know this seems under-specified; and many people would want conflicting things.','Depending on my level of enthusiasm, Arch Linux.','Y','','','','','','','Y','','','','home-manager, nixos-generators','',''),(1592,NULL,NULL,'en','595077550',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1593,'1980-01-01 00:00:00',5,'en','2064111147','A5','A5','male','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A1','the environment setup automation','Y','','Y','','','','Y','','Y','Y','','','','','Y','','','Y','','','A2','A1','A7','','','','','','','','A6','A1','A7','','','','','','','','','','','','',NULL,'ansible','A4','','','','','','','','','','','','','','','','','','Y','Y','','','','A1','A2','A5','A7','','','','','','','','','','','','','','','','','','A19','A2','','','','','','','','','','','','','','','','','','','','','','','','A1','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1594,'1980-01-01 00:00:00',5,'en','5719042','A2','A3','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A9','','','','','','','','A8','A2','A1','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A9','A15','A22','','','','','','','','','','','','','','','','','','A15','A22','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','','wlroots / Hyprland','','',''),(1595,'1980-01-01 00:00:00',5,'en','1976234463','A2','A4','male','','','','Y','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Worked for a company that had an airgapped network for security reason. At that time I thought nix would be a good way to get software on these machines.','','Y','','','','','Y','','','','','','','','Y','','Y','Y','','','A3','A1','A7','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'Docker, Dot file repositories, terraform','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A4','A15','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Avoid Configuration Drift','Y','','','','','','','Reproducability','Rollback','','Dunno, I\'d think having a language with better static types / better tooling would be great. Rust in Vscode doesn\'t really work, which sucks. ','Archlinux','Y','','','','','','','','Y','','','crane','',''),(1596,'1980-01-01 00:00:00',5,'en','790598702','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted to learn Linux, used arch, updated and broke my dm (couldn’t log in to my desktop). So flashed my machine to NixOS and have never had any issues (except the odd debuggable internet connectivity problem).','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','','','','A1','A2','A9','','','','','','','','A8','A5','A9','','','','','','','','','','','','',NULL,'I don’t think anything else suits my requirements!','A1','Y','','','Y','Y','','','','','','','','','','','','','','Y','','Y','','A13','A15','A1','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Familiarity with the project, overwhelmed by the number of issues / pr’s, not understanding the social structures and rituals for contributing','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Used arch linux to learn Linux, it broke on update. Flashed my computer and booted into NixOS. Haven’t looked back since.','Y','Y','','Y','','','','Declarative configuration','Reproducibility','Sharing config across multiple machines','Sometimes I find the home manager / NixOS distinction confusing. I also find the module system hard to understand sometimes. If there could be better UX around user specific configuration that would be amazing, but I’m not exactly sure how to achieve it.','MacOS probably. But I love being on Linux, there is just no other distro that does everything I want.','Y','','','','','','','','','','Sway / wayland','Home manager','','I love nix and nixos! Couldn’t image my day to day without it.'),(1597,'1980-01-01 00:00:00',5,'en','1669156374','A5','A4','male','','','','','Y','Y','Y','','Y','','','Y','','','','','','','','','','','','','','Y','','Y','','','','N','N','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Better help, tutorials, docs, etc.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1598,'1980-01-01 00:00:00',5,'en','176774290','A5','A3','male','','','','','','','','','','','','','','','','','Y','Y','','','','Y','','','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was tired of the mediocracy of the existing distros, package managers, config management, and containerized approaches.','','Y','','','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','Y','','A2','A3','A1','','','','','','','','A12','A6','A4','','','','','','','','','','','','',NULL,'FreeBSD\r\n\r\nBut Ive also considered farming since the remainder of the tech ecosystem is such a dumpster fire.','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','its was easier to get started with nix vs running a traditional distro + nixpkgs. ','Y','Y','Y','Y','','Y','','anti-fragile','maximum configurability','simplicity','','As previous mentioned my two options would be 1) FreeBSD 2) Farming','Y','','','','','','','','','','i3','https://search.nixos.org/packages\r\nhttps://noogle.dev/bn','','Keep up the great work!'),(1599,'1980-01-01 00:00:00',5,'en','1543900197','A6','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','Y','I was just experimenting with different distros and stumbled upon nix. Tried it and was a bit complex to just start using so I moved on. Will definitely try to learn an use in future.','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1600,'1980-01-01 00:00:00',5,'en','1161791058','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was using Gentoo (and beforehands Arch) and thus was familiar with source-based heavily customisable systems. At some point of time, I grew annoyed by having to compile everything by myself.\r\nAdditionally, Mic92 and makefu were constantly talking fondly about NixOS, so I tried it.\r\nThe real perks of declarative and functional package and configuration management only became clear to me later on.','Y','Y','','','','','Y','','','Y','','','','','Y','Y','Y','','Y','install software as a user, but only declaratively via home-manager','A2','A10','A1','','','','','','','','A8','A12','A6','','','','','','','','','','','','',NULL,'I\'d probably still be using Gentoo, or would be victim to the \"containerise everything and ship it as vaguley built binary blob images\" brainworms by now.','A4','','','','Y','Y','','','','','','','','Y','','Y','','','','','','','','A2','A4','A3','A10','A9','A15','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','Y','','-oth-','I am in theory a maintainer of packages in nixpkgs, but currently a bit overwhelmed. Will start contributing back in the near future.',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','see the story for Nix, I first used NixOS, then Nix on other platforms as well','Y','','','Y','','','','declarative system configuration','isolation of dependency, purely functional builds','atomicity','','','Y','','','','','Y','krops, flyingcircus tooling','','Y','','','flyingcircus tooling','',''),(1601,NULL,1,'en','1848526475','A5','A5','male','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1602,'1980-01-01 00:00:00',5,'en','1835197108','A6','A4','male','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','Cyber Security Analyst','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I started my career as System / Web Administrator','','Y','','Y','Y','','Y','Y','','Y','Y','Y','rPI','Y','Y','','Y','Y','','','A1','A10','A3','','','','','','','','A14','A4','A2','','','','','','','','','','','','',NULL,'commercial products or popular products','A4','','','Y','Y','Y','Y','','','','','','','','','','','Y','Y','Y','','','','A2','A3','A1','A10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A2','','Nothing stops me as I get chance I will alywas contribute.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','AS Sysadmin ','Y','','Y','Y','Y','Y','','Open Source Tools','maintaniable updates','continuos integration','','Diificult to imagine','Y','Y','','','','','','Y','','Y','','Many others like dockers, bottles','',''),(1603,'1980-01-01 00:00:00',5,'en','1229674507','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','disabled','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','Contributing to nixpkgs','A4','Because it came with NixOS.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A7','A1','A3','','','','','','','','A9','A5','A6','','','','','','','','','','','','',NULL,'I used apt-get on Ubuntu, elementary OS and debian. Later, i used Ansible.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','WoodpeckerCI','A2','A4','A3','A9','A15','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','imports = [ ./package.nix ];','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','We replaced Puppet at work with Ansible. It was easy and nicer to use, so i started configuring my computer with it (installing packages etc). Before that i had check lists what to install after reinstalling a computer. Ansible has fundamental issues, like the system shifts over time and can be messed up manually. A haskell person recommended NixOS in Social Media (i used Diaspora* at that time). NixOS really solves config management and that convinced me. Sadly, it\'s still not user-friendly.','Y','','Y','Y','Y','','','declarative configuration','rollback','customizability (it\'s easy to use the latest kernel and patch it)','hide the complexity behind intuitive GUI applications (System settings, ...) made by the design team of Apple (which follow Dieter Rams\' 10 Principles of Good Design). so basically let the elementary OS team develop Snowflake OS and give them the resources Apple has','before i used elementary OS and before that OS X. i would probably kept using elementary OS, but would be unhappy without the huge software collection nixpkgs offers and without the declarative configuration that makes it really easy to manage multiple systems','Y','','','','','','','','','','Pantheon','trustix (runs in the background, sadly abandoned)\r\nnixpkgs-review (essential for PR review)\r\nsnow (user-friendy nix CLI from Snowflake OS)\r\n','not useful yet:\r\n\r\nnix-software-center\r\nnixos-conf-editor (bad UX)','thanks for your work!'),(1604,'1980-01-01 00:00:00',5,'en','621558439','A5','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A8','','','','','','','','','','','','','','',NULL,'anti-depressants','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'N','Y',NULL,'too confusing','better documentation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'fleek\r\ndevbox','','Thank you for Nix <3 <3 <3'),(1605,'1980-01-01 00:00:00',5,'en','1042784823','A2','A3','','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend of mine didn’t stop plugging it, in the end it got me.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','Y','','A1','A3','A2','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'Bazel, Pacman, custom Python tooling','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','Garnix CI','A15','A2','A13','A25','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'N','Y',NULL,'I couldn’t get it to work with full disk encryption on my Raspberry Pi Model 4.','Having to install a new OS — For now Arch + Nix is fine.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Cachix, Naersk','cargo2nix','When I compare some of my old default.nix files to the newer flake.nix ones, it is amazing how much simpler the default.nix ones were. Flakes have so much boilerplate :\'(\r\n\r\nAlso:\r\n\r\n* That updating flake inputs is done with `nix flake lock --update-input` rather than `nix flake update` is ridiculous.\r\n* That the order of flakes is \"inside-out\", with {devShells,packages}.[platform].[package], gets in the way everywhere, because you want to cross-reference between devShells and packages, but you can’t when the platform is in the way. **Every flake** found in the wild imports numtide/flake-utils to fix this problem. Can’t we just fix it in Nix directly and put the platform in front? And then, if the CLI could default to the current platform, that would be really nice because `x86_64-linux` is really annoying to type.'),(1606,'1980-01-01 00:00:00',5,'en','56484736','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A6','A8','A12','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1607,'1980-01-01 00:00:00',5,'en','1526832872','A2','A2','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I like that my config defines exactly how the system looks and does not describe the way how to get there, like Ansible','','Y','','','Y','','','Y','','','','Y','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A6','A4','A14','','','','','','','','','','','','',NULL,'Probably doing a lot of system configuration by hand in Debian or maybe go through the trouble of Ansible ','A4','','','','Y','','','','','','','','','','','','','','','','','','','A9','A2','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A2','','','','Y','Y','','Y','','','','','','','Y','','','','','Y','','','','','','','',''),(1608,'1980-01-01 00:00:00',5,'en','1770554572','A1','A3','male','','Y','','','Y','','Y','','','','','','','','','','','Y','','','Y','','Y','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Friends from an Archlinux telegram group introduced Nix to me.','','Y','','','','','Y','','','','','','VPS','','Y','Y','Y','','Y','','A1','A2','A10','','','','','','','','A6','A11','A14','','','','','','','','','','','','',NULL,'- conda for dev env\r\n- gentoo profiles for mangaing machines\r\n- ansible (maybe)','A2','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A2','A15','A25','A20','A3','','','','','','','','','','','','','','','','','A15','A2','A20','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Friends from an Archlinux telegram group introduced Nix to me.','Y','','','','','','VPS','Declarative config for systems','Infra as code','atomic deploy and rollback','- harden all systemd services\r\n- edtior tools for helping me writing NixOS config\r\n - auto-complete options\r\n - display option docs\r\n - find all usages of one option in nixos/modules of Nixpkgs','gentoo','Y','','','Y','','','','Y','','','','- home-manager\r\n- agenix\r\n- emacs-overlay\r\n- impermanence\r\n- nixgl\r\n- nixos-mailserver\r\n- flake-parts\r\n- nil\r\n- nixd\r\n- noogle\r\n- nixpkgs-unfree\r\n- nix-systems\r\n- harmonia\r\n- attic\r\n- nixago\r\n','- mach-nix','Please find a way to improve the experiences of contributors because current way of contributing and reviewing does not scale:\r\n- More and more open PRs (not to say open issues)\r\n- Many PRs are lack of review and or merge\r\n - either no one is notified\r\n - or requested people are inactive\r\n - or the author does not know who he should request a review\r\n- What a package maintainer can do is limited if he does not have commit bit set\r\n\r\n\r\nSolutions I proposed:\r\n- Try to use the organization which Linux kernel uses\r\n- Improve the enthusiasm of people to review\r\n - bonus\r\n\r\nJust my two cents.'),(1609,'1980-01-01 00:00:00',5,'en','1942729583','A5','A4','male','','','Y','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','I started using nix to solve a complex dependency problem on an Amazon Linux 1 server. I have since expanded my use to scale complex CI infrastructure and other production deployments. ','Y','Y','','','Y','','Y','','Y','Y','','','','Y','Y','Y','','','','','A2','A1','A11','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'Linux containers and friends. ','A1','','','','Y','','','','','','','','','','','','','Y','','','','','','A1','A15','A2','','','','','','','','','','','','','','','','','','','A2','A1','A15','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I no longer use GitHub. I do not know of a trivial way to contribute patches to GitHub projects without a GitHub account. ','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','mach nix','Thank you for all your work to make nix and the related tools and ecosystem better! '),(1610,'1980-01-01 00:00:00',5,'en','1939101481','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A few twitter folks were loud about it and I decided to give it a try','Y','','','','','','Y','','','','','','','','Y','','Y','','','','A3','A1','A2','','','','','','','','A12','A5','A8','','','','','','','','','','','','',NULL,'','A6','','','','Y','','','','','','','','','','','','','','','','','','','A11','A1','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1611,'1980-01-01 00:00:00',5,'en','1815617411','A5','A4','male','','','Y','Y','Y','Y','Y','Y','','','Y','','','','','Y','Y','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Homebrew wouldn\'t support the mix of Java and Python versions I needed to work on Cassandra (and supportive tooling).','Y','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','','A2','A3','A6','','','','','','','','A8','A12','A9','','','','','','','','','','','','',NULL,'RHEL','A6','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A5','A2','A4','A24','A15','A19','A11','A9','A3','A23','A20','A21','A1','A8','','','','','','','','A5','A2','A24','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','Lack of time and energy (which is also why I need Nix).','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I needed nixpkgs on my Mac for work, and so I wanted to use NixOS for my home lab to keep my configurations in sync.','','','Y','','','','','Stability ','Convenience ','Extensibility ','Stable LTS releases as the generally accepted default.','RHEL','Y','','','','','','','','','','i3wm','devenv, mvn2nix, and the determinant systems installer (to help with onboarding colleagues).','Everything related to Python development and packaging needs work.','I\'m very optimistic about Nix\'s potential to take the leadership position as distro of choice. The opportunity is clear!'),(1612,'1980-01-01 00:00:00',5,'en','1385284015','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A3','A7','','','','','','','','A8','A14','A6','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I\'m really a newbie','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','Y','','','','','Declaritive','Reproducible','Rollback','','','Y','','','','','','','Y','','','','','',''),(1613,'1980-01-01 00:00:00',5,'en','873590809','A2','A3','-oth-','','','','','','','','','Y','','','','','','','','','','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','Y','Y','','Y','','Y','Y','Y','Y','','','','A1','A6','A7','','','','','','','','A6','A4','A13','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A3','','','','','','','','','','','','','','','','','','','','A15','A24','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','Y','','Y','','','','','','','Y','','','','Y','','','','','','Sway','','',''),(1614,'1980-01-01 00:00:00',5,'en','398895816','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A3','A1','A2','','','','','','','','A8','A13','A2','','','','','','','','','','','','',NULL,'','A1','','Y','Y','','Y','','','','','','','','','','','','','','Y','','Y','','A13','A1','A15','','','','','','','','','','','','','','','','','','','A1','A13','','','','','','','','','','','','','','','','','','','','','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','','','','','','','','','','Archlinux ','Y','','','','','','','','Y','','Xmonad','direnv','',''),(1615,NULL,NULL,'en','985128293',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1616,'1980-01-01 00:00:00',5,'en','386140525','A5','A3','male','','','','','','Y','','Y','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Originally, all I wanted was a user-mode package manager for Linux that didn\'t have to compile everything from source. After using Nix that way for a couple years, I tried NixOS and fell in love. :)','Y','Y','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A7','A2','A10','','','','','','','','A6','A8','A10','','','','','','','','','','','','',NULL,'On macOS, I think I\'d be SOL. For basic package management, I\'d use pkgsrc there.\r\n\r\nFor everything else (personal machines, servers, containers in CI, etc.) I would use Guix!','A2','','','','Y','Y','Y','','','','','','','Y','','','','Y','','','','','Azure DevOps','A14','A5','A9','A6','A1','A7','A25','','','','','','','','','','','','','','','A6','A5','A25','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','When I decided to learn NixOS, I decided to dive right in and chose it as my main OS for a work computer at a new job. At that time, there were fewer escape hatches, and package availability was more limited. I had no choice but to learn my way around Nixpkgs to get my system working as desired! Despite the effort that involved, I was hooked. Managing my entire system configuration from a single config file was the dream. Atomic upgrades, rollbacks, and other Nix goodies were icing on the cake.','Y','','Y','Y','','','','Reliable, declarative configuration of virtually everything I use','Sharing configuration (between my systems but also between friends for debugging and demo purposes)','A huge repository of knowledge on how to configure upstream services in the form of the NixOS module system— very helpful to consult even when administering non-NixOS systems','I would like to see most experimental features and ongoing Nix/NixOS work make it over the finish line ASAP. There\'s lots of valuable work going on.\r\n\r\nBut the single thing I would go for if I could only wave that magic wand once is to replace the disparate module systems (and corresponding, separate profile manager for each) of NixOS, Nix-Darwin, Home Manager, and System Manager with a single, unified module system and profile manager.','GuixSD','Y','','','','','','','','Y','','','flake.parts, devenv.sh, nurl, nix-init, determinate Nix installer','flake-utils-plus, fleek, std, niv, pypi2nix, gradle2nix, maven2nix, ',''),(1617,'1980-01-01 00:00:00',5,'en','1570027656','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','RF Systems Design Engineer','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I heard about it on the Linux Unplugged Podcast by Jupiter Broadcasting.','','Y','','','','','Y','','','Y','','','','','','','Y','','','','A7','A2','A1','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'Ubuntu LTS desktop','A4','','','','','','','','','','','','','','','','','','','Y','','','','A2','A1','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','Knowing where to start','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I heard about it on the Linux Unplugged Podcast by Jupiter Broadcasting','Y','','Y','Y','','','','Atomic builds and rollbacks via Grub','Nixpkgs','Declarative environments','Add better documentation that is written for both experienced and new users (separate pages perhaps)','Ubuntu desktop','Y','','','','','','','Y','','','','','','Thank you for what you do.'),(1618,'1980-01-01 00:00:00',5,'en','1015160882','A5','A6','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Arch update crashed boot. I wanted a zfs backend and a large software repo. Nixos fit the bill.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','Y','Y','','A2','A1','A8','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'Fedora silverblue, oci containers, distrobox','A7','','','','Y','Y','','','','','','','','Y','','','','Y','','','','','','A1','A10','A17','A25','','','','','','','','','','','','','','','','','','A1','A25','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Brain power ;-)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Declarative builds','Home manager','ZFS','Finalize flake support','Silverblue + oci + Distrobox','Y','','','','','','','','','','Window Managers (dk, herbstluftwm, hyprland','Cachix ','','Amazing product'),(1619,NULL,1,'en','1621090387','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1620,'1980-01-01 00:00:00',5,'en','1407100084','A2','A3','-oth-','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A7','A2','','','','','','','','A4','A14','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','uhh. i don\'t know nix very well. i don\'t want to be a maintainer, or expect to test software beyond \"works 4 me\". i use overlays with the changes until a pr is created/merged in nixpkgs. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','erase your darlings','Y','','Y','','','','','config-as-code','test/rollbacks','nixpkgs modules/options - make it easy to setup everything','documentation 🤡','a noose, or god forbid guix. third party config management tooling kinda sucks and testing isn\'t straightforward. but a combination of a rolling release distro (arch, rawhide), a decent config management tool (chef - mostly for the surrounding tooling, ansible (maybe)), verification tooling (inspec), and a good way of testing/development (vagrant, kitchen, packer). I think that could cover most of the things I care about.','Y','','','','Y','Y','','','','','i3','disko\r\nimpermanence\r\nhome-manager\r\nnix-darwin\r\nnixos-infect\r\nnixos-anywhere','nixops - terrible documentation. incredibly unclear how to begin, documentation was out of date. afraid of commitment (like most nix tooling) as they haven\'t done a release in a long time, so you\'re expected to raw dog it, which makes things even more confusing.\r\ncolmena - struggled to use the same system config for the colmena config','i want to recommend you, but i can\'t in it\'s current state. the lack of documentation and poor UX (finding what damn package is causing the \"nodejs insecure\" message makes me want to scream. just tell meeee who it issss!!!!!) are the main ones. the language sucks too, mostly due to the lack of documentation, there is nix pills, but i\'m not reading all of that lol.'),(1621,'1980-01-01 00:00:00',5,'en','687126476','A8','A4','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Had tried Ubuntu in years past, but it didn\'t stick. Saw a few open-source projects using this \"nix\" thing, didn\'t get it. Later I got curious about Nix, saw the deterministic benefits, and coincidentally wanted to try Linux OS again. Thought I\'d have an easier time with pure NixOS than nix + some other distro, had a chance to install NixOS, and now I\'ve been using it full-time, far longer than I\'ve used any other Linux distro.','','','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A3','A2','A9','','','','','','','','A4','A8','A15','','','','','','','','','','','','',NULL,'Probably Ubuntu, otherwise WSL2 on Windows.','A3','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A25','A6','A1','A19','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Had tried Ubuntu in years past, but it didn\'t stick. Saw a few open-source projects using this \"nix\" thing, didn\'t get it. Later I got curious about Nix, saw the deterministic benefits, and coincidentally wanted to try Linux OS again. Thought I\'d have an easier time with pure NixOS than nix + some other distro, had a chance to install NixOS, and now I\'ve been using it full-time, far longer than I\'ve used any other Linux distro.','Y','','Y','','','','','Easy rollbacks, making it safe to experiment','Ad-hoc dev environments, so I don\'t end up with a bunch of cruft installed globally','Explicit, version-controllable config, like \"looking for something? start at /etc/nixos/configuration.nix\"','I\'d add an easy-to-use LRU cache for the nix store, so I can run the garbage collector without needing to re-download the things I was using just yesterday.','Probably Ubuntu, otherwise WSL2 on Windows.','Y','','','','','','','','Y','','','','home-manager. The package update process was clunky, and I don\'t think it provided any benefit for me.',''),(1622,NULL,-1,'en','338506042','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1623,NULL,2,'en','325818446','A4','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','office suite','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1624,NULL,NULL,'en','488147373',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1625,NULL,1,'en','643462617','A5','A4','male','','','','','Y','','','','','','','','','','','','','Y','','','','','','','Research software engineer','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1626,'1980-01-01 00:00:00',5,'en','69269909','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','atomic updates, packages support','','Y','','','Y','','Y','Y','','','','','','Y','','','Y','Y','','','A1','A7','A8','','','','','','','','A8','A3','A9','','','','','','','','','','','','',NULL,'Debian, Archlinux','A4','','','','Y','','','','','','','','','','','','','','','','','','','A1','A15','A22','','','','','','','','','','','','','','','','','','','A15','A1','A22','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Nix language','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','Y','','','','','Atomic updates','Rolling and Point release','configuration.nix','easier and more standard programming language','debian','Y','','','','','','','Y','','','','','',''),(1627,NULL,3,'en','1928974312','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Security Engineer ','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Heard about it on Linux Unplugged ','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A6','A1','A2','','','','','','','','A14','A7','A8','','','','','','','','','','','','',NULL,'Ansible','A2','','','','Y','','','','','','','','','','','Y','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Heard about it on Linux Unplugged ','Y','','Y','Y','','Y','','Declarative configuration ','Atomic updates ','Up to date kernel and packages','More amateur radio packages','The best supported Linux or BSD for the hardware with Ansible on top.','Y','','','','','','','Y','','','',NULL,NULL,NULL),(1628,NULL,1,'en','694287393','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1629,'1980-01-01 00:00:00',5,'en','1102849779','A3','A4','male','','','','','','Y','Y','','','Y','Y','','','','','','','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Docker on Mac was absurdly slow. I needed node and java and disliked nvm and friends ','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','','Y','','','','A2','A9','A6','','','','','','','','A6','A12','A14','','','','','','','','','','','','',NULL,'Some combination of Docker, bazel and prozac','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A20','A1','A5','A15','A17','A18','','','','','','','','','','','','','','','','A5','A1','A20','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','N','Straightforward ec2 deployments',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nix direnv\r\nDevenv','',''),(1630,'1980-01-01 00:00:00',5,'en','187079381','A2','A3','male','','','','','','Y','Y','Y','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I was tired of either having dependency issues all the time at work. For example when someone hadn\'t containerized their python project I needed to use or simply when I found a cool new tool that would be helpful but that required other versions of libraries needed by other parts of our work environment. I figured there have to be better ways out there and in search of that I found Nix. Started using it for personal things as I didn\'t want to end up in the same mess we had at work. ','','Y','','Y','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'More containers. Possiblywould try Guix. ','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A14','A2','A22','A17','A3','A15','A1','A20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Currently learning and building confidence that I know how it works (best practices and such). ','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','As I found Nix because of dependency hell at work I started using NixOS in WSL for my personal stuff to try and learn. ','Y','','Y','','','','','Home manager','Declarative, Version controlled and reproducible OS setup for all my servers and systems. ','','','More containers. Probably would run Debian. ','Y','','','','','','','','','','','','',''),(1631,NULL,2,'en','1244438487','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using nix with my Workstation to make my dotfiles reproducibles.','Y','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A7','A1','A2','','','','','','','','A6','A14','A8','','','','','','','','','','','','',NULL,'I would use Guix','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A11','A13','A15','','','','','','','','','','','','','','','','','','','A19','A5','A11','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1632,NULL,3,'en','969597980','A1','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Jupiter Broadcasting!','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','','Y','','','','A10','A7','A2','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'Ansible','A4','','','','Y','','','','','','','','','','','','','','Y','Y','','','Forgejo Actions','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Skill level :)','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Jupiter Broadcasting mentioned it, and RHEL kicking the bucket made me actually move over.','Y','Y','Y','Y','','','','Reproducible configurations','Tons of packages','Lots of documentation','Better documentation.','Ansible','Y','','','','','','','Y','Y','','',NULL,NULL,NULL),(1633,NULL,3,'en','2070694977','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Building Debian packages got old.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A7','A10','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'Some OS tree distro','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Tired of building Debian packages','Y','','Y','','','','','Reproducible','Flakes','Zfs support','Easier to package new applications','Silverblue','Y','','','','','','','','Y','','i3',NULL,NULL,NULL),(1634,NULL,2,'en','198505866','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Jupiter Broadcasting has been covering NixOS for quite some time and I finally decided to take the plunge. It is amazingly simple, yet very complicated.','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A7','A1','A9','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'A combination of openSUSE, Debian, and Ubuntu not necessarily in that order','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','-oth-','Brand new still exploring',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1635,'1980-01-01 00:00:00',5,'en','1320270774','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','Y','','Y','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Atomicity, combination if pkg building and cfg management. Proper language. ','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A7','A1','A9','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','Y','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same as nix: atomicity, cfg mgm','','Y','Y','Y','','','','Build vs switch separation','Local evaluation with local cfgs on top of channel','','LTS (security updates) for at least release n-1 and more attention to detail regarding upgrade paths for slower moving things. (Libxcrypt -really?). Dont retire EOL versions so quickly.','','Y','','','','','','','','','','','Hydra','',''),(1636,'1980-01-01 00:00:00',5,'en','944863289','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','','','','','Y','Y','','Y','','','','A2','A7','A1','','','','','','','','A3','A5','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1637,NULL,1,'en','141829147','A5','A2','male','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1638,NULL,1,'en','527305634','A2','A3','male','','Y','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1639,'1980-01-01 00:00:00',5,'en','553290285','A2','A3','male','','','Y','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend had started using it and wouldn\'t shut up about it','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A6','A8','A9','','','','','','','','','','','','',NULL,'Probably Arch Linux','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A10','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend wouldn\'t shut up about it so I had to try it to please them.','Y','','Y','Y','','','','Easy deployments with rollbacks if things goes wrong','','','','Probably ArchLinux','','','','Y','','','','','','','Sway','','','Please do something about the flakes situation.\r\n\r\nThe situation with the RFC that never got approved and how it was *implemented* without the communities support and shoehorned into \"stable\" versions of nix as an experimental feature is just terrible.\r\n\r\nIt shouldn\'t have happened.\r\n\r\nIt looks terrible both internally and for people observing the community from the sidelines.\r\n\r\nWe need to come to a conclusion here.\r\n\r\nMaybe even the foundation need to do a post mortem on how we got here.'),(1640,NULL,1,'en','960532184','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1641,'1980-01-01 00:00:00',5,'en','428085506','A5','A5','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A2','A10','A7','','','','','','','','A2','A9','A4','','','','','','','','','','','','',NULL,'Language-specific environments for dependencies, like python virtualenv. But for system admin, it\'s unclear. Maybe guix but that\'s kind of the same thing.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A4','A13','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','','Y','','','','','Declarative configuration','Discoverability','','','','Y','','','','','Y','','','Y','','','Home-manager\r\nAgenix\r\nNix-darwin','',''),(1642,'1980-01-01 00:00:00',5,'en','1962806657','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','It looked interesting','','Y','','Y','','','Y','','','','','','','Y','Y','','','','','','A1','A3','A9','','','','','','','','A6','A5','A14','','','','','','','','','','','','',NULL,'Fedora','A2','','','','Y','','','','','','','','','','','','','','','Y','','','','A6','A9','A15','A2','A1','A21','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I wanted to force me to usw nix as a package manager','Y','','','','','','','Reproducibility','Home manager','','','','Y','','','','','','','Y','','','','','',''),(1643,'1980-01-01 00:00:00',5,'en','575555426','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A2','A3','A6','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'Homebrew','A1','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A13','A14','','','','','','','','','','','','','','','','','','','','A20','A24','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','Y',NULL,'Because I mainly work on MacOS','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1644,'1980-01-01 00:00:00',5,'en','585042954','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A9','A8','A6','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A11','A15','','','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','','','','','','Reproducibility ','','','','','Y','','','','','','','Y','','','','','',''),(1645,'1980-01-01 00:00:00',5,'en','793780433','A2','A3','fem','','','','','','','','','','','','','','','','','','','','','','','','','Engineer, IT security','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','','','','','','Y','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','A7','A2','A1','','','','','','','','A8','A11','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A15','A6','A2','','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','Y','Y','','','Declarative configuration','Atomic updates','Configuration management for remote machines','','','Y','','','Y','','','','','','','sway, plasma-mobile','nix-output-monitor','',''),(1646,NULL,2,'en','1090865307','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A2','when i cant find package in other distro, and nixos is really small os','','Y','','','','','','Y','','','','','','Y','','','','','','','A1','A2','A6','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'guix','A4','','','','Y','','','','','','','','','','','','','','Y','','','','','A9','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1647,'1980-01-01 00:00:00',5,'en','442066113','A5','A4','male','','Y','','','Y','','Y','','','Y','Y','Y','Y','','Y','Y','','Y','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Haskell is a mess and I need to use nix to keep packages straight.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','','','','','A2','A3','A1','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'Haskell\'s regular build system','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A2','A4','A3','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Terrible documentation and error messages.','N','Y',NULL,'Terrible documentation and error messages.','A major overhaul of the documentation, tools, and error messages.\r\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Please focus on error messages, documentation and tools. Nix is great! Everything about the nix ux is literally the worst of any tool I ever use.'),(1648,'1980-01-01 00:00:00',5,'en','1272788532','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started out out of curiosity and found it to be a perfect tool to reproduce the same setup everywhere','Y','Y','','','','','Y','','','Y','','','','Y','Y','','Y','','','','A7','A1','A6','','','','','','','','A8','A5','A2','','','','','','','','','','','','',NULL,'I don’t know a real alternative ','A2','','','','Y','','','','','','','','','','','','','','','','','','','A9','A2','A1','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started out out of curiosity and found it to be the most suitable for setting up a robust server. ','Y','','Y','','','','','Rollback ','Configuration centralisation ','Reproducibility ','','Maybe Guix','Y','','','','','','','Y','','','Sway, DWM','','',''),(1649,'1980-01-01 00:00:00',5,'en','151390306','A1','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to be able to have a portal configuration for my development environments that I can put down on any fresh machine and be up and productive in minutes not hours.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A9','A1','A2','','','','','','','','A5','A6','A9','','','','','','','','','','','','',NULL,'Probably a mix of Homebrew and my distro\'s own package manager','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','Garnix.io','A15','A9','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'N','Y',NULL,'I was not comfortable enough with Nix at that point in time to be able to commit fully to an immutable system.','My current OS install breaking down for any reason.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1650,'1980-01-01 00:00:00',5,'en','164534173','A1','A2','male','','','','','','','','','','','Y','','Y','','','','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','Y','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A10','A9','A4','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A15','A1','A19','A2','A9','A4','A3','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1651,NULL,1,'en','1734990993','A2','A4','male','','','','','','','Y','Y','Y','Y','Y','','','Y','','','','Y','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1652,'1980-01-01 00:00:00',5,'en','292865388','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A2','A7','A1','','','','','','','','A8','A4','','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','Y','','A1','A2','A13','A14','A15','A25','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','','','Y','Y','Y','Y','','','','','','','','','Y','Y','','','','Y','','Y','','','sway','','',''),(1653,'1980-01-01 00:00:00',5,'en','125159122','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','declarative configuration and reproducible builds','','Y','','','','','Y','','','','Y','','','Y','','Y','Y','','','','A2','A1','A10','','','','','','','','A14','','','','','','','','','','','','','','',NULL,'archlinux or maybe gnu guix','A4','','','','','','','','','','','','','','','','','','','','','','','A13','A3','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','don\'t feel familiar enough with the nix language and have never contributed to an open source project before.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','declarative configuration and reproducible builds. Prior to nixOS I used archlinux and always felt the need to reinstall every year or two because it felt like enough cruft had built up so i though the declarative nature of NixOS would make that a lot easier. That being said, NixOS\'s approach to packages keeps the filesystem clean and managed in a way that feels clean so I haven\'t felt the need to reinstall.','Y','','','','','','','declarative system configuration','read only filesystem','','','archlinux (with ansible?) or gnu guix','Y','','','','','','','','','','SwayWM','home-manager','','I really love what NixOS is doing. Through out my Linux journey there have only been a few distros that I\'ve used and felt unable to go back; first, was arch with the AUR and then after it was Nix with the fine grained declarative system configuration. it\'s amazing and I can\'t imagine using anything else!'),(1654,NULL,-1,'en','1203871343','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1655,'1980-01-01 00:00:00',5,'en','1180554359','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Because the funktional why of Software delievery seems very great and i wanted to try it out','','','','','','','Y','','','','','','','','Y','','Y','Y','','','A1','A3','A7','','','','','','','','A8','A13','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Not enough experience with Nix and Software Development overall','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','','','','','','','','','Enable partial updates to change everything possible without Internet access','','Y','','','','','','','','','','Sway','','',''),(1656,'1980-01-01 00:00:00',5,'en','501434047','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Thinking functional mate. Kidding, I just googled more difficult Linux distribution ','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A1','A3','A2','','','','','','','','A5','A4','A9','','','','','','','','','','','','',NULL,'Arch Linux ','A1','','','','Y','Y','','','','','','','Y','','','Y','','','','','','','','A2','A3','A4','A13','A20','A25','','','','','','','','','','','','','','','','A2','A20','A25','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Nothing, time','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Same as nix','Y','','','','','','','Bleeding edge','Reproducible builds','Composable','NixOS is rock solid. Some packages need to be polished ','Arch Linux ','Y','','','','','','','','','','Qtile, Xmonad','None','None','Thanks for the awesome work! I will help!'),(1657,'1980-01-01 00:00:00',5,'en','415981037','A5','A4','male','','','','','','','Y','','','','','Y','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A1','A2','A11','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A15','A17','','','','','','','','','','','','','','','','','','','A9','A15','A17','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1658,NULL,NULL,'en','577344885',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1659,'1980-01-01 00:00:00',5,'en','2109800072','A2','A1','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','My friend told me about NixOS. Then I installed NixOS on my laptop. Now I have two NixOS home servers :D','','Y','','','','','Y','Y','','','','Y','','','Y','Y','Y','Y','Y','','A3','A10','A5','','','','','','','','A8','A6','A1','','','','','','','','','','','','',NULL,'I don\'t know','A7','Y','','','Y','Y','','','','','','','','','','Y','','','','','','','WoodPecker','A15','A1','A24','A25','','','','','','','','','','','','','','','','','','A15','A7','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Same as Nix','Y','','Y','','','Y','','Rollbacks','Isolated packages','Declarative config','I would add support for non-systemd environments in NixOS','Gentoo Linux','Y','','','Y','','','','Y','','','Sway ','https://github.com/nix-community/lanzaboote\r\nhttps://github.com/nix-community/home-manager\r\nhttps://github.com/ipetkov/crane','',''),(1660,'1980-01-01 00:00:00',5,'en','262863847','A5','A4','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','','Y','','A1','A2','A7','','','','','','','','A4','A8','A2','','','','','','','','','','','','',NULL,'Gentoo','A4','','','','Y','Y','','','','','','','','','','','','','','Y','Y','','','A13','A3','A9','A15','A4','A2','','','','','','','','','','','','','','','','A13','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','Y','','','','','','','Y','','','','','','','','Y','Y','','','',''),(1661,'1980-01-01 00:00:00',5,'en','181368762','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started out using Guix for declarative package management on top of Arch Linux (i.e. being able to store installed packages in git), then ran into frustrations between system and Guix-managed libraries. Looked at Guix System as a full OS, but decided that the extra maturity and pragmatism of NixOS was a better way to do things.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A4','A3','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A22','A15','A24','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Declarative package and system configuration','Seamless extensibility by adding custom packages','Rollbacks via grub and nixos-rebuild','','Guix System or Arch','Y','','','','','','','','','','Sway','','',''),(1662,'1980-01-01 00:00:00',5,'en','389903509','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A3','A10','','','','','','','','A9','A8','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A13','A25','','','','','','','','','','','','','','','','','','','A2','A13','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','home-manager','',''),(1663,NULL,NULL,'en','287652610',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1664,NULL,1,'en','753203990','A2','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1665,'1980-01-01 00:00:00',5,'en','1187271827','A2','A3','male','','','','','','','Y','','Y','Y','Y','Y','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Deploying a complex software and configuration stack onto robots and supporting servers.','Y','','','','','','Y','','','Y','','Y','','','Y','','Y','','','Building NixOS and deploying over SSH','A2','A1','A10','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'Docker containers, shell scripts and human tears ','A1','','','','Y','Y','','','','','','','','','','','','','','','','','None','A15','A1','A2','A4','','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','A2','','Contributing requires significant knowledge of nixpkgs arcana and library functions.','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','','','','','Y','','','','nixos-rebuild','Reproducible builds','Configuration as code ','Add official and well-developed support for deployment, and a way to quickly redeploy single applications on a machine during development','Docker containers and some other Linux','Y','','','','','Y','','','','','','crate2nix, arduino-nix, naersk, poetry2nix','','Nix has sharp edges but it can do things that nothing else can.\r\n\r\nIf the project (or a related startup) is able to create a golden, well supported path for a common need (e.g application CI and packaging, building and deploying machine images) it could take off very quickly.'),(1666,NULL,1,'en','932074980','A2','A3','male','','Y','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1667,'1980-01-01 00:00:00',5,'en','470491021','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking for a way to move away from imperative pkg managers to manage my systems and NixOs looked like a suitable solution and I had colleagues who could help me learn','','Y','','','Y','','Y','','','','','','','Y','Y','Y','Y','Y','','','A2','A3','A10','','','','','','','','A6','A14','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','Y','','','','','','A2','A15','A23','A1','A13','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I don\'t have enough time in my life to dedicate time to contribute at the moment ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as for nix pkgs I was looking to move to a declarative way to manage my systems','Y','','','','','','','Declarative','Reproductible on multiple systems','Easy to share with other people ','Either improve the NixOS modules to simplify writing coherent modules or improve the documentation to help discover the features/tools','Archlinux with home grown scripts','Y','','','','','','','','','','i3 or river','Nix-direnv','home-manager','Thank you to the community for all the work and time invested in Nix and NixOS '),(1668,'1980-01-01 00:00:00',5,'en','409176978','A2','A2','male','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A1','A2','A9','','','','','','','','A4','A2','A12','','','','','','','','','','','','',NULL,'Nowadays Guix I guess.','A2','','','','Y','','','','','','','','','','','','','Y','','Y','','','','A2','A15','A9','A13','A26','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','','','','','','','','','Y','','','','','','','sway','flake-utils-plus, simple-nixos-mail-server','',''),(1669,'1980-01-01 00:00:00',5,'en','1084927669','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I love infrastructure as code and like the idea of applying that to my operating system. I started trying to use NixOS for a server for managing a few containers but put that down for now. I have migrated my laptop to NixOS now though. ','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A3','A9','','','','','','','','A14','A8','A15','','','','','','','','','','','','',NULL,'Ansible on Debian or a Debian based distro','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I like declarative configuration and this is pretty much the only game in town. ','Y','','Y','','','','','Declarative configuration','Large package availability ','Great community','Declarative Flatpak installation','Debian or possibly Mint','Y','','','','','','','Y','','','','','',''),(1670,'1980-01-01 00:00:00',5,'en','1233597516','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','With NixOS','Y','','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A9','A7','','','','','','','','A4','A8','A1','','','','','','','','','','','','',NULL,'GNU Stow','A7','','','','Y','','','','','','','','','','','','','','','','','','','A5','A25','A2','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A5','Arch to Gentoo for more control then to Nix for the reproducibility and best of both binary cache and source based.','Y','','','','','','','Reproducibility of system','Overrides and customizing','','Native package major version pinning without gcc7, gcc8 or overlays.\r\n','','Y','','','','','','','','','','i3','','',''),(1671,NULL,NULL,'en','167589849',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1672,NULL,1,'en','1735986820','A2','A3','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1673,'1980-01-01 00:00:00',5,'en','1586760456','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','Y','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I like the declarative approach and the option to roll back. Previously I used arch','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A3','A6','','','','','','','','A6','A8','A4','','','','','','','','','','','','',NULL,'Arch Linux, containers','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','My knowledge about nix is not sufficient ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','Rolling Release Option with unstable channel','Declarative configuration of everything via home-manager','Easy rollback','','Arch linux','Y','','','','','','','Y','','','','','',''),(1674,NULL,NULL,'en','633095586',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1675,NULL,1,'en','2040954297','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1676,NULL,4,'en','1793083056','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A2','','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'Fedora CoreOS','A4','','','','','','','','','','','','','','','','','','','','','','','A3','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',NULL),(1677,'1980-01-01 00:00:00',5,'en','1484048739','A2','A2','male','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Android, ChromeOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I stumbled upon a few YouTube videos, watched them, then switched to nixos totally unprepared since I hade gott en borde by Arch and appreciated the theoretic nix benefits. It took me a few months to actually realize the benefits, primarily when I eventually started using home-manager','','','','','','','Y','Y','','','','','I have built containers to run in production','','Y','Y','Y','','','','A2','A9','A1','','','','','','','','A8','A12','A2','','','','','','','','','','','','',NULL,'A bunch of tools for different parts of the use case (arch, a home grown symlink mess and custom scripts, bazel)','A2','','Y','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Laziness, together with doubt that other would find what I package useful (although thinking about it, I am pretty sure people would, at least a little bit)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I entered nix through nixos. I was bored by Arch, felt a desire to pick something I would appreciate long-term (and wow, I did!) and was impressed by NixOS\'s theoretical benefits after stumbling upon it on YouTube','Y','','Y','','','','','Immutability of the running system','Easy config integration through home-manager','Explicitly tracking differences between machines','Add non-root (for security) nixos containers','Immutable Fedora, or maybe just Arch. It would be significantly worse','Y','','','','','','','','','','xmonad','home-manager\r\nnix user repository (for firefox extensions)\r\nflake-utils\r\nrust-overlay\r\ncargo2nix','','Nix/NixOS is the most impressive software I know. I am eternally grateful that Nix and its ecosystem exists'),(1678,'1980-01-01 00:00:00',5,'en','2088800893','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','The ccc darmstadt draw my attention to it\r\nI like the declatitive model of NixOS. On other systems i forgot which programms i configured in what way, now i can look in my configuration file.','','','','','','apart from nixos: none','Y','','','','','','','','','','Y','','','','A2','A10','A3','','','','','','','','A8','A9','A14','','','','','','','','','','','','',NULL,'I dont know if there is a worthy replacement. Maybe guix.\r\nBut maybe i would just use apk from alpine, because it has a package list.','A4','','','','','','','','','','','','','','','','','','','','','','','A5','A15','A2','A21','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I would need a bit deeper understanding of how packages work and even of git for contributing','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','Many up-to-date packages, with carefree dependency managment','Declarative system configuration','Ad-hoc softawar with nix-shell','Stabilise flakes and new cli andadd learning resoirces for them','Idk. Maybe Guix?\r\nMaybe apk from alpine because it uses apk with a package list?','Y','','','','','','','Y','','','','','Flakes, because i dont understand their role in nixos - how they play together with e.g. configuration.nix',''),(1679,'1980-01-01 00:00:00',5,'en','1546574923','A5','A2','male','','Y','','','Y','','','','','','','','','','','','','Y','','','','','','','robotics engineer','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','A company I was working for used the package manager for reliable and secure builds (for compliance reasons related to aviation).','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A3','A9','A2','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A2','A4','A21','A13','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Server on VPS for small FOSS web services like libreddit, nitter, Nextcloud...','','','Y','','','','','Configuration all in one place.','Easy installation of new packages.','Secret management with age','','','Y','','','','','','','','','','none','Lorri, direnv, age','',''),(1680,'1980-01-01 00:00:00',5,'en','411080060','A6','A3','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','To get isolated dev environments. I got sick of homebrews and pips and whatnot','Y','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A4','A5','A9','','','','','','','','','','','','',NULL,'Guix may be. But guix package manager does not work in macos, so dont know ','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A14','A1','','','','','','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A3','Only linux distro I could stick to.','Y','','','','','','','','','','Smoother impure env integration. Not everything can live under the pure ideal NixOS world.','Guix may be, or openSUSE with Nix on top of it','Y','','','','','','','Y','Y','','','','','Add ML-like static types to nix lang'),(1681,'1980-01-01 00:00:00',5,'en','524522992','A2','A3','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','','','','','','Y','','Y','','Y','','A2','A1','A10','','','','','','','','A8','A4','A7','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','','','','','','','','Y','','','','','','','','sway','','',''),(1682,'1980-01-01 00:00:00',5,'en','916452921','A2','A2','fem','','','','','','','Y','Y','','Y','Y','Y','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I was an arch user for around 7 years, and when I learned about NixOS it felt like a match made in heaven.\r\nI like the idea of a reproducible system with \"centralized\" configuration files which define everything.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A8','A4','A14','','','','','','','','','','','','',NULL,'I would not use Guix, I don\'t like GNU. I would just use Arch Linux and be very sad.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A6','A2','','','','','','','','','','','','','','','','','','','','A2','A6','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I liked the idea of a reproducible system with \"centralized\" configurations that define the whole system.\r\nI\'ve been an arch linux user for 7 years before using nixos, and I can\'t go back now.','Y','','Y','','','','','Reproducible System','Modules/Services easily configurable through Nix','Amount of packages','I would improve existing features, better error handling, better CLI tools and outputs (progress bar when using nixos-rebuild, information about which packages will be installed/removed, etc)','Arch Linux. I would be very sad.','Y','','','','','','','','Y','','','Nixos-generators\r\nHome-manager\r\nSops-nix\r\nJovian-nixos','NixOps, no flake support.',''),(1683,'1980-01-01 00:00:00',5,'en','1493035009','A2','A4','male','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','','','Y','','','Android, iOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','The declarative approach brought me over instantly.','','Y','','','Y','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','Y','Y','','A2','A1','A3','','','','','','','','A14','A6','A8','','','','','','','','','','','','',NULL,'Guix, Arch Linux, microOS','A1','','','','Y','Y','','','','','','','Y','Y','','Y','','','','','','','','A15','A17','A2','','','','','','','','','','','','','','','','','','','A2','A3','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Declarative configuration brought me over instantly.','Y','','Y','Y','Y','Y','','Declarative configuration','Immutability','','More convenient language','Guix','Y','','','Y','','','nixos-anywhere','Y','','','hyprland, sway','','','Great work!'),(1684,NULL,1,'en','613728478','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1685,'1980-01-01 00:00:00',5,'en','1288213670','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A7','A1','A3','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'still apt','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Not knowing about how to write derivations best. The \"tools\" are heavily under documented. It\'s not obvious where specific functions are declared, which attributes are allowed/required. At best there is some documentation but it\'s missing examples and descriptions about the why. Examples I have in mind are callPackage or buildEnv.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Used Ubuntu for more then 10 years but lost trust in Canonical and their snaps. Just looked at possible replacements and found NixOS fascinating and promising. It\'s very unique. I need a system that gets software updates regularly (not only bug fixes) but is stable and doesn\'t break it. It seems to be NixOS is build around this promises.','Y','','','','','','','The system can nearly never break due to being able to rollback','','','It should get more examples about how the stuff works. For example setting some configuration options automatically install packages. This isn\'t obvious at first when coming from other distros where all packages need to be installed explicitly. You want to install Python with packages x,y,z, then you need to add that to the configuration.nix.','Probably I would try Arch Linux or switch to Debian instead.','Y','','','','','','','','Y','','','','','Nix and NixOS is very different. Therefore it requires better and more documentation to explain and especially on how to adapt it. As a Software Developer the current documentation is ok for using it or even to create own packages/derivations (thanks to nix pills). It just takes a lot of time to read the code or googling. Without having time and patience I would have switched to something else.\r\n\r\nPersonally after nearly a month using nix and NixOS I still don\'t understand why somebody would use nix-env to install software system wide instead of using the system packages in the configuration.nix and running nixos-rebuild.'),(1686,'1980-01-01 00:00:00',5,'en','1426080453','A1','A3','male','','','','','','','','Y','Y','','','Y','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Configure environment in single file is nice. Sharing build cache is really helpful.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A10','A9','','','','','','','','A11','A13','A2','','','','','','','','','','','','',NULL,'Guix\r\nIf Guix is not there, too.\r\nMaybe just Cargo or pacman(Under Archlinux).','A2','','','Y','','Y','','','','','','','','','','Y','','','','','','','','A15','A13','A4','A3','A14','A17','A25','','','','','','','','','','','','','','','A13','A15','A4','','','','','','','','','','','','','','','','','','','Y','','','','A2','','My project is not ready for open source yet.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Use single piece of code to configure the whole OS is really cool.\r\nAnd everything is quiet steady even in nixos-unstable.','Y','','Y','','','','','Use .nix to configure system','Package works inside a sandbox-like environment makes it quiet unbreakable','Easy to use Nix under different platform, I am quiet willing to try NixOS under ARM/RISC-V hardware.','Making wayland environment more Xorg-free is nice.','Guix\r\nIf Guix is also not exist, then ArchLinux.','Y','','','Y','','Y','','','Y','','sway','','Flake',''),(1687,NULL,NULL,'en','809898246',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1688,NULL,NULL,'en','958205672',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1689,'1980-01-01 00:00:00',5,'en','810364413','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A6','A7','A4','','','','','','','','','','','','',NULL,'Gentoo/Fedora as workstation, something RHEL-based on servers','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','A9','A19','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','Y','Y','','','','Root on tmpfs','Moving my system to other machines in minutes, not hours like with other distros','Usable aarch64 support','Add support for aarch64 for some packages that x86 only (framesh, appflowy, etc)\r\nAdd native support for secrets in /nix/store\r\nAdd support for SELinux\r\nAdd more apparmor profiles for packages\r\nUseful errors instead of meaningless nonsense\r\nAdd native microvm solution like microvm.nix by astro','','Y','','','Y','','','','','','','sway, thinking about moving to gnome','home-manager','deplpy-rs. Now I use nixos-rebuild\r\nmicrovm.nix because it sucks',''),(1690,NULL,NULL,'en','1899331126',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1691,NULL,NULL,'en','1554808569',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1693,'1980-01-01 00:00:00',5,'en','1563433133','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','Y','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A2','A7','A11','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'Guix','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','SourceHut','A24','A15','A13','A25','','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','','Y','Y','','','','','','','','Guix','','','','Y','','','','','','','sway','flake-utils, naersk, fenix','',''),(1692,'1980-01-01 00:00:00',5,'en','1309239941','A2','A3','male','','','Y','','','Y','Y','','','Y','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Just wanted to have a usable/convenient way to install/manage software (compiler toolchains, various SDKs and stuff) and was using Ubuntu at the time and having a subpar experience.','','Y','','','','','Y','Y','','','','','','Y','Y','','','','Y','','A1','A2','A9','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'Fuck me, probably apt','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A1','A20','','','','','','','','','','','','','','','','','','','A13','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Social anxiety','N','N','I don\'t see the point of NixOS for my workstation: Ubuntu + Nix works well enough. Using NixOS on servers pretty much requires the buy-in from my $WORK which is not going to happen.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1694,'1980-01-01 00:00:00',5,'en','1919269200','A2','A4','male','','Y','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I had been hearing about Nix at FOSDEM and such for years. After many false starts due to inherent complexity and dubious documentation, I finally installed NixOS on my desktop machine after reflecting upon the fact that no other operating system was trying to radically improve the state of the art of managing complexity. I was also gently nudged along this path by the Haskell community, in which there is a strong Nix presence.\r\n\r\nNow I also use Nix to ensure reproducibility in CI even on non-NixOS platforms.','','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','Y','','','A2','A3','A1','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'Debian','A2','','','','','Y','','','','','','','','','','','','','','Y','','','','A13','A25','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','Declarative environment','Easy upgrades','Easy to contribute new packages','','Debian','Y','','','','','','','','','','sway','','',''),(1695,'1980-01-01 00:00:00',5,'en','234616935','A7','A3','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A3','','','','','','','','A14','A13','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A13','A24','','','','','','','','','','','','','','','','','','','A13','A24','A23','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','','','','','Archlinux','Y','','','','','','','Y','','','Xmonad','','',''),(1696,NULL,NULL,'en','1140040822',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1697,NULL,NULL,'en','1815169961',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1698,'1980-01-01 00:00:00',5,'en','927752170','A1','A5','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A7','I use functional programming languages, and in that community people kept telling NixOS is good, which I believed since I knew about immutability. Then at some point I tried installing it.','','','','','','','Y','Y','','','','','','','','','Y','','','','A7','A1','','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'I\'ve been using Ubuntu for long.','A4','','','','','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'m new here, just started.','Y',NULL,NULL,NULL,NULL,'A1','','','','','A1','','Y','','Y','','','','','reproducibility','easy configuration','package availability','','Ubuntu','Y','','','','','','','Y','','','','','',''),(1699,'1980-01-01 00:00:00',5,'en','33422657','A8','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Loved the idea. Took the plunge and it’s worked out well so far ','','Y','','','','With plans to use it on mac and containers ','Y','','','','','','','Y','Y','','Y','','','','A1','A3','A2','','','','','','','','A8','A6','A14','','','','','','','','','','','','',NULL,'Brew on Mac, apt on Ubuntu ','A4','','','','Y','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I like trying new software and desktops and Nixos lets me do that without screwing up the entire system','Y','','','','','','','Reproducibility ','','','','Maybe the new fedora offering ','','','','','','','','Y','','','','Home manager','',''),(1700,NULL,NULL,'en','917700289',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1701,NULL,2,'en','1609243676','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A2','I wanted to run a personal server on an old laptop, but in a way which allowed easier changes to which services were running or defined. Took some effort to set up first, but has been working pretty well','','','','Y','','','','Y','','','','','','','Y','','Y','','','','A2','A1','A7','','','','','','','','A8','A4','A14','','','','','','','','','','','','',NULL,'Probably just a plain package manager for whatever linux distro I was using and a notes.txt file describing how to set up or tear down different services running','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'m lazy, afraid of interacting with the public internet using accounts even partially connected to information about me (for why I don\'t set up other accounts, see first point), and I\'m somewhat uncertain on how to interact with github and open source in general',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1702,NULL,2,'en','1456549858','A8','A5','male','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Tried it, loved the principle of deterministic configuration ','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A7','A2','A1','','','','','','','','A8','A13','A4','','','','','','','','','','','','',NULL,'apt','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A17','A13','','','','','','','','','','','','','','','','','','','','A17','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1703,'1980-01-01 00:00:00',5,'en','1944798916','A2','A5','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','A colleague started using Nix at work. I already knew about Nix and found it an interesting project, but never got around using it in earnest before. I then started migrating several of my private machines to NixOS to get more experience with it.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A5','A9','A8','','','','','','','','','','','','',NULL,'Before started using NixOS, i used Fedora and Debian. I also looked into guix, but could not use it due to missing hardware support. I would probably go back to Fedora.','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A2','A9','A3','A1','','','','','','','','','','','','','','','','','A2','A15','A9','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Nothing so far. I am just still very new to Nix. But the community interactions I had so far (on element mostly) were all very supportive and welcoming.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','A colleague started using Nix at work. That brought me to start using Nix at home as well to gain more experience with it.','Y','Y','Y','Y','','','','atomic upgrades and rollback','declarative system and user configuration','creating development environments','I would move all functionality of nix-* commands into appropriate sub commands of the \"nix\" command. Then I would remove/deprecate all nix-* commands.','Fedora, Debian or Guix','Y','','','','','','','Y','','','i3','nix home manager','','It would be nice to have some tool or website to be able to search all nix documentation, similar to the packages and options search.'),(1704,NULL,NULL,'en','1480894460',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1705,NULL,1,'en','1302890856','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1706,NULL,1,'en','857949164','A2','A2','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1707,NULL,NULL,'en','1551349143',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1708,'1980-01-01 00:00:00',5,'en','749001759','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Security Manager','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was intrigued by Nixos, tried an install on my thinkpad and then on my servers','','Y','','','','','Y','Y','','Y','','','','','Y','','Y','','','','A2','A7','A3','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'ansible, arch linux. maybe guix?','A4','','','','Y','','','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A1','','did not find the time yet','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','Y','','','','','Fully defined by configuration files','system state in git','bi anualy major upgrades','secret management','maybe still arch, maybe guix','Y','','','','','','','','','','awesome-wm','','home manager. only managing and syncing configuration between my devices is not enough. i need data sync as well. so i use syncthing to sync specific app folders, e.g. .ssh, vscodium',''),(1709,'1980-01-01 00:00:00',5,'en','13956039','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','friend showed me Nix/NixOS. It solved my problem of managing multiple computers very good.','','','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A2','A4','A9','','','','','','','','A8','A13','A2','','','','','','','','','','','','',NULL,'shell with some templating language. maybe spack. would probably build something like spackOS (which doesn\'t exist yet)','A2','','','','Y','Y','','Y','','','','','Y','','','','','','','Y','','','buildbot','A2','A1','A15','A13','A3','','','','','','','','','','','','','','','','','A15','A5','A2','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','best configuration managment','Y','Y','Y','Y','','','','module system','string templating','availability of modules','remove all-packages.nix\r\nuse modules for package configuration\r\nhaving ability to have mulitple instances of services configured ','spackOS (doesn\'t exist yet, would probably invent that)','Y','','','','','Y','krops','','','','xmonad','','','thanks for your work!'),(1710,'1980-01-01 00:00:00',5,'en','1423476699','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend of mine told me about it, I started using it after ArchLinux.','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','Nix docker images with things like buildDockerImage, and nlewo/nix2container','A1','A9','A7','','','','','','','','A2','A11','A13','','','','','','','','','','','','',NULL,'For the isolated build system part, I would use something akin to Bazel I\'m guessing.\r\nTo provide dependencies, I\'m guessing it would be messy and not very reproducible.','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','Y','','A20','A9','A15','A4','A3','A2','A1','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','','','','','','','','- Better error messages to track errors\r\n- More verbose origins for infinite recursion.\r\n- make flakes better with monorepos (way too locked into one repo / one project thingy)\r\n','Not much else I\'m afraid. NixOS (and its cousin guix) are very weird beast with not much competition. I place it in the \"tool you didn\'t know you needed until you used it, but can\'t live without afterwards\".','Y','','','','','Y','','','','','i3','nlewo/nix2container, home-manager, clj2nix','I stopped using nix-doom-emacs because this prevented usage of configuration auto-reload on Emacs','Keep up the good work!'),(1711,NULL,1,'en','50717447','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1712,'1980-01-01 00:00:00',5,'en','428493204','A7','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I wanted declarative package management that I can use on all my operating systems','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','nix develop','A6','A2','A3','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'The OS package manager, or other tools for CI and remote machine management','A1','','','','Y','Y','','','','','','','Y','','','','','Y','','','','','','A20','A1','A4','A25','','','','','','','','','','','','','','','','','','A20','A25','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Way too Complex','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Wanted to configure my Linux OS configurations like my desktop environment and login shell','Y','','Y','','','','','System-wide configuration','Flake support','Home profile management','Make home-manager a first class citizen.\r\nIntroduce a GUI or TUI that helps with adding/removing/changing packages while keeping your config up to date.','Just linux and the distros package manager I guess. Thought about using Guix','','','','','','','','','Y','','','Home-manager\r\nFlake-utils\r\nDevenv\r\nnix-darwin','Flake-parts\r\nnix-shell','Nix and NixOS is great but needs a major user experience overhaul.\r\nFlakes needs to be stabilised and a new level of documentation and ease of configuration needs to be introduced on top'),(1713,'1980-01-01 00:00:00',5,'en','307758246','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','aggressiv marketing at my local hackerspace','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A7','A3','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'Debian','A4','','','','Y','','','','','','','','','','','Y','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','Flatpaks','A1','','not enough knowledge in nix and programming in general','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Aggressive marketing at my local hackerspace','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1714,'1980-01-01 00:00:00',5,'en','2123924281','A2','A3','male','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','Y','','Y','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A2','A9','A3','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','OCurrent','A14','A15','A1','A13','A2','A12','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','N','Getting a new computer - right not it\'s not worth reinstalling everything.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'In the wider ecosystem:\r\n - opam-nix: https://github.com/tweag/opam-nix\r\n - dream2nix: https://github.com/nix-community/dream2nix/\r\n - naersk: https://github.com/nix-community/naersk','',''),(1715,'1980-01-01 00:00:00',5,'en','282514049','A5','A5','-oth-','Fluid','','Y','','','Y','Y','Y','','Y','Y','','','Y','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted reproducible builds for my novels and flakes lookednthe answer I wanted to produce them.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A10','A1','','','','','','','','A8','A3','A6','','','','','','','','','','','','',NULL,'Guix or a homebrew system.','A2','','','','Y','','','','','','','','','','','','','','','','','','Woodpecker','A6','A15','A1','','','','','','','','','','','','','','','','','','','A6','A15','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Too much knowledge to get started. I submitted a patch to Ceph to fix lua but found out that I had to go to the top level to know it was overridden there instead of having an obvious alias name.\r\n\r\nI have tried six times to package something and failed every time.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Liked nizpkgs, my Ubunto crashed, switched over.','Y','Y','Y','Y','','','','Flakes','Colmena deploys','Declarative services','Flake stability and primary use','Guix','','','','','Y','','','','Y','','','Std (standard is really nice. I use colmena weekly and love it.','I have tried and failed most of the Rust packages, I can\'t figure out how to get then to work.','Please make it easier to submit patches? There is too much to know ehn you have to from the entire top level files just for little changes.'),(1716,'1980-01-01 00:00:00',5,'en','341910508','A5','A2','male','','','','','','','','Y','','','','','','Y','','','','','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Heard about it on Linux Unplugged. I decided finally to try it since it seemed to be highly regarded, and I was plesantly surprised by it.','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A3','A1','','','','','','','','A14','A9','A5','','','','','','','','','','','','',NULL,'Nothing really. Home-brewed solutions. I had used containers before for a development environment. For NixOS, I\'ve used an install script to have a semi-declarative install for Arch Linux.','A4','','','','','Y','','Y','','','','','','','','','','','','','','','','A22','A15','A3','A2','A4','','','','','','','','','','','','','','','','','A22','','','','','','','','','','','','','','','','','','','','','','','','','A2','','Lack of knowledge and confidence. I have a few tools I\'d love to add but I have no idea how.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Linux Unplugged. Same as woth Nix. I installed NixOS a day after trying Nix.','Y','','Y','','','','','Declarative system configuration','Rollback','Having the Nix package manager.','I would love a dotfile manager. I know there\'s home manager, but this can present problems when a package doesn\'t have the config needed, and also usage. with other OSes','I would use Arch. It was what I was using before and it\'s still a great OS.','Y','','','','','','','','','','sway','None. Pretty comprehensive.','Flakes. I just didn\'t get it is all. I\'ll try again some day.','Love your work. Donated a bit to the collective for documentation development, and i\'m excited to see what it brings.'),(1717,'1980-01-01 00:00:00',5,'en','1440457193','A2','A3','male','','','','','','','','','Y','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A2','A9','A10','','','','','','','','A9','A8','A6','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A4','A15','A9','A2','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','emacs-overlay','',''),(1718,'1980-01-01 00:00:00',5,'en','1504842070','A2','A3','-oth-','agender','Y','','','','Y','','','','','','','','','Y','','Y','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','It was a very nice way to create a low-maintenance declarative system with auto-updates','','Y','','','','','','Y','','Y','','Y','','','','','Y','','','','A1','A10','A2','','','','','','','','A4','A13','A1','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','bitbucket','A2','A4','A15','A25','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I contributed before, but for the time being I just don\'t have anything I see myself working on','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A5','I moved to NixOS from Debian because I wanted a declarative system, it worked really well. Later I moved my SoCs from Armbian to NixOS thanks to LUSTRATE','','','Y','Y','','','','Declarative setup','Reliable builds with fixed dependencies','Auto updates',' Completely revamp the Nix language. I\'m sorry, but it\'s really archaic.','Guix','Y','','','','','','','','','','i3','','','Thank you for your work! '),(1719,'1980-01-01 00:00:00',5,'en','209850179','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','','','Y','','Y','','A1','A2','A3','','','','','','','','A6','A8','A9','','','','','','','','','','','','',NULL,'Debian GNU/Linux','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','Y','','','','','i3/sway','Home-manager','',''),(1720,'1980-01-01 00:00:00',5,'en','180105909','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','Y','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A3','','','','','','','','A13','A3','A5','','','','','','','','','','','','',NULL,'Guix','A4','','','','','','','','','','','','','','','','','','','','','','','A9','A3','A2','','','','','','','','','','','','','','','','','','','A9','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','','','','Thank you'),(1721,NULL,NULL,'en','1275220824',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1722,NULL,3,'en','56416936','A2','A2','fem','','','','','','','','','','','','','','','','','','','','','','','','','Technician','Y','','Y','','','','N','N','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Curiosity',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1723,NULL,1,'en','322182089','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1724,NULL,1,'en','944608730','A2','A3','male','','','','','','','Y','Y','Y','Y','','','Y','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1725,NULL,NULL,'en','493445729',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1726,NULL,3,'en','1122756408','A2','A2','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A6','A5','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','','Y','','','','','Declarative system configuration','Rollback','','','','Y','','','Y','','','','','','','',NULL,NULL,NULL),(1727,'1980-01-01 00:00:00',5,'en','1014549106','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A7','','','Y','','','','','Y','','','','','','','','','','Y','','','','A2','','','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'Guix','A1','','','','','','','','','','','','','','','','','','','','','','','A2','A9','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1728,NULL,1,'en','35276195','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1729,NULL,1,'en','325393254','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1730,'1980-01-01 00:00:00',5,'en','119915604','A2','A2','-oth-','nonbinary','Y','','','','','Y','','Y','Y','Y','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Got it recommended at a furry conference :3\r\n\r\nOne of my friends had also been using it for a while and liked it, and I\'ve always had my eyes on it, but making the switch seemed a bit daunting at first. But at the furcon, I decided to say fuck it and just try it out, and I haven\'t looked back since','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A2','A6','','','','','','','','A5','A2','A14','','','','','','','','','','','','',NULL,'homebrew for mac, whatever the default package manager is for debian or whatever','A1','','','','','Y','','','','','','','','','','','','','','','','','','A2','A15','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Nothing really, just haven\'t had the opportunity yet.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Same as before, got it recommended at a furry conference.','','','Y','','','','','Declarative package and system management','Being able to easily try out software and packages without polluting the global system (nix-shell -p ...)','Wide variety of software','Remove nix-env from history.','Debian','Y','','','','','','','','','','none','darwin-nix','',''),(1731,NULL,NULL,'en','134515492',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1732,NULL,NULL,'en','502000979',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1733,'1980-01-01 00:00:00',5,'en','1703475599','A8','A5','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Distrohopping','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A7','','','','','','','','A5','A14','A15','','','','','','','','','','','','',NULL,'Other Linux distro. Other development environment like asdf','A4','','','','Y','','','','','','','','','','','','','','','','','','','A23','A24','A5','A9','A14','A2','A3','','','','','','','','','','','','','','','A2','A23','A24','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Not enough knowledge ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It sounded like a neat idea. Once I got it working I don\'t think I can change. Installation, configuration, updates are now so easy and solid','Y','','Y','','','','','Declarative configuration','Upgrade and rollback to various generations','Nixpks and development environment ','One way to do things. There are way to many options. Simplify terminology.\r\nImprove a number of packages. There are too many half dead projects in nixpkg. Improve docker builds so that images are smaller (some packages pull in way more than needed)','No idea. Some other Linux distro','Y','','','Y','Y','','','','','','dwm, i3','','',''),(1734,'1980-01-01 00:00:00',5,'en','1986048602','A2','A4','male','','','','','','','Y','','','','','','Y','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I got tired of homebrew taking over a minute to sync, and read an article about home-manager setup on macOS, so I switched. It was fairly successful. Encouraged by it I read more, and started using nix flakes on some personal projects. Been in love since ','Y','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'Honestly, I don\'t know. For installing packages, probably homebrew. And for individual projects, docker with the language\'s package manager','A1','','','','Y','','','','','','','','','','','','','','Y','','','','','A15','A4','A19','','','','','','','','','','','','','','','','','','','A19','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Not enough knowledge, I\'m still learning','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1735,'1980-01-01 00:00:00',5,'en','973458352','A2','','','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','','','Y','','','','','Y','Y','','','','','','Y','Y','','','','','','A1','A2','A7','','','','','','','','A14','A13','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A25','A9','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1736,NULL,NULL,'en','1592167815',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1737,NULL,NULL,'en','769486581',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1738,NULL,1,'en','388602666','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1739,'1980-01-01 00:00:00',5,'en','1945326748','A5','A2','male','','','','','','Y','Y','Y','','','Y','','','Y','','','Y','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','','','Y','','','Y','','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','Y','Y','','','','','','','','','','','','A1','A2','A8','','','','','','','','','','','','',NULL,'write my own implementation of something similar but worse','A2','','Y','','Y','Y','','','','','','Y','Y','','','Y','','Y','','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','','','','','','','','','Y','','','','','','','sway','','',''),(1740,'1980-01-01 00:00:00',5,'en','1885540703','A2','A5','male','','','Y','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Really nice for reproducible build environments','','Y','','','','','Y','','','','','','','','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A8','A5','','','','','','','','','','','','','',NULL,'Language specific tools... cargo, poetry etc','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of free time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Wanted some fresher than Debian stable, but as reliable as possible','Y','','','','','','','Atomic updates & rollback','Large package library','Nice language for packaging personal stuff','','Debian stable','Y','','','','','','','','','','Awesome','','','Good work! Thanks.'),(1741,NULL,1,'en','269865064','A2','A2','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1742,'1980-01-01 00:00:00',5,'en','1338962206','A2','A4','male','','','','','','','Y','Y','Y','Y','Y','','','Y','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I\'ve been a Debian user for 20+ years, and while I\'m still generally happy with it, due to changing circumstances and preferences, I was looking for something that\'s moving slightly faster, yet, is still of great quality. As I\'m also a big fan of functional and declarative programming, Nix and Guix came into my view, as two possible options. While normally I\'d prefer Guix, due to Scheme being a language much closer to my heart than Nix, I developed a heavy reliance on systemd in recent years. Guix does not have systemd, but Nix does.\r\n\r\nSo I started to experiment with Nix, both with NixOS in a VM, and with Nix on top of Debian. I don\'t use it for much yet, still (slowly, very slowly) learning the ropes, Nix - the language - is quite alien to me, and there\'s always this feeling that I could be using Scheme, if Guix would have systemd - this doesn\'t make it easier. I mean, I do like what Nix and NixOS *does*. But I find the Nix language horrible. But the things possible with it are so good, that I\'m willing to learn it despite my dislike.','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','','','','','A2','A3','A5','','','','','','','','A13','A8','A14','','','','','','','','','','','','',NULL,'Probably Guix, if I could pry myself away from systemd. However, as that is very unlikely to happen, I\'d stick with Debian.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','Drone (for now)','A3','A15','A17','A20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','A few things: primarily, the language. I hate it (sorry). Apart from that, I didn\'t encounter anything I felt I could contribute yet. Most things I needed so far, were already there, and the few things that weren\'t, are personal things, for which I just made a flake for.','N','Y',NULL,'I didn\'t exactly stop, I just got stalled. I want to switch away from Debian, to either NixOS or Guix. Guix lacks systemd, Nix has a horrible language (again, sorry, but gotta be honest here). I\'ve been experimenting with both, and decided to go with NixOS, because working with the Nix language is less horrible than prying myself away from systemd. However, due to various IRL circumstances and hardware failures, I have not been able to make the switch yet.\r\n\r\nI got to a point in my experiments that I know I can rebuild my familiar environment on top of NixOS, I just... didn\'t get there yet.','Time. Or if there\'d be a Lisp-y language built on top of Nix. I\'d drop everything and switch instantly, if I could write my configuration in a Lisp-y language.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Keep up the good work!\r\n\r\n(And please make a Lisp-y DSL/language/whatever on top of Nix, thanks! :))'),(1743,NULL,NULL,'en','1125563178',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1744,'1980-01-01 00:00:00',5,'en','413203584','A6','A2','male','','Y','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A5','A3','','','','','','','','A8','A13','A7','','','','','','','','','','','','',NULL,'gLinux','A2','','','','Y','','','Y','','','','','','','','','','Y','','','','','','A15','A22','A9','A17','','','','','','','','','','','','','','','','','','A22','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Ex-Gentoo user ;)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','','','','Better security features','','Y','','','','','','','','Y','','','','','Long live Nix!!!'),(1745,NULL,NULL,'en','872867703',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1746,'1980-01-01 00:00:00',5,'en','111114908','A2','A2','male','','','','','','','','','Y','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Arch btw, plus Ansible. Moved to NixOs.\r\n\r\nWas using nix for multiple versions of node etc','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','A2','A9','A1','','','','','','','','A8','A2','A4','','','','','','','','','','','','',NULL,'Ansible and pacman','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','A1','','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','F for Ansible, computer went kaput. So had to reinstall','Y','','Y','','','','','Rollbacks','Types for options, rip yaml','Pinning across systems (flake.lock)','Log of the changes when switching configuration, and home-manager or user specific configuration integrated in nixos','Ansible','Y','','','Y','','','','Y','','','sway','Home-manager, flake-utils, rust-overlay, nixos-hardware for common systems config.\r\n\r\nNil as nix language server and nixpkgs-fmt for formatter. ','Nix on other systems (Debian) with nixgl and home manager, too complicated/buggy. ','Thank you for providing this great systems and packages <3'),(1747,NULL,NULL,'en','1344850792',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1748,'1980-01-01 00:00:00',5,'en','661896661','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Taffybar did not compile under arch linux','','Y','','','','','Y','Y','','','Y','','','Y','Y','Y','Y','','Y','','A1','A2','A9','','','','','','','','A8','A3','A4','','','','','','','','','','','','',NULL,'pain and suffering','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A24','A2','A9','A13','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','free time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','remember which settings I have applied myself to config files in /etc','Y','','Y','','','','','organized settings','reproducible builds','generations','default options for user accounts (like home-manager, but done for all users by default)','arch linux','Y','','','','','','','Y','','','','home-manager','','Thank you!'),(1749,NULL,4,'en','863468739','A8','A2','male','','','','','','','','Y','Y','','','','Y','','','','','','','','','','Y','','','','','','Y','','','N','N','Y','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(1750,'1980-01-01 00:00:00',5,'en','1454898027','A5','A5','male','','Y','','','Y','','','','','','','','','','','','','Y','','','Y','','','','CyberSecurity','','','Y','Y','Y','','N','N','','','','','I read an article that interested me, reproducibility is a *key* property of a secure system.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I am looking into doing just this on a new machine in late 2023 or early 2024.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N/A','N/A','Nothing at this time.'),(1751,'1980-01-01 00:00:00',5,'en','936628064','A2','A3','-oth-','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Love configuration as code, love guix, love functional programming, hate imperative configuration as code (ansible, docker files, etc) as they\'re so faffy and jank. Dev shells, deploy-rs, flakes and minimal docker builds all seemed and are godly features.','','Y','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A7','A8','A2','','','','','','','','A6','A8','A4','','','','','','','','','','','','',NULL,'Guix, maybe try write something (nix style terraform!). Podman build shells? Be sad generally using things like ansible.','A2','','','','Y','Y','','','','','','','','','','','','Y','Y','Y','','','gitea/forgejo ','A15','A9','A14','A13','A3','A1','A2','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I hope to do so very soon! Maybe some extra document would be nice but mostly just a \'ill get to it soon\' kinda limitation. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Same as nixpkgs reason. (Better) terrafom but for individual systems.','Y','Y','Y','Y','','','','Declarive system','Fully configuration as code.','Reproducibility, bleeding edge stability ','Improve error messages and nixos rebuild switch output logging','Guix and then be sad after with ansible.','Y','','','Y','','','','','','','sway','None yet','None yet','Keep it up, best thing in computing by a mile. If only I could nixify the windows servers I have to maintain but it\'s not worth your amazing effort!'),(1752,NULL,2,'en','1001645435','A2','A2','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A10','A1','','','','','','','','A13','A4','A6','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Complexity',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1753,NULL,NULL,'en','2074765096',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1754,NULL,NULL,'en','1702844521',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1755,'1980-01-01 00:00:00',5,'en','231639100','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Mostly dependency hell. All I want is for my project to run anywhere :)','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A7','A2','A6','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'Docker','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Best practices. I would love a way to generate a mostly-compliant nix file and a checker that catches common pitfalls','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Loved the concept of defining your system once, then being able to reinstall your entire system, barely noticing any changes afterwards. I love being able to define all my program\'s configurations from a single point instead of scouring through 100 different config files. I make good use of home-manager. Rollbacks are extremely useful','Y','','Y','Y','','Y','','Define system once, install it identically on multiple devices','home-manager','Rollbacks fix my mess','Documentation and errors are ass. A simple way to search options in the command line would be great. The nix language seems overly complicated for what 99% of people want to do. I often imagine a NixOS system configured by writing Dhall','Arch','Y','','','','','','','','','Y','i3','Home-manager is essential and should honestly be part of the main nixos install.','I guess you mentioned hydra but I thought it was too complicated and its a huge clump of Perl which I wouldn\'t trust for a business.','Love you byebye'),(1756,NULL,1,'en','1631078140','A2','A3','-oth-','','','','','','Y','Y','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1757,'1980-01-01 00:00:00',5,'en','372371310','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','A colleague spoke about NixOS a lot','','','','','','','','','','Y','','','','Y','Y','','Y','','','','A2','A3','A1','','','','','','','','A5','A9','A8','','','','','','','','','','','','',NULL,'dpkg','A4','','','','','','','','','','','','','','','','','','','','','','','A14','A2','A4','A3','A15','A24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I use Nix since less than a week.','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','A colleague spoke about NixOS a lot.','','','','Y','','','','Reproducible envs','','','','Debian','Y','','','','','','','','','','','','','I want to try NixOS on a desktop computer next.'),(1758,'1980-01-01 00:00:00',5,'en','2054725109','A2','A3','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A4','','','','','','','','','Y','','','','','','Y','','','Y','','','','A10','A1','A3','','','','','','','','A15','A6','A2','','','','','','','','','','','','','Improved support for application bundles on macOS (Spotlight search)','asdf or rtx for versioned tooling','A4','','','','','','','','','','','','','','','','','','','','','','','A4','A22','','','','','','','','','','','','','','','','','','','','A8','A6','A12','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Randomly read about it on some forum and the idea just clicked.\r\nAfter trying it on a spare laptop I really like the idea for servers.','','','Y','','','','','Declarative configuration','Automatic updates','Ease of migration','','Arch Linux for servers','Y','','','','','','','','','','','','home-manager, it stopped being sufficiently useful after switching to macOS',''),(1759,NULL,1,'en','1569614916','A2','A4','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1760,'1980-01-01 00:00:00',5,'en','1764203402','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A2','','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A14','A3','A5','','','','','','','','','','','','',NULL,'The system\'s package manager.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A2','','','','Y','','','','','Reproducible config','','','','Probably Debian or similar.','Y','','','','','','','','','','','','',''),(1761,'1980-01-01 00:00:00',5,'en','1126997893','A3','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A3','A10','','','','','','','','A1','A2','A4','','','','','','','','','','','','',NULL,'Guix','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A15','A13','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','','','','','','','','','','Guix','Y','','','','','','','','','','Sway','','',''),(1762,'1980-01-01 00:00:00',5,'en','29639943','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A9','A2','A1','','','','','','','','A12','A8','A5','','','','','','','','','','','','',NULL,'pacman + docker','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A3','A2','','','','','','','','','','','','','','','','','','','A2','A3','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','','Y','','','','','Reproducibility','Maintainability','Flexibility','','pacman + docker','Y','','','','','','nixos-anywhere','','','','marswm','','',''),(1763,NULL,NULL,'en','932723796',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1764,NULL,1,'en','800166539','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1765,'1980-01-01 00:00:00',5,'en','1765365338','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Recommendation from friends','','Y','','','','','Y','Y','','Y','','','','','Y','','Y','','','','A1','A9','A10','','','','','','','','A14','A8','A4','','','','','','','','','','','','',NULL,'ArchLinux','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A5','A15','A4','A2','','','','','','','','','','','','','','','','','A15','A1','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Haven\'t needed yet','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Recommendation from a friend','Y','','Y','Y','','','','Declarability','Stability','Reproducibility','','ArchLinux','Y','','','','','','','','','','DWM','Lanzaboote ','',''),(1766,'1980-01-01 00:00:00',5,'en','1822179343','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Did a lot of setting up laptops in a short period, and had heard good things about nox, finally decided to learn it.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','Y','Y','','A7','A2','A9','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'Probably flatpaks, something like fedora silverblue. Or possibly guix?','A1','','','','Y','','','','','','','','','Y','','','','','','','','','','A2','A1','A15','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Not enough time!','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','Whole system in one config','Dconf settings in home manager','Ability to roll back system config','Stabilize flakes, and change all the documentation to talk about flakes only.','','Y','','','','','','','Y','','','','I have used devenv.sh a bit for development','Channels','Keep it up, nix and nixos are great '),(1767,NULL,2,'en','1982241272','A2','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','many people around me have been using it (lots of nerds at uni) and the concept seemed interesting. I am already very interested in functional programming and types.','','Y','','','','','Y','','','','','','','','','','Y','','','','A1','A10','A7','','','','','','','','A5','A14','A7','','','','','','','','','','','','',NULL,'some other linux distro with a wide package repository','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'ve not found anything in need of packaging',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1768,'1980-01-01 00:00:00',5,'en','182772110','A2','A3','male','','','','','','','','Y','','','','Y','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A2','I was interested in NixOS. I like the idea of \"building\" my OS with declarative configuration, I see it as Arch but automated.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A10','A7','','','','','','','','A6','A13','A8','','','','','','','','','','','','',NULL,'Since I mostly use Nix in the context of NixOS, I guess it would mean I would use Arch instead. As for Nix itself, probably Docker or some other container system.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A4','A3','A6','A12','','','','','','','','','','','','','','','','','','A6','A12','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I haven\'t found anything I could contribute. Also, lack of time, when I have the chance to look into contributing something there\'s already a PR open about it.','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A2','I like the idea of \"building\" my OS, kinda like Arch but with declarative configuration.','Y','','','','','','','Declarative configuration','Rolling release nixpkgs channel','Atomic upgrades and rollback','More packages configuration, I like home-manager but I wish some of the options were also available to configure packages system-wide.','Arch with custom scripts','Y','','','','','','','','Y','','','','',''),(1769,NULL,1,'en','458983393','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y','','','Openbsd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1770,'1980-01-01 00:00:00',5,'en','134224127','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','','','','outdated package versions and inactive maintainers','','Y','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'It takes too much time to solve problems','More and better packages in nixpkgs and documentation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1771,'1980-01-01 00:00:00',5,'en','1947654075','A2','A4','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Y','','','','','','','Y','','Y','Y','','','','A1','','','','','','','','','','A14','','','','','','','','','','','','','','',NULL,'Some other Linux distro. ','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','Rebuild ','Update channel','','','Some other Linux distro ','Y','','','','','','','Y','','','','','',''),(1772,'1980-01-01 00:00:00',5,'en','2051970086','A2','A3','male','','','','','','','Y','','','Y','','Y','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','It intrigues me, and I love the principles behind it.','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A7','A2','A3','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'I don\'t know, maybe Fedora Silverblue.','A2','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A1','A9','','','','','','','','','','','','','','','','','','','','A9','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I am a new user of Nix.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','','DWM','','',''),(1773,'1980-01-01 00:00:00',5,'en','446419465','A2','A4','male','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I use it to setup a VPN with a single configuration file.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Not sure, probably Ubuntu / Pop_OS','A1','','','','Y','','','','','','','','','','','','','','','','','','','A4','A22','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','For a personal VPS to setup web server & co.','','','Y','','','','','Configure an entire system from a single source of truth.','Functional paradigme with rollbacks.','','More documentation and tutorials, my knowledge mainly comes from copying others\' configuration and making sense out of it via trial and error.','Linux with custom scripts to configure/sync software.','Y','','','','','','','Y','','','','','',''),(1774,NULL,2,'en','287974118','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A3','','','','','','','','A4','','','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1775,'1980-01-01 00:00:00',5,'en','76231591','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A10','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Sway','','',''),(1776,NULL,NULL,'en','1481260248',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1777,'1980-01-01 00:00:00',5,'en','1389776024','A2','A3','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because Arch Linux fucked up my installation.','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A5','A1','A2','','','','','','','','','','','','',NULL,'I would cry I think. Probably Debian because stability.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Because Arch Linux fucked up my system installation.','Y','Y','','Y','','','','Declarative Installation','','','','Probably Debian because stability.','','','','','','','krops','','Y','','','krops','',''),(1778,'1980-01-01 00:00:00',5,'en','802611391','A2','A3','male','','','','','','','Y','','','','Y','','','','Y','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started work at Tweag and that was a good moment to take a look at Nix. I originally wanted to try it out because it\'s quite popular in the Haskell community, and because I quite fancied the way you configure NixOS.','','','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A14','A2','A10','','','','','','','','','','','','',NULL,'Nix does not have alternatives for what it does, other than maybe Guix.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A5','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','* Navigating nixpkgs sources is hard because it\'s up to your grep skills, afaik\r\n* I do not know the MR process\r\n* I do not know the peculiarities of all the different subcommunities I would contribute to','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to try nix and I fell in love with the declarative system management.','Y','','Y','','','','','Declarative service management','Unified system management (e.g. I have a common.nix module which I use for all my systems)','Easy overriding/patching of packages','Declarative disk management','Debian most likely or Gentoo, might try GuixSD','Y','','','','','','','','','','i3','* nix-direnv \r\n* github.com/tek/hix\r\n* github.com/tek/helic\r\n* flake-utils','','Keep up the good work!'),(1779,'1980-01-01 00:00:00',5,'en','251310237','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','In university we had the ability to SSH into big compute servers to do our work, but they were running CentOS and we were not allowed to install any additional system packages. I spent a bunch of time compiling several things \"from scratch\" but quickly got fed up, then installed Nix in order to benefit from nixpkgs.','','Y','','','','','Y','Y','Y','Y','','','Routers','','Y','Y','Y','','Y','','A7','A1','A10','','','','','','','','A11','A2','A1','','','','','','','','','','','','',NULL,'I\'d probably try Guix. Or maybe flatpak.','A4','Y','Y','','Y','Y','','','','Y','','','','','','','','Y','','','','','','A20','A1','A7','A2','A3','A10','A9','A15','A19','','','','','','','','','','','','','A20','A1','A2','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','For a university project we needed a bunch of raspberry Pis all configured nearly identically, and I figured it would be easier to do this declaratively than set up each of them manually. So I wrote a NixOS configuration and was able to just generate SD card images out of that. It worked great!\r\n','Y','Y','Y','Y','','','Routers','Declarative System Configuration','Availability of modules in nixpkgs','NixOS tests','Speed up evaluation time a ton! (I have a magic wand so let\'s say 1000x)','Probably ansible + suffering.','Y','','','','Y','','','Y','','','','- agenix\r\n- nix linters/formatters (e.g. alejandra)\r\n- vulnix\r\n- lang2nix tools (particularly dream2nix, mach-nix, crane, npmlock2nix, clojure-nix-locker, bundix)','- crate2nix\r\n- rnix-lsp',''),(1780,'1980-01-01 00:00:00',5,'en','1833699838','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','','','/e/ (android fork) on my phone ','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I was exploring new Linux distributions. I came across NixOS and tried it. Because I found it a very interesting approach to packages distribution and system administration, and of the size and quality of the nixpkgs repo, I now started to use it on my personal laptop. Also, I like the reproducibility aspects a lot.','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A7','A5','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'apt, podman, flatpak','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A21','','','','','','','','','','','','','','','','','','','','A15','A2','A13','','','','','','','','','','','','','','','','','','','','','','','A1','','It\'s already excellent, there are probably things I could do like bug reports or packages requests but I cannot complain as it seems to be an easy process.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I was exploring new Linux distributions, and was also interested by reproducibility. I came across NixOS and found it very nice.','Y','','','','','','','Nixpkgs has tons of packages, and they are mostly up-to-date','Reproducibility','This single configuration.nix file to manage my whole computer is something I find very impressive','I would make better learning material, better documentation, and a better UX for the desktop.','Debian, Fedora/ Fedora silverblue, or Arch.','Y','','','','','','','Y','','','','','','Thanks a lot to Nix, Nixpkgs and NixOS makers and contributers. I\'m a very new user but I hope to be able to contribute someday.'),(1781,'1980-01-01 00:00:00',5,'en','1803906873','A2','A3','male','','','','','','','Y','Y','','','Y','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Initially because I wanted a better package manager with more up to date packages then I started using NixOS','','Y','','','','','Y','Y','','','Y','','','Y','Y','Y','Y','','','','A1','A7','A2','','','','','','','','A9','A8','A13','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A5','A20','A2','','','','','','','','','','','','','','','','','','','A5','A20','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was looking for a more robust distribution, than I saw that NixOS has one of the biggest and most up-to date package repository ','Y','','Y','','','','','/etc/nixos/configuration.nix','Stability','Reproducibility','','A normal Linux distribution','Y','','','','','','','Y','','','','home-manager','',''),(1782,NULL,NULL,'en','270191277',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1783,'1980-01-01 00:00:00',5,'en','480201120','A2','A3','male','','','','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A3','','','','','','','','A4','A8','A5','','','','','','','','','','','','',NULL,'','A7','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Not being good enough yet.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','Y','','','','','','','','','',''),(1784,'1980-01-01 00:00:00',5,'en','774972949','A2','A2','fem','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Automating my network infrastructure configs','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A2','A3','A5','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'a stone','A1','Y','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A2','A15','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','Y','Y','','','','Module system','Pinned nixpkgs version','Rollback','','Archlinux','Y','','','','Y','','','Y','','','','','',''),(1785,'1980-01-01 00:00:00',5,'en','1158584484','A7','A4','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','Y','Y','','','A2','i found it interesting','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A14','A4','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','A15','A4','A7','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','running it on spare laptop to tinker ','Y','','','','','','','','','','','','','','','','','','','Y','Y','','','','',''),(1786,'1980-01-01 00:00:00',5,'en','1639009828','A2','A4','male','','Y','','','','','','Y','','','','','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','To many Arch updates had broken my system and I wanted an upgrade path that could be trivially rolled back','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','A2','A3','A7','','','','','','','','A8','A10','A6','','','','','','','','','','','','',NULL,'Guix, then Arch','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A4','A13','A15','','','','','','','','','','','','','','','','','','','A1','A23','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Sway','','',''),(1787,NULL,NULL,'en','792178654',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1788,NULL,1,'en','287384783','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1789,NULL,NULL,'en','772657826',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1790,'1980-01-01 00:00:00',5,'en','756897392','A2','A1','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','N','N','Y','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Word of Mouth, apt, an AutoInstaller.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Hydra seems cool'),(1791,NULL,NULL,'en','513729230',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1792,'1980-01-01 00:00:00',5,'en','1611837172','A2','A3','male','','','Y','Y','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','','','','N','N','Y','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A3','REBUILDING AN OLD PHP WEB APP FOR URGENT MAINTENANCE','Y','Y','Y','','','','','CONTROL','REPEATABILITY','CONFIDENCE','WRAP THE LANGUAGE INTO SOMETHING A BIT MORE PLEASANT TO WRITE & READ','','Y','','','','','','BENTO','','','Y','','','',''),(1793,NULL,NULL,'en','1374564845',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1794,NULL,NULL,'en','1069224587',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1795,'1980-01-01 00:00:00',5,'en','1833737914','A2','A2','-oth-','Why is this important?','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','At the the time I messed around with configs alot so I heard of NixOS as something that could unify all configs into one place. But then when I got into nix and flakes I realized just how better of a system it is.','','Y','','','','NixOnDroid','Y','Y','','','Y','','','','Y','Y','Y','','','','A3','A2','A7','','','','','','','','A12','A8','A5','','','','','','','','','','','','',NULL,'Pacman or dnf, and all the language specific package managers','A1','','','','Y','Y','','','','','','','','','','','','','','','','','Don\'t use a CI','A2','A1','A4','A15','A3','','','','','','','','','','','','','','','','','A20','A14','A17','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','All the packages I need are on it already, the rare ones that are missing are usually missing because they are complicated to package. Also not 100% sure how to.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','To more easily control the software on my system.','Y','','Y','','','','','Powerful options that setup things that would otherwise be complicated','A central repository that contains my configurations','Rollbacks','Even more options, better default options.','Fedora or arch linux','Y','','','','','','','Y','','','','Nil for lsp','','Keep on keeping on'),(1796,'1980-01-01 00:00:00',5,'en','1565521455','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','managing packages under linux was a lot of work. the ones i cared about were more outdated than arch. contributing an upgrade is hard: every package on nixpkg is its own little snowflake (no punto intended)','','','','','Y','logs of problems with locale','Y','','','','','','','','','','Y','Y','','','','','more standard strutture for packages in nixpkg. versione URL and Nash could be stored in a plain data file, possibly even automatically upgraded from repology or something',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Home manager dotfile management is a big mess and eventually i gave up on it and nix\r\n\r\nNix itself is ok I guess but it doesn\'t woke great on a non nixos host. \r\n\r\nUltimately, it was just too much work, docs are scant and I wasnt really benefitting from it as much as I thought I would','Maybe. If package sources on nixpkgs are more uniform, the CLI is more uniform (one way to do things..), and docs are better',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1797,'1980-01-01 00:00:00',5,'en','428891919','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','Y','','A2','A friend of mine recommended it for my dotfiles, especially NixOS, and after considering alternatives and other applications, I decided to learn it.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A7','A10','A1','','','','','','','','A7','A6','A3','','','','','','','','','','','','',NULL,'Dotdrop, flatpak, archlinux, patience and resilience','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A2','A4','A25','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time','N','Y',NULL,'Not much time to configure it entirely.','Having spare time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'flake-utils','Digga, flake-utils-plus, Standard, nvfetcher','A unified and general framework for managing flakes (both system-level and user-level), similar to what digga does, is needed.\r\nCurrently I\'m trying to implement my proof of concept.'),(1798,NULL,NULL,'en','477177907',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1799,'1980-01-01 00:00:00',5,'en','753696951','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Developer, compilers','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Managing systems both personally and in a previous job ','Y','Y','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A6','A3','A13','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'N','Y',NULL,'Stopped maintaining personal servers ','If I wanted to have personal servers again ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','',''),(1800,'1980-01-01 00:00:00',5,'en','1283432289','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Some friends started using NixOS, I was immediately sold on the idea of a declerative way of configuring my system so I switched as soon as I could. This meant I had to start learning Nix. ','','','','','','','Y','Y','','','','','','','Y','','Y','','Y','','A2','A7','A1','','','','','','','','A4','A2','A14','','','','','','','','','','','','',NULL,'Docker or just the default package manager of my system','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Haven\'t had the need to contribute','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Some friends started using NixOS, I was immediately sold on the idea of a declerative way of configuring my system so I switched as soon as I could. ','Y','','Y','','','','','Declarative system config','Easy rollback','','','I would use Arch Linux for my personal machines and Fedora for Servers. ','Y','','','','','','','','','','i3','I use home manager to configure my dot files ','',''),(1801,'1980-01-01 00:00:00',5,'en','195751209','A8','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','','','Y','','','','','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','Y','Y','','A2','A3','A1','','','','','','','','A2','A1','A12','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','Y','','','','','','','custom','A13','A21','A22','A3','','','','','','','','','','','','','','','','','','A2','A13','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','','Y','Y','Y','Y','Y','','','Declarative config','Rollbacks','Remote deployment','','Openbsd','Y','','','','','','','','','','arcan','','',''),(1802,NULL,1,'en','156999344','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','Y','','','','','','','Y','','','Android',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1803,NULL,2,'en','1604203479','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','','','Y','','','Android :/','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I heard about it on a local conference, so I borrowed a VPS to try it out. Over about 1 year I migrated all the things from my old system and shut the other VPS down, so now all my servers are NixOS. I only use Nix on desktop sometimes to install packages not present in Arch repositories.','','Y','','','','','','Y','','','','','','Y','','','Y','','Y','','A7','A1','A9','','','','','','','','A8','A5','A4','','','','','','','','','','','','',NULL,'Probably pyinfra for software defined infrastucture with a lot more containers to avoid version clashes.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A12','','','','','','','','','','','','','','','','','','','','A12','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I don\'t have issues with existing packages, and packaging new software is not that easy',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1804,NULL,NULL,'en','42397746',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1805,NULL,NULL,'en','531335661',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1806,'1980-01-01 00:00:00',5,'en','657725521','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','','','','','','Y','','Y','','','','','','','Y','','','','A7','A1','A10','','','','','','','','A3','A6','A9','','','','','','','','','','','','',NULL,'Debian + Docker','A5','','','','','Y','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','Y','Y','','','','','','','','Debian + Docker','Y','','','','','','','','','','','','',''),(1807,'1980-01-01 00:00:00',5,'en','839562346','A5','A5','male','','','','','','','Y','Y','Y','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','As a replacement for homebrew.','Y','Y','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A3','A1','','','','','','','','A6','A13','A8','','','','','','','','','','','','',NULL,'Ansible, custom shell scripts, asdf-vm','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A2','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','No particular need. Almost nothing I need is not already there.','N','Y',NULL,'Doing python development in sync with people not using Nix was too painful; building python pip modules with C extensions failed in a variety of mysterious ways.','Intending to for home lab usage.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Currently using: alejandra, nix-update, nvd, nix-index, home-manager\r\n\r\nIntending to soon: sops-nix, nixos-anywhere, disko, impermanence.','',''),(1808,'1980-01-01 00:00:00',5,'en','1132468697','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It allows me to automate things to a great extent. Can be used to solve so many problems, packaging, reproducible development environment, system configuration, deployments, e.t.c.','','Y','','Y','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','Y','','A1','A2','A3','','','','','','','','A8','A9','A2','','','','','','','','','','','','',NULL,'Explore guix/spack or suffer with something like Ansible','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A9','A1','','','','','','','','','','','','','','','','','','','A20','A23','A24','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I am a fan of automation and dislike doing things manually. Before discovering NixOS I went through unpleasant times with Chef, Puppet, Ansible and SaltStack trying to automate much of what comes with maintaining a Linux based operating system. With much effort I managed to get a lot of things automated, but not even close to what NixOS could achieve and with that kind of stability. Discovering NixOS was a game-changer, especially the module system and how it can be used in such a flexible way.','Y','Y','Y','','','','','Configuration as code','Reproducibility','Composability','A transparent abstraction of init systems, to support any init system in the configuration.','Guix? ArchLinux?','Y','','','','','Y','','Y','','','','flake-parts, home-manager, devshell, terranix, NixOS-WSL, pre-commit-hooks.nix, treefmt-nix, cachix, twist.nix, emacs-overlay, nixos-hardware, flake-compat, comma, nil, alejandra','',''),(1809,'1980-01-01 00:00:00',5,'en','1636608227','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was distro hopping and NixOS looked interesting.','','','','','','','Y','Y','','','','','','Y','','','Y','','','','A1','A2','','','','','','','','','A14','A10','A8','','','','','','','','','','','','',NULL,'Fedora or Debian.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','A hand crafted script that calls nix flake update;nixops deploy and then commits the changes','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was distro hopping and discovered NixOS','Y','Y','','','','','','Atomic rollback','Package availability','Declarative configuration','','Fedora or Debian','','Y','','','','','','','Y','','','','',''),(1810,NULL,NULL,'en','1848136006',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1811,'1980-01-01 00:00:00',5,'en','1487501865','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I\'ve seen Nix post on HN or lobste.rs and liked the idea, especially the declarative nature compared to apt or Docker. First I tried the package manager on my work Ubuntu system. When I had a free weekend I reinstalled my work laptop to NixOS, to try it out. I wasn\'t sure how to dual boot it with Ubuntu installed fist, so I backed my data and did a clean install and hoped it will be usable. I\'m learning and using Nix and NixOS since.','','Y','','Y','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Ubuntu and Docker. I would probably try Guix or search for something else similar to Nix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A10','A15','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I don\'t understand it that well yet. Also most software I needed is already on nixpkgs and I don\'t maintain any open-source projects that would make sense as nix packages.','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Already told it in previous question about Nix package manager.','Y','','','','','','','declarative configuration','installing multiple versions of PHP, Node, Python, it makes more sense to me compared to update-alternatives and similar in other distros','its fun and exciting compared to regular Linux distributions','I would make it so Flakes are stable and the official way to use Nix/NixOS. So the documentation is not split between flakes and not-flakes.','Ubuntu, it has least problem with hardware/drivers ','Y','','','','','','','','','Y','','home-manager\r\nnix-direnv\r\n','','I was surprised how old Nix is. It feels really modern. I like the new Nix command and Flakes I hope it gets stabilized soon. \r\n\r\nWhat I would like to see in the future is specific official documentation for user stories, for example: \r\n\r\n\"I\'m a developer and want to get the correct versions of my dev dependencies or make a Docker container\"\r\n\"I\'m a package maintainer and want to make a package for nixpkgs\"\r\n\"I\'m a sysadmin and want to deploy server with NixOS\"\r\n\r\nAlso I feel like most information I consumed was from other people blogs and the wiki and not the official docs. It might be just me, but there is something that bugs me about the official docs. It might be combination of long pages and lack of TOC navigation, for a reference-style documentation.\r\n'),(1812,NULL,3,'en','186916731','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','There is a Linux slack channel at work and they were talking about it. The I found out about a nix channel at work and just got curious.\r\nI wasn’t happy with Ubuntu and ansible. \r\nUnfortunately I only use it for personal projects as my work has a mac only policy.','','Y','','','','','Y','','','','','','','','','','Y','','','','A10','','','','','','','','','','A4','A6','A5','','','','','','','','','','','','',NULL,'','A4','','','','','Y','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','',NULL,NULL,NULL),(1813,'1980-01-01 00:00:00',5,'en','2071548070','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','A friend dared me to try it out, and then I stuck with it because I liked it.','','Y','','Y','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A5','A14','A9','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','Y','','','','A2','A10','A9','A12','A13','A14','A18','A22','A25','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I haven\'t had the need yet, until recently, so I\'ll probably soon do so.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','StumpWM','','','I *think* I\'m beginning to understand what flakes are all about, but it still seems a bit overcomplicated to me, and I\'m not sure I really understand it. I\'m currently using the community project niv, which is sufficiently straightforward for me to understand. I want to use flakes, but I haven\'t gotten around to it yet, and it bugs me a bit.'),(1814,NULL,1,'en','1325575658','A2','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1815,'1980-01-01 00:00:00',5,'en','946732798','A8','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','Y','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was looking for alternatives for homebrew','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A2','A6','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'stuck with homebrew and build docker images for my CLIs','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A1','','The nikpkgs repo is too big and it is not clear on how to contribute and update packages. Also documentation of nix is really messy so I am not motivated to learn nix language.','N','Y',NULL,'Some softwares are not compatible. For example, Zoom and Microsoft teams failed to run on my hardware and after spending hours to debug I could not get it to work so I gave up.','When the software that I use do not give me trouble on my hardware',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1816,'1980-01-01 00:00:00',5,'en','821031819','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','Linguistics Student','','','Y','','','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1817,NULL,2,'en','1387327817','A1','A4','-oth-','A duck','','','','','Y','Y','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was curious after seeing a few people recommend it. Being able to configure my os (NixOs) so it was deterministic was a big selling point. I found where most people use ansible as a task runner, what they really need is nix. Nix was a big long rabbit hole for me','Y','Y','','','','Creating vms/lxc’s for proxmox','Y','Y','','','','','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A14','A8','A6','','','','','','','','','','','','',NULL,'GUIX, I only use NIX as discovered nix first. If I tried GUIX first I’d probably use that for no reason other than I used it first.\r\n\r\nWithout GUIX or NIX, a bunch of janky shell scripts, ansible, puppet.','A1','','','','Y','','','','','','','','','','','','','','','','','','','A1','A5','A11','A15','A2','','','','','','','','','','','','','','','','','A5','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Accessibility \r\n\r\nI know enough to hack some flakes together but committing to nixpkgs is a different matter. I have actively looked but have read a fair amounts of nix docs but haven’t seen anything on the nix repo structure, guides to adding packages etc.\r\n\r\nWhen packages I use have had issues I’ve tried to patch them and raise prs where I can but for some of the complex things like rust runtimes etc, it’s often been overwhelming. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1818,'1980-01-01 00:00:00',5,'en','252338094','A1','A3','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1819,NULL,1,'en','2143618645','A2','A3','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1820,'1980-01-01 00:00:00',5,'en','865575122','A2','A4','male','','','','','Y','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Replicability and predictability. ','Y','Y','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','','','','A7','A3','A2','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Ubuntu. ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A7','A2','A1','A9','A8','A20','','','','','','','','','','','','','','','','A7','A2','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Replicability and predictability. ','Y','','Y','Y','','','','Declarative configuration ','Predictive builds ','Stability ','The improvement from Ubuntu was just so great I have no opinion on this yet. ','Ubuntu. ','Y','','','','','','','Y','','','','','',''),(1821,'1980-01-01 00:00:00',5,'en','502549303','A1','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','I had been interested in it, but I did not start using it until a friend used it in his project and I wanted to check it out.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','','','','A1','A3','A9','','','','','','','','A14','A4','A5','','','','','','','','','','','','',NULL,'Nix is the only real option for my work, using Obelisk/Reflex.','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A2','','Time.','Y',NULL,NULL,NULL,NULL,'A4','Y','','','','A3','I figured using NixOS would make me learn Nix better/faster.','Y','','','','','','','Rollback','Declarative configuration','Nix integration','There is nothing big, just many small issues.','I use Arch as my primary OS because a wide range of software works without hassle and gets timely updates. I am also able to easily experiment with stuff.','Y','','','','','','','','','','i3','Cachix','','Nix takes an incredible amount of work/effort to maintain. Thank you!'),(1822,NULL,1,'en','674511183','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1823,'1980-01-01 00:00:00',5,'en','1668053900','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A7','A3','','','','','','','','A14','A9','A5','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','','','','','A3','A13','A1','','','','','','','','','','','','','','','','','','','A3','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','','XMonad','','',''),(1824,NULL,2,'en','711666328','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','Curiosity ','','','','','','','Y','','','','','','','','Y','','Y','','','','A1','','','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','','','','','A18','','','','','','','','','','','','','','','','','','','','','A18','','','','','','','','','','','','','','','','','','','','','','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1825,NULL,NULL,'en','200143823',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1826,'1980-01-01 00:00:00',5,'en','171813752','A2','A4','male','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because I need reproducible environments for scientific research. Getting the same results in 3 years time is important.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A1','A9','','','','','','','','A12','A8','A3','','','','','','','','','','','','',NULL,'my own half baked solution in this space.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A21','A10','A18','','','','','','','','','','','','','','','','','A21','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because my ubuntu wouldn\'t upgrade because they deleted the necessary packages. And I was already using nix for scientific environments.','Y','Y','Y','Y','','','','Decelerative configuration','Fearless switching thanks to rollbacks','Shared builds','Free binary caching for the masses.','Ubuntu, I suppose.','','','','','','Y','','','','','i3','mach-nix','',''),(1827,'1980-01-01 00:00:00',5,'en','1676854356','A8','A3','male','','Y','','','Y','','Y','','','','','','','','','Y','','Y','','','Y','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','A critical internal work tool is only compatible with NodeJS 10, which was not avaliable in nixpkgs. No support for running arbitraryu binaries, attempted to compile from source and unfortunately that failed','','','','','','','','','','','','','Y','Given more time, I could learn a bit more nix. Maybe some entry-level devops stuff from the ground-up in nix sould be a useful tutorial?','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Details on last page. To recap, I found installing different versions of packages alongside each other pretty unclear in Nix. Personally I prefer to use the ASDF-vm tool for switching between python and nodejs versions, but this was unsupported in Nix.\r\n\r\nWhile I\'d like to learn the \"proper\" nix way to handle this, I discovered that there\'s hard limits on what versions are avaliable. I had an internal work tool that only works with nodejs version 10, which was deprecated and also unavailable on nixpkgs','More freedom to install anything, even deprecated software (with disclaimers of course).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','It\'s a great project, it may not be for everyone. But I\'m considering using this more regularly on my personal machine! '),(1828,'1980-01-01 00:00:00',5,'en','340022829','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was forced to use nixos for a project I was doing with a friend.','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A10','A3','','','','','','','','A8','A4','A3','','','','','','','','','','','','',NULL,'Probably debian ','A4','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A15','A10','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Unclear guidelines, general chaos, reviews taking months.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was forced to use nixos for a project I was doing with a friend.','Y','','Y','Y','','','','Configuration management','Easy rollbacks','','I\'d make /etc/systemd/system mutable.\r\n\r\nI\'d also work towards better composability of modules, but no concrete proposal here yet.','arch on desktop, debian on servers','Y','','','','','Y','','','','','openbox','','',''),(1829,NULL,2,'en','1073963823','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','Y','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted to build reproducible cross-platform build environments for macOS and Linux for work. When looking in to anix, I decided to also switch to it as my main os.','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','','A1','A2','A10','','','','','','','','A9','A8','','','','','','','','','','','','','',NULL,'Docker and Arch Linux','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','','','','','','','','','','','','','','','','','','','','A9','A3','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','To many options for packaging',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1830,'1980-01-01 00:00:00',5,'en','1570925378','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Dev shells and reproducible dotfiles.','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A3','A6','A1','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'Guix ','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','Sourcehut','A1','A13','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducibility ','Y','','Y','','','','','','','','','','','','','','','','','','','','','','',''),(1831,'1980-01-01 00:00:00',5,'en','153304203','A1','A4','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','declarative','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','Y','','A2','A7','A1','','','','','','','','A4','A6','A12','','','','','','','','','','','','',NULL,'become a farmer','A2','','','','Y','','','','','','','','','','','Y','','','','','','','','A22','A15','A25','','','','','','','','','','','','','','','','','','','A22','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','bloody community has gone woke. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','declarative ','Y','','','','','','','atomic rollback','declarative','source builds','I would remove all the woke people. ','become a farmer','Y','','','','','','krops','Y','','','','','','stop being so woke. '),(1832,NULL,1,'en','747733134','','A3','male','','','Y','','','Y','','','','','Y','','','Y','','','','Y','','','','','','Y','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1833,NULL,NULL,'en','1758769467',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1834,'1980-01-01 00:00:00',5,'en','822822622','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','N','N','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','A somewhat detailed tutorial for getting set up for development. Especially a setup that would either complement or replace the use of version managers for the Ruby language and required gems.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1835,'1980-01-01 00:00:00',5,'en','239915401','A1','A4','male','','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','','Y','Y','Y','Y','Y','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','','Y','','A1','A10','A2','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'','A4','','Y','','Y','Y','','','','','','','Y','','','Y','','','','','','','','A2','A15','A3','A4','A10','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','Y','Y','','','','','','','Y','Y','','','','','','Y','','','','','','Beware of woke shit'),(1836,'1980-01-01 00:00:00',5,'en','988895498','A1','A4','male','','','','','','','','','','','','','','','','','','Y','Y','','','','','Y','','Y','Y','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1837,NULL,2,'en','640546425','A2','A2','fem','','','','','','','','','Y','','Y','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','my friend telled me about NixOS','','Y','','','Y','','Y','','','','','','','','Y','','Y','','','','A6','A7','A9','','','','','','','','A14','A5','A10','','','','','','','','','','','','',NULL,'docker for containers and just use imperative system','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','A15','A24','','','','','','','','','','','','','','','','','','A2','A15','A24','','','','','','','','','','','','','','','','','','','','','','','A1','','Knowledge of Nix language and my lazyness',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1838,NULL,NULL,'en','166543757',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1839,'1980-01-01 00:00:00',5,'en','791884767','A4','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','Y','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A12','A6','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','','',''),(1840,'1980-01-01 00:00:00',5,'en','95703782','A8','A3','male','','','','','','','Y','','','Y','','Y','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Because I wanted something stable for my home-server, and using it for my home-server also seemed like a good stepping-stone for using it on my desktop/laptop later on.','','Y','','','','','','Y','','','','','','','Y','Y','Y','','','','A2','','','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'Apart from Guix? Probably just Ubuntu/whatever is \"standard\", for my home server. ','A7','','','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A2','','1. I can\'t package my software\r\n2. I don\'t have anything in particular to contribute anyway','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','(I already answered this with Nix)','','','Y','','','','','Declarative configuration','Being able to write custom software and then deploy it to my NixOS system','','1. I would make documentation that assumes I\'m learning *on* NixOS, instead of assuming e.g. that I already know how to e.g. set up an Ubuntu server and am simply trying to transfer existing setup/understanding over to NixOS.\r\n2. I\'d resolve secrets by either A) picking one specific secrets manager and making it the default, or (since people haven\'t come to a consensus on e.g. whether to store secrets encrypted inside nix-store or outside the nix-store entirely) B) creating a standard interface for specifying the secret and hiding the specific secret-manager behind that abstraction (and perhaps then you could just write \"secrets-manager=sops-nix;\" or whatever). Either would be an improvement, I don\'t care which, just make it easy for me to add *some* security and then move on with the configuration.\r\n3. I\'d change the syntax of Nix so that semicolons aren\'t a piece of syntax in the middle of the line, and instead mean \"the things before the semicolon are not connected to the things after the semicolon\" like it does in any *sane* language.\r\n4. I\'d harshly reduce the number of tools used for NixOS instead of having 10 different tools for managing secrets, packaging, etc. (very heavily leaning on that magic wand here)','Guix, or Ubuntu/whatever is \"standard\" for home servers.','Y','','','','','','','','','','','','',''),(1841,'1980-01-01 00:00:00',5,'en','1982189492','A2','A4','male','','','','','','','','Y','','','','','','Y','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','It\'s really nice when the whole system is defined with a single text file. It feels like there is a lot lot less moving parts this way.','','','','','Y','','Y','','','','','','','','Y','Y','Y','','','','A2','A5','A9','','','','','','','','A5','A2','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','Garnix','A19','A8','A1','A5','','','','','','','','','','','','','','','','','','A19','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I feel my skills are not enough to pass PR review, also I don\'t have enough time to be a maintainer','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Read many stories about it is being declarative and finally gave it a try. Tried gnome version, didn\'t like it and switched to KDE/Plasma version.\r\nI really like that the whole system is configured with a single text file, although it is quite hard to configure sometimes. I don\'t use home-manager as it looks like it is not stable enough and can\'t reliably convert KDE configs to a text configuration and vice versa.\r\n','Y','','','','','','','Declarative configuration for the whole system','First-class support for nix package manager','Source distribution with binary caches guaranteed to match the source, and ability to install non-free tools','- Ability to verify that my system exactly match my configuration (for peace of mind and security)\r\n- 100% translation of third-party apps configurations to nix configs and vice-versa, i.e. custom changes from apps UIs/TUIs should not be present after reboot/relogin/relaunch unless I committed them','Ubuntu + bazel/buck/similar hermetic multilanguage build tool','Y','','','','','','','','Y','','','nix-parts\r\nflakes','dream2nix - tried to adapt it for my gradle project, but didn\'t have time to finish\r\nflake-utils - don\'t like looking for docs for it too and mostly can write flakes without them\r\nnix pills - too abstract to finish when I usually have nix-related task at hand I\'d like to understand better','I really miss docs on good practices, pre-made code fragments for common tasks, some interactive web tutorials'),(1842,NULL,NULL,'en','906141699',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1843,NULL,1,'en','1394078773','A2','A4','male','','','Y','','','Y','Y','','','Y','Y','','Y','Y','Y','','Y','Y','','Y','','Y','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1844,NULL,NULL,'en','1041467478',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1845,NULL,NULL,'en','883142555',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1846,NULL,NULL,'en','473265362',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1847,'1980-01-01 00:00:00',5,'en','841265531','A2','A2','-oth-','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A7','A10','A2','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'I\'d probably end up using something like Fedora Silverblue, so rpm-ostree, dnf and toolbox, I guess','A7','','Y','','Y','Y','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I tried it and couldn\'t leave','Y','','Y','Y','','','','The config file(s)','Atomic updates and rollbacks','Ability to relatively easily create new packages','Add documentation, support for indentation with tabs\r\nChange error messages\r\n','Probably Fedora Silverblue','Y','','','Y','','Y','','Y','','','Sway','home-manager, agenix','',''),(1848,NULL,1,'en','1303259655','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1849,NULL,2,'en','1482795448','A1','A5','male','','','','','','','','','','','','','','','','','','','','','','','','','Translator','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','','','NixOS','A4','I switched from Linux Mint to NixOS because I wanted to be able to install recent packages without dependency hell','','','','','','','Y','','','','','','','','','','Y','','','','A1','A7','A10','','','','','','','','A5','A13','A14','','','','','','','','','','','','',NULL,'Flatpak','A4','','','','','','','','','','','','','','','','','','','','','','','A13','A15','A2','','','','','','','','','','','','','','','','','','','A13','A15','A2','','','','','','','','','','','','','','','','','','','','','','','A2','','Lack of documentation and a reluctance to negotiate social interactions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1850,NULL,4,'en','162936086','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','My KDE Neon installation broke (once again) due to a broken update and I heard you could just roll back updates without any problems on NixOS.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A8','A5','','','','','','','','','','','','','',NULL,'No','A7','','','','Y','','','','','','','','','','','','','','','','','','','A13','A25','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Nothing, i already did','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','All of my daily computing','A3','My KDE Neon installation broke (once again) due to a broken update and I heard you could just roll back updates without any problems on NixOS.','Y','','Y','','','','','Extremely stable','Rollback in case of fuckup','Single source fo truth for the state of the system','Some parts of the nix-lang feel a bit clunky to use (maybe a more haskell-like syntax (I\'m not sure though))','Arch linux maybe?','Y','','','','','','','','','','Hyprland','Home-manager','',NULL),(1851,'1980-01-01 00:00:00',5,'en','1064853761','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','A Friend of mine discovered NixOS on the Internet and was fascinated by it, started using it and told me very enthusiastically about it. In the beginning, I was very sceptical about it, like: binaries aren\'t at /usr/bin, wtf! Get that thing out of my face! But then, i realized what you can achieve with it, like configuring your system exactly how you want to and completely apply this config on another machine. I thought that it might be worth a try at some point in the future. Not even a month later, the graphics of my KDE Neon (Ubuntu-based Distro) broke down due to a faulty Update. Exactly the kind of Problem NixOS doesn\'t have. After three days of trying to fix the existing Installation, I decided to reinstall, but I thought, „if not now, then when?“, so I installed NixOS.','','','','','','','Y','Y','','','','','','','','Y','Y','','','','A7','A1','A10','','','','','','','','A8','A4','A1','','','','','','','','','','','','',NULL,'Maybe I\'d have a closer look at GNU Guix. Otherwise, the system package manager (apt/pacman) or the package manager of the respective language.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A2','A15','A3','A22','A9','A6','','','','','','','','','','','','','','','A6','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A Friend of mine discovered NixOS on the Internet and was fascinated by it, started using it and told me very enthusiastically about it. In the beginning, I was very sceptical about it, like: binaries aren\'t at /usr/bin, wtf! Get that thing out of my face! But then, i realized what you can achieve with it, like configuring your system exactly how you want to and completely apply this config on another machine. I thought that it might be worth a try at some point in the future. Not even a month later, the graphics of my KDE Neon (Ubuntu-based Distro) broke down due to a faulty Update. Exactly the kind of Problem NixOS doesn\'t have. After three days of trying to fix the existing Installation, I decided to reinstall, but I thought, „if not now, then when?“, so I installed NixOS.','Y','','Y','','','','','The ability to roll back between generations','The ability to maintain a shared system configuration in one place, applying it to various machines.','Easily extending my system in a reproducible way by customizing existing packages (overrides)','','Maybe I\'d have a closer look at GNU Guix. Otherwise, probably something Debian-based. Maybe Arch.','','','','','','','','','','','i3wm','Nil language server, nix-mode for emacs','','I ❤️ NixOS'),(1852,'1980-01-01 00:00:00',5,'en','857868445','A5','A2','-oth-','','','','','','','','Y','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A7','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A10','A7','','','','','','','','A5','A14','A9','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A2','A1','A5','A4','A15','A26','A17','A19','A20','A9','','','','','','','','','','','A17','A26','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1853,NULL,NULL,'en','1577116509',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1854,'1980-01-01 00:00:00',5,'en','1551788882','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','Daily driver ','A3','Didn\'t like having to redo my whole system and wanted a reproducible OS. Found nixOS, tried it and never went back.','','Y','','','Y','','Y','Y','','Y','','','','Y','Y','','','','','','A2','A1','A4','','','','','','','','A14','A6','A15','','','','','','','','','','','','',NULL,'BlendOS','A7','','','','Y','','','','','','','','','','','','','Y','','','','','','A9','A7','A6','A1','A25','','','','','','','','','','','','','','','','','A9','A7','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Not knowing how to.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Daily driver ','A3','Same as previous.','Y','Y','Y','Y','','','','Reproducible build','IaC on an OS level','Stability ','Possibility to set software settings in nix config (I know it\'s next to impossible to implement but it\'d be great).','BlendOS ','Y','','','','','','','Y','','','I\'d love official NSCDE support but right now it\'s not the case.','Right now none but I\'d love for more communication about them from the nixOS team.','Hydra. I love the concept but would love a better execution of it.','nixOS improved a lot this last few years and I hope it keeps going. I think it needs to continue improving user friendlyness to attract more people and more devs to keep on making it better.'),(1855,'1980-01-01 00:00:00',5,'en','1430049013','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','','Y','','','','','Y','Y','','Y','','','','','','Y','Y','','','','A1','A2','A10','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A6','A9','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','','Y','','Y','Y','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1856,'1980-01-01 00:00:00',5,'en','146960157','A2','A2','male','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A2','A4','A6','','','','','','','','','','','','',NULL,'guix','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','A22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','The opacity of what\'s happening inside nix.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','To replace ansible declarative environments.','','','Y','','','','','Declarative environments','Portability','','','','Y','','','','','','','','','','','','',''),(1857,'1980-01-01 00:00:00',5,'en','1296535653','A8','A3','male','','','','','','','','','Y','','Y','','','','','Y','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Let down by my first love, Arch, after getting the 4-year old install into a half-broken state with the AUR.','','','','Y','Y','','Y','','Y','Y','Y','Y','','Y','Y','Y','Y','Y','Y','','A2','A6','A1','','','','','','','','A12','A1','A5','','','','','','','','','','','','',NULL,'Arch','A4','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A24','A15','A1','A2','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Arch AUR half-broken','Y','','Y','Y','','Y','','Rollbacks','Declarative configuration (tracked by git)','Image generators','Distributed package delivery','Guix?','Y','','','','','','','Y','','','','Nixos-generators','',''),(1858,'1980-01-01 00:00:00',5,'en','530847364','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','Y','','','','Y','Y','Y','','','','','A2','A1','A3','','','','','','','','A4','A8','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A4','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','','','','','','','','','','','','','','','','','','','','','sway','','',''),(1859,'1980-01-01 00:00:00',5,'en','841334003','A4','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A4','Out of curiosity ngl','','Y','','','','','Y','','','','','','','','Y','','','','','','A2','A1','A4','','','','','','','','A8','A7','A11','','','','','','','','','','','','',NULL,'Guix','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A4','A15','A2','A20','','','','','','','','','','','','','','','','','A23','A24','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','Y',NULL,'I had to use software like Vivado and couldn\'t manage to install it with NixOS.\r\n\r\nAlso hard to customize meta packages like GNOME','Better docs to use closed software with niche FHS setups\r\n\r\nAlso, better way to have a minimal GNOME etc. (Like installing gnome-shell only on Arch)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1860,'1980-01-01 00:00:00',5,'en','505618854','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A5','A14','A3','','','','','','','','','','','','',NULL,'Guix? ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','A2','A4','A3','A5','','','','','','','','','','','','','','','','A1','A2','A5','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','Y','','','','Declarative System Management','Easy service management','','','Guix?','Y','','','','','','','','','','i3','','',''),(1861,'1980-01-01 00:00:00',5,'en','1598939776','A2','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','Y','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Because of the package management capabilities.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A3','A8','','','','','','','','A8','A1','A6','','','','','','','','','','','','',NULL,'Arch Linux, Docker','A4','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Lack of time','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Declerative configuration management.','Y','','','Y','','','','Declarative configuration management.','Remote configuration through SSH.','Simple rollback.','Declarative VM management similar to the nixos-containers.','Arch Linux.','Y','','Y','','','','','','','','i3','','',''),(1862,NULL,NULL,'en','652357772',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1863,'1980-01-01 00:00:00',5,'en','1010814121','A5','','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','curiosity resulting in my switch from Debian, NixOS suited my needs and sensibilities better ','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A8','A6','','','','','','','','','','','','','',NULL,'if it never existed would likely still be using Debian;\r\nnow that I have switched, if it ceased to exist, or I became discontent, would likely explore Guix','A1','','','','Y','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','focus, time, deciding what to do with the software I develop; I guess I answered this one incorrectly as this describes my use rather perhaps than my interaction ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','curiosity lead me to try it, thereafter switched from Debian as NixOS suits the way I like to be able to set things up much better ','Y','','Y','','','','','Deterministic (along with the degree of configurability)','Reproducibility (along with the degree of configurability, and reliability)','Rollback (have not needed much, that it is there adds to peace of mind); actually tied with repeating degree of flexibility and configurability','keep flakes, ensure continued possibilities for a distributed approach to adding packages while keeping the central nixpkg repository; in short not much, maturing without radically altering the status quo ','Guix (unknown to me) or Debian (long time past user)','Y','','','','','','','','','','i3 wm, tmux, etc.','','',''),(1864,'1980-01-01 00:00:00',5,'en','2128136504','A2','A2','male','','','','','','','Y','','Y','','Y','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','','','on m\'y backup server','A1','','','Y','','','','','','Y','','','','','','','','','Y','','','','A7','A2','A10','','','','','','','','A8','A5','A4','','','','','','','','','','','','',NULL,'Ansible on Debian instead of nixos','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Nothing!','Y',NULL,NULL,NULL,NULL,'A2','','','','on m\'y backup server','A1','I thought having a declarative config was cool and wanted to use nixos on my desktop, but didn\'t switch to it for now.','','','Y','','','','','','','','','','','','','','','','','','','','awesomewm','','',''),(1865,'1980-01-01 00:00:00',5,'en','1705099749','A1','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A9','A1','','','','','','','','A5','A4','','','','','','','','','','','','','',NULL,'bazel,docker','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A2','','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','','',''),(1866,'1980-01-01 00:00:00',5,'en','1248691918','A1','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A7','A3','A2','','','','','','','','A9','A8','','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1867,'1980-01-01 00:00:00',5,'en','2083052537','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','I was curious and got interested when I saw I could fully configure my system with it to have reproducible builds.\r\nAlso I am now happy to see that it is a bit easier to change options of some programs as they are all abstracted by nix options (eg. \"boot.loader.grub.splashImage\" - never would I have thought I\'d customize this)','Y','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A10','','','','','','','','A6','A14','A8','','','','','','','','','','','','',NULL,'Some sort of CMDB (ansible, user-script, or a custom post-install shell script)','A2','','','','Y','','','','','','','Y','','','','','','','','Y','','','','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I wanted to create a package for nix (adding support for a new keyboard layout) though I did not understand how to easily put files in the folder created by another package and did not dig further.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','','','','','','reproducible builds','easy to access parameters for some packages','','a language server for nix configuration, or some documentation akin to the archlinux wiki','','Y','','','','','','','Y','','','','','',''),(1868,NULL,NULL,'en','301602608',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1869,'1980-01-01 00:00:00',5,'en','156966912','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I hate having to apt install stuff when downloading some program/library/sdk and have long wanted to have a better way of keeping track of what is installed on my system. I have also been annoyed when having to install some applications separately because I needed relatively recent versions.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A3','A2','','','','','','','','A2','A14','A9','','','','','','','','','','','','',NULL,'Docker/podman mostly','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A9','A2','A15','A22','','','','','','','','','','','','','','','','','A1','A22','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I haven\'t had to and succeeded in building any open source software within nix, and I\'m not sure if contributing binary ninja would be that interesting','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Same as Nix','Y','','Y','','','','','Declarative (and easy!) system config','Syncing config between computers easily','Access to many up to date packages','','Probably arch linux','Y','','','Y','','','','Y','','','i3','','',''),(1870,NULL,-1,'en','1996464828','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1871,'1980-01-01 00:00:00',5,'en','382434922','A2','A4','male','','','Y','','Y','Y','Y','','','','Y','','','Y','','Y','Y','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I love declarative configuration and both NixOS & nix-darwin really grabbed me as a nice way to manage my workstations (Mac/Linux).','Y','','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A7','','','','','','','','A9','A8','A3','','','','','','','','','','','','',NULL,'Bash scripts and manual configuration','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A7','A9','A1','A2','','','','','','','','','','','','','','','','','','A7','A1','A9','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Haven\'t had the need yet, someone else has always beaten me to raising a PR when I have found an issue','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Being able to manage my home server without running puppet-server was a massive attraction. Also being able to bring the OS up from scratch with the old configuration before adding data from backups as a disaster recovery was great.','','','Y','','','','','Declarative Configuration','Applying configuration changes atomically, including boot loader changes','','Either add better support for mirrored grub, or improve the documentation for BIOS (legacy) mirrored grub support. I can\'t get it working.','SmartOS with Ubuntu zones configured by puppet.','','','','','','Y','','','','','Headless server','nix-darwin','deploy-rs, NixOps','Nix.* is bloody awesome.'),(1872,'1980-01-01 00:00:00',5,'en','875319586','A5','A3','-oth-','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A2','A7','','','','','','','','A3','A8','A2','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A11','A15','','','','','','','','','','','','','','','','','','','','A9','A11','A19','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','Easy to install software - the config for most things is already done. ','Rollbacks','','I would make flake based config the default and move away from configuration.nix','Ubuntu','Y','','','Y','','','','','','','i3','flake-parts','',''),(1873,'1980-01-01 00:00:00',5,'en','283899045','A2','A4','male','','','','','','','','Y','Y','','','Y','','','','','','Y','','','','','','','','Y','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Software I needed was only provided as Flatpak or deb, configuring the system was difficult but nice once it worked. ','Not sure. Vaguely, if there is a very obvious simple advantage to using it that another distro can’t match. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','My biggest reason for hesitating to use any part of the Nix ecosystem again is that there seems to be (at the time) a massive gulf between flakes and the legacy way of using nix. And useful information was divided between these things and often times the information was either too shallow to help with a problem or too dense to understand how to take the information and apply it to my system. \r\nThe nix language is not simple enough to really use for its purpose (far too many implicit shapes and effects). It is also quite slow to iterate when you’re trying to accomplish something and failing/learning. This is time not spent doing productive work. \r\nAnd nix doesn’t have a good story for building software that you’d ship to customers. Toolchains and so on, dependencies all expect a nix based runtime. This limits usefulness for me. '),(1874,'1980-01-01 00:00:00',5,'en','182303874','A2','A3','male','','Y','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A1','I was interested in reproducible builds and Docker didn\'t satisfy my requirements','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A2','A8','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Perhaps guix','A4','','','','Y','','','','','','','','','','','','','Y','','Y','','','','A7','A1','A13','','','','','','','','','','','','','','','','','','','A7','A2','A13','','','','','','','','','','','','','','','','','','','','','','','A1','','Nix documentation is poor to the point that I\'m struggling to know what\'s what','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','I found out this cool article that tells you how to setup NixOS in such a way that the rootfs is recreated from scratch on every boot','Y','','','','','','','Declarative configuration','Reproducible builds','Easy rollbacks','I\'d add a better documentation, honestly','Don\'t know','','','','','','','','','Y','','','','',''),(1875,'1980-01-01 00:00:00',5,'en','881689363','A2','A5','male','','','','','','','Y','','','','','','','Y','Y','','','','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','Y','','','','','','Y','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','getting it installed in a VM would help: atm it (or virtualbox) breaks during install and I cannot be bothered to find out',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','flakes: I cannot tell to give me my fish shell ',''),(1876,NULL,NULL,'en','1853298393',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1877,'1980-01-01 00:00:00',5,'en','868349943','A3','A3','male','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Y','Y','','','A3','Started with home-manager and setting up shell.nix for projects.','','Y','','Y','','','Y','','','','','','','Y','Y','','Y','','','','A1','A3','A2','','','','','','','','A14','A9','A6','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','Y','','','','','','','','','','','A2','A7','A1','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Basic familiarity with the language','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','home-manager','Y','','','','','','','nix shell','nix develop','nix-build switch','better support on LLMs - which means more valid examples for different scenarios and a more stable API haha ','Archlinux\r\n\r\nGuix lacks packages.','','Y','','','','','','Y','','','','don\'t know','home-manager','nix is great, is hard to share with people.'),(1878,'1980-01-01 00:00:00',5,'en','1681091937','A6','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I found Nix due to Nix Darwin, saw that it’s purely functional, and couldn’t wait to get my hands on it.','Y','','','','','','Y','Y','','','','','','','Y','','Y','','','','A3','A1','A6','','','','','','','','A6','A8','A9','','','','','','','','','','','','',NULL,'Containers','A6','','','','Y','','','','','','','','','','','','','','','','','','','A13','A11','A25','','','','','','','','','','','','','','','','','','','A11','A8','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I needed a Linux OS for a cloud VM and NixOS is my first choice','','','Y','','','','','Determinism','Purely functional','Declarative','I would change the Nix language syntax, to be a LISP or ML','Containers','Y','','','','','','','','','','Headless','Nix Darwin, Direnv','',''),(1879,'1980-01-01 00:00:00',5,'en','1905863611','A2','A4','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','Y','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','Y','','Y','Y','Y','','','','','Y','Y','','Y','Y','','','A3','A2','A6','','','','','','','','A6','A3','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A2','A1','A10','A25','','','','','','','','','','','','','','','','','A1','A13','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','','','Y','','','','','','','','','','Y','','','','','','','','','','','poetry2nix\r\nemacs-overlay\r\nnix-direnv\r\nhome-manager\r\nnix-darwin','',''),(1880,'1980-01-01 00:00:00',5,'en','1179046466','A2','A3','male','','','','','','','','','Y','','Y','','','','','','','Y','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I just love the immutability. The ability to always return to a given working state is a game changer. Similar to commits in git.','','','','Y','Y','','Y','','Y','','','','','','Y','Y','Y','','','','A7','A2','A6','','','','','','','','A5','A8','A10','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A2','A19','A4','','','','','','','','','','','','','','','','','','','A2','A19','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Personal time','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','','Y','','','','','','','Rollback','Declarative','Ease of configuration','Easier to fix packages that are poorly behaved.','WSL','Y','','','','','','','Y','Y','','','','',''),(1881,'1980-01-01 00:00:00',5,'en','1062330307','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted a sane package manager for macOS.','Y','','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','','','A2','A1','A3','','','','','','','','A8','A13','A5','','','','','','','','','','','','',NULL,'','A6','','','','Y','Y','','','','','','','','','','','','','','Y','','','Google Cloud Build','A11','A9','A15','A24','A1','A14','','','','','','','','','','','','','','','','A11','A9','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Lack of knowledge/not comfortable enough with the process.','N','N','Better hardware support for my laptop.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','',''),(1882,'1980-01-01 00:00:00',5,'en','1656837789','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','Y','','','','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1883,'1980-01-01 00:00:00',5,'en','358076849','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','When I started using NixOS. I used Arch Linux for 8 years, switched to NixOS in 2020 because I found it online (probably Hacker News) and liked the declarative aspect.','','Y','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','','','','','','','','','A5','A14','A13','','','','','','','','','','','','',NULL,'For development environments, probably Docker.','A2','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I did make one or more small patches I think, mainly just find the whole ecosystem, language etc. confusing and intimidating. I\'ve tried reading Nix pills and going through the manual and people\'s configs and I can do some things but I still find it very intimidating. It actually reminds me of an issue I\'ve had at some workplaces, where there are multiple conventions, so you look at some code and you see an example of something but it\'s done differently or uses different syntax or dependencies, and it\'s hard to figure out why they\'re done differently, what\'s the \"best\" way, or if there are trade-offs to the different methods.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My answer about Nix should be here I guess, I started with NixOS not just Nix.','Y','','Y','','','','','Declarative configuration','Declarative configuration again. I much prefer it to administration using shell scripts.','\"Simplicity\" in the sense that, there\'s less overhead compared to the larger abstraction that VM or container-based solutions require (though I\'m not an expert in this stuff so I don\'t even know what the signifance of e.g. container overhead involves).','I guess...tooling? It\'s awkward having to look up manpages or some webpage to find options, it would be much nicer if there was a tool to easily browse the different options for e.g. \'services.sshd\' or whatever.','Guix or Arch I\'d imagine','Y','','','','','','','','','','Sway','','','Since one question listed programming languages: I don\'t use Nix with programming languages libraries, I mainly use it for versioned packages e.g. \"Python 3.10\", but only the language\'s compiler/interpreter and maybe some extra tools. I find the extra effort to get libraries for a programming language e.g. Python \"nix-ified\" is not worth the effort.\r\n\r\nRegarding devops-style stuff such as NixOps, morph: I wanted to but to try using one of these but couldn\'t find much documentation.\r\n\r\nI hope this doesn\'t come across as overly critical, I\'m still a big fan of Nix and NixOS and I do appreciate all the work that\'s put into it.'),(1884,'1980-01-01 00:00:00',5,'en','1305487120','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Honestly, no idea','','Y','','','','','Y','','','','','','','','Y','Y','Y','','Y','','A6','A9','A10','','','','','','','','A2','A8','A12','','','','','','','','','','','','',NULL,'apt/dpkg','A5','','','','Y','','','','','','','','','','','Y','','Y','','Y','','','','A13','A3','A15','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','No idea','Y','Y','','','','','','Setting up a machine as I like it with one (or maybe two) commands','I can roll back when I break it','','Make it easier to compile everything on my system with custom cflags (march=native and some hardening stuff)','Debian or arch, maybe gentoo','Y','','','','','','','Y','','','sway ','','','I wish I could set up cross compilers for windows, or other CPU architectures easily\r\n\r\nI don\'t understand why some packages fail to build (as in, explicitly print an error when you try) with binfmt+qemu'),(1885,'1980-01-01 00:00:00',5,'en','371344647','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','Chimera Linux','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','I remember package installs being really slow, although it\'s been a few years since','','','','','','','','','','','Y','Couldn\'t get any compilers to work, didn\'t know how to diagnose the problem','','','','','','','','','','','If people started talking online about how Nix got some new, REALLY good and intuitive UX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'(Same reasons as the Nix section)','(Same as the Nix section)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','Do not remember',''),(1886,NULL,NULL,'en','991836998',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1887,'1980-01-01 00:00:00',5,'en','654029435','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Because it is cool and declarative','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'GNU Guix','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Laziness','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Because it\'s is cool and declarative','Y','','Y','','','','','Declarative','Reproducible','Reliable','Would add clearer error messages and more packages to nixpkgs','GNU Guix','Y','','','Y','','','','','','','sway','','',''),(1888,NULL,3,'en','1239463054','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','','','','N','N','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1889,'1980-01-01 00:00:00',5,'en','2012022148','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A3','A2','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A24','A15','A2','','','','','','','','','','','','','','','','','','','A24','A5','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','','','','','','Declarative system configuration','nixos-rebuild boot --upgrade on a timer for seamless upgrades in the background','','','','Y','','','','','','','','Y','Y','','','',''),(1890,'1980-01-01 00:00:00',5,'en','2067471475','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Declarative configurations in NixOS seemed nice when compared with juggling commands in Ubuntu.','','','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','','Y','','A2','A7','A1','','','','','','','','A9','A8','A15','','','','','','','','','','','','',NULL,'I\'ve heard guix does something similar but their package repo and philosophy seems problematic. So I would probably end up using some form of fedora or arch Linux and various scripts to approximate the declarative config of NixOS ','A7','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A15','A17','A1','A3','A24','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I contributed one or two patches, but besides that nixpkgs has what I need and whenever there is an issue someone seems to have already fixed it. And the areas were it\'s lacking I don\'t have enough expertise to fix it.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Same reason as nix, declarative configurations and rollback.','Y','Y','Y','','','','','Declarative configuration','Generations and rollback','Easy service configuration','My main problem with NixOS is one with nix, which is the slow eval performance. Otherwise I would change the graphics driver configuration to make more sense.','Same answer as the nix section ','','','','Y','','Y','','','Y','','hyprland','Disco, rust-overlay, simple-nixos-mailserver','','Keep up the good work :)'),(1891,'1980-01-01 00:00:00',5,'en','368207176','A3','A2','male','','Y','','','','Y','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Found out in the internet, experimented with andar three days later jumped to nixos ','','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A10','A7','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'Xubuntu or arch probably','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A1','A3','A9','A17','A12','','','','','','','','','','','','','','','','A1','A15','A2','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I found out about nix and started using nixos three days later','Y','','','Y','','','','Declarative','I update stuff whenever I want','I easily can replicate the same setup granularly in any number of machines','A way to configure services scheduled in a cluster of nixos machines controllable with nix using a overlay network for them to be seen as one network. Kinda like kubernetes services but instead of containers and registries using copy closure and systemd cgroups ','xubuntu or arch I guess','Y','','','','','','Pyinfra','','','','i3wm','nix-colors\r\nnixpkgs-brasil\r\nnur\r\nrust-overlay\r\nnixos-hardware\r\nnix-emacs\r\nnix-vscode\r\nnix-direnv','niv',''),(1892,'1980-01-01 00:00:00',5,'en','106953056','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Working laptop was in repair, got it back with windows, employer said if i want i can try out to evalute it.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A3','A2','A7','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'Archlinux, Debian','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A24','A9','A22','A15','A3','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','i started using nix not long ago','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','was not there the same question before?','Y','','','','','','','declarative system setup','nix shell for projects ','','','debian or archlinux depending on the use case','Y','','','','','','','','','','sway, hyprland','','',''),(1893,'1980-01-01 00:00:00',5,'en','1775592364','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I always wanted a way to declare my system packages and config. I started with dotfiles and scripts; then I found NixOs on online forums','','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A6','A8','A9','','','','','','','','','','','','',NULL,'Regular dotfiles and scripts','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','A15','A25','','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I always wanted a way to declare my system packages and config. I started with dotfiles and scripts; then I found NixOs on online forums','Y','','','','','','','Declarative system packages and config','Possibility of drastically changing packages and config and rollback','Sharing config and packages between computers','Better out of the box support for new programs: it is very difficult to package them for nix properly.\r\nAlso a better support of networking declarative config, while leaving the possibility to connect on the fly.','Regular dotfiles and scripts','Y','','','','','','','','','','i3','','',''),(1896,'1980-01-01 00:00:00',5,'en','227722432','A2','A4','male','','','','','','','Y','','','','','Y','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I like the idea of nix, of being able to specify OS-level dependencies in the same way as I specify package dependencies. I also like the portability of it.','Y','Y','','','','','Y','','','','','','','Y','Y','','','','','','A2','A6','A3','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'I would probably use shell scripts/ansible or similar','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A24','A15','A9','','','','','','','','','','','','','','','','','','','A24','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I don\'t feel like I know enough about how nixpkgs works to be able to contribute anything.','N','Y',NULL,'I tried it on my desktop which had an nvidia graphics card. nvidia caused me to stop. Dammit nvidia. I\'ve since moved to an AMD graphics card so may give it a try again.\r\nI also stopped because I moved to arch as my main distro, which although it\'s not declarative, the rolling nature of it, and not needing to wait for nixpkgs to be updated I felt gave me more control.\r\nI also struggled with home-manager, and where to put packages. Do I put them in /etc/nixos/? Do I put them in my home folder? I\'m not sure. I\'m the only user of the machine, but I feel there are standards...','Perhaps if there was a bit more documentation about flakes/home-manager/etc. and where\'s \"best\" to put things. Or even just something that says \"put them where you want, it\'s up to you\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nothing','Nothing',''),(1895,'1980-01-01 00:00:00',5,'en','1593192542','A5','A3','-oth-','Nonbinary Woman','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I heard about it somewhere ond thought it was cool.','','Y','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','','','','A2','A10','A5','','','','','','','','A15','A13','A4','','','','','','','','','','','','','An actual type system, because that would help with both documentation and error messages','Guix, probably','A1','','Y','','Y','Y','Y','Y','','','','','Y','','','','','','','Y','','','','A15','A4','A3','A2','A1','A10','A24','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Nix, the language, is cumbersome enough to work with that I\'m not really confident contributing to something like Nixpkgs','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I liked Nix and wanted to use it for hosting services on a VPS','','','Y','Y','','Y','','Declarative system configuration','Rollback','','Better support for remotely deploying flakes (or better documentation for existing solutions)','Arch','','','','','','Y','','','','','Sway, configured with home-manager on an Arch machine','home-manager & crane, etc.','','I am begging you for a real type system in Nix'),(1897,'1980-01-01 00:00:00',5,'en','1261465902','A5','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Just curious, heard about it on Xe\'s blog.','Y','','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A6','','','','','','','','A5','A6','A3','','','','','','','','','','','','',NULL,'Combination of home brew and docker on Mac with some dot files repos, and probably Arch Linux with a lot of sad ad hoc configuration for WSL and home servers','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Time','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Curious about it after reading Xe\'s blog','','','Y','','','','','Reproducibility','Having system config all in one place','Huge number of packages available','This may exist already, but I would love for there to be an LSP for nix files that could autocomplete configuration options for NixOS.','Arch Linux, and I would be very sad','Y','','','','','','','','','','','home-manager, nix-darwin, direnv','',''),(1898,'1980-01-01 00:00:00',5,'en','1342089827','A5','A2','fem','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'Guix','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A21','A2','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','','Y','','','','','','','','Better nftables support','Guix SD','Y','','','','','','','','','','Sway','','',''),(1899,NULL,NULL,'en','722302815',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1900,'1980-01-01 00:00:00',5,'en','21994885','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','','','','','Shell/Terminal Emulator issues','When using nix shell / nix-env, bash shell or terminal applications like tmux broke','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Bought new Laptop and wanted to try declarative configs/installs.','Y','','','','','','','','','','Better integration with programming environments of different languages. (Rust/Python)','Arch Linux','Y','','','','','','','Y','','','','','',''),(1901,'1980-01-01 00:00:00',5,'en','2099442241','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Wanted to extend infrastructure as code to the os without resorting to ansible.','','Y','','Y','','','Y','Y','','','','','','Y','Y','','Y','Y','','','A2','A3','A6','','','','','','','','A14','A6','A5','','','','','','','','','','','','',NULL,'Ansible and Homebrew.','A4','','','','Y','','','Y','','','','','','','','','','Y','','Y','','','','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Got bored of long fragile brittle bash scripts to bootstrap a new distro install for my workstation.','Y','','','','','','','Repeatable/shared builds stored in git.','Temporary shell for installing one use tools.','','Comparison to similar tools in the ecosystem to show the benefits over them with examples.','Debian.','Y','','','','','','','','Y','','','','',''),(1902,'1980-01-01 00:00:00',5,'en','861237942','A2','A2','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A10','A1','A9','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','A4','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','Y','','','','','','','Reproducible system, it\'s nice to be able to copy configuration.nix from one system to another, and it just works.','Painless configuration','','','Arch Linux','Y','','','','','','','','','','i3wm','home-manager','I tried to use flakes, but it broke my config and I stopped.',''),(1903,NULL,NULL,'en','1368044509',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1904,'1980-01-01 00:00:00',5,'en','1211789506','A5','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','The idea of a purely declarative OS peaked my interest and I loved how nix works so I just tried it and never looked back','','Y','','','','','Y','Y','','','','','nix-on-droid on my android device','Y','Y','Y','Y','','Y','','A1','A3','A6','','','','','','','','A8','A9','A1','','','','','','','','','','','','',NULL,'I was on arch linux before, so arch, and docker','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A13','A1','A3','A25','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Nixpkgs is so huge, it\'s a bit scary to comtribute to the monorepo, I would definitely make a few flakes and mention that they exist in some central location if there was that ability','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Saw it as one of the hackage supported oses and it always had the updated version of the haskell packages, so I looked into it, at that point I saw many niche linux OSes and NixOS peaked my interest, the idea of a declarative OS was mindblowing, so I tried it and I haven\'t looked back','Y','','Y','','','','','Reproducibility','Ability to undo operations when experimenting','Automated hardware detection','More users ;) but seriously, I would make dream2nix an official nix project, to push amazing programming language support in nix','Arch linux','Y','','','','','','','','','','xmonad','Nix search is gold','The commamd line search utility, the website just does a much better job','Nix is heading to a great direction :)'),(1905,'1980-01-01 00:00:00',5,'en','2021548160','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A7','A8','','','','','','','','A6','A5','A14','','','','','','','','','','','','',NULL,'Arch Linux ','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','','','','A1','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','',''),(1906,'1980-01-01 00:00:00',5,'en','523124411','A2','A2','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using Nix during my exploration of declarative Linux distrbutions, and after failing to come to terms with Guix\'s staunch free software stance I opted to go with NixOS. After using it for a while, then returning to Windows, I\'ve been happily using it as my main operating system for about a year steady.','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A8','A6','A3','','','','','','','','','','','','',NULL,'Guix on top of Arch Linux','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A2','A15','','','','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','Y','','','','','','','','','Y','','','','','','krops','','Y','','','','',''),(1907,'1980-01-01 00:00:00',5,'en','305362211','A2','A3','male','','','','','','Y','Y','','Y','Y','Y','','','','','','','Y','','','','','','Y','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was sick of \"managing state\" in traditional Linux systems, and wanted something reproducible and declarative. I looked at NixOS and Guix, and chose NixOS as it had a better app selection. I started using Nix as a side-effect of switching to NixOS','','','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A4','A14','A10','','','','','','','','','','','','',NULL,'Probably Docker, which makes me sad','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A24','A1','A15','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Mostly time - I have two young children!','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was sick of \"managing state\" in traditional Linux systems, and wanted something reproducible and declarative. I looked at NixOS and Guix, and chose NixOS as it had a better app selection.','Y','Y','','Y','','Y','','Reproducible systems and environments','Everything as config in an actual language','NixOPs','I\'d improve the ops side...although I haven\'t yet had time to look into non-official solutions','Sweat, blood and tears','Y','Y','','','','','','','','','i3','','','I love NixOS - it has really improved my QoL, both doing development and ops'),(1908,NULL,4,'en','1692182842','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','N','','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(1909,'1980-01-01 00:00:00',5,'en','1415991723','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A2','A10','A1','','','','','','','','A9','A8','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A3','A4','A2','A13','A15','A20','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','Rollback ','Centralization and version tracking of configuration ','','','','Y','','','','','','','','Y','','xmonad','Cachix','',''),(1910,'1980-01-01 00:00:00',5,'en','1709939019','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','','Y','Y','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A5','A8','A13','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','A13','A1','A2','A9','A5','A15','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1911,NULL,NULL,'en','356937032',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1912,NULL,2,'en','1367119222','A5','A2','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted a reproducible system configuration, and consistent development shells for my team.','Y','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A6','','','','','','','','A6','A5','A3','','','','','','','','','','','','',NULL,'Homebrew, docker, and ansible (or similar)','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A15','A4','A3','A5','A7','A2','','','','','','','','','','','','','','','','A5','A7','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1913,'1980-01-01 00:00:00',5,'en','528996474','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted to try a more declarative approach to configuring some older MacBook airs lying around the apartment. I liked the idea of also being able to configure Linux on them with a similar setup once they got too old for osx updates.','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A7','','','','','','','','A6','A4','A3','','','','','','','','','','','','',NULL,'Maybe guix? I guess I\'d really have to use my hacky bash scripts and chezmoi templates that tend not to work how I thought they would, just when I need them most!','A1','','','Y','Y','Y','','','','','','','','','','','','','','','','','','A1','A3','','','','','','','','','','','','','','','','','','','','A17','A26','A21','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I worry about doing it wrong and looking dumb in front of all the brilliant people who actually understand nix. I also very rarely come across a situation where the existing nixpkgs doesn\'t have what I need.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I kept having to move my homelab/experiment/practice environment around to different junky old hardware and could never remember how I set it up last time. I was very happy with how resource efficient arch was, and wanted to see how nixos was. It turned out just as good if not better! ','Y','','Y','','','','','Declarative configuration ','Nixpkgs having almost anything I need and it almost always being the latest version','Low resource usage','Maybe bootloader configuration? Ooh, bsd integration might be really cool.','Maybe guix system? Probably just arch or void.','Y','','','','','Y','','','','','Hyprland, Awesome, Fluxbox','Nixos wiki, nix search, home manager options search, and nix pills.','Sops/age for secrets','Amazing work! Thank you all so much for such great tools and resources!'),(1914,'1980-01-01 00:00:00',5,'en','864476093','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','For nixos dependency management and homemanager','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A7','A1','','','','','','','','A7','A6','','','','','','','','','','','','','',NULL,'Arch','A4','','','','Y','','','','','','','','','','','','','','','','','','','A15','A5','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Time and my understanding is limited for now ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Arch broke several times. So I switched ','Y','','','','','','','Homemanager ','Nixpkgs','','','Arch','Y','','','','','','','Y','','','','','','Thank you guys'),(1915,NULL,NULL,'en','1279107502',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1916,NULL,1,'en','763056691','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1917,NULL,NULL,'en','1825753997',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1918,NULL,NULL,'en','1967718739',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1919,'1980-01-01 00:00:00',5,'en','1272701875','A2','A4','male','','','Y','','','Y','Y','Y','Y','Y','Y','Y','','Y','','Y','Y','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Unhappy with imperative configuration bashing methods like Ansible or containerized solutions like Docker to make sure stuff I write on my computer, works on any other computer.\r\n\r\nI learned about Nix at Hackerspace Gent, Belgium.\r\nBy coincidence a colleague at work and myself both started using Nix independently for our personal projects. It came up by accident during lunch. Now our entire company infrastructure runs on Nix.','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A6','A8','A9','','','','','','','','','','','','',NULL,'A stone tablet or logic circuits made with physical switches.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A7','A1','A2','A15','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','See Nix story earlier in survey.','Y','','Y','Y','','','','Easily install / remove new services','Worry-free upgrades / rollback','Remote builds','Some mechanism to stay up to date using flakes without having to resort to some third party CI like GitHub actions.','Rock. Solid. Debian.','Y','','','','','','','','Y','','Cinnamon','Cachix','','Alles mag. Nix moet.'),(1920,'1980-01-01 00:00:00',5,'en','1162385339','A2','A3','','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A7','A2','A1','','','','','','','','A8','A2','A6','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A3','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Sway','sops-nix\r\nHome Manager','',''),(1921,'1980-01-01 00:00:00',5,'en','100291612','A2','A3','male','','Y','','','','','','','Y','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A7','','','Y','','','','','Y','','','','','','','Y','','','','','','','A2','A3','A1','','','','','','','','A14','A13','A4','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','','elementry','','',''),(1922,'1980-01-01 00:00:00',5,'en','1466384330','A2','A4','male','','','','','','','Y','','Y','','','','Y','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got curious from the hype, caught the virus of reproducibility and have never looked back.','Y','Y','','','','','Y','','','Y','','Y','','Y','Y','Y','Y','','','','A6','A2','A3','','','','','','','','A8','A12','A9','','','','','','','','','','','','',NULL,'Guix (maybe, haven\'t used it).','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A3','A4','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A3','Nix is superior way to obtain reproducible builds; extending the Nix idea to the whole OS seemed like the obvious choice.','Y','','Y','','','','','Reproducible configuration','Easy switching between versions from boot menu','','I\'m very happy with NixOS as it is.','Not sure, probably look into Guix. Or running Nix on top of some minimal Linux, just as I do on macOS.','Y','','','','','','','','','','Sway','My projects depend on bit-for-bit reproducible builds of system images for embedded (raspberry pi), regardless of build platform (Linux/macOS). Until recently, that was surprisingly hard to obtain with nixpkgs. I hope that Nixpkgs eventually aim for bit-for-bit reproducibility (also in cross-compilation) instead of the weaker reproducibility property that the build artifacts are semantically equal.','I tried to cross-compile macOS binaries from NixOS. I gave up because quite a few darwin packages are not buildable on Linux.',''),(1923,'1980-01-01 00:00:00',5,'en','1348724891','A5','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','Y','','','','','','Y','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'flakes\r\nhome-manager','',''),(1924,'1980-01-01 00:00:00',5,'en','462715690','A2','A5','male','','','Y','Y','','','Y','Y','','Y','Y','','','','','Y','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Managing my dotfiles in the hope to configure also my non-NixOS environments (WSL, Ubuntu, ...).','','Y','','Y','','','Y','Y','','','','','Server on hosting providers','Y','Y','','Y','Y','','','A2','A3','A6','','','','','','','','A5','A10','A8','','','','','','','','','','','','',NULL,'guix, chezmoi','A1','','','Y','Y','','','','','','','','','','','','','','','','','','','A2','A24','A9','','','','','','','','','','','','','','','','','','','A2','A17','A24','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Finding Nix-the-language just horrible.','N','N','If Nix on non-NixOS doesn\'t work the way imagined. Maybe I\'m alread on the wrong path.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','',''),(1925,'1980-01-01 00:00:00',5,'en','2138333325','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','* After running into issue using different versions of the same dependencies in different problems','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A3','A10','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'Probably a mix of:\r\n* Homebrew\r\n* terraform\r\n* ansible\r\n','A4','','','Y','Y','Y','','','','','','','','','','','','','','Y','','','','A7','A1','A21','A15','A24','A2','A5','A8','A3','','','','','','','','','','','','','A7','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','After getting tired of manually configuring various services on VPS\' running ubuntu/debian/...','','Y','Y','Y','','','','Build targets','easy switching of generation','Easy to work with modules','Better error messages','','Y','','','','','','','','','','','nix-darwin\r\n(r)agenix\r\nflake-utils\r\ndevshell','',''),(1926,NULL,NULL,'en','1884305654',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1927,'1980-01-01 00:00:00',5,'en','1346050012','A5','A2','-oth-','','','','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A1','A2','A9','','','','','','','','A4','A5','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A2','','','','','','','','','','','','','','','','','','','','A2','A9','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','Y','Y','','','','','Switching back to old generations','Ability to build the system on a different PC then deploying it (nixos-upgrade --build-host etc)','Home-manager integration','','','Y','','Y','Y','','','','','','','Sway','I use flake-utils on almost all of my flakes (both packaging and dev environments).','',''),(1928,'1980-01-01 00:00:00',5,'en','1707084054','A2','A3','male','','','','','Y','','Y','','','','','','','','','Y','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Reproducable work/developer environments.','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A3','','','','','','','','A8','A5','A4','','','','','','','','','','','','',NULL,'ASDF + manual configuration','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I don\'t have issues with core nixpkgs as often. Most of my issues are with stuff like poetry2nix.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Reproducable desktop and development environment.','Y','','Y','','','','','Reproducability','Easy patching','Easy rollback ','-','ASDF + manual desktop config','Y','','','Y','','','','Y','','','','poetry2nix','NixOps (wasn\'t there yet last I checked)',''),(1929,'1980-01-01 00:00:00',5,'en','2146832604','A2','A4','male','','Y','','','','Y','Y','','','','','','','','','','','Y','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A8','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'Guix, but if nix doesn\'t exist, does than guix exist??? ;)','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A2','A15','A20','A9','','','','','','','','','','','','','','','','','A20','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','','Y','','Y','','','','','','','','','GuixSD','Y','','','','','','','Y','Y','','sway','','',''),(1930,NULL,NULL,'en','586175996',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1931,'1980-01-01 00:00:00',5,'en','975029384','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','Y','','Y','','','','Y','','','Android','N','N','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I\'ve been watching nix for years, and had to setup a non-dockerised server and I used NixOS','Y','Y','Y','Y','','','','Atomic configuration','Stability','','Selinux\r\nsecure boot','Fedora/RHEL with puppet','Y','','','','','','','','','Y','','nix-sops','','Selinux support would be awesome'),(1932,'1980-01-01 00:00:00',5,'en','1241756033','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','Y','Tried to install nix from distro repos (archlinux) and go into problems. I will not install software from random scripts only. So if not integrated properly I will not use it.','','','','','Y','I was a huge pain trying to understand what the hell were and how it worked the profiles thing at the user home. And channles not working and there was a weird thing about as root working but as user not. Too hard to debug. Should just work.','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I first need to be confident in using and understanding nix as a tool in normal usage in another distro to manage packages and dev environments before I even think of jumping to that deep hole of having to manage a distro while still trying to understand the tool and the language.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','The rust book is the best docs on the web ever. We should have a single place targetting the different user profiles all under the same umbrella linked from the main site. I don\'t want to anytime I need to learn something have to navigate the dozen dispersed blogs and explanations on other peoples sites and around the web. Make a authoritative documentation place that brings all the contents from other places into a single place. And videos and blogs and all that, there really needs to be a much better effort in explaining and creating content around onboarding users and how to slowly grow with the tools. Don\'t just put the baby fully in the water and wait for it to start swimming by itself.'),(1933,'1980-01-01 00:00:00',5,'en','133330532','A5','A3','-oth-','Nonbinary','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was tired of trying things and breaking my computer (I did a lot of distro-hopping), so a declarative configuration appealed to me.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A7','','','','','','','','','A1','A12','','','','','','','','','','','','','',NULL,'Probably Qubes, actually.','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A3','A13','A22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','A combination of: I rarely encounter software that I want that isn\'t already packaged acceptably. When I do, packaging it is often hard (weird build system, non-source bootstrap, weird runtime environment, dynamic linking). Writing a full package description in nix also feels harder than writing a `shell.nix` to create the appropriate environment, but on reflection that\'s probably not really true.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Same reason I started using Nix.','Y','','Y','','','','','Declarative configuration','Atomic upgrades/rollbacks','Large number of packages','I\'d make flakes the default and update all the documentation. I would also love it to be simpler to share builds/nix store files across machines. I\'ve tried to set one machine up as a build server for another a few times, but sometimes that machine is offline, and there\'s problems with SSH keys and permissions, etc. It would be nice if I could just say \"Hey, you three machines -- trust each other, automatically use each other as build caches and build servers when possible.\" (Like how they\'re all on a Zerotier network -- they just have to be told to trust the network, and then everything works)','Qubes!','Y','','','','','','','','','','sway','None that I\'m aware of','',''),(1934,NULL,NULL,'en','2116857277',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1935,'1980-01-01 00:00:00',5,'en','1833052225','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Started using it to replace Homebrew in macOS. I slowly started using it more and more to the point where now I have NixOS in my main desktop machine and my server runs NixOS VMs.','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A13','A8','A5','','','','','','','','','','','','',NULL,'I\'d probably still be using Arch Linux.','A1','','','','Y','','','','','','','','','','','','','','','','','','','A1','A2','A9','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I haven\'t really needed to, most of what I use has been there already. There\'s one python package that I had to package recently for nix which I\'ll look into upstreaming soon.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','Declarative','Immutable','Rollbacks','The language, I\'d make it much easier to figure out what\'s available to me in the current context and what shape those things have.','Arch Linux','Y','','','','','','','Y','','','','flake-utils-plus, now flake-parts','digga','If you guys manage to figure out how to make the language better, this is undeniably the best linux distro out there.'),(1936,'1980-01-01 00:00:00',5,'en','366894047','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A14','A6','A3','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A22','','','','','','','','','','','','','','','','','','','','A22','A3','A2','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','','','','','','reproducability','','','','Arch linux','Y','','','','','','','','','','shod','','',''),(1937,'1980-01-01 00:00:00',5,'en','752929736','A8','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A7','A2','A1','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'Debian, Ubuntu, or something more exotic like Void','A1','','','','Y','','','','','','','','','','','','','','','','','','','A2','A1','A15','A22','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I have no idea what I\'m doing','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','','I wanted to try out the declarative config, and needed a distro as I switched to a non-mac laptop','Y','','','','','','','rollbacks','','','','Debian, Ubuntu, or possibly a non-systemd distro like Void','Y','','','','','','','Y','','','','','',''),(1938,'1980-01-01 00:00:00',5,'en','1454166102','A5','A2','male','','','','','','','','','','Y','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted a stable and reproducible formula for a system','Y','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A2','A7','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'Likely Guix','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A9','A25','','','','','','','','','','','','','','','','','','','A1','A19','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I have tried contributing but my pull requests are never reviewed','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','Declarative system','Profiles','Rollback','Better support for new packages and services','','Y','','','','','','','','','','sway','N/A','Agenix, sops-nix',''),(1939,NULL,NULL,'en','991103191',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1940,NULL,1,'en','1268209164','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1941,'1980-01-01 00:00:00',5,'en','1714806003','A2','A2','male','','','','','','','Y','','','','','','Y','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','stability ','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A1','A3','A2','','','','','','','','A5','A3','A14','','','','','','','','','','','','',NULL,'opensuse','A4','','','','Y','','','','','','','','','','','','','','','','','','','A9','A2','A1','A25','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','stability \r\n','Y','','','','','','','ad hoc env','flakes','single config to manage all system ','Please add support for Flutter and Android. I\'m spent almost 3 days to configure it, it\'s almost impossible...','opensuse ','Y','','','','','','','','Y','','','flutter and Android development env. it\'s has too much problem ','flutter and Android development env. it\'s has too much problems ','it would be good to add support for Flutter and Android development env. And also guides for newbies how to do things with NixOS'),(1942,'1980-01-01 00:00:00',5,'en','871087125','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','Y','Package development sucks compared to easiness of AUR/pkgbuild','','','','','Y','Setting up flakes? Channels? Adding all this to configuration.nix? I don\'t have time for this.','','','','','Y','Nix is a horrible language compared to bash let alone Rust','','','','','Y','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1943,'1980-01-01 00:00:00',5,'en','1104663125','A2','A3','male','','','','','','','Y','','Y','','','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','Y','','','Y','Y','','','','Y','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A6','A3','A10','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','','','','','A2','A3','','','','','','','','','','','','','','','','','','','','A2','A20','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','Y','','','Y','','Declarativity','Rollback','First-class container support','Well developed and supported router-focused target, so I could install NixOS on routers and get their features well supported','','Y','','','','','','','','Y','','Xmonad','','',''),(1944,'1980-01-01 00:00:00',5,'en','1107768944','A2','A2','male','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','Y','','','A1','A9','A7','','','','','','','','A12','A11','A2','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','Y','','Y','','','','Y','','','','A15','A6','A2','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','Y','','','Y','','','','','Y','','','','',''),(1945,'1980-01-01 00:00:00',5,'en','571735054','A6','A2','male','','','','','','Y','Y','Y','','Y','Y','','Y','','','','','Y','','','','','Y','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The configuration driven os blowed my mind when i was discovering other tools out there\r\nNixOS can be used locally for multple machine and for production rollout','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','','Y','','','','A2','A10','A9','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'I dont know lol\r\nI might be using arch linux locally\r\nand some bash scripts,ansible,terraform for servers','A1','','','','Y','Y','','','','','','Y','','Y','','','','','','','','','','A2','A10','A1','A13','A9','','','','','','','','','','','','','','','','','A1','A10','A3','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','Configuration driven','Completely reproducible,open source','Binary Cache','Would add something cool as flake & improve the language\r\nMore people should use it, only people who is smart or passionate about solving problems','Would be using archlinux with shell scripts locally\r\nOn servers ansible,shell script,terraform,etc..','Y','','','','','','','','','','BSPWM','Agenix for secrets \r\nI dont remember them all','','Nope, i just want the nix community to grow & become strong'),(1946,NULL,2,'en','1812453122','A2','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','Y','','','','N','N','Y','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1947,'1980-01-01 00:00:00',5,'en','750727976','A2','A2','male','','','','','','','','','Y','','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Arch config grew messy, unreproducible. Learned about nix and NixOS. Some friends were using NixOS already and I finally switched my daily driver laptop to it','','Y','','','Y','','Y','','','','','','','','Y','Y','Y','Y','','','A2','A3','A1','','','','','','','','A4','A2','A6','','','','','','','','','','','','',NULL,'Probably still Arch, but maybe also Ansible/Chef/similar','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A3','A2','A4','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Same as with nix. I used to use Arch, got tempted by the option of a almost fully declarative, reproducible setup and switched due to that','Y','','','','','','','Reproducibility of installations','A central, well structured config describing the whole system','A module system for configuring programs/services/system components all in one language','The large amounts of bash/perl scripts that break in funny ways, made worse by useless traces/error messages','Probably still Arch, maybe also Ansible/Chef/similar','Y','','','','','','','Y','','','','nixpk.gs for PR status tracking, the NixOS search for options/packages, the GitHub code search for actually figuring out how stuff works/can be used (for a lack of good structured, versioned docs based on the code)','The manual, it somehow feels hard to find what you want in it (Ctrl+F style) and when you do find something it not too rarely has too little written about it, or you would have to read tok much prose around where you found it mentioned',''),(1948,NULL,1,'en','481856280','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1949,'1980-01-01 00:00:00',5,'en','1101688203','A2','A4','male','','Y','','','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','Having virtually identical environment across Linux, Windows, macOS','Y','Y','','Y','','','Y','','','','','','','Y','Y','Y','','','Y','','A6','A9','A1','','','','','','','','A12','A13','A11','','','','','','','','','','','','',NULL,'','A1','','','','','Y','','','','','','','','','','','','','','','','','','A25','A18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1950,'1980-01-01 00:00:00',5,'en','900578118','A2','A2','male','','Y','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A9','A10','','','','','','','','A8','A6','A10','','','','','','','','','','','','',NULL,'','A2','','','Y','Y','Y','','','','','','','','','','Y','','','','','','','','A4','A3','A2','A15','','','','','','','','','','','','','','','','','','A4','A3','A15','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1951,NULL,NULL,'en','1991423781',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1952,'1980-01-01 00:00:00',5,'en','1631976046','A2','A3','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','Looking forward to use Nix within CI and building proprietary OS (not linux)','A3','Looking for a way to migrate from one PC to another with Arch. Found NixOs, dig deeper - found the rabbit hole of next-gen OS developement.','','Y','','','','','Y','','','','','Y','','Y','Y','Y','Y','','Y','','A7','A9','A10','','','','','','','','A5','A4','A2','','','','','','','','','','','','',NULL,'Maybe Ansible. Can not choose smth, cause nix is the the many.','A4','','','','Y','','','','','','','','','','','','','','','','','','','A3','A4','A15','A2','A17','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I\'m lazy asshole','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as for Nix','Y','','','','','','','All os environment described within single configurathin','Stability of updating','No way to break because of ro root','Make flakes.nix to be nix, better structure of documentation','Arch maybe','Y','','','','','','','','','Y','','','','Just thank you for your work!'),(1953,'1980-01-01 00:00:00',5,'en','524388083','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','wanna try something new after archlinux','','','','','','','Y','','','','','','','Y','','','Y','','','','A1','A7','','','','','','','','','A6','A14','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'','Y','Y','Y','','A1','wanna try some new system after archlinux','Y','','','','','','','declarative system configuration','rollbacks','','','pacdef with archlinux','Y','','','','','','','','','','hyprland','','',''),(1954,'1980-01-01 00:00:00',5,'en','1837306350','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','','','','','A1','A3','A10','','','','','','','','A13','A9','A6','','','','','','','','','','','','',NULL,'apt + bash/ansible + prayers','A4','','','','','','','','','','','','','','','','','Y','','','','','','A1','A11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A1','','In terms of packages - I do it occasionally, in terms of tools/ecosystem/global code - don\'t have time, lacking ide/tooling support is painful','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got fed up with gentoo','Y','','Y','','','','','One config to rule it all','Availability of packages','Rollbacks','I\'d make usage of external binaries less painful, make universal fit-it-all glib and cpp one :D\r\nMake flakes appear several years earlier and make it default for everything (+ probably would\'ve split nixpks into several flakes)\r\nPer-user configuration, maybe something like home manager','Gentoo, bash and probably lots of sedatives/alcohol/kanabis','Y','','','','','Y','','','','','Awesome wm','','',''),(1955,'1980-01-01 00:00:00',5,'en','315190585','','','','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','a','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1956,'1980-01-01 00:00:00',5,'en','1510045712','A2','A2','-oth-','non-binary','','','','','','Y','Y','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was tired of forgetting to migrate some packages & config when buying a new laptop or reinstalling OS. My server configuration was also a mess.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A13','A7','A4','','','','','','','','','','','','',NULL,'Probably Arch + some manual hacks','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A13','A3','A4','A17','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as the Nix question.','Y','','Y','','','','','Declarative configuration','Project flakes','Amount of packages','Change Nix language to something better, probably some DSL over Haskell','Arch with some hacks','','','','','','Y','','','','','bspwm','home-manager\r\nMy own classified\r\nfenix\r\nnaersk\r\ncrane','',''),(1957,'1980-01-01 00:00:00',5,'en','1110676975','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','Y','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','To build Haskell applications ','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','','A2','A1','A7','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A11','A9','','','','','','','','','','','','','','','','','','','A11','A5','A1','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Nothing! I’m just lazy ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted to run a home lab ','Y','','Y','Y','','','','Declarative ','Rollbacks','ZFS support','I’d add Nickel as a first class language','OpenSUSE for Linux and OpenBSD for the BSDs ','','','','Y','','','','Y','','','xmonad for x and gnome for wayland','','',''),(1958,NULL,1,'en','1931752167','A2','A4','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','Y','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1959,NULL,NULL,'en','1589024527',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1960,'1980-01-01 00:00:00',5,'en','354340261','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I saw my teamlead use nix, and heard about it a lot. Read a little bit of Nix pills, but didn\'t move from toy exercises.\r\nIn about 6 month over the New Year holidays I took time to set up NixOS on personal laptop, configured it and used ever since. \r\nOn personal laptop, on toy servers that i run, in personal projects.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A9','A7','A2','','','','','','','','A6','A8','A14','','','','','','','','','','','','',NULL,'I\'d try out Guix, maybe Dockerimages for development, some kinds of automations on top of direnv, i\'m not sure','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A11','A1','','','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I tried to do small contributions, but my small MR was not reviewed for a very long time.\r\nI would have liked to do reviews on small MRs, but not sure how to start','N','Y',NULL,'I only have work laptop for the past 16 months, and I\'m not allowed to use NixOS. If I ever get separate personal laptop, I will use NixOS','Yes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'agenix, sbt-derivation','',''),(1961,'1980-01-01 00:00:00',5,'en','927172895','A2','A2','-oth-','queer','','','','','Y','','','','','Y','','','','','','Y','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I needed a package manager that would not conflict with my Linux distro package manager (for extra software which wasn\'t covered by distribution)','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','','A9','A1','A2','','','','','','','','A3','A6','A4','','','','','','','','','','','','',NULL,'OCI containers with images for distributions suitable for relevant applications','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'N','Y',NULL,'Software reliability in general was (or at least felt) worse than Fedora and maintaining the OS generally felt like unpaid work','NixOS/nixpkgs-supported OS profiles (something that would quickly turn the machine into a software equivalent of Fedora Workstation)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','nixops\r\ndevenv','you guys do a good thing, good luck to you :)'),(1962,'1980-01-01 00:00:00',5,'en','348181199','A2','A3','male','','','','','','','Y','','Y','','','','','','Y','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Switched to NixOS, needed to add some derivations for everyday software and work projects. ','','','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A7','','','','','','','','A12','A2','A6','','','','','','','','','','','','',NULL,'Ansible. ','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A3','A4','A9','A19','A24','A21','','','','','','','','','','','','','','','A24','A2','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got tired of numerous config formats to maintain during upgrades and switches. ','Y','','','','','','','One uniform system config. ','Ability to install older/newer packages easily and without conflicts. ','','Replace Nix with some widespread language. ','Arch + dotfiles + Ansible. ','Y','','','','','','','','','','i3','','',''),(1963,'1980-01-01 00:00:00',5,'en','522355532','A2','A5','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A1','Needed to build C++ software I am working on using gcc10-gcc13 on a linux distro that only has gcc9. \r\nNeeded to use vscode etc. Nix shell seemed like a good option over building the toolchains manually and switching with `update-alternatives`','','Y','','Y','','','Y','','','','','','','','Y','Y','','','','','A2','A1','A10','','','','','','','','A10','A15','','','','','','','','','','','','','',NULL,'','A6','','','','Y','','','','','','','','','','','','','','','','','','','A4','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','N','So far WSL was sufficient for my needs. I might convince my kids to switch from Manjaro :)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I would like to be able to package a proprietary OpenGL app as an binary build packaged as an AppImage to be run on an non-NixOS system. Would be nice if it was possible to enable OpenGL support in the exported AppImage easily. '),(1964,NULL,2,'en','66092006','A2','A2','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'ve stumbled on it online, tried it and didn\'t like it at first because I found it needlessly complicated. Later on I got recommended by a friend to try NixOS, which I loved and stuck wit it and Nix since.','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A1','A2','A7','','','','','','','','A7','A6','A2','','','','','','','','','','','','',NULL,'Portage, RPM, Language-specific toolchains, Ansible','A1','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A9','A2','A3','A4','A13','A15','A22','','','','','','','','','','','','','','','A9','A2','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1965,NULL,2,'en','1768425985','A2','A3','male','','','','','Y','','Y','','','','','','','','','Y','','Y','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Was looking for replacement for Ubuntu because I disagree with canonical point of view. Found NixOS and tried.','','Y','','','','','Y','Y','','','','','','Y','Y','','','','','','A7','A1','A10','','','','','','','','A14','A15','A4','','','','','','','','','','','','',NULL,'I want NixOS have better documentation ','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A3','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1966,'1980-01-01 00:00:00',5,'en','222258114','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I really wanted to configure several devices declaratively, so I installed nixos on a second device, after a few months I switched to nixos almost everywhere','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','Y','','','A2','A1','A10','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'Ansible and docker/podman','A7','','','','Y','Y','Y','Y','','','','','','','','','','','','','','','','A15','A7','','','','','','','','','','','','','','','','','','','','A22','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I really wanted to configure several devices declaratively, so I installed nixos on a second device, after a few months I switched to nixos almost everywhere','Y','','Y','','','','','Declarative configuration of multiple systems with sharing parts of configuration','Generations of system','Reproducibility','remove channels, add flakes as default','ansible','Y','','','','Y','','','','','','bspwm','home-manager','',''),(1967,NULL,1,'en','164756578','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Security admin','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1968,'1980-01-01 00:00:00',5,'en','1014695997','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1969,'1980-01-01 00:00:00',5,'en','236553767','A5','A3','male','','','','','','Y','','','','','','','','Y','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','Y','','Y','Y','Y','','','','','Y','Y','','Y','','','','A3','A2','A10','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Most likely arch or gentoo based package management. I\'d say Guix but if Nix didn\'t exist then neither would Guix','A4','','','','Y','Y','','','','','','','','','','','','Y','Y','','','','','A7','A13','A2','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','I started a new job using MacOS and was looking for a package manager because I hated homebrew at the time. Read Eelco\'s PHD, started using Nix and have never really looked back','Y','','Y','','','','','Declarative Configuration','Rollback','Services packaged by experts (mostly)','Really needs better documentation on how to use NixOS modules from outside \"the\" current nixpkgs channel. There are a lot of ways to do it but one of the most powerful things is being able to use out of branch modules. Please note that I\'m specifically talking about NixOS modules. There is plenty out there about how to use out of branch packages.','Gentoo or Arch. ','','','','','Y','','','','Y','','','None','Hydra. I briefly looked at trying to setup hydra for some CI/CD in my home setup but it\'s not for the faint of heart',''),(1970,'1980-01-01 00:00:00',5,'en','662212600','A1','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Fucking arch broke again and I was too tired of configuring my system manually.','Y','Y','','','','','Y','Y','','','','','','','','','Y','','','nixops','A1','A2','A7','','','','','','','','A14','A8','A6','','','','','','','','','','','','',NULL,'ansible, docker (?)','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','No guides on how to package something. Steep learning curve.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was tired of configuring arch. ','Y','','Y','','','','','declarative configuration','containers + nixops look very promising','wide package availability','','ansible, docker','Y','Y','','','','','','','','','sway','','','please more learning resources and documentation for flakes'),(1971,'1980-01-01 00:00:00',5,'en','1445947407','A5','A5','male','','','','','Y','Y','Y','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I needed to maintain a multiuser (hundreds) environment of modern tools for data science on outdated RHEL Linux servers. Anaconda was a disaster. Nix was a lifesaver.','','Y','','Y','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','Y','','A11','A7','A8','','','','','','','','A8','A2','A6','','','','','','','','','','','','',NULL,'Stow or conda','A1','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A4','A2','A5','A21','','','','','','','','','','','','','','','','','','A4','A21','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I did contribute to nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I switched to NixOS when I became familiar with Nix.','Y','','Y','','','','','Declarative configuration using Nix','Atomic deployment and rollback ','','Merge NixOS-WSL\r\nMore comprehensive testing of the updates, important (for me) parts of unstable are broken too often','Arch','Y','','','','','','','','','','Xmonad','Home manager, emacs-overlay, NixOS-WSL','',''),(1972,NULL,2,'en','2038902129','A2','A5','male','','','','','','Y','','','','Y','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Loved the idea of declarative system configuration.','','Y','','','','','Y','Y','','','','Y','','Y','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A3','A5','A8','','','','','','','','','','','','',NULL,'Arch Linux with puppet or ansible','A2','','','','Y','','','','','','','','','','','Y','','','','','','','','A1','A15','A13','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1973,NULL,NULL,'en','1301197698',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1974,NULL,NULL,'en','1493040131',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1975,'1980-01-01 00:00:00',5,'en','1905903845','A2','A4','male','','','Y','','','Y','','','','','Y','','','','','Y','','Y','','Y','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A10','','','','','','','','A4','A3','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A20','A2','A11','A1','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1976,NULL,1,'en','1138475803','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1977,NULL,1,'en','1812188519','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1978,NULL,NULL,'en','81752467',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1979,NULL,2,'en','931928847','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I tried different distributions, but I settled on NixOS because I was attracted by the immutable root, the really cool package management solution, the possibility of declarative configuration description','Y','Y','','','Y','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A6','','','','','','','','A3','A6','A14','','','','','','','','','','','','',NULL,'Toolboxes','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A1','A15','','','','','','','','','','','','','','','','','','','A1','A15','A3','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don\'t think my skills are enough yet',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1980,'1980-01-01 00:00:00',5,'en','925881201','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A9','A1','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','Y',NULL,'Overwhelming to set up without deep documentation ','Better documentation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1981,'1980-01-01 00:00:00',5,'en','522351634','A2','A3','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','run proprietary software from nix-shell','','Y','','','','','','Y','','','','','','','','','Y','','','','A10','A9','','','','','','','','','A6','A7','','','','','','','','','','','','','',NULL,'apline apk','A4','','','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','no such need, everything is available and works','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','configuration.nix is is the best invention of distro design','','','Y','','','','','easy upgrade ','declarative oci-containers and systemd units for selfhosted services','gentoo-like ability to disable features like sound, X11, etc (without compiling from source)','python-like syntax so that I can actually understand the language ','alpine','Y','','','','','','','','','','','','','thank all the team for such important effort'),(1982,'1980-01-01 00:00:00',5,'en','1719801860','A5','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started using nixos to make my life easier when customizing my desk top\'s linux install. After using it for a few months I started adding flakes to all my personal projects to manage dependencies.\r\n\r\nAfter using it in personal projects I introduced flakes to my repos at work and many people started to use it. ','Y','','','','Y','','Y','Y','Y','','','','','Y','Y','','Y','','','','A2','A1','A10','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'I would try guix but don\'t love it\'s hard stance on only free software.\r\n\r\nOtherwise would try to use dev containers for my projects and some jank bash scripts for my personal computers ','A2','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','A1','A2','A13','A9','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started using it to make customizg my is config eafier. After using it for a few months I installed it on my home server and laptop. Once I switched to flakes it made life much easier to manager home manger and other plugins','Y','','Y','','','','','Declarative config','The amount of supported programs with many customization options','Rollback/atomic operations','A standard/simple way to handle secret data like passwords. Right now I add a flake input to a nix file with secret info I don\'t check in but it feels jank. ','Maybe guix but don\'t like it\'s vibe much.\r\n\r\nMaybe ansible to setup or some jank setup of bash scripts','Y','','','','','','','','','','I3','Direnv/nix direnv is amazing for project use. It feels like it\'s almost a requirement (especially at work where I setup the flake and people don\'t understand nix much)\r\n\r\nWhen direnv breaks somehow it can be a pain to debug so would be nice if it had more first class support or if nix had some first class solution like it','I have used cacheix a bit but haven\'t gone super in on it for my system config due to dealing with secret data. ','Nix is amazing and want to see it succeed! '),(1983,'1980-01-01 00:00:00',5,'en','2064551490','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','as my home system','A1','I have been used Arch for a year, and saw that some people on the internet were using nix, I had never heard of it before, some of my friends started telling me about it, at that time I started learning about nix and nixos, there were a few failed attempts after which I gave it up, but still when I got into it, I liked it and got interested in it.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A10','A1','','','','','','','','A8','A5','A1','','','','','','','','','','','','',NULL,'Arch, arch based distro\'s','A1','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A17','A15','A22','','','','','','','','','','','','','','','','','','','A17','A22','A15','','','','','','','','','','','','','','','','','','','','','','','A2','','Lack of experience.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','As home system.','A1',' I have been using arch and its derivatives for about a year, I saw people on the internet using nix, I had not heard about it before, then friends started talking about it too, then I started learning about nix.','Y','','','','','','','Сustomizability, especially when using flakes.','Reproducibility, you don\'t need to setup system every update.','Nix repositories, their flexibility, the ability to easily modify packages.','I\'ll add better flakes support, remove old imperative commands live nix-env','Arch, and it\'s derivatives.','Y','','','','','','','','','','Hyprland','Home-manager, third-party repositories like nur, chaotic-cx, nixvim project','None).','nothing.'),(1984,'1980-01-01 00:00:00',5,'en','479509365','A2','A3','male','','','','','','','','Y','','Y','Y','','','','','','','Y','','','','','','','','Y','Y','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','Docs are garbage. And they aren\'t even from the nix devs I think','','','','','','','','','','','Y','Bloated, not consistent:normal stuff/flakes/home manager, the language choise is really strange: some random functional language with barely any docs and which is used nowhere, but in nix (hello vimscript again)','','','','','Y','','','','','','Simplicity. If you like bloated stuff, please make at least a lightweight version for normal people',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Bloated, docs are garbage, language choise','Simpler, less bloated version. Maybe with lua (or any other language which is actually used outside of nix)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','I read about nix ops, but then I saw it\'s deprecated, so I lost my interest',''),(1985,'1980-01-01 00:00:00',5,'en','628735583','A2','A4','male','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','This is funny','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A2','A10','A7','','','','','','','','A13','A4','A8','','','','','','','','','','','','',NULL,'Debian','A2','','','','','Y','','','','','','','','','Didn\'t choose. I learn ','','','','','','','','','A3','','','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time and knowledge ','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','','','','','','Software installation','Software configuration','Flakes ','Documentation. People leave os without having time to figure out how everything work. ','Debian','','','','','','','','','','','I3','Nix lag\r\nNix- shell\r\nNixos search packages))) ','','I think . Need to make better documentation '),(1986,'1980-01-01 00:00:00',5,'en','1169500774','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking to good enough system to configure my personal linux systems as a code.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A3','A4','A11','','','','','','','','','','','','',NULL,'ArchLinux or Gentoo','A2','','','','Y','','','','','','','','Y','','','','','','','','','','','A9','A19','A2','','','','','','','','','','','','','','','','','','','A2','A4','A9','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','Configuration as a code','Reproducible builds','Rollbacks','Ability to easily install impure unfree applications like some proprietary drivers or corporate security tools','ArchLinux/ Gentoo','Y','','','','','Y','','','','','Hyprland','Home-manager, stylix','deploy-rs, nixops',''),(1987,'1980-01-01 00:00:00',5,'en','1867162203','A2','A3','-oth-','','Y','','','Y','','','','','','','','','','Y','Y','','Y','','','Y','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Because I was interested in NixOS and needed to learn nix. Later I found the benefits of nix on other platforms for managing dotfiles and crwating reproducible development environments','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A9','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','The search for a reproducible and fast linux lead me to nixos. Previously the I started using ansible, but that was not for me','Y','','Y','','','','','Reproducibility','Rollback functionality','Has newest packages','Add a general template for nixos configs','Arch or fedora with root on zfs and ansible for provisioning','Y','','','','','','','Y','Y','','','Disko, Nixos-generators, ','Digga template (too complex)','Thanks for all the great work! Wish you all the best for the future'),(1988,NULL,1,'en','1132443393','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','pentester','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1989,'1980-01-01 00:00:00',5,'en','1521299335','A5','A4','male','','','','','','','Y','Y','Y','','Y','','','','','','','Y','','Y','','','','Y','','Y','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A7','Got a new laptop for work, FreeBSD doesn\'t support the graphics drivers required to use it as of yet, gave it a spin and things seemed to work well on the desktop.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A3','A2','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'IDK probably debian or arch?','A4','','','','Y','','','','','','','','','','Using flakes, but only because I wanted ZFS support. I have no idea what is going on with them.','','','','','','','','','A25','A2','A9','A13','A15','A1','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I have no idea what I am doing','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Again, FreeBSD lacked video drivers, ZFS seemed possible with this.','Y','','','','','','','ZFS','Reproducibility?','???','Guix makes it more transparent what packages are being installed / updated','Guix? Arch? Debian?','Y','','','','','','','Y','','','stumpwm','common lisp / SBCL','','It seems like a decent project, with a clean initial installer. However stepping outside of the straight-foward leads to a lot of confusion. I tried to use SBCL with a library for https, and ended up having to go down a rabbit hole of trying to build custom environments in nix just to gain access to the OpenSSL library. I don\'t seem to have that problem with Rust, Go, or other languages, but I am worried that I am going to hit that issue again in the future.'),(1990,'1980-01-01 00:00:00',5,'en','1887495569','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Fell down a functional programming rabbit hole, and found Nix, realized it was the right solution to a large set of problems with software engineering practices and then began my slow climb of understanding and using it.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A2','A6','','','','','','','','A6','A4','A5','','','','','','','','','','','','',NULL,'traditional package managers and cry','A2','','','','Y','','','','','','','','Y','','','','','','','Y','','','','A24','A15','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','i\'ve contributed a first package and hope to do more. just something I have to allocate time to.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Declarative config of machines -- not sure it\'s well understood that this is a new UX as well as new tech.','Rollbacks','nix-ld makes binaries easy.','you can\'t use unfree packages with a flake based configuration. This isn\'t documented anywhere except when Jonas brought up a solution: https://zimbatm.com/notes/nixpkgs-unfree . \"This whole error message is misleading. All the solutions proposed don’t work when using Flakes because Flakes evaluation is pure and doesn’t take your environment variables or config into account.\"\r\nThis sucks, isn\'t documented, and is an important feature. \r\nSecond, what\'s up with profiles vs nix-env? the user path for using one or the other seems broken. Perhaps it\'s that the intended usage pattern of ` nix profile` is unclear.','debian or the like','Y','','','Y','','','','Y','','','','had to start using home-manager to get unfree packages, so using that now. \r\nnix-ld i use a bunch. Super great for binaries without nixify-ing them.\r\n','','Nothing but love <3 \r\nThe community is growing, people are getting it, and they\'re looking for ways to onboard. Worth considering a holistic approach to onboarding and docs that we can reliably point people to. A failure mode here would be a 100 different unofficial resources and ways of doing things.'),(1991,'1980-01-01 00:00:00',5,'en','1415994','A2','A5','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking for an alternative to homebrew on Mac, since that kept breaking Emacs & various python projects whenever there was an update. ','Y','','','','Y','','Y','','Y','','','','','Y','Y','','Y','','','','A2','A3','A1','','','','','','','','A8','A14','A3','','','','','','','','','','','','',NULL,'Homebrew and perhaps (shudder) Docker','A7','','','','Y','','','','','','','','','','','','','','','','Y','','','A20','A9','','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A3','',NULL,'N','N','Unsure if anything, at least on the desktop. Maybe if I had a spare computer and needed to set it up as a server for something? But I would also have to magically become young and/or jobless, as otherwise I\'d be more likely to buy an off-the-shelf solution. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'devenv.sh','','The distinction (if any) between `nix devshell` and `nix develop` is lost on me.'),(1992,NULL,1,'en','646734534','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1993,NULL,NULL,'en','923287277',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1994,'1980-01-01 00:00:00',5,'en','1013002779','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A3','A2','A1','','','','','','','','A10','A4','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1995,NULL,NULL,'en','1184629973',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1996,NULL,1,'en','206302489','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1997,'1980-01-01 00:00:00',5,'en','127241168','A5','A3','male','','Y','','','Y','','','Y','','','','','','','','','','Y','','','Y','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I read about how Nix could be an alternative to the Python virtual environments, conda environments, HPC modules, and other solutions I had used for my professional research work and personal programming needs across multiple languages. I had tried it, and found it useful but too difficult to use (I blogged about it here: https://jrhawley.ca/2021/10/18/nix-package-manager). Then I came across the nix-direnv (https://github.com/nix-community/nix-direnv) tool as a way to automatically load and unload development environments, and decided to give Nix a second try by making use of Nix flakes.','Y','Y','','Y','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A6','A9','','','','','','','','A5','A9','A8','','','','','','','','','','','','',NULL,'Conda environments for most use cases.','A6','','','','Y','','','','','','','','Y','','','','','','','','','','','A2','A15','A21','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Lack of documentation (or difficulty finding this documentation) describing how to test nixpkgs manifests before submitting a pull request.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I had an old laptop that I wasn\'t using much, and wanted to see if using NixOS had any benefits on top of just installing Nix on a different Linux operating system.','Y','','','','','','','Automatic potential for rollback on startup','Easy upgrades between versions','Every program is installed via Nix','Better error messages when a nixos-rebuild switch command fails. It currently highlights the technical reasons why something failed, but doesn\'t offer any suggestions on how to fix this error. Since most people are not well-experienced with NixOS or the Nix language, this would be extremely helpful for people trying to debug their Nix flakes or NixOS configuration files.','Ubuntu, elementaryOS, or some other Linux OS','Y','','','','','','','Y','','','','https://github.com/nix-community/nix-direnv\r\nhttps://github.com/nix-community/emacs-overlay\r\nhttps://github.com/DeterminateSystems/nix-installer\r\nhttps://github.com/numtide/flake-utils\r\nhttps://github.com/nix-community/rnix-lsp\r\nhttps://cachix.org\r\nhttps://github.com/nix-community/fenix','','Nix has lots of potential in the data science/research setting, too, not just for building software. I wrote a blog post about how Nix could be a foundational tool for doing any research that involves computers that might be of interest (https://jrhawley.ca/2023/04/06/rethinking-nix-for-reproducible-science). Repl.it is a company in this space that is making heavy use of Nix as a foundational tool in their software stack, and there are a lot of ideas here that can be used by research groups, institutions, and companies all around the world. Check out their corporate blog for various technical details and use cases (e.g. https://blog.replit.com/super-colliding-nix-stores).'),(1998,NULL,NULL,'en','1738114038',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1999,'1980-01-01 00:00:00',5,'en','1220075482','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A14','A6','A8','','','','','','','','','','','','',NULL,'GNU Guix if it would appear.','A4','','','','','Y','','','','','','','','','','','','Y','','Y','','','','A2','A5','A15','A9','A4','A3','A11','A1','A14','A22','A26','','','','','','','','','','','A2','A15','A14','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','To simplify migration between machines, to have custom development environment.','Y','','','','','','','configuration as the code','optional rolling updates (install some packages from unstable)','binary cache','Better documentation, not just language and basic operations, but common use case examples.\r\n\r\nInstead of googling about how to properly use something, seeing unanswered threads in discourse and looking for configuration examples on GitHub/GitLab instead of documentation.','GNU Guix','Y','','','','','','','','','','leftwm','nix-direnv, devenv, nix-ld, home-manager','flakes','Thank you all for the great work on our common best Linux distribution!'),(2000,'1980-01-01 00:00:00',5,'en','1261075652','A5','A4','male','','','Y','','','Y','Y','','','Y','','','','','','Y','Y','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted a better solution than the 18 zillion hacked together dotfiles projects and it all kind of snowballed from there','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A6','A8','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Guix (arguably, would Guix exist without Nix?)','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','A1','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','As a Nix user I have almost zero desire to interact with other Nix users','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Once I got sick of trying to fight w/ home-manager and nix on non-NixOS distributions I gave up and just installed NixOS -- worked great considering I already had most of my configuration nix\'d at this point.','Y','','Y','','','','','Declarative configuration management as a first class feature of the OS','Configuration rollback','Deployment to remote machines','Streamline building & deploying NixOS configurations cross-platform (i.e. I have a low resource aarch64 host and I\'d love to build & deploy a system for it on x86 without too much hassle)','Guix :)','Y','','','','','','','','','','i3','home-manager, flake-utils','sops-nix, agenix',''),(2001,NULL,2,'en','1205850085','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','N','N','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2002,NULL,1,'en','1122263901','A5','A3','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2003,NULL,NULL,'en','1543408640',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2004,'1980-01-01 00:00:00',5,'en','1707191856','A2','A2','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because of NixOS. My friend recommended me to try it.','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A1','A9','A2','','','','','','','','A8','A6','A7','','','','','','','','','','','','',NULL,'GNU Guix, Portage, RPM, Language-speicifc package managers and build systems','A1','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A9','A2','A3','A4','A15','A13','','','','','','','','','','','','','','','','A9','A2','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I started getting interested heavily in IaC. My friend recommended me to try NixOS because of that.','Y','','Y','','','','','Extensible and centralised configuration of multiple hosts.','Fast deployments and environment mirroring between multiple hosts.','Atomic rollbacks.','Add: first-class secrets and ACL support. Change: write Nix around the module system from the ground up fixing all design flaws that we have now, also make configuration options more uniform (RFC042 and etc.). Remove: over-reliance on systemd.','GNU Guix System, Gentoo, Fedora (Silverblue?), MacOS','Y','','','','','Y','','','Y','','','nixos-hardware, NUR, nix-darwin, home-manager, impermanence, simple-nixos-mailserver, agenix, pre-commit-hooks and many more :)','sops-nix, NixOps, hercules-ci','Thank you for Nix and NixOS! These things truly became game changers in my computing life. I can\'t wait for them to gain more industry-wide adoption.'),(2005,'1980-01-01 00:00:00',5,'en','1692116044','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Building from source with caching, reproducibility ','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A5','','','','','','','','A6','A13','A3','','','','','','','','','','','','',NULL,'custom scripts','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A15','A20','A25','','','','','','','','','','','','','','','','','','A5','A15','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','github','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','moving from Archlinux, better configuration ','Y','','Y','','','','','atomic environment','reproducibility ','configuration','remove nix, add scheme','GuixSD','Y','','','','Y','','','','','','i3wm','home manager, emacs overlay, rust overlay','nixops','Great work! Thanks for providing such a great distribution!'),(2006,'1980-01-01 00:00:00',5,'en','323433871','A2','A5','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','It sounded very clever, the next step in the evolution of OS and package management. Figured I had to adopt it.','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A1','A10','A2','','','','','','','','A4','A8','A14','','','','','','','','','','','','',NULL,'Arch, pacman; Ubuntu, apt.','A4','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A24','A9','A26','A22','A15','A23','A14','','','','','','','','','','','','','','','A24','A23','A26','','','','','','','','','','','','','','','','','','','','','','','A1','','Errors. I seem to lack the deeper understanding required to understand them. ie I\'m crap at nix/flakes.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','It looked like the next step in the evolution of OS and package management.','Y','','Y','','','','','Configuration.','','','','Arch, Ubuntu.','Y','','','','','','','','','','','','','Onward!'),(2007,'1980-01-01 00:00:00',5,'en','323257615','A6','A3','male','','','','','','','','','','','Y','','Y','','','','','Y','','Y','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I got fed up with dependency hell in Haskell ecosystem and I found it very convinient replace Sent for kubernetes and DockerOS. ','','Y','','Y','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A2','A4','A5','','','','','','','','','','','','',NULL,'Arch and custom scripts ','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','A13','A3','','','','','','','','','','','','','','','','','','','A2','A15','A1','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Unclear how to do this, which are the best practicies. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','First I get used to nix on Fedora and then Fedora broke drivers for my nvidia card. NixOS manage to work out of box, so I started diving in. ','Y','Y','Y','Y','','','','Declarative system','Huge amount of packages','Easy to share','Remove flakes, add more typing in language. ','Arch','Y','Y','','','','','','','','','I3','Nixops 1.0','Flakes',''),(2008,'1980-01-01 00:00:00',5,'en','2076370599','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','docker','it was the next step after falling in love with docker & containers','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I like the idea behind it\r\nJust tried in VM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','<3 keep doing what you do'),(2009,'1980-01-01 00:00:00',5,'en','1530070799','A2','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','N','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Set up a new laptop with it out of curiosity and I found it workable','Y','','','','','','','Single-file system config','Monorepo for the OS','ease of switching between / simultaneously usage of different software versions','Better / more unified / more accessible introspection facilities.','Arch Linux','Y','','','','','','','','','','i3 / sway','nix-shell','nix-env','NixOS is still a fringe distrubtion in many ways. I\'m amazed how much is achieved in this status!'),(2010,'1980-01-01 00:00:00',5,'en','1618212993','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','Y','','','N','N','Y','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2011,'1980-01-01 00:00:00',5,'en','1268864619','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Because of NixOS ','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','A10','A1','A8','','','','','','','','A8','A5','A3','','','','','','','','','','','','',NULL,'I have no idea','A7','','','','Y','','','','','','','','','','','Y','','','','','','','','A3','A2','A4','A15','A21','','','','','','','','','','','','','','','','','A15','A2','A21','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of time and knowledge. Contribute small (bug report and fixing) patches to Nixpkgs. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Was transitionning to Linux permanently, heard about a distribution that could help me share configurations across machines. That was NixOS.','Y','','Y','Y','','','','System configuration as files','Composable configurations (modules)','Rollbacks','Rust compilers\' error messages on nixos-rebuild error messages','Arch ? Fedora ? I am trying to not think about it. ','Y','Y','','','','','','Y','','','','Mach-nix','','Good luck ! Thank you for your time !'),(2012,'1980-01-01 00:00:00',5,'en','1492713080','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','Die-hard perfectionist, Back-end developer, Functional Programmer. Got tired of setting up all the things manually again, again and again (been using Linux for 4-5 years now). Gave a shot to NixOS, didn\'t regret it, probably won\'t regret it in the future too. Not going back -- it\'s my home now.','','','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A9','A6','','','','','','','','A9','A14','A8','','','','','','','','','','','','',NULL,'Dreaded shell scripts.','A4','','','','','Y','','','','','','','','','','','','','','','','','','A11','A13','A9','A20','A23','A3','A1','','','','','','','','','','','','','','','A15','A11','','','','','','','','','','','','','','','','','','','','','','','','A2','','I don\'t have enough time.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','Reproducible builds.','Management of packages and configs.','Stability (idk, it is stable for my use cases).','I would change the naming/namespacing of packages. Would add more editor plugins and overall more packages.','Damned shell scripts!','','','','','','','','Y','','','','Home manager. It is good. Hard, but good. Unstable, but good.','','English speaking Telegram community is a joke. Literal home for shitposters and bikeshedders. Can\'t take it seriously. I even prefer to use translator to translate my messages to Russian and ask Russian community about it.'),(2013,NULL,NULL,'en','1280307737',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2014,'1980-01-01 00:00:00',5,'en','1825768391','A2','A2','fem','','Y','','','','','','','Y','','','','','','','','','Y','','','Y','','Y','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','Y','Y','Y','','A1','was recommended at hackspace, now i enjoy and embrace the cult and spread words of wisdom','Y','Y','','','Y','','Y','Y','','','Y','','','Y','Y','','Y','','','','A2','A4','A8','','','','','','','','A4','A5','A6','','','','','','','','','','','','',NULL,'aur/homebrew/apt','A1','','','','Y','','','','','','','','Y','','','','','','','','','','','A3','A15','A25','','','','','','','','','','','','','','','','','','','A3','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','lack of documentation and guides, steep learning curve','N','Y',NULL,'','ability to incrementally apply configurations/flakes one top of existing one, similarly to home-manager configurations',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','nix with docker, quite tedious to use within dockerfiles','Iit would be awesome to have graphic tool for management and writing configurations, perhaps with integration of CI, secrets management, packages and option browser. The only existing one is mynixos.com and it\'s lacking a lot, not to mention bugs. It would drastically improve usability for both newcomers and experienced people. Also it would be awesome to have customisable templates for configurations, development environments and builders/generators.'),(2015,NULL,NULL,'en','1340872729',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2016,'1980-01-01 00:00:00',5,'en','1015591396','A2','A4','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got sold on the home-manager approach of handling personal configuration files. ','','Y','','Y','Y','','Y','','Y','','','','','Y','Y','Y','Y','','','','A1','A9','A2','','','','','','','','A10','A5','','','','','','','','','','','','','',NULL,'','A1','','','','','Y','','','','','','','','','','','','Y','','','','','','A13','A25','','','','','','','','','','','','','','','','','','','','A13','A25','','','','','','','','','','','','','','','','','','','','','','Y','','A1','','','N','N','I am not quite sure. Right now \"nix-as-package-manager\" on a WSL/Linux machine is largely sufficient for my needs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'direnv with use_nix is my daily driver.','',''),(2018,'1980-01-01 00:00:00',5,'en','342444732','A5','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A3','','Y','Y','','','','','Y','','Y','','','','','','Y','','Y','','','','A2','A1','A9','','','','','','','','A8','A5','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2017,NULL,NULL,'en','617033843',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2019,'1980-01-01 00:00:00',5,'en','400815103','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','Y','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2020,'1980-01-01 00:00:00',5,'en','613899454','A2','A5','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A3','','','','','','','','A5','A6','A4','','','','','','','','','','','','',NULL,'Debian','A2','','','','','Y','','','','','','','','','','','','','','','','','','A1','A2','A15','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A1','','- Time\r\n- All interesting packages are already there','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Because of its fully declarative configuration for the system','Y','','Y','','','','','','','','','Debian','Y','','','','','','','','','','xmonad','','',''),(2021,NULL,NULL,'en','1256883077',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2022,'1980-01-01 00:00:00',5,'en','1070362177','A2','A4','','','','','','','','','','','','Y','','','','','','','Y','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Found out about it through a colleague way back when. Was convinced by the model, and stayed for the rollback feature.','','Y','','','','','Y','Y','','Y','','','','Y','Y','','Y','','','','A1','A7','A10','','','','','','','','A6','A8','A4','','','','','','','','','','','','',NULL,'','A7','','','','Y','','','','','','','','','','','','','','','','','','','A1','A10','A2','A24','A15','','','','','','','','','','','','','','','','','A10','A1','A2','','','','','','','','','','','','','','','','','','','','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','','','','','','','','','','Y','','','','','','','','','sway','','lots of python to nix projects that don\'t quite work.','Focus on the tech.'),(2023,NULL,NULL,'en','1254330216',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2024,'1980-01-01 00:00:00',5,'en','1147878032','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was tired of homebrew and managing my neovim config/plugins across multiple hosts','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A6','','','','','','','','A4','A8','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','','Y','','Y','','','','','Declarative system','Atomic upgrades','NixOS Containers','A good secure boot implementation','','Y','','','','','','','Y','','','','direnv with `use flake`\r\ncachix','',''),(2025,'1980-01-01 00:00:00',5,'en','1879186223','A5','A3','male','','','','','','','','','','','','','','','Y','','','Y','','','','','','Y','','Y','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A2','A7','A5','','','','','','','','A6','A5','A14','','','','','','','','','','','','',NULL,'Guix or OpenBSD','A4','','','','Y','Y','','','','','','','Y','','','','','','','','','','Laminar','A9','A15','A3','A6','','','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','Y','Y','','Y','','Declarative configuration ','Reproducible builds','Remote deployment (morph)','Better secret management that works well with state','OpenBSD or Guix','Y','','Y','','','','','','','','dwm','Disko and nixos-generators','nix-sops','I really wish size optimizations were possible'),(2027,'1980-01-01 00:00:00',5,'en','1435504857','A5','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','Jumped on the hype train in college, read Eelcos PhD thesis, never looked back. The NixOS experience dominates everything else for managing servers!','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A12','A13','A1','','','','','','','','','','','','',NULL,'','A2','','','','','Y','Y','Y','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','Way better than Salt!','','','Y','','','','','Whole system declarative config','Atomic rollback/deployment','Module system','','','Y','','','','','Y','','','','','','direnv','Using qemu and binfmt to emulate aarch64 builds on amd64 - way to slow. Running real distributed builds on my RPI 4 instead.',''),(2028,'1980-01-01 00:00:00',5,'en','1149750791','A5','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','As a life-long Linux user, I found the concepts very intriguing and made sense.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A2','A3','A6','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Some combination of Docker, Ansible and shell scripts.','A6','','','','Y','','','','','','','','','','','','','','','','','','','A9','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','Don\'t feel comfortable enough with Nix yet. Still learning...','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Heard about it on social media. Found it very interesting. Installed on laptop.','Y','','Y','','','','','Declarative config','Rollbacks','Learning','Way better documentation','Debian','','','','','','','','','','Y','','','','Nix is really cool. It is just hard to learn and I hope their is better resources for that soon.'),(2029,'1980-01-01 00:00:00',5,'en','1187624179','A5','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','Y','','','','','','','A1','','','','','','','','','','A5','A4','','','','','','','','','','','','','',NULL,'','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','But installation experience and unhelpful devs have turned me off getting more involved with nix.','N','N','Have had subpar experiences with just the nix package manager so I probably won\'t go full nixos.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Tried to install the nix package manager the recommended way (multi-user?) and while the script ran fine and reported *NO ERRORS* it still didn\'t work. Installed the non-recommended way (single-user?) and it worked. Then had a problem with the main package I wanted test my beginner nix experience. Filed a bug against the package (which had maybe one other bug against it) including the @\'s of the maintainers of that package as the template said to do. They never even acknowledged the existence of the bug.'),(2030,'1980-01-01 00:00:00',5,'en','985552245','A2','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I\'m interested in declarative infrastructure.','Y','','','Y','','','Y','Y','','Y','','','','Y','Y','','Y','','','','A1','A2','A10','','','','','','','','A14','A8','A6','','','','','','','','','','','','',NULL,'Debian w/ scripts. Maybe Ansible.','A1','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','Garnix','A15','A20','A23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','A deep understanding of best practices and how to test my changes.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Declarative system management!','Y','','Y','Y','','','','Declarative state management','Nixpkgs','Generations/rollback','The legacy stuff. Have one good way of doing things.','Debian w/ scripts, maybe Ansible.','Y','','','','','','','Y','','','','','',''),(2031,NULL,1,'en','546006291','A2','A4','male','','','','','','','','Y','','','Y','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2032,NULL,NULL,'en','1198175121',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2033,NULL,3,'en','328978716','A2','A4','fem','','','','','','','Y','','','','Y','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','via osmosis','','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','','','','','A2','A23','A1','A24','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2034,NULL,NULL,'en','714163388',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2035,'1980-01-01 00:00:00',5,'en','705659467','A5','','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','N','N','','','','','better integration with guix (though this means dev towards guix more than dev toward nix, of course)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Better integration with GuixSD, though this is more of a \"Guix devs\" problem than a NixOS problem',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2036,NULL,1,'en','1515254053','A2','A3','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2037,'1980-01-01 00:00:00',5,'en','1126655771','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','N','N','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2038,NULL,NULL,'en','283339838',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2039,'1980-01-01 00:00:00',5,'en','74663968','A5','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I have 4 self-managed computers that I might have to use on a daily basis, i.e. . I needed a way to keep the configuration in sync between them. I\'ve used Ansible on Fedora for this before but it\'s too slow and I\'m tired of writing YAML.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A7','','','','','','','','A13','A4','A8','','','','','','','','','','','','',NULL,'Probably Ansible, Salt, or Puppet.','A4','','','','','','','','','','','','','','','','','','','','','','','A15','A9','A1','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Haven\'t had a reason to yet.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I have 4 self-managed computers that I might have to use on a daily basis, i.e. . I needed a way to keep the configuration in sync between them. I\'ve used Ansible on Fedora for this before but it\'s too slow and I\'m tired of writing YAML.','Y','','','','','','','Configuration can be in source control','Configuration can be reproduced across multiple machines','Stuff just works','','Probably Fedora, Fedora Silverblue, or Arch.','','','','','','','','','','','River','','',''),(2040,NULL,1,'en','911955899','A5','A3','male','','','','','Y','','Y','','','','','','','','','Y','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2041,NULL,NULL,'en','1156053344',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2042,'1980-01-01 00:00:00',5,'en','562206882','A3','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','Y','','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','Y','I use WSL a lot and some important stuff does not work like vscode integrations and docker.','','','','','Y','Documentation is all around the place, you still find super old stuff not using nix flakes in the wiki. The guides always use unecessary complicated language that could be simplified to explain the concepts.','','','','','Y','','','','','','Better WSL2 integration',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Not compatible with WSL2','Better WSL2 compatibility',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix pkgs','nix shell/dev envs',''),(2043,'1980-01-01 00:00:00',5,'en','1354702568','A2','A4','male','','','','','','Y','','Y','','','Y','','','','','','','','','','','','','','Consultant','Y','','Y','','','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Curiosity','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','','','','A2','A10','A7','','','','','','','','A8','A9','A13','','','','','','','','','','','','',NULL,'OpenBSD, Arch Linux','A7','','','','Y','Y','','','','','','','','','','','','','','','','','GoCD','A5','A2','A1','A25','','','','','','','','','','','','','','','','','','A24','A5','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Limited time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Curiosity','Y','Y','','Y','','','','','','','','OpenBSD, Arch Linux','Y','','','','','Y','nixinate','','','','dwm','','',''),(2044,'1980-01-01 00:00:00',5,'en','187114523','A2','A2','fem','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','Plan 9','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','','','','','','','','','','','','','','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2045,NULL,1,'en','2037828234','A5','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2046,'1980-01-01 00:00:00',5,'en','828311583','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Previously used Arch on many different machines and Ubuntu for simplicity on family machines. I had a newer PC that was not working exactly the way I wanted, so I distro-hopped over to NixOS. After three months of struggling to understand NixOS and learning the bare minimum git, I switched over all of my machines and most family member machines using a flake.','','','','','','','Y','Y','','','','','','Y','','','','','','','A1','A8','A10','','','','','','','','A8','A4','A14','','','','','','','','','','','','',NULL,'Arch','A1','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','No tech background and currently consumed by work and family.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I switched from Arch after realizing how great it is to be able to declare configurations. Ease of use using the NixOS usb installer that was offered.','Y','','','','','','','Configuration options','Latest software while remaining stable','Ease of keeping up-to-date (using flake, but it took a long time to get there)','I would add the ability to use a \"spreadsheet\" to manage all the packages on all machines in my flake. Lists works well, but a spreadsheet would be able to tell me that LibreOffice is on Machine A, B, but I keep it off of C, etc.','Arch','Y','','','','','','','Y','','','hyprland','','',''),(2047,NULL,0,'en','1495099693','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2048,NULL,NULL,'en','1109346764',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2049,'1980-01-01 00:00:00',5,'en','243707656','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A7','Wanted sane package management with reproducibility. ','Y','','','','Y','','Y','','','','','','','Y','Y','','Y','','','','A6','A2','A3','','','','','','','','A5','A6','A14','','','','','','','','','','','','',NULL,'Brew, Debian, Fedora Silverblue, ostree, flatpack','A6','','','','Y','Y','','','','','','','','','','','','','','','','','','A17','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Still learning how Nix works','N','N','Planning to in the future. Still figuring out nix-darwin and home-manager at the moment.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'flakes, nix-darwin, home-manager, nur, nixery','',''),(2050,'1980-01-01 00:00:00',5,'en','560895909','A5','A3','','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','','','','','','Y','','','','','','','','','Y','','','','A10','A1','A7','','','','','','','','A5','A14','A9','','','','','','','','','','','','',NULL,'Debian and Ansible','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','Y','','','','','Package configuration','Atomic rebuilds/rollbacks','Wide selection of packages','Secure Boot (with custom keys)\r\n\r\nEasier to understand how to compose multiple configuration files (I think this is Flakes? Right now I just have a large configuration.nix, but I\'m only using one machine so far)','Debian with Ansible','Y','','','','','','','','','','','','',''),(2051,NULL,2,'en','943150384','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','N','N','','','','Y','Configuration as code',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2052,'1980-01-01 00:00:00',5,'en','31224509','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A7','A5','','','','','','','','A6','A8','A2','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A22','A2','','','','','','','','','','','','','','','','','','','','A22','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','Declarative (including for `.config`)','Immutability','Rollbacks','Better errors and build times.','','Y','','','Y','','','','','','','','','',''),(2053,'1980-01-01 00:00:00',5,'en','51135762','A5','A2','male','','Y','','','','','','','','','Y','','','','Y','','','Y','','','Y','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A1','','','Y','','','','','Y','Y','','','','','','','Y','Y','','','','','A10','A1','A3','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2054,'1980-01-01 00:00:00',5,'en','169011518','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Online user blogs mentioning nix a lot.','','','','','','','','Y','','Y','','','','','','','Y','','','','A2','A1','A10','','','','','','','','A6','A4','A14','','','','','','','','','','','','',NULL,'FreeBSD + BastilleBSD/Rocinante','A4','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','It takes time to wrap your head around NixOS and how the community uses it. It seems like it takes a lot of tinkering before you can feel ready to contribute. \r\nI\'ve followed development on github and it seems fast past.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Too reduce strain of maintaining many cloud VMs and servers. ','','','Y','Y','','','','Porting setups to multiple servers and VMs','Automating things like tailscale/zerotier','Git integration with flakes','1. Secrets management to protect ssh keys and other things in the base NixOS\r\n2. Fully embrace NFTtables as default firewall and easier control of per interface, per ipv4 and per ipv6 settings. (I use ipv6 for everything and only need to open a few specific ports on ipv4).\r\n3. Decide on nix-channels or flakes, I\'ve used both and I seen benefits to both. It seems to have caused a soft split of the community and documentation. I am\r\nnot really sure what to do here.\r\n','FreeBSD + BastillleBSD/Rocinante','Y','','','','','','','','','','','','home manager. I would prefer something like that in base nixos.','Good work everyone!'),(2055,'1980-01-01 00:00:00',5,'en','1397405384','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','Y','','GrapheneOS (Android)','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted granular control over my package build process, and BSDs / Void Linux created too much work by avoiding systemd + glibc.','Y','Y','','Y','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','','Y','','A2','A5','A1','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'Debian stable, Ubuntu LTS, proxmox.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','in-house tool','A2','A3','A4','A15','A1','','','','','','','','','','','','','','','','','A2','A15','A22','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','It\'s the only mature choice for declarative systems.','Y','','Y','','','','','Declarative','Source-based','Reproducible','Support Raptor Talos ppc64le machines','Debian stable, Ubuntu LTS, Proxmox. Possibly play with Void, FreeBSD, OpenBSD.','Y','','','Y','','','','','Y','','','','divnix/digga is too complicated; I ended up rolling my own simpler factorization.',''),(2056,NULL,NULL,'en','1830413037',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2057,NULL,3,'en','1967253017','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2058,NULL,1,'en','1100472129','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2059,'1980-01-01 00:00:00',5,'en','1798144798','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','Y','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A6','','','','','','','','A6','A8','A9','','','','','','','','','','','','',NULL,'Bazel for building, not sure about configuration management and probably toolbox for development environments.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A20','','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Config as code and reproducible home server','','','Y','','','','','Config as code','Reproducability','Atomic upgrades and rollbacks','','Probably CoreOS or some virtualization.','Y','','','','','','','','','','None, this is a server.','','',''),(2060,NULL,1,'en','630328543','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Security Engineer','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2061,'1980-01-01 00:00:00',5,'en','948730936','A2','A4','male','','','','','','','Y','Y','Y','Y','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','having the same configuration between mac and linux with home-manager','Y','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'custom scripts, manual work','A1','','','','Y','','','','','','','','','','I don\'t know??','','','','','','','','','A1','A24','A6','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','no interest','N','Y',NULL,'too hard to get to where I want to get','I don\'t want to put extra work in learning new things and figuring out why things don\'t work',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','',''),(2062,'1980-01-01 00:00:00',5,'en','1547146664','A2','A3','male','','Y','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Because NixOS.','','Y','','','','','','','','Y','','','','','','','Y','','','','A7','A1','A10','','','','','','','','A5','A6','A9','','','','','','','','','','','','',NULL,'','A5','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A22','A9','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','Y','','A3','Required robust server OS for the infrastructure of our student association.','','','','Y','','','','Atomic system updates (Generations)','','','Add ability to generate plain system images for RPis (without nixpkgs).','Debian + Ansible','Y','','','','','','','','','','','','',''),(2063,'1980-01-01 00:00:00',5,'en','1829152881','A5','A7','male','','','','','','','Y','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because lots of the cool Haskell people were using it.','Y','','','','','','Y','','','','','','','Y','Y','','','','','','A1','A2','','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'homebrew','A7','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A13','A15','A1','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Nix is still too hard to use --- despite the ease-of-use layers (like devenv) on top.','N','N','If I had two things:\r\n- a non-MAC laptop\r\n- someone always available to help me when I get stuck\r\n\r\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'devenv','','Nix, when it works, is great.\r\nWhen it doesn\'t, is a nightmare.'),(2064,'1980-01-01 00:00:00',5,'en','880305221','A5','A2','male','','Y','','','','','Y','','','Y','Y','','','','Y','','','Y','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Can\'t remember.','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A1','','','','','','','','','A8','A3','A2','','','','','','','','','','','','',NULL,'Tears.','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A25','A11','A13','A14','A15','A22','A1','A24','','','','','','','','','','','','','','A25','A11','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','Can\'t remember.','Y','','Y','Y','','','','Large package selection','Preconfigured services','Configuration storable in git','First-class support in the language for the module system.','Tears.','Y','','','Y','','','','','','','sway','','','I\'m excited for nickel!!'),(2065,'1980-01-01 00:00:00',5,'en','671755135','A5','A3','-oth-','non-binary','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A11','A10','A2','','','','','','','','A12','A11','A2','','','','','','','','','','','','',NULL,'some combination of Ansible (configuration management) & bazel or buck2 (build system)','A4','','','Y','Y','Y','','Y','','','','','','Y','','','','Y','','','','','','A2','A13','A3','A4','A9','A15','','','','','','','','','','','','','','','','A9','A1','A5','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','Y','Y','','','','','stateless, declarative environment configuration','whole-system package configurability','cross-platform support','first-class support for the module system; it\'s currently implemented as a library, however the interface is general enough that i believe it should be integrated more deeply into NixOS and/or Nix itself (e.g. module-based stdenv).','honestly idk; maybe GuixOS, maybe Flatcar & lean into OCI containers more? i would probably just administrate fewer servers and shift back to general backend software development.','Y','','','','','','','Y','Y','','','home-manager, nix-darwin, disko, flake-parts, impermanence','nixops','thanks for all the hard work, open source is thankless and managing a project as large as NixOS sounds grueling.\r\n\r\ni\'ve benefited greatly from all the work that the maintainers have done over the years, far beyond what i\'ve been able to contribute back to the project.'),(2066,'1980-01-01 00:00:00',5,'en','228406048','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I chose NixOS for easy installation of a wide range of software that already has best-practices baked in (like systemd sandboxing). I was exposed to nix via nixery.dev containers.','','','','','Y','','','Y','','','','','','Y','','','','','','','A10','A1','A2','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'Containers, ansible','A4','','','','Y','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I needed a low-maintenance and versatile home server. Initially was impressed by how easy it is to set up Kubernetes with k3s, but I\'ve since removed Kubernetes and have been using nixos modules directly.','','','Y','','','','','Ability to install a wide range of software with sane and secure defaults','Declarative and immutable configuration','Automatic updates','Make it substantially easier to override/patch a specific package/module. Anything to avoid having to interact with nix too much.','Fedora CoreOS + containers','Y','','','','','','','','','','','nixery.dev: a container registry that dynamically builds images from nixpkgs.','',''),(2067,'1980-01-01 00:00:00',5,'en','1560617231','A2','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','N','N','','','','','Reference Documentation, More readable source code, Better configuration language than nix',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I use guix, not nix, because i actually understand it.'),(2068,NULL,1,'en','176163485','A6','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2069,'1980-01-01 00:00:00',5,'en','446440266','A1','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A3','A2','A1','','','','','','','','A8','A14','A4','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2070,NULL,NULL,'en','1531547063',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2071,'1980-01-01 00:00:00',5,'en','1457171708','A2','A2','male','','','','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','','N','N','','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2072,'1980-01-01 00:00:00',5,'en','1752249664','A5','A2','male','','','','','','','Y','Y','','Y','','Y','','','','','','Y','','','','','','','','Y','Y','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','Barely present and consistently outdated documentation paired with abysmal debugging made any unexpected problem eat a night rather than a few minutes','Y','Derivation rebuilds were painful on reasonably powerful hardware, writing new derivations requires lots of rebuilds.','','','','','','','','','','','','','documentation, documentation, and more documentation','nixpkgs is an utter trainwreck and the lack of standardization makes doing anything related to nix require learning an entire subecosystem related to your task, often with even worse documentationk','Y','Y','Y','','Y','Y','strong types',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Took too long to do anything, similar reasons to nix.\r\nClosest thing to documentation is a difficult to navigate manual and an absurdly outdated user wiki.\r\nEasy to accidentally render a system into an unrecoverable state while initially configuring it.','If nix got strong types, better documentation, and nixpkgs was less of a disaster.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','nix is great conceptually but the usage experience was nightmarish.'),(2073,'1980-01-01 00:00:00',5,'en','2007283511','A2','A4','male','','','Y','','','Y','Y','','','','Y','','','','','Y','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted to declaratively install my machines, and also have reproducible development project environments.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A5','A6','A3','','','','','','','','','','','','',NULL,'guix? or docker(-compose), linuxkit, archlinux','A4','','','','Y','','','','','','','','','','','','','','','','','','','A13','A15','A21','A10','','','','','','','','','','','','','','','','','','A13','A10','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','understanding how to build locally and use the CI of nixpkgs','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','as soon as I discovered nix flakes for project development.','Y','','Y','','','','','flakes','versionnable declarative configs','normalize the way to enable and configure services','easier modularity / reuse of setup between systems','guix? archlinux, linuxkit','Y','','','','','','nixinate, disko','','','','i3','','',''),(2074,NULL,1,'en','177724026','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2075,NULL,2,'en','2024194962','A5','A3','fem','','','','','','','Y','','','','Y','','','','','','Y','','','','','','','Y','','','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Wanted to be able to provision cloud machine declaratively so I could replace it easily, and Ansible is so gross','Y','Y','','','','','Y','','','Y','','','','Y','','','Y','','','','A1','A10','A6','','','','','','','','A13','A14','','','','','','','','','','','','','',NULL,'Ansible','A1','','','','','','','Y','','','','','','','','','','','','','','','','A19','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'m scared that packages I\'m interested in will seem to bespoke to be included, or that if I don\'t keep them up to date always in my limited time they\'ll be deleted',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2076,NULL,NULL,'en','181784734',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2077,'1980-01-01 00:00:00',5,'en','1974894985','A2','A5','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','Y','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A6','','','','','','','','','','','','','','','','','','','','','','','',NULL,'Mac ports and apr','A4','','','','','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','N','Y',NULL,'So far from a working desktop. \r\nReverted back to Ubuntu','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2078,'1980-01-01 00:00:00',5,'en','1237775637','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted to have a list of packages installed on my machine so that they can all be easily installed on new laptops','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A4','A3','','','','','','','','','','','','',NULL,'guix or something simpler like asdf','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A15','A2','A1','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Keep an always updated list of packages on my machine to make reinstall easier','Y','Y','Y','','','','','nix-shell','home-manager','nixos','Better error messages and improve packaging situation for electron apps','Ubuntu','','','','','','','','','','','i3','direnv, nix-init, nix-update','niv ',''),(2079,NULL,NULL,'en','1504688971',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2080,'1980-01-01 00:00:00',5,'en','282894104','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','I\'ve been reading about Nix for a while now, and I was curious to try it out. Recently installed NixOS on my laptop (since I was about to format it), as a way to force me to learn Nix (and NixOS), since I knew I wouldn\'t get into it by tinkering just in a VM or just by adopting it locally. It was a forcing function, a good one. So far so good!','','','','','','','Y','','','','','','','','','','Y','','','','A2','A1','','','','','','','','','A8','A13','A4','','','','','','','','','','','','',NULL,'','A7','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Way too noob for that, yet.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I\'ve told that in the Nix section; basically to deep dive into Nix, and to understand what I read people talking about.','Y','','','','','','','System configuration as code','','','','The one I was previously using on this machine (and still use on my desktop): Arch Linux.','','','','','','','','','','','Sway','','','Keep up the good work! :)'),(2081,'1980-01-01 00:00:00',5,'en','526419851','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to try linux on an old thinkpad and every other distro seemed nightmareish to manage correctly. I started with home-manager and nix-darwin on macos before using nixos for the thinkpad and later using it for my desktop and remote devenvs at work.','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','','A2','A1','','','','','','','','','A14','A4','A3','','','','','','','','','','','','',NULL,'direnv and an unholy amount of bash ','A4','','','','Y','Y','','','','','','','','','','','','','','','','Y','','A9','A1','A15','','','','','','','','','','','','','','','','','','','A9','A1','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','if I need a package that\'s not in nixpkgs, it\'s way easier to package it as a one-off for myself than learn about the customs and process of submitting patches to nixpkgs. ','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','my first linux distro. now I use it for managing CI machines and developer vms at work.','Y','Y','','','','','','declarative configuration of everything','package availability','','coalesce on a \"right\" way to do things so that there aren\'t a million \"experimental\" features that I rely on but are hard to get others set up with. The lack of stability makes it really difficult to teach others and learn myself too.','hand-written scripts','Y','','','','','','','','','','sway','nix-direnv, home-manager, nix-darwin','lorri',''),(2082,'1980-01-01 00:00:00',5,'en','2129108129','A5','A2','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Reproducible builds and consistent build environment.','Y','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','','Y','','A2','A1','A6','','','','','','','','A5','A6','A3','','','','','','','','','','','','',NULL,'Other OS package managers (apt, home-brew) and/or language package managers and build systems like bazel.','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A15','A4','A3','A2','A5','A7','','','','','','','','','','','','','','','','A5','A7','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Reproducible system configurations.','Y','Y','Y','Y','','','','Declarative systemd services','Impermanence/tmpfs as root','Declarative containers','I would add a robust secrets management system','Likely some custom Linux distro','Y','','','','','','','','','','','Disko, agenix, impermanence, devshell','',''),(2083,NULL,3,'en','150489895','A2','A4','male','','','Y','','','','Y','','','Y','Y','','Y','','','','','','','','','','','Y','','','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2084,'1980-01-01 00:00:00',5,'en','491653144','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Partially upgraded Arch; valgrind stopped working; several friends of mine said \"Nix wouldn\'t let this happen\". Separately I had written a ton of hand-rolled bash code trying to do hermetic local CI runs on my big machine, and friends said \"it sounds like you\'re reinventing Hydra\". So I eventually installed nixos in a VM, and then on my laptop, and then read all the nix pills, and then ported all my scripts into nix (I never did figure out Hydra), and then I was hooked.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A4','A3','A2','','','','','','','','A13','A12','A3','','','','','','','','','','','','',NULL,'Arch and hand-rolled bash scripts.','A2','','','','','','','','','','','','','','','','','','','','','','hand-rolled setup','A15','A3','A13','A4','','','','','','','','','','','','','','','','','','A15','A13','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Don\'t want to learn an ad-hoc overlay language built on top of Nix when Nix itself is already a clusterfuck combination of dynamic typing and laziness which is impossible to debug or reason about.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Started using Nix (see other answer). It seemed pretty good. Didn\'t like having multiple package managers and once I\'d learned the language and package manager it seemed like a small step. I did not know going in that configuration.nix was actually yet another ad-hoc overlay language on top of Nix. I would have been more hesitant otherwise.a','Y','Y','Y','','','','','Remote building (sort of, the total lack of resource management/scheduling makes this pretty frustrating and manual to use)','Ability to have multiple versions of software installed','Ability to roll back','Replace the Nix language with something that has static typing and first-class support for the functionality needed for configuration.nix and for nixpkgs.\r\n\r\nReplace the remote build system with something that can keep track of system resources and which can detect and recover from transient failures.','Arch with ad-hoc bash scripts.','Y','','','','','Y','','','','','xmonad','nix-output-monitor','Hydra (couldn\'t figure out where to start)\r\n\r\nconfiguration.nix with pinned nixpkgs (required incredible contortions and still didn\'t really work)\r\n\r\nsetting up local binary cache (never got it to work)\r\n\r\nwayland/wlroots via configuration.nix (couldn\'t figure out how to open a terminal) (OTOH it was *incredibly* easy to back this out, on a live system that I was using for work..)',''),(2085,NULL,1,'en','704726355','A2','A4','male','','','','','','Y','','','Y','','','','','','','','Y','','','','','Y','','Y','','','','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2086,'1980-01-01 00:00:00',5,'en','1009182549','A5','A3','male','','Y','','','Y','','Y','','','','Y','','','','','','','Y','','','','','Y','','','Y','','','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','More free time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Busy','More free time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2087,'1980-01-01 00:00:00',5,'en','2023115482','A5','A5','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I\'d been getting frustrated with Gentoo after many years of running that. I happened to meet Doman Kozar (apologies for the spelling) at a conference in California, who had solid explanations for how e.g. Ruby programs were built on Nix, so I started trying it out','','Y','','','Y','','Y','','Y','Y','','','','Y','Y','','Y','Y','','','A7','A2','A3','','','','','','','','A8','A14','A6','','','','','','','','','','','','',NULL,'I really don\'t know. Ubuntu and NXD, maybe?','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A15','A5','A3','A17','A2','A7','A1','A13','','','','','','','','','','','','','A2','A15','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same time, roughly, I started using Nix','Y','','','Y','','','','Modules','Overrides','Declarative configuration','Easier flake deployment. Easier overrides, especially of sources','No idea. Terraform?','Y','Y','','','','','','','','','Xmonad','Home-manager. Lorri','','I really wish there were a better solution for language library packaging. I largely avoid Python on Nix because the process is so painful, but every language I use has it\'s own wrinkles'),(2088,'1980-01-01 00:00:00',5,'en','580704229','A2','A4','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2089,'1980-01-01 00:00:00',5,'en','2095982011','A2','A4','male','','','','','Y','','','','','','Y','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','Y','','','','A1','Multiple envs alongside','','Y','','','','','Y','','','Y','','','','Y','Y','','','','','','A1','A2','A3','','','','','','','','A8','A3','A9','','','','','','','','','','','','',NULL,'Containers','A4','','','','Y','','','Y','','','','','','','','','','','','','','','','A21','A2','A18','','','','','','','','','','','','','','','','','','','A21','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2090,'1980-01-01 00:00:00',5,'en','1914616770','A5','A3','-oth-','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','My friend was into it, and got me to try it. I was using Mac OS X at the time, and had only ever tried a handful of linux distros briefly (ubuntu, arch linux). The declarative configuration of NixOS was a huge selling point, and I\'ve never looked back.','','','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A2','A4','A8','','','','','','','','','','','','',NULL,'If Nix did not exist, it would be necessary to invent it.\r\n\r\nI would probably check out Guix more seriously.','A2','Y','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A7','A20','A1','A22','A3','','','','','','','','','','','','','','','','A22','A1','A20','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','My friend was into it, and got me to try it. I was using Mac OS X at the time, and had only ever tried a handful of linux distros briefly (ubuntu, arch linux). The declarative configuration of NixOS was a huge selling point, and I\'ve never looked back.','Y','Y','Y','Y','','','','Declarative configuration','Leveraging a ton of work that other sysadmins have already done','System hashes (stable under refactoring)','Faster eval time','If NixOS did not exist, it would be necessary to invent it.\r\n\r\nI would probably check out Guix System more seriously.','Y','','','','Y','','','','','','i3, xmonad','nixos-shell\r\nhome-manager','morph\r\nDevOS / DiggaLib',''),(2091,'1980-01-01 00:00:00',5,'en','336017027','A5','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','Application Analyst','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Botched the upgrade from Ubuntu 18 to 20 LTS, then botches a debian install, I heard of NixOS via the Guix community and I knew that guix system at the time was unusable on desktop so I tried it.','','Y','','','','','Y','Y','','','','Y','','','Y','','Y','','','','A1','A3','A7','','','','','','','','A5','A1','A9','','','','','','','','','','','','',NULL,'Docker compose for server, idk for desktop','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Don\'t know how to package things.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Botched upgrade from Ubuntu 18 to 20 LTS and at that time system was a mess with multiple apt repositories, ppas, snaps, flatpaks, appimages, etc','Y','','Y','','','','','Declarative config ','Rollbacks','nixpkgs','better progress bars for nixos-rebuild','fedora silverblue','Y','','','','','','','','Y','','','','',''),(2092,'1980-01-01 00:00:00',5,'en','209045520','A5','A2','male','','','','','','','Y','','Y','','Y','','','Y','','','','Y','','','','','','Y','','','','','','','Linux','N','N','Y','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Mostly the learning wall makes a soft start a non-starter. It looks cool but I don\'t have the patience right now to pick up another tool with such a steep learning curve. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2093,'1980-01-01 00:00:00',5,'en','1416515845','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I always wanted to use my RPi for some projects but the thought that I would have to maintain (and remember) the setup was dreadful. NixOS just fixed that for me, I can reproduce my setup on my small set of RPi without any additional work, I can experiment with the config knowing that I will be able to recover at any point, this is amazing.','Y','','','','','','Y','','','','','Y','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A8','A4','A9','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A5','A3','A9','','','','','','','','','','','','','','','','','','','A5','A1','A8','','','','','','','','','','','','','','','','','','','','Y','Y','','A2','','Sheer scale of it, currently there are over 4k pull requests. I really want to change/update some packages (and add a few things), but I do not have the time commitment needed for the whole process to happen (there is a reputation, earned or not, that it takes a long time for something to be merged).','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','Got a new laptop and wanted to try something new, Windows pushed me away with updates at very bad times so I went for Linux. NixOS just provided the things I value most.','Y','','','','','Y','','Declarative OS','Immutability','','Gnome config was quite annoying as I couldn\'t declaratively configure it.','Guix','Y','','','','','','','Y','','','','home-manager','',''),(2094,'1980-01-01 00:00:00',5,'en','1705758993','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Recommended by my local Chaos Computer Club (CCC).','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A1','A2','A15','','','','','','','','','','','','','','','','','','','A25','A1','A9','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','The local Chaos Computer Club (CCC) recommended it.','Y','','','','','','','home-manager','NixOS options','nix-shell','Add a Wiki like Arch Linux.','Arch Linux','Y','','','','','','','Y','','','','nixpkgs-update\r\nnixpkgs-review\r\nnixpkgs-hammering','npm2nix\r\nnode2nix','I contributed to the wiki, but the Management is way to strict. I was not allowed to add information that is already mentioned in the Documentation. It feels like it is actively prevented, that the wiki will become as informative as the Arch Linux wiki. '),(2095,'1980-01-01 00:00:00',5,'en','1097379820','A5','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I started using Nix since I had some friends who were enthusiastic about it. I started experimenting with it by using it to package a backup script for my home workstation. I then started using it at work to configure my local environment with home-manager.','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A14','A5','A2','','','','','','','','','','','','',NULL,'Language-specific package managers, e.g. cabal, cargo, pip, etc., or system package managers like pacman, brew, etc.','','','','','Y','Y','','','','','','','','','','','','','','','','','','A25','A13','','','','','','','','','','','','','','','','','','','','A15','A13','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I do not have a reason yet to contribute to Nixpkgs, it meets my needs.','N','N','Curiosity, and unifying package management and configuration between Nix and my system package manager. My workstations are currently configured ad-hoc by hand, and I\'d like to automate some of that to make it more reproducible, perhaps with something like ansible. NixOS would also be able to fit that role, as I understand it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2096,'1980-01-01 00:00:00',5,'en','1828000363','A2','A3','male','','','Y','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','','','','','','','','','A13','A8','A6','','','','','','','','','','','','',NULL,'Debian, managing config with Puppet','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','Y','','Y','','','',''),(2097,'1980-01-01 00:00:00',5,'en','846578973','A5','A2','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Wanting a reproducible build environment for a personal site','','Y','','','','','Y','','','','','Y','','Y','Y','Y','Y','Y','','','A1','A2','A7','','','','','','','','A2','A14','A5','','','','','','','','','','','','',NULL,'Containers','A1','','','','Y','Y','','','','','','','','','','','','','','','','','builds.rs.ht','A2','A4','A1','A13','A15','','','','','','','','','','','','','','','','','A2','A7','A13','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I have ~2PRs open but seemingly stuck in review hell? and I don\'t want to juggle that many open branches','N','N','Better support for running binaries that need a traditional FHS setup, and better documentation around that',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'devenv','',''),(2098,NULL,NULL,'en','1622779943',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2099,'1980-01-01 00:00:00',5,'en','383690929','A2','A3','fem','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','Y','','Y','','Y','','','','','','Y','Y','Y','Y','Y','','A1','A2','A8','','','','','','','','A14','A2','A12','','','','','','','','','','','','',NULL,'','A2','','Y','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','Y','','','','Rollbacks','','','Nickel ','','Y','','','','','','','','Y','','','Lsp','',''),(2100,NULL,1,'en','389776781','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2101,'1980-01-01 00:00:00',5,'en','706428537','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Reproducible system configuration managed by git. Furthermore I have found the deployment of software very reliable.','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A8','A14','A9','','','','','','','','','','','','',NULL,'RPM-ostree','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I looked into management of systems using Ansible and have found NixOs far superior.','Y','','','','','','','Reproducible configuration ','','','','RPM-OSTREE ','Y','','','','','','','','Y','','','Home-manager ','Building don\'t packages',''),(2102,'1980-01-01 00:00:00',5,'en','350980376','A5','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','NixOS provided a community sourced set of best practices and configuration that made it easy to have a secure (enough) linux environment.','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','Y','','A2','A7','A10','','','','','','','','A8','A6','A15','','','','','','','','','','','','',NULL,'nix, as a package manager: homebrew/chocolately/apt\r\nnix, as an OS: arch maybe, but likely nothing for most projects. OpenMediaVault/debian for a NAS','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','I\'ve done it once, for something small: https://github.com/NixOS/nixpkgs/pull/240969\r\nBut the first time I opened a PR to see if something I found locally useful would be wanted upstream, I ended up getting conflicting information and having my contribution declared \"very weird and niche\": https://github.com/NixOS/nixpkgs/pull/219618.\r\n\r\nI have talked with people on the matrix server, and I now have a better idea for how to go about determining if contributions would be wanted upstream, but overall I don\'t have much of a desire to collaborate in this space right now.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Same as with nix: NixOS provided a community sourced set of best practices and configuration that made it easy to have a secure (enough) linux environment. (NixOS was the more compelling reason that Nix, at least as an entry-point into the ecosystem).','Y','','Y','','','','','Community-provided configuration of best practices and integration points','Frequent security and feature upgrades','Easy daemon-ization of scripts and services','https://github.com/svanderburg/nix-processmgmt\r\nand perhaps in particular:\r\n> The ability to deploy multiple instances of the same process, by making conflicting resources configurable.','Arch Linux perhaps, but NixOS was an introduction to self-hosting for me.','Y','','','','Y','','','Y','','','','home-manager\r\nDoes the matrix space count?','NixOps - used it to manage a Digital Ocean box, then migrated off when NixOps 2.0 was going to remove support.','I didn\'t get a chance to plug this cool project: https://www.liminix.org/ (not my project).\r\nI would love to use Nix on a phone, and have considered buying a used pinephone (or something) to use as a home-assistant server (or just a client?) with an integrated UI -- thank you very much for the hard work of the volunteers working on that project\r\nFlakes have really enabled me to nix-ify more and more of my homelab, and I\'d love to convert my whole networking stack to something nix-y.\r\nIt\'s a great project, and I\'m glad it\'s been successful.'),(2103,'1980-01-01 00:00:00',5,'en','238433684','A5','A3','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I have been using Linux distributions such as Arch or Debian as my primary operating system on both servers and workstations for 14 years. I am also in love with functional programming and interacting with computers declaratively. You can connect the dots to Nix.','Y','Y','Y','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A7','A1','A2','','','','','','','','A8','A9','A7','','','','','','','','','','','','',NULL,'I\'d check out Guix before giving up, but I would likely utilize Debian/Arch based distributions and OCI containers.','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','Too many serious/debilitating issues open with Hydra to use it in production','A13','A1','A10','A3','A25','','','','','','','','','','','','','','','','','A10','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I don\'t use GitHub.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I provided an answer to this in a previous section.','Y','Y','Y','Y','','','','Declarative system configuration','Reproducible and atomic builds/rollbacks','Integration with the enormous nixpkgs package repository','- Add Flake/nix-command stability\r\n- Expand on the type system in some way so that a function which returns a string can be used anywhere a string could be (don\'t need true referential transparency)\r\n- Remove the years of old/outdated documentation all across the internet that confuses new users','Debian/Arch.','Y','','','','Y','Y','','','','','i3-gaps','agenix - This dead simple implementation of secrets management in Nix is great. I saw that native secrets management was on the \"wishlist\" in this survey, so if you all do some native secrets management you should keep it as simple as possible like agenix.\r\n\r\nflake-parts - Yup, you know what this is.\r\n\r\nnix-serve-ng - The original nix-serve has serious reliability issues.','NixOps - open PRs that resolve problems for months/years without any movement from maintainers.\r\n\r\nHydra - same deal. There are open PRs that resolve issues people have that are just languishing.','Nix is one of the most important FOSS projects in the world. Thanks for what you\'re doing.'),(2104,NULL,1,'en','606557049','A2','A3','fem','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2105,NULL,1,'en','1035535805','A5','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2106,NULL,1,'en','393136930','A1','A4','male','','Y','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2107,'1980-01-01 00:00:00',5,'en','1458617121','A5','A3','male','','','Y','','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A7','A2','','','','','','','','A13','A5','A8','','','','','','','','','','','','',NULL,'Fedora','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A2','A15','','','','','','','','','','','','','','','','','','','A2','A9','A15','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Built a home server and needed an OS for it. Considered something like Fedora or Debian and ansible, but had heard of NixOS and went with it for ease of use in configuring the server and storing configuration in version control, safety in testing changes with rollbacks, and tons of packages available to use.','Y','','Y','','','','','Ease of configuring/testing','Package availability ','Safety of testing out new configurations without fear of FUBAR','Grade AAA docs and discoverability of the Nix language and composing flakes.','Fedora','Y','','','','','','','Y','Y','','','Home Manager','',''),(2108,'1980-01-01 00:00:00',5,'en','152152294','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','As a way to manage project specific dependencies.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A7','A3','A1','','','','','','','','A5','A14','A2','','','','','','','','','','','','',NULL,'maybe pkgsrc?','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A2','A15','A4','A3','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Importing a package directly into home manager config','A1','','Haven\'t had a need to','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','After using nix on a debian install, I installed it on a desktop and a laptop to try things out. I found it worked pretty.','Y','','','','','','','Centralized configuration','Atomic upgrades and rollbacks','','As someone learning how to do things in nix the main thing that I would get rid of are any competing ways to do things.\r\n\r\n\"There should be one-- and preferably only one --obvious way to do it.\"','nix on debian','Y','','','','','','','','Y','','','home-manager','I briefly tried `niv` but I think flakes makes it obsolete.',''),(2109,'1980-01-01 00:00:00',5,'en','480913480','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was interesting in system after I was read an article about it','','Y','','','','','','','','','','','VM','Y','','','','','','','A1','A2','A10','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'keep going with arch I guess','A2','','','','','','','','','','','','','','I am very new, so I dont','','','','','','','','none','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','I do not extend yet','A1','','I dont think about it, guess I need to check some articles about it (howto or some kind of examples maybe)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','wanna check the system after I was read an article about it','','','','','','','VM','all in one config','many pkgs','new sys','nothing I will add free time to myself to learn it','arch','Y','','','','','','','','','Y','','I dont know about other stuff','I dont know about other stuff','thx'),(2110,'1980-01-01 00:00:00',5,'en','1392543270','A5','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A1','','Y','','','','','','Y','','','','','','','Y','Y','','Y','','','','A6','A2','','','','','','','','','A9','A8','A14','','','','','','','','','','','','',NULL,'homebrew','A6','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2111,'1980-01-01 00:00:00',5,'en','979224889','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Being able to create an island of stability by having a declarative config, and being able to develop on top of the island without fear.','Y','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','Y','','A9','A2','A1','','','','','','','','A8','A12','A9','','','','','','','','','','','','',NULL,'','A4','','Y','','Y','Y','','','','','','','','','','','','','Y','Y','','','','A3','A4','A9','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','','','','','','','','','','Y','','','','','','','Y','','','','','','The use of frandom seed currently causes all derivations to vary substantially in their content addressed output if any aspect of their input changes.\r\n\r\nThis threatens any deduplication effort, since things which should be the same may have binaries which are substantially different for no reason. For example frandom seed causes symbols to be reordered, and this means that the compression gain to be had from storing otherwise like-by-like binaries will be harmed, in addition to causing unnecessary content addressed misses.\r\n\r\nhttps://github.com/NixOS/nixpkgs/issues/153793'),(2112,'1980-01-01 00:00:00',5,'en','1136283633','A2','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A1','I was tired of basically every config management system. I strongly dislike Homebrew. I like MacPorts but it doesn\'t have a lot of traction. For servers I tended to prefer FreeBSD but that\'s getting harder and harder as most things assume Linux or Docker or Kubernetes these days; however I also don\'t really get on with any Linux distribution. They all have their issues.\r\nI love the _idea_ of Nix. Being declarative for everything makes total sense and is very appealing.','','Y','','','','','','Y','','','','','','Y','Y','','Y','','','','A2','A6','A1','','','','','','','','A14','A13','A9','','','','','','','','','','','','',NULL,'MacPorts on macOS. Salt or Ansible on anything else.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Mostly no need. Also the language. I feel like I\'m re-learning it every time I touch it.','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A2','Fed up with every configuration management system, and foibles with basically every Linux distro. I love the idea of having a fully declarative system.','','','Y','','','','','Declarative system','','','Make home manager native?','Maybe Arch or Debian.','Y','','','','','','','','','','','','','Nix-the-language needs a LOT of improvement. It\'s too hard to learn and the official guides don\'t help at all. Some simplification would be great, otherwise I find myself with a NixOS system that, after maybe a few months of not having to touch, I have to try and re-learn the language and syntax all over again.'),(2113,'1980-01-01 00:00:00',5,'en','975677451','A5','A4','male','','','','','','','','','','Y','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to manage my dotfiles across multiple hosts and platforms in a reproducible way. I was using GNU Stow but found it limiting. I knew of a few \"dotfiles management frameworks\" or techniques, but all of them had some frustrating drawbacks. I came across home-manager and it looked great, but I didn\'t understand Nix so I bookmarked home-manager for later. Around May 2020 I started using Doom Emacs. I came across the dotfiles of that project\'s maintainer, Henrik Lissner, which presented a clear and simple demonstration of using Nix and NixOS to manage systems and dotfiles. The readme also linked to some other reference points, and those became my primary jumping off point...','Y','Y','','Y','','','Y','','Y','','','','','Y','Y','Y','Y','','Y','','A2','A6','A7','','','','','','','','A4','A5','A6','','','','','','','','','','','','',NULL,'Since I came from macOS, I used Homebrew before using Nix. I started a media server in mid-2020 before I started using Nix for everything. Since my dotfiles used Homebrew on macOS, and Homebrew is also available as Linuxbrew, I was using that to keep things in sync. I don\'t know if I would still use it, but it\'s the only other cross-platform package manager that I know of.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A10','','','','','','','','','','','','','','','','','','','','A10','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Many/most people using home-manager for their publicly-available dotfiles also published their NixOS configurations. It was a logical extension. I\'ve also found that NixOS\' available options and others\' configurations gave a better sense of what is *possible* with Linux. Prior to using NixOS, I never used Linux regularly for personal daily-use computing (i.e. not servers, minimal customisation). It seems to me like the declarative nature of NixOS ushers users into sharing more of their system configurations in an organised way than any other Linux distro. So it has provided much opportunity for learning by referencing what others have done.','Y','','','','','','','Declarative configuration','Affordance of possible configuration options via module source/docs','Introspectability: in contrast to other distros, I can see the guts of _everything_ and feel confident that I\'m not missing something important in some weird off-the-beaten-track config file or state somewhere','- Type system\r\n- Better official or semi-official living demonstrations of \"best practices\", reference architectures/projects, real-world non-contrived examples\r\n- Some way to visualise configuration changes / relationships between module options','Probably a combination of Ubuntu for servers and Arch Linux for personal machines','Y','','','','Y','','','Y','','','','- https://github.com/divnix/std\r\n- https://github.com/hercules-ci/flake-parts\r\n- https://github.com/numtide/devshell\r\n- https://github.com/numtide/srvos\r\n- https://github.com/nix-community/nix-direnv\r\n- https://github.com/nix-community/home-manager\r\n- https://github.com/nix-community/haumea\r\n- https://github.com/Mic92/sops-nix\r\n- https://github.com/nix-community/nix-init\r\n- https://github.com/oxalica/nil\r\n- https://github.com/astro/deadnix\r\n- https://github.com/nix-community/emacs-overlay\r\n- https://git.sr.ht/~rycee/mozilla-addons-to-nix/\r\n- https://github.com/nix-community/nixago\r\n- https://github.com/numtide/flake-utils\r\n- https://github.com/kamadorueda/alejandra\r\n- Cachix\r\n- https://github.com/maralorn/nix-output-monitor\r\n- https://github.com/nerdypepper/statix','- https://github.com/divnix/digga\r\n- https://github.com/ryantm/agenix\r\n- https://github.com/serokell/deploy-rs\r\n- https://github.com/danth/stylix\r\n- https://github.com/Misterio77/nix-colors',''),(2114,NULL,1,'en','737248954','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2115,'1980-01-01 00:00:00',5,'en','875538087','A1','A4','male','','','','','','','','','','Y','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','','','','A3','I like FP, was recommended it, & I needed my OS + builds to break less','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','Y','','A1','A7','A4','','','','','','','','A8','A6','A1','','','','','','','','','','','','',NULL,'Guix','A1','','','','Y','Y','','','','','','','','','','','','','','','','','builds.sr.ht','A1','A25','A14','A13','A17','A15','A3','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using Nix via home-manager to prepare for my new laptop to come in where I was to install NixOS','Y','Y','Y','','','','','Declare my system','Wide range of packages','Often easy to override or patch broken packages (though sometimes more difficult)','I would remove Python. Every broken package seem to always be Python so lets rewrite and move on.','Guix','Y','','','','','','','','','','Xmonad (sway if Wayland would have color management)','home-manager','devenv',''),(2116,'1980-01-01 00:00:00',5,'en','1633429117','A5','A3','-oth-','','','','','','','Y','Y','','','Y','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','I heard that NixOS offered a framework for programatically-configuring linux machines. I had several linux virtual machines that I wanted to be able to configure remotely and store the configuration in version control. NixOS worked reasonably well for this so eventually I also started using Nix to build software and also home-manager for dotfiles configuration.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A7','A2','A1','','','','','','','','A14','A6','A4','','','','','','','','','','','','',NULL,'For me, Nix primarily replaces 1) infrastructure as code tools like Ansible, and 2) dotfile manager tools like chezmoi','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A1','A13','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','Not a primary developer of any software meant for widespread open-source release at the moment. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','Y','','','','','Programatic configuration of virtual machines','','','','Ansible','Y','','','','Y','','','','','','','home-manager','',''),(2117,'1980-01-01 00:00:00',5,'en','1066983612','A5','A2','male','','Y','','','','Y','Y','','','','','','','','','Y','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','','A1','A2','A5','','','','','','','','A14','A15','A8','','','','','','','','','','','','',NULL,'alpine linux','A1','','','','Y','','','','','','','','','','','','','','','','','','','A3','A9','A15','A25','A22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','','','support for other init systems\r\n'),(2118,'1980-01-01 00:00:00',5,'en','62347745','A5','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I semi-frequently had to bootstrap new machines and new distros on my workstations and laptops. I missed configs here and there and had to spend days fixing up the environment every time. Nix made it quick and painless.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A1','A4','','','','','','','','A4','A3','A2','','','','','','','','','','','','',NULL,'I don\'t know; I\'d probably have a terrible time with bash scripts and a wide collection of tools to replace the Nix feature set.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','Y','','A9','A1','A2','A15','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Uncertainty about the process and a desire to avoid inconveniences. I should probably find a comprehensive guide and get over myself.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','After I became comfortable enough with Nix and home-manager, I wanted to extend the benefit of Nix to my entire computer. So I did.','Y','','Y','Y','','','','Deterministic build/rebuild','Service configurations','','Add secrets management','Debian with home-manager','Y','','','','','','','','','','i3','','','Thanks!'),(2119,NULL,1,'en','205580830','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2120,'1980-01-01 00:00:00',5,'en','131104943','A6','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','N','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I probably just need to read some resources and try it out in a VM (I\'d use a spare device if I had one)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2121,NULL,NULL,'en','1818095429',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2122,NULL,1,'en','1369293344','A2','A5','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2123,NULL,NULL,'en','1241920911',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2124,'1980-01-01 00:00:00',5,'en','1354993438','A6','A4','male','','','','','','','Y','','','','','','','','','Y','','Y','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','','','Y','','','','','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A8','A6','A2','','','','','','','','','','','','',NULL,'Guix','A2','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A13','A15','','','','','','','','','','','','','','','','','','','','A1','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Describe systems with a programming language expression','Y','','','','','','','','','','Lisp','Guixsd','Y','','','','','','','','','','Stumpwm','Emacs','Common lisp',''),(2125,'1980-01-01 00:00:00',5,'en','1534112753','A5','A3','male','','','','','','','','','','Y','Y','Y','','','','','','Y','','','','','','','','Y','Y','Y','Y','','Android, NixOnDroid','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Config in a single place','Y','Y','','','','Android via NixOnDroid','Y','','','','Y','','','Y','Y','','Y','','','','A2','A1','A9','','','','','','','','A4','A5','A13','','','','','','','','','','','','',NULL,'Arch / OpenSUSE','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A2','A22','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','','','','Use as-is','A1','',' Complexity of the language, build tools (nix), aim for defining whole in nix lang instead of adjusting existing configurations or building up on top them e.g.:\r\n I want my docker images to be built via docker build (Dockerfile), not a custom DSL even if it is better at some point.\r\n To my knowledge nix doesn\'t provide such opportunity. Instead it complicates images build to the highest. There are a lot of people who can understand Dockerfile syntax and not so much who understands nix.\r\n The urge to replace de-facto standard tools hurts, I won\'t be doing it unless it\'s far more convenient and it is just for me, not for everybody I\'m working with.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I got tired of pacman at some point. I used Void, then Solus, and thought Nix would be the best package manager for Linux.\r\n\r\nTo me it is, but at the huge cost: language is not intuitive and I constantly have issues with my dev environments due to bad docs and lack of knowledge from my end.\r\n\r\n','Y','','','','','','','Stable','Easy to configure','Portability to some extent','Redo nix to be able to use native tools: cargo, npm, pip. It\'d make it wore in some aspects, but will greatly improve packaging DX to my mind. As well as reduce effort supporting nix platform. We could use nix to make specific tools to track dependencies of these tools, but altering other languages packaging is really ugly and unstable solution.\r\nI\'d make nix to rely more on tools rather then providing its own solutions: like containerd/runit for containers build or support Dockerfile syntax for nix built containers.\r\nIt all will cost a lot of features nix has, but it\'d make it better for users to my mind.\r\nI bet all these steps could help regular users. E.g. what if you don\'t need appimage-run to run appimages? That\'d be great to me.\r\nI\'d enforce FHS by default, so apps can interact as if it\'s regular Linux OS, not something special. Maybe have some configuration and scoping for user/apps with different FHS envs. We do have something similar but UX of this feature isn\'t great at this point. ','OpenSuse A/B root, idk','','','','','','','','Y','','','','NixOnDroid. Very powerful thing to me.','','Be yourself, be Nix :)'),(2126,'1980-01-01 00:00:00',5,'en','423910455','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','','Y','','','','','','Y','','','','','','','','Y','','','','','','A3','A2','A1','','','','','','','','A3','A14','A5','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','Y',NULL,'I liked Guix better','I don\'t know.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2127,NULL,1,'en','34511278','A2','A3','male','','','','','','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2128,'1980-01-01 00:00:00',5,'en','852336640','A5','A4','male','','','','','','Y','Y','','Y','','','','','','','','Y','Y','','','','Y','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I tried out nixpkgs on Debian, then got pulled into NixOS and haven\'t looked back.','Y','Y','','Y','','','Y','Y','','Y','','Y','','Y','Y','Y','Y','Y','','','A1','A7','A8','','','','','','','','A8','A10','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','Drone','A15','A1','A4','A9','A2','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Ceremony and use of what I consider legacy (non-flake) Nix structure','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','Structured configuration (no templates or envvars needed)','Atomic, rollback-capable updates','Huge repository of up-to-date packages','Make the existence of the Nix store transparent to non-Nix-enabled tools (no more wrestling with e.g. LD_LIBRARY_PATH, patchelf, etc.)','Clear Linux (which I\'ve used in the past) or CoreOS/Flatcar','Y','','','Y','','','','','Y','','sway','Fenix, cachix','Devbox',''),(2129,NULL,1,'en','1906838929','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2130,NULL,1,'en','69866791','A5','A4','male','','','','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','','Y','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2131,'1980-01-01 00:00:00',5,'en','668197621','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','Y','','','Y','Y','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A2','Don\'t want anything to do with MacOs','Y','','','','','','Y','','','','','','','','Y','','Y','','','flakes','A2','A6','A3','','','','','','','','A8','A2','A12','','','','','','','','','','','','',NULL,'FreeBSD','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A2','A3','','','','','','','','','','','','','','','','','','','A13','A2','A15','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','Y',NULL,'PC died','New PC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2132,NULL,NULL,'en','1066787680',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2133,'1980-01-01 00:00:00',5,'en','33957524','A4','A2','male','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','','Software Engineer','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducibility of setup','','','','','','','Y','','','Y','','','','','Y','','Y','','','','A1','A10','A9','','','','','','','','A4','A14','A5','','','','','','','','','','','','',NULL,'Fedora Silverblue','A4','','','','Y','','','','','','','','','','','','','','','','','','','A9','A15','A2','','','','','','','','','','','','','','','','','','','A9','A2','A15','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I don\'t know how to','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','Y','','','','','','','Better documentation','Fedora Silverblue','','','','','','','','Y','','','i3wm','','',''),(2134,'1980-01-01 00:00:00',5,'en','391261249','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','Y','','','','','','Y','','Y','','','','Y','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2135,'1980-01-01 00:00:00',5,'en','1829801856','A2','A3','male','','','','','','','Y','','','','','','','','','','Y','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I was a Void Linux on Ext4 user and wanted to write a package that would install my base system from a private repo. It really spiralled out of control, and now I use Ephemeral NixOS on ZFS.','Y','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','Y','','','','A1','A3','A2','','','','','','','','A6','A5','A14','','','','','','','','','','','','',NULL,'Guix (LOL), or I would use Docker for deployments and develop on Void Linux','A2','','','Y','Y','Y','Y','','','','','','','','','','','','','Y','','','','A2','A15','A24','A17','A1','A25','','','','','','','','','','','','','','','','A2','A8','A25','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','It has the packages I use','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Void Linux was a little too easy to fuck up and render unbootable','Y','','Y','Y','','','','declarative, version-controlled configuration (nixos-rebuild --flake)','service options','environment.systempackages ','I would add a straightforward way to run programs that expect a Linux FHS in some kind of wrapper that provides a FHS overlay on the base system in a container, but really all the reads/writes are symlinked','Guix or Void Linux','Y','','','Y','','','','Y','','Y','','flake-utils, devenv (https://devenv.sh)','NixOps','i love u! \r\n'),(2136,'1980-01-01 00:00:00',5,'en','1914883439','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A3','A2','','','','','','','','A4','A8','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A23','A2','A5','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time and laziness','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','Declarative ','Stability','Amount of packages','More security features such as secure boot','Debian, Arch or Void','Y','','','','','','','','','Y','I3','','',''),(2137,NULL,1,'en','648802538','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2138,'1980-01-01 00:00:00',5,'en','1794181711','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','A fellow student gave me a short talk about NixOS.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A10','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Same as nix','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(2139,'1980-01-01 00:00:00',5,'en','1674762463','A5','A4','male','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','When I starting using Zig lang, I saw that several prominent contributors used Zig to do builds and manage dev environments. I also found it useful, as I wanted to keep Zig pinned for a project, and there isn\'t much of a version manager.\r\n\r\nFor work, I\'ve found it useful even for Rust projects, as there\'s often a dependency here and there (like dhall) that falls outside the ecosystem. I use it mostly locally, but it\'s also worked fine in CI.','','Y','','','','','Y','','Y','','','','','','Y','','','','','','A2','A1','','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'kludge of system package manager and language package managers','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A22','A15','','','','','','','','','','','','','','','','','','','','A15','A22','A25','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Haven\'t thought about trying yet.','N','N','It would be a big jump, as I don\'t want to have a pain point that requires a difficult workaround. With ubuntu + nix, I know that most things will just work, and I can use nix where it is most useful to me.\r\n\r\n(I\'m also not somebody who enjoys fiddling with their OS)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2140,NULL,1,'en','226395458','A5','A2','male','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','Y','Y','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2141,NULL,NULL,'en','1785606880',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2142,'1980-01-01 00:00:00',5,'en','1560614307','A2','A3','male','','','','','','','','','Y','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My arch install was getting messy, I longed for something kinda declarative that would allow for something essentially like the nix store.\r\nI looked at nixos and it looked perfect, I bought a new laptop and decided that that would be the distro I use on it.\r\n\r\nAfter a while (a loooong while) of getting used to nix, I found myself finding friends who also used nix, and they new it better than me. I learned more about the repl and other things. I now have the hang of it and deploy servers with colmena, have my own custom flakes with custom package derivations....\r\n\r\nI use nix practically everywhere now.','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A6','A1','A2','','','','','','','','A6','A3','A2','','','','','','','','','','','','',NULL,'I have no idea, perhaps fedora?','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','garnix','A9','A15','A2','A1','A3','A22','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','messy arch install, I desperately longed for a declarative system, and something like the nix store. I found nixos, it rocks.','Y','','Y','Y','','','','Declarative system configuration','frequently updated packages','','I would improve the story around not being connected to the network for rebuilds, or needing a proxy. It\'s often unclear how to correctly configure nixos or perhaps just the nix daemon and/or builds to use a proxy that\'s not the system default one.','probably fedora.','Y','','','','Y','','','','Y','','sway','rust-overlay, fenix, crane','','I want to get more involved with the roadmap or plans for nixpkgs, since I do a lot of my package building out of tree, because I feel I have more control over how my packages are built.\r\n\r\nIt\'s not quite clear to me where I can look to see what the plans are for nixpkgs (I don\'t mean nix, or the daemon or cli), as I\'d like to see if there\'s areas I can contribute. I care specifically about cross-compilation, and toolchains.'),(2143,'1980-01-01 00:00:00',5,'en','1136640769','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I saw in Nix a solution to reproducibility as well as maintaining stable development/build environments for software that goes \"dormant\" for months or years.\r\n\r\nWe have been using Python with pex and Docker. We started using Go. But the fundamental problems we\'re dealing with are larger than can be solved with a new language or more containers. We really need a systemic solution that enables us to put a project down for a long time, come back, and be able to work on projects with different versions of the same languages concurrently. Only Nix can give you this, really. And the performance is much better with Nix than with the almost-there solution of containerization.','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A9','A8','A6','','','','','','','','','','','','',NULL,'We were using Homebrew on Mac and Docker. I think we would be doubling down on Docker instead if we couldn\'t have Nix.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A9','A4','A3','A5','A13','A15','','','','','','','','','','','','','','A2','A1','A5','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I have made a few contributions but there is some ambiguity about whether it is better to focus attention on flakes for Python software or the Nixpkgs repo, and since my packages are currently working as flakes, it isn\'t as necessary for me to contribute.\r\n\r\nI anticipate as adoption proceeds at work, I will probably contribute more to Nixpkgs, since the process was extremely smooth and rewarding.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I had a sense that only by adopting NixOS itself could I really \"dogfood\" Nix to the degree that I would become comfortable and self-sufficient with it.\r\n\r\nIn fact it has helped me comprehend the fullness of the Nix ecosystem, and see that while it is probably a solution for my personal machines, other elements of the ecosystem are going to provide more value to the rest of my team at work (especially Nix flakes and to a somewhat lesser extent NixPkgs).','Y','','','','','','','Versioning','Reproducibility','NixPkgs :)','Probably I would make it easier to install NixOS with Home Manager and as a flake.','I used many Linux distros before but the existence of NixPkgs means that almost all of them are functionally identical to me now. I would probably be using Ubuntu or Pop!_Os. Or possibly FreeBSD although the laptop experience is better with Linux mostly.','Y','','','','','','','Y','','','','Home Manager','flake-utils ;)\r\n\r\nI do wish that the flake templates or built-in libraries required less boilerplate for the things that flake-utils does.','I love Nix and I am advocating for its use. Thank you for all your hard work! I really appreciate it!'),(2144,'1980-01-01 00:00:00',5,'en','1329379043','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was already using NixOS','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A3','A7','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'Asible ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A1','A3','A5','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Eveything I need is already in there!','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','Reproducible configuration','Rollbacks if something break','Package availability','Make home-manager integrate with NixOS','Ansible','Y','','','','','','','','','','Hyprland','agenix for storing encrypted secrets inside git repos','',''),(2145,NULL,3,'en','687812678','A5','A3','male','','','','','','','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A1','I was looking for an alternative to ansible ','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'Guix','A4','','','Y','Y','Y','','','','','','','','','','','','','Y','Y','','','','A1','A2','A13','','','','','','','','','','','','','','','','','','','A1','A15','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Not ready to personally invest in ecosystem yet ','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(2146,'1980-01-01 00:00:00',5,'en','1846430653','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I started using it at the same time as NixOS. I was interested in the declarative system configuration.','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'Manjaro I think?','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A13','','','','','','','','','','','','','','','','','','','A13','A1','A2','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Two reasons: \r\n1) The package I want exists already\r\n2) When I try to package something for common use, I fail','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Declarative system configuration','Y','','Y','Y','','','','Declarative system configuration','Reproducible environments','all the packages!','I would standardize the DRV file format, so that it could become a target for any language environment to output derivations. I think a lot more people would adopt Nix if they could avoid Nixlang','Manjaro','Y','','','','','','','Y','','','','mach-nix, yarn2nix','NixOps, various Haskell tools',''),(2147,'1980-01-01 00:00:00',5,'en','364763095','A5','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','','','','','','','','','Y','Y','Y','Y','','','A2','A10','A1','','','','','','','','A6','A14','A11','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A13','A7','A2','A1','A3','A15','A9','A4','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','Declarative configuration','Easy rollbacks','The ability to have global overlays to patch my system','','I would probably use debian or one of it\'s derivatives. I previously used debian unstable for personal machines, and debian stable for servers.','Y','','','','','','','','','','xmonad','','',''),(2148,'1980-01-01 00:00:00',5,'en','68505891','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A10','A6','','','','','','','','A8','A10','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','Y','','','','','','','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(2149,'1980-01-01 00:00:00',5,'en','1035159439','A2','A3','male','','','Y','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','reproducibility','Y','Y','','','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','','A2','A10','A6','','','','','','','','A5','A8','A7','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A9','A15','A2','','','','','','','','','','','','','','','','','','','A15','A9','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Still learning','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','','','','','','Y','','','','','Y','','Y','','','','','',''),(2150,'1980-01-01 00:00:00',5,'en','1954996918','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted to have a reproducible desktop Linux','Y','','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A3','A6','','','','','','','','A8','A13','','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A13','A15','A1','A17','A7','A8','','','','','','','','','','','','','','','','A13','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','','','','','','','','','','','','','','','','','','Home-manager, nix-darwin, flake.parts','Devenv, devshell',''),(2151,'1980-01-01 00:00:00',5,'en','2030888964','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','','Recovering Academic','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Leaving Ubuntu','','Y','','','','','Y','','','','','','','','Y','','Y','','Y','','A1','A10','A2','','','','','','','','A5','A14','A7','','','','','','','','','','','','',NULL,'Debian','A4','','','','','','','','','','','','','','','','','','','','','','','A1','A2','A3','A4','A5','A6','A9','A11','A15','A17','A19','A21','A22','A25','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Insufficient documentation','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Leaving Ubuntu','Y','','','','','','','reusable system configuration','package configuration','nix tools','Add: reference documentation, secrets and ACL support, unifying CLI tools\r\nChange: improve security support\r\nRemove:','Debian','Y','','','','','','','Y','','Y','','https://search.nixos.org/packages\r\nhttps://search.nixos.org/options\r\nhttps://nixos.wiki/\r\nhttps://github.com/NixOS/nixpkgs\r\nhttps://lazamar.co.uk/nix-versions/\r\n','','Thank you for maintaining NixOS!'),(2152,'1980-01-01 00:00:00',5,'en','1349629647','A5','A4','male','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was previously a Gentoo user because I liked the rolling releases, but all binary based rolling releases often ended up in weird states where a specific .so files would end up conflicting with projects that weren\'t getting regular updates. It was still far from perfect, and came with a significant amount of sysadmin work.\r\n\r\nIn addition, we were starting to use docker a lot more at work, and I was frustrated with sketchy reproducibility due to \"apt-get update\" being the first line in nearly every Dockerfile.\r\n\r\nNixOS solves both the dynamic linking issue *and* significantly reduces sysadmin work by having a declarative configuration. It also has more options for reproducible build and production environments.\r\n\r\nI started using Nix to \"dip my toes\" into NixOS, with the intent of eventually switching.','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','','A1','A2','A3','','','','','','','','A3','A15','A8','','','','','','','','','','','','',NULL,'Does Guix count as an option? If not, then probably still would be on Gentoo or similar\r\n\r\nAlso, docker for development environments.','A4','','','','Y','','','','','','','','','','','','','','Y','','','','','A3','A2','A4','A25','A1','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was using Gentoo because source-based distros were the best way to avoid a lot of the dynamic-linking issues that plague any linux that isn\'t using only lockstep releases. I was not happy with the significant amount of systems administration required (and lots of choice paralysis, because there were very few defaults).\r\n\r\nNixOS offered both a better solution to dynamic-linking issues and significantly less systems administration (with bonus of declarative configuration!). From the moment I heard about it, I knew that if it was even remotely usable as a daily-driver I was going to switch.','Y','','Y','Y','','','','Consistent dynamic linking (no upgrading one thing breaking another)','Declarative configuration','Broad package support','Python packaging is very mediocre. There are a dozen tools that claim to take a requirements.txt file and spit out a working nix package, none of them have worked for me when I tried them. I\'ve fallen back on manually resolving the recursive dependencies by pulling in expressions from past versions of nixpkgs. I know this is a hard problem to solve, but it feels like everybody has made their own 20% solution that sucks.','Almost certainly Guix.\r\n\r\nIf we are eliminating anything from the NixOS \"family tree\" then probably still be using a source-based distribution like Gentoo.','Y','Y','','','','','','','Y','','','','I tried several python nix packaging tools. I was dissatisfied with all of them.','My \"other\" for the question about I\'d like added to Nix reflects a desire for a proper MAC(Mandatory Access Control) solution. Most of the existing ones rely on extended-attributes which make them unsuitable for the nix store. Having a MAC database that isn\'t inextricably tied to the filesystem seems to be a requirement for such a thing.'),(2153,'1980-01-01 00:00:00',5,'en','487869503','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I was drawn to NixOs for declarative system configuration, thus came in contact with Nix and after (ongoing) initial struggles fell in love having a projekt, a flake.nix and boom, it builds and i have my development env everywhere where nix is installed.','','Y','','','Y','','Y','','Y','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A5','A8','A2','','','','','','','','','','','','',NULL,'Handkerchief to wipe away the tears.\r\n','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A14','A2','A21','A10','A3','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','Y','','A2','','Time.','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A2','Reproducible system config.\r\nI have all my data stored in my Nextcloud but still wouldn\'t wanna nuke my laptop since I\'d lose my configs. Tried managing dotfiles with git, but that doesn\'t cover the which spftware is installed.\r\n\r\nNixOs solves this, even though its sometimes tedious.\r\n\r\nThe advantage of reproducible buils and hermetic shell envs is also really nice, so those feature drew me to Nix.','Y','','','','','','','Declarative package management','Declarative system config','','Make it easier to use / flatten the learning curve.','Again: handkerchiefs to wipe away the tears.\r\nProbably arch, dotfiles in a git repo and living with the fact that my system is fragile someday I\'ll have to rebuild it.','Y','','','','','','','Y','','','','Home manager','','You\'re doing great. I\'m still in the process of contributing a package to nixpkgs and the community is great.\r\n\r\nI think that it simply takes time to develop patterns of how to do everything, and then everything will be great.\r\n\r\nAnd pls more problem-focused guides, not just wiki/manual.\r\nLike the great blog posts of Xe Iaso.\r\nGuides that answer things like \"how to build a $LANG project with nix\" or \"how to setup up your daily driver with NixOs and home manager\" (E.g. I was/am confused which parts should be handled by home manager and which by NixOs. Do I want to Integrate them or not? ...)'),(2154,'1980-01-01 00:00:00',5,'en','49622847','A2','A3','male','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A14','A8','A6','','','','','','','','','','','','',NULL,'Containers','A1','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of free time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','Y','','','','Being able to store system configuration in a VCS','Sharing parts of the configuration between machines','Rollbacks','','ansible, hand-written deployment scripts','Y','','','Y','','','','','','','xmonad','home-manager, sops-nix, poetry2nix','',''),(2155,'1980-01-01 00:00:00',5,'en','791456292','A5','A2','fem','','','','','','','Y','Y','','','','','','','','','','Y','','','','','Y','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','I learned primarily how to write programs with newer languages that have some guarantees about build determinism, and I needed something that would let me accomplish that with C programs easily. I was already familiar with Nix, to an extent, so I started using it regularly.','','','','Y','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A8','A10','A2','','','','','','','','','','','','',NULL,'Language-specific package managers or docker','A1','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A9','A3','A13','A15','A22','','','','','','','','','','','','','','','','','A9','A13','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I had tried it a few times before out of curiosity, when I was looking for distributions with novel approaches, and I gave up because I couldn\'t figure out the language/nixos modules. I finally started using it regularly when I realized how many random files scattered all across the filesystem I had to edit to setup and maintain my systems. I switched and never looked back.','Y','','Y','Y','','','','Declarative configuration','Determinism','Modules','LTS releases','I\'d either move to the country and become a goat farmer or use ansible or something, probably the former','Y','','','','','','','','','','','home-manager','',''),(2156,'1980-01-01 00:00:00',5,'en','504323090','A2','A4','','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','Not great for Python development','I was hired by a company that in the Python ecosystem, there is too much friction using Python with Nix, especially in machine learning.','','','','','','','Probably when I move to a position that allows it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Difficult to do Python package development (for non-NixOS users) in NixOS.','When I have another position that doesn\'t require deep integration in the Python package ecosystem.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Keep up the good work!'),(2157,'1980-01-01 00:00:00',5,'en','1727751694','A5','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Python radicalized me into Nix for reproducible builds and development environments...','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A9','A8','','','','','','','','A5','A2','A8','','','','','','','','','','','','',NULL,'I would continue suffering trying to integrate everything imperatively/impurely like I was before.','A2','','','','Y','Y','','','','','','','','','','','','Y','Y','Y','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I switched to NixOS because I liked the idea of applying Nix\'s guarantees to the whole system.','Y','Y','Y','','','','','Declarative system configuration','Extensive support for various programs through NixOS modules','Easy updates and rollbacks','I would add more contributors','I\'d still be using Arch Linux','Y','','','','','Y','','','','','Hyprland','Crane, Fenix, Poetry2Nix, flake-utils','Naersk (poor support for git dependencies), Cargo2Nix (not a fan of checking in a massive Cargo.nix)','Nix and NixOS are awesome and I hope to see them gain popularity and improvements!'),(2158,'1980-01-01 00:00:00',5,'en','2096564751','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','','Y','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','','','Y','','A7','A2','A8','','','','','','','','A4','A6','','','','','','','','','','','','','',NULL,'','A7','','','','Y','','','','','','','','','','','Y','','','','Y','','','','A15','A17','','','','','','','','','','','','','','','','','','','','A17','A7','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','','','','','Y','','','','','','sway','','',''),(2159,NULL,1,'en','1608234421','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2160,'1980-01-01 00:00:00',5,'en','890372978','A5','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I started using Arch, then distrohopped for a while, then got tired of stuff breaking so went to NixOS.','','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A3','A2','A1','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'Probably a lot of per-language tooling.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','Nothing really, other than maybe a lack of documentation? I have not really felt the need to because of how extensive nixpkgs already is.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I got tired of other Linux systems breaking occasionally and thought it looked interesting.','Y','','Y','','','','','Having a configuration file in one spot that can be shared across computers easily.','Ease of setting up new services.','Reproducibility (less so in the strict sense of exactly the same outputs, more so in the sense of the same end-user experience).','I would add better documentation on how to use flakes.','Probably arch or something, combined with ad-hoc service setup. I used GNU stow beforehand to manage my config files, so probably that as well.','Y','','','','','','','','','','i3wm','Home manager.','','Thanks so much for all your hard work!'),(2161,NULL,NULL,'en','772134142',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2162,'1980-01-01 00:00:00',5,'en','1583499438','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Engineering manager ','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','Got tired of my server OS breaking on updates. ','Y','','','','','','Y','Y','','','','','','','','','Y','','','','A2','A1','A7','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'Ubuntu. ','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','No pressing issue I want to see fixed. ','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(2163,'1980-01-01 00:00:00',5,'en','64519951','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Got a brand new laptop at work and as NixOS was on my radar for a while I installed it.','Y','','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A2','A8','A6','','','','','','','','','','','','',NULL,'I guess Guix is not a good answer so I\'ll answer Debian since I\'m still using it a lot.','A4','','','','Y','Y','','','','','','','Y','','','','','Y','','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same as Nix, got a new laptop and installed it.','Y','','Y','Y','','','','Services','Declarative configuration','Mixing channels','','GuixSD / Debian','','','','Y','','','','','','','bspwm','','','Thanks for everything!'),(2164,'1980-01-01 00:00:00',5,'en','1621837460','A2','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'agenix\r\nflake utils','',''),(2165,NULL,NULL,'en','424866433',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2166,'1980-01-01 00:00:00',5,'en','1768402165','A2','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','','Y','','','','','','Y','Y','Y','','','','A1','A2','A10','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','','','','builds.sr.ht','A9','A1','A10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(2167,'1980-01-01 00:00:00',5,'en','272013727','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Curiosity.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A13','A6','','','','','','','','','','','','',NULL,'APT or GUIX','A2','','','','Y','','','','','','','','','','','','','','','','','','','A5','A13','A3','A15','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Not enough skills','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Curiosity.','Y','','Y','','','','','Declarative config','Rollbacks (generations)','Number of available apps','I would add ability to configure all apps using declarative configs.','GUIX or Debian','Y','','','','','','','','','','Sway','','',''),(2168,NULL,NULL,'en','580851954',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2169,'1980-01-01 00:00:00',5,'en','1298138621','A5','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Home manager on osx','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A9','A7','','','','','','','','A12','A6','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','Y','Y','','','argocd','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','',''),(2170,NULL,NULL,'en','1582982053',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2171,'1980-01-01 00:00:00',5,'en','1351903434','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','','IT Pro','Y','','','','','iOS, Android','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','Lacked on easy quick start','','','','','','','','','','','','','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Lacked an easy quick start','More GUI-based configurations',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2172,NULL,NULL,'en','1086557783',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2173,NULL,NULL,'en','1108007956',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2174,'1980-01-01 00:00:00',5,'en','1978988197','A5','A4','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Nix-shell is invaluable for working with our dev stack especially switching between different iterations of the stack (jdk 8 vs jdk 17 etc) ','','Y','','','','','Y','','','','','','','','Y','','','','','','A2','A3','A1','','','','','','','','A3','A14','A13','','','','','','','','','','','','',NULL,'','A1','','','','','','','','','','','','','','','','','','','','','','Azure','A20','A1','A11','A2','A15','A26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Lack of knowledge :-)','N','N','Time to investigate it for personal use (I\'m generally too busy :-/)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'niv','I haven\'t managed to get the hang of flakes yet... ',''),(2175,NULL,NULL,'en','522844279',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2176,NULL,NULL,'en','1350314023',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2177,NULL,2,'en','1340863070','A2','A4','male','','','Y','','','','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A3','','','','','','','','','Y','','','','','','','','','Y','','','','A2','A7','A10','','','','','','','','A4','A8','A5','','','','','','','','','','','','',NULL,'debian + containers + k3s','A4','','','','','','','','','','','','','','','','','','','','','','','A9','A2','A15','','','','','','','','','','','','','','','','','','','A9','A19','A2','','','','','','','','','','','','','','','','','','','','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2178,'1980-01-01 00:00:00',5,'en','1228077363','A2','A7','male','','','','','','','','','','','','','','','','','','Y','','','','','','','retired','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','','','','','','','','Y','','','','','','','Y','','','','','','','A1','A7','','','','','','','','','','','','','','','','','','','','','','','',NULL,'wouldn\'t be using NIXOS at all','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','not sufficiently knowledgeable','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I was looking for a similar immutable system (previously using Fedora Kinoite spin, a rpm-ostree based system with KDE). I was surprised ( amazed really) that the NIXOS ISO loaded and dropped me into the installation. I have a dual monitor system on my desktop which is only rarely detected by other Linux distros. NIXOS detected this before installation. I was impressed. Aside from learning an entirely new way to set up a Linux system things have gone very smoothly. The manual and the on-line posts have answered all of my questions. I now have a working system with all of the software that I use on a more or less regular basis.\r\n ','Y','','','','','','','immutable system','easy rollback to a previous system','all of my associated hardware just works','Several items seem to require sudo use ( edit configuration.nix) which I am working my way around at present. Have not managed yet to run KDE with Wayland.','Fedora Kinoite ','Y','','','','','','','','Y','','','none','none','Amazed how accomplished this distro is. Many other distros have been tried and rejected because of relatively minor problems that proved difficult to fix. I am not a developer by any stretch of the imagination but NIXOS has impressed me a great deal.'),(2179,NULL,NULL,'en','1859149313',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2180,'1980-01-01 00:00:00',5,'en','1492682970','A5','A4','male','','','','','','Y','Y','Y','','','Y','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was sick of configuration management resulting in unmanageable servers with diverging configuration over time. NixOS gave me declarative tooling for server configuration that produces configurations that reliably match my intent, and continue to do so over time.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A6','A11','A5','','','','','','','','','','','','',NULL,'Debian or Ubuntu for the breadth of packages and developer awareness. One of puppet/chef/ansible/saltstack for config management.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A2','','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same story as starting with Nix. I was actually interested in NixOS first as a better form of declarative config management than the incumbent puppet/chef/ansible/etc. . Nix the package ecosystem and language came along for the ride. Frankly, nix-the-language was more of an obstacle that I suffered through because NixOS was so good, but I would not have lamented its absence.','Y','','Y','','','','','Declarative configuration','Trivial rollbacks','Breadth of supported services/system facilities','I would remove Nix the language. My ideal system would be a melding of Guix and NixOS: guix\'s lisp DSL, guix\'s grafts, guix\'s operator niceties like automagic cache fill from LAN peers, with NixOS\'s breadth of packages and modules and mindshare.\r\n\r\nI would also focus down on making NixOS more operable: have first-party tooling for managing fleets of machines (to stop the insane proliferation of nixops-type tools), secrets management, and better abilities to introspect current system configuration vs. desired config (i.e. first class \"OS diff\" that\'s better than what 3p tools can currently extract from nix core).','On servers, Debian or Ubuntu because of their mindshare and developer support, probably combined with puppet/chef/ansible/something. On desktop, either Debian/Ubuntu, or maybe Arch, which is what I used prior to NixOS for fresh software, breadth of software, and flexibility.','','','','','','Y','','','','','Sway','nix-diff to produce barely readable diffs between running system config and proposed new config.\r\nagenix to handle secrets management as a layer on top of nixos.','Various nixops tools, none of which were significantly better enough or well enough maintained that they were worth ditching a janky hand-rolled shell script.',''),(2181,'1980-01-01 00:00:00',5,'en','137775533','A5','A2','male','','','Y','','','','Y','Y','Y','Y','','','','','Y','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A12','A2','A11','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','Y','','','','','Y','Y','','Y','','','','','','','','A15','A2','A13','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(2182,NULL,NULL,'en','2068633616',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2183,'1980-01-01 00:00:00',5,'en','2037398839','A2','A5','male','','','','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','','','','','','Y','','','','','','','','','Y','','','','A1','A2','A3','','','','','','','','A6','A14','A5','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(2184,'1980-01-01 00:00:00',5,'en','702124266','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','','','Y','','Y','Y','','','','','','','','Y','Y','','','','A1','A2','A7','','','','','','','','A6','A9','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','A9','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','',''),(2185,NULL,1,'en','1032489113','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2188,'1980-01-01 00:00:00',5,'en','862543405','A2','A2','male','','','','','','','','Y','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','To manage my tools with home manager and be able to reproduce my setup on any machine','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A2','A6','','','','','','','','A8','A4','A14','','','','','','','','','','','','',NULL,'Brew or guix probably, i also used zinit (zsh plugin manager) to download binariea and do simple builds for programs i use','A2','','','','Y','','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2187,NULL,NULL,'en','220675686',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2186,'1980-01-01 00:00:00',5,'en','2146776344','A2','A3','male','','','','','','','','Y','','','','','','','','','','','','','','','','','quant dev','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Got fed up with Debian that had many minor occasional breakages and bugs that manifested when some dependency is upgraded (to fix another bug).\r\n\r\nI wanted the tool that could pin something (e.g. a version of xfre that works for me and I\'m happy about) so that it will work the same way after any number of system upgrades.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A4','A8','A10','','','','','','','','','','','','',NULL,'Debian, Ubuntu. Maybe Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A3','A4','A15','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Review process, I have pretty vague idea about it though. Getting hold of reviewers to actually look at your PR seems to be problematic too.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','System config stored in git and can be applied without reboot','Ability to have multiple versions of packages not conflict with each other (e.g. no global libc)','Ability to experiment with system knowing I can roll back most of the time','Probably would improve nixpkgs since it\'s the repository wherebsoftware comes from in the OS.','Debian, Ubuntu. Maybe try Guix (didn\'t yet)','Y','','','','','','','','Y','','','','',''),(2189,'1980-01-01 00:00:00',5,'en','1403724925','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A2','','','','','','','','Y','Y','Y','','','','','Y','Y','','','','','','A1','A3','A6','','','','','','','','A14','A5','A13','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','Y','','','','','A5','A4','A3','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2190,'1980-01-01 00:00:00',5,'en','1364947764','A2','A3','male','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','','','','Y','','','','A1','A7','A2','','','','','','','','A6','A8','A12','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A5','A19','A2','A4','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Lack of free time and knowledge','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','Declarative configuration','Large number of packages','Reproducibility','Better FHS support','','Y','','','','','','','','Y','','','Home-manager','','Thank you to all Nix/NixOS contributors and developers. You rock!'),(2191,'1980-01-01 00:00:00',5,'en','1599139928','A5','A4','male','','','','','','','','','','','Y','','','','','','Y','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A7','','','','','','','','A8','A11','A2','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A2','A14','A25','A15','A13','A3','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','Y','Y','','','','','','','Y','Y','','','','Y','','','','','','','',''),(2192,'1980-01-01 00:00:00',5,'en','119740102','A2','A5','male','','','Y','','','','Y','Y','','Y','Y','','Y','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Haskell / FP enthusiast, heard about \"an OS designed using FP principles\", and how that helped managing dependency hell, and decided to try it out.','Y','Y','','','','','Y','','','Y','','','','Y','Y','','Y','','','','A3','A7','A10','','','','','','','','A2','A4','A13','','','','','','','','','','','','',NULL,'Debian.','A4','','','','','','','','','','','','','','','','','','','','','','','A13','A25','A1','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','Package management with Nix, of course.','Declarative system configuration.','','Have the nix language be more discoverable, as well as typed.','Debian','Y','','','','','','','','','','Xmonad','lorri, direnv.','',''),(2193,NULL,3,'en','781864144','A1','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I tried NixOS as a replacement for my own Puppet setup, and was amazed how much simpler and better it was.','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A7','A2','A3','','','','','','','','A5','A4','A12','','','','','','','','','','','','',NULL,'Puppet and Bash.','A4','','','','','Y','','','','','','','','','','','','Y','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as above.','Y','','Y','','','','','Simple configuration of the whole system','Configuration modularity (`import`)','Reproducibility','I\'d add more resources to create and run tests, so that the unstable channel could be as stable as Arch Linux.','Arch Linux.','Y','','','','','','','Y','','','',NULL,NULL,NULL),(2194,NULL,1,'en','114221126','A2','A3','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2195,NULL,1,'en','497916300','A8','A5','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2196,'1980-01-01 00:00:00',5,'en','820370590','A2','A4','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','To simplify smart home projects. ','','Y','','','Y','','','Y','','','','','','Y','','','Y','Y','','','A2','A1','A10','','','','','','','','A6','A8','A3','','','','','','','','','','','','',NULL,'Guix ','A4','','','','Y','','','','','','','','','','','','','','','','','','','A4','','','','','','','','','','','','','','','','','','','','','A4','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','Y','','','','','','','','','','','','','','','','','','','','','','',''),(2197,NULL,1,'en','1614289409','A2','A5','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2198,NULL,1,'en','254688834','A2','A6','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2199,NULL,NULL,'en','1074066319',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2200,NULL,2,'en','1260189948','A5','A3','male','','','Y','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','Y','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A2','A10','A7','','','','','','','','A5','A9','A8','','','','','','','','','','','','',NULL,'','A4','','','','','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2201,NULL,NULL,'en','1451981101',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2202,'1980-01-01 00:00:00',5,'en','1177683366','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Sick of the dealing with the problems that Nix solves','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','Y','Y','','A1','A3','A6','','','','','','','','A6','A3','A2','','','','','','','','','','','','',NULL,'I guess guix? I don\'t know it would be pretty horrible.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A19','A7','A15','A2','A5','A11','A25','','','','','','','','','','','','','','A5','A7','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted a better Arch, and I bailed after a while. Then after using nix for a while I wanted my OS to work like that.','Y','','Y','','','','','Declarative configuration for all my machines in the same repo as my home configuration','One-command upgrade of everything','Deterministic = widespread testing = doesn\'t seem to break much','','Guix? I\'d cry','Y','','','','','','','Y','','','','home-manager! Plugins for direnv','',''),(2203,'1980-01-01 00:00:00',5,'en','1932433227','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','a friend of mine organized the first NixOS meetups in Tokyo and told me about it. I was interesting by the ability to run several versions of php without containers by using nix-shell. As I was on Ubuntu, it was really a good point that nix could be setup in any GNU/Linux distribution.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','A2','A3','A8','','','','','','','','A9','A14','A15','','','','','','','','','','','','',NULL,'ability to build an android project without allowing non free software.','A4','','','','','','','','','','','','','','','','','Y','','','','','','A10','A2','A25','','','','','','','','','','','','','','','','','','','A10','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','my friend from Tokyo. the ability to use declarative configurations.','Y','','Y','','','','','rollbacks in bootloader','declarative configuration','build/install as a simple user and not as root','','Debian','Y','','','','','','','Y','','','','','','thank you for this amazing OS !'),(2204,'1980-01-01 00:00:00',5,'en','876206030','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','','Y','','','','A2','A3','A7','','','','','','','','A5','A14','A9','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','Y','','','','','','A11','A15','A2','','','','','','','','','','','','','','','','','','','A15','A11','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','','','','Y','','','','','','','Secrets support. Faster rebuilds.','','Y','','','','','','','','','','','','',''),(2205,'1980-01-01 00:00:00',5,'en','301203868','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was reading Xe\'s blog (xeiaso.net/blog), and I think xe was talking about switching from Kubernetes to Nix. I was new to software at the time, so I wanted to give everything a shot, especially the new hotness. Once I got the classic \"nix-shell -p python39\" demo, with that beautiful, beautiful encapsulated path, I was hooked. \r\n\r\nFrom there I used it for desktop stuff, development stuff, everything.','Y','Y','','Y','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A8','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Some kind of docker thing.','A1','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A9','A2','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','Y','','Y','','','','','modules ecosystem','rollback','declarative environment','Faster builds that take up less space. You said I had a magic want.','Some kind of rolling Arch distro, I bet.','','','','Y','Y','','','','','','sway','','nix-on-droid (Android). Just didn\'t see the point.','Thank you for this amazing software!!'),(2206,NULL,NULL,'en','1450835661',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2207,'1980-01-01 00:00:00',5,'en','344858272','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','','','','Y','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','To configure NixOS and maintain academic software, where reproducibility is important.','','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A3','A10','','','','','','','','A14','A8','A4','','','','','','','','','','','','',NULL,'Guix, but if nix didn\'t exist Guix wouldn\'t exist, so probably Makefiles.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A5','A2','A13','A15','A3','','','','','','','','','','','','','','','','','A5','A13','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','If I contribute a package, I\'d be responsible for maintaining it, for which I\'m not sure I\'d have time.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I was using arch but was afraid of updating so the rollback feature was one of the features that made me switch. Additionally I like the whole declarative configuration story.','Y','','Y','','','','','Declarative Configurations','Reproducibility','Rollbacks','','Guix, but with no NixOS, there would be no Guix, so likely arch linux + some configuration tool.','Y','','','','','','','','','','no environment/xmonad','home-manager, nix-tree','',''),(2208,'1980-01-01 00:00:00',5,'en','927732199','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','Y','','','','A7','Coworker recommends it. Haven’t really dabbled much further into it other than running “nix develop …”','','Y','','','','','Y','','Y','','','','','','Y','','','','','','A6','A2','A1','','','','','','','','A10','A5','A8','','','','','','','','','','','','',NULL,'cmake FetchContent, vcpkg, conan, …','A1','','','','Y','Y','','','','','','','','','','','','','','','','','Drone','A5','A4','A1','','','','','','','','','','','','','','','','','','','A4','A3','A5','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Time','N','N','Turn it into the premium C++ package manager',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None, too little time','None, too little time',''),(2209,'1980-01-01 00:00:00',5,'en','1553630866','A5','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted a faster, better package manager for MacOS than homebrew. Like what I\'ve heard about Nix at a high level, but the sharp edges put me off until \'fleek\' then \'DevBox\' came along.','Y','','','','','','Y','','','','','','','Y','','','','','','','A1','A10','A3','','','','','','','','A9','A6','A3','','','','','','','','','','','','',NULL,'homebrew','A7','','','','Y','','','','','','','','','','','','','','','','','','','A13','A2','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Seems too hard.','N','N','If it were easier to install and get started with than Manjaro, I\'d try it. I don\'t like a steep learning curve to get started using an OS--I want to get value out of it quickly, then I get sucked into the ecosystem as a encounter things that are missing.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DevBox','fleek, homemanager, flakes','You could 10x or 100x the popularity of Nix, if you care to, by focusing on usability for non-engineers.'),(2210,'1980-01-01 00:00:00',5,'en','1596145280','A2','A4','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Too lazy to keep track of different config files all over the place.','Y','Y','','','','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','','','','A2','A7','A6','','','','','','','','A6','A5','A4','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','TeamCity ','A6','','','','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I got tired of maintaining config files all over the place. ','Y','Y','Y','Y','Y','','','Declarative system','Atomic installs with rollback','Easily patchable','','','Y','','','','','Y','','','Y','','Plasma Mobile','','',''),(2211,NULL,NULL,'en','1829339592',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2212,'1980-01-01 00:00:00',5,'en','136579812','A5','A3','male','','','','','','','','','','','Y','','','Y','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A3','A7','A10','','','','','','','','A1','A12','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A2','A9','A1','A17','A10','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','Y','','Easily share X with flakes','get started easier with nix develop','Highly reliable','','','Y','','','','','','','','','','sway','','',''),(2213,NULL,1,'en','1859888778','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2214,NULL,NULL,'en','1693297706',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2215,'1980-01-01 00:00:00',5,'en','1655780699','A2','A3','male','','','','','','','','','','Y','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Novel approach, at least for me. Seemed interesting. Makes it unique and useful for my style of operating system management. Development environments are easily created and it cut\'s down a lot of tools I would be using otherwise. Tried it out for testing purposes. It was so easy to manage and setup that I just didn\'t need to go back to the old system. Takes time to learn things and find right resources though...','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A10','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Arch and AUR','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A7','A1','','','','','','','','','','','','','','','','','','','','A7','A24','A15','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Language mostly','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Declarative setup and easy ways to manage the system.','Y','','','','','','','configuration.nix','flakes','nix-shell','Easy way to reference any version of a package through out it\'s history when desired. More customization for packages and better support for language specific packages.','Arch, AUR','Y','','','','','','','','Y','','','','',''),(2216,'1980-01-01 00:00:00',5,'en','636655933','A5','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','I had been loosely aware of nix as a project for several years, but each time I looked at it the documentation left something to be desired. A couple of trusted coworkers endorsed it as \"getting quite usable,\" so I dove back in and would consider myself a user and evangelist now.','Y','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A7','','','','','','','','A4','A14','A5','','','','','','','','','','','','',NULL,'shell scripts, git, homebrew/yum, asdf and a whole lot of love.','A6','','','','Y','Y','','','','','','','','','','','','','','','Y','','','A2','A25','A1','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Nothing, have not felt a need to as yet - my needs have already been satisfied with the existing work in nixpkgs.','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','Fedora released a new version, I was bored, declarative and reproducible whole-OS configuration is extremely appealing.','Y','','','','','','','Entirely declarative/reproducible: no more \"what was that package I installed to get this?\"','nixos-rebuild build-vm so I can test out changes to my config without breaking my stuff','large amount of pre-packaged convenience: there was already a configuration for my laptop that was as simple as adding a module to my configuration\'s flake. Magic!','Better documentation around getting started - where to put your nix config, how to switch from /etc/nixos to your own configuration\r\n\r\n\r\nMore opinionated guides on how to use/structure a nixos configuration - I want to know the best practices without having to read a ton of other peoples\' github repos','Fedora.','Y','','','','','','','Y','','','','home-manager got me into nix','','My experience with nix has been bipolar: I am either totally elated with the ease of installing packages and building a declarative configuration for my machine/my project OR I am completely confounded by the error messages and stack traces that I see.\r\n\r\nI am a seasoned software developer, and I would love to roll nix out to a broader audience at work to give our local developer environments reproducibility superpowers. However, each time I encounter an infinite recursion error message with a totally inscrutable stack trace, I have to step back because I don\'t feel comfortable forcing more junior developers to learn another (frankly rather alien) system.\r\n\r\nI think if we want to see nix gain broader adoption, some serious work needs to be put into the interpreter\'s error messages and documentation. We need to support the use case of someone who is not totally invested in nix making drive-by changes to nix code without a lot of external reading or worse having to read potentially outdated Discourse/Stack Overflow threads.\r\n\r\nDesigning the UX of nix around a developer who hasn\'t read the nixos.org documentation and needs to add a package to a project at work would enormously increase nix\'s reach: the system has already solved many hard problems around software reproducibility and packaging, user experience refinement is comparatively easy from that perspective.\r\n\r\nFlakes make this a lot better, but I think there is still much to do around documentation (e.g. \"so you\'ve been handed a shell.nix file, here is how to read it\" on nixos.org) and intelligible, actionable errors and stack traces from the interpreter (e.g. \"you added this line to flake.nix and it is causing infinite recursion. Did you mean ...?\") would create a software packaging juggernaut the likes of which we have never seen.\r\n\r\nThat said, I have personally witnessed the documentation get MUCH MUCH better in the past year or so, and the determinate systems installer makes getting going a breeze. I am optimistic about the future.'),(2217,'1980-01-01 00:00:00',5,'en','74210107','A5','A4','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','Developer, smart contracts','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Tired of losing and breaking my /etc changes.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A1','A8','A6','','','','','','','','','','','','',NULL,'Guix, I guess. :( Hard to go back to the old paradigm.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A2','A1','A25','A15','','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Got tired of losing and breaking my /etc changes. ','Y','','','','','','','Declarative configuration with comments that is easy to maintain.','Atomic switches with easy rollbacks, for fearless upgrades.','Very active community with well-maintained package ecosystem.','Make nix (the language) less scary to newcomers. It took me years to become proficient, and I\'m happy with it now, but the functional nature of it is hard for most people I run into. ','Guix, I guess. :(','Y','','','','','','','','','','i3','','','Nix and NixOS has been lifechanging to me, I can never go back to a traditional Linux distro. Thank you for existing.'),(2218,'1980-01-01 00:00:00',5,'en','193985974','A1','A4','fem','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A8','A9','A11','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','github','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','','Y','','','','declarative configfuration','rollback','','','','Y','','','','','','','','','','herbstluftwm','','',''),(2219,'1980-01-01 00:00:00',5,'en','1077047810','A5','A2','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A friend told me about how they use NixOS and I decided to try it for declarative, atomic system configuration.','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A7','A2','A3','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'I used to use Ansible, Arch, and Ubuntu','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A24','A3','A4','A2','A9','A5','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I don\'t have anything currently worth contributing and am also unfamiliar with the contribution process.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A friend told me about how they use NixOS and I decided to try it for declarative, atomic system configuration.','Y','','Y','','','','','Declarative configuration','Atomic deploy / rollback','Package availability','I would remove channels and replace them with flakes','I used to use Ansible, Arch, and Ubuntu','Y','','','','','','','','','Y','','home-manager, simple-nixos-mailserver','nix-doom-emacs, nix-xilinx',''),(2220,NULL,NULL,'en','1054890071',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2221,'1980-01-01 00:00:00',5,'en','1048957094','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A7','A3','A1','','','','','','','','A4','A6','A5','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A25','','','','','','','','','','','','','','','','','','','','A9','A23','A24','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','Flake-utils-plus','',''),(2222,NULL,NULL,'en','2118774735',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2223,'1980-01-01 00:00:00',5,'en','506378833','A5','A3','-oth-','Choose not to specify','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Y','','','A2','Interest in functional programming and devops - nix was a nice intersection ','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A3','A2','A7','','','','','','','','A8','A4','A6','','','','','','','','','','','','',NULL,'Probably something like docker but maybe silverblue','A2','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A15','A1','A9','A2','','','','','','','','','','','','','','','','','','A1','A15','A9','','','','','','','','','','','','','','','','','','','','Y','Y','','A2','','Commitment to becoming a maintainer vs simply packaging any one of dependencies I need for my projects. Sometimes it is hard to get stuff working in pure nix but it works fine with the right shell environment ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Read a tweet by Mitchell H. and copied his setup installing NixOS in a VM. Eventually moved to it as my sole distro. ','Y','Y','Y','Y','','','','Generations on boot is amazing','Reproducible builds','Hardware support','Package pinning, or somehow making it so I don’t have to think about patchelf','Fedora','Y','','','','','','Cachix deploy','','','','i3+none','Home-manager \r\nnix-ld\r\nSops-nix\r\nNixos-hardware ','Flake-Utils\r\nCachix-deploy','Thanks for all y’all do! '),(2224,'1980-01-01 00:00:00',5,'en','1897133975','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I don’t remember how I heard about Nix. But I know I didn’t like how every “dotfiles” repository had a custom shell script to update the configuration. Ansible sucks. When I heard about declarative OS, I was all in. ','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','Y','Y','','A2','A3','A8','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'I would cry. A lot. A then went back to a mix of Python virtual envs, containers, Ansible.','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A15','A9','','','','','','','','','','','','','','','','','','','A2','A15','A9','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I maintain a single simple package. I wish I could contribute more. Lack of understanding of nix stops me. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','Y','','','','Declarative configuration','Easy rollbacks','Reproducibility ','Better docs and learning materials. ','Debian or Arch','Y','','','','','','','','','','i3','','','I love you folks!'),(2225,'1980-01-01 00:00:00',5,'en','1520276139','A1','A3','male','','','','','','','','','','','Y','','','','','Y','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A14','A13','A5','','','','','','','','','','','','',NULL,'arch','A4','','','','','Y','','','','','','','Y','','','','','','','','','','','A2','A3','A4','A9','','','','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','','','Y','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','','','','','','','','','','','','','','','','sway','','',''),(2226,NULL,2,'en','840150537','A2','A5','male','','','','','','','','','','','','','','Y','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','','','','','','','','Y','','','','','','','Y','Y','','Y','','','','A7','A1','A2','','','','','','','','A14','A9','A7','','','','','','','','','','','','',NULL,'OS package manager + virtual envs','A4','','','','','Y','','','','','','','','','','','','','','','','','','A2','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2227,'1980-01-01 00:00:00',5,'en','1245905374','A2','A2','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A3','A1','A7','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A10','A26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','Arch','Y','','','','','','','','','','Sway','','',''),(2228,NULL,1,'en','596628573','A2','A4','-oth-','non-binary','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2229,NULL,NULL,'en','1011260115',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2230,'1980-01-01 00:00:00',5,'en','823570757','A5','A2','-oth-','Bigender','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','Y','','Y','','','','','','','','','','Y','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2231,'1980-01-01 00:00:00',5,'en','184608194','A3','A4','male','','Y','','','Y','Y','','','Y','','','','','','Y','','','Y','','','Y','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','Y','Thought that Guix System (+ nonguix) was better adapted to my workflow','Y','The language and the lack of comprehensive documentation were prohibitive to me','','','','','Y','','','','','','More cohesive language would be great!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Small bugs on software distributed w/out them in another distros, docs not comprehensive ','Good to great documentation, a more cohesive language would also help',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Thanks for NixOS! I think is a great distro, but not for me currently. It seems that a better-than-average manual (think FreeBSD Handbook, Arch wiki) would help the community a lot. I love the idea of Nix, but I feel I would have to change a lot of my current workflow to use it (using Fedora Silverblue for work currently). Nevertheless, I feel I should get back to Nix... gonna format a machine today and play a little bit with it ☺️'),(2232,NULL,2,'en','1376244515','A2','A4','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Heard from multiple people I respect independently, that they enjoy Nix and NixOS and got curios!','','Y','','','','','Y','','','Y','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A8','A5','A4','','','','','','','','','','','','',NULL,'Arch Linux and Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A3','A2','A7','A21','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2233,NULL,NULL,'en','2085838546',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2234,NULL,NULL,'en','592394169',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2235,'1980-01-01 00:00:00',5,'en','1068178262','A8','A3','male','','','Y','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I wanted to have reproducible development environments for my projects.','Y','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A7','','','','','','','','','','','','','','','','','','','','','','',NULL,'Docker','A4','','','','Y','','','','','','','','','','','','','Y','','','','','','A2','A14','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I don\'t know flakes or the language.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I have a very idiosyncratic setup that used to often drift from my dotfiles. NixOS lets me have the same setup across devices and it\'s always in sync with the dotfiles.','Y','','','','','','','Declarative system configuration','Reproducibility','Ad-hoc shells','','Ansible and bash scripts.','Y','','','','','','','','','','spectrwm','','',''),(2236,'1980-01-01 00:00:00',5,'en','1370860203','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','A friend recommended it to me.','','Y','','Y','','','Y','Y','','','','','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'Git repos','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I don\'t develop any software that is interesting enough to add to nixpkgs','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','A friend recommended it.','Y','','Y','','','','','Declarative system configuration ','','','','Git repos','Y','','','','','','','Y','','','','','',''),(2237,NULL,NULL,'en','1192216863',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2238,NULL,2,'en','1493492654','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A2','A10','A3','','','','','','','','A9','A2','A7','','','','','','','','','','','','',NULL,'Arch ','A4','','','','','','','','','','','','','','','','','','Y','','','','','A2','A3','A9','A4','A5','','','','','','','','','','','','','','','','','A9','A13','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I am not interested in the social aspects of open source software ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2239,'1980-01-01 00:00:00',5,'en','599538552','','A3','-oth-','','','','','','Y','Y','','','','','Y','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Read a lot about NixOS over time from blogs and decided to try it.','Y','','','','Y','','Y','Y','','','','Y','','','Y','Y','Y','','Y','','A7','A10','','','','','','','','','A9','A4','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A9','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Read a lot about NixOS over time from blogs and decided to try it.','Y','','Y','','','Y','','Declarative config','Extensibility','Rollback','','','Y','','','','Y','Y','','','','','Sway','','Arion','<3'),(2240,NULL,2,'en','12326344','A6','A4','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A2','','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A5','A6','','','','','','','','A5','A13','A9','','','','','','','','','','','','',NULL,'','A4','','Y','Y','','','Y','Y','','','','','','','','','','','','Y','','','','A6','A18','A21','','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2242,'1980-01-01 00:00:00',5,'en','583354857','A1','A4','male','','','','','','Y','Y','','','Y','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','read an intriguing blog post (https://xeiaso.net/blog/nix-flakes-1-2022-02-21) then asked a friend I respect about his opinion on Nix. Found out he uses it daily and he had high praise for it. Started to look into the language more and liked what I saw.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A8','A14','A9','','','','','','','','','','','','',NULL,'docker, vagrant, and email(to communicat what versions of software to use when developing). I love the project level configuration i can do with nix flakes.','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A1','A20','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','don\'t feel like I understand it all well enough yet. I am mostly building off other\'s work to get my own environments set up. When I understand nix language better, I would contribute more I think.','N','N','Understanding it\'s usecases better. Just need to learn more about it, I think.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Really love nix!'),(2243,NULL,1,'en','127971256','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2244,NULL,2,'en','1017452094','A5','A4','male','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','Y','Boss asked me to stop using it','','','','','','','Y','Couldn’t get some things to compile despite compilers on the path','','','','','Y','','','Y','','','Better documentation, and make flakes not experimental',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2245,NULL,NULL,'en','1132320520',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2246,'1980-01-01 00:00:00',5,'en','618600613','A2','A4','male','','','','','','','','','Y','','Y','Y','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I switch my distro to NixOS.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A10','A6','','','','','','','','A5','A9','A6','','','','','','','','','','','','',NULL,'guix ;)','A4','','','','','','','','','','','','','','','','','','','','','','','A3','A2','A25','A15','','','','','','','','','','','','','','','','','','A15','A25','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I have opened PR but did not finalize due to the lack of time. If I remember correctly comments I received were not so clear.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Tired of packages recompilation in Gentoo. Wanted an easy solution to reproduce my environment on multiple hosts.','Y','','Y','','','','','Stability','Reproducible config','Active community','I want an easy way to isolate proprietary SW in NixOS containers like in Flatpak.','GuixSD ;)','Y','','','','','','','Y','','','','home-manager','cachix & nix-community for emacs-overlay (finally there is pgtk version in nixpkgs-stable)',''),(2247,'1980-01-01 00:00:00',5,'en','2035633117','A5','A4','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','Designer','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','The reproducibility story is really compelling to me. Additionally the wealth of packages made replicating a work environment in multiple OS\'s straightforward.','Y','Y','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A1','A2','A3','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Ansible? Docker probably.','A1','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A2','A7','A1','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Haven\'t tried. Nix as a language seems complex/difficult to me and I\'m not sure I would be able to do it right.','N','Y',NULL,'Felt more comfortable on macOS.','Needed a linux server running somewhere.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Keep it up! And please keep supporting nix on macos!'),(2248,NULL,NULL,'en','1538799196',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2249,NULL,2,'en','1659344015','A1','A6','fem','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A3','Supervisor is a fan. Major team system built in nix, and I need to work with and in it','Y','Y','','','','','Y','','Y','','','','','Y','','Y','','','Y','','A1','A3','A7','','','','','','','','A5','A8','A7','','','','','','','','','','','','',NULL,'Nextflow','A7','','','','Y','','','','','','','','','','','','','','','','','','','A21','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2250,'1980-01-01 00:00:00',5,'en','1129943223','A5','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','nix shell was super convenient','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A7','A6','A2','','','','','','','','A14','A5','A3','','','','','','','','','','','','',NULL,'Ansible, Debian, Docker, HomeBrew. ','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A9','A2','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Home router and bastion servers on AWS','Y','','Y','Y','','','','Rollback','Reproducibility','Everything as Code','Comprehensive documentation. Although at this point the best way to figure out what options are available is to just look at the source anyways.','Debian, Ansible','Y','','','','','','','Y','','','','nix-darwin','',''),(2251,'1980-01-01 00:00:00',5,'en','651257466','A5','A3','male','','','','','Y','','','Y','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Heard everyone online talking about it. Thought I\'d give NixOS a try on VMWare. Fell in love quick. ','Y','','','','Y','','Y','','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A14','A8','A10','','','','','','','','','','','','',NULL,'cmake','A1','','','','Y','','','','','','','','','','','','','','Y','','','','','A4','A3','A22','','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I don\'t know how.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','','','','','','nix shell','','','','cmake','Y','','','','','','','Y','','','','','',''),(2252,NULL,1,'en','1831778603','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2253,'1980-01-01 00:00:00',5,'en','50453616','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Wanted stability with my desktop. Was using arch and a coworker started talking about nix and how it solves dependency hell.','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A1','A2','A10','','','','','','','','A14','A9','A8','','','','','','','','','','','','',NULL,'Probably Mac and just not give a shit like everyone else. Its nice some people care to solve the problem :D ','A4','','','','Y','Y','','','','','','','Y','','','Y','Y','Y','','Y','','','','A13','A2','A9','','','','','','','','','','','','','','','','','','','A21','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Was using Arch but was having issues with my packages and managing my dot files. Co-worker introduced me to nix and the rest is history.','Y','Y','Y','Y','','','','Derivations','Flakes','Reproducible development environments (including my entire system)','','Probably macOS and just not give a shit like everyone else. Its nice that there are others out there that care :D','Y','','','','','Y','','Y','','','i3','','Home Manager. You really dont need it and I dont understand why wayland is built under it. ',''),(2254,'1980-01-01 00:00:00',5,'en','1122244436','A8','A5','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','Y','','','','N','N','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2255,NULL,1,'en','1781194846','A5','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2256,NULL,NULL,'en','2060111909',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2257,'1980-01-01 00:00:00',5,'en','1179012190','A5','A2','-oth-','non-binary','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','Programmable, repeatable package management','Y','Y','','Y','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A6','A1','','','','','','','','A8','A14','A11','','','','','','','','','','','','',NULL,'Guix wouldn\'t exist either, so probably just Debian packages?','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','Garnix','A15','A9','A1','','','','','','','','','','','','','','','','','','','A7','A5','A20','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Single source of truth for system configuration','','','Y','','','','','','','','','','Y','','','Y','','','','','','','','','',''),(2258,'1980-01-01 00:00:00',5,'en','335365633','A5','A4','male','','','','','','','Y','Y','','Y','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Was using ansible to configure Linux boxes and liked the idea of something \"like\" ansible but more integrated with the package manager/os','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A10','A1','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'Ansible, but nothing really replicates all the features of nix e.g. knowing the setup is (mostly) deterministic ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A10','A3','A9','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I\'m actively considering doing so, just haven\'t gotten around to it','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Same reasons as using nix-the-package-manager... I was also getting irritated with Ubuntu forcing users into using Snap and so was amenable to trying something new ','Y','','Y','','','','','One stop configuration of my machines','Deterministic(-ish) packaging','Easy configuration with modules','Integrate some of the functionality from home-manager, especially populating user homedir with configuration files','Like mentioned earlier, Ansible plus some more \"boring\" Linux distribution. I was getting frustrated with Ubuntu snapification so probably arch linux.','Y','','','','','','','','','','i3','Home-manager','',''),(2259,'1980-01-01 00:00:00',5,'en','1039428073','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','Y','','','','','','','Y','Y','','NetBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I had tried to use Nix several times on macOS but found it truly difficult. My complete inability to use Nix as a Homebrew replacement was a big disappointment. However, I started using NixOS when I had cause to rebuild my house server. Since then, I\'ve been a real convert to the wisdom of declarative configuration. That said, the Nix expression language is horrendous and I hate it.\r\n\r\nIt\'s still very useful, and I do use it for containers with some frequency.','Y','','','','Y','','Y','Y','','','','','','Y','','','Y','Y','','','A2','A1','A7','','','','','','','','A13','A3','A4','','','','','','','','','','','','',NULL,'I would likely still be using Debian on my home server and hoping for the best with something like Ansible or whatever else comes along.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A24','A2','A1','','','','','','','','','','','','','','','','','','A15','A24','A2','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I don\'t know how, or if I would even want to. I\'m not sure what sort of help is needed!','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I needed to rebuild my house server.','Y','','Y','','','','','Declarative config','Good package selection','Atomic rollback for when I inevitably make a mistake','I would make the language better. Dhall sounds like a fantastic option to look at, at least.','Likely Debian also.','Y','','','','','','','','','','','','Nix on macOS, mostly. That never worked as it should have!',''),(2260,'1980-01-01 00:00:00',5,'en','604635681','A1','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Replaced a Puppet setup for my personal and work machines with Nix, and jubilation ensued on the *second* try, after a few broken packages were fixed in nixpkgs.','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A5','A4','A12','','','','','','','','','','','','',NULL,'','A4','','','','','Y','','','','','','','','','','','','Y','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as above.','Y','','Y','','','','','Simple but powerful configuration','Huge package repository','','I\'d add more resources to testing, so that the unstable channel could be as stable as Arch Linux.','Arch Linux.','Y','','','','','','','Y','','','','poetry2nix, niv','home-manager, flakes',''),(2261,'1980-01-01 00:00:00',5,'en','167047276','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','N','N','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','In 2019, I was looking for a system for a virtual router. Considered VyOS. I liked the configuration of the system with hints of available options.\r\nSomewhere I found information that NixOS can also. Since then I have been using NixOS.\r\n\r\nP.S.: Sorry for use online-translate.','Y','Y','Y','Y','','','','Configure the system in one place.','Provides a hint of the available options for configuration.','-','-','I would come to the conclusion that it is necessary to create NixOS','','','','','','','while manual','','','Y','','-','-','I wish you development!'),(2262,NULL,1,'en','1815462837','A3','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2263,NULL,NULL,'en','1416528887',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2264,'1980-01-01 00:00:00',5,'en','1597598519','A5','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','Y','','Y','','Y','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Only used it seriously as part of NixOS.','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A3','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'The native package manager','A4','','','','','Y','','','','','','','','','','','','','','','','','','A3','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Seduced by the possibility of easily maintaining a (mostly) common configuration on multiple machines.','Y','','Y','','','','','nix, but for everything','','','Add: user-friendly solution(s) for applications needing FHS.\r\nRemove: systemd (yeah I know that\'s a stretch...)','Other Linux distributions and *BSD.','','','','','','','','','Y','','None (servers)','None','None',''),(2265,'1980-01-01 00:00:00',5,'en','842389477','A5','A5','male','','','Y','','','','Y','','','','Y','','','','','Y','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Last month, I decided to go for a fully declarative Linux system. I\'ve been using redhat and debian systems for over 20 years. I\'ve got a lot of workflows to port over to nix so I\'m doing it as a personal project on a slow burn. So far, it\'s been fun but frustrating at times. ','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A8','A4','A3','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A4','A9','A1','A21','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Googling for documentation on how to do something as basic as override a package version is not clear (see \"How do you extend NixPkgs\"). That should be the very first doc page after the install - how to edit a pkg version locally, test it, and (optionally) contribute it back. As it stands, I still don\'t know how to do that. I arrived at flakes which seem somewhat incompatible with nixpkgs. I think. It\'s confusing.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','see nix','Y','','','','','','','nixos-rebuild switch','fully declarative flake-based configuration','home config management','The hardest challenge so far is that every project needs lots of work to be ported from docker/bazel/conda/cmake/shell scripts -> flakes. I\'d love an \"eject\" button that would allow me to drop into a stateful debian virtual machine so I can get stuff done in a supported environment. Until then, I can\'t really rely on it for work because I don\'t get paid to solve Nix problems :-) ','Debian or some derivative.','Y','','','','','Y','','Y','','','','flakes, they really should be the default. or at least the encouraged route for a fully declarative system.','I basically ignore anything that uses nix-env or any imperative commands. If wanted to write long shell scripts, I\'d just keep using debian. AFAIC, nixos-rebuild switch --flake is pretty much the only command I plan to use.','Thanks! I love Nix - keep up the great work - hope to understand this thing well enough to contribute some day'),(2266,NULL,2,'en','1595283577','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','','','','','','','','','','Y','','','','A2','A7','A9','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2267,NULL,1,'en','1531978404','','','','','','','','','','','','','','','','','','','','','','','','','','','','Engineer, Security','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2268,'1980-01-01 00:00:00',5,'en','144571700','A2','A2','male','','Y','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Found nix as a tool for project dependencies management, gave it a try, can’t use anything else now','Y','Y','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A3','A2','A1','','','','','','','','A9','A8','A12','','','','','','','','','','','','',NULL,'… guix? ;(','A7','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A11','A13','A9','A15','A12','A1','','','','','','','','','','','','','','','','A11','A1','A12','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Wanted to try full declarative systems after living nix','Y','Y','Y','Y','','','','Declarative services','X11 stuff from home manager works well','Rollbacks','Make it easier to run multiple instances of the same service','Arch Linux','Y','','','Y','','','','','','','Sway','sops-nix, the whole X2nix ecosystem','Nix non root ','Thanks for nix'),(2269,'1980-01-01 00:00:00',5,'en','1500732797','A5','A3','male','','','','','','Y','Y','Y','','','Y','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','I definitely blame me being a new, but trying to install python packages I needed for work was something I couldn\'t get figured out.','','','Y','see above','','','','','','','Y','Nix and/or NixOS weren\'t something I was able to easily grasp.','','','','','Y','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'See previous page\'s form entries. I recently resumed using it, but not weekly yet and am very excited!','Mostly if any of my issues with nix get significant improvements! But I\'m already trying again.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None','Nix and NixOS are awesome projects. Thank you for your work and for putting this survey out there!'),(2270,'1980-01-01 00:00:00',5,'en','1622384273','A2','A3','-oth-','','','','','','','Y','','Y','Y','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I mostly wanted a package manager that would let me build my own packages from source. I used to use Homebrew because it was configured using Ruby instead of weird shell scripts, and Nix came with NixOS so when I started using NixOS I also ended up with Nix.','','Y','','Y','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A4','','','','','','','','A5','A10','A3','','','','','','','','','','','','',NULL,'Linuxbrew for package management outside of the system packages and creating my own configurable packages.','A7','Y','','','Y','Y','','','','Y','','','','Y','','','','','','','','','','A15','A14','A1','A7','A12','A3','','','','','','','','','','','','','','','','A12','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I often just don\'t want to make the effort to publish my packages and modules in a way that is reusable for other people because I feel like nixpkgs has a high standard of quality. I am thinking of contributing a couple of packages though.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','I was looking for a distro I could install on my computer or on my server that would let me track all the small tweaks to the configuration I made over time.\r\nI often leave my laptops and servers alone for months at a time and then come back to make some changes, and before I used NixOS I would struggle to figure out what I\'d need to change to fix something or to add a service. Every so often I would distro-hop or just reinstall everything to have a clean slate.\r\nI decided to install NixOS on my laptop and, while it did take me a while to get comfortable with it, I never installed anything else on it.','Y','','Y','','','','','Declarative system configuration that can be checked into source control','Packaging my own software easily and in a first-class way along with the rest of the system','Building a server\'s configuration on another computer and not letting me deploy it there\'s any errors','- Less bash scripts (I don\'t know exactly what I would replace them with)\r\n- Add a type system to the Nix language (Nickel looks nice!)','Probably Fedora or Arch on my computers (because they have up-to-date packages), something like Docker for servers I guess?','Y','','','','','','','','','','Hyprland','home-manager','',''),(2271,'1980-01-01 00:00:00',5,'en','1562070893','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','Y','','','A7','A15','','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','PRs often get no response from maintainers','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2272,'1980-01-01 00:00:00',5,'en','1752790180','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','Y','Y','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A8','A12','A6','','','','','','','','','','','','',NULL,'Homebrew','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','The nix language','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','A co-worker of mine showed his laptop running NixOS to me and he kept telling about all the advantages. I tried it and got totally stuck, removed and didn\'t look back until a year later. It took a few more tries before I confortably let a system run NixOS for my daily tasks.','','','Y','','','','','Declarative configuration','Native services (Radarr, Sonarr, etc)','Reproducible upgrades','Remove the nix language, it\'s really hard to ramp up on it.','Fedora with homebrew','Y','','','','Y','','','Y','','','','Devbox and devenv, both are awesome.','',''),(2273,'1980-01-01 00:00:00',5,'en','1101525664','A5','A4','male','','','','','','','','','','','Y','','Y','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','I was attracted to the idea of a package manager where it was possible to upgrade one package without affecting any others.','Y','Y','','','','','Y','Y','','','','','','Y','Y','','','','','','A1','A2','A10','','','','','','','','A14','A5','A9','','','','','','','','','','','','',NULL,'Homebrew','A1','','','','','Y','','','','','','','','','','','','','','','','','','A13','A21','','','','','','','','','','','','','','','','','','','','A8','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'N','N','Tutorials that made me confident that I would be able to both set up and maintain a NixOS server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lorri','',''),(2274,NULL,1,'en','1498392853','A8','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2275,NULL,2,'en','254603572','A2','A4','male','','Y','','','','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','N','N','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2276,'1980-01-01 00:00:00',5,'en','224296315','A5','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','It was being used at work for dev environments, inspired me to install NixOS as main OS on my personal computer','','','','','','','','Y','','','','','','Y','Y','','Y','','','','A2','A3','A7','','','','','','','','A14','A8','A5','','','','','','','','','','','','',NULL,'painfully maintained bash scripts','A4','','','','Y','','','','','','','','','','','','','','','','','','','A11','A2','A5','A15','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I have once or twice. I don\'t know how to make a new package from scratch.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Installed it on my main home computer to better learn nix','Y','','Y','','','','','declarative setup','easy adhoc experiments','rollbacks','','ubuntu','','','','','','','','','','Y','','','','You\'re doing great!'),(2277,'1980-01-01 00:00:00',5,'en','897336038','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A10','A1','','','','','','','','A14','A8','A9','','','','','','','','','','','','',NULL,'Docker et al ','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A13','','','','','','','','','','','','','','','','','','','','A8','A13','A15','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I don’t get any benefits from upstreaming and the community seems unfriendly based on the GitHub issues and pull requests I see ','N','N','If I could easily use a VM or cross compile a cloud AMI/Droplet ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','The documentation is horrible. I just use ChatGPT when I have questions ',''),(2278,NULL,2,'en','1026905822','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I saw a friend using it and decided to try it','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A7','A1','A9','','','','','','','','A13','A14','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2279,'1980-01-01 00:00:00',5,'en','989678037','A1','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A7','I thought it will be useful for making development environments.','','Y','','','','','Y','','','','','','','','Y','','','','','','A1','A9','A2','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Linux distro package manager and specific developer tools','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'m still learning ','N','N','runit init system support ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2280,'1980-01-01 00:00:00',5,'en','1071921922','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A2','A1','','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A5','A1','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','','','','','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(2281,'1980-01-01 00:00:00',5,'en','1626289554','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','river','','',''),(2282,'1980-01-01 00:00:00',5,'en','1350265259','A1','A3','male','','','','','','','','','','Y','','','','','','','','Y','','','','','','','','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Lack of documentation. Difficult to understand the Nix language.','Use the existing markup language (yaml, json, xml...) instead of inventing a new one.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Flakes and Home manager.',''),(2283,NULL,1,'en','972356173','A6','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','hardware engineer ','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2284,NULL,NULL,'en','431492880',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2285,NULL,2,'en','1978085571','A5','A4','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','Y','Y','','','','Y','Y','','','','','','Y','Y','','Y','','','','A7','A1','A2','','','','','','','','A13','A4','A3','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A15','A2','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2286,NULL,NULL,'en','253331748',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2287,'1980-01-01 00:00:00',5,'en','1919561062','A5','A4','male','','','Y','','','','','','','','Y','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Love declarative config.','','Y','','','','','Y','Y','Y','','Y','','','Y','Y','','Y','Y','','','A2','A1','A7','','','','','','','','A5','A8','A3','','','','','','','','','','','','',NULL,'Guix','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A2','A1','A17','A15','A25','','','','','','','','','','','','','','','','A17','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started using Nix, soon wanted it for the whole machine.','Y','','Y','','','','','Stability','Easy upgrades & rollback','Package selection','Better docs','Guix','Y','','','','','Y','','Y','','','Sway','','',''),(2288,'1980-01-01 00:00:00',5,'en','1062076402','A5','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','Nixos generators','A2','A7','A3','','','','','','','','A8','A12','A2','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','Y','','','','','Y','','','','','A3','A24','A15','A2','','','','','','','','','','','','','','','','','','A24','A23','A25','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','Module system','Rollbacks, version control','Reproduceability','','Debian','Y','','','','Y','','','Y','','','','Nixos generators\r\nNumtide devshells\r\nFlake-parts\r\nSops-nix','Niv - replaced with flake.lock',''),(2289,'1980-01-01 00:00:00',5,'en','1929923885','A3','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was looking for functional alternatives in devops, since the infrastructure world sucks','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','Y','','A2','A3','A7','','','','','','','','A13','A8','A6','','','','','','','','','','','','',NULL,'Guix/Guile','A1','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A12','A13','A2','A1','A15','A20','A6','A3','','','','','','','','','','','','','','A12','A6','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I was memed into it and started enjoying it unironically','Y','Y','Y','','','','','Declarative setup','Flakes','Rollbacks','Better tooling for managing large fleets of servers in a cloud-agnostic way','Guix','Y','','','Y','','','','Y','','','Sway','home-manager\r\ndevenv','Nixops',''),(2290,'1980-01-01 00:00:00',5,'en','441374575','A5','A2','-oth-','','','','','','','','','','','Y','','','','','','Y','','','','','','','Y','','','Y','','','','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Initially through NixOS, but as a development tool it started when I really didn\'t want to install a specific version of Python and learned how to write a shell.nix to have it when I needed it.','','Y','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A3','A7','','','','','','','','A8','A2','A12','','','','','','','','','','','','',NULL,'Standard, language-specific tools. Maybe Bazel.','A5','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A15','A13','A1','A3','A9','','','','','','','','','','','','','','','','A1','A2','A13','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','An attempt at reproducibility after losing everything in a hard drive failure on my home server.','Y','','Y','','','','','Declarative','Rollbacks','Deployments','Built-in support for ephemeral root storage','Debian and Ansible','Y','','','Y','','','','Y','','','','Cachix','',''),(2291,'1980-01-01 00:00:00',5,'en','1637534300','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A1','The promise of reproducibility and rollbacks. I love the idea of slowly building up my work environment and services and polishing it over time. Similar to why I use Emacs.','','Y','','','','','','Y','','','','','','Y','','','Y','','','','A7','A10','A9','','','','','','','','A14','A5','A9','','','','','','','','','','','','',NULL,'Ubuntu, probably.','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I find the documentation and learning resources difficult to follow or out of date. It\'s been hard to wrap my head around the concepts.','N','Y',NULL,'I was struggling configuring my laptop to a usable state. I ended up wiping it, putting arch on it, and just installing Nix','I\'d love to use NixOS again when I feel confident with Nix. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I love you <3'),(2292,'1980-01-01 00:00:00',5,'en','1571323761','A8','A3','male','','','','','','','','Y','Y','','','Y','','','','','','Y','','','','','','','A/V/Kinetics Artist','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was attracted by the ability to declare native, reproducible, system installations for our large-scale A/V artworks and installations. Today, I continue to use it at work for distribution of our language and ecosystem tooling.','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','Y','','A2','A7','A9','','','','','','','','A2','A12','A8','','','','','','','','','','','','',NULL,'I\'d make something like Nix, perhaps with a nicer language like nickel, tackle CA early with enabling distributed caching in mind.','A7','','Y','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A13','A4','','','','','','','','','','','','','','','','','','','A15','A13','A4','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Fully declarative systems for A/V artworks and installations. Continued use for server management and package/language/dev-environment distribution at work.','Y','Y','Y','Y','','','','Declarative Configuration','Reproducibility','Cache-ability','Most changes I\'d make would be with Nix itself, e.g. better distributed caching and content addressing, stabilized flakes and nix command, full support for a better language like Nickel, etc.','Arch or macOS with Nix.','Y','','','','','','','Y','','','','Cachix, though I\'d prefer some way of doing distributed, trusted caching (e.g. using IPFS or iroh).\r\n\r\nnil (nix language server) from oxalica.\r\n\r\nagenix for securely managing secrets during deployment.','morph, colmena - I found it easier (and useful for learning) to use nixos-rebuild directly.\r\n\r\nrust-overlay from mozilla - I switched to oxalica\'s rust-overlay. Ideally something like this would be integrated in nixpkgs directly.\r\n\r\n','I love Nix! Thanks so much for all your work on it <3'),(2293,NULL,NULL,'en','1283651353',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2294,'1980-01-01 00:00:00',5,'en','1154570159','A5','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A2','A3','A10','','','','','','','','A4','A5','A3','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A3','A15','A1','A22','','','','','','','','','','','','','','','','','A2','A15','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(2295,NULL,NULL,'en','535311963',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2296,'1980-01-01 00:00:00',5,'en','583438804','A1','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A7','my mate raves about it so giving it a go','Y','','','','','','Y','Y','','','','','','','','','Y','','','','A1','A2','','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'homebrew','A1','','','','','','','','','','','','','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2297,NULL,1,'en','1893610736','A5','A3','male','','Y','','','Y','','','','Y','','','','','','Y','','','Y','','','Y','','Y','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2298,NULL,1,'en','231254748','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2299,NULL,NULL,'en','2108166619',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2300,'1980-01-01 00:00:00',5,'en','1277105552','A5','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking for a better way to manage dotfiles, and that led me to Nix and NixOS.','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','Y','','A7','A1','A10','','','','','','','','A6','A14','A8','','','','','','','','','','','','',NULL,'Guix maybe?','A1','','Y','','Y','Y','','','','','','','','','','','','','','Y','','','Cirrus CI','A7','A24','A1','A23','','','','','','','','','','','','','','','','','','A7','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I wanted a better way to manage my home servers. I used to use Ubuntu but was frustrated with reproducibility.','','Y','Y','','','','','Reproducibility','Cached binaries','Developer environments','First class support for secrets! Please!','Ubuntu and Puppet, I think.','Y','','','Y','','','','','','','','digga','NixOps. I ran into so many bugs (that I reported) and issues with AWS deployments.',''),(2301,'1980-01-01 00:00:00',5,'en','1169689874','A6','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','N','','','Y','','Documentation and Books',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Lack of documentation','Yes, If good beginner resources are available',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None',''),(2302,NULL,1,'en','1928020936','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2303,NULL,0,'en','1369648329','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2304,NULL,NULL,'en','1134592638',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2305,'1980-01-01 00:00:00',5,'en','604301848','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted a reproducible OS but I didn\'t want to use Ansible','Y','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','Y','','A1','A2','A10','','','','','','','','A8','A14','A4','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A1','A3','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','I have contributed some but it is not enough for me to say I contribute to nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started with Arch but it was not stable and eventually broke. I switched to Linux Mint for several years so I could focus on developing and not being my own sysadmin. Eventually I wanted to look at something with more control again and something I could deploy easily and quickly if my OS broke. While searching around on the internet I saw some people talking about Ansible + Arch, but in that same discussion somebody mentioned NixOS and I was instantly hooked.','Y','Y','Y','','','','','A declarative OS','Easy roll backs','','','Some flavor of Linux','','','','','','','','','','','Sway','','',''),(2306,'1980-01-01 00:00:00',5,'en','1060573225','A5','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','','','','A2','A6','A7','','','','','','','','A6','A12','A10','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','Y','','Y','','','','Y','Y','','','A15','A9','A22','A26','A4','A3','A1','','','','','','','','','','','','','','','A15','A22','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','','','','','','Y','','','','','Y','','','','','sway','','',''),(2307,'1980-01-01 00:00:00',5,'en','1017362539','A8','A3','male','','','','','','','','','','Y','','','','','','','Y','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Customising my dev environment without making it fragile (to great success)','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A6','A1','A2','','','','','','','','A8','A4','A6','','','','','','','','','','','','',NULL,'Probably a mixture of ansible, bash, and gnu stow ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A17','A15','A25','A2','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I tried a couple times, but not especially hard, there was a nodejs build script that failed after 4 hours? This wasn’t documented anywhere. It’s hard to know where to start, so much convention seems unwritten.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Reproducibility','Y','','Y','','','','','Being able to commit config for a whole machine into git ','Rollbacks via boot loader if I break something','ZFS support ','Convert all nix lang to nickel ','Arch with a bunch of scripts, maybe ansible to','Y','','','','','','','','','','Sway','','I tried to use nix on nixos on a server as a replacement for docker and docker compose. Rebuild switch times got really long really fast, and the services in nixpkgs are really hard to configure, poorly documented, and inconsistent. Have gone back to docker compose','I love nix, can’t wait until it’s more mature so I can recommend it to friends'),(2308,'1980-01-01 00:00:00',5,'en','1731579685','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A1','','','','','','','','','A5','A3','','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','Y','','','','A11','A1','A5','A10','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','','','','','','','','','Y','Y','','','','','','','','','Xmonad','','',''),(2309,NULL,1,'en','1029639734','A5','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2310,NULL,2,'en','2141998224','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2311,'1980-01-01 00:00:00',5,'en','859080048','A5','A4','male','','Y','','','Y','','Y','Y','','','','','','','','Y','','','','','Y','Y','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','Y','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A1','A3','A2','','','','','','','','A5','A8','A12','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A2','A4','A3','A5','A12','A1','A14','A13','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I dont understand the idioms, rules and expectations.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','Declarative setup','','','','','','','','','','','','','Y','','wmii','','',''),(2312,NULL,NULL,'en','50364134',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2313,'1980-01-01 00:00:00',5,'en','2024374916','A5','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','fell into it through home-manager as a way to more robustly keep my shell environments in sync between work and personal machines. fell deeper and deeper into the rabbit hole, dragging a few other coworkers along with me. hit the \"no turning back\" point of installing NixOS on a personal laptop in early 2020 or so.','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','','Y','','','','A2','A8','A7','','','','','','','','A5','A3','A8','','','','','','','','','','','','',NULL,'Dockerfiles','A7','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A1','A24','A25','','','','','','','','','','','','','','','','','','','A1','A24','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of documentation and no pressing need for a package that hasn\'t already been contributed to the package index.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Tired of configuration hell. Already liked home-manager. No-brainer to try NixOS, have never looked back.','Y','','Y','','','','','Declarative configuration','nixops','atomic rollbacks','Hm, I\'m pretty satisfied overall---I think the gnome configuration story was a little busted due to a recent major version change on the gnome side, but I don\'t blame NixOS for that. I would like to understand better how to log system errors (have been dealing with random total system shutdowns that I haven\'t been able to diagnose)---so I guess my magic wand would be to suddenly add better documentation.','Guix, i guess...?','Y','Y','','','','','','Y','','','','I\'m glad flakes allowed me to avoid niv. I use direnv in every project, both personal and professional.','None! I\'ve been well satisfied with what I\'ve tried so far.',''),(2314,NULL,1,'en','1991199506','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2315,NULL,2,'en','1371904866','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','Y','IT Support, Entry Level','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','Y','','','Y','Y','','','','','','Y','Y','','','','','','A2','A3','A7','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'Plain Debian, more containers, FS level snapshots','A4','','','','','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2316,'1980-01-01 00:00:00',5,'en','497666979','A2','A4','male','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I\'ve joined a company that was developing a network security application that needed incredibly complex environments for testing and development. They were using Nix to manage all that and I was able to read through the code and understand and change it all by myself as someone that didn\'t know Nix before. This contrasted with the rube-goldberg nightmares I had encountered in much simpler systems before, so it was mostly love at first sight for me. With Nix(OS) I feel like the OS and the whole open source ecosystem is just a runtime for my code.','Y','Y','','','Y','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','','A1','A2','A9','','','','','','','','A11','A8','A3','','','','','','','','','','','','',NULL,'docker','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A1','A2','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','When I reflect on why I don\'t contribute back things I package with Nix, I see the following reasons:\r\n* I don\'t know the best practices for nixpkgs, what sort of testing is needed/what platforms to target and how etc. Feels like screaming into a void not knowing who\'s on the other side.\r\n* For brand new packages, I don\'t know what belongs in nixpkgs (plus the previous point).','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A3','I\'ve started using NixOS as an extension of my Nix journey. If I\'m in full control of a software environment, I opt for NixOS to get the smoothest experience with the rest of my Nix stack.','','','','Y','','','','The wide collection of existing modules ','Easily defining my own modules building on top of the existing ones','The wide range of ways in which I can deploy a NixOS system and the architectural patterns this allows.','','Ubuntu, most probably ','Y','','','','','Y','','','','','','devenv, terranix, haskell.nix','','I love Nix!'),(2317,NULL,NULL,'en','1493131054',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2318,NULL,NULL,'en','567684318',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2319,NULL,1,'en','1321591563','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2320,'1980-01-01 00:00:00',5,'en','133375848','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Because some of my favorite packages were missing from the repos.','','Y','','','','','Y','','','','','','','','','','Y','','','','A1','A7','A10','','','','','','','','A8','A4','A10','','','','','','','','','','','','',NULL,'I would Arch or Gentoo with Homebrew','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A25','A3','A2','A15','A17','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Nix as language being a mess','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','','','','','','Rollbacks','Immutability','Flakes','I would add better support for V','Arch or Gentoo','Y','','','','','','','','','','I3','None','Deploy-rs',''),(2321,'1980-01-01 00:00:00',5,'en','1149436015','A6','A5','male','','','Y','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A7','A2','A10','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'Debian','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','Debian','','','','','','','','','','','sway','','',''),(2322,NULL,2,'en','414020839','A2','A4','male','','','','','','Y','Y','Y','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','','','','A2','A7','A10','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A3','A4','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2323,NULL,1,'en','92412401','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2324,NULL,1,'en','1761986276','A5','A3','fem','','','','','','','','Y','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO `limesurvey_survey_2023` VALUES (2325,NULL,NULL,'en','1660330764',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2326,NULL,1,'en','1708430312','A3','A3','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2327,NULL,NULL,'en','1014508678',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2328,'1980-01-01 00:00:00',5,'en','1247130770','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','Y','','','A7','A2','A1','','','','','','','','A8','A5','A13','','','','','','','','','','','','',NULL,'GNU guix','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(2329,NULL,NULL,'en','1588810795',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2330,'1980-01-01 00:00:00',5,'en','862109588','A5','A4','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A3','A13','','','','','','','','','','','','',NULL,'Guix','A7','','','','Y','','','','','','','','','','','','','','','','','','','A15','A2','A3','','','','','','','','','','','','','','','','','','','A15','A2','A9','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(2331,'1980-01-01 00:00:00',5,'en','309230963','A2','A4','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A1','A2','A3','','','','','','','','A5','A6','A4','','','','','','','','','','','','',NULL,'Arch Linux','A2','','','','','','','','','','','','','','','','','','','','','','','A15','A2','A4','A3','A10','A17','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','Declarative configuration','Atomic updates & rollbacks','Possibility to have root on tmpfs','','','Y','','','','','','','','Y','','','','',''),(2332,'1980-01-01 00:00:00',5,'en','1723561450','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','ops/ci','A3','hated docker, also home-manager on nixos lets me manage my multiple personal machines','Y','Y','','','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','','A1','A8','A2','','','','','','','','A13','A9','A14','','','','','','','','','','','','',NULL,'custom sync scripts, shell','A4','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','confidence of using the nix language','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','ci','A4','curiosity & liking the concept','Y','Y','Y','Y','','Y','','determinism/reproducability','easy of use for dev environments','','better docs expkaining from the ground up','shell, custom sync','Y','','','','','Y','','','','','i3','','',''),(2333,'1980-01-01 00:00:00',5,'en','1487296532','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking for a way to manage config files and after several iterations came upon home manager ;)','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','','Y','','','','A1','A2','A7','','','','','','','','A9','A4','A5','','','','','','','','','','','','',NULL,'Mixture of Ruby, Bash, Puppet and ArchLinux (for AUR instead of nixpkgs)','A1','','','','Y','Y','','','','','','','Y','','','','','Y','','Y','','','','A7','A2','A1','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I wanted to go back to Linux as Dev machine, found out about Framework laptop. Fedora installer gave up so I tried out NixOS and it worked fine :)','Y','','Y','','','','','Atomic rollbacks','Safety of experimentation','User-installable software','Improve errors and finish lanzaboote project ;d','Arch?','Y','','','','','','','','Y','','','devshell','devbox','Love Nix <3 Solves a very unique set of problems and is very malleable - I recenty migrated dev setup from Docker to nix with s6 and all devs praised it - because now its fully local and native - even on M1.'),(2334,'1980-01-01 00:00:00',5,'en','1232279869','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A6','A1','','','','','','','','A6','A8','A12','','','','','','','','','','','','',NULL,'Guix','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A4','A2','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','declarative configuration','rollback','','','Guix','Y','','','','','','','','','','i3wm','home-manager','','Nix is awesome!:)'),(2335,'1980-01-01 00:00:00',5,'en','1824949734','A6','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','N','N','Y','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I\'m just want to make my system easy to build.\r\nI want stable and daily usage system without breaking anything.\r\nIf i want to reinstall i don\'t want to spend time on install apps and services.\r\nMy settings/Configurations should be easy to access anytime if my system breaks.\r\nI want to steal other people\'s Config with reproducible build.\r\nI want to create environment for different development and disable if I\'m not developing.\r\nI want to switch like a mode, gaming mode(only games), development mode(only develop) in single system(don\'t know how to achieve). \r\nDocumentation is mess, i don\'t how to achieve above. but i know it is possible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'i want to use nix develop for flake.\r\nit should create environment for my whole system like nginx, programming language and all.','','Please make some easy to understand things better in NixOS.\r\nnew comer will feel very difficult to understand things.\r\nI have been facing so many issues, because error message is not understandable.\r\nand Thank you making this amazing OS for solving so many issues in linux world'),(2336,'1980-01-01 00:00:00',5,'en','272375848','A7','A2','male','','','','','','','Y','Y','','Y','Y','','Y','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','','A2','A6','A9','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'chroot jails\r\n','A1','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','Y',NULL,'difficulty','the promise of nix\r\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','nix good. but nix complex and not easy to learn.'),(2337,NULL,NULL,'en','1036688398',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2338,'1980-01-01 00:00:00',5,'en','1961156002','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','All personally owned computers run NixOS','A1','Liked the idea for years. Pulled the plug when Arch blew up with the driver issue and NixOS had fixed a different driver issue which was blocking me.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'Arch with scripts to install packages from a list and and set it up.','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Haven’t got to it yet.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','Make the consequences of enabling options more clear. Sometime I feel like there is action at a distance. Not a very big deal so far, though.','','Y','','','','','','','','','','I3','','',''),(2339,'1980-01-01 00:00:00',5,'en','1401728878','A2','A3','fem','','','','','Y','Y','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','please resolve the split about using flakes vs not using flakes. there shouldnt be multiple ways. you\'ll end up like the madness of python packaging :P',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','nix/nixos is cool, with better docs i want to test it'),(2340,NULL,NULL,'en','761736534',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2341,'1980-01-01 00:00:00',5,'en','1669658749','A2','A4','','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Liniux Unplugged from JupiterBroadcasting has several Nix enthusiasts on staff. I tried NixOS for myself to see what the fuss was about and now I have it running on 3 servers and my girlfriend\'s desktop.','','Y','','','','','Y','Y','','Y','','','','Y','','','Y','','','','A2','A1','A7','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'Probably Ansible.','A5','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A10','A1','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I am just starting out with making packages; the documentation could be improved to improve onboarding.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Linux Unplugged is a podcast by JupiterBroadcasting- they talk about Nix & NixOS a lot. I loved it on my servers and now my girlfriend\'s computer is testing the desktop side for me.','Y','Y','Y','Y','','','','Declarative configuration','Atomic rollbacks','Relatively big package ecosystem','I\'d love for all NixOS documentation resources to be unified into one extensive resource that would challange Arch\'s documentation. Maybe a few tiers (beginner/enthusiast/professional)?','Ubuntu on the server and Arch on the desktop.','Y','','','','','','','','Y','','','','','I appreciate your work.'),(2342,NULL,NULL,'en','964098248',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2343,'1980-01-01 00:00:00',5,'en','1216457611','A2','A4','male','','','','','','Y','Y','Y','Y','Y','Y','','Y','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','NixOS looked like something interesting and actually thought through, so I installed it on a seconday machine and started learning Nix as a way to configure NixOS and home-manager. It did not hurt that it provided most of the benefits of Gentoo Linux without the time requirements.\r\n','','Y','','','','LXC Containers on Proxmox','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A6','','','','','','','','A4','A8','A3','','','','','','','','','','','','',NULL,'Debian','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A11','A15','','','','','','','','','','','','','','','','','','','A11','A15','A4','','','','','','','','','','','','','','','','','','','','Y','','','A2','','The one patch to an existing module I sent to nixpkgs ended up merged, but it took way too long to keep track of it.\r\nEven with posting to discourse as ready to review.\r\n\r\nMultiple people reviewed it (all without commit access), and some time later finally someone with commit access reviewed it and found things to change that earlier reviewer considered ok.\r\nThat is _not_ criticism of the reviewer with commit access, the code in Nixpkgs should be as good as possible!\r\nIt is just that having to rework a patch after \"passing a review\" and few weeks passing to forget most of the context of the patch does not make contributing that enjoyable.\r\n\r\nAny chance of making module maintainership somewhat more prominent ? e.g. see review queue for a module ? at the momemt it is almost impossible to find what other pull request for given module are in the pipeline...','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started using NixOS \"before\" Nix, or more likely learned Nix to be able to configure NixOS and home-manager.\r\nThe ability to have more or less immutable /etc and other config files is impressive.','Y','','Y','','','','','easily reboot to previous configuration','nixos-rebuild (with flakes)','home-manager configuration as part of machine\'s configuration','Ability to run on Illumos kernel','Debian','Y','','','','','','github.com/numtide/terraform-deploy-nixos-flakes','','Y','','','https://search.nixos.org/options\r\nhttps://search.nixos.org/packages\r\n\r\nif there is some TUI / GUI application that provides that functionality locally, it is well hidden and not discoverable.','non-flake configurations, it was hard to reason about it. even as beginner the experimental flakes were much easier to learn','It would be great if there were something like NixOS Weekly used to be (the occasional summary send by discourse is not really enough),\r\nideally NixOS + Nix in one newsletter.\r\n\r\nSee what is going on - which files / parts of the tree have most pull requests in the queue, which pull requests are looking for testers, etc... it is currently rather hard to figure out where to _effectively_ help.\r\n\r\nAlso JVM languages (or mixing of languages) support is not that great, e.g. still have not figured out how to use nix flake to build Scala Play application (using sbt build tool) that also builds JavaScript frontend as part of the build (i.e. sbt calls to npm or some other flavor-of-the-month javascript build tool using a sbt plugin).\r\nIt probably is possible, just not documented. There is a chain of archived almost working repositories of \"build language X app using Nix\" abandoned in favor of just-created \"build language Y or Z app using Nix\" repositories.\r\n\r\nNewsletter would be great for that - i.e. get notified when default/recommended tools changed. The Wiki is great, but still small.\r\n\r\nAnd of course, thanks to everyone working on NixOS/Nix, given the software landscape today, NixOS still seems like something borrowed from the future.'),(2344,'1980-01-01 00:00:00',5,'en','1806637775','A2','A3','male','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I switched from Arch linux to NixOS because of the following reasons:\r\n- I wanted a reliable system for real-time sound synthesis allowing me to experiment without breaking the whole system (trying pipewire, switching back to jack, etc). NixOS was attractive because of the musnix project (for having real time audio without the need to tweak much) and because of its rollback feature.\r\n- Alongside the stability for audio, I desired up-to-date packages for the rest of my system.\r\n- Intellectual curiosity motivated me to explore Nix and its inner workings.\r\n- I was interested in researching the potential benefits of using Nix for packaging libre games in a distribution-agnostic manner.','','','','','','just NixOS','Y','','','','','','','','Y','Y','Y','','','','A5','A1','A3','','','','','','','','A3','A5','A14','','','','','','','','','','','','',NULL,'Guix','A2','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','A1','A6','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I switched from Arch linux to NixOS because of the following reasons:\r\n- I wanted a reliable system for real-time sound synthesis allowing me to experiment without breaking the whole system (trying pipewire, switching back to jack, etc). NixOS was attractive because of the musnix project (for having real time audio without the need to tweak much) and because of its rollback feature.\r\n- Alongside the stability for audio, I desired up-to-date packages for the rest of my system.\r\n- Intellectual curiosity motivated me to explore Nix and its inner workings.\r\n- I was interested in researching the potential benefits of using Nix for packaging libre games in a distribution-agnostic manner.','Y','','','','','','','Nixpkgs availability.','Reproducible configuration. Knowing that I can go back to any previous state.','Nix develop/Nix shell. Being able to start a developing environment for a certain package.','# nixpkgs\r\n## Better nixpkgs testing\r\n\r\nAs a desktop user I found that many packages were broken (in NixOS, not upstream) and even had been broken for years and nobody noticed.\r\nSometimes regressions are introduced by the bot that automatically upgrades packages which is not ideal.\r\n\r\n## Stricter licensing information in nixpkgs\r\n\r\nThe accuracy of licenses in nixpkgs is very hit and miss. It would be nice to have a stricter process like Debian\'s especially for packages that are tagged as free but are really non-free or have some non-free components.\r\n\r\n# nix develop\r\n\r\n- Being able to call the phases in a more streamlined way. \r\n- Some kind of wrapper for creating a customized package. You can write a patch and have an overlay. You can have a directory with your own source and add that package. The process for changing a piece of software could be wrapped in a nicer way. nix fork software. Change source. nix ??. Now you have the package with your changes.\r\n\r\n# Programatic changes for configuration.nix\r\nRight now the process of configuring your system is very manual. Some of those actions could be wrapped in commands. For example if you want to install a program, it\'s really just adding an entry to a list, there\'s no need to do this manually.\r\n\r\n# Magic\r\nMany times being a NixOS user turns into being a package maintainer/developer. I want to be able to try software on the internet which isn\'t on nixpkgs without dealing with packaging pains, especially for software which has a non standard build system (or a non-standard use of a standard build system). Sometimes it\'s possible to work around the packaging hell by just building it locally in a shell but even that is an annoying process (figuring out all of the dependencies and the names of the packages to use in the shell).\r\nMore tools that figure out the dependencies. More tools that create packages automatically. Maybe something intermediate like having a meta-packages that group common dependencies.\r\n\r\n# Github\r\nOpen source projects shouldn\'t be relying on Github. Nixpkgs being on Github isn\'t ideal and forces anybody who values software freedom to either not contribute to nixpkgs or use github reluctantly.','Arch Linux or GuixSD (maybe, I haven\'t tried it yet)','Y','','','','','','','','Y','','','','',''),(2345,NULL,-1,'en','129979109','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2346,'1980-01-01 00:00:00',5,'en','1679420452','A2','A2','male','','','','','Y','','Y','Y','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','Y','','','','Y','','','Y','Y','Y','Y','','','A2','A6','A7','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'','A1','','Y','Y','Y','Y','','','','Y','','','Y','','','','','Y','','','','','','A15','A1','A18','A2','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','Y','','','','','','','','','','','','','https://github.com/CertainLach/fleet','','Y','','','','',''),(2347,NULL,NULL,'en','1775244990',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2348,'1980-01-01 00:00:00',5,'en','817868471','A8','A4','male','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Wanted to have reproducible, easy to provision toolchain so that we could have reproducible environment.','','Y','','','Y','','Y','','Y','','','','','','Y','','','Y','','','A1','A3','A8','','','','','','','','A9','A14','A5','','','','','','','','','','','','',NULL,'Guix or would rolly own for a small set of packages','A1','','','','','Y','','','','','','','','','','','','','','','Y','','','A2','A1','','','','','','','','','','','','','','','','','','','','A1','A7','','','','','','','','','','','','','','','','','','','','','','','I don\'t ','A2','','I haven\'t needed to, all packages I need are there','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N/A','N/a','Nix is really amazing but quite complicated. It provides great benefits but the learning curve is steep and understanding how it works is for only the most technical of developers. We get a lot of value from it at work, but almost no one understands what it is or how it works!'),(2349,'1980-01-01 00:00:00',5,'en','2074619936','A2','A3','male','','','Y','','','','Y','Y','Y','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','Y','','','','N','N','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2350,NULL,NULL,'en','107024703',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2351,NULL,1,'en','1779091605','A2','A6','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2352,'1980-01-01 00:00:00',5,'en','1270390433','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','When I was tinkering with Linux a lot, I\'d often end up with an unbootable system. I didn\'t want to choose between a stable system or rapid iteration and experimentation though, and NixOS is the only operating system I know that let\'s you have both.\r\n\r\nI was also frustrated with the state of developer tooling, and still am. In 2023 it\'s still really hard to provide a reproducible developer environment for each project that doesn\'t require you to install lots of tools globally or develop from inside a Docker container. Nix flakes plus devShells are perfect for this.\r\n\r\nI want to mention specifically that, in my line of work, using Nix to build actual applications is the area where Nix is _least_ useful to me. Javascript and Python are so messy, that adding yet another abstraction layer on top of that ended up being more pain than gain in all cases I\'ve seen so far.','Y','','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A6','','','','','','','','A15','A13','A4','','','','','','','','','','','','','Develop the ecosystem. Want to build an application written in Python? The Wiki page (https://nixos.wiki/wiki/Python) is a mess. One of the most prominent tools https://github.com/DavHau/mach-nix is unmaintained and the other (https://github.com/nix-community/dream2nix) is highly experimental. The situation for Javascript is arguably even worse, since there are so many competing solutions.\r\n\r\nhttps://github.com/NixOS/npm2nix -> use https://github.com/svanderburg/node2nix\r\nor maybe https://github.com/nix-community/npmlock2nix/ is better? This seemingly basic requirement (https://github.com/svanderburg/node2nix/issues/202) is still open. How about https://github.com/nix-community/napalm\r\n\r\nhttps://github.com/nix-community/yarn2nix is part of Nixpkgs so I guess that\'s the blessed tool? Actually https://nix-community.github.io/dream2nix/subsystems/node.html also has a NodeJS sub-system.\r\n\r\nI don\'t need help building Go or Rust applications since those already have a really good build & packaging story on their own. I do need help with JS and Python since those are a mess but unfortunately that also makes it so much harder to build Nix tooling for these languages.','A mix of Docker containers and README instructions on which software to install to manage project environments.\r\n\r\nArch Linux for my desktop computer and just hope that things don\'t break and \"git gud\" at debugging from a USB stick.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A2','A13','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I like tinkering with Linux and NixOS is the only OS that let\'s me do so without worrying about breaking stuff','Y','','','','','','','Roll back to previous version','Remove software without leaving traces','','Nothing comes to my mind','Arch','','','','','','','','Y','','','','- Home Manager\r\n','- Nix purescript tooling ended up being too much work for too little gain\r\n- The Haskell tooling in Nix: if you just use the nixpkgs infrastructure then you\'re stuck with a single version of every package and need to play human dependency solver or you use something like haskell.nix which is a huge project on its own. I went back to just using Cabal.\r\n- dream2nix mach-nix and all the {npm,node,yarn}2nix: they all seem to handle something between 50% 75% of what I need to manage work projects using JS and/or Python but the remaining functionality is beyond my capabilty to implement so I went back to just npm/yarn',''),(2353,'1980-01-01 00:00:00',5,'en','1649651599','A2','A2','male','','','','','','','Y','','','','','','Y','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was dissatisfied with using the Homebrew package manager on MacOS so I switched to Nix','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A1','A2','A7','','','','','','','','A6','A5','A8','','','','','','','','','','','','',NULL,'pacman + aur','A2','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I don\'t maintain any open-source packages','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','My work started using NixOS for production servers, so I decided to run NixOS on my home server. After that I also started daily-driving NixOS on my personal computers.','Y','Y','Y','Y','','','','Declarative system configuration','','','','Arch Linux and MacOS','Y','','','Y','','','','','','','Hyprland','sops-nix','',''),(2354,'1980-01-01 00:00:00',5,'en','35700732','A2','A4','male','','','','','','','Y','','','','','','','','','','Y','','','Y','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Determinate Nix installer, seems to be having some kind of critical mass','Y','Y','','','','','Y','','','','','','','Y','Y','Y','','','','','A1','A2','A3','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'Homebrew, Buck','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','No way to learn anything, exploding complexity ','N','N','Zero interest in this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2355,NULL,NULL,'en','1581966383',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2356,'1980-01-01 00:00:00',5,'en','101044891','A5','A4','male','','','','','','Y','Y','','','Y','Y','','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Determinate package management and configuration ','Y','','','','','','Y','','','','','','','Y','','','Y','','','','A1','A8','A2','','','','','','','','A7','A5','A6','','','','','','','','','','','','',NULL,'','A1','','','','','','','','','','','','','','','','','','','','','','','A9','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','I don’t know ','A1','','Not sure if I know enough ','N','N','Unsure',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2357,'1980-01-01 00:00:00',5,'en','303213558','A2','A2','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Juste because I\'m lazy to backup my config. NixOs is perfect to do that.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A4','A13','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','A4','A3','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Same as previous','Y','','','','','','','','','','','ArchLinux, I guess','Y','','','','','','','','','','sway','','','<3'),(2358,'1980-01-01 00:00:00',5,'en','1859804009','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A3','','','','','','Y','','','','','Y','','','','','','','Y','','','','A2','A1','A6','','','','','','','','A4','A13','A5','','','','','','','','','','','','',NULL,'A custom bespoke shell script','A5','','','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A1','','The Nix language is still hard for me to grok, so I haven\'t wanted to work much with it.','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','','','','','Y','','','','','','','','','Y','','','','','','','','','','','','',''),(2359,'1980-01-01 00:00:00',5,'en','1909226287','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','Y','','','','Y','','','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','Community Work','A4','Read about it in 2016 and thought it wouldn\'t break my xserver. Reproducible server configuration followed and kept me hooked.','','','','','','','Y','','Y','Y','','','','','Y','Y','Y','','Y','','A3','A7','A10','','','','','','','','A5','A9','A4','','','','','','','','','','','','',NULL,'Ansible or Puppet with some scripting.','A4','','','','','','','','','','','','','','','','','','','Y','','','Drone','A2','A3','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Community projects','A5','The yellow webpage said it was cool and Arch broke my system.','Y','','','Y','','','','Full system configuration','Reproducibility and rollback','Package availability','Unify module configuration and upstream software configuration.','Some GNU/Linux distribution or OpenBSD bundled with Ansible.','Y','','','','','Y','','','','','dwm','','','Please merge my PRs. I stopped creating some as they are being ignored anyway.'),(2360,NULL,NULL,'en','1700093910',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2361,NULL,NULL,'en','1753289783',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2362,NULL,NULL,'en','1406840992',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2363,'1980-01-01 00:00:00',5,'en','1355782212','A1','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I have an interest in reproducibility and I kept seeing Nix come up in tech circles (Hacker News, Lobsters). I decided to test it on a spare laptop I had and I was hooked after a few weeks. All my systems run NixOS now.','','','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','Y','Y','','A2','A7','A1','','','','','','','','A8','A6','A7','','','','','','','','','','','','',NULL,'Bazel.','A4','','','','Y','','','','','','','','','','','','','','','','','','','A15','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I tried opening up a PR for something I thought was a problem but wasn\'t actually a problem. I also have a few package derivations defined in a local flake that I haven\'t contributed yet because I don\'t think they\'re ready to share yet. I suppose it\'s possible I\'m overestimating what\'s required to be mergable.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I\'ve had a long interest in declarative configuration management systems, like Ansible, Terraform, Salt. NixOS kept appearing in tech circles (Hacker News, Lobsters) so I decided I\'d try it. I was immediately hooked.','Y','','Y','','','','','Declarative configuration','System rollback at boot menu','The ability to install any package from any channel and modify packages on the fly if I need to','SELinux. SecureBoot.','Fedora Silverblue.','Y','','','','','','','','','','sway','Home Manager.','','NixOS has changed my life. I\'ve been using Linux for over 15 years and NixOS is the only Linux distribution that has actually impressed me and restored my faith in the tech community\'s ability to innovate. Fantastic work.'),(2364,'1980-01-01 00:00:00',5,'en','1213266333','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was enthousiastic about the declarative way NixOS uses to be configures.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A1','A10','A8','','','','','','','','A8','A6','A7','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','My small child ;)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Declarative OS management','Y','','','','','','','','','','','','','','','','','','','','','','Sway','','','Keep up the great work!'),(2365,'1980-01-01 00:00:00',5,'en','157300306','A5','A4','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I didn\'t want to have to manually manage tooling, like Node versions','Y','','','','','','Y','','','','','','','','Y','','','','','','A1','A2','','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','A25','A1','A2','A15','A13','A22','','','','','','','','','','','','','','','','A15','A13','A22','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Understanding how packages work','N','N','I\'m happy where I\'m at with my OS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None',''),(2366,'1980-01-01 00:00:00',5,'en','153898829','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I wanted to have a reliable and well-documented setup for my home server, coming from arch. ','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A7','A3','A2','','','','','','','','A8','A1','A6','','','','','','','','','','','','',NULL,'Arch Linux, maybe ansible.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A3','A13','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','Wanting a reliable home server setup. ','Y','','Y','','','','','Generations accessible from the boot loader','Atomic upgrades','','Better documentation ','Arch Linux','Y','','','','','','Nixinate','','','','XMonad','mach-nix, home-manager, stylix, nixinate','colmena, nixops','Thank you for your great work <3'),(2367,NULL,NULL,'en','600472204',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2368,NULL,NULL,'en','1369348583',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2369,'1980-01-01 00:00:00',5,'en','657948443','A4','A2','male','','','','','','','','','','','','Y','','','Y','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Heard about it and it seemed cool so I messed around with it in a VM','','Y','','','','','Y','Y','','','','','','','Y','','','','','','A2','A3','A7','','','','','','','','A8','A2','A14','','','','','','','','','','','','',NULL,'Just install packages from my distro (Fedora) repos','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A13','A6','A19','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A2','','Lack of knowledge and understanding of nix. I\'ve tried to fix / update some packages but ended up giving up and just filing an issue','N','Y',NULL,'It was quite a frustrating experience. I really wanted to like NixOs but just couldn\'t get comfortable on it.','Flake stabilization, and better documentation and learning resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2370,'1980-01-01 00:00:00',5,'en','311647394','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','To manage/install newer versions of packages onto an Ubuntu machine and for development environments.','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A1','A2','A7','','','','','','','','A3','A4','','','','','','','','','','','','','',NULL,'Some hacked together method of manually installing packages locally','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A3','A15','A4','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Most issues I have already have PRs/discussions open or are too complex for me to start getting into.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted to be able to declaratively manage my desktop/laptop/servers including packages + configuration to ease my administrative burden and make them more reproducible.','Y','','Y','','','','','Declarative Configuration','\"Atomic\" upgrades/rollback','System configurability + management','','Either still gentoo or maybe Guix','Y','','','Y','','','','','','','sway','home-manager, direnv, devshell','',''),(2371,'1980-01-01 00:00:00',5,'en','944251007','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','Strategy consultant','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted to build static executables from Haskell code and stabilize CI for many different versions of PostgreSQL','','Y','','Y','','','Y','','Y','Y','','','','Y','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A14','A4','A9','','','','','','','','','','','','',NULL,'Docker :-( ','A1','','','','','Y','','','','','','','','','','','','','','Y','Y','','','A2','A13','A25','','','','','','','','','','','','','','','','','','','A2','A13','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Installed on personal laptop, set up mail server','Y','','','Y','','','','','','','','Ubuntu','Y','','','','','','','Y','','','','','',''),(2372,NULL,NULL,'en','1918382489',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2373,NULL,NULL,'en','698142696',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2374,NULL,NULL,'en','1869151806',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2375,'1980-01-01 00:00:00',5,'en','191495801','A7','A5','male','','','','','','','Y','Y','Y','Y','Y','','Y','','','Y','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','Y','Y','','','A1','Brew sucks, so I tried nixpkgs and it stuck.','Y','Y','','','','','Y','Y','','','','','','Y','Y','','','','','','A1','A6','A2','','','','','','','','A9','A14','','','','','','','','','','','','','',NULL,'Homebrew, native linux package manager','A1','','','','','','','','','','','','','','','','','','','','','','','A2','A1','A17','A7','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'N','Y',NULL,'There isn\'t a binary cache 32-bit build of NixOS for RPi, can\'t be bothered building it myself.','I get a new machine or a 32-bit binary build for Raspberry Pi becomes available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Love Nix and NixOS. Documentation is not great though, it scares outsiders away. Would be great to have documentation without Nix jargon that progresses from just using Nix and nixpkgs as a package manager replacement only (e.g. instead of homebrew on Mac or apt on Debian), then adds in declarative shell, then adds in NixOS, etc.'),(2376,'1980-01-01 00:00:00',5,'en','541524835','A3','A3','male','','','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','I was looking for a stable linux distro and a easy way to work in multi disciplinary projects without mess my OS.','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A2','A1','A10','','','','','','','','A6','A14','A13','','','','','','','','','','','','',NULL,'asdf','A4','','','','','','','','','','','','','','','','','','','','','','','A1','A2','A9','A19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was looking for a stable linux distro.','Y','','','','','','','Reproducible','Stable','Control','to early to say something','Fedora / Manjaro / Void Linux ','Y','','','','','','','','','','Pantheon, Awesome','to early to say something','to early to say something','Thanks for develop nix and nixOS'),(2377,'1980-01-01 00:00:00',5,'en','1317650449','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was interested in deterministic and reproducible systems.','Y','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A7','A2','A3','','','','','','','','A7','A6','A8','','','','','','','','','','','','',NULL,'Debian and Arch','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A17','','','','','','','','','','','','','','','','','','','','A17','A23','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I have contributed in the past and would like to do so in the future, but at the moment I do not have enough bandwidth.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','I was using Arch and started using nix on top of it, once I felt familiar enough with nix I decided to move to NixOS.','Y','','Y','','','','','Rollbacks','Deterministic configuration','Modules','I would make it easier to develop modules. The module system is very powerful but also very complex. I write modules from time to time and each time I have to relearn how to do it. I would also make it easier to *test* the modules, again, each time I get to work on a new module, I need to relearn how the test framework works and often it\'s not just worth the time.\r\n\r\nI would also make it easier to manage secrets, I am currently trying to make it easier using systemd-creds.\r\n\r\nDebugging in case of errors is also painful, the stack trace is always very long and there are so many anonymous functions that it\'s really hard to understand what\'s going on. Often it\'s easier just to change something and retry than trying to understand what\'s actually going on.\r\n\r\nAdditionally, I would like to have first class support for AppArmor, SELinux and secure boot: not only they are good security mitigations, but not having them is a blocker from introducing nix/NixOS at work.','Arch for personal use/development and Debian for servers.','Y','','','','','Y','','','','','AwesomeWM','','NixOps, but it was too buggy and badly maintained. Eventually I decided that I was better off with my own solution that I could understand than any other solution proposed by others. For my personal project that\'s what is working right now. But I\'d love to have a simple and well maintained deployment tool.','Thanks for working on nix and NixOS!'),(2378,'1980-01-01 00:00:00',5,'en','1886447712','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','N','N','','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2379,'1980-01-01 00:00:00',5,'en','1281389354','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A9','','','','','','','','A8','A14','A2','','','','','','','','','','','','',NULL,'asdf\r\nprobably guix','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A24','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Colleague and friends advertised nixos to me. Haven\'t gone back ever since.','Y','','','','','','','Declarative configuration','Rollbacks to previous versions','Configuration of multiple machines under a same repo','','','Y','','','','','','','','','','qtile','','',''),(2380,'1980-01-01 00:00:00',5,'en','1973802280','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','The phylosophy of declarative configuration and reproducibility is really appealing to me','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A8','A4','A5','','','','','','','','','','','','',NULL,'Dotdrop for dotfiles, Ansible for system configuration ','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I plan to in the future but I\'ve only recently started with Nix','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','The declarative configuration and reproducibility is really appealing to me ','Y','','','','','','','Declarative system configuration','','','','Arch Linux','','','','','','','','','','','i3','','','You rock!'),(2381,'1980-01-01 00:00:00',5,'en','307080520','A5','A2','-oth-','Non-binary','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','I used to use NixOS years ago when it was a little more immature and I was getting a little bored with Arch and wanted to give it another go.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A10','','','','','','','','A14','A8','A5','','','','','','','','','','','','',NULL,'Probably a hack job of half a dozen different version control systems haha.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A15','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Unfamiliarity with the Nix language (working on that though)','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','','','','','','Rollbacks','Configuration through one centralized system ','Package availability','I would add better documentation and learning resources.','Arch Linux or Gentoo','','','','','','','','','Y','','','','NixOps (confusing documentation based on two separate versions of the software v1 and v2 still being used)',''),(2382,NULL,1,'en','1143692205','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2383,NULL,NULL,'en','1697746092',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2384,'1980-01-01 00:00:00',5,'en','1685086522','A5','A6','male','','','','Y','Y','','','','','','','','','Y','','Y','','','','','','','','Y','','Y','','','','','RHEL, NixOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I always wanted to learn Linux but did not know where to start. My work had me working on RHEL servers but I wanted to learn more. I was introduced to NixOS by a coworker (now my manager). Over the past few years, I learned enough to install NixOS on a couple of old personal laptops. The documentation is daunting and sometimes is missing basic steps. So it does take me time to figure out what I missed or did not properly understand.','','','','','','RHEL','Y','','','Y','','','','Y','','','Y','','','','A1','A2','A8','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'I do not know enough to say...','A4','','','','','','','','','','','','','','I stay safe at this time...','','','','','','','','','A21','','','','','','','','','','','','','','','','','','','','','A21','','','','','','','','','','','','','','','','','','','','','','','','','A1','','My lack of knowledge. I do want to contribute someday but there is a lot to learn yet.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','Y','','','','Ease of setup when internet access is open','','','When the operational environment is restrictive, e.g. no direct internet access, setting up NixOS is difficult for me.','I do not know enough to answer the question','Y','','','','','','nix-build','','Y','','','I primarily pull in Posit Workbench for my personal work, building the necessary packages for R.','I am still learning so I have not reached this point yet.','Just a newbie trying to learn as much as I can.'),(2385,NULL,NULL,'en','1061508211',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2386,'1980-01-01 00:00:00',5,'en','2056175825','A2','A3','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','Y','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I\'m mainly using as part of NixOS but I want to learn it so I can contribute packages. Plus it\'s a cool language (love that it\'s actually purely functional in that it doesn\'t have I/O) and it\'s a really neat idea to use it to declare all package definitions and dependencies.','','','','','','','Y','','','','','','','','Y','Y','','','Y','','A3','A7','A10','','','','','','','','A9','A8','A5','','','','','','','','','','','','',NULL,'Probably whatever package manager the OS has or Brew for Mac.','A1','','','','','','','','','','','','','','','','','','','','','','','A4','A2','A15','','','','','','','','','','','','','','','','','','','A3','A4','','','','','','','','','','','','','','','','','','','','','','','','A1','','The documentation :(\r\nLike even now, there\'s llama.cpp which is a C++ port of the LLama model. I can compile it without dependencies just fine, but as soon as I want to enable blascl or ROCm OpenCL I\'m lost:\r\n- Can I do that from the command line? or do I need to define a nix.shell? The project has a flake.nix, how exactly do I invoke it?\r\nWould love to contribute / maintain packages which is why I\'m hoping to climb the very steep learning curve :)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','AFAIK NixOS is the only rolling-release distro that doesn\'t break (or if it does, being able to rollback to a previous generation is a life saver).\r\n\r\nUbuntu is stable but it you want recent packages you need to compile them yourself (and I don\'t want to manage them all their updates)\r\n\r\nArch is bleeding edge but each `pacman -Suy` might require you to cancel all weekend plans to fix it. Also it has packages so if you want to compile software you need to use things like AUR(?) \r\n\r\nGentoo is nice, but you waste a lot of energy re compiling stuff (I don\'t need to compile my own kernel)\r\n\r\nNot sure what else?','Y','','','','','','','Stable base os (nixos-stable), but bleeding edge userspace (nixpkgs-unstable)','all the system is defined in a single file. No more tweaking configs and having to redo it if reinstalling on new machine.','Massive amounts of packages','1. Make the documentation / man pages as good as OpenBSDs.\r\n2. Write a book that would explain everything there is to understand about nix. Think Absolute OpenBSD by Michael W. Lucas\r\n','Probably would have to use something like Ubuntu because of its stability. I really like Linux but I can\'t risk the instability caused by a rolling release.','Y','','','','','','','Y','','','i3 / regolith (though that is an Ubuntu distro)','n/a','n/a','Love the idea of a survey! Thanks also for all the great work!\r\n\r\nConsider asking about the community as well given this is a \"community survey\". For example:\r\n\r\n- do you use all of the community channels - discourse, element etc\r\n- would you rather have more or less community channels\r\n- do you attend any local meetups? do you have any nearby ones?\r\n- are you aware of the Nix Foundation activities? Would you be able / have you considered donating (not sure about the last one but maybe something to think about)'),(2387,'1980-01-01 00:00:00',5,'en','439906440','A2','A3','male','','Y','','','','','','','','','Y','','','','Y','','','Y','','','Y','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','Y','','','A2','A1','A7','','','','','','','','A8','A2','A12','','','','','','','','','','','','',NULL,'guix','A2','','Y','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A2','A3','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','','','','','freedom to experiment','a degree of immutability','system composed in an understandable way','An out of the box feature to lock the OS down so that it is not able to run any code that is not part of the configuration.','fedora','Y','','','Y','','','','','','','sway','naersk, fenix','',''),(2388,'1980-01-01 00:00:00',5,'en','744058274','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Using NixOS required starting to use Nix.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A7','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'I would try Guile Scheme for use with Guix.','A2','','Y','','','Y','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A13','A12','A14','','','','','','','','','','','','','','','','','','','','','','','A1','','Software I need is either already packaged, or gets packaged or patched quickly enough such that I don\'t need to contribute.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','NixOS\' feature set promised simpler and safer GNU/Linux desktop management.','Y','','','','','','','Package availability','Declarative configuration and environments','Rollbacks','','Another immutable OS.','Y','','','','','','','','','Y','','Comma.','','Keep up the good work! I don\'t want to imagine a future without NixOS (or similar immutable operating systems) simplifying GNU/Linux desktop management.'),(2389,NULL,2,'en','359383272','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A3','Some recommendations on YouTube and also I was bribed by the fact that the entire system can be described in one configuration file, and then it started.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A6','','','','','','','','A5','A13','A14','','','','','','','','','','','','',NULL,'Ansible, Docker, Kubernetes, maybe Fedora Silverblue or similar distro','A2','','','','','Y','','','','','','','','','','','Y','','','','','','','A1','A3','A2','','','','','','','','','','','','','','','','','','','A5','A9','A2','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2390,'1980-01-01 00:00:00',5,'en','869621696','A5','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Application Architect','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A3','Once the build works it keeps working.','Y','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A8','','','','','','','','','A12','A6','A3','','','','','','','','','','','','',NULL,'multiple different tools like docker, language-specific package managers (e.g., pyenv)','A4','','','','Y','Y','','','','','','','','','','','','','Y','Y','','','','A4','A5','A1','A15','A2','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Broken my Debian install. Enjoy functional programming, and found NixOS to be a convenient way to specify a desktop OS.','Y','Y','','','','Y','','NixOS Modules','NixOS Tests','','Nothing','I\'d cry and learn Guix','Y','Y','','','','Y','','','Y','Y','','nixpkgs-fmt (https://github.com/nix-community/nixpkgs-fmt)','mavenix (https://github.com/nix-community/mavenix)',''),(2391,'1980-01-01 00:00:00',5,'en','1856140926','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Originally, I was looking for a way out of homebrew dependency hell. The way that Nix manages its dependencies made Nixpkgs a fantastic replacement for my use cases. ','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A9','A1','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Tough to say at this point.','A6','','','','','','','','','','','','','','','','','','','','','','','A10','A1','A2','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Really enjoyed Nixpkgs and home-manager, and had been using those on macOS and a GNU/Linux machine. I wanted to install NixOS on my personal laptop (2013 MacBook Pro) and had a blast figuring that out! At a later date I put NixOS on my Raspberry Pi as well. ','Y','','Y','','','','','Declarative configuration','Rollbacks','Easy upgrades','','','Y','','','','','','','','','','Sway','nil\r\nnix-update\r\nnixpkgs-fmt\r\nnixpkgs-review','','Nix is great, I would love to see a real emphasis put on documentation/onboarding/learning resources. '),(2392,NULL,NULL,'en','913914409',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2393,'1980-01-01 00:00:00',5,'en','1592170629','A5','A3','male','','','Y','','','Y','','','','','','','','','','Y','','Y','Y','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','','Y','','A1','A6','A2','','','','','','','','A12','A6','A8','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','-oth-','I maintain and write flakes for originally non nix projects',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','New laptop, wanted to try something new.','Y','','Y','','','','','Hermetic and reproducible builds','Cross compilation','World pinning','','Gentoo','Y','','','Y','','','','','','','Hyprland','Agenix, flake parts, devshell, naersk','Flake utils',''),(2394,NULL,NULL,'en','1805078147',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2395,NULL,NULL,'en','1489806400',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2396,'1980-01-01 00:00:00',5,'en','1409067753','A5','A4','male','','','','','','','Y','','Y','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','I was intrigued by the declarative configuration, and I had a spare chromebook (an Asus C720, I think) and decided to give it a go.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A3','','','','','','','','','A5','A4','A7','','','','','','','','','','','','',NULL,'apt. ','A2','','','','Y','','','','','','','','','','','','','Y','','','Y','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Lack of time.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A5','Same as Nix.','Y','','','','','','','Declarative configuration.','Manage and backup system config with git.','Builtin tools for restoring and backing up the system configuration.','I would probably coalesce all the subcommands into one, in the style of apt.','Ubuntu.','Y','','','','','','','','','','i3., stumpwm','','',''),(2397,NULL,1,'en','564652211','A5','A3','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2398,NULL,NULL,'en','2833455',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2399,'1980-01-01 00:00:00',5,'en','680900802','A5','A2','-oth-','Non-binary','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','Alpine Linux!','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A2','Zach Latta from Hack Club introduced me to it! ','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A6','A2','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Guix!','A1','','','','Y','','','','','','','','','','','','','','','','','','','A15','A9','A13','A22','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Documentation being so bad, sorry. I just have to copy paste other projects and hope my edits work.','N','Y',NULL,'Switched to M1 macs','Better M1 support!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2400,'1980-01-01 00:00:00',5,'en','207819755','A3','A3','male','','Y','','','','','','Y','','','','Y','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','Y','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','','A2','A3','A8','','','','','','','','A13','A8','A10','','','','','','','','','','','','',NULL,'','A4','','Y','','Y','','','','','','','','','','','','','Y','Y','Y','','','','A4','A3','A20','A26','','','','','','','','','','','','','','','','','','A4','A20','A26','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(2401,'1980-01-01 00:00:00',5,'en','2009849142','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A7','','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A5','A10','','','','','','','','A5','A14','A3','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A3','A13','A2','A17','A15','','','','','','','','','','','','','','','','','A3','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','','dwm','','',''),(2402,'1980-01-01 00:00:00',5,'en','1981324509','A5','','male','','','','','','','','','Y','','Y','','','','Y','','','','','','Y','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend suggested that my config and system management woes could be solved by this OS. Linux already lacked and still lacks an Apple Time Machine like feature and NixOS felt like a middle ground. ','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A10','','','','','','','','A4','A13','A2','','','','','','','','','','','','',NULL,'macos','A7','','','','Y','','','','','','','','','','','','','','','','','','','A15','A3','A2','','','','','','','','','','','','','','','','','','','A15','A9','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Ability to see how to quickly test something new. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','','','','','','','','','','','','','Y','Y','','','','',''),(2403,'1980-01-01 00:00:00',5,'en','1588768397','A5','A2','-oth-','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I started using Nix because I was fascinated by the ability to configure my whole system in a single file, as well as quickly install programs I need for tasks without interfering with the rest of my system.','','','','','','','Y','','','','','','','','Y','','Y','','','','A10','A1','A3','','','','','','','','A4','A5','A8','','','','','','','','','','','','',NULL,'Guix or Debian','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A15','A3','','','','','','','','','','','','','','','','','','','A22','','','','','','','','','','','','','','','','','','','','','','','Y','None, because overlays are difficult','A1','','Poor documentation and the confusing configuration language.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Same as Nix','Y','','','','','','','','','','I would add comprehensive documentation via something like manpages.','Guix or Debian','Y','','','','','','','','','','Sway','','',''),(2404,'1980-01-01 00:00:00',5,'en','647970487','A2','A3','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','a friend of mine used it and well, \"infected\" me with it. and to be honest, it makes a sysadmins life a lot easier. ','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A14','A4','A6','','','','','','','','','','','','',NULL,'Ansible and maybe docker ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A10','A26','A9','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don\'t have a github account, and i don\'t want one ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','a friend of mine used it, shoed it to me and since i was sick of using ansible i tried it - and failed because of lacking documentation and really bad error messages.\r\nwent back to ansible but after a few was finally so sick of it that i finally switched to nix(os) it was a really hard learning curve but eventually i made it ','Y','','Y','Y','','','','Reproducibility of systems with just a few files in a git repo ','painless rollbacks','','','archlinux ','','','','','Y','','','','','','','nix-darwin','',''),(2405,'1980-01-01 00:00:00',5,'en','433457567','A5','A3','-oth-','','','','','','','Y','','Y','','','','','','','','Y','','','','','','','','','','','Y','Y','','illumos','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','','Y','','Y','','','','','','','Y','','Y','','A2','A1','A10','','','','','','','','A9','A4','A13','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','A2','A1','A10','','','','','','','','','','','','','','','','','A26','A15','A25','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','Y','Y','','','','','','','','','','','','','','Y','','','','','','https://github.com/nix-community/impermanence','',''),(2406,NULL,NULL,'en','1810021631',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2407,'1980-01-01 00:00:00',5,'en','334820858','A5','A3','-oth-','these aren\'t gender identities','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','Y','','Y','','','BSD BusyBox/Linux','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I got sick of provisioning my laptops with Ansible and wanted something better than YAML. Unfortunately Guile and Guix was too ideological to use well and I got stuck with Nix lang','','Y','','','Y','','Y','Y','','Y','','Y','','','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A14','A4','A3','','','','','','','','','','','','',NULL,'Probably whatever the KDE version of Fedora Silverblue is called','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A17','A24','A25','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','-oth-','every time I\'ve tried to contribute to nixpkgs my contributions have been ignored and then superceded by one of the NixOS superfriends or a package maintainer without crediting me.',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I told this already.','Y','','Y','Y','','','','Declarative builds','Binary cache','Rollbacks even of user managed software ','','','','','Y','','','Y','','','Y','','','All the 2nix suck.','Flakes. Being so tightly tied to git is not a pattern I want to adopt for personal projects.',''),(2408,'1980-01-01 00:00:00',5,'en','1660008667','A5','A3','-oth-','Nonbinary','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was tired of my combination of Homebrew/ASDF/rbenv/nodenv/etc etc etc\r\n\r\nI wanted a tool that I could define software with once and have that definition as applicable for a development toolchain as it would be for running in production.\r\n\r\nI wanted to share those definitions to enable collaboration.','Y','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A3','A9','A13','','','','','','','','','','','','',NULL,'Homebrew+ASDF for development, Docker for deployments','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A24','A23','A2','A15','A19','','','','','','','','','','','','','','','','A2','A1','A24','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Nothing; I\'ve contributed in the past, I just haven\'t recently.','N','Y',NULL,'I develop primarily on an M1 Mac; container support is pretty finicky and my employer doesn\'t use Nix at all. Being the only user of Nix at my company I don\'t have a lot of need to force our current application stack into Nix.','My employer adopting NixOS; which would mean a much easier packaging/developer experience to the point that adoption makes sense over tossing everything into Docker containers because that\'s what people know and AWS has looots of examples and support for Docker.\r\n\r\nIt\'s also finicky getting NixOS containers running on a Mac–I know of several solutions but I\'m not sure the level of support for them other than \"they work now\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Direnv, the nil Language Server','Python packaging. I spent several days trying various ways of building an older version of dbt (Data Build Tool) which makes use of some Rust extensions. I felt like I was so close to fixing the build process multiple times but I just kept running into problems I didn\'t know how to solve.\r\n\r\nIt\'s really hard to get packages build if they don\'t fit nicely into one of the buildXPackage helpers and it\'s turned me off of converting any of the Docker images we use today at into NixOS containers.\r\n\r\nI WANT to. I\'d love to be able to take those definitions and say, \"spin these up under a simple supervisor\" or \"throw these into a local k8s cluster\".','Appreciate all the work you all do <3'),(2409,NULL,3,'en','593673910','A5','A3','fem','','','','','','','Y','','','Y','Y','','','','Y','','Y','Y','Y','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was nerd-sniped by a friend.','Y','Y','','Y','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A3','A7','','','','','','','','A8','A6','A3','','','','','','','','','','','','',NULL,'Probably Guix or Arch\'s AUR','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A15','A17','A3','A13','A22','A1','','','','','','','','','','','','','','','A9','A1','A22','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I got nerd-sniped by a friend and it was all downhill from there.','','Y','Y','Y','','','','Reproducibility','Extendability','Secret support','I\'d love a way to bake-in secret support so I don\'t have to keep reinventing it.','Probably Guix or Arch Linux','','','Y','Y','','','','Y','','','',NULL,NULL,NULL),(2410,'1980-01-01 00:00:00',5,'en','103224501','A2','A3','-oth-','idc','Y','','','','','','','','','','','','','','','','','','','','','Y','','suffering from computers','','','Y','','','android,ios','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','got annoyed with state changing','','Y','','','','','','','','','','','','','Y','Y','Y','','Y','','A2','A9','A7','','','','','','','','A5','A8','A2','','','','','','','','','','','','',NULL,'smartos, arch,fedora silver/blue','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','Y','','','','declarative systems (stateless)','ability to rollback','','','','Y','','','Y','Y','','','','','','sway','doom-emacs\r\ndisco\r\nnixos-anywhere\r\nnix-infect\r\nflake-utils','','meow'),(2411,NULL,2,'en','1867383283','A5','A2','fem','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was bored and wanted a better way to standardize configuration across my hosts','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A7','A1','','','','','','','','A6','A12','A9','','','','','','','','','','','','',NULL,'Ansible','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2412,NULL,NULL,'en','992892368',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2413,NULL,NULL,'en','789567237',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2414,'1980-01-01 00:00:00',5,'en','73334439','A5','A4','male','','','','','','','Y','Y','','','','','','','','Y','','Y','','Y','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted an isolated environment to build a project and the OS specific versions of the software were incompatible. Nix allowed me to run the build without interfering with the local system.','','Y','','','','','Y','','','','','','','','Y','','','','','','A3','A6','A2','','','','','','','','A14','A4','A12','','','','','','','','','','','','',NULL,'Probably distrobox with hand-rolled shell scripts. (To replace nix-shell features)','A4','','','','','','','','','','','','','','','','','','Y','','','','','A15','A2','A3','A13','A25','','','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I didn\'t know I could, or how to go about it. But also, I haven\'t found it lacking enough to pursue such a thing.','N','Y',NULL,'The big selling point for me was nix-shell which I can use elsewhere. Using the whole OS was just less convenient and familiar.','I do test it out periodically, and my familiarity is increasing. I will likely switch one of my machines to it full time at some point.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'My main workflow is just a set of nix-shell configs I keep in my repo. When I want to work on a project, I just shell into that specific environment and work inside of a predictable space. I don\'t mingle my projects with the local nix store. ','Flakes. I get why people like them, and the reproducible builds are compelling, but the interactive approach of setup, building, and locking state, doesn\'t feel declarative. I also work in a monorepo and can\'t add flakes to the root of my repo.','Keep up the good work. While there may be things to improve within Nix, there is a lot that has been done well and I appreciate that it\'s already a tool I use regularly (even if not to the fullest extent).'),(2415,NULL,1,'en','35340600','A6','A3','male','','Y','','','Y','','Y','','Y','Y','Y','Y','Y','','','','','Y','','','','','','','','','','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2416,'1980-01-01 00:00:00',5,'en','847180535','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Watched a youtube video about nix package manager by ChrisTitusTech went into the comments and\r\nHeard about nixos, was curious so i gave it a try','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A10','A7','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'I was using fedora but since vanillaOS and blendOS exist now I would\'ve given them a try','A2','','','','Y','Y','','','','','','','Y','','','Y','','','','','','','','A15','A2','A9','','','','','','','','','','','','','','','','','','','A15','A17','A2','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Same as nix watched the video about nix by ChrisTitusTech went into the comments and heard about nixos and gave it a try','Y','','','','','','','Declarative ','Reproducibility ','Easier to package apps that are not it the repo also i can create options ','Declarative disk partitioning','Was using fedora but since vanillaOS and blendOS exist will try those ','Y','','','','','','','','','','Hyprland','','',''),(2417,'1980-01-01 00:00:00',5,'en','1070601192','A5','A4','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I wanted declarative management of my machines, stepping up from automation using shell scripts and home brew. ','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A4','A8','A13','','','','','','','','','','','','',NULL,'Shell scripts and homebrew','A1','','','Y','Y','Y','','','','','','','Y','','','','','','','','','','','A8','A9','A1','A2','','','','','','','','','','','','','','','','','','A8','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time, need, work policies','N','N','Macos disappearing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nix-darwin','',''),(2418,'1980-01-01 00:00:00',5,'en','1191262210','A2','A3','male','','','','','','','Y','','Y','','','','','','','Y','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I fell in love with the idea of \"dotfiles on steroids\" and isolated dev environments.','Y','Y','','','','','Y','Y','','','','','','','Y','Y','','','','','A1','A2','A7','','','','','','','','A4','A8','A1','','','','','','','','','','','','',NULL,'Adhoc shell scripts, Docker','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A4','A2','A7','A15','A24','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Unaware of a \"best practices\" merge request example. Unsure of how to verify QA of my work.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','Atomic OS upgrades','Infrastructure as code','One config that works for many devices','','Ubuntu','Y','','','','','','','Y','','','','','','Very satisfied with the Nix MacOS installer by Determinate Systems.\r\n\r\n'),(2419,'1980-01-01 00:00:00',5,'en','450734413','A5','A2','fem','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','It seems like a better way of doing things ','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A6','','','','','','','','A5','A10','A4','','','','','','','','','','','','',NULL,'Arch Linux and containers','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A3','A4','A1','','','','','','','','','','','','','','','','','A1','A2','A15','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I don\'t sufficiently understand Nixpkgs','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','It sounds like a better way of doing things','Y','','Y','','','','','Declarative system configuration','Reproducibility','Extensibility/customizablility','I would make it not use bash for building stuff. A Nix only build solution would be wonderful ','I\'d just go back to Arch Linux and containers','Y','','','','Y','','','','Y','','','','','Many things require simply looking at the nixpkgs source. That would be a much better experience with better commented code, which would also mitigate documentation problems'),(2420,NULL,1,'en','120304387','A2','A5','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2421,'1980-01-01 00:00:00',5,'en','747362142','A5','A3','male','','','','','','','Y','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','devops introduced it at work','','Y','','','','','Y','','Y','','','','','Y','Y','','','','','','A7','A9','A2','','','','','','','','A4','A8','A2','','','','','','','','','','','','',NULL,'building huge debians that contain our dependencies','A7','','','','Y','Y','','','','','','','','','','Y','','Y','Y','','','','dispatch from jenkins/gitlab to hydra','A4','A2','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','mostly time, figuring out how to test upstream patches thoroughly, not fully understanding the implications. Works for me, but not sure how much time it would take to make it work for everyone.','N','N','My next install will likely try it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nixpkgs-fmt','','Huge shoutout to the nix community, it has solved real problems for our company.'),(2422,NULL,1,'en','443388869','A5','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2423,'1980-01-01 00:00:00',5,'en','1315086829','A6','A2','male','','Y','','','Y','','','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A1','A7','A3','','','','','','','','A5','A14','A9','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','Rollback support','configuring system from a single file','high number of package available','Better Documentation and better learning resources','','','','','','','','','','','','Hyprland','','',''),(2425,'1980-01-01 00:00:00',5,'en','580568091','A2','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','As someone fully bought in to infrastructure as code, Nix seemed intriguing. I\'ve had a couple of attempts at NixOS, first as a server OS which didn\'t quite pan out, then as a casual desktop, which is going better. During that time I adopted Nix on Ubuntu for my work desktop system instead of Homebrew, and I\'ve experimented with the same on MacOS more recently.','Y','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A7','','','','','','','','A14','A8','A9','','','','','','','','','','','','',NULL,'Homebrew, which kinda sucks on Linux, but is convenient.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Inexperience','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Same as answer for Nix, in fact started with NixOS first.','Y','','','','','','','Declarative configuration of the entire system','Ready availability of broad range of up to date packages','Ease of rollback to previous states','','Probably Ubuntu or Arch','Y','','','','','','','Y','','','','','',''),(2426,NULL,NULL,'en','45523678',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2427,'1980-01-01 00:00:00',5,'en','585421438','A2','A3','fem','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I needed to reinstall my OS because the buildup of cruft was getting unmanageable, so I switched to nixos where that simply doesn\'t happen! I then fell in love and now run nixos on all my machines and my home server runs nixos containers.','','','','','Y','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A14','A4','A8','','','','','','','','','','','','',NULL,'debian. I value stability and reliability over being on the cutting edge, and while nixos doesn\'t have a true lts channel the safe upgrades make up for that and give me both, which is wild to me still.','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A6','A1','A12','A2','A3','','','','','','','','','','','','','','','','','A2','A6','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Spoons and knowledge. I\'m learning. I\'ll hopefully end up submitting a PR for a module for prismatik in a few months.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as I started using nix, it just spoke to me.','Y','','Y','','','','','A centralised configuration that describes my systems ','The ability to try out new things and then cleanly fiddle or roll back without leaving cruft','The ability to share configuration between machines and deploy to all at once ','A graphical tool for configuration management. It doesn\'t need to be able to do everything and I probably wouldn\'t even use it because my configuration is well organised by now, but I want to recommend this to less technical users and while the story is \"okay so open your text editor and...\" I can not.','debian!','','','','','Y','','','','','','bspwm','','',''),(2428,NULL,1,'en','1712510733','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2429,'1980-01-01 00:00:00',5,'en','1112702109','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Ordinary end/desktop user.','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','','','','','Y','','','','','','','Y','','','','','','','A1','A7','','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Been using Debian for a while and just felt like I wanted something new, something else.','Y','','','','','','','Rollback','Easy to \"clone\" between my machines.','','Make the documentation about everything more welcoming for new users/amateurs/ordinary desktop users.\r\nMaybe some up to date and easy to follow guides about setting up a tiling system with flakes, home manager, modules and all that.\r\nWil T made some good content on youtube but they are pretty old by now. ','Debian.','','','','','','','','','','','Hyprland.','','','Keep up the good work. Even tho I\'m just a regular desktop/gaming/end user I really appreciate everything you guys are doing for the community.\r\nThank you.'),(2430,NULL,1,'en','203204124','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2431,'1980-01-01 00:00:00',5,'en','1496089657','A2','A5','male','','','Y','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','I was admins sys for a engineering school at the time, and was searching for a solution to allow users to freely install software.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A1','A2','A8','','','','','','','','A14','A4','A13','','','','','','','','','','','','',NULL,'guix','A1','','','','Y','Y','Y','','','','','','','','','','','Y','','','','','','A13','A2','A15','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Lack of clear documentation','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was using home-manager on a debian, so was already sold on the module system. I switched to nixos when I changed my laptop.','Y','Y','Y','Y','','','','reproductibility','module system','','use nixos module inside containers','guixsd','Y','','','','','','terraform','Y','','','','home-manager','',''),(2432,NULL,2,'en','120321005','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','N','','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2434,'1980-01-01 00:00:00',5,'en','1147262646','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','N','N','','Y','Y','','A beginner friendly documentation for new upcoming linux user.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','A beginner friendly documentation would attract a lot more not only linux user but also a lot non-linux user as well.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None','I think creating a discord channel like other popular distro will help to communicate with other power user more easily and grow as a community as well.'),(2435,NULL,1,'en','1155087207','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2436,'1980-01-01 00:00:00',5,'en','297185739','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The servers of our workplace run it. I adopted it after seeing how effective my advisor can work with it. ','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A2','A7','A1','','','','','','','','A5','A8','A11','','','','','','','','','','','','',NULL,'ansible, vagrant, docker...','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','Y','','A15','A3','A4','A2','A1','A5','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I directly used nix with nixos because i wasnt convinced yet that this wouldnt irritate my existing system. ','Y','Y','Y','Y','','','','dependencies: pinning, install conflicting versions at the same time','enabling modules asserts settings of related options','good infrastructure to integrate self-packaged software','nixos config option diffing','archlinux','Y','','','','','','','Y','','','','sops-nix','',''),(2437,'1980-01-01 00:00:00',5,'en','1591193071','A2','A3','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A8','A3','A9','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','','','','','','Y','','','Y','','','','','','','sway','','',''),(2438,NULL,1,'en','1921620745','A5','A5','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2439,'1980-01-01 00:00:00',5,'en','1420417855','A2','A4','male','','','','','Y','','Y','','','','','','','','','Y','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','','','','','Y','','','','','','','','','','Y','','','','A2','A7','','','','','','','','','A5','A8','','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(2440,'1980-01-01 00:00:00',5,'en','500738309','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','','A3','A2','A11','','','','','','','','A6','A8','A14','','','','','','','','','','','','',NULL,'Aptitude, Snap, Container','A3','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','A2','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Tried, but got no reaction on my merge request.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','In order to replace my Ansible roles.','Y','Y','Y','','','','','declarative','home-manager is awesome (even if not especially part of NixOS)','','- add secret management\r\n- finish https://github.com/zhaofengli/attic','Arch-Linux, Docker, Ansible, Terraform','Y','','','','','Y','','','','','sway','https://github.com/numtide/nixos-anywhere\r\nhttps://github.com/nix-community/disko\r\nhttps://github.com/Mic92/sops-nix','https://www.cachix.org/','don\'t be evil'),(2441,NULL,1,'en','1184121862','A2','A5','fem','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2442,NULL,1,'en','107601100','A2','A3','male','','Y','','','','','','','','','Y','','','','','','','Y','','','Y','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2443,'1980-01-01 00:00:00',5,'en','1517442230','A2','A3','male','','Y','','','','','','','','','Y','','','','','','','Y','','','Y','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A11','A7','A10','','','','','','','','A4','A8','A13','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','Gitea Actions','A13','','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','Y','Y','Y','','','','Declarative System Configuration','Reproducible System Configuration','','','Arch?','','','','','','Y','','Y','','','','nix-output-monitor\r\nhome-manager\r\ninstall-nix-action\r\nnvd\r\ndisko\r\n','nix-installer-action\r\nnixos-containers\r\nniv\r\n',''),(2444,NULL,NULL,'en','2125297348',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2445,'1980-01-01 00:00:00',5,'en','900978081','A2','A2','-oth-','NB','','','','','','','','','','','','','','','','','','','','','','','','Whore (Sexworker)','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Found out about it from the rust community server. It seemed neat and solved some of the issues we have with other linux distros / package managers.','','Y','','','','','Y','','','','','','','Y','','','Y','','','Building consistent multi user multi machine setups for the polycule.','A1','A10','A2','','','','','','','','A4','A14','A5','','','','','','','','','','','','',NULL,'','A1','','','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A1','','A lack of documentation and easy to follow learning resources on how to add shit to nixpkgs.','N','Y',NULL,'Installations errors relating to non en_US-utf8 char sets.\r\nAlso painfully long builds on slow internet. ','Better documentation, learning resources and slightly more stability.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Home-manager.','',''),(2446,'1980-01-01 00:00:00',5,'en','197078904','A5','A2','-oth-','Non-binary','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','wanted to host multiple minecraft servers & other software and it seemed like a good way to help juggle java versions','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A3','A10','','','','','','','','A8','A5','A2','','','','','','','','','','','','',NULL,'probably just a regular linux package manager, or maybe my own kind of package manager that does something vaguely similar?','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A3','A5','A17','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A2','','no real need to change anything about nixpkgs','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','same as nix - it\'s what\'s on my server & now it\'s on my laptop','Y','','Y','','','','','Nix (package management)','declarative system configuration','it\'s got a fun vibe to it','system configuration (configuration.nix) is kinda a mess (it\'s all just random configuration options), i\'d probably replace that with like a list of packages + making changing configuration of a package (like override/overrideAttrs stuff) easier','probably arch or alpine or some other linux','Y','','','','','Y','','','Y','','','home-manager','','nix is fun :)'),(2447,'1980-01-01 00:00:00',5,'en','2074669462','A5','A3','male','','','','','','Y','','','','','Y','','','','','','','','','','','','Y','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Found out it was possible to configure everything in one file. Got confused by flakes. Slowly getting there but it\'s a rabbithole!','Y','Y','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A7','A1','A6','','','','','','','','A6','A14','A8','','','','','','','','','','','','',NULL,'UbuntuMate','A2','','','','Y','','','','','','','','','','','','','','','Y','','','','A10','A1','A15','A5','','','','','','','','','','','','','','','','','','A10','A5','A15','','','','','','','','','','','','','','','','','','','','','','?','A2','','Not enough information on where to start, what\'s needed. Still figuring Nix out. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','Central located config for build','Rebuild cache','Packages','A GUI for Nix config would be a gamechanger for the world.','WSL2 / UbuntuMate','Y','','','','','','','','Y','','','','',''),(2448,'1980-01-01 00:00:00',5,'en','119340214','A2','A2','male','','','','','','','','','','','','','','','Y','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Managing servers is pain','','','','','','','','Y','','','','','','Y','','','Y','','','','A2','A10','A9','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'CentOS Stream with some containers','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','Y','','','','','Centralised config','Package availability','','','CentOS Stream','','','','','','','','','','','','','',''),(2449,'1980-01-01 00:00:00',5,'en','928070034','A5','A4','male','','','','Y','','','','','','','','','','','','','','Y','','','','','','','Call Center Management','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','','','Just evaluating at this time ','A7','I like the idea of stability and the way packages and configuration were handled.','','Y','','','','','Y','','','','','','','Y','','Y','','','','','A4','A1','A7','','','','','','','','A14','A4','A8','','','','','','','','','','','','',NULL,'Unsure','A7','','','','','','','','','','','','','','','','','Y','','','','','','A5','A1','','','','','','','','','','','','','','','','','','','','A15','A4','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Education ','N','N','I’m looking at it now. I want to be sure of an easy install process into new laptops.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N/A','N/A','Thanks for your time! A lot of interesting ideas!'),(2450,NULL,NULL,'en','866973151',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2451,'1980-01-01 00:00:00',5,'en','645634558','A2','A3','male','','','','','','','','','','','Y','','','','Y','','','Y','','','','Y','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','','','','','','','','Y','','','','','','','','','Y','','','','A7','A10','A1','','','','','','','','A14','A4','A6','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A15','A10','A1','A5','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A5','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','Nixops',''),(2452,'1980-01-01 00:00:00',5,'en','1963513399','A3','A2','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','It allows me to create a reproducible system, in my case I\'m constantly changing my computers and it makes my life so much easier and also I\'m able to see what impact would have some features that I\'m using with Nix over all my system.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A10','A6','','','','','','','','A4','A14','A5','','','','','','','','','','','','',NULL,'I\'d use scripts to setup everything, a worst world for me of course, with Nix I\'m saving lots of hours for each new computer','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A1','A2','','','','','','','','','','','','','','','','','','','A3','A14','A15','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','','','','','','','','','','','','','','','','','','','','','','','','','',''),(2453,'1980-01-01 00:00:00',5,'en','1094123893','A5','A4','male','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','','','','','','','','','','','','','','','Y','Y','','Y','','','','A2','A4','A1','','','','','','','','A14','A4','A5','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Currently too new, still trying to learn.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I first heard of nixos from this post 19 days ago: https://lemmy.world/post/296390. Any time I\'ve been making system changes on my Ubuntu machine, I\'d keep some notes on the commands I wrote and steps I took all the while kinda wishing my desktop system was a docker session. So the concept was immediately appealing and the first time in something like 15 years I\'ve tried a distro other than ubuntu and redhat. I did experiment with gentoo when I first got into linux, but eventually wanted to settle for something reliable whose issues could be fixed with a quick google search.','Y','','','','','','','','','','Better documentation and better learning resources, just in general a better on-boarding process. For example, I\'ve spent time learning about nix-env only to read another article \"You may not immediately stumble upon a mention, that nix-env or channels are a no-go, and you simply should not waste your time trying to learn those\". It was just so hard to tell which concepts I needed to learn about or which ones should be learned first and often trying to process all the new commands/features without having much context for what that aspect of nixos will do for me. Even now rereading the flakes wiki page, I\'m still not entirely grasping what it is flakes does for me that makes it preferable to other methods. They don\'t spend any time motivating the concept. Why was this tool created? How are people using it to their advantage? How is it better than other options?\r\n\r\nAnother thing that was a little jarring was how easy it is to make changes, say in gnome settings, that won\'t be captured in your nixos config files and how, comparably harder, it is to then try to bring those into your nixos config files. I ended up finding a workflow using `dconf watch /` (which there was no easy way for me to discover this trick) and manually rewriting those to be nix syntax. There is no reason this couldn\'t largely be done for you simply upon changing a setting in gnome and have it generate a nix file with all settings that currently differ from default.','I\'d still just be using Ubuntu, the same thing I\'ve been using for over a decade.','Y','','','','','','','Y','','','i3','','',''),(2454,'1980-01-01 00:00:00',5,'en','1623032646','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','No benefit','Most likely because I don\'t understand what problem nix solves.','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'See previous answer','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2455,NULL,2,'en','1402413731','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','It solves the problems of dependency hell and allows easy rollbacks.','','Y','','','','','Y','','','','','','','','','Y','Y','','','','A1','A10','A7','','','','','','','','A5','A2','A8','','','','','','','','','','','','',NULL,'archlinux, and ansible playbooks.','A7','','','','Y','Y','Y','Y','','','','','','Y','','','','','','','','','','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A1','','I don\'t currently have the time to maintain packages. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2456,'1980-01-01 00:00:00',5,'en','80806174','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','its concept intrigued me','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A5','A8','A7','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A17','A3','A24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','no reason to contribute','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','like nix, its concept intrigued me. so i installed it for something to do, and ended up in a place where i want to use alpine linux for its minimalism as i have terrible hardware, yet want to use nixos because it\'s usually a pleasure to use. it\'s nice to git clone your config and have a full system up and running in 5 minutes','Y','','','','','','','declarative configuration','starting from a clean slate on every boot','the ability to roll back to a previous known-good configuration','systemd to something else, such as s6, glibc to musl, github to something else, preferably hosted in house','alpine linux','Y','','','','','','','','','','awesome','home-manager\r\nlorri','','focus on flakes'),(2457,'1980-01-01 00:00:00',5,'en','1822485645','A5','A2','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A4','A3','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A26','A2','A6','','','','','','','','','','','','','','','','','','','A26','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','knowing exactly what I configured and installed on my system','Easy rollbacks','config de-duplication across systems','','arch linux','Y','','','','','','nixinate','','Y','','','','',''),(2458,'1980-01-01 00:00:00',5,'en','570914145','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Hate dealing with dependences in homebrew or other package manager.','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A1','A2','A6','','','','','','','','A13','A3','A6','','','','','','','','','','','','',NULL,'homebrew on macOS and arch linux','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A25','','','','','','','','','','','','','','','','','','','','A14','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Don\'t know where to start','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Because I use nix on macOS.','Y','','Y','','','','','Declarative configuration','Nixpkgs modules','','Improving discoverability of options','Arch','Y','','','','','','nixinate','','Y','','','','','Need improvements on the language. Modules or other way of organising codes need to be builtin the language. Better support of tooling around the language such as language server.'),(2459,NULL,1,'en','668719525','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','Y','','','','Y','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2460,'1980-01-01 00:00:00',5,'en','1587643187','A8','A6','male','','','','','','','Y','','','','','','','Y','','','','','','','','','','','','','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I want full control over the software I run. All other Linux distributions have a poor model for achieving this.','Y','Y','','','','','Y','Y','','','','','','','','','Y','','','','A1','A2','A6','','','','','','','','A8','A12','A2','','','','','','','','','','','','',NULL,'GUIX.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A5','A7','A2','A13','A15','A9','','','','','','','','','','','','','','','A5','A19','A1','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I don\'t override the existing nixpkgs definitions all that much.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I use it to configure a small fleet of Raspberry Pis I run in a home lab. I then also started using nix-darwin and home-manager to manage my macOS laptop.','Y','','Y','','','','','A single, consistent, declarative configuration language.','Safe rollback.','Reproducible deployment.','FreeBSD support.','GUIX.','Y','','','','','','','','','','','nix-darwin\r\nhome-manager','Direct use of channels (I always use flakes).','Keep going.'),(2461,'1980-01-01 00:00:00',5,'en','2053089778','A2','A3','male','','','','','','Y','Y','','','','','','','Y','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','','Y','Y','','Y','','Y','Y','Y','Y','','','','A1','A2','A4','','','','','','','','A8','A6','A13','','','','','','','','','','','','',NULL,'Debian Gnu/Linux with Docker, managed over Ansible.','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I tried NixOS when I had to reinstall an OS on my private laptop after I broke my Frankenbian setup there again.','Y','Y','Y','Y','','Y','','Declarative configuration','Portability of configuration between different machines or even architectures (x86_64 vs. aarch64)','Generation rollback in case of misconfiguration or other mishaps','improve remote builder protocol','Debian Gnu/Linux','Y','','Y','','','','','','Y','','','','NixOps','Thanks for all the hard work!'),(2462,'1980-01-01 00:00:00',5,'en','1862528731','A8','A4','male','','','','','','','Y','','Y','Y','Y','','Y','Y','','','','','','','','','','','','','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','Y','','Y','MacOS support, iOS building support','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2463,'1980-01-01 00:00:00',5,'en','330420717','A2','A4','male','','','','Y','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Ubuntu didn\'t do it','Y','','','Y','Y','','Y','','','','','','','Y','Y','Y','Y','','Y','','A1','A3','A10','','','','','','','','A5','A8','A13','','','','','','','','','','','','',NULL,'arch','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','A21','A1','A9','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','documentation about effective and efficient debugging','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','# of packages','Possibilities to adjust packages/inputs/elements','','structured and clear documentation for debugging\r\nproper python support !','arch','','','','','','','','','Y','','','','proper docu',''),(2464,NULL,2,'en','373005337','A2','A3','male','','','Y','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','was curious to see why nixos is mentioned often by linux users, but i never saw anyone who using it in production or desktop','','Y','','','','','','Y','','','','','routers','','','','Y','','','','A2','A7','A1','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'chef or ansible','A4','','','','','','','','','','','','','','none','','','','','','','','yet none','A2','','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','i am not yet competent',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2465,'1980-01-01 00:00:00',5,'en','95705183','A8','A4','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I tried Nixos because I was intrigued by the idea of a totally declarative system configuration that built from source but had effective caching.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A10','A9','','','','','','','','A9','','','','','','','','','','','','','','',NULL,'','A7','','','','','Y','','','','','','','','','','','','','','','','','','A15','A2','A7','A3','A4','','','','','','','','','','','','','','','','','A15','A7','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','fix the lack of pull request reviewers so that the backlog could be cleared and my old PRs wouldn\'t be stuck in limbo forever','','Y','','','','','','','','','','bspwm','','',''),(2466,'1980-01-01 00:00:00',5,'en','2088367309','A2','A4','male','','','','','','','','','','','','','','','','','','Y','Y','Y','','Y','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A7','','','Y','','','','','Y','','','','','','','Y','','','','','','','A1','A10','A6','','','','','','','','A5','A14','A9','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2467,NULL,1,'en','1860555523','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2468,'1980-01-01 00:00:00',5,'en','2112144387','A2','A3','male','','','','','','','','','','','','','','','','','','','','Y','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','','','','A2','A3','A6','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Ansible ','A5','Y','','','Y','','','','','','','','','','','Y','','','','','','','','A2','A1','A4','A10','A26','A15','','','','','','','','','','','','','','','','A2','A10','A1','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','Y','','','','','','','','','','','','Y','','','','','I3','','',''),(2469,NULL,1,'en','1126135070','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','Y','','Y','','','','Y','Y','','OpenBSD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2470,NULL,2,'en','1832126999','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A1','It seems the \"right\" tool to describe software properly ','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','','','','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A15','A13','A2','','','','','','','','','','','','','','','','','','','','','','','A2','','Low experience in the overall system',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2471,'1980-01-01 00:00:00',5,'en','17325679','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted to build the latest version of Zig (a programming livestream) but it requires LLVM which is a pain to get to build/link properly normally. I looked at the creator\'s previous livestreams and saw he was using Nix, so checked it out.','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A4','A5','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A22','','','','','','','','','','','','','','','','','','','','','A22','A9','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I have no idea how and I am not sure I would want to become responsible for it','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','','','','','','','','','','','','','','','','','','','','','','','','Nix flakes is really painful for large repos, and it stops me using it at work (a monorepo)'),(2472,'1980-01-01 00:00:00',5,'en','1312585233','A5','A7','male','','Y','','','Y','','','','','','','','','','','','','','','','Y','','','','','','','','','','linux on chromebook','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I started using Nix in about 2016 to have access to a package manager at Los Alamos National Laboratory (LANL). At LANL users aren\'t allowed to have root access and the technical software is generally way out of date and or broken. Nix enabled me to build an up to date development environment. I quit LANL in 2020, but I\'ve continued using Nix.','','','','','','Linux on chromebook','Y','Y','','','Y','','','','Y','','Y','','','','A2','A7','','','','','','','','','A14','','','','','','','','','','','','','','',NULL,'Debian','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A3','A21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','In order of importance, I am missing: 1. Expertise; 2. Confidence; 3. Time.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','','','','','','','','','','','','','Debian','Y','','','','','','','','','Y','','','','Thanks'),(2473,'1980-01-01 00:00:00',5,'en','336268602','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I got fed up with ASDF and Homebrew','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A24','A23','A15','A13','A22','','','','','','','','','','','','','','','','','A23','A24','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','N','I use NixOS on servers, but on my daily machine I prefer Darwin/macOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2474,NULL,NULL,'en','1184993644',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2475,NULL,1,'en','1123532062','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','It was mostly personal interest. The Nix way was very unusual, but some of the features caught my attention, mainly declarative package management and the ability to have only one place for all system configuration. Now I\'m using NixOS as my daily driver, currently learning to use flakes and make packages.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A1','A3','A7','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Arch or Void Linux, or maybe even Fedora','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Still learning the ropes','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(2476,NULL,3,'en','1646609034','A5','A5','male','','','','','','Y','Y','Y','Y','Y','Y','','Y','','','','','Y','','','','','','Y','','','','Y','Y','','','N','N','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2477,'1980-01-01 00:00:00',5,'en','908280472','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','','','Cybersecurity Specialist','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Because of the recent popularity in youtube ','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A9','A11','A14','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','A9','A18','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','','Hyprland ','','',''),(2478,'1980-01-01 00:00:00',5,'en','363094466','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','I love declarative, reproducible Systems.','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A7','A3','','','','','','','','A6','A5','A4','','','','','','','','','','','','',NULL,'I\'d check out guix but I\'m not sure if it\'s comparable. ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Time, and knowledge ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I like to be able to restore my system from a declarative description. I hate to document procedures. ','Y','','Y','','','','','','','','A language less confusing than nix','Guix','Y','','','','','','Bento','','','Y','I3','Bento','',''),(2479,NULL,2,'en','1827816011','A8','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A7','Recommend it by the Linux Unplugged Podcast, wanted to try it out.','','Y','','','','','Y','Y','','','','Y','','Y','','','Y','','','','A1','A3','','','','','','','','','A14','A5','A6','','','','','','','','','','','','',NULL,'Ansible','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2480,'1980-01-01 00:00:00',5,'en','599662050','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Wanted a self-documenting server that I could redeploy with easy','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A7','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'Ansible + Tumbleweed/MicroOS','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Spare time and learning resources','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Hearing accounts from the Jupiter Network podcasts about a reproducible environment and getting tired of servers that I slowly forgot what changes I made over the years','','','Y','','','','','One config file','Reproducible systems','High package availability','Less boilerplate for ZFS enablement, better documentation (Such as more details on what options do for certain services, and examples of those services for several use cases), make flake/nix-command enablement default, better secret management that doesn\'t rely on external flakes (E.g. sops, agenix)','A combination of either Tumbleweed or Alpine, with Ansible','Y','','','','','','','','Y','','','','',''),(2481,'1980-01-01 00:00:00',5,'en','41277758','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Full declarative management of my configuration was the start -- being able to use it on macOS as well as NixOS has been a revelation. ','Y','','','','','','Y','Y','','','Y','','','Y','Y','Y','Y','Y','Y','','A1','A6','A2','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Homebrew, Ansible.','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A2','A9','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Same as nix in general -- declarative management.','Y','','Y','','Y','','','Declarative management','Easy reversion of configuration','Modules','Improve documentation','macOS, Windows?','Y','','','','Y','','','','Y','','','sops-nix, home-manager, Jovian-NixOS','',''),(2482,'1980-01-01 00:00:00',5,'en','1103462222','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','I first used `nix` because I wanted to try NixOS.\r\nThen, I started using `nix` to build my projects and (relatively) easily automate their builds with my own hydra instance.\r\n','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','Y','','A10','A2','A3','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'There is no equivalent alternative that I know of. (except for Guix ;)\r\nFor ad-hoc environments, I would use `distrobox`.','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','My Debian server was starting to get hard to manage. I was sometimes afraid to make major version upgrades, because I did not know which config files I changed in case I had to reinstall. My docker-compose setup was starting to get messy and hard to maintain.\r\n\r\nThe \"define all the system from a single place\" aspect of NixOS was what brought me to it.\r\n\r\nThe first time I installed NixOS was on a Raspberry Pi 4 from an ISO I built on Alpine Linux (on that same machine).\r\n`nixos-install` being able to install NixOS from any system capable of running `nix` was very nice to learn.','Y','Y','Y','','','','','Version-controllable whole-system configuration','Easy custom patches to packages (overlays and overrides)','Atomic upgrades','Add:\r\n- Incremental upgrades to reduce (re)download size (also for the nixpkgs source tarball)\r\nChange:\r\n- Less RAM usage from the initial `nix search`','Docker-compose, and maybe Ansible, on either Debian or Alpine Linux.','Y','','','','','','','','Y','','','agenix','I stopped using `nix-env` to search for packages. It was too slow and gobbled too much RAM. Especially compared to the new `nix search` when it\'s using the eval cache.','Even if imperfect, NixOS is so good it made me stop distro-hopping. I can\'t go back to imperative package management.\r\n\r\nBTW, thank you for taking the time to read free-form survey answers :)'),(2483,'1980-01-01 00:00:00',5,'en','255970825','A5','A5','male','','Y','Y','Y','','Y','Y','Y','','','','','','','','Y','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Needed to auto update linux nodes with packaged software','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A1','A2','A3','','','','','','','','A9','A8','A11','','','','','','','','','','','','',NULL,'Don\'t know','A1','','','','','','','','','','','','','','','Y','Y','','','Y','Y','','','A24','A1','A2','A3','A4','A5','A7','A9','A10','A11','A14','A15','A17','A13','A18','A20','A21','A23','','','','A24','A20','A19','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','','','','','','','','Y','','Y','Y','','','','Y','','','','','',''),(2484,'1980-01-01 00:00:00',5,'en','1299868131','A3','A2','male','','','','','','','','','','','','','','','','','','','','','','','','','Technical Suport','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','Because i wanted to get the latest software and nix looked really rolling release.','','Y','','','','','Y','','','','','','','','','','Y','','','','A1','','','','','','','','','','A1','A4','A5','','','','','','','','','','','','',NULL,'Arch Linux','A7','','','','','','','','','','','','','','','','','','','','','','','A1','A2','A15','A9','A17','','','','','','','','','','','','','','','','','A1','A2','A14','','','','','','','','','','','','','','','','','','','','','','','A2','','I am still configuring everything in my laptop, also i am still learning everything nix-related ( have not idea what are flakes for ).','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Because it seemed complicated and i love difficult things xD. Plus i wanted to build my OS from scratch and NixOS seems very hacky.','Y','','','','','','','Big package repository','My system is configured in a file','User environment installs','','Arch Linux','Y','','','','','','','','','','Window Manager specifically Hyprland','Home Manager','','Thank you all for the hard work, will the OS support the niquel language after all? . '),(2485,'1980-01-01 00:00:00',5,'en','480455558','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Guy at work wouldn\'t shut up about it until I tried it out. Installed on a separate hdd on my personal desktop, worked on it until it could do everything I needed and haven\'t switched back. Still using the same install from 2020. ','Y','','','','','','Y','Y','','','','','','','Y','','Y','','','','A7','A1','A2','','','','','','','','A4','A5','A9','','','','','','','','','','','','',NULL,'Bash scripts and make files ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A20','A1','A18','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Nothing significant to contribute. I never run into bugs or missing configuration items. I don\'t maintain software that would go in nixpkgs','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Same story as before. Guy at work hounded me about it until I used it. ','Y','','Y','','','','','Services configuration for home server ','Roll back changes when I break my config','Portability of my config between desktop and laptop','Faster nix search command, not much to complain about. ','Arch Linux ','Y','','','','','','','','','','Lxde','','',''),(2486,NULL,1,'en','1076597130','A2','A4','male','','','','','','','','Y','','','Y','','','','','','','','','Y','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2487,NULL,1,'en','798872031','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2488,NULL,NULL,'en','383740348',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2489,NULL,NULL,'en','1364775669',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2490,'1980-01-01 00:00:00',5,'en','1024978083','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','','Software architect','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I originally tried it a few years ago to install and manage my son\'s PC.\r\nLately (more than 1 year ago), I started using it more broadly, all my workstations, home and work, are installed based on a personal flake.\r\nThe flake is in charge of the install media and all workstations\' deployments.','','','','','','','Y','Y','','','','Y','','Y','Y','Y','Y','','Y','','A2','A3','A5','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'Guix','A7','','','','Y','','','','','','','','','','','','','','','','','','','A25','A17','A13','','','','','','','','','','','','','','','','','','','A17','A15','A9','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time, blended family, 7 children.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same story than for Nix.','Y','','Y','','','Y','','\"Reproducible builds and deployments.\" is exactly what I want. I cannot spare time on things that breaks apart after a while.','Tweaking pkgs when I need to.','Eventually starting custom packages right from the code source.','Documentation, documentation, documentation.','Guix','Y','','','','','','home-manager','','','','XMonad','home-manager','','I just want to thank the whole Nix/NixOS community and in particular Eelco Dolstra for the impressive work that has been done so far.'),(2491,NULL,NULL,'en','1926216767',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2492,'1980-01-01 00:00:00',5,'en','329344375','A8','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A7','Heard about it from the Linux Unplugged Podcast, and liked the idea of a reproducible config driven OS.','','Y','','','','','Y','','','Y','','Y','','Y','','','Y','','','','A7','A1','A10','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'Ansible','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','A1','','Not enough knowledge yet','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','Y','','Y','Y','','','','Reproducible ','Roll back capability ','','Not sure yet, I’m only new to NixOS','Debian','Y','Y','','','','','','Y','','','','','','Really enjoying learning NixOS, it’s a refreshingly different approach to Linux. Even small wins are fun. '),(2493,'1980-01-01 00:00:00',5,'en','1498395137','A2','A2','male','','Y','Y','','','','Y','','Y','','Y','','','','','','','Y','','','Y','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','Y','','Y','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A6','A3','','','','','','','','','','','','','',NULL,'On the OS-level: Arch for home machine and debian for servers\r\n\r\nDocker to build images / packages and package applications with their dependencies','A5','','','','','Y','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A3','','','Y','','Y','','','','','','','simple way to build previous version of a package, i.e. using a specific nixpkgs commit to build only one single package but nothing else, meaning the channel stays untouched','arch and debian','Y','','','','','Y','','','','','','https://search.nixos.org/','NixOps, unfortunately... I\'d like to see it improved and ready for productive use','you folks are doing a great job <3'),(2494,NULL,NULL,'en','473999000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2495,NULL,NULL,'en','2074348859',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2496,'1980-01-01 00:00:00',5,'en','643743688','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Started with NixOS and fell in love with the isolated installs of packages specific to whatever directory I\'m currently in.','','Y','','','Y','','Y','','','','','','','','Y','','Y','','','','A1','A3','A7','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'Guix','A1','','','','Y','','','','','','','','','','','','','','','','','','','A1','A2','A5','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Liked the concept of having a unique approach to setting up your system where everything is neatly declared in files.','Y','','','','','','','Deterministic system configuration','Per directory package installation','Large package repository','Add more documentation','Guix','Y','','','','','','','','','','I3','Home manager, nix-direnv','',''),(2497,'1980-01-01 00:00:00',5,'en','347209105','A2','A3','male','','','Y','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Managing my dotfiles was too difficult. At first I decided to use home-manager to replace Linuxbrew, then my usage grew to replace my dotfiles management.\r\nMy plan is to get experience on my laptop to allow me to use it comfortably in a server setting, to build my personal server.\r\nI\'m also introducing it in my personal and work project to manage development environments.','','Y','','','','','Y','Y','Y','','','','','Y','Y','','','','','','A1','A2','A7','','','','','','','','A8','A3','A4','','','','','','','','','','','','',NULL,'Ansible, Homebrew/Linuxbrew, chezmoi, shell scripting ','A2','','','','Y','','','','','','','','Y','','','','','','','Y','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I did in a couple of occasions, the complexity of nix makes it a bit daunting. I still don\'t feel comfortable enough with my Nix experience but I hope to get better and contribute!','N','N','Building my home server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kubernetes','','Thank you!'),(2498,NULL,2,'en','1681568824','A3','A4','male','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I own a School of music, where every room is a home studio, to record the classes, and produce music, I tried Nixos a year ago, cause is easier to make every machine with the same configuration etc, Im backing to nixos in this last months, im my home and in my work, I dont know if I can manage to solve somre problems in Nixos, its not an easy task to me, im just a musician, composer and business man, I thin nixos is not so easy for people like me, but im trying','','Y','','','','','Y','','','','','','','Y','','','','','','','A1','A2','A7','','','','','','','','A5','A14','A10','','','','','','','','','','','','',NULL,'flatpak','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2499,NULL,1,'en','1998523259','A6','A2','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','Y','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2500,'1980-01-01 00:00:00',5,'en','616505868','A2','','','','','','','','Y','','','','','','','','','','','Y','Y','','','','Y','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','As a Gentoo user, the reproducability piece just made more sense','','Y','Y','','Y','','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','Y','Y','','A2','A6','A8','','','','','','','','A6','A7','A8','','','','','','','','','','','','',NULL,'Gentoo & mgmt','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A10','','','','','','','','','','','','','','','','','','','','A15','A9','A10','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Duplicate question','Y','Y','Y','Y','Y','','','Flakes + home-manager + pinned inputs -> reproducable system & user configurations','Pre-built and inspection of system configs via VMs','daily driver for all my desktop software needs','','','','','','','Y','','nixos-anywhere','','','Y','hyprland','','','Thanks for all the Work. NixOS makes my life much easier!'),(2501,NULL,2,'en','1141851760','A3','A4','male','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','Gaming','A7','','','Y','','','','','Y','','','','','','','','','','Y','','','','A2','A7','A10','','','','','','','','A8','A13','A5','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A8','A4','A3','A2','A15','','','','','','','','','','','','','','','','','A8','A15','A4','','','','','','','','','','','','','','','','','','','','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2502,'1980-01-01 00:00:00',5,'en','796116231','A2','A3','-oth-','NB','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I started out wanting to have a reproducible environment for a molecular simulations course.\r\nAfter a couple months I installed nixOS.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A2','A9','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'Probably guix','A2','','','','Y','Y','Y','Y','','','','','Y','','','Y','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','As a sysadmin I was really intrigued by the declarative configuration interface.','Y','','Y','','','','','Declarative OS configuration','Home manager ','`nix shell` for one-off program usage','I would add support for secrets','GNU guix','Y','','','','','','','','','','sway','','','Thanks to everyone in the nix community.\r\n\r\nI would love proper Julia support for nix.'),(2503,'1980-01-01 00:00:00',5,'en','1898985120','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Developer experience','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Peer pressure from friends :\')','Y','Y','','Y','Y','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A6','A7','A4','','','','','','','','A8','A12','A9','','','','','','','','','','','','',NULL,'Guix','A2','Y','Y','Y','Y','Y','','','','','','Y','','Y','','Y','','','','Y','','Y','','A13','A15','A14','A1','A2','','','','','','','','','','','','','','','','','A14','A13','A1','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Peer pressure from friends :\')','Y','Y','','Y','','','','Rollbacks (particularly the ability to choose an old generation in Grub menu)','GC /nix/store (by that I mean the ability to download a lot of developer environments on my machine without carrying about disk space)','Ease of systemd management (NixOS is a first distribution that makes writing a systemd service simple to me)','- remove the callPackage design pattern in nixpkgs, and replace it by proper types or builtins constructs ;\r\n- makes nix-daemon smaller, simpler, with fewer features but more stable and well documented ;\r\n- put new users on the track to learn Nix language before discovering NixOS options which confuse the understanding of the simple syntax of this well-made language ...','Guix','Y','Y','','','','Y','','','','','Sway','Haskell.nix, flake-utils, oxalica\'s rust overlays, cachix, etc …','LSP implementations … I hope someday to have a default / officially maintain IDE support for Nix :)','Nix is one of the greatest tools I used in the past year, and community survey is a really good practice! Keep going the good work :)'),(2504,NULL,1,'en','1301828115','A2','A3','male','','','','','','','','Y','','','','','','','','','','Y','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2505,'1980-01-01 00:00:00',5,'en','1112624773','A2','A4','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A6','','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','','','','','','','','','','','A6','A10','','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A3','A15','A1','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I did in the past.\r\nNo time to allocate to Nix lately.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','','Y','','Y','','','','','Modularity','Services','','Make all services a turn-key solution for the most basic/default use cases.','','Y','','','','','','','','','','AwesomeWM','None','',''),(2506,'1980-01-01 00:00:00',5,'en','1190297570','A5','A3','-oth-','Non-binary','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A7','I\'m a computer science student, and I work as a system administrator by day, so I\'m interested in new technology, and I\'m interested in learning new programming languages. However, I don\'t always have the motivation to learn a new language. With NixOS, you have to learn the language or your system either won\'t work or won\'t work as you\'d like, so that\'s a great motivator. I\'m also fascinated by the immutability and atomicity of NixOS, which I didn\'t even know was possible until coming across it. I have been using Linux for maybe two or three months now, after I became disenchanted with the lack of control Windows gave me. I started on Ubuntu, as I\'m sure most people do, and I used that occasionally for about a week. I then moved to Mint (I liked Cinnamon), which I used for about a month. Then I intermittently, frustratedly, installed Arch. A constant sticking point for me was that it doesn\'t support ZFS by default, and it is an enormous pain to try to set up on Arch, although it\'s possible. I liked Arch because it was barebones when you started out with it and you could customize it completely. Although NixOS has a bit more built-in, it still feels just as customizable, if not more so, but since I just started using it a few days ago, I am still learning all the ways to customize and configure it. I have managed to successfully install ZFS on NixOS with Flakes with RAIDZ1, though, and I\'m super happy about that. :) I used a combination of resources to achieve this, and if I\'m being honest, it took a lot of persistence and retries before I could manage it. But I\'m so glad to be here now that it\'s done!','','Y','','','','','Y','','','','','','','','','','Y','','','','A7','A2','A1','','','','','','','','A4','A8','A3','','','','','','','','','','','','',NULL,'Arch, no question. Arch and Nix are so far the only Linux distributions I have tried (out of Ubuntu, Mint, Alpine, Arch, and Nix) that have really resonated with me and fulfilled my desire for near-total control of my machine.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','I honestly don\'t know what this means.','A2','A5','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I don\'t know enough about Nix to contribute yet. I started using it three days ago. I\'m also nervous about whether I will stick with it long-term if I\'m being honest. It took me about two full days to install a system that I was happy with that had ZFS support and a hostname I liked and the core programs I want. I sort of enjoyed the challenge of learning a language at the same time that I was building a new system since it was over the weekend, but I\'m not sure if I can deal with that sort of challenge if I\'m in the middle of a workday, you know?','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','','','','','','','','','','','','','','','','','','','','','','','','','Teams. Both of the versions that I tried did not work and I didn\'t have the patience to troubleshoot them, so I just use the web version now--but I do still hope to get a working version of a dedicated application installed at some point.',''),(2507,'1980-01-01 00:00:00',5,'en','964639962','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was very interested in Haskell years ago. Stumbled across Nix in some repos, and everything just clicked. Such an easy way to setup software.\r\nI\'ve since used Nix in anger, and run all my systems with NixOS. Except a Windows dualboot for gaming.\r\nIt feels like knowledge that actual builds atop previous knowledge, it\'s sublime and hard to explain if you don\'t already get it','','Y','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A7','A5','','','','','','','','A8','A6','A2','','','','','','','','','','','','',NULL,'I don\'t want to consider this possibility\r\nI\'d probably switch careers and tune pianos','A2','','','','Y','Y','','','','','','','','Y','','Y','','Y','Y','Y','','','','A13','A1','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','After finding Nix, NixOS seemed like a no-brainer.\r\nBack in my day we didn\'t have a graphical installer, and we partitioned memory ourselves! It sucked and was annoying but I learned a lot.\r\nHaving my whole config setup between two files, configuration.nix and home.nix, was incredible.\r\nI\'ve since branched out to have my multiple systems specified with flakes, the power is intoxicating.','Y','Y','Y','Y','','','','The same developer experience everywhere','Fine-grained control of software that is installed, along with traceability','Rollbacks. When I inevitably mess something up, and don\'t have time to fix, I can live in an earlier snapshot for weeks till I can address the problem.','I would magically get a better desktop with AMD, because NVidia graphics are a pain','If NixOS suddenly didn\'t exist I would be compelled to create it','Y','','','','','Y','','','Y','','none+XMonad','dream2nix','','Nix rules, it\'s worth whatever pain you think it\'ll cause. Everyone is friendly, just ask questions on Discourse!'),(2508,'1980-01-01 00:00:00',5,'en','57703485','A2','A3','male','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','Y','','','','A3','Because we wanted to use nixos for our servers','Y','Y','','','Y','','Y','','Y','Y','','','','Y','Y','','Y','Y','','','A2','A1','A10','','','','','','','','A8','A4','A2','','','','','','','','','','','','',NULL,'I don\'t even want to imagine a world without nix','A4','','','','Y','Y','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','We do not have anything to upstream yet','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','I was really fed up with the mess of imperative server/service management. At work we were using ansible. All the lineinfiles and other nonsense, including lack of certainty that all aspects of systems are managed in code, made me uneasy about reproducibility and security of our systems. Adopting terraform and k8s solved part of the problem, but due to nature of our work we cannot run exclusively in big clouds with managed k8s. So we need a way to run k8s ourselves.\r\n\r\nInitially I was looking into Fedora CoreOS. But it didn\'t really seem prod ready or that convenient. Then I found out about nix/nixos and it\'s a godsend. For the first time ever I feel really good and really sure about our infra, it\'s a similar change compared to traditional OSs as clicking in cloud consoles vs using terraform, but to an even larger extent.\r\n\r\nThe combination of nixos for the OS layer, hosting k8s and all stateful services (DBs/object storage) is perfect for us. I feel more at ease when stateful services are outside k8s, this means that even if we get a cluster to a very bad state we can always kill all of it and recreate. k8s with e.g. fluxcd is more convenient to keep in sync with code than nixos – you can always lock yourself out with changes, and it\'s better have SREs manage deployments. So we end up using nixos for things that change rarely and k8s for things that change more often. I really like this setup.','','','','Y','','','','Declarative configuration','Stable builds','Reusable config across machines','Haven\'t used it enough to notice any pain points','I\'d sit in a corner and cry (I\'m only slightly joking)','','','','Y','','','','','','','','-','-','THANK YOU!!'),(2509,'1980-01-01 00:00:00',5,'en','1587308059','A2','A4','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','Y','','','Y','Y','Y','','','','A2','A6','A7','','','','','','','','A6','A8','','','','','','','','','','','','','',NULL,'guix','A1','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A4','A15','A1','A2','A17','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','Y','','','','','','guix','Y','','','','','Y','','','','','swaywm','','',''),(2510,NULL,2,'en','284312408','A2','A2','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','Y','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','TODO:','Y','','','Y','','','Y','Y','','Y','','','','Y','Y','Y','Y','','Y','','A2','A3','A4','','','','','','','','A6','A10','A4','','','','','','','','','','','','',NULL,'','A7','','Y','','Y','Y','Y','Y','Y','','','','','','','','Y','','','Y','','','Gitea Actions','A15','A14','A1','A9','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Dont have the time and energy to commit to maintaining something as public as on Nixpkgs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2511,NULL,3,'en','726371132','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','Y','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A5','A13','A3','','','','','','','','','','','','',NULL,'GUIX','A2','','','','Y','Y','','Y','','','','Y','','','','Y','','','','Y','','','','A13','A20','A25','','','','','','','','','','','','','','','','','','','A13','A20','','','','','','','','','','','','','','','','','','','','','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','','','','','','','Y','Y','','','','','','','Y','','',NULL,NULL,NULL),(2512,NULL,1,'en','639963780','A6','A4','male','','','','','','','','','','','','','','','','Y','','Y','','','','','','Y','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2513,NULL,NULL,'en','1019670576',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2514,NULL,1,'en','1920791357','A3','A3','male','','','','','','','','','','Y','Y','','','','','','Y','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +/*!40000 ALTER TABLE `limesurvey_survey_2023` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_survey_239157` +-- + +DROP TABLE IF EXISTS `limesurvey_survey_239157`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_survey_239157` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `submitdate` datetime DEFAULT NULL, + `lastpage` int(11) DEFAULT NULL, + `startlanguage` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, + `seed` varchar(31) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `239157X41X801` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `239157X41X802SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `239157X41X802SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `239157X41X802SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `239157X41X802SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `239157X41X802SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `239157X41X802SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `239157X41X802other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `239157X41X810` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `239157X41X811` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `239157X41X815` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `239157X41X816` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `239157X41X819` decimal(30,10) DEFAULT NULL, + `239157X41X820` decimal(30,10) DEFAULT NULL, + `239157X42X812` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `239157X42X813` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `239157X42X814` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `239157X42X817` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `239157X42X818` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `239157X42X821` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `239157X42X822` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `239157X42X823` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `239157X42X824` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM AUTO_INCREMENT=158 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_survey_239157` +-- + +LOCK TABLES `limesurvey_survey_239157` WRITE; +/*!40000 ALTER TABLE `limesurvey_survey_239157` DISABLE KEYS */; +INSERT INTO `limesurvey_survey_239157` VALUES (1,'1980-01-01 00:00:00',2,'en','1085185437','49.85784;8.65128','Y','','','','','','','A1','N','5','5',0.0000000000,0.0000000000,'A1','A2','5','4','1','','It was a great first NixCon for me. Thank you so much!','','A2'),(2,NULL,1,'en','187204625','49.87167;8.65027','','Y','','','','','','A1','N','5','5',0.0000000000,0.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3,NULL,NULL,'en','1886280034',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,NULL,1,'en','2112133349','48.17969;11.23618','','Y','','','Y','Y','','A3','N','','',1.0000000000,0.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(5,NULL,1,'en','1013137213','50.79465;7.0101','','','','','Y','','','A2','N','4','2',0.0000000000,0.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(6,'1980-01-01 00:00:00',2,'en','1789167558','49.87167;8.65027','','Y','','','','','','A1','N','5','5',0.0000000000,0.0000000000,'A1','A2','5','5','5','Almost no volunteers to help with tasks on the event.','Nice atmosphere, approachable people, great venue, excellent catering and amazing orga-team.','ice truck','A2'),(7,'1980-01-01 00:00:00',2,'en','2023730267','48.13743;11.57549','','','','','Y','','','A3','Y','3','3',1.0000000000,1.0000000000,'A2','A3','5','4','2','From the professional side, I feel like last year\'s hiring happy hour was better handled.\r\n1. \"Hiring\" stickers for badges, which helped people know who to approach\r\n2. Right before the scheduled time, ron let people looking for work know where the ones hiring are and how to distinguish them.\r\n\r\nNeither of these seemed to have happened this year, making things for my anti social ass much harder than it already was. It\'s not like my company sent me as a hiring manager, I\'m just a nix nerd and on the side I\'m taking the opportunity to talk to people.','Much nicer venue. Shirts\' quality seemed to be better. Also, food options were a bit more varied, though did not see any dessert :(\r\nGreat vibes too!','Didn\'t get a brick, tho I\'m now the proud owner of some nixcoins (hopefully by next year we are all nixcoin crypto millionaires)','A2'),(8,NULL,1,'en','860008013','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(9,NULL,1,'en','1650249135','49.00937;8.40444','','','','','Y','','','A2','N','5','3',0.0000000000,0.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(10,'1980-01-01 00:00:00',2,'en','489418709','47.36667;8.55','Y','Y','','','Y','Y','','A3','N','4','3',1.0000000000,0.0000000000,'A2','A2','4','4','4','','','','A2'),(11,'1980-01-01 00:00:00',2,'en','1804215168','52.48127;13.383','','','','','Y','','','A3','N','5','5',1.0000000000,1.0000000000,'A3','A1','4','4','4','andi- being grumpy','andi- being happy','','A2'),(12,NULL,NULL,'en','1582023019',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(13,'1980-01-01 00:00:00',2,'en','1534560380','50.3836;8.0503','','','Y','','','','','A1','Y','5','5',1.0000000000,5.0000000000,'A1','A3','5','5','2','Nothing','Catering was awesome.\r\nThe people and atmosphere were great.','Nothing','A3'),(14,'1980-01-01 00:00:00',2,'en','419413777','27.84195;-15.44369','','Y','','Y','Y','','','A7','N','3','1',1.0000000000,1.0000000000,'A2','A2','5','4','1','The hiring happy hour event was too confusing to join','','','A2'),(15,'1980-01-01 00:00:00',2,'en','380496587','52.52701;13.36237','','Y','','','Y','','','A3','N','5','4',1.0000000000,1.0000000000,'A1','A2','4','5','5','The drama around the Anduril sponsorship ','Good food. Well organized. ','','A2'),(16,'1980-01-01 00:00:00',2,'en','101777481','59.91273;10.74609','','','Y','Y','','Y','','A3','Y','3','2',1.0000000000,6.0000000000,'A1','A3','4','4','1','','','','A2'),(17,NULL,NULL,'en','1818917369',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18,NULL,1,'en','726354020','51.93643;5.84035','Y','','','','Y','Y','','A3','N','','',1.0000000000,0.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19,'1980-01-01 00:00:00',2,'en','318422282','49.61747;6.21552','','','','','Y','','','A3','N','3','4',1.0000000000,1.0000000000,'A2','A3','5','4','3','','','','A2'),(20,'1980-01-01 00:00:00',2,'en','635767802','49.67569;9.00373','','Y','','','Y','','','A2','N','5','5',0.0000000000,0.0000000000,'A1','A2','4','4','2','','','','A2'),(22,'1980-01-01 00:00:00',2,'en','1085652664','49.2;16.6','','','','','Y','Y','','A6','N','5','5',1.0000000000,0.0000000000,'A2','A3','4','4','2','','People.','Air conditioning?','A2'),(23,'1980-01-01 00:00:00',2,'en','691951175','51.31366;-0.00875','','','Y','Y','','','','A3','N','','',1.0000000000,0.0000000000,'A4','A3','5','4','1','I think the event should have been larger, lots of people were unable to come since it sold out so fast. There was also not much room for talks (ours was rejected), I think multiple tracks would help that. ','Overall good quality of talks, venue was good, food and drink provision was great. ','','A2'),(24,'1980-01-01 00:00:00',2,'en','780400031','45.50018;9.38782','','','Y','Y','','Y','','A3','N','2','4',1.0000000000,1.0000000000,'A1','A3','4','4','1','- food/catering could be better (quality/organization)\r\n- all the talk in a single track, with almost to pause, i think that having at least two track (even not at the same time) and give some time off (10/15\') between talks helps.','talks/lightening talks','more gadget!','A2'),(25,'1980-01-01 00:00:00',2,'en','405887016','49.19337;16.61447','','','','','Y','Y','','A5','N','4','4',1.0000000000,-0.5000000000,'A2','A2','4','4','3','','','','A2'),(26,NULL,NULL,'en','179865854',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27,'1980-01-01 00:00:00',2,'en','873500570','49.84014;8.81289','Y','Y','','','','','Tram','','','','2',NULL,NULL,'A1','A2','4','5','1','','','','A2'),(28,NULL,NULL,'en','392240229',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(29,'1980-01-01 00:00:00',2,'en','1143289119','52.52437;13.41053','','','','','Y','','','A4','N','3','3',1.0000000000,1.0000000000,'A1','A3','3','5','1','The hackcenter was very loud','- Comfy atmosphere\r\n- Friendly people\r\n- very good lunch\r\n- good selection of drinks','- Something non-sweet (e.g. Pretzels) offered in the morning\r\n- A quiet room (a room where someone can calm down and recharge their social batteries)\r\n- The Hiring Happy Hour. It wasn\'t announced after the last talk which confused me.','A2'),(30,'1980-01-01 00:00:00',2,'en','849068512','38.83388;-104.82136','','','','Y','','','','A7','N','','',NULL,NULL,'A2','A1','','3','','Talks about hobby topics that didn\'t feel professional or relevant to the software industry','Hearing about the challenges people are facing in the community and how they\'re solving or hoping to solve them.','',''),(31,NULL,1,'en','1559455881','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(32,NULL,NULL,'en','51137431',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(33,NULL,NULL,'en','239194463',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34,NULL,NULL,'en','1937434370',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(35,NULL,1,'en','8171586','40.04595;-105.28687','','Y','','Y','Y','Y','','A6','N','','',3.0000000000,2.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(36,NULL,1,'en','564457888','51.05089;13.73832','','','','','Y','','','A3','N','','',1.0000000000,1.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37,'1980-01-01 00:00:00',2,'en','673790807','49.00937;8.40444','','Y','','','Y','Y','','A2','N','5','4',1.0000000000,1.0000000000,'A1','A2','4','5','3','','','','A2'),(38,NULL,NULL,'en','613647350',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(39,'1980-01-01 00:00:00',2,'en','552988267','49.88247;8.65721','Y','Y','','','','','','A1','N','4','5',0.0000000000,0.0000000000,'A1','A3','5','','2','','','','A2'),(40,NULL,NULL,'en','548005963',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41,'1980-01-01 00:00:00',2,'en','312234843','50.54772;9.67419','','','','','Y','','','A2','N','4','5',0.0000000000,1.0000000000,'A1','A2','4','5','1','To warm.\r\nItchy line yard.','Nice venue, Chaos-Style event','Place for interaction and cosy hang-out','A2'),(42,'1980-01-01 00:00:00',2,'en','1514067869','49.75565;6.63935','','','','','Y','','','A3','N','5','4',1.0000000000,1.0000000000,'A1','A3','4','4','2','','','','A2'),(43,'1980-01-01 00:00:00',2,'en','1774131424','54.12826;-8.38133','','','Y','Y','','Y','','A4','N','4','4',1.0000000000,1.0000000000,'A1','A3','5','4','3','Nothing really','Meeting everyone and hacking on cool shit','Longer deep dives might have been nice, 25 mins is a bit short ','A2'),(44,'1980-01-01 00:00:00',2,'en','629748555','47.49835;19.04045','','','','Y','','Y','','A2','N','3','3',1.0000000000,1.0000000000,'A1','A1','4','4','','There were some talks which were not interesting for me at all. Especiall talks about private projects eg bootstrapping a separate nix or forking the whole stuff for their own purpose. These are private projects.','Lots of superstars, eg to see the main contributers to nix/nixpkgs on the stage and in person.','','A2'),(45,'1980-01-01 00:00:00',2,'en','746610457','48.15656;11.55212','','','','','Y','','','A3','N','4','',1.0000000000,1.0000000000,'A5','A3','5','4','4','','Seeing everyone again, well organised, internet worked really well','A water fountain rather than only bottled water!','A2'),(46,'1980-01-01 00:00:00',2,'en','2008511124','45.2318;-86.26057','','','','Y','','','swam','A6','Y','','',3.0000000000,5.0000000000,'A2','A3','5','4','4','Sensory overload (no fault of Orga)','Random chats and happy coincidences. Chaos. Venue Audio. Too many things to list. Open innovation, culture of hackers and makers','wissentlich','A3'),(47,NULL,1,'en','1455328564','50.85045;4.34878','','','','','Y','Y','','A3','N','4','3',0.0000000000,0.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(48,'1980-01-01 00:00:00',2,'en','957980283','48.85341;2.3488','Y','Y','','','Y','','','A3','Y','4','5',1.0000000000,1.0000000000,'A2','A2','5','5','1','Nothing so far, besides the fact the Wi-Fi code wasn\'t simple to find.','Reusable mugs, unlimited drinks, good food, perfect area, good organization so far, I could say everything. I wish there could be more time to exchange on how we can work on making Nix/NixOS better/enhance or sprints that would be organized.','I couldn\'t interact with everyone I wished, I did.','A2'),(49,NULL,1,'en','336307190','49.87074;8.65276','','Y','Y','','','','','A3','N','3','3',1.0000000000,3.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(50,'1980-01-01 00:00:00',2,'en','1052049364','48.02109;7.84044','','','','','Y','','','A2','Y','5','4',1.0000000000,1.0000000000,'A1','A2','4','4','3','','Meeting other nix people. The food.','','A2'),(51,NULL,1,'en','222939282','40.71427;-74.00597','','Y','','Y','Y','','','A5','N','4','3',1.0000000000,0.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(52,'1980-01-01 00:00:00',2,'en','1992706859','59.87516;10.78857','','','Y','Y','Y','','','A3','N','4','4',1.0000000000,1.0000000000,'A1','A2','5','4','2','Too short','Everything else','My children','A2'),(53,'1980-01-01 00:00:00',2,'en','406606143','52.82393;-7.4707','','Y','','Y','Y','','','A3','N','4','3',1.0000000000,1.0000000000,'A1','A1','4','4','3','The schedule was somewhat confusing, overall: the main website didn\'t show when the talks would end, so figuring out the breaks was quite some guesswork. In addition to that, the first day schedule had a lot of overruns.\r\n\r\nThe organisational notes like the wifi password should have been more visible. I only saw it in between the memes by accident on day 2.','The atmosphere was great, the people were great, lots and lots of useful discussions happening. And having the lunch on-site was such a saver.','','A2'),(54,'1980-01-01 00:00:00',2,'en','2019445997','50.73972;7.09298','','','','','Y','Y','','A2','N','4','4',0.0000000000,1.0000000000,'A1','A3','3','5','2','Loudness in the Hackcenter\r\nHackcenter too large\r\n','Talks\r\nRed/Purple lanyards\r\nVegetarian food','Quiet room','A2'),(55,'1980-01-01 00:00:00',2,'en','1708860163','51.61802;11.77734','','','','','Y','','','A3','N','5','4',1.0000000000,1.0000000000,'A1','A2','4','5','2','Back to back schedule and even some breaks were filled with talks.','Talks, meeting people','','A2'),(56,'1980-01-01 00:00:00',2,'en','1982026870','41.38917;2.16431','','','','Y','','','','A3','N','3','3',1.0000000000,1.0000000000,'A3','A1','5','5','4',' Bit hard to find the bus to Darmstadt at the Frankfurt airport, better instructions would’ve been nice. Coca-cola could’ve been replaced with Fritz Cola or something.','Great food, very good talks, nice hall, great people','Non sweet beverages (apple juice and the like), non-sweet breakfast food.\r\n\r\nIn general, breakfast could’ve been better','A2'),(57,'1980-01-01 00:00:00',2,'en','1725093531','43.18925;-81.40037','','','','Y','','Y','','A5','N','5','5',1.0000000000,0.0000000000,'A2','A3','5','5','2','I thought this year was great and I have no complaints. Good job everyone!','I really liked the selection of talks. The food was very nice, even if you\'re not a vegetarian!','','A2'),(59,'1980-01-01 00:00:00',2,'en','1163485339','49.86;8.65','','Y','','','Y','','','A1','N','','',NULL,NULL,'A1','A2','5','5','2','The line for food usually got very long.\r\nDon\'t know how well this would work but there was two grippers per plate so it might be possible to have two lanes walking along left/right side of food table.','people, event design, talks, memes on infoboard','the people','A1'),(60,'1980-01-01 00:00:00',2,'en','432146037','51.05245;13.71423','','','','','Y','','','A4','N','','',1.0000000000,0.0000000000,'A2','A3','4','3','3','The lecture hall was very noisy. It was hard to switch to the hallway track when my attention level dropped.','Friendly people, delicious food','A collective social event','A2'),(61,'1980-01-01 00:00:00',2,'en','754086527','48.17655;11.24904','','','','','Y','Y','','A3','N','','',1.0000000000,0.0000000000,'A1','A3','5','3','1','Some IMO low-quality talks (esp. \"How to teach Nix in 5 Minutes\")','Good food, many interesting talks, great cheatsheet by nixcademy','','A2'),(62,'1980-01-01 00:00:00',2,'en','1032279582','51.53609;12.43652','','Y','','','Y','','','A3','N','3','2',0.0000000000,0.0000000000,'A2','A2','4','4','1','Handling of sponsors, too many talks in a row (consider parallelity)','Good food, good talks, met friends, good merch, nice venue','','A2'),(63,'1980-01-01 00:00:00',2,'en','447569429','','','','','','Y','','','A2','N','4','3',0.0000000000,0.0000000000,'A2','A3','4','3','3','I feel like NixCon should give us the possibility of seeing new faces in the community. There was too much reuse of previous year speakers, even openers and closers. ','Very well organized, nice venue.','','A2'),(64,'1980-01-01 00:00:00',2,'en','2032254615','49.87167;8.65027','','Y','','','','','','A1','N','5','5',0.0000000000,0.0000000000,'A1','A2','5','4','3','Some rooms were a bit loud\r\nThe scheduling of the talks was off. Too little and too short breaks, and heralds trying to fill those few breaks with minute talks for some reason. Also lightning talks should probably be 10 min instead.\r\nThe venue feels like it\'s almost at capacity, any more people in there and it would get uncomfortable','Food very good\r\nTalks good, and talk length good too\r\nOnly one track','More outside space\r\nMore comfy space for chilling (the beach chairs were good)\r\nTransparency when buying the ticket about what information will be shown on the badge, and maybe some way of customizing the text\r\nA pronouns field on the badge','A2'),(65,'1980-01-01 00:00:00',2,'en','1823094633','59.3425;18.06447','','','','Y','','','','A3','Y','5','5',1.0000000000,0.0000000000,'A2','A3','5','5','3','','','','A2'),(66,'1980-01-01 00:00:00',2,'en','1401955645','51.05089;13.73832','','','Y','','','','','A5','N','5','5',10.0000000000,1.0000000000,'A1','A2','3','4','3','The eating room was getting very crowded and loud at lunch time.\r\nNo Ethernet ports.','Everything you would want to get to (hotel, hackspace, venue) was in walking distance.','A second track ','A2'),(67,NULL,NULL,'en','770328622',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(68,NULL,NULL,'en','2029296664',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(69,NULL,NULL,'en','264375064',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70,'1980-01-01 00:00:00',2,'en','1598055492','40.71427;-74.00597','','','Y','Y','Y','','','A6','Y','4','4',6.0000000000,0.0000000000,'A1','A3','5','4','4','','The people, conversations, talks, putting faces to handles','Some good talks while chatting with people.','A2'),(71,'1980-01-01 00:00:00',2,'en','1954352389','55.67594;12.56553','','','','Y','Y','Y','','A3','N','','',1.0000000000,0.0000000000,'A2','A1','4','4','2','No/few breaks between talks made it awkward to change to hallway track during not personally-interesting talks without disturbing a ton of people','Great venue, volunteers, food, location!','','A2'),(72,NULL,1,'en','475790621','48.78232;9.17702','','','Y','','','','','A2','N','4','4',0.0000000000,0.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(73,'1980-01-01 00:00:00',2,'en','1056103574','51.08102;13.7286','','','','','Y','','','A3','N','4','4',1.0000000000,0.0000000000,'A1','A3','4','4','3','','the influence of chaos','','A2'),(74,'1980-01-01 00:00:00',2,'en','1976826145','49.50429;10.99637','','Y','Y','','Y','Y','','A2','N','5','5',1.0000000000,0.0000000000,'A2','A2','4','4','1','The line at the food was a bit chaotic','Was organised pretty well','Nothing','A1'),(75,'1980-01-01 00:00:00',2,'en','798572552','48.85229;2.34689','','Y','','','Y','','','A3','N','3','3',0.0000000000,0.0000000000,'A2','A2','2','3','3','You have to fill the survey before taking stickers!!!!\r\nJust kidding :)\r\n\r\nFucking Deutsche Bahn','Meeting again with the community\r\nVery practical venue \r\nDiner with the community\r\nGovernance meeting: what a different way to do tech compared to big tech\r\nNice side room for discussions\r\nVegan food options\r\n\r\nOverall, many thanks for the organizers!!! Organizing such an event is so much work and the result is really good.','More academic style talks, not just talks showcasing cool projects. I\'d love to see more talks give new deep insights.\r\n\r\nBeginners workshop to include nix users in the community before the start of the conference. We are missing feedback from users.\r\n\r\nDiversity is imperfect and we should try to include more underrepresented sub cultures.\r\n\r\nSome people found social interactions and bounding hard. It would be great to experiment with social dating stuff to help people join the community.\r\n\r\nMore food during the hackday, but that\'s a minor point.','A2'),(76,'1980-01-01 00:00:00',2,'en','2081853173','51.05089;13.73832','','','','','Y','','','A3','N','','',1.0000000000,1.0000000000,'A1','A3','5','5','3','','The food was great. Special thanks for vegan offers!\r\nThe level of commercial sponsorship was bearable and not disrupting the community atmosphere too much (nicely integrating instead)\r\nHackday was inspiring.\r\n\r\nI liked that the sponsorship woes ended up with an ethical result of throwing out the military company working on autonomous weapons.','','A2'),(77,'1980-01-01 00:00:00',2,'en','678875908','52.53093;13.35938','','','','','Y','','','A4','Y','5','3',1.0000000000,0.0000000000,'A1','A3','5','5','4','','many friendly people','','A2'),(78,'1980-01-01 00:00:00',2,'en','1703261605','38.95827;-120.55957','','Y','Y','Y','','','','A7','N','','',1.0000000000,1.0000000000,'A1','A3','5','4','4','Nothing!','Meeting all the lovely people I\'ve interacted with online and just chatting.','Nothing.','A2'),(79,NULL,NULL,'en','1525731457',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(80,'1980-01-01 00:00:00',2,'en','1873168518','55.67594;12.56553','','','','Y','','','','A3','N','5','5',1.0000000000,0.0000000000,'A1','A3','5','5','3','The rooms were hot. Especially the downstairs one (room 24). Coffee was sometimes not available.','It was phenomenal. Talks were great, community is awesome, well structured ','Should have been a full group dinner on Sat night.','A2'),(81,NULL,NULL,'en','228480792',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(82,NULL,1,'en','1569090466','49.40768;8.69079','','','','','Y','Y','','A2','N','5','',0.0000000000,0.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83,'1980-01-01 00:00:00',2,'en','61905438','45.81444;15.97798','','','','Y','','','','A2','N','3','3',1.0000000000,0.0000000000,'A2','A1','5','5','3','','','','A2'),(84,'1980-01-01 00:00:00',2,'en','989137116','50.93333;6.95','','Y','','','Y','Y','','A2','N','4','4',1.0000000000,0.0000000000,'A1','A2','3','3','1','','','','A2'),(85,'1980-01-01 00:00:00',2,'en','535361340','49.00937;8.40444','','','','','Y','Y','','A2','Y','5','5',0.0000000000,0.0000000000,'A1','A2','4','4','3','- Masks were not required \r\n- The main meeting/food room downstairs was extremely crowded.','Nearly all talks were interesting, meeting people was great, and the event itself was organized well.','','A2'),(86,'1980-01-01 00:00:00',2,'en','359308218','48.139;11.56947','','','','','Y','','','A4','N','5','4',1.0000000000,0.0000000000,'A4','A3','5','5','','ventilation of the hackcenter','well organized, catering was good, just one track','never entered the workshop room','A2'),(87,'1980-01-01 00:00:00',2,'en','338605452','51.48158;11.97947','','Y','','','Y','','Taxi','A3','N','5','5',1.0000000000,1.0000000000,'A1','A3','5','5','5','too little coffee\r\nbad airflow','vegan/vegetarian food\r\ngreat community','','A2'),(88,'1980-01-01 00:00:00',2,'en','1980419119','51.04914;13.7371','','','Y','','','','','A3','N','','3',1.0000000000,0.0000000000,'A1','A2','4','5','3','Hackcenter was very loud when crowded\r\n','Talks, people orga, food','','A1'),(89,NULL,NULL,'en','1554098848',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90,NULL,1,'en','1257094914','-36.84853;174.76349','','','','Y','','','','A7','','1','3',30.0000000000,0.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(91,'1980-01-01 00:00:00',2,'en','112499612','53.55073;9.99302','','','','','Y','','','A3','N','','',1.0000000000,1.0000000000,'A2','A3','5','4','4','Very little and too late advance communication. The date and location of the event should be fixed at least 5 months in advance.','Meeting a lot of amazing people, good food, smooth video streaming and prompt publishing of recordings','More quiet places to sit down and talk/hack ','A2'),(92,'1980-01-01 00:00:00',2,'en','554203464','49.89361;8.67491','Y','','','','','','','A1','N','5','',NULL,NULL,'A3','A3','','','1','','','','A2'),(93,'1980-01-01 00:00:00',2,'en','911472089','48.20849;16.37208','','','','Y','','','','A3','N','4','4',1.0000000000,0.0000000000,'A1','A2','5','5','2','Nothing really','Met interesting people, made new contacts, learned a lot new and awesome things! Big shoutout to the awesome barista at the hackday! Also the pizzas where really good!','-','A1'),(94,'1980-01-01 00:00:00',2,'en','74439715','49.87256;8.65141','','Y','Y','','','','','A3','N','3','3',1.0000000000,3.0000000000,'A2','A3','3','4','4','- It felt more like a Darmstadt user meetup. Which, it\'s great to meet the Nix scene in Germany/Darmstadt, but it had a different feeling compared to NixCon Paris because of that\r\n\r\n- The reception looked extremely overloaded on the first day\r\n\r\n- The response of the community to the dropping of Anduril as a sponsor, note: not the act of dropping the sponsor, rather the response to it\r\n\r\n- There was no buildup in the timeline of talks, NixCon started with 3—in my opinion—extremely heavy talks for the audience to process\r\n\r\n- Some of the speakers didn\'t respect the time of the audience and the other speakers\r\n\r\n- Almost no beginner talks, the workshop is in a different category for me\r\n\r\n- Perhaps too many talks? I think NixCon could\'ve done with a bit more breaks, since the 2nd day looked fairly empty throughout the day','- Got to meet and talk to some absolutely great people\r\n\r\n- Drinks and food, big 👍\r\n\r\n- The hallway track\r\n\r\n- The diversity in this year\'s NixCon','','A3'),(95,NULL,1,'en','1156411541','-37.814;144.96332','','','','Y','Y','Y','','A7','Y','3','3',2.0000000000,1.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(97,'1980-01-01 00:00:00',2,'en','621774278','49.87167;8.65027','','Y','','','','Y','Tram','A1','N','5','5',1.0000000000,1.0000000000,'A1','A2','','','1','','','','A2'),(98,'1980-01-01 00:00:00',2,'en','132278579','36.17497;-115.13722','','','Y','Y','','Y','','A6','N','3','5',1.0000000000,2.0000000000,'A1','A3','5','5','2','I didn\'t know there would be food. As a speaker, I wished my microphone could have been set up before my talk.','The talks were great. The venue was great.','','A2'),(99,'1980-01-01 00:00:00',2,'en','1274274749','35.5358;-97.50916','','','','Y','','','','A5','Y','3','4',1.0000000000,2.0000000000,'A1','A1','4','4','2','','','','A2'),(100,'1980-01-01 00:00:00',2,'en','1167630977','49.55283;8.15735','Y','','Y','','','','','A2','N','5','4',1.0000000000,0.0000000000,'A1','A2','4','3','3','In the main areas and floor the acoustics were bad with many people.','At the last day more and more was outside with much less noise.','','A2'),(101,'1980-01-01 00:00:00',2,'en','1245809631','-37.814;144.96332','','','','Y','Y','Y','','A7','Y','3','3',2.0000000000,54.0000000000,'A1','A2','4','3','4','not enough spaces for everyone who wanted to come, the governance meeting was too early on the last day meaning a lot of people didn\'t come','I enjoyed meeting everyone and enjoyed the hack day','','A2'),(102,NULL,1,'en','1546666687','51.05089;13.73832','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(103,'1980-01-01 00:00:00',2,'en','666460207','51.05089;13.73832','','','Y','','','','','A5','N','2','2',1.0000000000,0.0000000000,'A1','A2','4','4','4','too few tickets (maybe because of me a suitable (contribution) person did not get a ticket.)\r\nno chance to order no regular merch (shirt, zipper, …)\r\nno discussion (and no statement) on the problem case that a military company should have been a sponsor of an event in our (project) community.\r\nno (simple) dinner\r\nno opportunity (no space) to do things (hack on and with nix(os)) into the (and over) night (together with other participants)\r\nno opportunity (no space) to sleep and taking a shower (undemanding accommodation for thrifty people)\r\ntoo few women\r\nnearly no caffeine drinks','ccc flair\r\n\"rainbow culture\" (i am not part of it.)\r\nnice (useful) and (nearly plain) merch from companies (simple nixos sticker, shrits, cheat sheet, …)\r\nfree drinks\r\nsame foo for breakfast (with a lot of sugar only)\r\ncan interact with known experts directly (for me it is not important to see them locally. but it is nice to can talk to them in person.)\r\n…','at \"What did you dislike about the event?\"','A2'),(104,NULL,NULL,'en','851389770',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(105,'1980-01-01 00:00:00',2,'en','1414487159','51.41872;7.32925','','','Y','','','','','A2','N','5','3',0.0000000000,0.0000000000,'A1','A2','3','4','2','Tight schedule of talks, not that easy to connect with people','Great talks','Evening activities','A2'),(106,'1980-01-01 00:00:00',2,'en','1245059004','53.34727;-6.31214','','','','Y','','Y','','A4','N','5','',1.0000000000,1.0000000000,'A2','A3','5','5','1','','','','A2'),(107,'1980-01-01 00:00:00',2,'en','1182747079','49.94109;8.58032','','','','','','','didn\'t attend','','N','','',NULL,NULL,'','A3','1','1','1','military sponsoring, general inability of the community to agree on things','','','A2'),(108,'1980-01-01 00:00:00',2,'en','1812323066','60.60294;10.00384','','Y','Y','Y','Y','Y','','A3','N','3','3',1.0000000000,1.0000000000,'A3','A3','5','5','4','The all vegan food','Seeing all my peeps','I missed the k8s talk and the trainign','A2'),(109,NULL,NULL,'en','824514000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(110,NULL,NULL,'en','970932873',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(111,'1980-01-01 00:00:00',2,'en','1937181823','48.85341;2.3488','','','','','Y','','','A3','N','4','',1.0000000000,0.0000000000,'A2','A1','4','4','3','','nice venue, well organized','','A2'),(112,NULL,1,'en','1911955415','48.9225;-0.79102','','','','','Y','','','A5','N','3','3',1.0000000000,1.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(113,'1980-01-01 00:00:00',2,'en','306268589','48.32407;9.09668','','','','','Y','','','A3','N','5','5',1.0000000000,0.0000000000,'A2','A1','4','4','1','','','','A2'),(114,NULL,NULL,'en','1901005011',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(115,'1980-01-01 00:00:00',2,'en','1848405835','51.51182;-0.11104','','','','Y','','','','A2','N','3','2',1.0000000000,1.0000000000,'A1','A1','4','4','2','','','','A2'),(116,'1980-01-01 00:00:00',2,'en','620240543','49.87167;8.65027','','','Y','','','','','A1','N','5','5',0.0000000000,0.0000000000,'A1','A2','5','4','','','the workshop','more workshops','A1'),(117,NULL,NULL,'en','1716251779',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(118,'1980-01-01 00:00:00',2,'en','762560804','46.20222;6.14569','','','','','Y','','','A3','N','4','4',2.0000000000,1.0000000000,'A5','A3','5','3','4','It looked like most talks were given by the same three companies. I was hoping to hear about other perspectives and experiences.\r\n\r\nI don\'t think it\'s really solvable but the vegan food didn\'t have enough protein in it.','The community, everybody was friendly.','sleep :)','A2'),(119,NULL,NULL,'en','1933516991',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(120,'1980-01-01 00:00:00',2,'en','1412864949','48.51224;9.23401','','','Y','','','','','A3','Y','5','5',0.0000000000,0.0000000000,'A3','A1','5','5','1','Audio setup did not work well and when it worked the Q/A from the audience they held the mic in the wrong way. The schedule on talks, in case of delays, should be a dynamic one (not a static webpage).','Meeting developers and connecting. The talks were great. The food was great.','','A2'),(121,NULL,NULL,'en','1327810584',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(122,'1980-01-01 00:00:00',2,'en','937900019','59.28578;15.19893','','','','Y','','Y','','A3','N','3','4',0.0000000000,0.0000000000,'A7','A3','4','3','3','','','Didn\'t get time to talk to all people I would have wanted.','A2'),(123,NULL,1,'en','315384816','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(124,NULL,NULL,'en','1645249986',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(125,'1980-01-01 00:00:00',2,'en','934922770','52.52437;13.41053','','','','','Y','','','A3','N','4','3',1.0000000000,1.0000000000,'A1','A3','4','5','1','# The downstairs room was way too loud.\r\nSeparate rooms for lunch/hangout and desk space would be nice.\r\nAlso: Outside area! Especially since covid is a thing and won\'t go away in the foreseeable future.\r\n\r\n# Sponsors\r\nThe event needs a sponsor code of conduct.\r\nNixCon should not be a cheap advertising space for the companies that work hard to accelerate the downfall of the world.\r\n\r\n# Diversity\r\nMaybe have a budget for travel/accommodation for underrepresented people who don\'t have high paid jobs at the companies that eat the world?','# Food\r\nAs a vegan I\'m used to being hungry at conferences, not this time. Thanks <3 <3 <3\r\n\r\n# Talks\r\nThe talks were super organized. Awesome heralds, good time planning.\r\n\r\n# Video Streaming\r\n<3','Comfortable Area. (Couches or something.)','A2'),(126,NULL,NULL,'en','575635205',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(127,NULL,NULL,'en','2073980706',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(128,NULL,NULL,'en','1481347457',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(129,'1980-01-01 00:00:00',2,'en','73758033','60.1657;24.90326','','Y','','Y','Y','Y','','A6','N','2','3',1.0000000000,1.0000000000,'A1','A2','4','5','2','Dark-roasted coffee','People, topics, initiative, video ops','I didn\'t get to talk to as many people as I\'d have liked to, but the fault is mine. Sometimes I wasn\'t sure if it\'s OK to join certain activities','A2'),(130,NULL,NULL,'en','2079596831',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(131,NULL,NULL,'en','1031722557',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(132,NULL,NULL,'en','326132144',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(133,NULL,NULL,'en','480927537',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(134,NULL,NULL,'en','15004251',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(135,NULL,1,'en','1677380045','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136,'1980-01-01 00:00:00',2,'en','285003581','','','','','','','','','','','','',NULL,NULL,'','','','','','','','',''),(137,NULL,NULL,'en','535982009',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138,'1980-01-01 00:00:00',2,'en','1809639559','','','','','Y','','Y','','A5','N','4','4',1.0000000000,0.0000000000,'A2','A3','4','3','1','','','I have a rare gene where my body is not able to digest plant cholesterol. Non vegan options for the food would have been great.','A1'),(139,'1980-01-01 00:00:00',2,'en','887844658','27.16474;44.01123','','','Y','Y','Y','Y','','A7','','','',NULL,NULL,'','A2','','','','','','',''),(140,NULL,NULL,'en','396776556',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(142,'1980-01-01 00:00:00',2,'en','1410122629','48.57479;2.43896','','','','','','','Internet','','','','',NULL,NULL,'A4','A2','','3','1','','Thanks to the CCC for providing a video recording which can be watched live!','Being in person.\r\nNot knowing ahead where the event would be.\r\n','A2'),(143,'1980-01-01 00:00:00',2,'en','1790180970','53.88972;7.10907','','','','Y','Y','','','','','','',NULL,NULL,'','','','','','','','',''),(144,NULL,NULL,'en','1758829082',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(145,'1980-01-01 00:00:00',2,'en','1499663877','51.36578;-0.08789','','','Y','Y','','','','A2','N','','',1.0000000000,3.0000000000,'A2','A1','3','3','','some talks were so technical, they were hard to understand what was being said or even the point of the talk / work.','Talking with people, seeing people from last year, a few of the talks I thought were really good. \r\nThe facilities were very clean, unlike last year.','Didn\'t like how Andril were treated, I wish the inner group was more friendly, less judgemental and generally less far, far left.','A2'),(146,NULL,NULL,'en','1960026538',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(147,'1980-01-01 00:00:00',2,'en','900089856','51.50853;-0.12574','','','','Y','','','','A2','N','4','4',1.0000000000,0.0000000000,'A1','A3','4','4','3','','','','A2'),(148,'1980-01-01 00:00:00',2,'en','603233148','','','','','','','','','','','','',NULL,NULL,'','','','','','','','',''),(149,'1980-01-01 00:00:00',2,'en','1098141414','55.67594;12.56553','','','','Y','','Y','','A3','N','','',1.0000000000,NULL,'A3','A3','4','4','5','The dinner / commuity area was to small - special at food time ','Best talks so far out out my 3 nixcons. Really nice small culture trip to show us around in the town the day before start','There was no tea at all. I do not drink coffee so ...','A2'),(150,'1980-01-01 00:00:00',2,'en','1895306301','53.01995;-7.59155','','','','','','','remote','A1','N','5','5',0.0000000000,0.0000000000,'A3','A3','3','5','1','Single Track.\r\n\r\nThis needs to change. \r\n\r\nNixcon has to become a multi track conference... there is just too much to talk about on a single track...','internet stream high quality.. ','nixxers.','A2'),(151,'1980-01-01 00:00:00',2,'en','304211901','51.8575;5.88593','Y','','','','Y','Y','','A3','N','','',1.0000000000,0.0000000000,'A3','A3','4','4','4','- There was no buffer time between talks, causing them to run over.\r\n- The air in the room with the tables was a bit stale and the room was loud.\r\n','- Great crowd, great questions. It felt much smaller than it was.\r\n- I also liked the badges with the avatars.\r\n- Videos for all the talks released very quickly.','- Fruit and other snack selections\r\n- More guidance for speakers.','A2'),(152,NULL,1,'en','2133267537','49.87167;8.65027','Y','','','','Y','Y','','A1','Y','5','4',1.0000000000,1.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(153,'1980-01-01 00:00:00',2,'en','1456283793','50.85045;4.34878','','','','','Y','','','A3','N','1','1',0.0000000000,0.0000000000,'A2','A3','2','3','4','While the event came across as a tight-knit community where many attendees seemed to know each other, I often felt isolated. Although part of this could be attributed to my non-native English proficiency, it was challenging for me to approach others. The event did not seem particularly inclusive for those who are not neurotypical or are simply shy ... also, not a lot of attendees were AFAB or non-white :\'(','I thoroughly enjoyed the venue\'s location and the catering, especially the quality of the vegan options. The video teams did an outstanding job, and the info beam added a fun element. The proximity of CCC Darmstadt and the train station, both within walking distance from the venue, was a plus. The pleasant weather, allowing for outdoor hacking, was another highlight.','The hack day was inadequate for me to genuinely connect and collaborate with others. I would have appreciated a \"first contributions\" or \"beginners-friendly\" hacking session. There\'s a noticeable gap between being a comfortable Nix/NixOS user and being a part of the project\'s core contributor team. I wish the hack day had been structured to welcome and incorporate more members into the core team, similar to what was the GHC Contributors Workshop organized just before ZuriHac this year.','A2'),(154,'1980-01-01 00:00:00',2,'en','1279892087','40.07303;-105.28748','','Y','','Y','Y','Y','','A6','N','','',3.0000000000,2.0000000000,'A1','A3','4','4','2','I don’t think there was anything. It seems there is good emphasis on things like consent and diversity / inclusion, and I would just like to say “great, do even more!” But that’s not so much a dislike as it is something I would like to see continue and improve.','Talks were great – I took many pages of notes and have rewatched and shared various talks.','I’m not quite sure how to parse this question. Either “what happened at the event that you felt like you missed out on” or “what was the event missing”. I’m going to answer the second one.\r\n\r\nI would like to see an “intermediate” training. I think I fall into a large group of developers (although maybe a bit ahead of the curve – this group is still growing) who have been “Nix adjacent” for possibly years – working on projects where they occasionally have to cargo-cult some Nix config, maybe even using Home Manager to manage some packages and write some dotfiles, etc. But who haven’t “figured out” Nix yet.\r\n\r\nThis training would probably be pretty audience-driven, but would cover stuff like using `nix repl` to explore configs, how some of the internals actually work (overlays, system activation, etc.) to help users see how to make their own changes to deeper parts of the system. Maybe a dive into the way derivations work, IFD, etc. … I’m trying to think of the various “a-ha!” moments I’ve had over the years.','A2'),(155,NULL,NULL,'en','1191289300',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(156,NULL,NULL,'en','866590930',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +/*!40000 ALTER TABLE `limesurvey_survey_239157` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_survey_248687` +-- + +DROP TABLE IF EXISTS `limesurvey_survey_248687`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_survey_248687` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `submitdate` datetime DEFAULT NULL, + `lastpage` int(11) DEFAULT NULL, + `startlanguage` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, + `seed` varchar(31) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X44X855` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X44X856` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X44X857` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X44X858` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X44X859` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X44X859other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X44X860` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X44X860other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X44X861` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X44X861other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X44X862` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X44X881` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X47X863SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X47X863SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X47X863SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X47X867` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X47X867comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X47X868` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X47X869` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X49X870SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X49X870SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X49X870SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X49X870SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X49X875` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X49X876` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X49X877` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X49X878` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `248687X49X879` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM AUTO_INCREMENT=83 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_survey_248687` +-- + +LOCK TABLES `limesurvey_survey_248687` WRITE; +/*!40000 ALTER TABLE `limesurvey_survey_248687` DISABLE KEYS */; +INSERT INTO `limesurvey_survey_248687` VALUES (1,NULL,2,'en','1993929693','Software Engineer ','Amazon','Friend\'s referral (Archit Gupta, @accelbread from flakelight)','Curiosity, talking tech, and career exploration.','A1','','A2','','A1','','A3','A6','5','5','5','A1','','Xe\'s talk on Docker images was also a great intro to Nix','A \"beginner room\" and an \"advanced room\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,NULL,1,'en','1772276548','Firmware Engineer','Rivos','Nix addicted coworker','Learn more about Nix and meet other people who use it.','A1','','A1','','A1','','A3','A6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3,NULL,NULL,'en','1994592612',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,NULL,NULL,'en','582237208',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(5,NULL,NULL,'en','1051598398',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(6,'1980-01-01 00:00:00',3,'en','712508871','Sr Architect IT applications ','American Airlines ','Linux unplugged ','Get an intro to Nix','A2','','A2','','A2','','A4','A8','5','5','5','A1','','Many','More intro/intermediate talks','5','4','5','5','','','','A3',''),(7,NULL,1,'en','1451532572','DevOps Manager','Vivint','Been using nix for personal stuff for years. ','Just couldn\'t resist. Looking for insights into enterprise deployments and innovative uses.','A1','','A1','','-oth-','On my work laptop.','A2','A4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8,'1980-01-01 00:00:00',3,'en','779777547','Silicon Design Verification Engineer','Rivos','Stove','Sounded fun','A1','','A1','','A2','','A4','A7','3','4','3','A1','','Substitutes and remote builders','Using Nix as a build tool to replace the likes of Mak or Bazel','5','5','4','4','Talking with others about nix','How much entry level or information most of the talks were about','Do more talks with industry people','A1','Nix can be very powerful'),(9,NULL,1,'en','861432713','Student','','Through the Nix discourse, as well as other community announcement channels','I really enjoy Nix, and I\'ve always wanted to attend a conference, so attending NixCon and SCALE was a great opportunity','A1','','A1','','-oth-','Student, but I use it at school too','A1','A4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(10,'1980-01-01 00:00:00',3,'en','1164192484','Student','','Nix discord users posted the survey for Nixcon NA','Look for Nix jobs','A1','','A1','','A2','','A2','A6','5','5','3','A1','','','','5','5','5','2','','Website could be better and more emphasized across the conference. QR codes for the sessionize','Hold more talks and be more clear about the audience. For example, separate talks by difficulty. The systemd talk was for Linux experts but the Xe docker and case for home server were targeted to nix beginners. This should be reflected in the Scale programs book somehow. ','A1',''),(11,NULL,NULL,'en','1675545748',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(12,NULL,NULL,'en','1627194030',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(13,'1980-01-01 00:00:00',3,'en','347954388','Software Engineer','AWS, but came on vacation, not sponsored, lol','Nix Discourse','Fun, talking with folks','A1','','A1','','A1','','A1','A5','5','4','4','A1','','Hallway talks','more advanced topics\r\nexperimental stuff like recusive nix and content-addressed derivations.','5','5','5','5','Meeting people','Hdmi','Displayport\r\n','A1',''),(14,'1980-01-01 00:00:00',3,'en','1510474263','Software Manager Infrastructure ','Luminar Technologies ','From Alexandre Prestele / tweag','I wanted to learn how to use nix store in an ephemeral CI environment, mission accomplished ','A1','','A2','','A1','','A4','A7','5','5','5','A1','','Bazel and Nix for robots','','5','5','5','5','','','','A1',''),(15,'1980-01-01 00:00:00',3,'en','706232427','retired','self','Linux Unplugged Podcast','See if I could pick up knowledge on how to better self host services','A1','','A1','','A2','','A4','A7','4','4','4','A1','','','\r\nMore blockchain devops','4','4','4','4','','','We ran into build issues with github API rate limiting with everyone on WiFi pulling at the same time. Someone should coordinate with github, get the IPs whitelisted','A1','Nix is cool'),(16,NULL,NULL,'en','289389209',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17,NULL,2,'en','1641383671','Senior Software Developer ','Symless Ltd.','SCaLE and Jupiter Broadcasting.','I am interested in using nix for personal and work.','A1','','A1','','A2','','A3','A7','4','5','3','A1','','Building NixOS modules','Workshop for building and compiling software with nix',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18,'1980-01-01 00:00:00',3,'en','294253529','Platform Engineer','Yummly','NIXOS Discourse','To interact with the community, watch talks','A1','','A1','','A2','','A2','A5','3','3','2','A2','','','','4','3','3','5','','','','A1',''),(19,'1980-01-01 00:00:00',3,'en','927072898','Member of Technical Staff','Anthropic','NY Nix Meetup','Meet Nix users to put faces to names. Pick people\'s brains about their experiences using Nix, ahead of deploying it at work.','A1','','A1','','A1','','A1','A1','4','4','4','A1','','Susbtituers talk','Nix in production/stories of when things when awry','5','5','4','4','Meeting people! Getting excites about Nix things','','','A1',''),(20,NULL,1,'en','21511031','Engineering Manager','Antithesis','Been following the foundation for a few years.','We love nix, and I came to help man our sponsor table','A1','','-oth-','I have it installed, but not on my primary device','A1','','A2','A4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(21,'1980-01-01 00:00:00',3,'en','2085488504','Freelancer','Me','I don\'t remember','I like nix','A1','','A1','','A1','','A2','A2','5','3','4','A1','','substituters','Intermediate/advanced workshops, any non-beginner interactive stuff','4','3','3','2','Informality, easygoing approach. Tables everywhere on the first day was a very comfortable setup, liked that a lot more than day 2.','Cold session rooms, first day projector screen super hard to read. ','Would have been nice to have an event forum for persistent comms somewhere. I\'m in the matrix room but just chat makes it easy to lose stuff. SCALE not having an event-wide forum is an annoyance as well.','A3','Unsure'),(22,NULL,NULL,'en','1539439551',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(23,NULL,1,'en','1113343173','Cybersecurity engineer','Yubico','NixOS Discourse, NixOS Unofficial Discord, etc.','Because I wanted to:\r\n- meet more people that use NixOS and are generally cool tech people / feel more connected to the NixOS (and related) communities\r\n- learn new things about NixOS / solve some problems that I am having\r\n- discover opportunities to contribute','A1','','A1','','','','A2','A6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24,'1980-01-01 00:00:00',3,'en','1577152714','','','Through SOCAL 21x.','Because I use Nix!','A1','','A1','','-oth-','only on personal machines','A2','A5','4','5','4','A1','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(25,'1980-01-01 00:00:00',3,'en','1539606487','Staff Software Engineer','','Mastodon post from Zach Mitchell','To learn more intermediate to advanced Nix knowledge and meet other Nix users','A1','','A1','','-oth-','I was a (mildly successful) advocate for Nix at my previous employer','A1','A6','5','4','3','A1','','Xe\'s talk about building Docker','','4','2','5','4','','','','A3',''),(26,'1980-01-01 00:00:00',3,'en','822611306','Editor','Linux Weekly News','I first heard about it when investigating SCaLE.','I was being paid to attend SCaLE by my employer to cover the talks, and I\'ve been a fan of Nix for a long time, so I was glad to fit some Nix talks in.','A1','','A1','','A2','','A1','A2','','2','3','A3','Yes in some talks, no in others','The talk about systemd in stage 1. But the others were interesting, they just contained less information that was actually new to me.','Many of the same topics. But I\'m especially interested in novel, technically challenging work.','5','5','4','5','It was nice to see so many other visibly gendernonconforming people. It was a pleasant surprise. Also, the presence of lots of charging outlets.','Scheduling. Seeing both Nix talks and SCaLE talks was hard, because they were on different schedules.','Standardized scheduling.','A3','I should try out the systemd stage 1 stuff. Also, apparently the nix foundation is more approachable than I had thought.'),(27,NULL,NULL,'en','747986257',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(28,'1980-01-01 00:00:00',3,'en','1710593220','Software Engineer','Beeper','Matrix I think','I like nix and nixos and I help maintain home manager','A1','','A1','','A1','','A2','A4','5','4','5','A1','','Systemd in stage 1','','5','5','5','5','The talks','The workshops. I would have liked them to provide more context and guide people to a specific goal rather than being so open ended','More hype talks at the beginning and then workshops later.','A1','Nix is awesome!!!'),(29,NULL,NULL,'en','366969223',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(30,'1980-01-01 00:00:00',3,'en','798343711','Firmware Engineer','Rivos','Nix loving coworker','I am trying out NixOS and I think it would be helpful at work. Hoped coming would help me learn new things and meet cool people.','A1','','A1','','A1','','A3','A6','4','3','4','A1','','I enjoyed the Looker session the most, as they gave good details on using Nix in a professional setting','- Overviews of more esoteric or newer features\r\n- discussions of using Nix in professional settings','4','4','4','5','Learning about all sorts of cool things about Nix and meeting other people who use it','I think the first day\'s sessions weren\'t as well structured. Second day was very good.','Running some advanced session topics in parallel with beginner ones would be nice, for those who don\'t need a from-zero overview ','A1','Nix definitely has what we need at my workplace, just gotta evangelize it'),(31,'1980-01-01 00:00:00',3,'en','570681946','Nix Engineer','Modus Create','Through work','To meet people interested in Nix','A1','','A1','','A1','','A2','A5','5','5','4','A1','','','','5','5','5','5','','','','A1',''),(33,'1980-01-01 00:00:00',3,'en','882528533','Staff Software Engineer ','Sure','Self hosted and Linux unplugged podcasts','Wanted to meet other nic users irl','A1','','A1','','A2','','A2','A5','5','4','4','A1','','','','5','5','5','5','','','Having a local binary cache from the beginning haha. ','A1','Nix is a cult and I\'m here for it'),(34,'1980-01-01 00:00:00',3,'en','983591218','Senior SRE','LTN Global ','Podcasts from Jupiter Broadcasting ','To learn more about Nix','A1','','A1','','A2','','A2','A7','4','4','5','A1','','“A Quick Introduction to Nix” followed by “Nix is a better Docker image builder than Docker\'s image builder”','Managing Nix at scale (1000’s of nodes)','4','5','5','4','The variety of perspectives ','Lack of communication about schedule changes ','Communicate schedule changes, pre plan based on CFP to minimize things falling because of rate limits or bandwidth by using local options and reaching out to 3rd parties like GitHub, Fastly, and Docker ahead of time. ','A1','If the foundation can solve the funding side of things, Nix is well positioned to grow immensely. '),(35,NULL,2,'en','565297370','Software Engineer','Amazon','Discourse','Love Nix, working on migrating some of our folks and I\'d like to contribute more.','A1','','A1','','A1','','A2','A5','5','5','4','A1','','[High|Low]Lights of Adopting Nix at Looker (Google Cloud)','Would be nice to have some more advanced topics in the future. Especially just sharing some of the tribal knowledge/new features/big plans etc.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(36,NULL,1,'en','1928059314','','','Discourse','To give a talk','A1','','A1','','-oth-','N/A','A1','A2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37,NULL,NULL,'en','2009090770',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(38,'1980-01-01 00:00:00',3,'en','928906099','Everything','Midstall Software','Discord, Matrix, and Discourse','Because I wanted to see what it was like.','A1','','A1','','A1','','A1','A6','5','5','4','A1','','Workshop','Asahi Linux, SELinux','5','5','5','5','Meeting people','Travel','Keep doing this','A1','Connections'),(39,'1980-01-01 00:00:00',3,'en','1730282565','Software / Infra Consultant','Femtodata','discourse.nixos.org','to meet other nixos users, and maybe my heroes (wimpy, xe, raito, etc)','A1','','A1','','A1','','A2','A3','5','5','5','A1','especially enjoyed the open foyer area discussions','xe\'s docker builder talk','application / language specific deep dives, e.g., ML stack, golang.','5','5','5','4','meeting people','not easy to find single source of truth for info, where presentations are hosted (if they are), live feed, etc','single source of truth for event, linking to matrix room for real time comms','A1','will try to get involved in the community, contribution to nixpkgs, etc'),(40,'1980-01-01 00:00:00',3,'en','1548461764','Master\'s Student','UCSB','The Jupiter Broadcasting Linux Unplugged podcast.','Because I LOVE nix.','A1','','A1','','A1','','A2','A3','4','3','3','A1','','I think the lightning talks where people showed off their cool nix projects + Pierre\'s presentation about module contracts were most interesting to me.','I would like to see more \"advanced\" nix stuff, i.e. more cool things you can do with nix like nixos-tests and such.','5','5','5','5','I liked the karaoke the most about the event and the opportunity to socialize and meet new people.','The workshops weren\'t as interesting to me as the ones from past years that I watched on YouTube, but that\'s OK.','Have more HDMI cables :D','A1','My biggest takeaway is the friends I made along the way :D'),(41,'1980-01-01 00:00:00',3,'en','292267496','Staff Engineer','NoRedInk','Xe tweeting about it','I happened to be near by. Plus I feel I don\'t learn all the cool new stuff happening in nix, and thought the con could help (it did)','A1','','A1','','A1','','A2','A3','4','4','3','A1','','Looker\'s','More real world use cases like looker\'s, badi\'s talk. Lightning talks were fun too. Perhaps a mediated exploration mapping out how people use nix at work, what for, pain points and highlights.','4','4','3','4','Talking to other nix users and learning about tools and concepts I was never exposed to. I\'m bringing back a big list of things to Google for, read about and test out.','Too many beginner talks. I know it was a big focus of the con, I\'m just not the target audience :<','Perhaps turn intro talks into workshops. More opportunities to learn how different companies are using nix.','A3','There\'s indeed a lot happening in nix that I just never hear about (we need a newsletter (preferably with an RSS feed))'),(42,'1980-01-01 00:00:00',3,'en','1272120299','Software engineer ','Tweag','Everywhere!','- Socialise other community members\r\n- Discuss Nix and community related issues with them\r\n- Talk to clients/prospects','A1','','A1','','A1','','A1','A2','5','5','4','A1','','By far: The hallway track','- Some more crazy advanced stuff\r\n- More industrial stories','5','4','5','5','- Many new faces (either NA people who couldn\'t attend the European NixCons or new community members)\r\n- The colocation with Scale. Both because attending both was slick, and because of all the random curious people who just showed up\r\n- The venue (top notch)','','','A1',''),(43,NULL,NULL,'en','1452860714',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44,'1980-01-01 00:00:00',3,'en','1243766009','Staff Engineer','Fastly','From a post in the discourse meetup topic','To meet other Nixers and to give a talk','A1','','A1','','-oth-','I’m using it myself, yes, but still working on making others adopt it','A1','A5','5','5','5','A1','','I really liked the docker one','More advanced topics. Not necessarily niche topics. Maybe with an angle of “we solved this issue we had with nix” and then explaining how it fixed it.','5','4','5','5','The networking aspect. I really liked manning the booth too on Saturday. Spreading the love of Nix was awesome.','It was hard finding time to talk with the nix core team.','Maybe 3 days would allow more time to connect?','A1','The nix community is so friendly and hard working it confirms I want to be part of it.'),(45,'1980-01-01 00:00:00',3,'en','92936228','','','I first learned about NixCon last year and was excited to learn that there was one taking place in North America.','Interested in learning more about Nix and joining the community.','A2','','A2','','A2','','A4','A8','5','5','5','A1','','\"A Quick Introduction to Nix\"','I thought the workshops on day one were fantastic, incl encouraging existing community members to help others.','5','4','5','5','The overviews were helpful as a beginner. And karaoke!','','','A1','I have a fairly narrow understanding of Nix going into the event, and I thought the event did a good job featuring the range of efforts across the ecosystem. My biggest takeaway was that there\'s a wide variety of ways to engage with the project and to get involved.'),(46,'1980-01-01 00:00:00',3,'en','2106853596','Software Engineer','n/a','','To meet other Nix users and help make Nix awesome!','A1','','A1','','A1','','A2','A5','5','5','5','A1','','','','5','5','5','5','','','','A1',''),(47,'1980-01-01 00:00:00',3,'en','1923420489','Software Engineer','Government','I saw it come up on the forum and started following it from there.','A chance to meet up with other Nix nerds and talk about Nix? Count me in. \r\n\r\nMost of the talks were intro, but even those usually had a small nugget I\'d never seen or heard of. It was great!','A1','','A1','','-oth-','Only on my work machine, not on servers','A2','A6','5','4','4','A1','','I hugely enjoyed Xe\'s talk about Docker images, as well as Matthew\'s talk Nix the Planet (which wasn\'t technically NixCon, but was Nix-oriented)\r\nThe self-hosting modules one was also interesting, as I\'ve only written a few modules for myself thus far.','Secret handling (which isn\'t special to nix, but does have interesting implications wrt the nix store and keeping them encrypted there, i.e. sops or agenix)\r\nMaybe something a bit deeper on derivations?\r\nI think a talk that goes through NixOS setup could be interesting, potentially with flakes. One of the \"click\" moments for me was being able to just casually switch DE to try them out when I first started.','5','4','5','5','Getting to talk to a bunch of other Nix enthusiasts (and experts) was a phenomenal experience. It\'s always so interesting to see the different ways people use Nix.','Probably just the room setup, which might not even be a problem with the con itself. The projector on the wall (first day) was hard to see, especially with the lighting. The second day was marginally better on the screen, at the cost of being a bit smaller.','I can\'t think of anything off the top of my head, overall it seemed to go pretty well. I saw a few requests for assistance in the Matrix, but it seemed to always get covered.','A1','Nix has a much larger user-base than I would have expected. Of course it\'s bigger than any given event, but the amount of people who came *specifically* for NixCon was a big surprise. \r\nI\'m glad to see such an active community.'),(48,NULL,1,'en','1663088243','Student','Boston University','discourse.nixos.org','To meet fellow nixos users.','A1','','A1','','A1','','A1','A3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(50,'1980-01-01 00:00:00',3,'en','2014426668','Student','Boston University','nixos discourse','To meet fellow nix users and learn latest development on nix.','A1','','A1','','A1','','A1','A3','4','3','4','A2','','Building Robots with Nix and Bazel','Nix internals','4','5','4','3','The lightning talk','The depth of the content','Have a separate advanced track','A1',''),(51,NULL,0,'en','1436779893','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(52,'1980-01-01 00:00:00',3,'en','1112436074','Director of DevOps Engineering','Xevo','discourse, matrix','Nix/NixOS are amazing. Want to learn more and meet other like-minded invididuals. ','A1','','A1','','-oth-','in testing, but nowhere in production (yet)','A2','A5','4','3','4','A2','The talks were definitely squished together, with a tiny amount of time between. Lunch was only an hour, and the exhibit hall was only open during time when I wanted to be attending talks or syncing with folks in the common area. The only time there was enough time for discussion was the unconf at the end of day 2. ','I can\'t choose just 1. I got several things out of about half of the talks. The beginner talk was great, not for me, but as a video I can refer others to in the future. It really needed to be split up into at least 2 talks as there was so much more for him to say. ','I would like to see more intermediate (selfish reason!!!). The talk on NixOS module dev was great, but still too basic. ','5','5','5','3','The networking. I met so many great people. ','Technical difficulties are always a possibility. We had network issues, external rate limiting, projector issues, the sound quality wasn\'t too great for those of us that are hard of hearing. On day 1 the screen was so small compared to the room size that even with 20/10 vision I could barely see from about half way down. ','See above \"like least about the event\"','A1','I have a lot to learn, and that Nix is growing like crazy. I\'m happy to be along for the ride. '),(53,'1980-01-01 00:00:00',3,'en','1255692574','Professional In Residence','Kent','','Meet some of my fellow contributors. ','A1','','A1','','A2','','A2','A6','4','2','3','A1','','','','4','4','4','4','The people. ','Too many talks for beginners. ','Alternate between East and West coasts ','A3',''),(54,NULL,NULL,'en','1356560539',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(55,'1980-01-01 00:00:00',3,'en','52334542','Software Engineer','AWS','Discourse','I love Nix and wanted to get more involved with the community','A1','','A1','','A1','','A2','A5','5','5','5','A1','','Nix the World! Learned about a lot of cool tools that I wasn\'t aware of at all. Definitely going to be looking more into nixos-anywhere in the future.','Always up for new cool tech and maybe some deeper dives on developing with Nix, such as using the new debugger or `builtins.withErrorContext` etc.','5','5','5','5','Meeting all of the Nix folks!','','Some collaborative dev sessions might be fun in the future.','A1','Learned a lot about parallel efforts involving making Flakes more project-friendly, and I\'m looking forward to contributing upstream to those efforts as well.'),(57,'1980-01-01 00:00:00',3,'en','1632136295','Founder','Flakery','not sure.','Interested generally in nix, wanted to promote my product','A1','','A1','','A1','','A2','A6','5','4','4','A1','','Lightening talks','NixOs Integration test framework ','5','5','5','5','Karoke!','Wasn\'t long enough','I would have liked more sessions with advanced topics. first day was beginner focused but i can understand why','A1','Nix has a great growing community that i\'m proud to. be a member of '),(58,'1980-01-01 00:00:00',3,'en','137767519','Staff Engineer','','Discourse post','I was going to attend Scale anyway but it was conveniently colocated','A1','','-oth-','I use it on some of my machines for some of my projects','A2','','A3','A5','5','4','4','A1','','Xe Iaso’s talk about building docker images and the nix state of the union were both interesting','More advanced packaging scenarios or language features/idioms that have to be used','5','4','5','3','The best part was seeing all the energy about Nix in person. Also got to see a lot of people in person who I had only known via GitHub/discourse/YouTube','The program got off track from the published schedule which is honestly not that big a deal because it still worked out. I know some of it was due to AV or github rate limiting but it also seemed like 1 hour was too short for some of the workshops. The only thing that was actually annoying about this was that it was difficult to mix in other scale events with nixcon stuff, but this was as much on other events not necessarily following schedule either','smaller group breakouts during workshops','A1','People are excited about nix!'),(60,'1980-01-01 00:00:00',3,'en','533971590','Security engineer','Yubico','Discourse, Discord, Matrix, potentially others','- To meet people the other cool people who use Nix and who probably have more Nix experience than I do\r\n- To learn new things about Nix\r\n- To potentially help others with Nix\r\n- To solve some Nix problems of mine\r\n- To become more connected to the Nix community','A1','','A1','','A2','','A2','A6','4','4','4','A3','Generally i felt like I had enough time outside of talks to ask questions that I had and to meet new Nix folk. I certainly wouldn\'t aim for less, and I think more could be good so long as people don\'t get bored and leave. I think having semi-structured ways to foster discussion might be valuable additions to the conference.','Hard to answer! I listened to most the talks and took some different value away from each one. As an experienced Nix user, I think I probably got the most out of the substituters and remote builders presentation, though I definitely don\'t remember everything I need from it. I also really valued the state of the union talk.','My answers today probably (hopefully) won\'t be reflective of what I would say approx. a year from now, but current me would love to hear some insight from the docs team (e.g., how new users can contribute, what they\'re up to, etc.), some workshop-style material on how to do secrets management, some in-depth packaging tutorials (for nixpkgs or personal use). ','5','4','4','5','Opportunities to connect with awesome people in the Nix community. And the NixCon NA 2024 website that made it super easy to plan for attending the conference.','The SCaLE Wi-Fi.','Please continue to co-locate with SCaLE unless there is somehow some other more compelling option. As for actual improvements, none come to mind. It was awesome!\r\n','A1','I need more Nix events in my life.'),(61,NULL,NULL,'en','1430458633',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(62,NULL,NULL,'en','621380118',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(63,'1980-01-01 00:00:00',3,'en','1200517281','','','The SNUG','To learn more about nix and meet people','A1','','A1','','A2','','A2','A2','4','4','4','A1','','The one about home manager','More 3rd party projects, more self hosting','5','5','5','5','Meeting a lot of different people','Could use a bit more hallway track/hack session','','A1','Nix good'),(64,'1980-01-01 00:00:00',3,'en','800146042','DevOps','A healthcare startup','Rob','I was at SCaLE already','A1','','A1','','A1','','A3','A6','4','4','4','A1','','Dan’s module talk','- Deep dive flakes\r\n- managing a fleet of NixOS in production','4','5','5','4','Community vibe','Political issues related to sponsorship','More advertising, bigger rooms for talks','A1','There’s more Nix users in NA than I realized'),(65,'1980-01-01 00:00:00',3,'en','533345701','Software Engineer','2U','I\'m an organizer lol','I wanted to see the first North American nixcon happen 🙏😭🙏😭','A1','','','','A1','','A2','A7','5','4','4','A1','','Xe\'s session ','I would like to see a place where beginners can congregate and ask questions freely ','5','4','5','3','Talks','Registration felt disorganized','','A1',''),(66,'1980-01-01 00:00:00',3,'en','1089373465','Staff Engineer','Populus Inc','Jupiter Broadcasting show','Love NIX and recently started using it at home a lot','A1','','A1','','A2','','A3','A7','5','5','5','A1','','state of the union\r\nmaking docker images in nix','','5','4','5','5','','','','A1',''),(67,'1980-01-01 00:00:00',3,'en','1526418160','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),(68,NULL,NULL,'en','572597897',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(69,'1980-01-01 00:00:00',3,'en','797320634','SRE','ngrok','google','Learn about nix ecosystem, How to use nix for CI, and form connections','A1','','','','A1','','','A7','5','3','4','A2','Yes and No. Yes we had discussion time, but it wasn\'t structured. I suggest using the Birds of a Feather method or Hallway Talks to schedule time for specific follow-up discussions wrt talks or topics.','Nix + CI','Migrating to Nix, Nix vs. Typescript as a configuration language','5','4','4','4','','','','A1',''),(70,'1980-01-01 00:00:00',3,'en','283720571','Software Engineer','','Dan Baker and David Nuon','To support/help David and Dan where I could, get more general knowledge about Nix and its applications(which according to Matthew is probably limitless), and network','A1','','A1','','A2','','A3','A7','3','3','4','A1','I\'m not sure if this means discussion after a talk or discussion within the convention itself. If it\'s the latter than I think, yes, there was a lot of time to talk to people about what they are working on and how they use nix.','I didn\'t attend the talk but probably Xe\'s talk about building Docker Images with Nix','Any topics that people are passionate about talking on with respect to the convention','5','5','3','3','Meeting/talking to people and learning from them through conversation','I think in general, a Thursday-Friday event is tough. There were some people who came later in the evening expressing interest in Nix but unable to attend due to work.','Perhaps a dedicated information booth for how to get more involved with the community could be beneficial. I think that could provide a good bridge between people who are new/are not involved with the community and those who are. While providing links to matrix spaces and other forums is probably sufficient I think front-loading the information never hurts if the resources are available.','A1','Technically not part of Nix Con itself but \"Nix The Planet\"'),(71,NULL,1,'en','1661446588','Firmware Engineer','Rivos Inc.','A coworker who is a big Nix fan','I\'m using NixOS on my desktop to force myself to learn it, and use it a bit at work but would like to use it more.','A1','','A1','','A1','','A3','A6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(72,'1980-01-01 00:00:00',3,'en','719803705','Editor-in-Chief','Jupiter Broadcasting','I was invited by Zach and others.','I am very interested in networking with the Nix community and building a deeper understanding of its future and market fit.','A1','','A1','','A1','','A2','A6','5','4','4','A1','','I found the workshopping happening out in the made area the most impressive, and it seemed quite valuable. The meme was people were debating packaging at Ubucon, while folks were getting work done at NixCon.','Onboarding tracks are always great, maybe a local cache to reduce load on GitHub.','5','4','5','5','Casual yet productive vibe.','Not much...','Very selfish of me - but I\'d love to see some structure around media. IE, someone who could work with media to identify folks that would make for good interviews, perhaps facilitate a small space to conduct those interviews. Because becoming in, we don\'t always know who is who, and who might be the unquie person from the community that made it to the event, who might be a big contributor, etc.','A1','I was impressed with the companies building around Nix. Equally, it feels like the market has only recently woken up to its value. While Nix itself has been around for a long time, the market fit is new. \r\n\r\nSo, seeing faces from the foundation and these companies around Nix was very reassuring. It felt like intelligent people were on the job.'),(73,NULL,NULL,'en','1013413173',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(74,NULL,1,'en','1654261415','CTO','Zeko Labs','Friend in community','I love Nix and I was invited to speak at SCALE','A1','','A1','','A1','','A1','A3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(75,'1980-01-01 00:00:00',3,'en','1442284064','Senior Software Engineer','United Health Group','A combination of the nix discourse forum and NY nix users meet up events.','I use NixOS as the operating system for my personal computer. I also use it to build and package personal, public, and (more rarely but not never) professional software projects.\r\n\r\nI\'m really excited about the nix ecosystem of projects and I attended NixCon because I wanted to engage with the community, learn more about nix, and start to figure out how I can best contribute.','A1','','A1','','-oth-','Technically yes, but rarely. There\'s no effort to adopt nix at my organization and I the number of users I am aware of is very small.','A2','A5','5','5','4','A3','I don\'t have an opinion on this.','Probably the Nix State of the Union. It\'s really interesting to understand the organizational and community dynamics around nix, which are just as important to making the nix project work as the underlying research and technical implementation of the tools is.','I would love to see topics that serve as an introduction of a project to potential new contributors. I\'m interested in contributing. Talks that explore the internals of an ecosystem tool, but in way that js approachable and friendly to intermediate users who are unfamiliar with the given tool\'s codebase, would be really helpful to me personally and also, I think, to the longevity of these tools and the broader community.','5','5','5','5','The karaoke. Whose idea was this??? Also damn some people were really good?','The unconference was cool, though I wish there would have been more opportunities that prompt conversations between strangers -- but it\'s also easy to overly cultivate that. The center area with tables was a good space for that. I guess I can\'t think of something I liked least...\r\n\r\nHonestly, although I loved colocating the event with SCaLE, the location was kind of hard to get to if you weren\'t in the area and didn\'t have a car. LA traffic sucks, and going to the airport Sunday I almost missed my flight because of bizarrely timed road work. Maybe you all can fix that for next time? :)','Force more people to sing karaoke.','A1','The people behind nix are as cool as the technology.'),(76,'1980-01-01 00:00:00',3,'en','432262592','Software Engineer','Arista Networks','Discourse','Community!','A1','','A1','','A1','','A1','A2','','','','A1','','I liked the state of the union, the Google experience report, and the unconference - not necessarily in that order.','I\'d like to see more real world experience reports.','5','4','5','4','I loved seeing my friends and community members and chatting with them.','I thought some of the talks were a little outside of my interests. A bit too basic I thought.','More speakers! More attendees!','A1','What a lovely conference! It was great to catch up with everyone!'),(77,'1980-01-01 00:00:00',3,'en','819629665','Senior Software Engineer ','Mission Secure, Inc','Linux Unplugged podcast ','I was interested in learning more about Nix OS','-oth-','I used the package manager before NixCon and installed Nix Os first night of conference ','A1','','A2','','A3','A7','5','4','4','A1','','','','5','4','3','4','Meeting so many great people. The community was really welcoming, and it was also a great learning opportunity ','','','A1','I was really impressed with the community and the enthusiasm '),(78,'1980-01-01 00:00:00',3,'en','861639896','software developer ','dod','I follow Nix and heard thru many channels such as discord, element, and discourse.','For the love of Nix, to support, and learn from many great people.','A1','','A1','','-oth-','Eventually ','A3','A6','5','5','5','A1','','the workshop on ci/cd','more security focused and besy practices discussions.','5','5','5','5','The discussions and also how nice everyone was. I am a person with high anxiety in social settings but I found this not bad.','so short and network','workshop on packing modules and best practices in writing nix configs','A1','That nix can do everything and there is a need for it'),(79,NULL,NULL,'en','412853034',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(80,'1980-01-01 00:00:00',3,'en','1724960778','I do not have a job','I am unemployed','My father, he got me into Nix','I love Nix','A1','','A1','','-oth-','Unemployed ','A3','A7','5','5','5','A1','','Probably the ones aimed at people just getting into Nix/showing you how to do stuff, the possibilities of things you can do with Nix are insane','More of the unusual stuff you can do with Nix, it’s super cool','5','5','5','5','It’s Nix!!! Also I met a lot of really nice people who showed me a lot of things I’ll probably use every time I use Nix.','I didn’t explicitly dislike anything, it would’ve been cool if it was a bit longer though.','Just keep doing what you’re doing!! It’s amazing','A1','That Nix is awesome and I’ll never use another OS again '),(81,'1980-01-01 00:00:00',3,'en','2106701233','Software Engineer','Martincoit Networks','Discourse','Because I love nix','A1','','A1','','A1','','A2','A2','5','4','5','A3','Unsure, didnt make it to many of the talks','','Nix in production and war stories','5','5','5','5','Everyone was approachable and the \"hallway track\" conversations were fantastic.','Projector and lighting of the speakers','Closer after hours events','A1','Meeting Eelco'),(82,'1980-01-01 00:00:00',3,'en','454790034','Software Engineer','D. E. Shaw','From Ron','Because Nix is awesome.','A1','','A1','','A1','','A1','A2','3','2','2','A1','This was probably the best part for a Nix expert. I spent most of the time talking with people, not listening to talks.','','As a more advanced user, I\'d like more advanced topics.','3','5','5','4','Networking','Disorganization, talks going late, etc. The talks were also very beginner focused and it wasn\'t apparent.','Mark each talk as \"beginner/intermediate/advanced\" so we know which ones to go to.\r\nI personally didn\'t find the workshop format helpful. I\'d focus more on talks and then make time/space for people to collaborate where there are no talks.','A1',''); +/*!40000 ALTER TABLE `limesurvey_survey_248687` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_survey_346552` +-- + +DROP TABLE IF EXISTS `limesurvey_survey_346552`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_survey_346552` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `token` varchar(35) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, + `submitdate` datetime DEFAULT NULL, + `lastpage` int(11) DEFAULT NULL, + `startlanguage` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, + `seed` varchar(31) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `startdate` datetime NOT NULL, + `datestamp` datetime NOT NULL, + `refurl` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X825SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X825SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X825SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X825SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X825other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X838SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X838SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X838SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X838SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X838SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X838other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X846SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X846SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X846SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X846SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X846SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X846SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X846SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X846SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X826` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X826other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X827` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X827other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X828` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X829` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X829other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X830SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X830SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X833` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `346552X43X834` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `idx_survey_token_346552_34322` (`token`) +) ENGINE=MyISAM AUTO_INCREMENT=417 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_survey_346552` +-- + +LOCK TABLES `limesurvey_survey_346552` WRITE; +/*!40000 ALTER TABLE `limesurvey_survey_346552` DISABLE KEYS */; +INSERT INTO `limesurvey_survey_346552` VALUES (1,NULL,NULL,NULL,'en','1342805011','2023-09-26 21:34:36','2023-09-26 21:34:36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,NULL,'2023-09-26 22:00:25',1,'en','1138393869','2023-09-26 21:48:57','2023-09-26 22:00:25','https://discourse.nixos.org/','','','Y','Y','','Y','','','Y','','','A3','A3','A3','A3','A1','A2','A4','A4','A62','','A5','','','A4','','Y','Y','A2',''),(3,NULL,NULL,NULL,'en','1616346177','2023-09-26 21:49:15','2023-09-26 21:49:15',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,NULL,'2023-09-26 21:50:39',1,'en','963440235','2023-09-26 21:49:30','2023-09-26 21:50:39','https://discourse.nixos.org/','','','Y','Y','','Y','','','Y','','','A3','A4','A4','A2','A2','A2','A3','A3','','','A5','','','A5','','Y','Y','A3',''),(5,NULL,'2023-09-26 21:54:52',1,'en','234471081','2023-09-26 21:53:17','2023-09-26 21:54:52',NULL,'','','Y','','','Y','','Y','Y','','','A1','A2','A2','A2','A2','A2','A3','A3','A6','','A3','','Las Vegas','A5','','','Y','A2','Excited about this! '),(6,NULL,'2023-09-26 21:56:23',1,'en','1314173236','2023-09-26 21:53:54','2023-09-26 21:56:23','https://discourse.nixos.org/','','','Y','Y','','Y','','','','','','A1','A4','A4','A2','A2','A2','A2','A2','A48','','-oth-','anywhere except most red states. I will not spend a single penny in Florida, Missouri, etc.','not really','A5','','Y','Y','A2','I guess it\'s a selfish ask, but please, please don\'t pick a red state. '),(7,NULL,NULL,NULL,'en','1484116091','2023-09-26 21:54:33','2023-09-26 21:54:33','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8,NULL,'2023-09-26 22:29:43',1,'en','1097698873','2023-09-26 21:55:10','2023-09-26 22:29:43','https://discourse.nixos.org/','Y','','Y','Y','NixOS user','Y','','Y','','','Discuss major development efforts (flakes stabilization, distributed nix cache, systemd networking, secure boot, etc)','A3','A2','A2','A1','A2','A3','A3','A3','A22','','A2','','','A5','','','Y','A2','Re. the conversations on Discourse: Organizers should prioritize the needs of North American attendees over the needs of attendees from other continents. We should welcome everyone, but it is ultimately an event for the region.'),(9,NULL,'2023-09-26 21:57:27',1,'en','1357207695','2023-09-26 21:55:55','2023-09-26 21:57:27','https://discourse.nixos.org/','','','Y','Y','','Y','','','Y','Y','','A1','A2','A2','A3','A3','A4','A4','A4','A7','','A3','','Denver','A4','','','Y','A2',''),(10,NULL,'2023-09-26 21:59:49',1,'en','321361327','2023-09-26 21:56:54','2023-09-26 21:59:49',NULL,'','','Y','Y','','Y','','','Y','Y','','A2','A1','A3','A2','A2','A3','A4','A4','A15','','A4','','Chicago','A5','','Y','Y','A2',''),(11,NULL,'2023-09-26 21:59:30',1,'en','1927439456','2023-09-26 21:58:23','2023-09-26 21:59:30',NULL,'','Y','Y','','','Y','','Y','','','','A1','A2','A2','A2','A3','A4','A4','A4','A48','','A3','','Tacoma, WA','A2','','Y','Y','A1',''),(12,NULL,NULL,NULL,'en','901790451','2023-09-26 21:58:26','2023-09-26 21:58:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(13,NULL,NULL,NULL,'en','1790299957','2023-09-26 21:59:10','2023-09-26 21:59:10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(14,NULL,NULL,NULL,'en','778579','2023-09-26 22:01:22','2023-09-26 22:01:22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(15,NULL,'2023-09-26 22:03:08',1,'en','1268577783','2023-09-26 22:01:39','2023-09-26 22:03:08',NULL,'','','Y','Y','','Y','','Y','Y','','','','A2','','','A2','A3','A4','A4','A52','','A6','','Edmonton','A4','','','Y','A2',''),(16,NULL,'2023-09-26 22:03:12',1,'en','537162466','2023-09-26 22:01:51','2023-09-26 22:03:12',NULL,'','','Y','Y','','','','','','','Organize I guess :>','A2','A2','A2','A2','A4','A1','A2','A2','-oth-','France','A8','','Mexico City?','A5','','','Y','A1',''),(17,NULL,'2023-09-26 22:08:16',1,'en','1299700765','2023-09-26 22:02:41','2023-09-26 22:08:16',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A2','A1','A1','A1','A2','A2','A2','A2','A36','','A2','','St Louis, Missouri ','A4','','','Y','A2',''),(18,NULL,'2023-09-26 22:07:55',1,'en','2805615','2023-09-26 22:06:30','2023-09-26 22:07:55',NULL,'','','Y','','','Y','','','','','','A2','','A3','A3','','A1','A4','A4','A6','','A3','','','A5','','','Y','A3','Do it!'),(19,NULL,'2023-09-26 22:09:37',1,'en','1178405789','2023-09-26 22:07:04','2023-09-26 22:09:37',NULL,'','','','Y','','Y','','Y','','Y','','A1','A2','A3','A2','A3','A4','A4','A4','A6','','A3','','','A5','','Y','Y','A2',''),(20,NULL,'2023-09-26 22:09:32',1,'en','889436557','2023-09-26 22:07:40','2023-09-26 22:09:32',NULL,'','','','Y','','Y','','','Y','','','','','A3','','','','','','A7','','','','','A5','','Y','','A2',''),(21,NULL,'2023-09-26 22:10:04',1,'en','1291984418','2023-09-26 22:08:34','2023-09-26 22:10:04',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A3','','A4','A1','A2','','','','A33','','A2','','','A4','','','Y','A2',''),(22,NULL,'2023-09-26 22:11:55',1,'en','2068706316','2023-09-26 22:10:21','2023-09-26 22:11:55',NULL,'','Y','','','','','Y','','','','','A1','','','','','','','','A6','','A3','','Pasadena, CA','A1','','','Y','A1',''),(23,NULL,NULL,NULL,'en','1482207498','2023-09-26 22:10:26','2023-09-26 22:10:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24,NULL,'2023-09-26 22:13:20',1,'en','18307132','2023-09-26 22:10:37','2023-09-26 22:13:20','https://www.reddit.com/','','','','Y','','Y','','Y','Y','','','A2','A3','A3','A1','A1','A3','A3','A3','A44','','A2','','','A5','','Y','Y','A2',''),(25,NULL,NULL,NULL,'en','1646844491','2023-09-26 22:11:05','2023-09-26 22:11:05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(26,NULL,NULL,NULL,'en','1515085289','2023-09-26 22:12:43','2023-09-26 22:12:43','https://t.co/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27,NULL,'2023-09-26 22:17:13',1,'en','145629253','2023-09-26 22:15:20','2023-09-26 22:17:13',NULL,'','Y','','','','Y','','Y','','Y','','A2','A3','A3','A2','A2','A2','A4','A4','A6','','A3','','','A5','','Y','Y','A2',''),(28,NULL,NULL,NULL,'en','1424644320','2023-09-26 22:16:53','2023-09-26 22:16:53','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(29,NULL,'2023-09-26 22:26:20',1,'en','75856913','2023-09-26 22:17:37','2023-09-26 22:26:20',NULL,'','','Y','','','Y','','Y','Y','','','A1','A2','A3','A2','A2','A2','A3','A3','A7','','A3','','Denver','A5','','Y','Y','A2','Strongly consider requiring masks at the conference for those of us that either are or live with immunocompromised individuals.'),(30,NULL,NULL,NULL,'en','425490903','2023-09-26 22:17:48','2023-09-26 22:17:48',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(31,NULL,'2023-09-26 22:21:59',1,'en','1567109833','2023-09-26 22:20:28','2023-09-26 22:21:59',NULL,'','','Y','Y','','Y','','Y','','','','A3','','','A2','A4','A4','A4','A4','A22','','A2','','Boston','A3','','','Y','A2',''),(32,NULL,'2023-09-26 22:25:38',1,'en','1175242613','2023-09-26 22:23:55','2023-09-26 22:25:38',NULL,'','','','Y','','Y','','','','Y','','A4','A4','A3','A3','A1','A3','A3','A3','','','A5','','','A5','','','Y','A2',''),(33,NULL,NULL,NULL,'en','1211972069','2023-09-26 22:27:09','2023-09-26 22:27:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34,NULL,'2023-09-26 22:33:23',1,'en','1253827470','2023-09-26 22:28:17','2023-09-26 22:33:23',NULL,'','','Y','Y','','Y','','','Y','Y','','A1','A2','A3','A2','A3','A3','A4','A4','A3','','A3','','','A5','','Y','Y','A2',''),(35,NULL,'2023-09-26 22:29:54',1,'en','1723147952','2023-09-26 22:28:22','2023-09-26 22:29:54',NULL,'','Y','','','','','','','','','','','','','','','','','','','','','','','A2','','','Y','',''),(36,NULL,NULL,NULL,'en','1766866719','2023-09-26 22:29:16','2023-09-26 22:29:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37,NULL,'2023-09-26 22:32:53',1,'en','1148191634','2023-09-26 22:30:33','2023-09-26 22:32:53','https://t.co/','','','','','I have been using NixOS on my personal laptop for 6 months now','Y','Y','Y','','Y','','A2','A2','A2','A3','A2','A4','A4','A4','A33','','A2','','New York','A5','','Y','Y','A2','Really excited for this to happen'),(38,NULL,NULL,NULL,'en','971692462','2023-09-26 22:30:35','2023-09-26 22:30:35','https://www.reddit.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(39,NULL,'2023-09-26 22:34:25',1,'en','1170968824','2023-09-26 22:32:53','2023-09-26 22:34:25','https://old.reddit.com/','','Y','','','','Y','Y','Y','','Y','','A2','A1','','A2','A2','A3','A4','A4','A14','','A4','','Chicago','A3','','Y','Y','A3',''),(40,NULL,'2023-09-26 22:35:42',1,'en','143048875','2023-09-26 22:33:26','2023-09-26 22:35:42','https://t.co/','','','','Y','','Y','','','Y','','','A3','A3','A2','A2','A1','A1','A2','A2','-oth-','Slovenia','A5','','Montreal','A5','','Y','','A1',''),(41,NULL,NULL,NULL,'en','629337759','2023-09-26 22:33:47','2023-09-26 22:33:47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(42,NULL,'2023-09-26 22:38:44',1,'en','223512692','2023-09-26 22:37:00','2023-09-26 22:38:44',NULL,'','','Y','Y','','Y','','','','','','A2','A2','A2','A2','A2','A3','A3','A3','A60','','A5','','','A5','','Y','Y','A3',''),(43,NULL,NULL,NULL,'en','1698131682','2023-09-26 22:38:14','2023-09-26 22:38:14','https://www.reddit.com/r/NixOS/comments/16t1n3p/nixcon_north_america_survey/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44,NULL,'2023-09-26 22:45:19',1,'en','1504850510','2023-09-26 22:38:40','2023-09-26 22:45:19',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A2','A2','A3','','A2','','','','A53','','A6','','Vancouver, or even better, Victoria on Vancouver Island. Otherwise, the best options are likely Seattle, Portland, and SF on the US west coast, Boston or NYC on the US east coast. Toronto or Montreal are OK options for Canada east.','A4','','Y','Y','A1','Remember that we are still in a global pandemic, and despite our wishes otherwise, SARS2 has its name for a reason; it would be unwise to ignore the science here, and would inevitably lead to real harm to individuals in the Nix community, as well as the collective.'),(45,NULL,NULL,NULL,'en','1439034748','2023-09-26 22:40:47','2023-09-26 22:40:47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(46,NULL,NULL,NULL,'en','1082752894','2023-09-26 22:41:56','2023-09-26 22:41:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(47,NULL,NULL,NULL,'en','1927254040','2023-09-26 22:42:23','2023-09-26 22:42:23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(48,NULL,'2023-09-26 22:46:04',1,'en','1235966155','2023-09-26 22:44:33','2023-09-26 22:46:04',NULL,'','Y','Y','','','Y','','Y','','Y','','A2','A3','A4','A3','A1','A4','A4','A4','A53','','A6','','Vancouver','A1','','','Y','A2',''),(49,NULL,'2023-09-26 22:49:32',1,'en','16187760','2023-09-26 22:48:07','2023-09-26 22:49:32',NULL,'','Y','','','','Y','Y','','Y','','','A1','A2','A2','A3','A4','A4','A4','A4','A48','','A3','','Seattle','A3','','Y','Y','A2','Please make this happen!'),(50,NULL,NULL,NULL,'en','1086563190','2023-09-26 22:48:16','2023-09-26 22:48:16','https://www.reddit.com/r/NixOS/comments/16t1n3p/nixcon_north_america_survey/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(51,NULL,NULL,NULL,'en','291584192','2023-09-26 22:48:23','2023-09-26 22:48:23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(52,NULL,'2023-09-26 22:50:49',1,'en','1821970245','2023-09-26 22:49:24','2023-09-26 22:50:49','https://t.co/','','','','Y','','','','Y','','','','','','A4','','A2','','','','A60','','A5','','','A2','','','Y','A2',''),(53,NULL,NULL,NULL,'en','1292729946','2023-09-26 22:50:37','2023-09-26 22:50:37','https://t.co/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(54,NULL,NULL,NULL,'en','69911666','2023-09-26 22:52:06','2023-09-26 22:52:06','https://www.reddit.com/r/NixOS/comments/16t1n3p/nixcon_north_america_survey/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(55,NULL,NULL,NULL,'en','1462690285','2023-09-26 22:56:02','2023-09-26 22:56:02','https://www.reddit.com/r/NixOS/comments/16t1n3p/nixcon_north_america_survey/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(56,NULL,NULL,NULL,'en','897987932','2023-09-26 23:00:11','2023-09-26 23:00:11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(57,NULL,NULL,NULL,'en','1266452544','2023-09-26 23:00:12','2023-09-26 23:00:12','https://old.reddit.com/r/NixOS/comments/16t1n3p/nixcon_north_america_survey/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58,NULL,NULL,NULL,'en','1861302896','2023-09-26 23:00:26','2023-09-26 23:00:26','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(59,NULL,NULL,NULL,'en','47737293','2023-09-26 23:07:37','2023-09-26 23:07:37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(60,NULL,NULL,NULL,'en','1704511152','2023-09-26 23:08:12','2023-09-26 23:08:12','https://www.reddit.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(61,NULL,'2023-09-26 23:10:56',1,'en','1427913409','2023-09-26 23:09:34','2023-09-26 23:10:56',NULL,'','Y','','','','Y','Y','Y','Y','Y','','','A2','','A1','','A3','','A4','A23','','A2','','Chicago','A5','','Y','Y','A1','Would love to join!'),(62,NULL,NULL,NULL,'en','744585451','2023-09-26 23:11:42','2023-09-26 23:11:42','https://t.co/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(63,NULL,'2023-09-26 23:15:38',1,'en','1311121897','2023-09-26 23:14:12','2023-09-26 23:15:38',NULL,'','Y','','','','Y','Y','','','','','A3','A2','A3','A1','A2','A4','A4','A4','A22','','A2','','','A5','','Y','Y','A2',''),(64,NULL,'2023-09-26 23:18:31',1,'en','1959886089','2023-09-26 23:17:03','2023-09-26 23:18:31',NULL,'','','Y','Y','','Y','','Y','','','','A2','A3','A3','','','','','','A33','','A3','','','A4','','Y','Y','A3',''),(65,NULL,'2023-09-26 23:19:51',1,'en','179745711','2023-09-26 23:18:14','2023-09-26 23:19:51',NULL,'','Y','','','','Y','Y','','','','','A3','A2','A2','A2','A3','A4','A4','A4','A33','','A2','','','A4','','Y','Y','A3',''),(66,NULL,'2023-09-26 23:22:02',1,'en','196406795','2023-09-26 23:20:46','2023-09-26 23:22:02','https://www.linkedin.com/','','Y','','','','','Y','','','','','A2','A3','A3','A1','A1','A2','A2','A2','A33','','A5','','Toronto','A5','','Y','Y','A3',''),(67,NULL,'2023-09-26 23:27:22',1,'en','1539043741','2023-09-26 23:22:31','2023-09-26 23:27:22',NULL,'','Y','','','','','','Y','','Y','','A1','','','','A2','A3','A3','A3','A45','','A3','','Salt Lake City','A5','','','Y','A2',''),(68,NULL,NULL,NULL,'en','1195159075','2023-09-26 23:24:46','2023-09-26 23:24:46',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(69,NULL,'2023-09-26 23:26:07',1,'en','216610956','2023-09-26 23:24:51','2023-09-26 23:26:07','https://www.reddit.com/r/NixOS/comments/16t1n3p/nixcon_north_america_survey/','','','','Y','','Y','','','Y','Y','','A1','A4','A2','A2','A4','A4','A4','A4','A6','','A3','','San Fransisco','A3','','','Y','A2',''),(70,NULL,NULL,NULL,'en','1160531970','2023-09-26 23:28:23','2023-09-26 23:28:23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(71,NULL,NULL,NULL,'en','1987209614','2023-09-26 23:30:18','2023-09-26 23:30:18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(72,NULL,'2023-09-26 23:35:45',1,'en','259163034','2023-09-26 23:33:45','2023-09-26 23:35:45','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','','','','A2','A2','A2','A1','A3','A4','A4','A4','-oth-','','A2','','','A5','','Y','Y','A2',''),(73,NULL,'2023-09-26 23:37:04',1,'en','2066734145','2023-09-26 23:34:17','2023-09-26 23:37:04',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A3','A2','A2','A2','A2','A4','A4','A4','-oth-','','A2','','','A5','','Y','Y','A2',''),(74,NULL,NULL,NULL,'en','234214317','2023-09-26 23:39:19','2023-09-26 23:39:19',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(75,NULL,NULL,NULL,'en','1563954122','2023-09-26 23:40:07','2023-09-26 23:40:07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(76,NULL,'2023-09-26 23:44:54',1,'en','864004802','2023-09-26 23:43:35','2023-09-26 23:44:54','https://www.reddit.com/','','Y','','','','Y','Y','Y','','','','A2','A1','A3','A2','A3','A3','A3','A3','A7','','A3','','','A2','','Y','Y','A2',''),(77,NULL,NULL,NULL,'en','85605169','2023-09-26 23:43:56','2023-09-26 23:43:56','https://www.reddit.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(78,NULL,NULL,NULL,'en','442805739','2023-09-26 23:46:48','2023-09-26 23:46:48','https://www.reddit.com/r/NixOS/comments/16t1n3p/nixcon_north_america_survey/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(79,NULL,NULL,NULL,'en','1734657181','2023-09-26 23:54:25','2023-09-26 23:54:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(80,NULL,'2023-09-26 23:58:35',1,'en','2126042841','2023-09-26 23:57:37','2023-09-26 23:58:35',NULL,'','Y','','','','','','Y','','','','A2','A2','A2','A2','A2','A3','A3','A3','A33','','A2','','','','','Y','','A2',''),(81,NULL,NULL,NULL,'en','1016040175','2023-09-26 23:58:53','2023-09-26 23:58:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(82,NULL,'2023-09-27 00:06:11',1,'en','119316692','2023-09-27 00:01:40','2023-09-27 00:06:11',NULL,'Y','Y','','','Used some older versions but didn\'t stick. Trying again with flakes and the latest.','Y','Y','Y','','','','A1','','','A3','A2','','A4','','A6','','A3','','For non-US, Vancouver is the top of the list for me personally.','A5','','','Y','A3',''),(83,NULL,'2023-09-27 00:10:04',1,'en','1912974098','2023-09-27 00:07:50','2023-09-27 00:10:04',NULL,'','Y','','','','','','Y','Y','','','A3','A1','A1','A1','A4','A4','A3','A4','A21','','A2','','','A3','','Y','Y','A2',''),(84,NULL,NULL,NULL,'en','826496735','2023-09-27 00:13:34','2023-09-27 00:13:34',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(86,NULL,NULL,NULL,'en','2061572894','2023-09-27 00:16:35','2023-09-27 00:16:35','https://www.reddit.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(87,NULL,'2023-09-27 00:28:29',1,'en','1146933380','2023-09-27 00:27:44','2023-09-27 00:28:29',NULL,'','','Y','','','Y','','Y','','','','','','','','','','','','A44','','','','','A5','','Y','','A1',''),(88,NULL,NULL,NULL,'en','346770120','2023-09-27 00:40:28','2023-09-27 00:40:28','https://old.reddit.com/r/NixOS/comments/16t1n3p/nixcon_north_america_survey/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(89,NULL,'2023-09-27 01:05:45',1,'en','1451200135','2023-09-27 01:03:25','2023-09-27 01:05:45',NULL,'','Y','','','','','Y','Y','Y','','','A2','A3','A3','A2','A1','A4','A4','A4','A60','','A5','','Toronto','A2','','Y','Y','A3',''),(90,NULL,'2023-09-27 01:12:18',1,'en','226202974','2023-09-27 01:10:02','2023-09-27 01:12:18','https://survey.nixos.org/','','','','Y','','Y','','Y','Y','Y','','A2','A3','A2','A2','A1','A2','A2','A3','A62','','A5','','Montreal','A5','','Y','Y','A2','Montreal, Toronto, Vancouver are obvious choices, but Waterloo, Ontario could be another great option. Airport nearby, renowned computer science school, and lots of tech companies in the area.'),(91,NULL,NULL,NULL,'en','998411233','2023-09-27 01:12:48','2023-09-27 01:12:48','https://www.reddit.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(92,NULL,'2023-09-27 01:17:01',1,'en','1367697694','2023-09-27 01:15:57','2023-09-27 01:17:01',NULL,'','Y','','','','Y','Y','Y','','','','A2','','','A1','','','A3','','A22','','A2','','','A5','','Y','Y','A3',''),(93,NULL,'2023-09-27 01:22:51',1,'en','12919989','2023-09-27 01:20:35','2023-09-27 01:22:51',NULL,'','Y','','','','Y','','Y','','','','A2','','A1','A2','A2','A3','A4','A3','A44','','A3','','Austin ','A5','','Y','Y','A2',''),(94,NULL,'2023-09-27 01:26:20',1,'en','5269721','2023-09-27 01:23:46','2023-09-27 01:26:20','https://www.reddit.com/','','','','Y','','Y','','Y','Y','Y','','A2','A2','A2','A2','A3','A3','A4','A4','A14','','A4','','','A4','','Y','Y','A2','Have you broadcast Nix in the past?'),(95,NULL,NULL,NULL,'en','1427320655','2023-09-27 01:35:18','2023-09-27 01:35:18','https://www.reddit.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(96,NULL,NULL,NULL,'en','1598689840','2023-09-27 01:58:40','2023-09-27 01:58:40',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(97,NULL,'2023-09-27 02:31:26',1,'en','1353299574','2023-09-27 02:10:07','2023-09-27 02:31:26','https://old.reddit.com/','Y','Y','','','','Y','Y','Y','','','','A4','A4','A4','A1','A4','A4','A4','A4','A31','','A2','','Any city accessible by public transit from NYC, the closer and safer the better','A3','','','Y','A2',''),(98,NULL,'2023-09-27 02:16:06',1,'en','947533596','2023-09-27 02:14:52','2023-09-27 02:16:06','https://www.reddit.com/','','','','Y','','','Y','Y','Y','','','A4','A4','A4','','A1','A4','A4','A4','A60','','A5','','Toronto','A1','','','Y','A2',''),(99,NULL,'2023-09-27 02:19:30',1,'en','832595200','2023-09-27 02:15:55','2023-09-27 02:19:30',NULL,'','','','Y','','Y','','','Y','Y','','A3','A1','A2','A2','A3','A4','A4','A4','A36','','A2','','','A3','','','Y','A3',''),(100,NULL,NULL,NULL,'en','49993271','2023-09-27 02:15:56','2023-09-27 02:15:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(101,NULL,'2023-09-27 02:18:24',1,'en','2075545682','2023-09-27 02:16:28','2023-09-27 02:18:24','https://t.co/','','','Y','Y','','Y','','Y','Y','','','A1','A2','A2','A2','A2','A2','A3','A3','A6','','A3','','Las Vegas','A5','','Y','Y','A1','Make it happen!'),(102,NULL,'2023-09-27 02:19:43',1,'en','1436131007','2023-09-27 02:17:10','2023-09-27 02:19:43','https://www.reddit.com/','','','Y','','','Y','','Y','','Y','','A2','A1','A3','A3','A2','A2','A3','A3','A7','','A4','','Denver','A3','','Y','Y','A2',''),(103,NULL,'2023-09-27 02:32:23',1,'en','1074065743','2023-09-27 02:26:43','2023-09-27 02:32:23',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A2','A2','A1','A2','A2','A3','A4','A4','A44','','A4','','Houston, TX','A4','','Y','Y','A1',''),(104,NULL,'2023-09-27 02:28:41',1,'en','1216926492','2023-09-27 02:27:20','2023-09-27 02:28:41',NULL,'','Y','','','','Y','','Y','','','','','','','','A2','','','','A60','','A5','','','A2','','Y','Y','A3',''),(105,NULL,'2023-09-27 02:38:14',1,'en','2101132455','2023-09-27 02:35:38','2023-09-27 02:38:14','https://www.reddit.com/','','','Y','Y','','Y','','','Y','Y','','A2','A3','','A1','','','','','A21','','A2','','Baltimore or Philly (Cheaper than NY and DC, centrally placed)','A3','','','Y','A2','Cool!'),(106,NULL,'2023-09-27 02:44:27',1,'en','1606154563','2023-09-27 02:43:00','2023-09-27 02:44:27',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A1','A2','A2','A2','A4','A4','A4','A4','A6','','A3','','','A2','','Y','','A2',''),(107,NULL,'2023-09-27 03:14:29',1,'en','714443841','2023-09-27 03:13:10','2023-09-27 03:14:29',NULL,'','','Y','','','','','Y','','','','','A1','A3','','A4','A4','A4','A4','A14','','A4','','','A1','','Y','','A3',''),(108,NULL,'2023-09-27 03:39:13',1,'en','753733046','2023-09-27 03:36:46','2023-09-27 03:39:13',NULL,'','','','Y','','','','Y','Y','','','A2','A2','A2','A2','A2','A3','A4','A4','A6','','A3','','San Francisco','A5','','','Y','A1',''),(109,NULL,'2023-09-27 03:42:57',1,'en','354774166','2023-09-27 03:41:23','2023-09-27 03:42:57',NULL,'','Y','','','','Y','Y','','','','','A3','A2','A2','A2','A4','A4','A4','A4','A33','','A4','','','A2','','','Y','A2',''),(110,NULL,NULL,NULL,'en','538804264','2023-09-27 03:55:04','2023-09-27 03:55:04','https://old.reddit.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(111,NULL,NULL,NULL,'en','2064222518','2023-09-27 04:06:54','2023-09-27 04:06:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(112,NULL,'2023-09-27 04:12:12',1,'en','406651087','2023-09-27 04:09:57','2023-09-27 04:12:12','https://www.reddit.com/','','','Y','','','','','Y','Y','','','A2','A2','A3','A3','A1','A3','A3','A4','A53','','A6','','Vancouver','A4','','Y','Y','A3',''),(113,NULL,'2023-09-27 04:49:30',1,'en','1201902857','2023-09-27 04:46:49','2023-09-27 04:49:30','https://www.reddit.com/','','','','Y','','Y','','Y','Y','','','','','','A2','A3','A3','A4','A4','A33','','A2','','New York City','A2','','Y','Y','A2',''),(114,NULL,NULL,NULL,'en','1782757058','2023-09-27 05:01:44','2023-09-27 05:01:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(115,NULL,'2023-09-27 05:04:58',1,'en','1768780116','2023-09-27 05:03:33','2023-09-27 05:04:58',NULL,'Y','','Y','Y','','Y','','Y','Y','Y','','A2','A4','A4','A3','A4','A4','A4','A4','A6','','A3','','','A4','','Y','Y','A2',''),(116,NULL,NULL,NULL,'en','1212961626','2023-09-27 05:44:02','2023-09-27 05:44:02',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(117,NULL,NULL,NULL,'en','496608640','2023-09-27 05:59:49','2023-09-27 05:59:49','https://t.co/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(118,NULL,NULL,NULL,'en','1511319355','2023-09-27 06:11:15','2023-09-27 06:11:15',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(119,NULL,NULL,NULL,'en','1915125838','2023-09-27 06:17:31','2023-09-27 06:17:31','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(120,NULL,NULL,NULL,'en','1086998228','2023-09-27 06:18:44','2023-09-27 06:18:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(121,NULL,NULL,NULL,'en','254898065','2023-09-27 06:23:16','2023-09-27 06:23:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(122,NULL,NULL,NULL,'en','1766882650','2023-09-27 06:31:40','2023-09-27 06:31:40',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(123,NULL,NULL,NULL,'en','1075240468','2023-09-27 06:59:26','2023-09-27 06:59:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(125,NULL,NULL,NULL,'en','963144280','2023-09-27 07:17:14','2023-09-27 07:17:14','https://www.reddit.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(126,NULL,'2023-09-27 07:21:56',1,'en','1726512531','2023-09-27 07:19:37','2023-09-27 07:21:56',NULL,'','','Y','','','Y','','Y','','Y','','A3','','','','','','','','-oth-','','','','','','','','','A3',''),(127,NULL,NULL,NULL,'en','477748047','2023-09-27 07:28:48','2023-09-27 07:28:48',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(128,NULL,NULL,NULL,'en','1353356819','2023-09-27 07:33:53','2023-09-27 07:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(129,NULL,'2023-09-27 07:51:29',1,'en','989353723','2023-09-27 07:49:38','2023-09-27 07:51:29',NULL,'','','Y','Y','','Y','','','','','','A4','A4','A4','A4','A1','A3','A3','A3','A53','','A6','','Vancouver','A3','','Y','Y','A1',''),(131,NULL,'2023-09-27 08:13:56',1,'en','1043929534','2023-09-27 08:12:16','2023-09-27 08:13:56','https://old.reddit.com/r/NixOS/comments/16t1n3p/nixcon_north_america_survey/','Y','Y','','','','Y','Y','Y','','','','A4','A1','A3','A2','A4','A4','A4','A4','A15','','A4','','','A3','','Y','','A2',''),(132,NULL,NULL,NULL,'en','1092789394','2023-09-27 08:27:12','2023-09-27 08:27:12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(133,NULL,'2023-09-27 08:53:07',1,'en','20315917','2023-09-27 08:50:29','2023-09-27 08:53:07',NULL,'','','Y','','','Y','','Y','','','','A4','A4','A4','A4','A1','A4','A4','A4','A60','','A5','','Toronto, Ontario','A2','','Y','Y','A1',''),(134,NULL,NULL,NULL,'en','1709285097','2023-09-27 09:04:24','2023-09-27 09:04:24','https://www.reddit.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(135,NULL,NULL,NULL,'en','2009863637','2023-09-27 09:05:11','2023-09-27 09:05:11','https://www.reddit.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136,NULL,'2023-09-27 09:16:52',1,'en','568941073','2023-09-27 09:15:05','2023-09-27 09:16:52',NULL,'','','','Y','','Y','','Y','','Y','','A3','A2','A2','A1','A2','A4','A4','A4','A34','','A2','','Raleigh','A2','','','Y','A2',''),(137,NULL,'2023-09-27 09:32:20',1,'en','781975101','2023-09-27 09:28:12','2023-09-27 09:32:20',NULL,'','','Y','Y','','Y','','Y','Y','','','A2','A2','A2','A2','A2','A2','A2','A2','-oth-','Europe','A8','','','A5','','Y','Y','A2',''),(138,NULL,NULL,NULL,'en','503434051','2023-09-27 09:36:59','2023-09-27 09:36:59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139,NULL,NULL,NULL,'en','1946601064','2023-09-27 09:40:04','2023-09-27 09:40:04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(140,NULL,NULL,NULL,'en','1748354201','2023-09-27 09:40:28','2023-09-27 09:40:28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(141,NULL,NULL,NULL,'en','1000012848','2023-09-27 09:45:22','2023-09-27 09:45:22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(142,NULL,'2023-09-27 09:47:55',1,'en','917513654','2023-09-27 09:46:07','2023-09-27 09:47:55','https://www.reddit.com/r/NixOS/comments/16t1n3p/nixcon_north_america_survey/','','','Y','Y','','Y','','Y','Y','Y','','A2','A2','A2','A1','A2','A3','A3','A3','A21','','A2','','','A3','','Y','Y','A2',''),(143,NULL,NULL,NULL,'en','772767330','2023-09-27 10:00:53','2023-09-27 10:00:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(144,NULL,NULL,NULL,'en','524372737','2023-09-27 10:21:15','2023-09-27 10:21:15',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(145,NULL,NULL,NULL,'en','411723923','2023-09-27 10:28:41','2023-09-27 10:28:41',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(146,NULL,NULL,NULL,'en','1256837877','2023-09-27 10:34:36','2023-09-27 10:34:36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(147,NULL,NULL,NULL,'en','172242035','2023-09-27 10:38:23','2023-09-27 10:38:23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(148,NULL,NULL,NULL,'en','889356095','2023-09-27 10:40:01','2023-09-27 10:40:01','https://t.co/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(150,NULL,NULL,NULL,'en','95153251','2023-09-27 11:28:25','2023-09-27 11:28:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(151,NULL,NULL,NULL,'en','645415546','2023-09-27 11:29:16','2023-09-27 11:29:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(152,NULL,'2023-09-27 12:16:14',1,'en','1490571947','2023-09-27 12:14:27','2023-09-27 12:16:14',NULL,'','','Y','Y','','Y','Y','Y','','','','A3','A2','','','','A4','','','A23','','A2','','','A4','','Y','Y','A3',''),(153,NULL,'2023-09-27 12:42:50',1,'en','376886520','2023-09-27 12:32:14','2023-09-27 12:42:50',NULL,'','','','Y','','Y','','Y','','','','A2','A2','A2','A2','A2','A2','A2','A2','A33','','A2','','','A5','','','Y','A2',''),(154,NULL,NULL,NULL,'en','167664165','2023-09-27 12:34:42','2023-09-27 12:34:42',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(155,NULL,NULL,NULL,'en','1688146917','2023-09-27 12:38:58','2023-09-27 12:38:58','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(156,NULL,NULL,NULL,'en','940482150','2023-09-27 12:41:31','2023-09-27 12:41:31',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(157,NULL,NULL,NULL,'en','1047313322','2023-09-27 12:50:15','2023-09-27 12:50:15',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(158,NULL,'2023-09-27 13:24:33',1,'en','1548239304','2023-09-27 13:21:06','2023-09-27 13:24:33',NULL,'','Y','','','','Y','Y','Y','Y','','','A2','A1','A3','A2','A4','A3','A3','A3','A26','','A4','','','A5','','','Y','A2',''),(159,NULL,'2023-09-27 13:59:10',1,'en','550999367','2023-09-27 13:58:09','2023-09-27 13:59:10',NULL,'','','','Y','','Y','','Y','','','','A2','A2','A3','A2','A2','','','','A33','','A2','','','A5','','','Y','A2',''),(160,NULL,NULL,NULL,'en','1941457838','2023-09-27 14:17:36','2023-09-27 14:17:36','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(161,NULL,'2023-09-27 15:21:35',1,'en','2119337921','2023-09-27 14:31:51','2023-09-27 15:21:35',NULL,'','','','Y','','Y','','Y','','','','A2','A2','A2','A1','A2','A3','A3','A3','A33','','A2','','New York','A4','','Y','Y','A2',''),(162,NULL,NULL,NULL,'en','1254144789','2023-09-27 14:32:00','2023-09-27 14:32:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(163,NULL,'2023-09-27 14:59:03',1,'en','407987425','2023-09-27 14:33:54','2023-09-27 14:59:03',NULL,'','Y','','','','Y','','Y','','','','A1','A2','A3','A2','A2','A2','A3','A3','A6','','A3','','','A5','','Y','Y','A2',''),(164,NULL,NULL,NULL,'en','1179563741','2023-09-27 14:34:32','2023-09-27 14:34:32','https://www.google.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(165,NULL,NULL,NULL,'en','1850490624','2023-09-27 14:40:21','2023-09-27 14:40:21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(166,NULL,'2023-09-27 15:07:37',1,'en','425287224','2023-09-27 15:05:59','2023-09-27 15:07:37','https://discourse.nixos.org/','','','Y','Y','','Y','','','Y','Y','','A2','A2','A2','A1','A3','A3','A3','A3','A22','','A2','','Boston','A5','','','Y','A2',''),(167,NULL,'2023-09-27 15:19:05',1,'en','1422416119','2023-09-27 15:07:17','2023-09-27 15:19:05',NULL,'','','','Y','','Y','','Y','Y','Y','','A2','A3','','A2','A2','A4','A4','A4','A47','','A2','','Washington DC','','','','Y','A1',''),(168,NULL,NULL,NULL,'en','1641727199','2023-09-27 15:08:03','2023-09-27 15:08:03',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(170,NULL,'2023-09-27 15:11:41',1,'en','2050501159','2023-09-27 15:08:26','2023-09-27 15:11:41',NULL,'','','Y','Y','','Y','','','Y','','','A2','A2','A2','A1','A2','A2','A2','A2','A33','','A2','','','A5','','Y','Y','A2','Once I have to get in a plane, I don\'t really care how far I have to go. That said, if I can travel by train up and down the northeast to get there that would be great!'),(171,NULL,NULL,NULL,'en','1315950048','2023-09-27 15:15:01','2023-09-27 15:15:01',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(172,NULL,NULL,NULL,'en','1864615771','2023-09-27 15:23:54','2023-09-27 15:23:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(173,NULL,'2023-09-27 15:28:20',1,'en','542643636','2023-09-27 15:26:48','2023-09-27 15:28:20','https://discourse.nixos.org/','','Y','','','','','Y','Y','','','','A2','A3','A3','A3','A1','A4','A4','A4','A53','','A6','','','A3','','','Y','A3',''),(174,NULL,NULL,NULL,'en','53707164','2023-09-27 15:36:59','2023-09-27 15:36:59','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(175,NULL,'2023-09-27 16:01:17',1,'en','863960145','2023-09-27 15:59:53','2023-09-27 16:01:17',NULL,'Y','','Y','','','Y','','Y','Y','Y','','','','A1','','','','','','A2','','A4','','','A3','','Y','Y','A1',''),(176,NULL,'2023-09-27 16:29:09',1,'en','1238468338','2023-09-27 16:27:04','2023-09-27 16:29:09','https://www.linkedin.com/','','Y','Y','','','Y','Y','Y','Y','Y','','A4','','A2','','','','','','A44','','A4','','Houston','A1','','Y','Y','A1','Looking for nix groups in Houston '),(177,NULL,NULL,NULL,'en','1436033838','2023-09-27 16:28:37','2023-09-27 16:28:37','android-app://com.linkedin.android/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(178,NULL,NULL,NULL,'en','1537460146','2023-09-27 16:33:00','2023-09-27 16:33:00','https://t.co/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(179,NULL,NULL,NULL,'en','2137234608','2023-09-27 16:33:14','2023-09-27 16:33:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(180,NULL,'2023-09-27 16:39:25',1,'en','308469782','2023-09-27 16:38:37','2023-09-27 16:39:25',NULL,'','','','Y','','Y','','Y','','Y','','A1','A2','A4','A2','A2','A3','A3','A3','A6','','A3','','Portland','A4','','Y','Y','A2',''),(181,NULL,'2023-09-27 16:47:46',1,'en','1174666765','2023-09-27 16:45:36','2023-09-27 16:47:46',NULL,'','Y','','','','Y','','','','','Showcase a Nix-based product','A2','A2','A1','A1','A2','A3','A3','A4','A10','','A2','','','A5','','Y','','A1',''),(182,NULL,'2023-09-27 16:47:44',1,'en','1173958350','2023-09-27 16:45:45','2023-09-27 16:47:44','https://t.co/','','','','Y','','Y','','Y','Y','','','','A1','','A2','','','','','A37','','A4','','','A5','','','Y','A3',''),(183,NULL,'2023-09-27 16:58:05',1,'en','1711067878','2023-09-27 16:56:39','2023-09-27 16:58:05',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A2','A2','A3','A2','A1','A2','A2','A4','A53','','A3','','Vancouver','A3','','','Y','A2',''),(184,NULL,'2023-09-27 17:01:16',1,'en','719136522','2023-09-27 16:57:49','2023-09-27 17:01:16','https://t.co/','','','Y','Y','','Y','','Y','','','','A2','A3','A2','A3','A2','A2','A2','A2','-oth-','','','','','A5','','Y','Y','A3',''),(185,NULL,NULL,NULL,'en','413495194','2023-09-27 17:06:17','2023-09-27 17:06:17','android-app://com.linkedin.android/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(186,NULL,NULL,NULL,'en','264177831','2023-09-27 17:06:49','2023-09-27 17:06:49','https://t.co/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(187,NULL,NULL,NULL,'en','1054315988','2023-09-27 17:28:21','2023-09-27 17:28:21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(188,NULL,NULL,NULL,'en','1241250270','2023-09-27 17:46:29','2023-09-27 17:46:29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(189,NULL,'2023-09-27 17:57:56',1,'en','1647828141','2023-09-27 17:55:34','2023-09-27 17:57:56','https://discourse.nixos.org/','','','Y','','','Y','Y','Y','Y','Y','','A1','A2','A3','A2','A1','A2','A3','A3','A52','','A6','','Toronto or Vancouver (both have good flight connections)','A5','','','Y','A2','It\'s important to be easy to reach by flight, i.e., a hub'),(190,NULL,NULL,NULL,'en','1168693546','2023-09-27 17:59:56','2023-09-27 17:59:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(191,NULL,'2023-09-27 18:34:45',1,'en','853774170','2023-09-27 18:32:08','2023-09-27 18:34:45','https://www.linkedin.com/','','','Y','Y','','Y','','Y','Y','','','A2','A2','A2','A2','A3','A2','A2','A2','','','A2','','New Orleans','A5','','','Y','A3',''),(192,NULL,NULL,NULL,'en','198507837','2023-09-27 18:37:36','2023-09-27 18:37:36','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(193,NULL,NULL,NULL,'en','1141882258','2023-09-27 19:20:04','2023-09-27 19:20:04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(194,NULL,'2023-09-27 19:31:17',1,'en','1431359671','2023-09-27 19:29:04','2023-09-27 19:31:17','https://discourse.nixos.org/','','','Y','','','Y','','Y','Y','Y','','A1','A2','A2','A2','A2','A2','A2','A2','A6','','A3','','Long Beach','A5','','','Y','A2','SCaLE? :)'),(195,NULL,'2023-09-27 19:33:54',1,'en','937488760','2023-09-27 19:29:07','2023-09-27 19:33:54',NULL,'','','Y','','','Y','Y','Y','Y','','','A2','A2','A4','A1','A2','A2','A2','A2','-oth-','Washington, DC','A2','','Washington, DC','A4','','','Y','A1',''),(196,NULL,NULL,NULL,'en','2044303295','2023-09-27 19:46:25','2023-09-27 19:46:25','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(197,NULL,'2023-09-27 19:57:40',1,'en','293492437','2023-09-27 19:56:22','2023-09-27 19:57:40','https://discourse.nixos.org/','','Y','','','','Y','','Y','','','','A1','','','','A2','','A4','A2','A6','','A3','','','A5','','Y','Y','A3','No!'),(198,NULL,'2023-09-27 20:06:53',1,'en','2137871632','2023-09-27 20:01:15','2023-09-27 20:06:53',NULL,'','Y','','Y','','Y','','Y','','','','A2','A2','A2','A1','A3','A3','A3','A3','A33','','A2','','New York City','A4','','','Y','A3',''),(199,NULL,NULL,NULL,'en','406610441','2023-09-27 20:30:48','2023-09-27 20:30:48','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(200,NULL,'2023-09-27 20:44:47',1,'en','992578762','2023-09-27 20:39:47','2023-09-27 20:44:47',NULL,'','','','Y','','Y','','Y','Y','Y','','A1','A4','A4','A4','','','','','-oth-','None','A3','','Portland ','-oth-','Coming from Australia ','Y','Y','A2','Highly reconned Portland as an affordable and accessible location.'),(201,NULL,'2023-09-27 20:41:37',1,'en','1878313561','2023-09-27 20:40:25','2023-09-27 20:41:37','https://discourse.nixos.org/','','Y','','','','Y','Y','Y','','','','A1','A2','A4','A4','A2','A4','A4','A4','A53','','A6','','Vancouver','A5','','','Y','A2',''),(202,NULL,NULL,NULL,'en','1026087200','2023-09-27 20:49:26','2023-09-27 20:49:26','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(203,NULL,'2023-09-27 21:02:05',1,'en','861056119','2023-09-27 20:53:47','2023-09-27 21:02:05','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','Y','Y','','A2','A1','A3','A1','A2','A2','A1','A1','A7','','A3','','','A5','','Y','','A2',''),(204,NULL,NULL,NULL,'en','113336358','2023-09-27 20:54:24','2023-09-27 20:54:24',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(205,NULL,NULL,NULL,'en','1620316474','2023-09-27 20:59:45','2023-09-27 20:59:45','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(206,NULL,NULL,NULL,'en','1332698376','2023-09-27 21:04:29','2023-09-27 21:04:29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(207,NULL,NULL,NULL,'en','791747003','2023-09-27 21:09:35','2023-09-27 21:09:35','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(208,NULL,'2023-09-27 21:18:11',1,'en','1665808220','2023-09-27 21:16:32','2023-09-27 21:18:11','android-app://com.linkedin.android/','','','Y','Y','','Y','','Y','','','','A4','A3','A2','A2','A4','A4','A4','A4','A8','','A2','','New haven ','A2','','','Y','A2',''),(209,NULL,'2023-09-27 21:39:50',1,'en','65144489','2023-09-27 21:26:23','2023-09-27 21:39:50',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A3','A2','','A2','A1','A2','A3','A3','A62','','A5','','','','','Y','Y','A2',''),(210,NULL,'2023-09-27 21:40:22',1,'en','1916785587','2023-09-27 21:38:58','2023-09-27 21:40:22','https://discourse.nixos.org/','','','','Y','','Y','','Y','Y','Y','','A2','A2','A3','A1','A2','A2','A3','A3','A22','','A2','','','A3','','Y','Y','A2',''),(211,NULL,NULL,NULL,'en','1616140601','2023-09-27 21:39:15','2023-09-27 21:39:15','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(212,NULL,'2023-09-27 21:43:45',1,'en','843227537','2023-09-27 21:40:09','2023-09-27 21:43:45',NULL,'','','','Y','','Y','','Y','','','','A1','A2','A3','A2','A2','A4','A4','A4','A48','','A3','','','A5','','Y','Y','A3','Please require negative Covid tests the day before the conference and require masks be worn the entire time. \r\n\r\nCovid is not over and requiring masks is one fantastic way to ensure people do not get sick'),(213,NULL,'2023-09-27 21:46:08',1,'en','616331120','2023-09-27 21:43:09','2023-09-27 21:46:08','https://discourse.nixos.org/','','','','Y','','Y','','','Y','','','','','A2','A2','A1','A4','A4','A4','A62','','A5','','Montreal','-oth-','4 hours or less ','Y','Y','A2','Find a non-woke venue this time. How would you handle the Andruil situation this time?'),(214,NULL,'2023-09-27 21:50:24',1,'en','650507681','2023-09-27 21:48:52','2023-09-27 21:50:24','https://discourse.nixos.org/','','','','Y','','Y','Y','Y','Y','Y','','','A1','','','','','','','A50','','A4','','','A1','','Y','Y','A2',''),(215,NULL,NULL,NULL,'en','628748321','2023-09-27 21:52:31','2023-09-27 21:52:31','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(216,NULL,'2023-09-27 21:59:34',1,'en','327592883','2023-09-27 21:57:59','2023-09-27 21:59:34','https://discourse.nixos.org/','','','','Y','','','Y','Y','','','','','','','A2','A3','','A4','','A60','','A5','','','A5','','Y','','A2',''),(217,NULL,'2023-09-27 22:03:29',1,'en','1688537230','2023-09-27 22:02:30','2023-09-27 22:03:29','https://discourse.nixos.org/','','','','Y','','Y','','Y','','','','A1','A4','A4','A4','A4','A4','A4','A4','A6','','A3','','San Francisco','A1','','Y','','A3',''),(218,NULL,NULL,NULL,'en','1406273196','2023-09-27 22:10:49','2023-09-27 22:10:49','https://www.linkedin.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(219,NULL,'2023-09-27 22:21:29',1,'en','731206465','2023-09-27 22:20:41','2023-09-27 22:21:29',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A2','A2','A2','A2','A2','A2','A2','A2','A33','','A2','','NYC','A3','','Y','Y','A1',''),(220,NULL,'2023-09-27 23:11:22',1,'en','120576106','2023-09-27 23:08:02','2023-09-27 23:11:22',NULL,'','Y','','','nix user for years but still feel like a beginner. ','','Y','','','Y','','A2','A3','A3','','A2','A4','A4','A4','A53','','A6','','Vancouver ','A5','','Y','','A1','no'),(221,NULL,'2023-09-27 23:16:47',1,'en','745968387','2023-09-27 23:14:50','2023-09-27 23:16:47',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A3','A2','A1','A1','A2','A3','A4','A4','A11','','A2','','','A4','','','Y','A2',''),(222,NULL,'2023-09-27 23:17:53',1,'en','1255487096','2023-09-27 23:16:00','2023-09-27 23:17:53','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','','','','A1','A1','A3','A2','A4','A4','A4','A4','A14','','A4','','Chicago','A1','','','Y','A3',''),(223,NULL,'2023-09-27 23:22:52',1,'en','1881877846','2023-09-27 23:21:16','2023-09-27 23:22:52','https://t.co/','','','Y','Y','','Y','','Y','Y','','','A1','A2','A2','A2','A2','A2','A3','A3','A29','','A3','','Las Vegas','A5','','','','A2',''),(224,NULL,'2023-09-27 23:23:41',1,'en','838998455','2023-09-27 23:21:37','2023-09-27 23:23:41','https://discourse.nixos.org/','','','','','Using for a couple years but still a lot to learn','Y','Y','Y','','','','A1','A2','A2','A2','A2','A3','A3','A3','A48','','A3','','Seattle area','A5','','Y','Y','A2',''),(225,NULL,'2023-09-27 23:46:21',1,'en','892769452','2023-09-27 23:44:53','2023-09-27 23:46:21','https://discourse.nixos.org/','','Y','','','','','Y','Y','','','','','','A1','A2','','','','','A41','','A2','','','A2','','','Y','A3',''),(226,NULL,'2023-09-28 00:11:56',1,'en','731109741','2023-09-28 00:10:03','2023-09-28 00:11:56','https://discourse.nixos.org/','','','','Y','','Y','Y','Y','Y','','','A2','A2','A3','A3','A4','A4','A4','A4','A11','','A2','','','A4','','','Y','A1',''),(227,NULL,NULL,NULL,'en','209827724','2023-09-28 00:10:14','2023-09-28 00:10:14','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(228,NULL,NULL,NULL,'en','1784336616','2023-09-28 00:21:29','2023-09-28 00:21:29','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(229,NULL,NULL,NULL,'en','738751711','2023-09-28 00:21:51','2023-09-28 00:21:51','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(230,NULL,NULL,NULL,'en','1260360177','2023-09-28 00:23:14','2023-09-28 00:23:14','https://www.linkedin.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(231,NULL,'2023-09-28 00:34:14',1,'en','1998266901','2023-09-28 00:27:43','2023-09-28 00:34:14','https://discourse.nixos.org/','','','Y','','','Y','','Y','Y','Y','','A2','A3','A3','A2','A1','A3','A3','A3','A60','','-oth-','Central Canada','Winnipeg, Manitoba','A4','','','Y','A2',''),(232,NULL,'2023-09-28 00:52:45',1,'en','1358457356','2023-09-28 00:49:26','2023-09-28 00:52:45','https://discourse.nixos.org/','','','','Y','','Y','','Y','Y','','','A2','A2','A3','A3','A2','A2','A3','A3','A53','','A3','','','A5','','Y','','A3',''),(233,NULL,NULL,NULL,'en','1292795433','2023-09-28 01:22:53','2023-09-28 01:22:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(234,NULL,NULL,NULL,'en','1604792097','2023-09-28 01:37:30','2023-09-28 01:37:30','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(235,NULL,'2023-09-28 01:40:51',1,'en','1850597220','2023-09-28 01:38:05','2023-09-28 01:40:51','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','Y','','','A2','A3','A2','A2','A4','A4','A4','A4','A10','','A2','','Miami','A5','','Y','Y','A2',''),(236,NULL,'2023-09-28 01:42:14',1,'en','2002815300','2023-09-28 01:38:37','2023-09-28 01:42:14','https://www.reddit.com/','','Y','','','','Y','','Y','','','','A1','A2','A3','A3','A4','A4','A4','A4','A45','','A3','','Salt Lake City','A5','','','Y','A3',''),(237,NULL,'2023-09-28 01:44:56',1,'en','2088799124','2023-09-28 01:43:46','2023-09-28 01:44:56','https://discourse.nixos.org/','','','','Y','','Y','','','','Y','','A4','A1','A3','A1','A4','A4','A4','A4','','','A2','','','A4','','','Y','A3',''),(238,NULL,'2023-09-28 01:52:58',1,'en','2062233475','2023-09-28 01:49:06','2023-09-28 01:52:58',NULL,'','','Y','Y','','Y','','Y','Y','','','A1','','','','','','','','A6','','A3','','San Francisco ','A4','','','Y','A2','Think we will get the highest attendance if in San Francisco or Bay Area. \r\n\r\nMaybe relocating with another conference is an option for reduced cost and higher attendance '),(239,NULL,'2023-09-28 01:52:39',1,'en','563527589','2023-09-28 01:51:45','2023-09-28 01:52:39','https://discourse.nixos.org/','Y','','','','','Y','Y','Y','','','','A4','A4','A4','A4','A4','A4','A4','A4','A50','','A4','','','','','','','',''),(240,NULL,'2023-09-28 02:06:36',1,'en','1164691907','2023-09-28 02:04:19','2023-09-28 02:06:36','https://discourse.nixos.org/','','','Y','Y','Maintainer','Y','','','Y','','','A3','A3','A2','A2','A1','A2','A2','A3','','','A5','','','A5','','Y','Y','A3',''),(241,NULL,NULL,NULL,'en','1485338521','2023-09-28 02:10:25','2023-09-28 02:10:25','https://www.linkedin.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(242,NULL,NULL,NULL,'en','1540948287','2023-09-28 02:24:44','2023-09-28 02:24:44','https://t.co/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(243,NULL,NULL,NULL,'en','858560499','2023-09-28 02:46:57','2023-09-28 02:46:57','https://www.linkedin.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(244,NULL,'2023-09-28 02:58:20',1,'en','1387408996','2023-09-28 02:54:07','2023-09-28 02:58:20',NULL,'','','Y','Y','','Y','Y','Y','','','','A4','A4','A4','A4','A2','A4','A4','A4','A60','','A5','','Toronto','A5','','Y','Y','A2',''),(245,NULL,'2023-09-28 03:13:16',1,'en','419433352','2023-09-28 03:12:26','2023-09-28 03:13:16','https://discourse.nixos.org/','','','Y','Y','','Y','Y','Y','Y','','','A1','A1','A2','A3','A4','A4','A4','A4','A6','','A3','','San Diego','A5','','','Y','A2',''),(246,NULL,'2023-09-28 03:23:37',1,'en','176447849','2023-09-28 03:20:44','2023-09-28 03:23:37','https://discourse.nixos.org/','','Y','','','','Y','','Y','Y','Y','','A2','A1','A2','A2','A2','A2','A3','A4','A26','','A4','','Kansas City or Omaha','A4','','Y','Y','A1',''),(247,NULL,'2023-09-28 03:59:39',1,'en','620028752','2023-09-28 03:51:50','2023-09-28 03:59:39','https://discourse.nixos.org/','','Y','','','','Y','Y','Y','Y','','','A2','A2','A2','A2','A2','A3','A3','A3','A40','','A2','','North Stonington','A3','','Y','Y','A1','Yes.'),(248,NULL,'2023-09-28 03:55:48',1,'en','1195658552','2023-09-28 03:52:30','2023-09-28 03:55:48','https://discourse.nixos.org/','','Y','','','','','Y','','Y','','Figure out how to help in the community ','A1','','A3','A2','A2','A2','','A4','A6','','A3','','San Diego','A5','','Y','Y','A2','presentations but hands on would be great!'),(249,NULL,NULL,NULL,'en','766509999','2023-09-28 04:12:07','2023-09-28 04:12:07','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(250,NULL,'2023-09-28 04:24:26',1,'en','2018567599','2023-09-28 04:16:40','2023-09-28 04:24:26','https://www.reddit.com/','','','Y','Y','','Y','Y','Y','Y','Y','','A2','','A1','','','A4','A4','A4','A44','','A4','','Austin Tx','-oth-','I wouldn\'t mind travelling for the event in general','Y','Y','A1','Excited for it to happen, thanks for extending nix events into NA'),(251,NULL,'2023-09-28 04:33:55',1,'en','982547207','2023-09-28 04:32:43','2023-09-28 04:33:55','https://discourse.nixos.org/','','','','Y','','Y','','','','Y','','A1','A4','','A2','A4','A3','A4','A4','A6','','A3','','','A2','','Y','Y','A2',''),(252,NULL,'2023-09-28 04:41:52',1,'en','448672506','2023-09-28 04:39:54','2023-09-28 04:41:52',NULL,'','','Y','Y','','Y','','Y','Y','','','A2','A3','A3','A1','A2','A2','A4','A4','A31','','A2','','Philadelphia','A4','','Y','','A3',''),(253,NULL,NULL,NULL,'en','1534060094','2023-09-28 04:59:32','2023-09-28 04:59:32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(254,NULL,'2023-09-28 05:04:50',1,'en','431384787','2023-09-28 05:03:26','2023-09-28 05:04:50',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A3','A2','A2','A2','A4','A4','A4','A4','A44','','A4','','Houston','A4','','Y','','A3',''),(255,NULL,'2023-09-28 05:16:39',1,'en','1091832132','2023-09-28 05:15:12','2023-09-28 05:16:39','https://discourse.nixos.org/','','','','Y','','Y','','Y','Y','','','','','A2','A1','A2','','','','A33','','A2','','New York, New York, U.S.A','A2','','','Y','A2',''),(256,NULL,NULL,NULL,'en','578999309','2023-09-28 05:19:32','2023-09-28 05:19:32','https://old.reddit.com/r/NixOS/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(257,NULL,NULL,NULL,'en','1368373154','2023-09-28 06:49:50','2023-09-28 06:49:50','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(258,NULL,NULL,NULL,'en','607939375','2023-09-28 06:58:49','2023-09-28 06:58:49','https://www.linkedin.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(259,NULL,NULL,NULL,'en','273601281','2023-09-28 09:52:29','2023-09-28 09:52:29','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(260,NULL,NULL,NULL,'en','144774536','2023-09-28 10:08:17','2023-09-28 10:08:17','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(261,NULL,'2023-09-28 11:19:31',1,'en','1828121176','2023-09-28 11:16:24','2023-09-28 11:19:31','https://discourse.nixos.org/','','Y','','','','Y','','','','','','A2','A2','A2','A1','A2','A4','A4','A4','-oth-','Washington DC','A2','','','A5','','','Y','A3',''),(262,NULL,NULL,NULL,'en','2107965851','2023-09-28 12:15:45','2023-09-28 12:15:45','android-app://com.slack/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(263,NULL,'2023-09-28 12:31:30',1,'en','2080787055','2023-09-28 12:29:11','2023-09-28 12:31:30','https://discourse.nixos.org/','','Y','','','','Y','Y','','','','','A2','A1','A1','A2','A3','A4','A4','A4','A44','','A4','','','A3','','Y','Y','A3',''),(264,NULL,NULL,NULL,'en','234484970','2023-09-28 14:23:30','2023-09-28 14:23:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(265,NULL,'2023-09-28 14:28:17',1,'en','2009429236','2023-09-28 14:25:28','2023-09-28 14:28:17',NULL,'','','Y','','','','','Y','','','','','','','','A1','','','','A52','','A6','','Calgary, AB','A1','','','Y','A2',''),(266,NULL,NULL,NULL,'en','1313425933','2023-09-28 15:00:45','2023-09-28 15:00:45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(267,NULL,'2023-09-28 15:17:59',1,'en','461688183','2023-09-28 15:17:08','2023-09-28 15:17:59',NULL,'','Y','Y','','','Y','Y','Y','Y','','','A1','A2','A3','A2','A2','A2','A2','A2','A6','','A3','','','A5','','Y','Y','A2',''),(268,NULL,'2023-09-28 16:40:36',1,'en','2070132408','2023-09-28 16:38:47','2023-09-28 16:40:36',NULL,'','','','','Been using to manage my personal systems off and on for several years','','Y','Y','Y','','','A3','A3','A2','A1','A4','A4','A4','A4','A10','','A2','','','A3','','','Y','A3',''),(269,NULL,NULL,NULL,'en','166710584','2023-09-28 16:52:02','2023-09-28 16:52:02',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(270,NULL,'2023-09-28 17:06:56',1,'en','1666368571','2023-09-28 17:03:18','2023-09-28 17:06:56','https://discourse.nixos.org/','','','','','Been using NixOS for about 9 months now.','Y','Y','Y','Y','Y','','A2','A3','A4','A2','A1','A4','A3','A4','A60','','A5','','New York or Toronto','A3','','','Y','A3',''),(271,NULL,'2023-09-28 17:27:33',1,'en','496434486','2023-09-28 17:23:29','2023-09-28 17:27:33','https://discourse.nixos.org/','','Y','','','','Y','Y','Y','','Y','','A1','A2','A3','A3','A3','A4','A4','A4','A38','','A3','','Portland Oregon ','A5','','Y','Y','A1',''),(272,NULL,NULL,NULL,'en','1354521734','2023-09-28 18:07:38','2023-09-28 18:07:38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(273,NULL,'2023-09-28 18:19:21',1,'en','701439709','2023-09-28 18:10:01','2023-09-28 18:19:21',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A3','A2','A3','A1','A1','A3','A3','A3','A62','','A5','','','A3','','Y','Y','A2',''),(274,NULL,NULL,NULL,'en','78897980','2023-09-28 18:31:22','2023-09-28 18:31:22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(275,NULL,NULL,NULL,'en','696701889','2023-09-28 20:34:36','2023-09-28 20:34:36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(276,NULL,'2023-09-28 21:07:33',1,'en','472333716','2023-09-28 21:05:53','2023-09-28 21:07:33','https://discourse.nixos.org/','','Y','','','','','Y','','','','','A2','','A3','A1','A2','A4','A4','A4','A62','','A2','','Nyc','A3','','','Y','A2',''),(277,NULL,'2023-09-28 21:31:26',1,'en','1016239465','2023-09-28 21:29:20','2023-09-28 21:31:26','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','Y','','','A3','A1','A2','A3','A3','A3','A3','A3','A14','','A4','','Chicago, IL or Indianapolis, IN or Detroit, MI or Milwaukee, WI or St. Louis, MO.','A3','','Y','','A2',''),(278,NULL,NULL,NULL,'en','162504336','2023-09-28 21:39:54','2023-09-28 21:39:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(279,NULL,'2023-09-28 21:52:10',1,'en','110222972','2023-09-28 21:49:51','2023-09-28 21:52:10','https://discourse.nixos.org/','','','','Y','','','','Y','','','','A3','A1','A1','A3','A4','A4','A4','A4','A5','','A4','','','A3','','Y','Y','A3',''),(280,NULL,'2023-09-28 22:02:13',1,'en','665378189','2023-09-28 21:59:58','2023-09-28 22:02:13','https://t.co/','','Y','','','','Y','Y','Y','Y','','','','A1','A2','','','','A4','A3','A7','','A4','','Boulder or Denver','A3','','Y','','A2','Bootable USB sticks with nix as vendor conversation and bootstraps for folks'),(281,NULL,'2023-09-28 22:04:40',1,'en','1852529976','2023-09-28 22:02:01','2023-09-28 22:04:40','https://discourse.nixos.org/','','','Y','','','Y','','Y','','','','A2','A2','A2','A2','A2','A2','A3','A3','A62','','A5','','','A5','','','','A2',''),(282,NULL,'2023-09-28 23:10:50',1,'en','1238166076','2023-09-28 23:09:45','2023-09-28 23:10:50','https://discourse.nixos.org/','','Y','','','','Y','Y','Y','Y','','','A2','','A3','A3','A3','A4','A4','A4','A6','','A3','','Long Beach','A2','','','Y','A2',''),(283,NULL,NULL,NULL,'en','15744536','2023-09-28 23:37:52','2023-09-28 23:37:52','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(284,NULL,NULL,NULL,'en','1994391933','2023-09-28 23:47:27','2023-09-28 23:47:27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(285,NULL,NULL,NULL,'en','293944601','2023-09-29 04:31:45','2023-09-29 04:31:45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(286,NULL,NULL,NULL,'en','500792575','2023-09-29 04:48:05','2023-09-29 04:48:05','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(287,NULL,NULL,NULL,'en','1324511198','2023-09-29 05:15:46','2023-09-29 05:15:46',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(288,NULL,'2023-09-29 05:25:47',1,'en','1421635980','2023-09-29 05:21:21','2023-09-29 05:25:47',NULL,'Y','','','','','','Y','','','','','','','','A2','','','A3','A4','-oth-','South Africa','A2','','','A1','','','Y','A3','Have an online broadcast/stream of the event and talks'),(289,NULL,'2023-09-29 05:41:44',1,'en','724579616','2023-09-29 05:40:31','2023-09-29 05:41:44',NULL,'','Y','','','','','','Y','','','','','A2','A1','','A3','','','A4','A44','','A4','','','A2','','Y','','A3',''),(290,NULL,'2023-09-29 08:01:53',1,'en','1153120333','2023-09-29 07:59:47','2023-09-29 08:01:53','https://discourse.nixos.org/','','','','Y','','Y','','','','','','A1','A4','A4','A4','A4','A4','A4','A4','A6','','A3','','San Jose, CA (or elsewhere in Silicon Valley)','A3','','Y','Y','A3',''),(291,NULL,NULL,NULL,'en','2075868284','2023-09-29 09:37:58','2023-09-29 09:37:58','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(292,NULL,NULL,NULL,'en','869298371','2023-09-29 09:54:17','2023-09-29 09:54:17','https://www.linkedin.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(293,NULL,NULL,NULL,'en','1196582365','2023-09-29 10:27:00','2023-09-29 10:27:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(294,NULL,'2023-09-29 11:37:03',1,'en','1412658947','2023-09-29 11:35:52','2023-09-29 11:37:03','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','Y','Y','','A3','A2','A2','A1','A2','A3','A4','A4','A30','','A2','','Boston, NY, DC','A2','','','Y','A2',''),(295,NULL,NULL,NULL,'en','802783920','2023-09-29 11:42:55','2023-09-29 11:42:55','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(296,NULL,NULL,NULL,'en','815003315','2023-09-29 12:21:58','2023-09-29 12:21:58','http://lnkd.in/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(297,NULL,'2023-09-29 12:24:24',1,'en','222769814','2023-09-29 12:22:44','2023-09-29 12:24:24',NULL,'','','Y','Y','','Y','','Y','','Y','','A1','A2','A2','A2','A2','A3','A3','A3','A48','','A3','','','A3','','','Y','A3',''),(298,NULL,'2023-09-29 13:05:53',1,'en','1082260186','2023-09-29 13:03:53','2023-09-29 13:05:53','https://www.reddit.com/','','','Y','Y','','','','Y','Y','Y','','A2','A2','A3','A1','A1','A2','A2','A2','A33','','A5','','Toronto','A2','','Y','Y','A2',''),(299,NULL,'2023-09-29 13:37:39',1,'en','1549736150','2023-09-29 13:35:28','2023-09-29 13:37:39','https://discourse.nixos.org/','','Y','','','','Y','Y','','Y','','','A2','A2','A2','A2','A2','A2','A2','A2','A10','','A2','','Washington D. C.','A5','','','Y','A2','Excited for the NixCon'),(300,NULL,'2023-09-29 14:23:20',1,'en','125261034','2023-09-29 14:20:16','2023-09-29 14:23:20',NULL,'','Y','','','','Y','','','','','','A3','A3','A3','A1','A3','A3','A3','A3','A22','','A2','','bahhhhhhston','A1','','Y','Y','A1','Boston is a good time, could organize some elements if needed, given the occasion.'),(301,NULL,NULL,NULL,'en','1022856821','2023-09-29 14:20:20','2023-09-29 14:20:20',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(302,NULL,NULL,NULL,'en','190673647','2023-09-29 15:51:10','2023-09-29 15:51:10','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(303,NULL,'2023-09-29 16:38:56',1,'en','212652243','2023-09-29 16:37:31','2023-09-29 16:38:56',NULL,'Y','Y','','Y','','Y','Y','Y','Y','Y','','A1','A1','A1','A1','A1','A1','A1','A4','A11','','A5','','Chicago','A5','','Y','Y','A2','No'),(304,NULL,'2023-09-29 18:06:00',1,'en','1649011319','2023-09-29 18:02:08','2023-09-29 18:06:00',NULL,'','','Y','','','Y','','Y','Y','Y','','A1','A2','A2','A2','A2','A2','A3','A3','A6','','A3','','San Diego','A5','','Y','Y','A1',''),(305,NULL,'2023-09-29 18:42:05',1,'en','2030054661','2023-09-29 18:38:19','2023-09-29 18:42:05','https://discourse.nixos.org/','Y','Y','Y','','','Y','Y','Y','','','','A4','A4','A3','A1','A2','A4','A4','A4','A22','','A2','','Boston','A3','','','Y','A2',''),(306,NULL,'2023-09-29 18:47:10',1,'en','234435119','2023-09-29 18:42:45','2023-09-29 18:47:10','https://discourse.nixos.org/','','','','Y','','Y','','Y','Y','Y','','A3','A3','A1','A1','A3','A3','A4','A4','A10','','A2','','Orlando','A5','','Y','Y','A2',''),(307,NULL,'2023-09-29 19:03:36',1,'en','118033299','2023-09-29 19:01:37','2023-09-29 19:03:36','android-app://com.linkedin.android/','','','','Y','','','','Y','','Y','','A3','A2','A1','A3','A4','A4','A4','A4','A44','','A4','','','A3','','Y','Y','A1',''),(308,NULL,'2023-09-30 00:33:23',1,'en','1719305976','2023-09-30 00:31:41','2023-09-30 00:33:23','https://discourse.nixos.org/','','Y','','','','Y','Y','','','','','A2','A2','A1','A1','A4','A4','A4','A4','A33','','A2','','','A5','','','Y','A1',''),(309,NULL,'2023-09-30 00:40:26',1,'en','685924896','2023-09-30 00:38:55','2023-09-30 00:40:26','https://discourse.nixos.org/','','','','Y','','Y','','Y','Y','','','A2','A2','A3','A2','A2','A3','A3','A3','A6','','A3','','','','','Y','Y','A2',''),(310,NULL,'2023-09-30 01:32:50',1,'en','1988485654','2023-09-30 01:31:00','2023-09-30 01:32:50','https://www.linkedin.com/','','','Y','Y','','Y','','Y','Y','','','A3','','','A2','A1','','','A4','A23','','A2','','Montreal, Quebec, Canada','A5','','Y','Y','A1',''),(311,NULL,'2023-09-30 02:12:36',1,'en','1577782759','2023-09-30 02:07:33','2023-09-30 02:12:36',NULL,'','Y','','','','Y','Y','Y','','','','A4','A4','A2','A2','','','','','A11','','A2','','Atlanta, GA, Orlando, FL, Nashville, TN, Knoxville, TN','A3','','Y','Y','A1',''),(312,NULL,'2023-09-30 05:04:17',1,'en','2074000284','2023-09-30 05:00:40','2023-09-30 05:04:17',NULL,'','Y','Y','','','Y','Y','Y','Y','','','A1','A1','A2','A2','A2','A3','A3','A4','A6','','A3','','Las Vegas','A5','','Y','Y','A2','Great idea to broaden the appeal and marketing of Nix and NixOS to the North American market. It definitely seems to be heavily EU focused at the moment.'),(313,NULL,'2023-09-30 06:35:02',1,'en','1944415694','2023-09-30 06:13:46','2023-09-30 06:35:02',NULL,'','','Y','','','Y','Y','Y','Y','Y','','','','','','','','','','A10','','A2','','Pensacola, FL','A5','','','Y','A1','Maybe we could host at my local university?'),(315,NULL,NULL,NULL,'en','283160674','2023-09-30 09:27:46','2023-09-30 09:27:46','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(316,NULL,NULL,NULL,'en','313645320','2023-09-30 10:03:27','2023-09-30 10:03:27','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(317,NULL,'2023-09-30 13:43:34',1,'en','637408486','2023-09-30 13:41:44','2023-09-30 13:43:34',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A4','A4','A4','A4','A2','A3','A3','A3','','','A5','','','A5','','Y','Y','A2',''),(318,NULL,'2023-09-30 15:03:21',1,'en','1724045420','2023-09-30 15:00:54','2023-09-30 15:03:21','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','','Y','','A1','A1','A1','A1','A1','A1','A2','A4','A34','','A2','','','A5','','Y','Y','A2',''),(319,NULL,'2023-09-30 15:08:33',1,'en','2099836746','2023-09-30 15:03:12','2023-09-30 15:08:33','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','Y','','','A3','A2','A2','A1','A2','A3','A3','A3','-oth-','','A2','','New York, NY','A5','','Y','Y','A2',''),(320,NULL,'2023-09-30 17:12:57',1,'en','1595813535','2023-09-30 16:59:42','2023-09-30 17:12:57','https://www.linkedin.com/','Y','Y','','','Intermediate Nix user','Y','','Y','Y','','','A1','A2','A3','A2','','A3','A3','A3','A6','','A3','','Anywhere in the bay area','-oth-','I have family in boston so travelling there would be more convenient','Y','Y','A2',''),(321,NULL,'2023-09-30 17:12:43',1,'en','107883468','2023-09-30 17:11:05','2023-09-30 17:12:43',NULL,'','','','Y','','Y','','Y','Y','Y','','A1','A1','A2','A3','A4','A4','A4','A4','A4','','A3','','Phoenix Arizona','A2','','Y','Y','A1',''),(322,NULL,'2023-09-30 17:51:42',1,'en','1879014884','2023-09-30 17:45:51','2023-09-30 17:51:42',NULL,'','','Y','Y','','Y','','','','','','A3','A4','A4','A1','A3','A2','A3','A2','A33','','A2','','New York, Rio de Janeiro','A5','','Y','','A1','Ping me (@lovesegfault) if you want to do it in Rio :)'),(323,NULL,'2023-09-30 20:29:38',1,'en','1934808780','2023-09-30 20:26:23','2023-09-30 20:29:38',NULL,'','Y','','','','Y','Y','Y','','Y','','A2','A1','A2','A2','','','','','A26','','A4','','','A5','','Y','Y','A1',''),(324,NULL,'2023-09-30 21:53:16',1,'en','428958210','2023-09-30 21:51:06','2023-09-30 21:53:16','https://discourse.nixos.org/','','','','Y','maybe more intermediate than advanced','Y','','Y','Y','Y','','A1','A2','A2','A3','A1','A2','A3','A3','A52','','A6','','Vancouver','-oth-','','','Y','A2',''),(325,NULL,'2023-10-01 01:38:09',1,'en','389321938','2023-10-01 01:33:49','2023-10-01 01:38:09',NULL,'','','','Y','','Y','','Y','Y','','','A1','A2','A2','A2','A3','A3','A4','A4','A48','','A3','','Seattle','A5','','Y','Y','A2',''),(326,NULL,NULL,NULL,'en','1616099262','2023-10-01 01:42:10','2023-10-01 01:42:10','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(327,NULL,'2023-10-01 02:02:07',1,'en','1659348335','2023-10-01 02:01:00','2023-10-01 02:02:07',NULL,'','','Y','','','Y','','','','','','A1','A2','A4','A4','A4','A4','A4','A4','A6','','A3','','','A1','','','Y','A2',''),(328,NULL,'2023-10-01 05:24:18',1,'en','157330445','2023-10-01 05:22:47','2023-10-01 05:24:18','https://www.reddit.com/','','Y','','','','Y','Y','Y','','','','A2','A2','A2','A2','A2','A2','A2','','A53','','A6','','Vancouver','A5','','Y','','A2',''),(329,NULL,'2023-10-01 06:12:43',1,'en','1516466618','2023-10-01 06:10:58','2023-10-01 06:12:43','https://www.linkedin.com/','','','','Y','','Y','Y','Y','','','','A3','A4','','','A2','','','','A53','','A6','','','A1','','Y','','A2',''),(330,NULL,NULL,NULL,'en','581383858','2023-10-01 06:38:36','2023-10-01 06:38:36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(331,NULL,NULL,NULL,'en','1362247306','2023-10-01 11:44:12','2023-10-01 11:44:12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(332,NULL,NULL,NULL,'en','1838370783','2023-10-01 17:04:25','2023-10-01 17:04:25','https://www.linkedin.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(333,NULL,'2023-10-01 18:26:03',1,'en','2145641776','2023-10-01 18:24:18','2023-10-01 18:26:03','https://discourse.nixos.org/','','Y','','','','Y','Y','Y','','Y','','A2','A1','A4','A3','A4','A4','A4','A4','A27','','A3','','Seattle','A5','','Y','Y','A1',''),(334,NULL,'2023-10-01 19:11:06',1,'en','1379544986','2023-10-01 19:10:07','2023-10-01 19:11:06',NULL,'','','Y','Y','','Y','Y','Y','Y','Y','','A1','A3','A3','A2','A2','A3','A3','A3','A6','','A3','','San Jose','A5','','Y','Y','A2',''),(335,NULL,'2023-10-01 19:38:43',1,'en','1307160324','2023-10-01 19:37:23','2023-10-01 19:38:43',NULL,'','Y','','','','','Y','','','','','A2','A2','A2','A2','A2','A2','A2','A2','-oth-','uk','-oth-','all/none','no','A5','','','Y','A3',''),(336,NULL,NULL,NULL,'en','481321630','2023-10-01 23:07:15','2023-10-01 23:07:15','https://www.linkedin.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(337,NULL,NULL,NULL,'en','1738570990','2023-10-02 10:56:08','2023-10-02 10:56:08',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(338,NULL,'2023-10-02 11:06:16',1,'en','751963340','2023-10-02 11:02:16','2023-10-02 11:06:16','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','Y','','','A2','A2','A2','A2','A1','A2','A2','A2','-oth-','United Kingdom','A5','','Montreal, Ottawa, Toronto','A5','','Y','Y','A2',''),(339,NULL,NULL,NULL,'en','1001722541','2023-10-02 11:10:31','2023-10-02 11:10:31','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(340,NULL,'2023-10-02 13:31:54',1,'en','1825098699','2023-10-02 13:27:44','2023-10-02 13:31:54','https://discourse.nixos.org/','','','Y','Y','','Y','','','','','','A2','A2','A2','A1','A4','A4','A4','A4','A21','','A2','','','A5','','','Y','A2',''),(341,NULL,'2023-10-02 15:00:51',1,'en','1401617365','2023-10-02 14:59:31','2023-10-02 15:00:51','https://discourse.nixos.org/','','','Y','','','','','','','','Job asks me to','A4','A4','A4','A4','A1','A4','A1','A1','A53','','A6','','','A4','','Y','','A3',''),(342,NULL,'2023-10-02 16:44:41',1,'en','2135147522','2023-10-02 16:43:39','2023-10-02 16:44:41','https://www.linkedin.com/','','Y','','','','Y','Y','Y','Y','Y','','A1','A2','A3','A2','A4','A4','A4','A4','A6','','A3','','San Diego','A2','','Y','Y','A2',''),(343,NULL,'2023-10-02 17:50:54',1,'en','87000221','2023-10-02 17:49:06','2023-10-02 17:50:54',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A2','A2','A1','A1','A2','A2','A2','A2','A10','','A2','','','A5','','Y','Y','A1',''),(344,NULL,NULL,NULL,'en','849183590','2023-10-02 17:58:21','2023-10-02 17:58:21','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(345,NULL,'2023-10-02 18:02:07',1,'en','2142617003','2023-10-02 18:00:41','2023-10-02 18:02:07',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A1','A3','A3','A3','A3','A4','A4','A4','A6','','A3','','San Francisco','A3','','Y','Y','A2',''),(346,NULL,NULL,NULL,'en','1254996374','2023-10-03 14:25:52','2023-10-03 14:25:52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(347,NULL,NULL,NULL,'en','189717887','2023-10-03 14:54:12','2023-10-03 14:54:12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(348,NULL,'2023-10-03 16:36:59',1,'en','754977714','2023-10-03 16:34:14','2023-10-03 16:36:59','https://discourse.nixos.org/','','','','Y','','Y','','Y','','Y','','A3','A2','A4','A2','A2','A3','A3','A4','A33','','A2','','','-oth-','750 miles, but only by train','Y','Y','A2',''),(349,NULL,'2023-10-03 16:56:35',1,'en','490320588','2023-10-03 16:53:46','2023-10-03 16:56:35','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','Y','Y','','A4','A4','A4','A1','A4','A4','A4','A4','A22','','A2','','Boston or NYC','A3','','Y','Y','A1','I\'d be happy to volunteer for this NixCon if it\'s in Boston or NYC and it\'s during weekends'),(350,NULL,'2023-10-03 19:01:45',1,'en','1909640682','2023-10-03 18:58:22','2023-10-03 19:01:45','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','Y','','','A3','A3','A3','A2','A1','A3','A3','A3','A60','','A5','','','','','','','A3',''),(351,NULL,'2023-10-04 04:53:27',1,'en','1565981135','2023-10-04 04:51:26','2023-10-04 04:53:27','https://discourse.nixos.org/','','','Y','','','','','Y','Y','','','A1','A2','A2','A2','A2','','','','A38','','A3','','Denver','A5','','Y','','A3',''),(352,NULL,'2023-10-04 07:08:03',1,'en','1374308467','2023-10-04 07:06:30','2023-10-04 07:08:03',NULL,'','Y','Y','','','Y','','','','','','A2','A2','A2','A2','A2','A2','A2','A2','-oth-','Sweden','A3','','','A5','','Y','Y','A2',''),(353,NULL,'2023-10-04 10:38:47',1,'en','189569135','2023-10-04 10:37:11','2023-10-04 10:38:47','https://discourse.nixos.org/','','','','Y','','','','Y','Y','','','A3','A2','A1','A1','A3','A3','A4','A4','A10','','A2','','Orlando, FL','A3','','','Y','A1',''),(354,NULL,NULL,NULL,'en','512679034','2023-10-04 16:55:47','2023-10-04 16:55:47','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(355,NULL,'2023-10-04 20:29:54',1,'en','2083019617','2023-10-04 20:08:33','2023-10-04 20:29:54','https://discourse.nixos.org/','','','','','normal nixos user (and kind of preacher)','Y','Y','Y','','','feeling the community','','','','','','','','','-oth-','Germany','-oth-','cheap traveling (flights from anywhere)','','A5','','','','A1','travel grands (from the foundation (and maybe companies)) would be nice\r\nno \"bad\" sponsoring (like military industry) please'),(356,NULL,NULL,NULL,'en','251650498','2023-10-05 00:23:00','2023-10-05 00:23:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(357,NULL,'2023-10-05 01:37:51',1,'en','588498686','2023-10-05 01:36:08','2023-10-05 01:37:51',NULL,'','Y','','','','Y','','Y','Y','','','A1','A3','A4','A3','A1','A4','A4','A4','A53','','A6','','Vancouver','A3','','Y','Y','A2',''),(358,NULL,NULL,NULL,'en','1760096810','2023-10-05 06:15:41','2023-10-05 06:15:41',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(359,NULL,NULL,NULL,'en','1936468235','2023-10-05 15:14:05','2023-10-05 15:14:05','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(361,NULL,'2023-10-05 21:19:11',1,'en','991763946','2023-10-05 21:17:45','2023-10-05 21:19:11','https://survey.nixos.org/346552','','','Y','Y','','','','Y','Y','','','A2','A2','A3','A2','A2','','','','A22','','A2','','Boston, MA','A4','','Y','','A1',''),(362,NULL,'2023-10-05 22:11:00',1,'en','1672627181','2023-10-05 22:09:42','2023-10-05 22:11:00','https://discourse.nixos.org/','','','','Y','','Y','','Y','Y','Y','','A2','A2','A2','A2','A2','A3','A3','A3','A14','','A4','','Chicago','A2','','','Y','A1',''),(363,NULL,NULL,NULL,'en','1618440066','2023-10-05 22:57:04','2023-10-05 22:57:04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(364,NULL,'2023-10-06 14:40:11',1,'en','1723224375','2023-10-06 14:29:25','2023-10-06 14:40:11','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','Y','Y','','A2','A3','A1','A1','A3','A2','A2','A2','A34','','A2','','Durham, NC','A5','','Y','Y','A1','I would like to suggest Durham, NC as a potential location. Pretty good weather, nice downtown (relaxed atmosphere, good restaurants, cafes, etc), good tech scene. I could help secure a venue!'),(365,NULL,'2023-10-07 00:57:06',1,'en','1299339267','2023-10-07 00:55:19','2023-10-07 00:57:06','https://discourse.nixos.org/','Y','Y','','','','Y','Y','Y','Y','','','A3','A2','A2','A2','A2','A4','A4','A4','A22','','A2','','Boston','A3','','Y','Y','A3',''),(366,NULL,'2023-10-07 05:04:04',1,'en','382285446','2023-10-07 05:02:38','2023-10-07 05:04:04',NULL,'','Y','','','','Y','Y','Y','','','','A3','A3','','A1','','','','','A47','','A2','','','A2','','','Y','A3',''),(367,NULL,'2023-10-07 10:04:35',1,'en','2061053386','2023-10-07 10:00:33','2023-10-07 10:04:35','https://discourse.nixos.org/','','','','','wouldnt call myself an advanced user, but not really a beginner either.','Y','','Y','Y','','','A3','A3','A3','A1','A4','A4','A4','A4','A33','','A2','','nyc!','A2','','','Y','A2',''),(368,NULL,NULL,NULL,'en','1803340551','2023-10-07 16:08:39','2023-10-07 16:08:39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(369,NULL,'2023-10-07 18:26:22',1,'en','199997692','2023-10-07 18:24:33','2023-10-07 18:26:22',NULL,'','','','Y','','','Y','Y','','','','A2','A4','A4','A4','A4','A4','A4','A4','A48','','A3','','Seattle','A2','','','Y','A3',''),(370,NULL,NULL,NULL,'en','434568389','2023-10-07 19:55:50','2023-10-07 19:55:50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(371,NULL,'2023-10-07 21:40:53',1,'en','210710680','2023-10-07 21:39:39','2023-10-07 21:40:53',NULL,'','Y','','','','Y','Y','Y','Y','Y','','A1','A2','A3','A3','A3','A3','A4','A4','A45','','A3','','','A2','','','Y','A1',''),(372,NULL,NULL,NULL,'en','1896780595','2023-10-07 23:29:25','2023-10-07 23:29:25','https://www.linkedin.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(373,NULL,'2023-10-08 03:20:07',1,'en','793909913','2023-10-08 03:18:13','2023-10-08 03:20:07',NULL,'','','','Y','','Y','','Y','Y','','','A2','A2','A2','A2','A2','','A4','','A23','','A4','','','','','','','',''),(374,NULL,NULL,NULL,'en','1250244402','2023-10-08 15:11:48','2023-10-08 15:11:48','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(375,NULL,'2023-10-08 17:50:13',1,'en','1187393290','2023-10-08 17:19:49','2023-10-08 17:50:13','https://discourse.nixos.org/','','','','','I wouldn\'t say \"Advanced\" but definite experienced user and love it for the OS and for project toolchains.','Y','','Y','','Y','(My skills as an end user are better than my skills with the language and the libraries.)','A3','A1','A3','A3','A4','A4','A4','A4','A36','','A4','','Someone in the Discourse thread mentioned Cincinnati, which actually sounds like a great idea (full disclosure: definitely in driving distance for me). I know it\'s a fairly safe (varies a little by which end of town you\'re on like any city, but tech workers go out for an evening downtown all the time and most of the suburbs are ordinary as midwest suburbs go), small to medium sized city that hosts a surprising number of events already (for example, Ohio\'s anime and comics convention), and is relatively affordable, plus having its own major airport. Cincinnati also has a bit of a tech scene – not quite like a coast city, but there are several consulting companies that serve all the businesses in the area, some of those area businesses are the headquarters of national enterprises such as a major grocery chain (Kroger), and many of the larger businesses such as GE have dedicated software divisions. It is also about an hour\'s drive (give or take) from Dayton, the home of the Wright brothers which hosts a lovely aviation museum – a perfect side stop for history, technology and aviation geeks!','-oth-','up to 150 if scheduling is such that I don\'t need a hotel; otherwise, I could theoretically do it anywhere in the country, but only if it\'s over a weekend and I can fit the flight into my schedule or, otherwise, if I can get the time or convince my employer to send me.','','Y','A2','If you do pick Cincinnati, don\'t schedule it for the weekend of the Flying Pig Marathon (first Sunday in May generally), nobody will be able to drive anywhere downtown.'),(376,NULL,'2023-10-08 18:17:33',1,'en','729298107','2023-10-08 18:15:30','2023-10-08 18:17:33',NULL,'','Y','','','','Y','Y','Y','Y','','','A3','A3','A3','A1','A1','A2','A2','A2','A60','','A5','','','-oth-','Depends on flight costs','','Y','A2',''),(377,NULL,'2023-10-09 01:29:45',1,'en','1536558205','2023-10-09 01:27:31','2023-10-09 01:29:45','https://www.linkedin.com/','Y','','','','','Y','Y','','','','','A2','','','','A3','A4','A4','A4','A6','','A3','','San Francisco ','A1','','Y','','A1',''),(378,NULL,NULL,NULL,'en','220739687','2023-10-09 08:55:59','2023-10-09 08:55:59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(379,NULL,'2023-10-09 10:33:03',1,'en','870595691','2023-10-09 10:28:19','2023-10-09 10:33:03','https://www.linkedin.com/','','','','','nix user','Y','Y','Y','Y','Y','arm westle tom and win!','A1','A1','A3','A1','A4','A3','A1','A1','A6','','-oth-','gotta be San Diego','San Diego','A5','','Y','Y','A1','lets make it cheap.\r\n\r\nThe bay is far too expensive for normal engineers.\r\n\r\nSandiego\r\n\r\nor\r\n\r\nmexico are great alternatives.\r\n\r\nsee you soon.\r\n'),(380,NULL,'2023-10-09 16:54:01',1,'en','68548553','2023-10-09 16:47:21','2023-10-09 16:54:01','https://discourse.nixos.org/','','','Y','','','Y','','Y','Y','Y','','A2','A1','A2','A1','A1','A4','A4','A4','A23','','A2','','','A5','','Y','Y','A1','For me personally, I want to volunteer more time at NixCon North America.\r\nA shorter travel distance will make that easier, but don\'t locate the conference from one anec-data point!\r\n\r\nI\'m very excited about the potential of a conference in North America to meet other nixers on this side of the planet. :)'),(381,NULL,'2023-10-09 16:59:40',1,'en','254663698','2023-10-09 16:55:14','2023-10-09 16:59:40',NULL,'','','','Y','','Y','','Y','','Y','','A1','A2','A1','A3','A2','A4','','A4','A4','','A3','','Kansas City (MO side)','A5','','Y','Y','A2',''),(382,NULL,'2023-10-09 17:09:30',1,'en','1890540289','2023-10-09 17:07:52','2023-10-09 17:09:30',NULL,'','Y','','','','Y','Y','Y','Y','','','A1','A2','A2','A2','A2','','A4','A4','A6','','A3','','Los Angeles','A3','','Y','Y','A2',''),(383,NULL,'2023-10-09 21:40:45',1,'en','226782219','2023-10-09 21:39:21','2023-10-09 21:40:45','https://www.linkedin.com/','','Y','','','','Y','','Y','','','','A4','A2','A4','A1','A2','A4','A4','A4','A39','','A2','','','','','','Y','A2',''),(384,NULL,NULL,NULL,'en','721843717','2023-10-09 23:16:47','2023-10-09 23:16:47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(385,NULL,'2023-10-10 01:24:26',1,'en','753861615','2023-10-10 01:22:55','2023-10-10 01:24:26',NULL,'','','','Y','','','','','','Y','','A4','A1','A4','A4','A4','A4','A4','A4','A14','','A4','','Chicago','A1','','Y','Y','A2','Don\'t bring cat ears on stage.'),(386,NULL,NULL,NULL,'en','1553790427','2023-10-10 05:07:11','2023-10-10 05:07:11','https://duckduckgo.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(387,NULL,'2023-10-10 10:30:04',1,'en','249449754','2023-10-10 10:28:23','2023-10-10 10:30:04','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','Y','Y','','A2','A2','A2','A2','A2','A3','A3','A4','-oth-','France Paris','A6','','Montréal ','A5','','Y','Y','A1','Make it as good as NixCon 2023'),(388,NULL,'2023-10-10 11:34:18',1,'en','891310812','2023-10-10 11:31:47','2023-10-10 11:34:18','https://discourse.nixos.org/','Y','Y','','','','Y','Y','Y','','','','A2','A2','A1','A2','A2','A4','A4','A4','A44','','A4','','Houston, TX','A2','','Y','Y','A3',''),(389,NULL,'2023-10-10 13:05:06',1,'en','278097976','2023-10-10 13:01:58','2023-10-10 13:05:06','https://discourse.nixos.org/','','','','Y','','Y','','Y','','','','A4','A4','A4','A1','A4','A4','A4','A4','A39','','A2','','Philadelphia, New York, D.C.','A3','','Y','','A3','Thanks for considering North America! I have trouble going far these days but would greatly appreciate an in-person event geographically closer to me. '),(390,NULL,NULL,NULL,'en','441222636','2023-10-10 16:26:43','2023-10-10 16:26:43','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(391,NULL,NULL,NULL,'en','1956816525','2023-10-10 20:19:19','2023-10-10 20:19:19','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(392,NULL,NULL,NULL,'en','2109547519','2023-10-10 21:24:22','2023-10-10 21:24:22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(393,NULL,'2023-10-12 14:25:24',1,'en','458472813','2023-10-12 14:23:46','2023-10-12 14:25:24','https://discourse.nixos.org/','','','','Y','','Y','','Y','Y','Y','','A3','A3','A2','A1','A4','A4','A4','A4','A47','','A2','','','A3','','Y','Y','A1',''),(394,NULL,'2023-10-12 23:26:56',1,'en','344035982','2023-10-12 23:25:41','2023-10-12 23:26:56','https://discourse.nixos.org/','','','','Y','','Y','Y','Y','','','','A2','A3','A4','A2','A1','A2','A4','A4','A60','','A5','','Ottawa','A5','','Y','Y','A2','Good luck in your efforts!'),(395,NULL,'2023-10-13 06:39:00',1,'en','187579851','2023-10-13 06:37:51','2023-10-13 06:39:00',NULL,'','Y','','','','Y','Y','Y','','Y','','A2','A3','A3','','','','','','A6','','A3','','','A1','','Y','Y','A2',''),(396,NULL,'2023-10-13 13:56:16',1,'en','253888271','2023-10-13 13:53:58','2023-10-13 13:56:16','https://discourse.nixos.org/','','','Y','','','Y','','Y','','','','A1','A1','A1','A1','A2','A2','A3','A3','A7','','A2','','','A5','','','Y','A2',''),(397,NULL,NULL,NULL,'en','797500278','2023-10-13 17:13:55','2023-10-13 17:13:55','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(398,NULL,'2023-10-13 19:48:31',1,'en','1775832701','2023-10-13 19:41:39','2023-10-13 19:48:31','https://discourse.nixos.org/','','','','Y','','Y','','Y','','Y','','A2','A2','A2','A1','A3','A3','A3','A3','A34','','A2','','','-oth-','Within the US','Y','','A3',''),(399,NULL,NULL,NULL,'en','2077493524','2023-10-13 20:25:54','2023-10-13 20:25:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(400,NULL,NULL,NULL,'en','1509933677','2023-10-13 22:02:49','2023-10-13 22:02:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(401,NULL,'2023-10-13 22:47:17',1,'en','1074774103','2023-10-13 22:45:41','2023-10-13 22:47:17','https://discourse.nixos.org/','','','Y','Y','','Y','','','','','','','','','','A2','','','','A62','','A5','','Montréal','A2','','','Y','A3',''),(402,NULL,NULL,NULL,'en','1475995511','2023-10-14 02:40:56','2023-10-14 02:40:56','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(403,NULL,'2023-10-14 17:49:09',1,'en','2046656507','2023-10-14 17:47:20','2023-10-14 17:49:09','https://t.co/','','Y','','','','Y','Y','Y','','','','A1','A2','A3','A1','A1','A4','A4','A4','A44','','A3','','Seattle','A5','','Y','','A2',''),(404,NULL,'2023-10-14 18:21:10',1,'en','1942127919','2023-10-14 18:19:55','2023-10-14 18:21:10',NULL,'','','Y','Y','','Y','','Y','','Y','','A2','A2','A2','A2','A2','A3','A3','A3','A62','','A5','','Montreal','A5','','Y','Y','A3',''),(405,NULL,NULL,NULL,'en','1519142534','2023-10-14 20:10:02','2023-10-14 20:10:02',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(406,NULL,'2023-10-15 22:22:48',1,'en','697173508','2023-10-15 22:14:53','2023-10-15 22:22:48',NULL,'Y','Y','','','','Y','','Y','Y','','','A1','A2','A3','A2','A2','A2','A2','A2','A29','','A3','','','A5','','Y','Y','A1',''),(407,NULL,'2023-10-16 23:47:22',1,'en','643654718','2023-10-16 23:46:07','2023-10-16 23:47:22',NULL,'Y','','','','','','','','Y','Y','','A4','A4','A4','A4','A1','A4','A4','A4','A52','','A6','','calgary','A1','','','Y','A2',''),(408,NULL,'2023-10-17 01:01:45',1,'en','1581521307','2023-10-17 00:55:21','2023-10-17 01:01:45','https://discourse.nixos.org/','Y','','Y','','I have made a small number of contributions to nixpkgs (fewer than 10 commits)','Y','','Y','Y','Y','','A1','A1','A2','A2','A2','A2','A3','A3','A4','','-oth-','Central and Western US are closest to me','','A5','','','Y','A2',''),(409,NULL,NULL,NULL,'en','629553283','2023-10-17 08:30:40','2023-10-17 08:30:40',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(410,NULL,'2023-10-17 17:18:54',1,'en','1958392792','2023-10-17 17:16:54','2023-10-17 17:18:54','https://discourse.nixos.org/','','','','Y','','Y','','Y','','Y','','A4','A3','A2','A3','A4','A4','A4','A4','A18','','A5','','Cincinnati ','A2','','Y','Y','A1',''),(411,NULL,'2023-10-17 17:31:58',1,'en','1023479375','2023-10-17 17:30:50','2023-10-17 17:31:58',NULL,'','Y','','','','','Y','','','','','A3','A1','A3','A2','A4','A4','A4','A4','A23','','A4','','','A5','','Y','','A3',''),(412,NULL,NULL,NULL,'en','1213505308','2023-10-17 23:37:47','2023-10-17 23:37:47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(413,NULL,NULL,NULL,'en','186551568','2023-10-19 08:07:25','2023-10-19 08:07:25','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(414,NULL,NULL,NULL,'en','384079947','2023-10-23 01:23:07','2023-10-23 01:23:07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(415,NULL,'2023-10-24 01:01:28',1,'en','589824554','2023-10-24 00:58:40','2023-10-24 01:01:28','https://discourse.nixos.org/','','','','Y','','Y','','Y','Y','','','A1','A3','A3','A3','A3','','','','A6','','A3','','Bay Area','A2','','','Y','A2',''),(416,NULL,NULL,NULL,'en','1209406663','2023-10-24 19:31:57','2023-10-24 19:31:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +/*!40000 ALTER TABLE `limesurvey_survey_346552` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_survey_links` +-- + +DROP TABLE IF EXISTS `limesurvey_survey_links`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_survey_links` ( + `participant_id` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, + `token_id` int(11) NOT NULL, + `survey_id` int(11) NOT NULL, + `date_created` datetime DEFAULT NULL, + `date_invited` datetime DEFAULT NULL, + `date_completed` datetime DEFAULT NULL, + PRIMARY KEY (`participant_id`,`token_id`,`survey_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_survey_links` +-- + +LOCK TABLES `limesurvey_survey_links` WRITE; +/*!40000 ALTER TABLE `limesurvey_survey_links` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_survey_links` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_survey_url_parameters` +-- + +DROP TABLE IF EXISTS `limesurvey_survey_url_parameters`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_survey_url_parameters` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `sid` int(11) NOT NULL, + `parameter` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, + `targetqid` int(11) DEFAULT NULL, + `targetsqid` int(11) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_survey_url_parameters` +-- + +LOCK TABLES `limesurvey_survey_url_parameters` WRITE; +/*!40000 ALTER TABLE `limesurvey_survey_url_parameters` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_survey_url_parameters` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_surveymenu` +-- + +DROP TABLE IF EXISTS `limesurvey_surveymenu`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_surveymenu` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `parent_id` int(11) DEFAULT NULL, + `survey_id` int(11) DEFAULT NULL, + `user_id` int(11) DEFAULT NULL, + `name` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `ordering` int(11) DEFAULT 0, + `level` int(11) DEFAULT 0, + `title` varchar(168) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `position` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'side', + `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `showincollapse` int(11) DEFAULT 0, + `active` int(11) NOT NULL DEFAULT 0, + `changed_at` datetime DEFAULT NULL, + `changed_by` int(11) NOT NULL DEFAULT 0, + `created_at` datetime DEFAULT NULL, + `created_by` int(11) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `limesurvey_surveymenu_name` (`name`), + KEY `limesurvey_idx2_surveymenu` (`title`) +) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_surveymenu` +-- + +LOCK TABLES `limesurvey_surveymenu` WRITE; +/*!40000 ALTER TABLE `limesurvey_surveymenu` DISABLE KEYS */; +INSERT INTO `limesurvey_surveymenu` VALUES (1,NULL,NULL,NULL,'settings',1,0,'Survey settings','side','Survey settings',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(2,NULL,NULL,NULL,'mainmenu',2,0,'Survey menu','side','Main survey menu',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(3,NULL,NULL,NULL,'quickmenu',3,0,'Quick menu','collapsed','Quick menu',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0); +/*!40000 ALTER TABLE `limesurvey_surveymenu` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_surveymenu_entries` +-- + +DROP TABLE IF EXISTS `limesurvey_surveymenu_entries`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_surveymenu_entries` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `menu_id` int(11) DEFAULT NULL, + `user_id` int(11) DEFAULT NULL, + `ordering` int(11) DEFAULT 0, + `name` varchar(168) COLLATE utf8mb4_unicode_ci DEFAULT '', + `title` varchar(168) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `menu_title` varchar(168) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `menu_description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `menu_icon` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `menu_icon_type` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `menu_class` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `menu_link` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `action` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `template` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `partial` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `classes` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `permission` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `permission_grade` varchar(192) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `data` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `getdatamethod` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `language` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en-GB', + `showincollapse` int(11) DEFAULT 0, + `active` int(11) NOT NULL DEFAULT 0, + `changed_at` datetime DEFAULT NULL, + `changed_by` int(11) NOT NULL DEFAULT 0, + `created_at` datetime DEFAULT NULL, + `created_by` int(11) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `limesurvey_surveymenu_entries_name` (`name`), + KEY `limesurvey_idx1_surveymenu_entries` (`menu_id`), + KEY `limesurvey_idx5_surveymenu_entries` (`menu_title`) +) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_surveymenu_entries` +-- + +LOCK TABLES `limesurvey_surveymenu_entries` WRITE; +/*!40000 ALTER TABLE `limesurvey_surveymenu_entries` DISABLE KEYS */; +INSERT INTO `limesurvey_surveymenu_entries` VALUES (1,1,NULL,1,'overview','Survey overview','Overview','Open the general survey overview','list','fontawesome','','admin/survey/sa/view','','','','','','','{\"render\": { \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(2,1,NULL,2,'generalsettings','General survey settings','General settings','Open general survey settings','gears','fontawesome','','','updatesurveylocalesettings_generalsettings','editLocalSettings_main_view','/admin/survey/subview/accordion/_generaloptions_panel','','surveysettings','read',NULL,'_generalTabEditSurvey','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(3,1,NULL,3,'surveytexts','Survey text elements','Text elements','Survey text elements','file-text-o','fontawesome','','','updatesurveylocalesettings','editLocalSettings_main_view','/admin/survey/subview/tab_edit_view','','surveylocale','read',NULL,'_getTextEditData','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(4,1,NULL,4,'datasecurity','Data policy settings','Data policy settings','Edit data policy settings','shield','fontawesome','','','updatesurveylocalesettings','editLocalSettings_main_view','/admin/survey/subview/tab_edit_view_datasecurity','','surveylocale','read',NULL,'_getDataSecurityEditData','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(5,1,NULL,5,'theme_options','Theme options','Theme options','Edit theme options for this survey','paint-brush','fontawesome','','admin/themeoptions/sa/updatesurvey','','','','','surveysettings','update','{\"render\": {\"link\": { \"pjaxed\": true, \"data\": {\"surveyid\": [\"survey\",\"sid\"], \"gsid\":[\"survey\",\"gsid\"]}}}}','','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(6,1,NULL,6,'presentation','Presentation & navigation settings','Presentation','Edit presentation and navigation settings','eye-slash','fontawesome','','','updatesurveylocalesettings','editLocalSettings_main_view','/admin/survey/subview/accordion/_presentation_panel','','surveylocale','read',NULL,'_tabPresentationNavigation','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(7,1,NULL,7,'tokens','Survey participant settings','Participant settings','Set additional options for survey participants','users','fontawesome','','','updatesurveylocalesettings','editLocalSettings_main_view','/admin/survey/subview/accordion/_tokens_panel','','surveylocale','read',NULL,'_tabTokens','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(8,1,NULL,8,'notification','Notification and data management settings','Notifications & data','Edit settings for notification and data management','feed','fontawesome','','','updatesurveylocalesettings','editLocalSettings_main_view','/admin/survey/subview/accordion/_notification_panel','','surveylocale','read',NULL,'_tabNotificationDataManagement','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(9,1,NULL,9,'publication','Publication & access control settings','Publication & access','Edit settings for publication and access control','key','fontawesome','','','updatesurveylocalesettings','editLocalSettings_main_view','/admin/survey/subview/accordion/_publication_panel','','surveylocale','read',NULL,'_tabPublicationAccess','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(10,2,NULL,1,'listQuestions','List questions','List questions','List questions','list','fontawesome','','admin/survey/sa/listquestions','','','','','surveycontent','read','{\"render\": { \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(11,2,NULL,2,'listQuestionGroups','List question groups','List question groups','List question groups','th-list','fontawesome','','admin/survey/sa/listquestiongroups','','','','','surveycontent','read','{\"render\": { \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(12,2,NULL,3,'reorder','Reorder questions/question groups','Reorder questions/question groups','Reorder questions/question groups','icon-organize','iconclass','','admin/survey/sa/organize/','','','','','surveycontent','update','{\"render\": {\"isActive\": false, \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(13,2,NULL,4,'responses','Responses','Responses','Responses','icon-browse','iconclass','','admin/responses/sa/browse/','','','','','responses','read','{\"render\": {\"isActive\": true, \"link\": {\"data\": {\"surveyid\": [\"survey\", \"sid\"]}}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(14,2,NULL,5,'participants','Survey participants','Survey participants','Go to survey participant and token settings','user','fontawesome','','admin/tokens/sa/index/','','','','','tokens','update','{\"render\": { \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(15,2,NULL,6,'statistics','Statistics','Statistics','Statistics','bar-chart','fontawesome','','admin/statistics/sa/index/','','','','','statistics','read','{\"render\": {\"isActive\": true, \"link\": {\"data\": {\"surveyid\": [\"survey\", \"sid\"]}}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(16,2,NULL,7,'quotas','Edit quotas','Quotas','Edit quotas for this survey.','tasks','fontawesome','','admin/quotas/sa/index/','','','','','quotas','read','{\"render\": { \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(17,2,NULL,8,'assessments','Edit assessments','Assessments','Edit and look at the assessements for this survey.','comment-o','fontawesome','','admin/assessments/sa/index/','','','','','assessments','read','{\"render\": { \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(18,2,NULL,9,'surveypermissions','Edit survey permissions','Survey permissions','Edit permissions for this survey','lock','fontawesome','','admin/surveypermission/sa/view/','','','','','surveysecurity','read','{\"render\": { \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(19,2,NULL,10,'emailtemplates','Email templates','Email templates','Edit the templates for invitation, reminder and registration emails','envelope-square','fontawesome','','admin/emailtemplates/sa/index/','','','','','surveylocale','read','{\"render\": { \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(20,2,NULL,11,'panelintegration','Edit survey panel integration','Panel integration','Define panel integrations for your survey','link','fontawesome','','','updatesurveylocalesettings','editLocalSettings_main_view','/admin/survey/subview/accordion/_integration_panel','','surveylocale','read','{\"render\": {\"link\": { \"pjaxed\": false}}}','_tabPanelIntegration','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(21,2,NULL,12,'resources','Add/edit resources (files/images) for this survey','Resources','Add/edit resources (files/images) for this survey','file','fontawesome','','','updatesurveylocalesettings','editLocalSettings_main_view','/admin/survey/subview/accordion/_resources_panel','','surveylocale','read',NULL,'_tabResourceManagement','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(22,2,NULL,13,'plugins','Simple plugin settings','Simple plugins','Edit simple plugin settings','plug','fontawesome','','','updatesurveylocalesettings','editLocalSettings_main_view','/admin/survey/subview/accordion/_plugins_panel','','surveysettings','read','{\"render\": {\"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','_pluginTabSurvey','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(23,3,NULL,1,'activateSurvey','Activate survey','Activate survey','Activate survey','play','fontawesome','','admin/survey/sa/activate','','','','','surveyactivation','update','{\"render\": {\"isActive\": false, \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(24,3,NULL,2,'deactivateSurvey','Stop this survey','Stop this survey','Stop this survey','stop','fontawesome','','admin/survey/sa/deactivate','','','','','surveyactivation','update','{\"render\": {\"isActive\": true, \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(25,3,NULL,3,'testSurvey','Go to survey','Go to survey','Go to survey','cog','fontawesome','','survey/index/','','','','','','','{\"render\": {\"link\": {\"external\": true, \"data\": {\"sid\": [\"survey\",\"sid\"], \"newtest\": \"Y\", \"lang\": [\"survey\",\"language\"]}}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(26,3,NULL,4,'surveyLogicFile','Survey logic file','Survey logic file','Survey logic file','sitemap','fontawesome','','admin/expressions/sa/survey_logic_file/','','','','','surveycontent','read','{\"render\": { \"link\": {\"data\": {\"sid\": [\"survey\",\"sid\"]}}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(27,3,NULL,5,'cpdb','Central participant database','Central participant database','Central participant database','users','fontawesome','','admin/participants/sa/displayParticipants','','','','','tokens','read','{\"render\": {\"link\": {}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0); +/*!40000 ALTER TABLE `limesurvey_surveymenu_entries` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_surveys` +-- + +DROP TABLE IF EXISTS `limesurvey_surveys`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_surveys` ( + `sid` int(11) NOT NULL, + `owner_id` int(11) NOT NULL, + `gsid` int(11) DEFAULT 1, + `admin` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `active` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', + `expires` datetime DEFAULT NULL, + `startdate` datetime DEFAULT NULL, + `adminemail` varchar(254) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `anonymized` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', + `faxto` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `format` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `savetimings` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', + `template` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'default', + `language` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `additional_languages` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `datestamp` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', + `usecookie` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', + `allowregister` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', + `allowsave` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', + `autonumber_start` int(11) NOT NULL DEFAULT 0, + `autoredirect` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', + `allowprev` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', + `printanswers` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', + `ipaddr` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', + `refurl` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', + `datecreated` datetime DEFAULT NULL, + `showsurveypolicynotice` int(11) DEFAULT 0, + `publicstatistics` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', + `publicgraphs` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', + `listpublic` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', + `htmlemail` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', + `sendconfirmation` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', + `tokenanswerspersistence` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', + `assessments` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', + `usecaptcha` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', + `usetokens` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', + `bounce_email` varchar(254) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `attributedescriptions` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `emailresponseto` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `emailnotificationto` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `tokenlength` int(11) NOT NULL DEFAULT 15, + `showxquestions` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT 'Y', + `showgroupinfo` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT 'B', + `shownoanswer` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT 'Y', + `showqnumcode` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT 'X', + `bouncetime` int(11) DEFAULT NULL, + `bounceprocessing` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT 'N', + `bounceaccounttype` varchar(4) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `bounceaccounthost` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `bounceaccountpass` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `bounceaccountencryption` varchar(3) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `bounceaccountuser` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `showwelcome` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT 'Y', + `showprogress` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT 'Y', + `questionindex` int(11) NOT NULL DEFAULT 0, + `navigationdelay` int(11) NOT NULL DEFAULT 0, + `nokeyboard` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT 'N', + `alloweditaftercompletion` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT 'N', + `googleanalyticsstyle` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `googleanalyticsapikey` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`sid`), + KEY `limesurvey_idx1_surveys` (`owner_id`), + KEY `limesurvey_idx2_surveys` (`gsid`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_surveys` +-- + +LOCK TABLES `limesurvey_surveys` WRITE; +/*!40000 ALTER TABLE `limesurvey_surveys` DISABLE KEYS */; +INSERT INTO `limesurvey_surveys` VALUES (2022,1,1,'','Y','2022-04-01 16:00:00',NULL,'barry@floxdev.com','Y','','G','N','fruity','en','','N','N','N','Y',0,'N','Y','N','N','N','2022-02-28 20:53:48',0,'N','N','Y','Y','Y','N','N','N','N','barry@floxdev.com',NULL,'','',15,'N','B','Y','X',NULL,'N',NULL,NULL,NULL,NULL,NULL,'Y','Y',0,0,'N','N','',''),(239157,8,1,'admin','Y','2023-10-25 19:40:37',NULL,'webmaster@nixos.org','Y','','G','N','fruity','en','','N','N','N','Y',0,'N','N','N','N','N','2023-09-05 13:50:16',0,'N','N','N','Y','Y','N','N','N','N','webmaster@nixos.org',NULL,'','',15,'Y','B','N','X',NULL,'N',NULL,NULL,NULL,NULL,NULL,'Y','Y',0,0,'N','N','',''),(346552,1,1,'admin','Y','2023-10-25 19:40:48',NULL,'webmaster@nixos.org','N','','G','N','fruity','en','','Y','N','N','Y',0,'N','N','N','N','Y','2023-09-22 16:09:14',0,'N','N','N','Y','Y','N','N','N','N','webmaster@nixos.org',NULL,'','',15,'Y','B','N','X',NULL,'N',NULL,NULL,NULL,NULL,NULL,'Y','Y',0,0,'N','N','',''),(2023,1,1,'admin','Y','2023-09-22 15:58:36',NULL,'personal@ilanjoselevich.com','Y','','G','N','vanilla','en','','N','Y','N','Y',1,'N','Y','N','N','N','2023-05-10 20:05:42',0,'N','N','Y','Y','Y','N','N','N','N','personal@ilanjoselevich.com',NULL,'','',15,'N','B','Y','X',NULL,'N',NULL,NULL,NULL,NULL,NULL,'Y','Y',0,0,'N','N','',''),(964172,1,1,'admin','N',NULL,NULL,'webmaster@nixos.org','N','','G','N','fruity','en','','N','N','N','Y',0,'N','N','N','N','N','2024-02-13 10:28:58',0,'N','N','N','Y','Y','N','N','N','N','webmaster@nixos.org',NULL,'','',15,'Y','B','N','X',NULL,'N',NULL,NULL,NULL,NULL,NULL,'Y','Y',0,0,'N','N','',''),(248687,1,1,'admin','Y','2024-04-09 23:17:25',NULL,'daniel.n.baker@gmail.com','Y','','G','N','fruity','en','','N','N','N','Y',0,'N','N','N','N','N','2024-02-28 20:55:26',0,'N','N','N','Y','Y','N','N','N','N','daniel.n.baker@gmail.com',NULL,'','',15,'Y','B','N','X',NULL,'N',NULL,NULL,NULL,NULL,NULL,'Y','Y',0,0,'N','N',NULL,NULL),(2024,7,1,'admin','N','2023-09-22 15:58:36',NULL,'rok@garbas.si','Y','','G','N','vanilla','en','','N','Y','N','Y',1,'N','Y','N','N','N','2024-05-20 09:13:07',0,'N','N','Y','Y','Y','N','N','N','N','rok@garbas.si',NULL,'','',15,'N','B','Y','X',NULL,'N',NULL,NULL,NULL,NULL,NULL,'Y','Y',0,0,'N','N','',''); +/*!40000 ALTER TABLE `limesurvey_surveys` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_surveys_groups` +-- + +DROP TABLE IF EXISTS `limesurvey_surveys_groups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_surveys_groups` ( + `gsid` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL, + `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `template` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT 'default', + `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `sortorder` int(11) NOT NULL, + `owner_id` int(11) DEFAULT NULL, + `parent_id` int(11) DEFAULT NULL, + `created` datetime DEFAULT NULL, + `modified` datetime DEFAULT NULL, + `created_by` int(11) NOT NULL, + PRIMARY KEY (`gsid`), + KEY `limesurvey_idx1_surveys_groups` (`name`), + KEY `limesurvey_idx2_surveys_groups` (`title`) +) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_surveys_groups` +-- + +LOCK TABLES `limesurvey_surveys_groups` WRITE; +/*!40000 ALTER TABLE `limesurvey_surveys_groups` DISABLE KEYS */; +INSERT INTO `limesurvey_surveys_groups` VALUES (1,'default','Default',NULL,'Default survey group',0,1,NULL,'2022-02-02 21:47:15','2022-02-02 21:47:15',1); +/*!40000 ALTER TABLE `limesurvey_surveys_groups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_surveys_languagesettings` +-- + +DROP TABLE IF EXISTS `limesurvey_surveys_languagesettings`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_surveys_languagesettings` ( + `surveyls_survey_id` int(11) NOT NULL, + `surveyls_language` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', + `surveyls_title` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, + `surveyls_description` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `surveyls_welcometext` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `surveyls_endtext` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `surveyls_policy_notice` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `surveyls_policy_error` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `surveyls_policy_notice_label` varchar(192) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `surveyls_url` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `surveyls_urldescription` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `surveyls_email_invite_subj` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `surveyls_email_invite` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `surveyls_email_remind_subj` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `surveyls_email_remind` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `surveyls_email_register_subj` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `surveyls_email_register` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `surveyls_email_confirm_subj` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `surveyls_email_confirm` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `surveyls_dateformat` int(11) NOT NULL DEFAULT 1, + `surveyls_attributecaptions` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `email_admin_notification_subj` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `email_admin_notification` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `email_admin_responses_subj` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `email_admin_responses` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `surveyls_numberformat` int(11) NOT NULL DEFAULT 0, + `attachments` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`surveyls_survey_id`,`surveyls_language`), + KEY `limesurvey_idx1_surveys_languagesettings` (`surveyls_title`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_surveys_languagesettings` +-- + +LOCK TABLES `limesurvey_surveys_languagesettings` WRITE; +/*!40000 ALTER TABLE `limesurvey_surveys_languagesettings` DISABLE KEYS */; +INSERT INTO `limesurvey_surveys_languagesettings` VALUES (239157,'en','NixCon 2023','We would like to receive feedback from you regarding your time at NixCon, the journey to it and your general thoughts on the event.','','',NULL,NULL,NULL,'','','Invitation to participate in a survey','Dear {FIRSTNAME},
\n
\nyou have been invited to participate in a survey.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}
\n
\nIf you are blacklisted but want to participate in this survey and want to receive invitations please click the following link:
\n{OPTINURL}','Reminder to participate in a survey','Dear {FIRSTNAME},
\n
\nRecently we invited you to participate in a survey.
\n
\nWe note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}','Survey registration confirmation','Dear {FIRSTNAME},
\n
\nYou, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.
\n
\nTo complete this survey, click on the following URL:
\n
\n{SURVEYURL}
\n
\nIf you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of your participation in our survey','Dear {FIRSTNAME},
\n
\nthis email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.
\n
\nIf you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.
\n
\nSincerely,
\n
\n{ADMINNAME}',1,NULL,'Response submission for survey {SURVEYNAME}','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}','Response submission for survey {SURVEYNAME} with results','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}
\n
\n
\nThe following answers were given by the participant:
\n{ANSWERTABLE}',0,NULL),(346552,'en','NixCon North America 2024 Exploratory Survey','','','','','','','','','Invitation to participate in a survey','Dear {FIRSTNAME},
\n
\nyou have been invited to participate in a survey.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}
\n
\nIf you are blacklisted but want to participate in this survey and want to receive invitations please click the following link:
\n{OPTINURL}','Reminder to participate in a survey','Dear {FIRSTNAME},
\n
\nRecently we invited you to participate in a survey.
\n
\nWe note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}','Survey registration confirmation','Dear {FIRSTNAME},
\n
\nYou, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.
\n
\nTo complete this survey, click on the following URL:
\n
\n{SURVEYURL}
\n
\nIf you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of your participation in our survey','Dear {FIRSTNAME},
\n
\nthis email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.
\n
\nIf you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.
\n
\nSincerely,
\n
\n{ADMINNAME}',1,NULL,'Response submission for survey {SURVEYNAME}','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}','Response submission for survey {SURVEYNAME} with results','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}
\n
\n
\nThe following answers were given by the participant:
\n{ANSWERTABLE}',0,NULL),(964172,'en','User experience survey: user types and information architecture','','','','','','','','','Invitation to participate in a survey','Dear {FIRSTNAME},
\n
\nyou have been invited to participate in a survey.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}
\n
\nIf you are blacklisted but want to participate in this survey and want to receive invitations please click the following link:
\n{OPTINURL}','Reminder to participate in a survey','Dear {FIRSTNAME},
\n
\nRecently we invited you to participate in a survey.
\n
\nWe note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}','Survey registration confirmation','Dear {FIRSTNAME},
\n
\nYou, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.
\n
\nTo complete this survey, click on the following URL:
\n
\n{SURVEYURL}
\n
\nIf you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of your participation in our survey','Dear {FIRSTNAME},
\n
\nthis email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.
\n
\nIf you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.
\n
\nSincerely,
\n
\n{ADMINNAME}',1,NULL,'Response submission for survey {SURVEYNAME}','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}','Response submission for survey {SURVEYNAME} with results','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}
\n
\n
\nThe following answers were given by the participant:
\n{ANSWERTABLE}',0,NULL),(248687,'en','NixCon North America 2024 Feedback','','','',NULL,NULL,NULL,'','','Invitation to participate in a survey','Dear {FIRSTNAME},
\n
\nyou have been invited to participate in a survey.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}
\n
\nIf you are blacklisted but want to participate in this survey and want to receive invitations please click the following link:
\n{OPTINURL}','Reminder to participate in a survey','Dear {FIRSTNAME},
\n
\nRecently we invited you to participate in a survey.
\n
\nWe note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}','Survey registration confirmation','Dear {FIRSTNAME},
\n
\nYou, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.
\n
\nTo complete this survey, click on the following URL:
\n
\n{SURVEYURL}
\n
\nIf you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of your participation in our survey','Dear {FIRSTNAME},
\n
\nthis email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.
\n
\nIf you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.
\n
\nSincerely,
\n
\n{ADMINNAME}',1,NULL,'Response submission for survey {SURVEYNAME}','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}','Response submission for survey {SURVEYNAME} with results','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}
\n
\n
\nThe following answers were given by the participant:
\n{ANSWERTABLE}',0,NULL),(2023,'en','Nix Community Survey 2023','

Welcome to the second Nix Community Survey!

\r\n\r\n

Please take 5-10 minutes to fill out this survey with info about yourself and how you use projects in the Nix ecosystem. We hope to use your responses to develop Nix, Nixpkgs, and NixOS to better match your needs and come up with new ideas for serving and growing the community. We\'ll publish major findings on Discourse and nixos.org.

\r\n\r\n

 

\r\n','','

Thank you for taking time to participate! This helps making the Nix ecosystem better for everyone.

\r\n\r\n

Keep an eye out for the survey summary on Discourse.

\r\n','','','','','Nix Community Survey 2023','Invitation to participate in a survey','Dear {FIRSTNAME},
\n
\nyou have been invited to participate in a survey.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}
\n
\nIf you are blacklisted but want to participate in this survey and want to receive invitations please click the following link:
\n{OPTINURL}','Reminder to participate in a survey','Dear {FIRSTNAME},
\n
\nRecently we invited you to participate in a survey.
\n
\nWe note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}','Survey registration confirmation','Dear {FIRSTNAME},
\n
\nYou, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.
\n
\nTo complete this survey, click on the following URL:
\n
\n{SURVEYURL}
\n
\nIf you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of your participation in our survey','Dear {FIRSTNAME},
\n
\nthis email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.
\n
\nIf you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.
\n
\nSincerely,
\n
\n{ADMINNAME}',1,NULL,'Response submission for survey {SURVEYNAME}','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}','Response submission for survey {SURVEYNAME} with results','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}
\n
\n
\nThe following answers were given by the participant:
\n{ANSWERTABLE}',0,NULL),(2022,'en','NixOS Community Survey 2022','

Welcome to the first NixOS Community Survey!

\r\n\r\n

Please take 5-10 minutes to fill out this survey with info about yourself and how you use projects in the Nix ecosystem. We hope to use your responses to develop Nix, NixOS, and Nixpkgs to match your needs and come up with new ideas for growing the community. We\'ll publish major findings on Discourse and nixos.org. We will not collect any personal information (e.g. IP address, name, GitHub handle).

\r\n\r\n

 

\r\n','','

Thank you for participating! We\'re grateful for your time and contribution!

\r\n\r\n

Keep an eye out for the survey summary on Discourse.

\r\n','','','','','NixOS Community Survey 2022','Invitation to participate in a survey','Dear {FIRSTNAME},
\n
\nyou have been invited to participate in a survey.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}
\n
\nIf you are blacklisted but want to participate in this survey and want to receive invitations please click the following link:
\n{OPTINURL}','Reminder to participate in a survey','Dear {FIRSTNAME},
\n
\nRecently we invited you to participate in a survey.
\n
\nWe note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}','Survey registration confirmation','Dear {FIRSTNAME},
\n
\nYou, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.
\n
\nTo complete this survey, click on the following URL:
\n
\n{SURVEYURL}
\n
\nIf you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of your participation in our survey','Dear {FIRSTNAME},
\n
\nthis email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.
\n
\nIf you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.
\n
\nSincerely,
\n
\n{ADMINNAME}',1,NULL,'Response submission for survey {SURVEYNAME}','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}','Response submission for survey {SURVEYNAME} with results','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}
\n
\n
\nThe following answers were given by the participant:
\n{ANSWERTABLE}',0,NULL),(2024,'en','Nix Community Survey 2024','','

Welcome to this year\'s Nix Community Survey!

\r\n\r\n

This survey will take 5 to 10 minutes to complete. We will ask you questions about yourself and how you interact with the Nix ecosystem.

\r\n\r\n

We hope to use your responses to develop Nix, Nixpkgs, NixOS, and better serve the community.

\r\n','

Thank you for taking time to participate. Your inputs are key to improving the Nix ecosystem!

\r\n\r\n

The results and analysis will be published on Discourse.
Stay tune!

\r\n','','','','','Nix Community Survey 2024','Invitation to participate in a survey','Dear {FIRSTNAME},
\n
\nyou have been invited to participate in a survey.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}
\n
\nIf you are blacklisted but want to participate in this survey and want to receive invitations please click the following link:
\n{OPTINURL}','Reminder to participate in a survey','Dear {FIRSTNAME},
\n
\nRecently we invited you to participate in a survey.
\n
\nWe note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}','Survey registration confirmation','Dear {FIRSTNAME},
\n
\nYou, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.
\n
\nTo complete this survey, click on the following URL:
\n
\n{SURVEYURL}
\n
\nIf you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of your participation in our survey','Dear {FIRSTNAME},
\n
\nthis email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.
\n
\nIf you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.
\n
\nSincerely,
\n
\n{ADMINNAME}',6,NULL,'Response submission for survey {SURVEYNAME}','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}','Response submission for survey {SURVEYNAME} with results','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}
\n
\n
\nThe following answers were given by the participant:
\n{ANSWERTABLE}',0,NULL); +/*!40000 ALTER TABLE `limesurvey_surveys_languagesettings` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_template_configuration` +-- + +DROP TABLE IF EXISTS `limesurvey_template_configuration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_template_configuration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `template_name` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL, + `sid` int(11) DEFAULT NULL, + `gsid` int(11) DEFAULT NULL, + `uid` int(11) DEFAULT NULL, + `files_css` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `files_js` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `files_print_css` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `options` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `cssframework_name` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `cssframework_css` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `cssframework_js` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `packages_to_load` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `packages_ltr` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `packages_rtl` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `limesurvey_idx1_template_configuration` (`template_name`), + KEY `limesurvey_idx2_template_configuration` (`sid`), + KEY `limesurvey_idx3_template_configuration` (`gsid`), + KEY `limesurvey_idx4_template_configuration` (`uid`) +) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_template_configuration` +-- + +LOCK TABLES `limesurvey_template_configuration` WRITE; +/*!40000 ALTER TABLE `limesurvey_template_configuration` DISABLE KEYS */; +INSERT INTO `limesurvey_template_configuration` VALUES (1,'vanilla',NULL,NULL,NULL,'{\"add\":[\"css/ajaxify.css\",\"css/theme.css\",\"css/custom.css\"]}','{\"add\":[\"scripts/theme.js\",\"scripts/ajaxify.js\",\"scripts/custom.js\"]}','{\"add\":[\"css/print_theme.css\"]}','{\"ajaxmode\":\"off\",\"brandlogo\":\"on\",\"container\":\"on\", \"hideprivacyinfo\": \"off\", \"brandlogofile\":\"./files/logo.png\",\"font\":\"noto\"}','bootstrap','{}','','{\"add\":[\"pjax\",\"font-noto\",\"moment\"]}',NULL,NULL),(2,'fruity',NULL,NULL,NULL,'{\"add\":[\"css/ajaxify.css\",\"css/animate.css\",\"css/theme.css\",\"css/custom.css\",\"css/variations/skyline_blue.css\"]}','{\"add\":[\"scripts/theme.js\",\"scripts/ajaxify.js\",\"scripts/custom.js\"]}','{\"add\":[\"css/print_theme.css\"]}','{\"ajaxmode\":\"off\",\"brandlogo\":\"on\",\"brandlogofile\":\"upload/themes/survey/generalfiles/5p0i8p7png554y2rkdwdm9ngv40dg16s-nixos-lores.png\",\"container\":\"on\",\"backgroundimage\":\"off\",\"backgroundimagefile\":null,\"animatebody\":\"off\",\"bodyanimation\":\"fadeInRight\",\"bodyanimationduration\":\"500\",\"animatequestion\":\"off\",\"questionanimation\":\"flipInX\",\"questionanimationduration\":\"500\",\"animatealert\":\"off\",\"alertanimation\":\"shake\",\"alertanimationduration\":\"500\",\"font\":\"noto\",\"bodybackgroundcolor\":\"#ffffff\",\"fontcolor\":\"#444444\",\"questionbackgroundcolor\":\"#ffffff\",\"questionborder\":\"on\",\"questioncontainershadow\":\"on\",\"checkicon\":\"f00c\",\"animatecheckbox\":\"on\",\"checkboxanimation\":\"rubberBand\",\"checkboxanimationduration\":\"500\",\"animateradio\":\"on\",\"radioanimation\":\"zoomIn\",\"radioanimationduration\":\"500\",\"zebrastriping\":\"off\",\"stickymatrixheaders\":\"off\",\"greyoutselected\":\"off\",\"hideprivacyinfo\":\"off\",\"crosshover\":\"off\",\"showpopups\":\"1\",\"fixnumauto\":\"off\"}','bootstrap','{}','','{\"add\":[\"pjax\",\"font-noto\",\"moment\"]}',NULL,NULL),(3,'bootswatch',NULL,NULL,NULL,'{\"add\":[\"css/ajaxify.css\",\"css/theme.css\",\"css/custom.css\"]}','{\"add\":[\"scripts/theme.js\",\"scripts/ajaxify.js\",\"scripts/custom.js\"]}','{\"add\":[\"css/print_theme.css\"]}','{\"ajaxmode\":\"off\",\"brandlogo\":\"on\",\"container\":\"on\",\"brandlogofile\":\"./files/logo.png\"}','bootstrap','{\"replace\":[[\"css/bootstrap.css\",\"css/variations/flatly.min.css\"]]}','','{\"add\":[\"pjax\",\"font-noto\",\"moment\"]}',NULL,NULL),(4,'fruity',556787,NULL,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL),(5,'fruity',NULL,1,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL),(6,'fruity',934921,NULL,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL),(7,'fruity',171737,NULL,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL),(8,'fruity',987549,NULL,NULL,'{\"add\":[\"css/ajaxify.css\",\"css/animate.css\",\"css/theme.css\",\"css/custom.css\",\"css/variations/black_pearl.css\"]}','inherit','inherit','{\"font\":\"inherit\",\"bodybackgroundcolor\":\"inherit\",\"fontcolor\":\"#474747\",\"questionbackgroundcolor\":\"inherit\",\"checkicon\":\"inherit\",\"backgroundimagefile\":\"inherit\",\"brandlogofile\":\"upload/themes/survey/generalfiles/5p0i8p7png554y2rkdwdm9ngv40dg16s-nixos-lores.png\",\"bodyanimation\":\"inherit\",\"bodyanimationduration\":\"inherit\",\"questionanimation\":\"inherit\",\"questionanimationduration\":\"inherit\",\"alertanimation\":\"inherit\",\"alertanimationduration\":\"inherit\",\"checkboxanimation\":\"inherit\",\"checkboxanimationduration\":\"inherit\",\"radioanimation\":\"inherit\",\"radioanimationduration\":\"inherit\",\"container\":\"inherit\",\"questionborder\":\"inherit\",\"questioncontainershadow\":\"inherit\",\"showpopups\":\"inherit\",\"fixnumauto\":\"inherit\",\"zebrastriping\":\"inherit\",\"stickymatrixheaders\":\"inherit\",\"greyoutselected\":\"inherit\",\"hideprivacyinfo\":\"inherit\",\"crosshover\":\"inherit\",\"backgroundimage\":\"inherit\",\"brandlogo\":\"on\",\"animatebody\":\"inherit\",\"animatequestion\":\"inherit\",\"animatealert\":\"inherit\",\"animatecheckbox\":\"inherit\",\"animateradio\":\"inherit\"}','inherit','inherit','inherit','inherit',NULL,NULL),(9,'fruity',2022,NULL,NULL,'{\"add\":[\"css/ajaxify.css\",\"css/animate.css\",\"css/theme.css\",\"css/custom.css\",\"css/variations/black_pearl.css\"]}','inherit','inherit','{\"font\":\"inherit\",\"bodybackgroundcolor\":\"inherit\",\"fontcolor\":\"#474747\",\"questionbackgroundcolor\":\"inherit\",\"checkicon\":\"inherit\",\"backgroundimagefile\":\"inherit\",\"brandlogofile\":\"upload/themes/survey/generalfiles/5p0i8p7png554y2rkdwdm9ngv40dg16s-nixos-lores.png\",\"bodyanimation\":\"inherit\",\"bodyanimationduration\":\"inherit\",\"questionanimation\":\"inherit\",\"questionanimationduration\":\"inherit\",\"alertanimation\":\"inherit\",\"alertanimationduration\":\"inherit\",\"checkboxanimation\":\"inherit\",\"checkboxanimationduration\":\"inherit\",\"radioanimation\":\"inherit\",\"radioanimationduration\":\"inherit\",\"container\":\"inherit\",\"questionborder\":\"inherit\",\"questioncontainershadow\":\"inherit\",\"showpopups\":\"inherit\",\"fixnumauto\":\"inherit\",\"zebrastriping\":\"inherit\",\"stickymatrixheaders\":\"inherit\",\"greyoutselected\":\"inherit\",\"hideprivacyinfo\":\"inherit\",\"crosshover\":\"inherit\",\"backgroundimage\":\"inherit\",\"brandlogo\":\"on\",\"animatebody\":\"inherit\",\"animatequestion\":\"inherit\",\"animatealert\":\"inherit\",\"animatecheckbox\":\"inherit\",\"animateradio\":\"inherit\"}','inherit','inherit','inherit','inherit',NULL,NULL),(10,'fruity',2023,NULL,NULL,'inherit','inherit','inherit','{\"font\":\"inherit\",\"bodybackgroundcolor\":\"inherit\",\"fontcolor\":\"#474747\",\"questionbackgroundcolor\":\"inherit\",\"checkicon\":\"inherit\",\"backgroundimagefile\":\"inherit\",\"brandlogofile\":\"upload\\/themes\\/survey\\/generalfiles\\/5p0i8p7png554y2rkdwdm9ngv40dg16s-nixos-lores.png\",\"bodyanimation\":\"inherit\",\"bodyanimationduration\":\"inherit\",\"questionanimation\":\"inherit\",\"questionanimationduration\":\"inherit\",\"alertanimation\":\"inherit\",\"alertanimationduration\":\"inherit\",\"checkboxanimation\":\"inherit\",\"checkboxanimationduration\":\"inherit\",\"radioanimation\":\"inherit\",\"radioanimationduration\":\"inherit\",\"container\":\"inherit\",\"questionborder\":\"inherit\",\"questioncontainershadow\":\"inherit\",\"showpopups\":\"inherit\",\"fixnumauto\":\"inherit\",\"zebrastriping\":\"inherit\",\"stickymatrixheaders\":\"inherit\",\"greyoutselected\":\"inherit\",\"hideprivacyinfo\":\"inherit\",\"crosshover\":\"inherit\",\"backgroundimage\":\"inherit\",\"brandlogo\":\"on\",\"animatebody\":\"inherit\",\"animatequestion\":\"inherit\",\"animatealert\":\"inherit\",\"animatecheckbox\":\"inherit\",\"animateradio\":\"inherit\"}','inherit','inherit','inherit','inherit',NULL,NULL),(11,'vanilla',2023,NULL,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL),(12,'vanilla',NULL,1,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL),(13,'fruity',239157,NULL,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL),(14,'fruity',346552,NULL,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL),(15,'fruity',964172,NULL,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL),(16,'fruity',248687,NULL,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL),(17,'fruity',2024,NULL,NULL,'inherit','inherit','inherit','{\"font\":\"inherit\",\"bodybackgroundcolor\":\"inherit\",\"fontcolor\":\"#474747\",\"questionbackgroundcolor\":\"inherit\",\"checkicon\":\"inherit\",\"backgroundimagefile\":\"inherit\",\"brandlogofile\":\"upload\\/themes\\/survey\\/generalfiles\\/5p0i8p7png554y2rkdwdm9ngv40dg16s-nixos-lores.png\",\"bodyanimation\":\"inherit\",\"bodyanimationduration\":\"inherit\",\"questionanimation\":\"inherit\",\"questionanimationduration\":\"inherit\",\"alertanimation\":\"inherit\",\"alertanimationduration\":\"inherit\",\"checkboxanimation\":\"inherit\",\"checkboxanimationduration\":\"inherit\",\"radioanimation\":\"inherit\",\"radioanimationduration\":\"inherit\",\"container\":\"inherit\",\"questionborder\":\"inherit\",\"questioncontainershadow\":\"inherit\",\"showpopups\":\"inherit\",\"fixnumauto\":\"inherit\",\"zebrastriping\":\"inherit\",\"stickymatrixheaders\":\"inherit\",\"greyoutselected\":\"inherit\",\"hideprivacyinfo\":\"inherit\",\"crosshover\":\"inherit\",\"backgroundimage\":\"inherit\",\"brandlogo\":\"on\",\"animatebody\":\"inherit\",\"animatequestion\":\"inherit\",\"animatealert\":\"inherit\",\"animatecheckbox\":\"inherit\",\"animateradio\":\"inherit\"}','inherit','inherit','inherit','inherit',NULL,NULL),(18,'vanilla',2024,NULL,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL); +/*!40000 ALTER TABLE `limesurvey_template_configuration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_templates` +-- + +DROP TABLE IF EXISTS `limesurvey_templates`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_templates` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL, + `folder` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, + `creation_date` datetime DEFAULT NULL, + `author` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `author_email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `author_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `copyright` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `license` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `version` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `api_version` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL, + `view_folder` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL, + `files_folder` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL, + `description` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `owner_id` int(11) DEFAULT NULL, + `extends` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `limesurvey_idx1_templates` (`name`), + KEY `limesurvey_idx2_templates` (`title`), + KEY `limesurvey_idx3_templates` (`owner_id`), + KEY `limesurvey_idx4_templates` (`extends`) +) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_templates` +-- + +LOCK TABLES `limesurvey_templates` WRITE; +/*!40000 ALTER TABLE `limesurvey_templates` DISABLE KEYS */; +INSERT INTO `limesurvey_templates` VALUES (1,'vanilla','vanilla','Vanilla Theme','2022-02-02 21:47:15','Louis Gac','louis.gac@limesurvey.org','https://www.limesurvey.org/','Copyright (C) 2007-2017 The LimeSurvey Project Team\\r\\nAll rights reserved.','License: GNU/GPL License v2 or later, see LICENSE.php\\r\\n\\r\\nLimeSurvey is free software. This version may have been modified pursuant to the GNU General Public License, and as distributed it includes or is derivative of works licensed under the GNU General Public License or other free or open source software licenses. See COPYRIGHT.php for copyright notices and details.','3.0','3.0','views','files','LimeSurvey Bootstrap Vanilla Survey Theme
A clean and simple base that can be used by developers to create their own Bootstrap based theme.',NULL,1,''),(2,'fruity','fruity','Fruity Theme','2022-02-02 21:47:15','Louis Gac','louis.gac@limesurvey.org','https://www.limesurvey.org/','Copyright (C) 2007-2017 The LimeSurvey Project Team\\r\\nAll rights reserved.','License: GNU/GPL License v2 or later, see LICENSE.php\\r\\n\\r\\nLimeSurvey is free software. This version may have been modified pursuant to the GNU General Public License, and as distributed it includes or is derivative of works licensed under the GNU General Public License or other free or open source software licenses. See COPYRIGHT.php for copyright notices and details.','3.0','3.0','views','files','LimeSurvey Fruity Theme
A fruity theme for a flexible use. This theme offers monochromes variations and many options for easy customizations.',NULL,1,'vanilla'),(3,'bootswatch','bootswatch','Bootswatch Theme','2022-02-02 21:47:15','Louis Gac','louis.gac@limesurvey.org','https://www.limesurvey.org/','Copyright (C) 2007-2017 The LimeSurvey Project Team\\r\\nAll rights reserved.','License: GNU/GPL License v2 or later, see LICENSE.php\\r\\n\\r\\nLimeSurvey is free software. This version may have been modified pursuant to the GNU General Public License, and as distributed it includes or is derivative of works licensed under the GNU General Public License or other free or open source software licenses. See COPYRIGHT.php for copyright notices and details.','3.0','3.0','views','files','LimeSurvey Bootwatch Theme
Based on BootsWatch Themes: Visit BootsWatch page ',NULL,1,'vanilla'); +/*!40000 ALTER TABLE `limesurvey_templates` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_tutorial_entries` +-- + +DROP TABLE IF EXISTS `limesurvey_tutorial_entries`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_tutorial_entries` ( + `teid` int(11) NOT NULL AUTO_INCREMENT, + `ordering` int(11) DEFAULT NULL, + `title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `content` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `settings` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`teid`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_tutorial_entries` +-- + +LOCK TABLES `limesurvey_tutorial_entries` WRITE; +/*!40000 ALTER TABLE `limesurvey_tutorial_entries` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_tutorial_entries` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_tutorial_entry_relation` +-- + +DROP TABLE IF EXISTS `limesurvey_tutorial_entry_relation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_tutorial_entry_relation` ( + `teid` int(11) NOT NULL, + `tid` int(11) NOT NULL, + `uid` int(11) DEFAULT NULL, + `sid` int(11) DEFAULT NULL, + PRIMARY KEY (`teid`,`tid`), + KEY `limesurvey_idx1_tutorial_entry_relation` (`uid`), + KEY `limesurvey_idx2_tutorial_entry_relation` (`sid`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_tutorial_entry_relation` +-- + +LOCK TABLES `limesurvey_tutorial_entry_relation` WRITE; +/*!40000 ALTER TABLE `limesurvey_tutorial_entry_relation` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_tutorial_entry_relation` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_tutorials` +-- + +DROP TABLE IF EXISTS `limesurvey_tutorials`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_tutorials` ( + `tid` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `title` varchar(192) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `icon` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `active` int(11) DEFAULT 0, + `settings` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `permission` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, + `permission_grade` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`tid`), + UNIQUE KEY `limesurvey_idx1_tutorials` (`name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_tutorials` +-- + +LOCK TABLES `limesurvey_tutorials` WRITE; +/*!40000 ALTER TABLE `limesurvey_tutorials` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_tutorials` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_user_groups` +-- + +DROP TABLE IF EXISTS `limesurvey_user_groups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_user_groups` ( + `ugid` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, + `description` text COLLATE utf8mb4_unicode_ci NOT NULL, + `owner_id` int(11) NOT NULL, + PRIMARY KEY (`ugid`), + UNIQUE KEY `limesurvey_idx1_user_groups` (`name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_user_groups` +-- + +LOCK TABLES `limesurvey_user_groups` WRITE; +/*!40000 ALTER TABLE `limesurvey_user_groups` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_user_groups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_user_in_groups` +-- + +DROP TABLE IF EXISTS `limesurvey_user_in_groups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_user_in_groups` ( + `ugid` int(11) NOT NULL, + `uid` int(11) NOT NULL, + PRIMARY KEY (`ugid`,`uid`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_user_in_groups` +-- + +LOCK TABLES `limesurvey_user_in_groups` WRITE; +/*!40000 ALTER TABLE `limesurvey_user_in_groups` DISABLE KEYS */; +/*!40000 ALTER TABLE `limesurvey_user_in_groups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `limesurvey_users` +-- + +DROP TABLE IF EXISTS `limesurvey_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `limesurvey_users` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `users_name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `password` text COLLATE utf8mb4_unicode_ci NOT NULL, + `full_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, + `parent_id` int(11) NOT NULL, + `lang` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `email` varchar(192) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `htmleditormode` varchar(7) COLLATE utf8mb4_unicode_ci DEFAULT 'default', + `templateeditormode` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', + `questionselectormode` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', + `one_time_pw` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `dateformat` int(11) NOT NULL DEFAULT 1, + `created` datetime DEFAULT NULL, + `modified` datetime DEFAULT NULL, + PRIMARY KEY (`uid`), + UNIQUE KEY `limesurvey_idx1_users` (`users_name`), + KEY `limesurvey_idx2_users` (`email`) +) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `limesurvey_users` +-- + +LOCK TABLES `limesurvey_users` WRITE; +/*!40000 ALTER TABLE `limesurvey_users` DISABLE KEYS */; +INSERT INTO `limesurvey_users` VALUES (1,'admin','$2y$10$PECcneHfrMp9zI5htuHElOHvsut.tVUABmZ9YrQ2QcCG7Ja.IY7PC','admin',0,'auto','webmaster@nixos.org','default','default','default',NULL,1,NULL,'2023-05-10 21:52:36'),(10,'ron','$2y$10$zt9vzJ6ETKbULIUKokJMquZIIxQeU.7N09OSrkYojb.M3BOyOXl4a','Ron Efroni',1,'auto','ron@floxdev.com','default','default','default',NULL,1,'2023-09-22 18:37:59','2023-09-22 22:47:35'),(9,'tomberek','$2y$10$hdCjtYADf01akso6NMqRK.T0gfCKZGxlDc3I73hZu8svWPmN1QsDC','Tom Bereknyei',1,'auto','tomberek@gmail.com','default','default','default',NULL,1,'2023-09-22 18:30:47','2023-09-22 18:39:13'),(8,'andir','$2y$10$o5GDywqNYpO3Bp07J.81nO54CyO6xt12mXB5hR9tK5PbsGfQt9xMC','Andreas Rammhold',1,'auto','andreas@rammhold.de','default','default','default',NULL,1,'2023-09-09 09:50:06','2023-09-09 12:50:48'),(7,'gdesforges','$2y$10$rztO/P2S47j2qVpn64MTPerNsuhe/sVpLIhhdPEiXgiOoywwXs2iu','Guillaume Desforges',1,'auto','guillaume.desforges.pro@gmail.com','default','default','default',NULL,1,'2023-06-01 11:21:08','2023-07-11 21:12:20'),(6,'Kranzes','$2y$10$SUaUMOEs9rWU4.jlfc0Gm.iIdnU99in84/u.Bz4rSbxveSmukIhnq','Ilan Joselevich',1,'auto','personal@ilanjoselevich.com','default','default','default',NULL,1,'2023-05-10 21:56:22','2023-12-01 01:46:45'),(11,'ksaunders','$2y$10$ruGYSeo.rnvhKjBNamUHge6p0ci.psrOT1bnJyI54qXce7DkHcokO','Katherine Saunders',1,'auto','katherine@floxdev.com','default','default','default',NULL,1,'2023-09-22 22:59:26','2023-09-22 22:59:45'),(12,'fricklerhandwerk','$2y$10$6DzRxAGAoNGWrkpBf6QxU.F9/5esyc/kbMTqfh33CJgafgY1O4l1C','Valentin Gagarin',1,'auto','valentin@gagarin.work','default','default','default',NULL,1,'2024-02-13 11:27:00','2024-02-13 11:41:49'),(13,'djacu','$2y$10$Pw1CXp6MrjfS23cQ674epeiXBQVj5uUW6gIEpNq4kgERKKRJa/z62','Daniel Baker',1,'auto','daniel.n.baker@gmail.com','default','default','default',NULL,1,'2024-02-28 21:52:42','2024-02-28 21:54:23'); +/*!40000 ALTER TABLE `limesurvey_users` ENABLE KEYS */; +UNLOCK TABLES; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2024-07-15 14:02:01 From cfed31eb980a0167a0539880e14b3c7698f0703e Mon Sep 17 00:00:00 2001 From: Julien Malka Date: Mon, 15 Jul 2024 14:00:35 +0200 Subject: [PATCH 2/2] update survey.nixos.org DNS record --- terraform/db-dump.sql | 2748 ----------------------------------------- terraform/dns.tf | 12 +- 2 files changed, 1 insertion(+), 2759 deletions(-) delete mode 100644 terraform/db-dump.sql diff --git a/terraform/db-dump.sql b/terraform/db-dump.sql deleted file mode 100644 index e52bd67..0000000 --- a/terraform/db-dump.sql +++ /dev/null @@ -1,2748 +0,0 @@ --- MariaDB dump 10.19 Distrib 10.6.5-MariaDB, for Linux (x86_64) --- --- Host: localhost Database: limesurvey --- ------------------------------------------------------ --- Server version 10.6.5-MariaDB - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `limesurvey_answers` --- - -DROP TABLE IF EXISTS `limesurvey_answers`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_answers` ( - `qid` int(11) NOT NULL, - `code` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL, - `answer` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, - `sortorder` int(11) NOT NULL, - `assessment_value` int(11) NOT NULL DEFAULT 0, - `language` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', - `scale_id` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`qid`,`code`,`language`,`scale_id`), - KEY `limesurvey_answers_idx2` (`sortorder`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_answers` --- - -LOCK TABLES `limesurvey_answers` WRITE; -/*!40000 ALTER TABLE `limesurvey_answers` DISABLE KEYS */; -INSERT INTO `limesurvey_answers` VALUES (846,'A4','Could not',4,0,'en',0),(824,'A3','Partially',3,0,'en',0),(824,'A2','No',2,0,'en',0),(824,'A1','Yes',1,0,'en',0),(813,'A3','Both',3,0,'en',0),(813,'A2','Private',2,0,'en',0),(813,'A1','Professional',1,0,'en',0),(812,'A7','7 (or more)',7,0,'en',0),(812,'A1','1',1,0,'en',0),(812,'A2','2',2,0,'en',0),(812,'A3','3',3,0,'en',0),(812,'A4','4',4,0,'en',0),(812,'A5','5',5,0,'en',0),(812,'A6','6',6,0,'en',0),(846,'A3','Do not prefer',3,0,'en',0),(810,'A7','>16 hours',7,0,'en',0),(810,'A6','<16 hours',6,0,'en',0),(810,'A1','<1 hour',1,0,'en',0),(810,'A2','<3 hours',2,0,'en',0),(810,'A3','<6 hours',3,0,'en',0),(810,'A4','<9 hours',4,0,'en',0),(810,'A5','<12 hours',5,0,'en',0),(664,'A25','Other',25,0,'en',0),(664,'A26','Nim',24,0,'en',0),(799,'A25','Other',25,0,'en',0),(799,'A26','Nim',24,0,'en',0),(799,'A24','Elixir',23,0,'en',0),(664,'A20','Clojure',19,0,'en',0),(664,'A21','R',20,0,'en',0),(799,'A8','Swift',8,0,'en',0),(799,'A9','Go',9,0,'en',0),(799,'A10','PHP',10,0,'en',0),(799,'A11','Scala',11,0,'en',0),(799,'A12','F#',12,0,'en',0),(764,'A7','I don\'t use channels',7,0,'en',0),(664,'A2','Python',2,0,'en',0),(664,'A1','JavaScript (TypeScript, ...)',1,0,'en',0),(664,'A24','Elixir',23,0,'en',0),(655,'A11','Other',11,0,'en',0),(658,'A8','Oceania',8,0,'en',0),(800,'A1','I just use software with Nix ',1,0,'en',0),(800,'A2','I develop software with Nix',2,0,'en',0),(800,'A3','I contribute packages or patches to Nixpkgs',3,0,'en',0),(800,'A4','I actively maintain packages in Nixpkgs',4,0,'en',0),(800,'A5','I have merge access to Nixpkgs',5,0,'en',0),(800,'A6','I develop a tool based on or integrating with Nix',6,0,'en',0),(799,'A23','Erlang',22,0,'en',0),(799,'A13','Haskell',13,0,'en',0),(799,'A7','Ruby',7,0,'en',0),(799,'A6','C#',6,0,'en',0),(799,'A5','Java',5,0,'en',0),(799,'A4','C++',4,0,'en',0),(799,'A3','C',3,0,'en',0),(799,'A2','Python',2,0,'en',0),(799,'A1','JavaScript (TypeScript, ...)',1,0,'en',0),(799,'A22','Zig',21,0,'en',0),(799,'A21','R',20,0,'en',0),(799,'A20','Clojure',19,0,'en',0),(799,'A19','Kotlin',18,0,'en',0),(799,'A18','Perl',17,0,'en',0),(799,'A17','Lua',16,0,'en',0),(799,'A15','Rust',15,0,'en',0),(799,'A14','OCaml',14,0,'en',0),(664,'A6','C#',6,0,'en',0),(664,'A7','Ruby',7,0,'en',0),(664,'A8','Swift',8,0,'en',0),(664,'A9','Go',9,0,'en',0),(664,'A10','PHP',10,0,'en',0),(664,'A11','Scala',11,0,'en',0),(664,'A12','F#',12,0,'en',0),(664,'A13','Haskell',13,0,'en',0),(664,'A14','OCaml',14,0,'en',0),(664,'A15','Rust',15,0,'en',0),(664,'A17','Lua',16,0,'en',0),(664,'A18','Perl',17,0,'en',0),(664,'A19','Kotlin',18,0,'en',0),(664,'A3','C',3,0,'en',0),(664,'A4','C++',4,0,'en',0),(656,'A12','Stabilise content-addressed derivations',12,0,'en',0),(656,'A13','Improvements to the Nix language',13,0,'en',0),(656,'A14','Better learning resources',14,0,'en',0),(656,'A15','Other',15,0,'en',0),(664,'A23','Erlang',22,0,'en',0),(664,'A22','Zig',21,0,'en',0),(664,'A5','Java',5,0,'en',0),(656,'A1','IPFS support',1,0,'en',0),(656,'A2','Granular incremental builds',2,0,'en',0),(656,'A3','Better programming language support for packaging',3,0,'en',0),(656,'A4','Better error messages',4,0,'en',0),(656,'A5','Better documentation',5,0,'en',0),(656,'A6','First class support for secrets',6,0,'en',0),(656,'A7','First class support for permissions (ACLs, ...)',7,0,'en',0),(656,'A8','Stabilise Flakes',8,0,'en',0),(656,'A9','Stabilise new command line interface',9,0,'en',0),(656,'A10','Windows support',10,0,'en',0),(656,'A11','Dynamic build graphs (RFC 92, recursive Nix, ...)',11,0,'en',0),(655,'A10','Package configurability',10,0,'en',0),(655,'A9','Binary cache',9,0,'en',0),(655,'A5','Source distribution',8,0,'en',0),(655,'A8','Building container images',7,0,'en',0),(655,'A7','Atomic deployment and rollback',6,0,'en',0),(655,'A6','Cross-platform support',5,0,'en',0),(655,'A4','Distributed builds',4,0,'en',0),(655,'A3','Ad hoc environments (nix-shell, nix develop)',3,0,'en',0),(655,'A1','Package availability (Nixpkgs)',1,0,'en',0),(655,'A2','Declarative environments (shell.nix, flake.nix)',2,0,'en',0),(764,'A6','nixpkgs-(release)-darwin',6,0,'en',0),(764,'A5','nixos-(release)-small',5,0,'en',0),(523,'A1','Less than 6 months',1,0,'en',0),(523,'A2','6 months - 1 year',2,0,'en',0),(523,'A3','1 year - 3 years',3,0,'en',0),(523,'A4','3-6 years',4,0,'en',0),(523,'A5','6-10 years',5,0,'en',0),(523,'A6','10+ years',6,0,'en',0),(518,'A4','Occasionally',4,0,'en',0),(518,'A3','Monthly',3,0,'en',0),(518,'A2','Weekly',2,0,'en',0),(518,'A1','Daily',1,0,'en',0),(520,'A1','Less than 6 months',1,0,'en',0),(520,'A2','6 months - 1 year',2,0,'en',0),(520,'A3','1 year - 3 years',3,0,'en',0),(521,'A4','Occasionally',4,0,'en',0),(521,'A3','Monthly',3,0,'en',0),(521,'A2','Weekly',2,0,'en',0),(521,'A1','Daily',1,0,'en',0),(504,'fem','Female',1,0,'en',0),(504,'male','Male',2,0,'en',0),(528,'A1','East Asia and Pacific',1,0,'en',0),(503,'A4','35-44 years',4,0,'en',0),(503,'A3','25-34 years',3,0,'en',0),(503,'A2','15-24 years',2,0,'en',0),(503,'A6','55-64 years',6,0,'en',0),(503,'A5','45-54 years',5,0,'en',0),(528,'A2','Europe and Central Asia',2,0,'en',0),(503,'A7','65+ years',7,0,'en',0),(528,'A7','Sub-Saharan Africa',7,0,'en',0),(528,'A6','South Asia',6,0,'en',0),(528,'A5','North America',5,0,'en',0),(528,'A4','Middle East and North Africa',4,0,'en',0),(528,'A3','Latin America and the Caribbean',3,0,'en',0),(503,'A1','5-14 years',1,0,'en',0),(520,'A4','3-6 years',4,0,'en',0),(520,'A5','6-10 years',5,0,'en',0),(520,'A6','10+ years',6,0,'en',0),(1147,'A21','Source code (C++ Nix)',21,0,'en',0),(1147,'A22','Discourse conversations',22,0,'en',0),(1147,'A23','Press information',23,0,'en',0),(1147,'A24','Reviews and testimonials',24,0,'en',0),(1147,'A25','Community updates',25,0,'en',0),(1147,'A26','Lore, jokes, memes',26,0,'en',0),(1147,'A27','Release notes',27,0,'en',0),(1147,'A28','Additional tools',28,0,'en',0),(1147,'A29','Job postings',29,0,'en',0),(1147,'A30','Paid support offers',30,0,'en',0),(1148,'A15','Others',15,0,'en',0),(1147,'A1','Package search (package names, program names)',1,0,'en',0),(1147,'A2','NixOS option search (option names, option documentation)',2,0,'en',0),(1147,'A3','NixOS configuration examples',3,0,'en',0),(1147,'A4','Package examples',4,0,'en',0),(1147,'A5','Package parameters',5,0,'en',0),(1147,'A6','Development environments',6,0,'en',0),(1147,'A7','nix.dev',7,0,'en',0),(1146,'A12','Searching (e.g. on Google)',12,0,'en',0),(1146,'A11','Academic Research (referenced in paper, conference talk)',11,0,'en',0),(1146,'A10','On a blog',10,0,'en',0),(1146,'A1','At work',1,0,'en',0),(883,'f2','Woman',2,0,'en',0),(1146,'A2','In my education (School/University/...)',2,0,'en',0),(1146,'A3','From a friend',3,0,'en',0),(1146,'A4','YouTube',4,0,'en',0),(1146,'A5','Reddit',5,0,'en',0),(1146,'A6','Hacker News',6,0,'en',0),(1146,'A7','Twitter/X',7,0,'en',0),(1146,'A8','LinkedIn',8,0,'en',0),(1146,'A9','Other social media',9,0,'en',0),(882,'A5','45-54 years old',5,0,'en',0),(907,'A11','Eastern Europe',11,0,'en',0),(907,'A12','Western Europe',12,0,'en',0),(907,'A13','Middle East',13,0,'en',0),(907,'A14','Northern Africa',14,0,'en',0),(907,'A15','Southern Africa',15,0,'en',0),(907,'A16','Prefer not to respond',16,0,'en',0),(883,'f4','Prefer not to respond',4,0,'en',0),(882,'A6','55-64 years old',6,0,'en',0),(882,'A7','65 years or older',7,0,'en',0),(882,'A8','Prefer not to respond',8,0,'en',0),(883,'f3','Non-binary/non-conforming',3,0,'en',0),(907,'A10','Southern Europe',10,0,'en',0),(883,'f1','Man',1,0,'en',0),(1145,'A2','NixOS',2,0,'en',0),(1142,'A2','No',2,0,'en',0),(1145,'A1','Nix',1,0,'en',0),(1142,'A1','Yes',1,0,'en',0),(1141,'A1','I have never used Nix',1,0,'en',0),(1141,'A2','Beginner',2,0,'en',0),(1141,'A3','Intermediate',3,0,'en',0),(1141,'A4','Advanced',4,0,'en',0),(1140,'A1','I don\'t use Nix',1,0,'en',0),(1140,'A2','Less than 1 year',2,0,'en',0),(1140,'A3','1 to 2 years',3,0,'en',0),(1140,'A4','2 to 3 years',4,0,'en',0),(1140,'A5','3 to 5 years',5,0,'en',0),(1140,'A6','5 to 10 years',6,0,'en',0),(1140,'A7','10 to 20 years',7,0,'en',0),(885,'A13','Cloud infrastructure engineer',13,0,'en',0),(885,'A14','Data scientist or machine learning specialist',14,0,'en',0),(885,'A15','Data or business analyst',15,0,'en',0),(885,'A16','System administrator',16,0,'en',0),(885,'A17','Database administrator',17,0,'en',0),(885,'A18','Security professional',18,0,'en',0),(885,'A19','Academic researcher',19,0,'en',0),(885,'A20','Research & development role',20,0,'en',0),(885,'A21','Scientist',21,0,'en',0),(885,'A22','Educator',22,0,'en',0),(885,'A23','Project manager',23,0,'en',0),(885,'A24','Engineering manager',24,0,'en',0),(885,'A25','Senior executive (C-suite, VP, etc.)',25,0,'en',0),(885,'A26','Product manager',26,0,'en',0),(885,'A27','Developer experience',27,0,'en',0),(885,'A28','Developer advocate',28,0,'en',0),(885,'A29','User experience',29,0,'en',0),(885,'A30','Designer',30,0,'en',0),(885,'A31','Marketing or sales professional',31,0,'en',0),(885,'A32','Student',32,0,'en',0),(885,'A1','Developer, full-stack',1,0,'en',0),(885,'A2','Developer, back-end',2,0,'en',0),(885,'A3','Developer, front-end',3,0,'en',0),(885,'A4','Developer, desktop or enterprise applications',4,0,'en',0),(885,'A5','Developer, mobile',5,0,'en',0),(885,'A6','Developer, embedded applications or devices',6,0,'en',0),(885,'A7','Developer, quality assurance or testing',7,0,'en',0),(885,'A8','Developer, game or graphics',8,0,'en',0),(885,'A9','Engineer, hardware',9,0,'en',0),(885,'A10','Engineer, data',10,0,'en',0),(885,'A11','Engineer, site reliability',11,0,'en',0),(885,'A12','DevOps specialist',12,0,'en',0),(884,'A1','I never programmed',1,0,'en',0),(884,'A2','Less than 1 year',2,0,'en',0),(884,'A3','1 to 4 years',3,0,'en',0),(884,'A4','5 to 9 years',4,0,'en',0),(884,'A5','10 to 24 years',5,0,'en',0),(884,'A6','25 to 49 years',6,0,'en',0),(884,'A7','More than 50 years',7,0,'en',0),(907,'A9','Northern Europe',9,0,'en',0),(882,'A4','35-44 years old',4,0,'en',0),(882,'A3','25-34 years old',3,0,'en',0),(882,'A1','0-18 years old',1,0,'en',0),(882,'A2','18-24 years old',2,0,'en',0),(907,'A1','North America',1,0,'en',0),(907,'A2','South America',2,0,'en',0),(907,'A3','Central America',3,0,'en',0),(907,'A4','Caribbean',4,0,'en',0),(907,'A5','Central & South Asia',5,0,'en',0),(907,'A6','Northeastern Asia',6,0,'en',0),(907,'A7','Southeastern Asia',7,0,'en',0),(907,'A8','Australia and Oceania',8,0,'en',0),(881,'A1','> 10 years',1,0,'en',0),(881,'A2','5 - 10 years',2,0,'en',0),(1161,'A6','Almost never',6,0,'en',0),(1161,'A5','Sometimes',5,0,'en',0),(1161,'A4','Half of the time',4,0,'en',0),(1161,'A1','Every time',1,0,'en',0),(1161,'A2','Almost every time',2,0,'en',0),(1161,'A3','Most of the time',3,0,'en',0),(1148,'A9','Twitter',9,0,'en',0),(1148,'A10','Stack Overflow',10,0,'en',0),(1148,'A11','Discord (unofficial)',11,0,'en',0),(1148,'A12','Reddit (unofficial)',12,0,'en',0),(1148,'A13','Wiki (nixos.wiki, unofficial)',13,0,'en',0),(1148,'A1','nix.dev',1,0,'en',0),(1148,'A2','Reference manuals (Nix/Nixpkgs/NixOS)',2,0,'en',0),(1148,'A3','NixOS Wiki (wiki.nixos.org, official)',3,0,'en',0),(1148,'A4','Discourse',4,0,'en',0),(1148,'A5','Matrix channels',5,0,'en',0),(1148,'A6','GitHub issues',6,0,'en',0),(1147,'A15','Command-line interface',15,0,'en',0),(1147,'A16','Nix standalone installer',16,0,'en',0),(1147,'A17','NixOS installer',17,0,'en',0),(1147,'A13','Function documentation',13,0,'en',0),(1147,'A14','Nix language functions',14,0,'en',0),(1148,'A7','Source code',7,0,'en',0),(1147,'A12','Troubleshooting tips',12,0,'en',0),(1147,'A11','Answers to questions',11,0,'en',0),(1147,'A10','Manuals',10,0,'en',0),(1147,'A9','How-to guides',9,0,'en',0),(1147,'A8','Tutorials',8,0,'en',0),(1148,'A14','Blog posts',14,0,'en',0),(1148,'A8','Mastodon',8,0,'en',0),(1147,'A18','Security notifications',18,0,'en',0),(1147,'A19','Source code (package)',19,0,'en',0),(1147,'A20','Source code (module)',20,0,'en',0),(881,'A3','4 - 5 years',3,0,'en',0),(881,'A4','3 - 4 years',4,0,'en',0),(881,'A5','2 - 3 years',5,0,'en',0),(881,'A6','1 - 2 years',6,0,'en',0),(881,'A7','< 1 year',7,0,'en',0),(881,'A8','Never',8,0,'en',0),(862,'A4','Never Used/Just Started',4,0,'en',0),(862,'A3','Beginner',3,0,'en',0),(862,'A2','Intermediate',2,0,'en',0),(862,'A1','Expert',1,0,'en',0),(861,'A2','No',2,0,'en',0),(861,'A1','Yes',1,0,'en',0),(860,'A2','No',2,0,'en',0),(860,'A1','Yes',1,0,'en',0),(859,'A2','No',2,0,'en',0),(859,'A1','Yes',1,0,'en',0),(867,'A3','Other',3,0,'en',0),(867,'A2','No',2,0,'en',0),(867,'A1','Yes',1,0,'en',0),(878,'A3','Not sure',3,0,'en',0),(878,'A1','Yes',1,0,'en',0),(878,'A2','No',2,0,'en',0),(846,'A1','Strongly prefer',1,0,'en',0),(846,'A2','Would travel here',2,0,'en',0),(827,'A8','Central Mexico',8,0,'en',0),(827,'A9','West Mexico',7,0,'en',0),(827,'A7','East Mexico',6,0,'en',0),(826,'A72','Yucatán Peninsula',72,0,'en',0),(826,'A71','Southern Highlands',71,0,'en',0),(826,'A70','Gulf Coastal Plain',70,0,'en',0),(826,'A69','Cordillera Neo-Volcánica',69,0,'en',0),(826,'A68','Sierra Madre Occidental',68,0,'en',0),(826,'A67','Sierra Madre Oriental',67,0,'en',0),(833,'A3','No',3,0,'en',0),(833,'A1','Yes',1,0,'en',0),(829,'A1','Less than 50 miles',1,0,'en',0),(829,'A2','51-100 miles',2,0,'en',0),(829,'A3','101-300 miles',3,0,'en',0),(829,'A4','301-500 miles',4,0,'en',0),(829,'A5','More than 500 miles',5,0,'en',0),(833,'A2','Maybe, tell me more',2,0,'en',0),(827,'A2','Eastern United States',1,0,'en',0),(827,'A3','Western United States',2,0,'en',0),(827,'A4','Central United States',3,0,'en',0),(827,'A5','Eastern Canada',4,0,'en',0),(827,'A6','Western Canada',5,0,'en',0),(826,'A10','Florida',9,0,'en',0),(826,'A11','Georgia',10,0,'en',0),(826,'A12','Hawaii',11,0,'en',0),(826,'A13','Idaho',12,0,'en',0),(826,'A14','Illinois',13,0,'en',0),(826,'A15','Indiana',14,0,'en',0),(826,'A16','Iowa',15,0,'en',0),(826,'A17','Kansas',16,0,'en',0),(826,'A18','Kentucky',17,0,'en',0),(826,'A19','Louisiana',18,0,'en',0),(826,'A20','Maine',19,0,'en',0),(826,'A21','Maryland',20,0,'en',0),(826,'A22','Massachusetts',21,0,'en',0),(826,'A23','Michigan',22,0,'en',0),(826,'A24','Minnesota',23,0,'en',0),(826,'A25','Mississippi',24,0,'en',0),(826,'A26','Missouri',25,0,'en',0),(826,'A27','Montana',26,0,'en',0),(826,'A28','Nebraska',27,0,'en',0),(826,'A29','Nevada',28,0,'en',0),(826,'A30','New Hampshire',29,0,'en',0),(826,'A31','New Jersey',30,0,'en',0),(826,'A32','New Mexico',31,0,'en',0),(826,'A33','New York',32,0,'en',0),(826,'A34','North Carolina',33,0,'en',0),(826,'A35','North Dakota',34,0,'en',0),(826,'A36','Ohio',35,0,'en',0),(826,'A37','Oklahoma',36,0,'en',0),(826,'A38','Oregon',37,0,'en',0),(826,'A39','Pennsylvania',38,0,'en',0),(826,'A40','Rhode Island',39,0,'en',0),(826,'A41','South Carolina',40,0,'en',0),(826,'A42','South Dakota',41,0,'en',0),(826,'A43','Tennessee',42,0,'en',0),(826,'A44','Texas',43,0,'en',0),(826,'A45','Utah',44,0,'en',0),(826,'A46','Vermont',45,0,'en',0),(826,'A47','Virginia',46,0,'en',0),(826,'A48','Washington',47,0,'en',0),(826,'A49','West Virginia',48,0,'en',0),(826,'A50','Wisconsin',49,0,'en',0),(826,'A51','Wyoming',50,0,'en',0),(826,'A52','Alberta',51,0,'en',0),(826,'A53','British Columbia',52,0,'en',0),(826,'A54','Manitoba',53,0,'en',0),(826,'A55','New Brunswick',54,0,'en',0),(826,'A56','Newfoundland and Labrador',55,0,'en',0),(826,'A57','Northwest Territories',56,0,'en',0),(826,'A58','Nova Scotia',57,0,'en',0),(826,'A59','Nunavut',58,0,'en',0),(826,'A60','Ontario',59,0,'en',0),(826,'A61','Prince Edward Island',60,0,'en',0),(826,'A62','Quebec',61,0,'en',0),(826,'A63','Saskatchewan',62,0,'en',0),(826,'A64','Yukon',63,0,'en',0),(826,'A73','Baja California',64,0,'en',0),(826,'A65','Pacific Coastal Lowlands',65,0,'en',0),(826,'A66','Mexican Plateau',66,0,'en',0),(826,'A2','Alabama',1,0,'en',0),(826,'A3','Alaska',2,0,'en',0),(826,'A4','Arizona',3,0,'en',0),(826,'A5','Arkansas',4,0,'en',0),(826,'A6','California',5,0,'en',0),(826,'A7','Colorado',6,0,'en',0),(826,'A8','Connecticut',7,0,'en',0),(826,'A9','Delaware',8,0,'en',0),(634,'male','Male',2,0,'en',0),(658,'A7','Sub-Saharan Africa',7,0,'en',0),(633,'A4','35-44 years',4,0,'en',0),(633,'A3','25-34 years',3,0,'en',0),(633,'A2','15-24 years',2,0,'en',0),(633,'A6','55-64 years',6,0,'en',0),(633,'A5','45-54 years',5,0,'en',0),(658,'A6','South Asia',6,0,'en',0),(633,'A7','65+ years',7,0,'en',0),(658,'A1','East Asia and Pacific',1,0,'en',0),(658,'A2','Europe and Central Asia',2,0,'en',0),(658,'A3','Latin America and the Caribbean',3,0,'en',0),(658,'A4','Middle East and North Africa',4,0,'en',0),(658,'A5','North America',5,0,'en',0),(633,'A1','5-14 years',1,0,'en',0),(650,'A4','3-6 years',4,0,'en',0),(650,'A5','6-10 years',5,0,'en',0),(650,'A6','10+ years',6,0,'en',0),(764,'A1','nixpkgs-unstable',1,0,'en',0),(764,'A2','nixos-unstable',2,0,'en',0),(764,'A3','nixos-unstable-small',3,0,'en',0),(764,'A4','nixos-(release)',4,0,'en',0),(634,'fem','Female',1,0,'en',0),(651,'A1','Daily',1,0,'en',0),(651,'A2','Weekly',2,0,'en',0),(648,'A3','Monthly',3,0,'en',0),(648,'A2','Weekly',2,0,'en',0),(648,'A1','Daily',1,0,'en',0),(650,'A1','Less than 6 months',1,0,'en',0),(650,'A2','6 months - 1 year',2,0,'en',0),(650,'A3','1 year - 3 years',3,0,'en',0),(651,'A4','Occasionally',4,0,'en',0),(651,'A3','Monthly',3,0,'en',0),(653,'A6','10+ years',6,0,'en',0),(653,'A4','3-10 years',5,0,'en',0),(653,'A3','1-3 years',4,0,'en',0),(653,'A2','6 months - 1 year',3,0,'en',0),(653,'A1','1-6 months',2,0,'en',0),(653,'A7','less than a month',1,0,'en',0),(648,'A4','Occasionally',4,0,'en',0); -/*!40000 ALTER TABLE `limesurvey_answers` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_assessments` --- - -DROP TABLE IF EXISTS `limesurvey_assessments`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_assessments` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `sid` int(11) NOT NULL DEFAULT 0, - `scope` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL, - `gid` int(11) NOT NULL DEFAULT 0, - `name` text COLLATE utf8mb4_unicode_ci NOT NULL, - `minimum` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, - `maximum` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, - `message` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, - `language` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', - PRIMARY KEY (`id`,`language`), - KEY `limesurvey_assessments_idx2` (`sid`), - KEY `limesurvey_assessments_idx3` (`gid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_assessments` --- - -LOCK TABLES `limesurvey_assessments` WRITE; -/*!40000 ALTER TABLE `limesurvey_assessments` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_assessments` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_asset_version` --- - -DROP TABLE IF EXISTS `limesurvey_asset_version`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_asset_version` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `path` text COLLATE utf8mb4_unicode_ci NOT NULL, - `version` int(11) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_asset_version` --- - -LOCK TABLES `limesurvey_asset_version` WRITE; -/*!40000 ALTER TABLE `limesurvey_asset_version` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_asset_version` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_boxes` --- - -DROP TABLE IF EXISTS `limesurvey_boxes`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_boxes` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `position` int(11) DEFAULT NULL, - `url` text COLLATE utf8mb4_unicode_ci NOT NULL, - `title` text COLLATE utf8mb4_unicode_ci NOT NULL, - `ico` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `desc` text COLLATE utf8mb4_unicode_ci NOT NULL, - `page` text COLLATE utf8mb4_unicode_ci NOT NULL, - `usergroup` int(11) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_boxes` --- - -LOCK TABLES `limesurvey_boxes` WRITE; -/*!40000 ALTER TABLE `limesurvey_boxes` DISABLE KEYS */; -INSERT INTO `limesurvey_boxes` VALUES (1,1,'admin/survey/sa/newsurvey','Create survey','icon-add','Create a new survey','welcome',-2),(2,2,'admin/survey/sa/listsurveys','List surveys','icon-list','List available surveys','welcome',-1),(3,3,'admin/globalsettings','Global settings','icon-settings','Edit global settings','welcome',-2),(6,6,'admin/themeoptions','Themes','icon-templates','Themes','welcome',-2); -/*!40000 ALTER TABLE `limesurvey_boxes` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_conditions` --- - -DROP TABLE IF EXISTS `limesurvey_conditions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_conditions` ( - `cid` int(11) NOT NULL AUTO_INCREMENT, - `qid` int(11) NOT NULL DEFAULT 0, - `cqid` int(11) NOT NULL DEFAULT 0, - `cfieldname` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `method` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `value` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `scenario` int(11) NOT NULL DEFAULT 1, - PRIMARY KEY (`cid`), - KEY `limesurvey_conditions_idx` (`qid`), - KEY `limesurvey_conditions_idx3` (`cqid`) -) ENGINE=MyISAM AUTO_INCREMENT=179 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_conditions` --- - -LOCK TABLES `limesurvey_conditions` WRITE; -/*!40000 ALTER TABLE `limesurvey_conditions` DISABLE KEYS */; -INSERT INTO `limesurvey_conditions` VALUES (118,675,645,'2023X38X645','==','Y',1),(117,675,659,'2023X38X659','==','N',1),(116,646,645,'2023X38X645','==','Y',1),(115,660,645,'2023X38X645','==','N',1),(107,664,670,'2023X39X670','==','Y',1),(106,663,670,'2023X39X670','==','Y',1),(99,662,670,'2023X39X670','==','Y',1),(88,646,659,'2023X38X659','==','N',1),(89,671,670,'2023X39X670','==','N',1),(90,672,670,'2023X39X670','==','N',1),(91,672,671,'2023X39X671','==','N',1),(92,673,670,'2023X39X670','==','N',1),(93,673,671,'2023X39X671','==','Y',1),(94,647,670,'2023X39X670','==','N',1),(95,647,671,'2023X39X671','==','Y',1),(96,651,670,'2023X39X670','==','Y',1),(97,661,670,'2023X39X670','==','Y',1),(98,652,670,'2023X39X670','==','Y',1),(114,645,659,'2023X38X659','==','N',1),(112,674,670,'2023X39X670','==','Y',1),(110,667,670,'2023X39X670','==','Y',1),(108,665,670,'2023X39X670','==','Y',1),(111,676,670,'2023X39X670','==','Y',1),(105,657,670,'2023X39X670','==','Y',1),(133,667,800,'2023X39X800','==','A1',1),(101,653,670,'2023X39X670','==','Y',1),(102,654,670,'2023X39X670','==','Y',1),(103,655,670,'2023X39X670','==','Y',1),(104,656,670,'2023X39X670','==','Y',1),(113,660,659,'2023X38X659','==','N',1),(47,516,529,'2022X33X529','==','N',1),(48,541,540,'2022X34X540','==','N',1),(49,542,540,'2022X34X540','==','N',1),(50,542,541,'2022X34X541','==','N',1),(51,543,540,'2022X34X540','==','N',1),(52,543,541,'2022X34X541','==','Y',1),(53,517,540,'2022X34X540','==','N',1),(54,517,541,'2022X34X541','==','Y',1),(55,521,540,'2022X34X540','==','Y',1),(56,531,540,'2022X34X540','==','Y',1),(57,522,540,'2022X34X540','==','Y',1),(58,532,540,'2022X34X540','==','Y',1),(59,537,536,'2022X34X536','==','N',1),(60,523,540,'2022X34X540','==','Y',1),(61,524,540,'2022X34X540','==','Y',1),(62,525,540,'2022X34X540','==','Y',1),(63,526,540,'2022X34X540','==','Y',1),(64,527,540,'2022X34X540','==','Y',1),(65,533,540,'2022X34X540','==','Y',1),(66,534,540,'2022X34X540','==','Y',1),(67,535,540,'2022X34X540','==','Y',1),(68,536,540,'2022X34X540','==','Y',1),(69,537,540,'2022X34X540','==','Y',1),(70,546,540,'2022X34X540','==','Y',1),(71,544,540,'2022X34X540','==','Y',1),(72,530,529,'2022X33X529','==','N',1),(73,515,529,'2022X33X529','==','N',1),(74,530,515,'2022X33X515','==','N',1),(75,516,515,'2022X33X515','==','Y',1),(76,545,529,'2022X33X529','==','N',1),(77,545,515,'2022X33X515','==','Y',1),(78,519,529,'2022X33X529','==','Y',1),(79,518,529,'2022X33X529','==','Y',1),(80,520,529,'2022X33X529','==','Y',1),(81,508,529,'2022X33X529','==','Y',1),(82,507,529,'2022X33X529','==','Y',1),(83,509,529,'2022X33X529','==','Y',1),(84,510,529,'2022X33X529','==','Y',1),(85,511,529,'2022X33X529','==','Y',1),(86,513,529,'2022X33X529','==','Y',1),(87,514,529,'2022X33X529','==','Y',1),(119,649,659,'2023X38X659','==','Y',1),(120,648,659,'2023X38X659','==','Y',1),(121,650,659,'2023X38X659','==','Y',1),(122,638,659,'2023X38X659','==','Y',1),(123,637,659,'2023X38X659','==','Y',1),(124,639,659,'2023X38X659','==','Y',1),(125,640,659,'2023X38X659','==','Y',1),(126,641,659,'2023X38X659','==','Y',1),(127,643,659,'2023X38X659','==','Y',1),(128,644,659,'2023X38X659','==','Y',1),(129,789,656,'2023X39X6561','==','A15',1),(131,789,656,'2023X39X6562','==','A15',2),(132,789,656,'2023X39X6563','==','A15',2),(134,667,800,'2023X39X800','==','A2',1); -/*!40000 ALTER TABLE `limesurvey_conditions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_defaultvalues` --- - -DROP TABLE IF EXISTS `limesurvey_defaultvalues`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_defaultvalues` ( - `qid` int(11) NOT NULL DEFAULT 0, - `scale_id` int(11) NOT NULL DEFAULT 0, - `sqid` int(11) NOT NULL DEFAULT 0, - `language` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, - `specialtype` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `defaultvalue` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`qid`,`specialtype`,`language`,`scale_id`,`sqid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_defaultvalues` --- - -LOCK TABLES `limesurvey_defaultvalues` WRITE; -/*!40000 ALTER TABLE `limesurvey_defaultvalues` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_defaultvalues` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_expression_errors` --- - -DROP TABLE IF EXISTS `limesurvey_expression_errors`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_expression_errors` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `errortime` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `sid` int(11) DEFAULT NULL, - `gid` int(11) DEFAULT NULL, - `qid` int(11) DEFAULT NULL, - `gseq` int(11) DEFAULT NULL, - `qseq` int(11) DEFAULT NULL, - `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `eqn` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `prettyprint` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_expression_errors` --- - -LOCK TABLES `limesurvey_expression_errors` WRITE; -/*!40000 ALTER TABLE `limesurvey_expression_errors` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_expression_errors` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_failed_login_attempts` --- - -DROP TABLE IF EXISTS `limesurvey_failed_login_attempts`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_failed_login_attempts` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `ip` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL, - `last_attempt` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, - `number_attempts` int(11) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_failed_login_attempts` --- - -LOCK TABLES `limesurvey_failed_login_attempts` WRITE; -/*!40000 ALTER TABLE `limesurvey_failed_login_attempts` DISABLE KEYS */; -INSERT INTO `limesurvey_failed_login_attempts` VALUES (8,'98.234.180.165','2023-09-22 20:20:33',2),(10,'82.67.34.230','2024-07-08 22:07:05',1); -/*!40000 ALTER TABLE `limesurvey_failed_login_attempts` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_groups` --- - -DROP TABLE IF EXISTS `limesurvey_groups`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_groups` ( - `gid` int(11) NOT NULL AUTO_INCREMENT, - `sid` int(11) NOT NULL DEFAULT 0, - `group_name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `group_order` int(11) NOT NULL DEFAULT 0, - `description` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `language` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', - `randomization_group` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `grelevance` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`gid`,`language`), - KEY `limesurvey_idx1_groups` (`sid`), - KEY `limesurvey_idx2_groups` (`group_name`), - KEY `limesurvey_idx3_groups` (`language`) -) ENGINE=MyISAM AUTO_INCREMENT=55 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_groups` --- - -LOCK TABLES `limesurvey_groups` WRITE; -/*!40000 ALTER TABLE `limesurvey_groups` DISABLE KEYS */; -INSERT INTO `limesurvey_groups` VALUES (50,2024,'Nix Community Survey',1,'','en','',''),(47,248687,'Content',1,'','en','',''),(49,248687,'General',2,'','en','',''),(44,248687,'Attendee Information',0,'','en','',''),(42,239157,'General',2,'','en','',''),(43,346552,'NixCon North America',1,'','en','',''),(31,2022,'Background Information',1,'','en','',''),(32,2022,'Thank You!',5,'Thank you for completing the survey','en','',''),(33,2022,'NixOS User Questions',3,'','en','',''),(34,2022,'Nix User Questions',2,'Questions about the Nix command line. (We\'ll ask about NixOS specifically on the next page.)','en','',''),(35,2022,'Misc. Questions',4,'','en','',''),(41,239157,'Travel and location of origin',1,'Please share some details about how you arrived, how long it took you and where you are travelling from. This will be used to help us gather information on future NixCon locations.','en','',''),(38,2023,'NixOS User Questions',3,'','en','',''),(39,2023,'Nix User Questions (not NixOS)',2,'Questions about Nix and the Nix ecosystem.

We\'ll ask about NixOS specifically on the next page.','en','',''),(40,2023,'Misc. Questions',4,'','en','',''),(37,2023,'Thank You!',5,'Thank you for completing the survey','en','',''),(36,2023,'Background Information',1,'','en','',''); -/*!40000 ALTER TABLE `limesurvey_groups` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_labels` --- - -DROP TABLE IF EXISTS `limesurvey_labels`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_labels` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `lid` int(11) NOT NULL DEFAULT 0, - `code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `sortorder` int(11) NOT NULL, - `language` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', - `assessment_value` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `limesurvey_idx1_labels` (`code`), - KEY `limesurvey_idx2_labels` (`sortorder`), - KEY `limesurvey_idx3_labels` (`language`), - KEY `limesurvey_idx4_labels` (`lid`,`sortorder`,`language`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_labels` --- - -LOCK TABLES `limesurvey_labels` WRITE; -/*!40000 ALTER TABLE `limesurvey_labels` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_labels` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_labelsets` --- - -DROP TABLE IF EXISTS `limesurvey_labelsets`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_labelsets` ( - `lid` int(11) NOT NULL AUTO_INCREMENT, - `label_name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `languages` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT 'en', - PRIMARY KEY (`lid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_labelsets` --- - -LOCK TABLES `limesurvey_labelsets` WRITE; -/*!40000 ALTER TABLE `limesurvey_labelsets` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_labelsets` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_map_tutorial_users` --- - -DROP TABLE IF EXISTS `limesurvey_map_tutorial_users`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_map_tutorial_users` ( - `tid` int(11) NOT NULL, - `uid` int(11) NOT NULL, - `taken` int(11) DEFAULT 1, - PRIMARY KEY (`uid`,`tid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_map_tutorial_users` --- - -LOCK TABLES `limesurvey_map_tutorial_users` WRITE; -/*!40000 ALTER TABLE `limesurvey_map_tutorial_users` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_map_tutorial_users` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_notifications` --- - -DROP TABLE IF EXISTS `limesurvey_notifications`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_notifications` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `entity` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL, - `entity_id` int(11) NOT NULL, - `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, - `message` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, - `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'new', - `importance` int(11) NOT NULL DEFAULT 1, - `display_class` varchar(31) COLLATE utf8mb4_unicode_ci DEFAULT 'default', - `hash` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `created` datetime DEFAULT NULL, - `first_read` datetime DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `limesurvey_notifications_pk` (`entity`,`entity_id`,`status`), - KEY `limesurvey_idx1_notifications` (`hash`) -) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_notifications` --- - -LOCK TABLES `limesurvey_notifications` WRITE; -/*!40000 ALTER TABLE `limesurvey_notifications` DISABLE KEYS */; -INSERT INTO `limesurvey_notifications` VALUES (4,'user',2,'Password warning',' Warning: You are still using the default password ('password'). Please change your password and re-login again.','new',1,'default','20a3e365c5a36c7cc8c47eaa0effcd0f6274e5831ad3a80701bac913a9f896cb','2022-02-18 20:50:26','2022-02-18 19:50:34'); -/*!40000 ALTER TABLE `limesurvey_notifications` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_old_survey_2023_20230517111549` --- - -DROP TABLE IF EXISTS `limesurvey_old_survey_2023_20230517111549`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_old_survey_2023_20230517111549` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `submitdate` datetime DEFAULT NULL, - `lastpage` int(11) DEFAULT NULL, - `startlanguage` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, - `seed` varchar(31) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X658` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X633` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X634` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X634other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ009` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ010` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ011` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ012` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ013` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ014` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ015` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ016` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ017` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ018` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ019` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ020` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ021` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ022` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ023` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X670` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X671` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X672` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X673` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X651` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X652SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X652SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X652SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X652other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X653` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X654` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X655SQ001` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X655SQ002` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X655SQ003` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X656` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X657` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X664` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X665SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X665SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X665SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X665other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X666` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X667` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X659` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X645` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X660` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X646` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X675` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X648` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X649SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X649SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X649SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X649other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X650` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X637` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X639SQ001` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X639SQ002` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X639SQ003` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X640` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X641` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X644SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X644SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X644SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X644other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X40X668` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X40X669` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X37X642` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_old_survey_2023_20230517111549` --- - -LOCK TABLES `limesurvey_old_survey_2023_20230517111549` WRITE; -/*!40000 ALTER TABLE `limesurvey_old_survey_2023_20230517111549` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_old_survey_2023_20230517111549` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_old_survey_2023_20230524184227` --- - -DROP TABLE IF EXISTS `limesurvey_old_survey_2023_20230524184227`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_old_survey_2023_20230524184227` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `submitdate` datetime DEFAULT NULL, - `lastpage` int(11) DEFAULT NULL, - `startlanguage` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, - `seed` varchar(31) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X658` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X633` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X634` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X634other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ009` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ010` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ011` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ012` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ013` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ014` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ015` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ016` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ017` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ018` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ019` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ020` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ021` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ022` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ023` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X670` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X671` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X672` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X673` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X651` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X652SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X652SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X652SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X652other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X653` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X654` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X655SQ001` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X655SQ002` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X655SQ003` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X656` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X657` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X664` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X665SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X665SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X665SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X665other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X666` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X667` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X659` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X645` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X660` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X646` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X675` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X648` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X649SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X649SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X649SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X649other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X650` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X637` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X639SQ001` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X639SQ002` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X639SQ003` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X640` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X641` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X644SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X644SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X644SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X644other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X40X668` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X40X669` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X37X642` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_old_survey_2023_20230524184227` --- - -LOCK TABLES `limesurvey_old_survey_2023_20230524184227` WRITE; -/*!40000 ALTER TABLE `limesurvey_old_survey_2023_20230524184227` DISABLE KEYS */; -INSERT INTO `limesurvey_old_survey_2023_20230524184227` VALUES (1,'1980-01-01 00:00:00',5,'en','325631429','A2','A2','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','','Y','','','','','Y','','Y','Y','','Y','','','Y','Y','','Y','','','','','','','','','','Y','Y','','Y','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','Y','','Y','Y','','Y','','','','','','','Y','','','Y','','','','','Y','','','','',''),(2,NULL,3,'en','1380785','A2','A2','male','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','','','','','','Y','','Y','','Y','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),(3,NULL,4,'en','544136625','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(5,NULL,1,'en','445203000','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -/*!40000 ALTER TABLE `limesurvey_old_survey_2023_20230524184227` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_old_survey_2023_20230525220003` --- - -DROP TABLE IF EXISTS `limesurvey_old_survey_2023_20230525220003`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_old_survey_2023_20230525220003` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `submitdate` datetime DEFAULT NULL, - `lastpage` int(11) DEFAULT NULL, - `startlanguage` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, - `seed` varchar(31) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X658` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X633` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X634` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X634other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ009` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ010` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ011` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ012` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ013` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ014` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ015` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ016` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ017` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ018` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ019` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ020` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ021` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ022` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ023` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X670` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X671` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X672` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X673` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X651` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X652SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X652SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X652SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X652other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X653` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X654` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X655SQ001` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X655SQ002` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X655SQ003` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X656` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X657` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X764` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X664` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X665SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X665SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X665SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X665other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X666` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X667` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X659` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X645` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X660` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X646` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X675` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X648` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X649SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X649SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X649SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X649other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X650` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X637` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X639SQ001` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X639SQ002` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X639SQ003` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X640` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X641` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X644SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X644SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X644SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X644other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X40X668` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X40X669` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X37X642` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_old_survey_2023_20230525220003` --- - -LOCK TABLES `limesurvey_old_survey_2023_20230525220003` WRITE; -/*!40000 ALTER TABLE `limesurvey_old_survey_2023_20230525220003` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_old_survey_2023_20230525220003` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_old_tokens_2023_20230514142748` --- - -DROP TABLE IF EXISTS `limesurvey_old_tokens_2023_20230514142748`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_old_tokens_2023_20230514142748` ( - `tid` int(11) NOT NULL AUTO_INCREMENT, - `participant_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `firstname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `lastname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `email` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `emailstatus` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `token` varchar(35) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, - `language` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `blacklisted` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `sent` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', - `remindersent` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', - `remindercount` int(11) DEFAULT 0, - `completed` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', - `usesleft` int(11) DEFAULT 1, - `validfrom` datetime DEFAULT NULL, - `validuntil` datetime DEFAULT NULL, - `mpid` int(11) DEFAULT NULL, - PRIMARY KEY (`tid`), - KEY `idx_token_token_2023_15027` (`token`), - KEY `idx_email` (`email`(30)) -) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_old_tokens_2023_20230514142748` --- - -LOCK TABLES `limesurvey_old_tokens_2023_20230514142748` WRITE; -/*!40000 ALTER TABLE `limesurvey_old_tokens_2023_20230514142748` DISABLE KEYS */; -INSERT INTO `limesurvey_old_tokens_2023_20230514142748` VALUES (1,NULL,'i','j','','OK','yTdxfo6bGcUCR5X','en',NULL,'N','N',0,'N',1,NULL,NULL,NULL); -/*!40000 ALTER TABLE `limesurvey_old_tokens_2023_20230514142748` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_old_tokens_2023_20230514143042` --- - -DROP TABLE IF EXISTS `limesurvey_old_tokens_2023_20230514143042`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_old_tokens_2023_20230514143042` ( - `tid` int(11) NOT NULL AUTO_INCREMENT, - `participant_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `firstname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `lastname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `email` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `emailstatus` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `token` varchar(35) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, - `language` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `blacklisted` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `sent` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', - `remindersent` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', - `remindercount` int(11) DEFAULT 0, - `completed` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', - `usesleft` int(11) DEFAULT 1, - `validfrom` datetime DEFAULT NULL, - `validuntil` datetime DEFAULT NULL, - `mpid` int(11) DEFAULT NULL, - PRIMARY KEY (`tid`), - KEY `idx_token_token_2023_34383` (`token`), - KEY `idx_email` (`email`(30)) -) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_old_tokens_2023_20230514143042` --- - -LOCK TABLES `limesurvey_old_tokens_2023_20230514143042` WRITE; -/*!40000 ALTER TABLE `limesurvey_old_tokens_2023_20230514143042` DISABLE KEYS */; -INSERT INTO `limesurvey_old_tokens_2023_20230514143042` VALUES (1,NULL,'','','','OK','2O8ZyP4wlTRVPAm','en',NULL,'N','N',0,'N',1,NULL,NULL,NULL); -/*!40000 ALTER TABLE `limesurvey_old_tokens_2023_20230514143042` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_old_tokens_2023_20230517111549` --- - -DROP TABLE IF EXISTS `limesurvey_old_tokens_2023_20230517111549`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_old_tokens_2023_20230517111549` ( - `tid` int(11) NOT NULL AUTO_INCREMENT, - `participant_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `firstname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `lastname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `email` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `emailstatus` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `token` varchar(35) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, - `language` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `blacklisted` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `sent` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', - `remindersent` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', - `remindercount` int(11) DEFAULT 0, - `completed` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', - `usesleft` int(11) DEFAULT 1, - `validfrom` datetime DEFAULT NULL, - `validuntil` datetime DEFAULT NULL, - `mpid` int(11) DEFAULT NULL, - PRIMARY KEY (`tid`), - KEY `idx_token_token_2023_14211` (`token`), - KEY `idx_email` (`email`(30)) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_old_tokens_2023_20230517111549` --- - -LOCK TABLES `limesurvey_old_tokens_2023_20230517111549` WRITE; -/*!40000 ALTER TABLE `limesurvey_old_tokens_2023_20230517111549` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_old_tokens_2023_20230517111549` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_old_tokens_2023_20230525220003` --- - -DROP TABLE IF EXISTS `limesurvey_old_tokens_2023_20230525220003`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_old_tokens_2023_20230525220003` ( - `tid` int(11) NOT NULL AUTO_INCREMENT, - `participant_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `firstname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `lastname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `email` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `emailstatus` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `token` varchar(35) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, - `language` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `blacklisted` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `sent` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', - `remindersent` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', - `remindercount` int(11) DEFAULT 0, - `completed` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', - `usesleft` int(11) DEFAULT 1, - `validfrom` datetime DEFAULT NULL, - `validuntil` datetime DEFAULT NULL, - `mpid` int(11) DEFAULT NULL, - PRIMARY KEY (`tid`), - KEY `idx_token_token_2023_39722` (`token`), - KEY `idx_email` (`email`(30)) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_old_tokens_2023_20230525220003` --- - -LOCK TABLES `limesurvey_old_tokens_2023_20230525220003` WRITE; -/*!40000 ALTER TABLE `limesurvey_old_tokens_2023_20230525220003` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_old_tokens_2023_20230525220003` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_old_tokens_987549_20220202225037` --- - -DROP TABLE IF EXISTS `limesurvey_old_tokens_987549_20220202225037`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_old_tokens_987549_20220202225037` ( - `tid` int(11) NOT NULL AUTO_INCREMENT, - `participant_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `firstname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `lastname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `email` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `emailstatus` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `token` varchar(35) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, - `language` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `blacklisted` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `sent` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', - `remindersent` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', - `remindercount` int(11) DEFAULT 0, - `completed` varchar(17) COLLATE utf8mb4_unicode_ci DEFAULT 'N', - `usesleft` int(11) DEFAULT 1, - `validfrom` datetime DEFAULT NULL, - `validuntil` datetime DEFAULT NULL, - `mpid` int(11) DEFAULT NULL, - PRIMARY KEY (`tid`), - KEY `idx_token_token_987549_21634` (`token`), - KEY `idx_email` (`email`(30)) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_old_tokens_987549_20220202225037` --- - -LOCK TABLES `limesurvey_old_tokens_987549_20220202225037` WRITE; -/*!40000 ALTER TABLE `limesurvey_old_tokens_987549_20220202225037` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_old_tokens_987549_20220202225037` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_participant_attribute` --- - -DROP TABLE IF EXISTS `limesurvey_participant_attribute`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_participant_attribute` ( - `participant_id` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, - `attribute_id` int(11) NOT NULL, - `value` text COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`participant_id`,`attribute_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_participant_attribute` --- - -LOCK TABLES `limesurvey_participant_attribute` WRITE; -/*!40000 ALTER TABLE `limesurvey_participant_attribute` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_participant_attribute` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_participant_attribute_names` --- - -DROP TABLE IF EXISTS `limesurvey_participant_attribute_names`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_participant_attribute_names` ( - `attribute_id` int(11) NOT NULL AUTO_INCREMENT, - `attribute_type` varchar(4) COLLATE utf8mb4_unicode_ci NOT NULL, - `defaultname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, - `visible` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`attribute_id`,`attribute_type`), - KEY `limesurvey_idx_participant_attribute_names` (`attribute_id`,`attribute_type`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_participant_attribute_names` --- - -LOCK TABLES `limesurvey_participant_attribute_names` WRITE; -/*!40000 ALTER TABLE `limesurvey_participant_attribute_names` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_participant_attribute_names` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_participant_attribute_names_lang` --- - -DROP TABLE IF EXISTS `limesurvey_participant_attribute_names_lang`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_participant_attribute_names_lang` ( - `attribute_id` int(11) NOT NULL, - `attribute_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, - `lang` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`attribute_id`,`lang`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_participant_attribute_names_lang` --- - -LOCK TABLES `limesurvey_participant_attribute_names_lang` WRITE; -/*!40000 ALTER TABLE `limesurvey_participant_attribute_names_lang` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_participant_attribute_names_lang` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_participant_attribute_values` --- - -DROP TABLE IF EXISTS `limesurvey_participant_attribute_values`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_participant_attribute_values` ( - `value_id` int(11) NOT NULL AUTO_INCREMENT, - `attribute_id` int(11) NOT NULL, - `value` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`value_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_participant_attribute_values` --- - -LOCK TABLES `limesurvey_participant_attribute_values` WRITE; -/*!40000 ALTER TABLE `limesurvey_participant_attribute_values` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_participant_attribute_values` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_participant_shares` --- - -DROP TABLE IF EXISTS `limesurvey_participant_shares`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_participant_shares` ( - `participant_id` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, - `share_uid` int(11) NOT NULL, - `date_added` datetime NOT NULL, - `can_edit` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`participant_id`,`share_uid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_participant_shares` --- - -LOCK TABLES `limesurvey_participant_shares` WRITE; -/*!40000 ALTER TABLE `limesurvey_participant_shares` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_participant_shares` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_participants` --- - -DROP TABLE IF EXISTS `limesurvey_participants`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_participants` ( - `participant_id` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, - `firstname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `lastname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `email` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `language` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `blacklisted` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL, - `owner_uid` int(11) NOT NULL, - `created_by` int(11) NOT NULL, - `created` datetime DEFAULT NULL, - `modified` datetime DEFAULT NULL, - PRIMARY KEY (`participant_id`), - KEY `limesurvey_idx1_participants` (`firstname`), - KEY `limesurvey_idx2_participants` (`lastname`), - KEY `limesurvey_idx3_participants` (`language`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_participants` --- - -LOCK TABLES `limesurvey_participants` WRITE; -/*!40000 ALTER TABLE `limesurvey_participants` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_participants` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_permissions` --- - -DROP TABLE IF EXISTS `limesurvey_permissions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_permissions` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `entity` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, - `entity_id` int(11) NOT NULL, - `uid` int(11) NOT NULL, - `permission` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, - `create_p` int(11) NOT NULL DEFAULT 0, - `read_p` int(11) NOT NULL DEFAULT 0, - `update_p` int(11) NOT NULL DEFAULT 0, - `delete_p` int(11) NOT NULL DEFAULT 0, - `import_p` int(11) NOT NULL DEFAULT 0, - `export_p` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `limesurvey_idx1_permissions` (`entity_id`,`entity`,`permission`,`uid`) -) ENGINE=MyISAM AUTO_INCREMENT=436 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_permissions` --- - -LOCK TABLES `limesurvey_permissions` WRITE; -/*!40000 ALTER TABLE `limesurvey_permissions` DISABLE KEYS */; -INSERT INTO `limesurvey_permissions` VALUES (1,'global',0,1,'superadmin',0,1,0,0,0,0),(238,'survey',2022,10,'survey',0,1,0,0,0,0),(236,'survey',2022,10,'surveyactivation',0,0,1,0,0,0),(146,'template',0,8,'fruity',0,1,0,0,0,0),(237,'survey',2022,10,'surveycontent',1,1,1,1,1,1),(144,'survey',239157,1,'tokens',1,1,1,1,1,1),(143,'survey',239157,1,'surveylocale',0,1,1,0,0,0),(142,'survey',239157,1,'surveysettings',0,1,1,0,0,0),(141,'survey',239157,1,'surveysecurity',1,1,1,1,0,0),(140,'survey',239157,1,'survey',0,1,0,1,0,0),(139,'survey',239157,1,'surveycontent',1,1,1,1,1,1),(138,'survey',239157,1,'surveyactivation',0,0,1,0,0,0),(137,'survey',239157,1,'statistics',0,1,0,0,0,0),(136,'survey',239157,1,'responses',1,1,1,1,1,1),(135,'survey',239157,1,'quotas',1,1,1,1,0,0),(134,'survey',239157,1,'translations',0,1,1,0,0,0),(133,'survey',239157,1,'assessments',1,1,1,1,0,0),(232,'survey',2022,10,'translations',0,1,1,0,0,0),(220,'survey',2022,7,'quotas',1,1,1,1,0,0),(216,'global',0,6,'auth_db',0,1,0,0,0,0),(218,'survey',2022,7,'assessments',1,1,1,1,0,0),(219,'survey',2022,7,'translations',0,1,1,0,0,0),(110,'survey',2023,1,'assessments',1,1,1,1,0,0),(111,'survey',2023,1,'translations',0,1,1,0,0,0),(112,'survey',2023,1,'quotas',1,1,1,1,0,0),(113,'survey',2023,1,'responses',1,1,1,1,1,1),(114,'survey',2023,1,'statistics',0,1,0,0,0,0),(115,'survey',2023,1,'surveyactivation',0,0,1,0,0,0),(116,'survey',2023,1,'surveycontent',1,1,1,1,1,1),(117,'survey',2023,1,'survey',0,1,0,1,0,0),(118,'survey',2023,1,'surveysecurity',1,1,1,1,0,0),(119,'survey',2023,1,'surveysettings',0,1,1,0,0,0),(120,'survey',2023,1,'surveylocale',0,1,1,0,0,0),(121,'survey',2023,1,'tokens',1,1,1,1,1,1),(123,'template',0,7,'fruity',0,1,0,0,0,0),(231,'survey',2022,10,'assessments',1,1,1,1,0,0),(229,'survey',2022,7,'tokens',1,1,1,1,1,1),(228,'survey',2022,7,'surveylocale',0,1,1,0,0,0),(227,'survey',2022,7,'surveysettings',0,1,1,0,0,0),(226,'survey',2022,7,'surveysecurity',1,1,1,1,0,0),(225,'survey',2022,7,'survey',0,1,0,0,0,0),(215,'global',0,7,'auth_db',0,1,0,0,0,0),(221,'survey',2022,7,'responses',1,1,1,1,1,1),(222,'survey',2022,7,'statistics',0,1,0,0,0,0),(223,'survey',2022,7,'surveyactivation',0,0,1,0,0,0),(224,'survey',2022,7,'surveycontent',1,1,1,1,1,1),(97,'template',0,6,'fruity',0,1,0,0,0,0),(239,'survey',2022,10,'surveysecurity',1,1,1,1,0,0),(235,'survey',2022,10,'statistics',0,1,0,0,0,0),(234,'survey',2022,10,'responses',1,1,1,1,1,1),(233,'survey',2022,10,'quotas',1,1,1,1,0,0),(214,'global',0,8,'auth_db',0,1,0,0,0,0),(156,'survey',346552,1,'assessments',1,1,1,1,0,0),(157,'survey',346552,1,'translations',0,1,1,0,0,0),(158,'survey',346552,1,'quotas',1,1,1,1,0,0),(159,'survey',346552,1,'responses',1,1,1,1,1,1),(160,'survey',346552,1,'statistics',0,1,0,0,0,0),(161,'survey',346552,1,'surveyactivation',0,0,1,0,0,0),(162,'survey',346552,1,'surveycontent',1,1,1,1,1,1),(163,'survey',346552,1,'survey',0,1,0,1,0,0),(164,'survey',346552,1,'surveysecurity',1,1,1,1,0,0),(165,'survey',346552,1,'surveysettings',0,1,1,0,0,0),(166,'survey',346552,1,'surveylocale',0,1,1,0,0,0),(167,'survey',346552,1,'tokens',1,1,1,1,1,1),(168,'global',0,9,'auth_db',0,1,0,0,0,0),(169,'template',0,9,'fruity',0,1,0,0,0,0),(171,'survey',346552,9,'assessments',1,1,1,1,0,0),(172,'survey',346552,9,'translations',0,1,1,0,0,0),(173,'survey',346552,9,'quotas',1,1,1,1,0,0),(174,'survey',346552,9,'responses',1,1,1,1,1,1),(175,'survey',346552,9,'statistics',0,1,0,0,0,0),(176,'survey',346552,9,'surveyactivation',0,0,1,0,0,0),(177,'survey',346552,9,'surveycontent',1,1,1,1,1,1),(178,'survey',346552,9,'survey',0,1,0,0,0,0),(179,'survey',346552,9,'surveysecurity',1,1,1,1,0,0),(180,'survey',346552,9,'surveysettings',0,1,1,0,0,0),(181,'survey',346552,9,'surveylocale',0,1,1,0,0,0),(182,'survey',346552,9,'tokens',1,1,1,1,1,1),(185,'global',0,10,'auth_db',0,1,0,0,0,0),(184,'template',0,10,'fruity',0,1,0,0,0,0),(187,'survey',346552,10,'assessments',1,1,1,1,0,0),(188,'survey',346552,10,'translations',0,1,1,0,0,0),(189,'survey',346552,10,'quotas',1,1,1,1,0,0),(190,'survey',346552,10,'responses',1,1,1,1,1,1),(191,'survey',346552,10,'statistics',0,1,0,0,0,0),(192,'survey',346552,10,'surveyactivation',0,0,1,0,0,0),(193,'survey',346552,10,'surveycontent',1,1,1,1,1,1),(194,'survey',346552,10,'survey',0,1,0,0,0,0),(195,'survey',346552,10,'surveysecurity',1,1,1,1,0,0),(196,'survey',346552,10,'surveysettings',0,1,1,0,0,0),(197,'survey',346552,10,'surveylocale',0,1,1,0,0,0),(198,'survey',346552,10,'tokens',1,1,1,1,1,1),(199,'global',0,11,'auth_db',0,1,0,0,0,0),(200,'template',0,11,'fruity',0,1,0,0,0,0),(202,'survey',346552,11,'assessments',1,1,1,1,0,0),(203,'survey',346552,11,'translations',0,1,1,0,0,0),(204,'survey',346552,11,'quotas',1,1,1,1,0,0),(205,'survey',346552,11,'responses',1,1,1,1,1,1),(206,'survey',346552,11,'statistics',0,1,0,0,0,0),(207,'survey',346552,11,'surveyactivation',0,0,1,0,0,0),(208,'survey',346552,11,'surveycontent',1,1,1,1,1,1),(209,'survey',346552,11,'survey',0,1,0,0,0,0),(210,'survey',346552,11,'surveysecurity',1,1,1,1,0,0),(211,'survey',346552,11,'surveysettings',0,1,1,0,0,0),(212,'survey',346552,11,'surveylocale',0,1,1,0,0,0),(213,'survey',346552,11,'tokens',1,1,1,1,1,1),(240,'survey',2022,10,'surveysettings',0,1,1,0,0,0),(241,'survey',2022,10,'surveylocale',0,1,1,0,0,0),(242,'survey',2022,10,'tokens',1,1,1,1,1,1),(244,'survey',2022,6,'assessments',1,1,1,1,0,0),(245,'survey',2022,6,'translations',0,1,1,0,0,0),(246,'survey',2022,6,'quotas',1,1,1,1,0,0),(247,'survey',2022,6,'responses',1,1,1,1,1,1),(248,'survey',2022,6,'statistics',0,1,0,0,0,0),(249,'survey',2022,6,'surveyactivation',0,0,1,0,0,0),(250,'survey',2022,6,'surveycontent',1,1,1,1,1,1),(251,'survey',2022,6,'survey',0,1,0,0,0,0),(252,'survey',2022,6,'surveysecurity',1,1,1,1,0,0),(253,'survey',2022,6,'surveysettings',0,1,1,0,0,0),(254,'survey',2022,6,'surveylocale',0,1,1,0,0,0),(255,'survey',2022,6,'tokens',1,1,1,1,1,1),(257,'survey',2023,7,'assessments',1,1,1,1,0,0),(258,'survey',2023,7,'translations',0,1,1,0,0,0),(259,'survey',2023,7,'quotas',1,1,1,1,0,0),(260,'survey',2023,7,'responses',1,1,1,1,1,1),(261,'survey',2023,7,'statistics',0,1,0,0,0,0),(262,'survey',2023,7,'surveyactivation',0,0,1,0,0,0),(263,'survey',2023,7,'surveycontent',1,1,1,1,1,1),(264,'survey',2023,7,'survey',0,1,0,0,0,0),(265,'survey',2023,7,'surveysecurity',1,1,1,1,0,0),(266,'survey',2023,7,'surveysettings',0,1,1,0,0,0),(267,'survey',2023,7,'surveylocale',0,1,1,0,0,0),(268,'survey',2023,7,'tokens',1,1,1,1,1,1),(270,'survey',2023,10,'assessments',1,1,1,1,0,0),(271,'survey',2023,10,'translations',0,1,1,0,0,0),(272,'survey',2023,10,'quotas',1,1,1,1,0,0),(273,'survey',2023,10,'responses',1,1,1,1,1,1),(274,'survey',2023,10,'statistics',0,1,0,0,0,0),(275,'survey',2023,10,'surveyactivation',0,0,1,0,0,0),(276,'survey',2023,10,'surveycontent',1,1,1,1,1,1),(277,'survey',2023,10,'survey',0,1,0,0,0,0),(278,'survey',2023,10,'surveysecurity',1,1,1,1,0,0),(279,'survey',2023,10,'surveysettings',0,1,1,0,0,0),(280,'survey',2023,10,'surveylocale',0,1,1,0,0,0),(281,'survey',2023,10,'tokens',1,1,1,1,1,1),(283,'survey',2023,6,'assessments',1,1,1,1,0,0),(284,'survey',2023,6,'translations',0,1,1,0,0,0),(285,'survey',2023,6,'quotas',1,1,1,1,0,0),(286,'survey',2023,6,'responses',1,1,1,1,1,1),(287,'survey',2023,6,'statistics',0,1,0,0,0,0),(288,'survey',2023,6,'surveyactivation',0,0,1,0,0,0),(289,'survey',2023,6,'surveycontent',1,1,1,1,1,1),(290,'survey',2023,6,'survey',0,1,0,0,0,0),(291,'survey',2023,6,'surveysecurity',1,1,1,1,0,0),(292,'survey',2023,6,'surveysettings',0,1,1,0,0,0),(293,'survey',2023,6,'surveylocale',0,1,1,0,0,0),(294,'survey',2023,6,'tokens',1,1,1,1,1,1),(296,'survey',239157,8,'assessments',1,1,1,1,0,0),(297,'survey',239157,8,'translations',0,1,1,0,0,0),(298,'survey',239157,8,'quotas',1,1,1,1,0,0),(299,'survey',239157,8,'responses',1,1,1,1,1,1),(300,'survey',239157,8,'statistics',0,1,0,0,0,0),(301,'survey',239157,8,'surveyactivation',0,0,1,0,0,0),(302,'survey',239157,8,'surveycontent',1,1,1,1,1,1),(303,'survey',239157,8,'survey',0,1,0,0,0,0),(304,'survey',239157,8,'surveysecurity',1,1,1,1,0,0),(305,'survey',239157,8,'surveysettings',0,1,1,0,0,0),(306,'survey',239157,8,'surveylocale',0,1,1,0,0,0),(307,'survey',239157,8,'tokens',1,1,1,1,1,1),(308,'global',0,12,'auth_db',0,1,0,0,0,0),(309,'template',0,12,'fruity',0,1,0,0,0,0),(310,'survey',964172,1,'assessments',1,1,1,1,0,0),(311,'survey',964172,1,'translations',0,1,1,0,0,0),(312,'survey',964172,1,'quotas',1,1,1,1,0,0),(313,'survey',964172,1,'responses',1,1,1,1,1,1),(314,'survey',964172,1,'statistics',0,1,0,0,0,0),(315,'survey',964172,1,'surveyactivation',0,0,1,0,0,0),(316,'survey',964172,1,'surveycontent',1,1,1,1,1,1),(317,'survey',964172,1,'survey',0,1,0,1,0,0),(318,'survey',964172,1,'surveysecurity',1,1,1,1,0,0),(319,'survey',964172,1,'surveysettings',0,1,1,0,0,0),(320,'survey',964172,1,'surveylocale',0,1,1,0,0,0),(321,'survey',964172,1,'tokens',1,1,1,1,1,1),(323,'survey',964172,12,'assessments',1,1,1,1,0,0),(324,'survey',964172,12,'translations',0,1,1,0,0,0),(325,'survey',964172,12,'quotas',1,1,1,1,0,0),(326,'survey',964172,12,'responses',1,1,1,1,1,1),(327,'survey',964172,12,'statistics',0,1,0,0,0,0),(328,'survey',964172,12,'surveyactivation',0,0,1,0,0,0),(329,'survey',964172,12,'surveycontent',1,1,1,1,1,1),(330,'survey',964172,12,'survey',0,1,0,1,0,0),(331,'survey',964172,12,'surveysecurity',1,1,1,1,0,0),(332,'survey',964172,12,'surveysettings',0,1,1,0,0,0),(333,'survey',964172,12,'surveylocale',0,1,1,0,0,0),(334,'survey',964172,12,'tokens',1,1,1,1,1,1),(335,'global',0,13,'auth_db',0,1,0,0,0,0),(336,'template',0,13,'fruity',0,1,0,0,0,0),(337,'survey',248687,1,'assessments',1,1,1,1,0,0),(338,'survey',248687,1,'translations',0,1,1,0,0,0),(339,'survey',248687,1,'quotas',1,1,1,1,0,0),(340,'survey',248687,1,'responses',1,1,1,1,1,1),(341,'survey',248687,1,'statistics',0,1,0,0,0,0),(342,'survey',248687,1,'surveyactivation',0,0,1,0,0,0),(343,'survey',248687,1,'surveycontent',1,1,1,1,1,1),(344,'survey',248687,1,'survey',0,1,0,1,0,0),(345,'survey',248687,1,'surveysecurity',1,1,1,1,0,0),(346,'survey',248687,1,'surveysettings',0,1,1,0,0,0),(347,'survey',248687,1,'surveylocale',0,1,1,0,0,0),(348,'survey',248687,1,'tokens',1,1,1,1,1,1),(350,'survey',248687,13,'assessments',1,1,1,1,0,0),(351,'survey',248687,13,'translations',0,1,1,0,0,0),(352,'survey',248687,13,'quotas',1,1,1,1,0,0),(353,'survey',248687,13,'responses',1,1,1,1,1,1),(354,'survey',248687,13,'statistics',0,1,0,0,0,0),(355,'survey',248687,13,'surveyactivation',0,0,1,0,0,0),(356,'survey',248687,13,'surveycontent',1,1,1,1,1,1),(357,'survey',248687,13,'survey',0,1,0,1,0,0),(358,'survey',248687,13,'surveysecurity',1,1,1,1,0,0),(359,'survey',248687,13,'surveysettings',0,1,1,0,0,0),(360,'survey',248687,13,'surveylocale',0,1,1,0,0,0),(361,'survey',248687,13,'tokens',1,1,1,1,1,1),(363,'survey',248687,11,'assessments',1,1,1,1,0,0),(364,'survey',248687,11,'translations',0,1,1,0,0,0),(365,'survey',248687,11,'quotas',1,1,1,1,0,0),(366,'survey',248687,11,'responses',1,1,1,1,1,1),(367,'survey',248687,11,'statistics',0,1,0,0,0,0),(368,'survey',248687,11,'surveyactivation',0,0,1,0,0,0),(369,'survey',248687,11,'surveycontent',1,1,1,1,1,1),(370,'survey',248687,11,'survey',0,1,0,1,0,0),(371,'survey',248687,11,'surveysecurity',1,1,1,1,0,0),(372,'survey',248687,11,'surveysettings',0,1,1,0,0,0),(373,'survey',248687,11,'surveylocale',0,1,1,0,0,0),(374,'survey',248687,11,'tokens',1,1,1,1,1,1),(376,'survey',248687,9,'assessments',1,1,1,1,0,0),(377,'survey',248687,9,'translations',0,1,1,0,0,0),(378,'survey',248687,9,'quotas',1,1,1,1,0,0),(379,'survey',248687,9,'responses',1,1,1,1,1,1),(380,'survey',248687,9,'statistics',0,1,0,0,0,0),(381,'survey',248687,9,'surveyactivation',0,0,1,0,0,0),(382,'survey',248687,9,'surveycontent',1,1,1,1,1,1),(383,'survey',248687,9,'survey',0,1,0,1,0,0),(384,'survey',248687,9,'surveysecurity',1,1,1,1,0,0),(385,'survey',248687,9,'surveysettings',0,1,1,0,0,0),(386,'survey',248687,9,'surveylocale',0,1,1,0,0,0),(387,'survey',248687,9,'tokens',1,1,1,1,1,1),(388,'survey',2024,1,'assessments',1,1,1,1,0,0),(389,'survey',2024,1,'translations',0,1,1,0,0,0),(390,'survey',2024,1,'quotas',1,1,1,1,0,0),(391,'survey',2024,1,'responses',1,1,1,1,1,1),(392,'survey',2024,1,'statistics',0,1,0,0,0,0),(393,'survey',2024,1,'surveyactivation',0,0,1,0,0,0),(394,'survey',2024,1,'surveycontent',1,1,1,1,1,1),(395,'survey',2024,1,'survey',0,1,0,1,0,0),(396,'survey',2024,1,'surveysecurity',1,1,1,1,0,0),(397,'survey',2024,1,'surveysettings',0,1,1,0,0,0),(398,'survey',2024,1,'surveylocale',0,1,1,0,0,0),(399,'survey',2024,1,'tokens',1,1,1,1,1,1),(400,'survey',2024,7,'assessments',1,1,1,1,0,0),(401,'survey',2024,7,'translations',0,1,1,0,0,0),(402,'survey',2024,7,'quotas',1,1,1,1,0,0),(403,'survey',2024,7,'responses',1,1,1,1,1,1),(404,'survey',2024,7,'statistics',0,1,0,0,0,0),(405,'survey',2024,7,'surveyactivation',0,0,1,0,0,0),(406,'survey',2024,7,'surveycontent',1,1,1,1,1,1),(407,'survey',2024,7,'survey',0,1,0,0,0,0),(408,'survey',2024,7,'surveysecurity',1,1,1,1,0,0),(409,'survey',2024,7,'surveysettings',0,1,1,0,0,0),(410,'survey',2024,7,'surveylocale',0,1,1,0,0,0),(411,'survey',2024,7,'tokens',1,1,1,1,1,1); -/*!40000 ALTER TABLE `limesurvey_permissions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_plugin_settings` --- - -DROP TABLE IF EXISTS `limesurvey_plugin_settings`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_plugin_settings` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `plugin_id` int(11) NOT NULL, - `model` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `model_id` int(11) DEFAULT NULL, - `key` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, - `value` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_plugin_settings` --- - -LOCK TABLES `limesurvey_plugin_settings` WRITE; -/*!40000 ALTER TABLE `limesurvey_plugin_settings` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_plugin_settings` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_plugins` --- - -DROP TABLE IF EXISTS `limesurvey_plugins`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_plugins` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, - `active` int(11) NOT NULL DEFAULT 0, - `version` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_plugins` --- - -LOCK TABLES `limesurvey_plugins` WRITE; -/*!40000 ALTER TABLE `limesurvey_plugins` DISABLE KEYS */; -INSERT INTO `limesurvey_plugins` VALUES (1,'Authdb',1,NULL),(2,'AuditLog',0,NULL),(3,'AuthLDAP',0,NULL),(4,'ComfortUpdateChecker',0,NULL),(5,'oldUrlCompat',0,NULL),(6,'Authwebserver',0,NULL),(7,'ExportSTATAxml',0,NULL),(8,'ExportR',0,NULL); -/*!40000 ALTER TABLE `limesurvey_plugins` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_question_attributes` --- - -DROP TABLE IF EXISTS `limesurvey_question_attributes`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_question_attributes` ( - `qaid` int(11) NOT NULL AUTO_INCREMENT, - `qid` int(11) NOT NULL DEFAULT 0, - `attribute` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `value` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `language` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`qaid`), - KEY `limesurvey_idx1_question_attributes` (`qid`), - KEY `limesurvey_idx2_question_attributes` (`attribute`) -) ENGINE=MyISAM AUTO_INCREMENT=255 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_question_attributes` --- - -LOCK TABLES `limesurvey_question_attributes` WRITE; -/*!40000 ALTER TABLE `limesurvey_question_attributes` DISABLE KEYS */; -INSERT INTO `limesurvey_question_attributes` VALUES (191,664,'max_subquestions','23',NULL),(144,541,'display_type','1',NULL),(147,540,'display_type','1',NULL),(142,536,'display_type','1',NULL),(141,529,'display_type','1',NULL),(140,528,'hide_tip','1',NULL),(139,528,'alphasort','1',NULL),(138,525,'text_input_columns','11',NULL),(137,525,'label_input_columns','1',NULL),(136,525,'display_rows','2',NULL),(135,515,'display_type','1',NULL),(134,509,'text_input_columns','11',NULL),(133,509,'label_input_columns','1',NULL),(132,509,'hide_tip','1',NULL),(131,509,'display_rows','2',NULL),(130,506,'other_replace_text','Other','en'),(129,505,'display_columns','3',NULL),(128,504,'hide_tip','1',NULL),(127,503,'hide_tip','1',NULL),(222,885,'other_replace_text','Other','en'),(254,883,'hide_tip','1',NULL),(253,882,'hide_tip','1',NULL),(215,828,'location_country','1',NULL),(214,828,'location_state','1',NULL),(213,828,'location_city','1',NULL),(218,826,'alphasort','1',NULL),(201,801,'location_mapzoom','8',NULL),(200,801,'location_nodefaultfromip','1',NULL),(199,801,'location_mapservice','100',NULL),(198,801,'location_country','1',NULL),(197,801,'location_city','1',NULL),(193,664,'max_subquestions','24',NULL),(192,799,'max_subquestions','24',NULL),(175,799,'max_answers','3',NULL),(176,799,'random_order','1',NULL),(178,656,'max_subquestions','15',NULL),(179,664,'max_subquestions','21',NULL),(180,799,'max_subquestions','21',NULL),(185,655,'max_subquestions','10',NULL),(186,655,'max_subquestions','10',NULL),(189,664,'max_subquestions','21',NULL),(190,799,'max_subquestions','21',NULL),(164,670,'display_type','1',NULL),(183,658,'alphasort','1',NULL),(184,658,'hide_tip','1',NULL),(162,659,'display_type','1',NULL),(177,655,'max_subquestions','10',NULL),(196,656,'random_order','1',NULL),(156,645,'display_type','1',NULL),(194,655,'max_answers','3',NULL),(195,656,'max_answers','3',NULL),(155,639,'text_input_columns','11',NULL),(154,639,'label_input_columns','1',NULL),(152,639,'display_rows','2',NULL),(153,639,'hide_tip','1',NULL),(151,636,'other_replace_text','Other','en'),(166,635,'display_columns','3',NULL),(148,633,'hide_tip','1',NULL),(149,634,'hide_tip','1',NULL),(251,907,'alphasort','1',NULL),(252,907,'hide_tip','1',NULL); -/*!40000 ALTER TABLE `limesurvey_question_attributes` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_questions` --- - -DROP TABLE IF EXISTS `limesurvey_questions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_questions` ( - `qid` int(11) NOT NULL AUTO_INCREMENT, - `parent_qid` int(11) NOT NULL DEFAULT 0, - `sid` int(11) NOT NULL DEFAULT 0, - `gid` int(11) NOT NULL DEFAULT 0, - `type` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'T', - `title` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `question` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, - `preg` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `help` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `other` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', - `mandatory` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `question_order` int(11) NOT NULL, - `language` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', - `scale_id` int(11) NOT NULL DEFAULT 0, - `same_default` int(11) NOT NULL DEFAULT 0, - `relevance` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `modulename` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`qid`,`language`), - KEY `limesurvey_idx1_questions` (`sid`), - KEY `limesurvey_idx2_questions` (`gid`), - KEY `limesurvey_idx3_questions` (`type`), - KEY `limesurvey_idx4_questions` (`title`), - KEY `limesurvey_idx5_questions` (`parent_qid`) -) ENGINE=MyISAM AUTO_INCREMENT=1306 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_questions` --- - -LOCK TABLES `limesurvey_questions` WRITE; -/*!40000 ALTER TABLE `limesurvey_questions` DISABLE KEYS */; -INSERT INTO `limesurvey_questions` VALUES (555,505,2022,31,'T','SQ012','Developer, mobile',NULL,'','N','N',12,'en',0,0,'1',''),(554,505,2022,31,'T','SQ007','Developer, desktop or enterprise applications',NULL,'','N','N',7,'en',0,0,'1',''),(553,505,2022,31,'T','SQ005','DevOps specialist',NULL,'','N','N',5,'en',0,0,'1',''),(552,505,2022,31,'T','SQ004','Data scientist or machine learning specialist',NULL,'','N','N',4,'en',0,0,'1',''),(551,505,2022,31,'T','SQ023','System administrator',NULL,'','N','N',23,'en',0,0,'1',''),(549,505,2022,31,'T','SQ006','Developer, back-end',NULL,'','N','N',6,'en',0,0,'1',''),(550,505,2022,31,'T','SQ017','Linux enthusiast',NULL,'','N','N',17,'en',0,0,'1',''),(548,505,2022,31,'T','SQ009','Developer, front-end',NULL,'','N','N',9,'en',0,0,'1',''),(547,505,2022,31,'T','SQ010','Developer, full-stack',NULL,'','N','N',10,'en',0,0,'1',''),(546,0,2022,34,'M','experimentalNix','Which experimental Nix features do you use?','','','Y','N',15,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',''),(545,0,2022,33,'T','triedStopTrialNixOS','What would cause you to try NixOS again?','','','N','N',4,'en',0,0,'((2022X33X515.NAOK == \"Y\") and (2022X33X529.NAOK == \"N\"))',''),(544,0,2022,34,'M','useNix','What do you use Nix for?','','','Y','N',11,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',NULL),(543,0,2022,34,'T','triedStopTrialNix','What would cause you to try Nix again?','','','N','N',4,'en',0,0,'((2022X34X540.NAOK == \"N\") and (2022X34X541.NAOK == \"Y\"))',''),(542,0,2022,34,'T','trialNix','What would cause you to try Nix?','','','N','N',2,'en',0,0,'((2022X34X540.NAOK == \"N\") and (2022X34X541.NAOK == \"N\"))',NULL),(541,0,2022,34,'Y','triedStopNix','Did you try and stop using Nix at any point in the past?','','','N','N',1,'en',0,0,'((2022X34X540.NAOK == \"N\"))',''),(540,0,2022,34,'Y','regularUseNix','Do you regularly use Nix in any form (including NixOS)?','','','N','N',0,'en',0,0,'1',''),(539,0,2022,35,'T','triedStopOther','What other projects/products in the Nix ecosystem that we haven’t asked about have you tried and stopped using?','','','N','N',1,'en',0,0,'1',''),(538,0,2022,35,'T','regularOther','What other projects/products in the Nix ecosystem that we haven’t asked about do you use regularly?','','','N','N',0,'en',0,0,'1',''),(537,0,2022,34,'T','notContribNix','What’s stopping you from contributing to Nixpkgs?','','','N','N',20,'en',0,0,'((2022X34X536.NAOK == \"N\") and (2022X34X540.NAOK == \"Y\"))',''),(536,0,2022,34,'Y','contribNix','Do you contribute to Nixpkgs?','','','N','N',19,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',''),(747,674,2023,39,'T','SQ005','System configuration and administration (nixos-rebuild, home-manager, nix-darwin)',NULL,'','N','N',4,'en',0,0,'1',NULL),(535,0,2022,34,'M','extendNix','How do you extend Nixpkgs?','','','Y','N',18,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',NULL),(534,0,2022,34,'T','twonixNix','Which “2nix” tools do you use? (Please provide URLs if possible)','','','N','N',17,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',NULL),(533,0,2022,34,'M','ciNix','What CI do you use with Nix?','','','Y','N',16,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',NULL),(532,0,2022,34,'M','environNix','In what environments do you use Nix?','','','Y','N',10,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',NULL),(531,0,2022,34,'M','osNix','On which platforms do you use Nix? (Apart from NixOS. We\'ll ask about NixOS later.)','','','Y','N',9,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',''),(530,0,2022,33,'T','trialNixOS','What would cause you to try NixOS?','','','N','N',2,'en',0,0,'((2022X33X515.NAOK == \"N\") and (2022X33X529.NAOK == \"N\"))',NULL),(529,0,2022,33,'Y','regularNixOS','Do you use NixOS regularly?','','','N','N',0,'en',0,0,'1',''),(528,0,2022,31,'!','region','Which region do you live in?','','','N','N',0,'en',0,0,'1',''),(748,643,2023,38,'T','SQ001','nixos-rebuild',NULL,'','N','N',1,'en',0,0,'1',NULL),(527,0,2022,34,'T','insteadNix','If Nix didn\'t exist, what would you use instead?','','','N','N',14,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',''),(526,0,2022,34,'T','dislikeNix','If you had a magic wand, what would you add, change, or remove from Nix?','','','N','N',13,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',''),(525,0,2022,34,'Q','likeNix','

What are the top three features/functionalities provided to you by Nix?

\n\n

Please order them from most to least important.

\n','','','N','N',12,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',''),(524,0,2022,34,'T','rznNix','Why did you start using Nix? Tell us the story.','','','N','N',8,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',''),(523,0,2022,34,'L','durationNix','How long have you been using Nix?','','','N','N',7,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',''),(522,0,2022,34,'M','contextNix','In what contexts do you use Nix?','','','Y','N',6,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',''),(521,0,2022,34,'L','frequencyNix','How often do you use Nix?','','','N','N',5,'en',0,0,'((2022X34X540.NAOK == \"Y\"))',''),(520,0,2022,33,'L','durationNixOS','How long have you been using NixOS?','','','N','N',7,'en',0,0,'((2022X33X529.NAOK == \"Y\"))',''),(519,0,2022,33,'M','contextNixOS','In what contexts do you use NixOS?','','','Y','N',6,'en',0,0,'((2022X33X529.NAOK == \"Y\"))',''),(518,0,2022,33,'L','frequencyNixOS','How often do you use NixOS?','','','N','N',5,'en',0,0,'((2022X33X529.NAOK == \"Y\"))',''),(517,0,2022,34,'T','triedStopRznNix','Why did you stop using Nix?','','','N','N',3,'en',0,0,'((2022X34X540.NAOK == \"N\") and (2022X34X541.NAOK == \"Y\"))',''),(516,0,2022,33,'T','triedStopRznNixOS','Why did you stop using NixOS?','','','N','N',3,'en',0,0,'((2022X33X515.NAOK == \"Y\") and (2022X33X529.NAOK == \"N\"))',''),(515,0,2022,33,'Y','triedStopNixOS','Did you try and stop using NixOS at any point in the past?','','','N','N',1,'en',0,0,'((2022X33X529.NAOK == \"N\"))',''),(514,0,2022,33,'M','desktopNixOS','Which desktop environment or window managers do you use?','','','Y','N',14,'en',0,0,'((2022X33X529.NAOK == \"Y\"))',''),(513,0,2022,33,'M','deploymentsNixOS','Which deployment tools do you use with NixOS?','','','Y','N',13,'en',0,0,'((2022X33X529.NAOK == \"Y\"))',''),(750,643,2023,38,'T','SQ003','morph',NULL,'','N','N',3,'en',0,0,'1',NULL),(512,0,2022,32,'T','end','Anything else that you want to tell us?','','','N','N',0,'en',0,0,'1',''),(749,643,2023,38,'T','SQ002','NixOps',NULL,'','N','N',2,'en',0,0,'1',NULL),(511,0,2022,33,'T','insteadNixOS','If NixOS didn\'t exist, what would you use instead?','','','N','N',12,'en',0,0,'((2022X33X529.NAOK == \"Y\"))',''),(510,0,2022,33,'T','dislikeNixOS','If you had a magic wand, what would you add, change, or remove from NixOS?','','','N','N',11,'en',0,0,'((2022X33X529.NAOK == \"Y\"))',''),(509,0,2022,33,'Q','likeNixOS','

What are the top three features/functionalities provided to you by NixOS?

\n\n

Please order them from most to least important.

\n','','','N','N',10,'en',0,0,'((2022X33X529.NAOK == \"Y\"))',''),(508,0,2022,33,'M','environNixOS','In what environments do you use NixOS?','','','Y','N',9,'en',0,0,'((2022X33X529.NAOK == \"Y\"))',''),(507,0,2022,33,'T','rznNixOS','Why did you start using NixOS? Tell us the story.','','','N','N',8,'en',0,0,'((2022X33X529.NAOK == \"Y\"))',''),(506,0,2022,31,'M','os','Which operating systems do you use at least weekly? (We’ll ask about Nix/NixOS later)','','','Y','N',4,'en',0,0,'1',''),(503,0,2022,31,'!','age','How old are you?','','','N','N',1,'en',0,0,'1',''),(504,0,2022,31,'L','gender','What is your gender identity?','','','Y','N',2,'en',0,0,'1',''),(505,0,2022,31,'M','occupation','Which of the following best describes your current job? ','','','Y','N',3,'en',0,0,'1',''),(793,676,2023,39,'T','SQ009','Dynamic derivation support (dynamic-derivations)',NULL,NULL,'N',NULL,9,'en',0,0,'1',NULL),(794,676,2023,39,'T','SQ010','Discarding build output references (discard-references)',NULL,NULL,'N',NULL,10,'en',0,0,'1',NULL),(781,673,2023,39,'T','SQ001','Better learning resources and documentation',NULL,NULL,'N',NULL,1,'en',0,0,'1',NULL),(782,673,2023,39,'T','SQ002','More packages',NULL,NULL,'N',NULL,2,'en',0,0,'1',NULL),(783,673,2023,39,'T','SQ003','Better performance',NULL,NULL,'N',NULL,3,'en',0,0,'1',NULL),(784,673,2023,39,'T','SQ004','Support in the workplace',NULL,NULL,'N',NULL,4,'en',0,0,'1',NULL),(785,673,2023,39,'T','SQ005','Availability of ready-made solution for my use case',NULL,NULL,'N',NULL,5,'en',0,0,'1',NULL),(792,676,2023,39,'T','SQ008','Overriding daemon trust settings (daemon-trust-override)',NULL,NULL,'N',NULL,8,'en',0,0,'1',NULL),(791,676,2023,39,'T','SQ007','Cgroup support (cgroups)',NULL,NULL,'N',NULL,7,'en',0,0,'1',NULL),(788,674,2023,39,'T','SQ006','Nix language for programming tasks (nix repl, nix-instantiate, nix eval)',NULL,NULL,'N',NULL,6,'en',0,0,'1',NULL),(789,0,2023,39,'T','wishlistOther','Specify the other change you would like to see.','','','N','N',15,'en',0,0,'((2023X39X6561.NAOK == \"A15\")) or ((2023X39X6562.NAOK == \"A15\") and (2023X39X6563.NAOK == \"A15\"))',NULL),(787,647,2023,39,'T','SQ010','Security concerns',NULL,NULL,'N',NULL,9,'en',0,0,'1',NULL),(770,672,2023,39,'M','SQ002','A gentle introduction',NULL,NULL,'N',NULL,3,'en',0,0,'1',''),(764,0,2023,39,'L','whichChannel','Which nixpkgs channel do you mainly use?','','','N','N',17,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(762,661,2023,39,'T','SQ006','Containers',NULL,'','N','N',5,'en',0,0,'1',NULL),(761,676,2023,39,'T','SQ002','Flakes and related commands (flakes)',NULL,'','N','N',4,'en',0,0,'1',''),(760,676,2023,39,'T','SQ003','Experimental Nix commands (nix-command)',NULL,'','N','N',5,'en',0,0,'1',''),(759,676,2023,39,'T','SQ004','Disabling URL literals (no-url-literals)',NULL,'','N','N',1,'en',0,0,'1',''),(758,676,2023,39,'T','SQ005','Content-Addressable Derivations (ca-derivations)',NULL,'','N','N',2,'en',0,0,'1',''),(756,644,2023,38,'T','SQ008','XFCE',NULL,'','N','N',3,'en',0,0,'1',''),(757,676,2023,39,'T','SQ001','Recursive Nix (recursive-nix)',NULL,'','N','N',3,'en',0,0,'1',''),(755,644,2023,38,'T','SQ002','KDE',NULL,'','N','N',2,'en',0,0,'1',''),(754,644,2023,38,'T','SQ001','Gnome',NULL,'','N','N',1,'en',0,0,'1',''),(753,643,2023,38,'T','SQ006','Homegrown solution',NULL,'','N','N',6,'en',0,0,'1',NULL),(752,643,2023,38,'T','SQ005','colmena',NULL,'','N','N',5,'en',0,0,'1',NULL),(751,643,2023,38,'T','SQ004','deploy-rs',NULL,'','N','N',4,'en',0,0,'1',NULL),(632,531,2022,34,'T','SQ006','Containers',NULL,'','N','N',5,'en',0,0,'1',NULL),(631,546,2022,34,'T','SQ002','Flakes and related commands (flakes)',NULL,'','N','N',5,'en',0,0,'1',''),(630,546,2022,34,'T','SQ003','Experimental Nix 2.4 commands (nix-commands)',NULL,'','N','N',4,'en',0,0,'1',''),(629,546,2022,34,'T','SQ004','Disabling URL literals (no-url-literals)',NULL,'','N','N',3,'en',0,0,'1',''),(628,546,2022,34,'T','SQ005','Content-Addressable Derivations (ca-derivations)',NULL,'','N','N',2,'en',0,0,'1',''),(626,514,2022,33,'T','SQ008','XFCE',NULL,'','N','N',3,'en',0,0,'1',''),(627,546,2022,34,'T','SQ001','Recursive Nix (recursive-nix)',NULL,'','N','N',1,'en',0,0,'1',''),(625,514,2022,33,'T','SQ002','KDE',NULL,'','N','N',2,'en',0,0,'1',''),(624,514,2022,33,'T','SQ001','Gnome',NULL,'','N','N',1,'en',0,0,'1',''),(623,513,2022,33,'T','SQ006','Homegrown solution',NULL,'','N','N',6,'en',0,0,'1',NULL),(622,513,2022,33,'T','SQ005','colmena',NULL,'','N','N',5,'en',0,0,'1',NULL),(621,513,2022,33,'T','SQ004','deploy-rs',NULL,'','N','N',4,'en',0,0,'1',NULL),(620,513,2022,33,'T','SQ003','morph',NULL,'','N','N',3,'en',0,0,'1',NULL),(619,513,2022,33,'T','SQ002','NixOps',NULL,'','N','N',2,'en',0,0,'1',NULL),(618,513,2022,33,'T','SQ001','nixos-rebuild',NULL,'','N','N',1,'en',0,0,'1',NULL),(617,544,2022,34,'T','SQ005','Declarative system or server configuration/management (e.g. NixOS)',NULL,'','N','N',5,'en',0,0,'1',NULL),(616,544,2022,34,'T','SQ004','Build container images',NULL,'','N','N',4,'en',0,0,'1',NULL),(615,544,2022,34,'T','SQ003','Build and package software (e.g. nix-build)',NULL,'','N','N',3,'en',0,0,'1',NULL),(614,544,2022,34,'T','SQ002','Declarative environment management (e.g. nix-shell, nix-dev)',NULL,'','N','N',2,'en',0,0,'1',NULL),(613,544,2022,34,'T','SQ001','Imperative package management (e.g. nix-env)',NULL,'','N','N',1,'en',0,0,'1',NULL),(612,535,2022,34,'T','SQ003','Maintaining a fork',NULL,'','N','N',3,'en',0,0,'1',NULL),(611,535,2022,34,'T','SQ002','Flakes',NULL,'','N','N',2,'en',0,0,'1',NULL),(610,535,2022,34,'T','SQ001','Overlays',NULL,'','N','N',1,'en',0,0,'1',NULL),(609,533,2022,34,'T','SQ007','buildKite',NULL,'','N','N',7,'en',0,0,'1',NULL),(608,533,2022,34,'T','SQ006','Circle CI',NULL,'','N','N',6,'en',0,0,'1',NULL),(607,533,2022,34,'T','SQ005','Github Actions',NULL,'','N','N',5,'en',0,0,'1',NULL),(606,533,2022,34,'T','SQ004','Jenkins',NULL,'','N','N',4,'en',0,0,'1',NULL),(605,533,2022,34,'T','SQ003','Gitlab CI',NULL,'','N','N',3,'en',0,0,'1',NULL),(604,533,2022,34,'T','SQ002','Hercules',NULL,'','N','N',2,'en',0,0,'1',NULL),(603,533,2022,34,'T','SQ001','Hydra',NULL,'','N','N',1,'en',0,0,'1',NULL),(602,532,2022,34,'T','SQ006','Embedded/IoT devices (e.g. RPi)',NULL,'','N','N',6,'en',0,0,'1',''),(601,532,2022,34,'T','SQ005','Mobile devices',NULL,'','N','N',5,'en',0,0,'1',''),(600,532,2022,34,'T','SQ004','Production servers',NULL,'','N','N',4,'en',0,0,'1',''),(599,532,2022,34,'T','SQ003','Home servers',NULL,'','N','N',3,'en',0,0,'1',''),(598,532,2022,34,'T','SQ002','Continuous integration servers',NULL,'','N','N',2,'en',0,0,'1',''),(597,532,2022,34,'T','SQ001','Development machines',NULL,'','N','N',1,'en',0,0,'1',''),(596,531,2022,34,'T','SQ005','Windows Subsystem for Linux (WSL)',NULL,'','N','N',4,'en',0,0,'1',''),(595,531,2022,34,'T','SQ004','FreeBSD',NULL,'','N','N',3,'en',0,0,'1',''),(594,531,2022,34,'T','SQ003','GNU/Linux',NULL,'','N','N',2,'en',0,0,'1',''),(593,531,2022,34,'T','SQ002','MacOS',NULL,'','N','N',1,'en',0,0,'1',''),(592,508,2022,33,'T','SQ006','Embedded/IoT devices (e.g. RPi)',NULL,'','N','N',6,'en',0,0,'1',''),(591,508,2022,33,'T','SQ005','Mobile devices',NULL,'','N','N',5,'en',0,0,'1',''),(590,508,2022,33,'T','SQ004','Production servers',NULL,'','N','N',4,'en',0,0,'1',''),(589,508,2022,33,'T','SQ003','Home servers',NULL,'','N','N',3,'en',0,0,'1',''),(588,508,2022,33,'T','SQ002','Continuous integration servers',NULL,'','N','N',2,'en',0,0,'1',''),(587,508,2022,33,'T','SQ001','Development machines',NULL,'','N','N',1,'en',0,0,'1',''),(586,506,2022,31,'T','SQ005','FreeBSD',NULL,'','N','N',5,'en',0,0,'1',''),(585,505,2022,31,'T','SQ022','Student',NULL,'','N','N',22,'en',0,0,'1',NULL),(584,525,2022,34,'T','SQ003','3',NULL,'','N','N',3,'en',0,0,'1',''),(582,509,2022,33,'T','SQ003','3',NULL,'','N','N',4,'en',0,0,'1',''),(583,522,2022,34,'M','SQ003','For school projects',NULL,'','N','N',3,'en',0,0,'1',''),(700,636,2023,36,'T','SQ002','Windows',NULL,'','N','N',1,'en',0,0,'1',''),(701,636,2023,36,'T','SQ003','Windows Subsystem for Linux (WSL)',NULL,'','N','N',2,'en',0,0,'1',''),(702,636,2023,36,'T','SQ004','GNU/Linux',NULL,'','N','N',3,'en',0,0,'1',''),(703,639,2023,38,'Q','SQ001','1',NULL,'','N','N',1,'en',0,0,'1',''),(576,522,2022,34,'M','SQ001','For work',NULL,'','N','N',1,'en',0,0,'1',''),(577,525,2022,34,'Q','SQ001','1',NULL,'','N','N',1,'en',0,0,'1',''),(574,509,2022,33,'Q','SQ002','2',NULL,'','N','N',2,'en',0,0,'1',''),(575,519,2022,33,'M','SQ001','For work',NULL,'','N','N',1,'en',0,0,'1',''),(573,509,2022,33,'Q','SQ001','1',NULL,'','N','N',1,'en',0,0,'1',''),(572,506,2022,31,'T','SQ004','GNU/Linux',NULL,'','N','N',4,'en',0,0,'1',''),(570,506,2022,31,'T','SQ002','Windows',NULL,'','N','N',2,'en',0,0,'1',''),(571,506,2022,31,'T','SQ003','Windows Subsystem for Linux (WSL)',NULL,'','N','N',3,'en',0,0,'1',''),(746,674,2023,39,'T','SQ004','Building container images (nix bundle)',NULL,'','N','N',5,'en',0,0,'1',NULL),(745,674,2023,39,'T','SQ003','Building and packaging software (nix-build, nix build)',NULL,'','N','N',3,'en',0,0,'1',NULL),(744,674,2023,39,'T','SQ002','Development environments (nix-shell, nix shell)',NULL,'','N','N',2,'en',0,0,'1',NULL),(743,674,2023,39,'T','SQ001','Install software as a user (nix-env, nix-profile)',NULL,'','N','N',1,'en',0,0,'1',NULL),(742,665,2023,39,'T','SQ003','Maintaining a fork',NULL,'','N','N',3,'en',0,0,'1',NULL),(718,638,2023,38,'T','SQ002','Continuous integration servers',NULL,'','N','N',2,'en',0,0,'1',''),(740,665,2023,39,'T','SQ001','Overlays',NULL,'','N','N',1,'en',0,0,'1',NULL),(741,665,2023,39,'T','SQ002','Flakes',NULL,'','N','N',2,'en',0,0,'1',NULL),(739,663,2023,39,'T','SQ007','buildKite',NULL,'','N','N',7,'en',0,0,'1',NULL),(737,663,2023,39,'T','SQ005','Github Actions',NULL,'','N','N',5,'en',0,0,'1',NULL),(736,663,2023,39,'T','SQ004','Jenkins',NULL,'','N','N',4,'en',0,0,'1',NULL),(735,663,2023,39,'T','SQ003','Gitlab CI',NULL,'','N','N',3,'en',0,0,'1',NULL),(733,663,2023,39,'T','SQ001','Hydra',NULL,'','N','N',1,'en',0,0,'1',NULL),(731,662,2023,39,'T','SQ005','Mobile devices',NULL,'','N','N',5,'en',0,0,'1',''),(728,662,2023,39,'T','SQ002','Continuous integration servers',NULL,'','N','N',3,'en',0,0,'1',''),(729,662,2023,39,'T','SQ003','Home servers',NULL,'','N','N',2,'en',0,0,'1',''),(730,662,2023,39,'T','SQ004','Production servers',NULL,'','N','N',4,'en',0,0,'1',''),(727,662,2023,39,'T','SQ001','Laptops, Desktops, Workstations, Development machines',NULL,'','N','N',1,'en',0,0,'1',''),(726,661,2023,39,'T','SQ005','Windows Subsystem for Linux (WSL)',NULL,'','N','N',4,'en',0,0,'1',''),(724,661,2023,39,'T','SQ003','GNU/Linux',NULL,'','N','N',2,'en',0,0,'1',''),(721,638,2023,38,'T','SQ005','Mobile devices',NULL,'','N','N',5,'en',0,0,'1',''),(722,638,2023,38,'T','SQ006','Embedded/IoT devices',NULL,'','N','N',6,'en',0,0,'1',''),(720,638,2023,38,'T','SQ004','Production servers',NULL,'','N','N',4,'en',0,0,'1',''),(719,638,2023,38,'T','SQ003','Home servers',NULL,'','N','N',3,'en',0,0,'1',''),(694,635,2023,36,'T','SQ016','Engineer, site reliability',NULL,'','N','N',16,'en',0,0,'1',''),(695,635,2023,36,'T','SQ020','Scientist',NULL,'','N','N',20,'en',0,0,'1',''),(569,506,2022,31,'T','SQ001','MacOS',NULL,'','N','N',1,'en',0,0,'1',''),(667,0,2023,39,'T','notContribNix','What’s stopping you from contributing to Nixpkgs?','','','N','N',24,'en',0,0,'((2023X39X670.NAOK == \"Y\") and (2023X39X800.NAOK == \"A1\" or 2023X39X800.NAOK == \"A2\"))',''),(581,519,2022,33,'T','SQ003','For school projects',NULL,'','N','N',4,'en',0,0,'1',''),(580,519,2022,33,'T','SQ002','For personal projects',NULL,'','N','N',2,'en',0,0,'1',''),(579,525,2022,34,'Q','SQ002','2',NULL,'','N','N',2,'en',0,0,'1',''),(578,522,2022,34,'M','SQ002','For personal projects',NULL,'','N','N',2,'en',0,0,'1',''),(568,505,2022,31,'T','SQ015','Engineer, data',NULL,'','N','N',15,'en',0,0,'1',''),(567,505,2022,31,'T','SQ003','Data or business analyst',NULL,'','N','N',3,'en',0,0,'1',''),(565,505,2022,31,'T','SQ020','Scientist',NULL,'','N','N',20,'en',0,0,'1',''),(564,505,2022,31,'T','SQ016','Engineer, site reliability',NULL,'','N','N',16,'en',0,0,'1',''),(773,647,2023,39,'T','SQ001','Packages I needed were not available',NULL,NULL,'N',NULL,1,'en',0,0,'1',''),(665,0,2023,39,'M','extendNix','How do you extend Nixpkgs?','','','Y','N',22,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',NULL),(563,505,2022,31,'T','SQ021','Senior Executive (C-Suite, VP, etc.)',NULL,'','N','N',21,'en',0,0,'1',''),(562,505,2022,31,'T','SQ001','Academic researcher',NULL,'','N','N',1,'en',0,0,'1',''),(717,638,2023,38,'T','SQ001','Laptops, Desktops, Workstations, Development machines',NULL,'','N','N',1,'en',0,0,'1',''),(715,635,2023,36,'T','SQ022','Student',NULL,'','N','N',22,'en',0,0,'1',''),(713,652,2023,39,'M','SQ003','For school projects',NULL,'','N','N',3,'en',0,0,'1',''),(712,639,2023,38,'T','SQ003','3',NULL,'','N','N',4,'en',0,0,'1',''),(711,649,2023,38,'T','SQ003','For school projects',NULL,'','N','N',4,'en',0,0,'1',''),(710,649,2023,38,'T','SQ002','For personal projects',NULL,'','N','N',2,'en',0,0,'1',''),(686,635,2023,36,'T','SQ008','Developer, embedded applications or devices',NULL,'','N','N',8,'en',0,0,'1',''),(674,0,2023,39,'M','useNix','What do you use Nix for?','','','Y','N',12,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',NULL),(672,0,2023,39,'M','trialNix','What would cause you to try Nix?','','','Y','N',3,'en',0,0,'((2023X39X670.NAOK == \"N\") and (2023X39X671.NAOK == \"N\"))',''),(670,0,2023,39,'Y','regularUseNix','Do you regularly use Nix in any form (including NixOS)?','','','N','N',1,'en',0,0,'1',''),(738,663,2023,39,'T','SQ006','Circle CI',NULL,'','N','N',6,'en',0,0,'1',NULL),(734,663,2023,39,'T','SQ002','Hercules',NULL,'','N','N',2,'en',0,0,'1',NULL),(732,662,2023,39,'T','SQ006','Embedded/IoT devices',NULL,'','N','N',6,'en',0,0,'1',''),(725,661,2023,39,'T','SQ004','FreeBSD',NULL,'','N','N',3,'en',0,0,'1',''),(723,661,2023,39,'T','SQ002','MacOS',NULL,'','N','N',1,'en',0,0,'1',''),(716,636,2023,36,'T','SQ005','FreeBSD',NULL,'','N','N',5,'en',0,0,'1',''),(683,635,2023,36,'T','SQ005','DevOps specialist',NULL,'','N','N',5,'en',0,0,'1',''),(639,0,2023,38,'Q','likeNixOS','

What are the top three features/functionalities provided to you by NixOS?

\n\n

Please order them from most to least important.

\n','','','N','N',10,'en',0,0,'((2023X38X659.NAOK == \"Y\"))',''),(708,652,2023,39,'M','SQ002','For personal projects',NULL,'','N','N',2,'en',0,0,'1',''),(688,635,2023,36,'T','SQ019','Product manager',NULL,'','N','N',19,'en',0,0,'1',''),(689,635,2023,36,'T','SQ011','Developer, game or graphics',NULL,'','N','N',11,'en',0,0,'1',''),(561,505,2022,31,'T','SQ002','Database administrator',NULL,'','N','N',2,'en',0,0,'1',''),(560,505,2022,31,'T','SQ014','Educator',NULL,'','N','N',14,'en',0,0,'1',''),(559,505,2022,31,'T','SQ011','Developer, game or graphics',NULL,'','N','N',11,'en',0,0,'1',''),(558,505,2022,31,'T','SQ019','Product manager',NULL,'','N','N',19,'en',0,0,'1',''),(557,505,2022,31,'T','SQ013','Developer, QA or test',NULL,'','N','N',13,'en',0,0,'1',''),(705,649,2023,38,'M','SQ001','For work',NULL,'','N','N',1,'en',0,0,'1',''),(706,652,2023,39,'M','SQ001','For work',NULL,'','N','N',1,'en',0,0,'1',''),(704,639,2023,38,'Q','SQ002','2',NULL,'','N','N',2,'en',0,0,'1',''),(699,636,2023,36,'T','SQ001','MacOS',NULL,'','N','N',4,'en',0,0,'1',''),(698,635,2023,36,'T','SQ015','Engineer, data',NULL,'','N','N',15,'en',0,0,'1',''),(697,635,2023,36,'T','SQ003','Data or business analyst',NULL,'','N','N',3,'en',0,0,'1',''),(566,505,2022,31,'T','SQ018','Marketing or sales professional',NULL,'','N','N',18,'en',0,0,'1',''),(696,635,2023,36,'T','SQ018','Marketing or sales professional',NULL,'','N','N',18,'en',0,0,'1',''),(693,635,2023,36,'T','SQ021','Senior Executive (C-Suite, VP, etc.)',NULL,'','N','N',21,'en',0,0,'1',''),(691,635,2023,36,'T','SQ002','Database administrator',NULL,'','N','N',2,'en',0,0,'1',''),(692,635,2023,36,'T','SQ001','Academic researcher',NULL,'','N','N',1,'en',0,0,'1',''),(690,635,2023,36,'T','SQ014','Educator',NULL,'','N','N',14,'en',0,0,'1',''),(687,635,2023,36,'T','SQ013','Developer, QA or test',NULL,'','N','N',13,'en',0,0,'1',''),(685,635,2023,36,'T','SQ012','Developer, mobile',NULL,'','N','N',12,'en',0,0,'1',''),(684,635,2023,36,'T','SQ007','Developer, desktop or enterprise applications',NULL,'','N','N',7,'en',0,0,'1',''),(677,635,2023,36,'T','SQ010','Developer, full-stack',NULL,'','N','N',10,'en',0,0,'1',''),(678,635,2023,36,'T','SQ009','Developer, front-end',NULL,'','N','N',9,'en',0,0,'1',''),(679,635,2023,36,'T','SQ006','Developer, back-end',NULL,'','N','N',6,'en',0,0,'1',''),(680,635,2023,36,'T','SQ017','Linux enthusiast',NULL,'','N','N',17,'en',0,0,'1',''),(681,635,2023,36,'T','SQ023','System administrator',NULL,'','N','N',23,'en',0,0,'1',''),(682,635,2023,36,'T','SQ004','Data scientist or machine learning specialist',NULL,'','N','N',4,'en',0,0,'1',''),(776,647,2023,39,'T','SQ005','No support in the workplace',NULL,NULL,'N',NULL,4,'en',0,0,'1',''),(777,647,2023,39,'T','SQ006','Problems with installing or deploying Nix',NULL,NULL,'N',NULL,5,'en',0,0,'1',''),(676,0,2023,39,'M','experimentalNix','Which experimental Nix features do you use?','','','Y','N',18,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(675,0,2023,38,'T','triedStopTrialNixOS','What would cause you to try NixOS again?','','','N','N',4,'en',0,0,'((2023X38X645.NAOK == \"Y\") and (2023X38X659.NAOK == \"N\"))',''),(775,647,2023,39,'T','SQ003','Performance issues',NULL,NULL,'N',NULL,3,'en',0,0,'1',''),(673,0,2023,39,'M','triedStopTrialNix','What would cause you to try Nix again?','','','Y','N',5,'en',0,0,'((2023X39X670.NAOK == \"N\") and (2023X39X671.NAOK == \"Y\"))',''),(671,0,2023,39,'Y','triedStopNix','Did you try and stop using Nix at any point in the past?','','','N','N',2,'en',0,0,'((2023X39X670.NAOK == \"N\"))',''),(669,0,2023,40,'T','triedStopOther','What other projects/products in the Nix ecosystem that we haven’t asked about have you tried and stopped using?','','','N','N',1,'en',0,0,'1',''),(668,0,2023,40,'T','regularOther','What other projects/products in the Nix ecosystem that we haven’t asked about do you use regularly?','','','N','N',0,'en',0,0,'1',''),(774,647,2023,39,'T','SQ002','It took too much time to get things done',NULL,NULL,'N',NULL,2,'en',0,0,'1',''),(664,0,2023,39,'R','twonixNix','Which programming languages do you use in combination with Nix? Pick only the ones relevant for you. Order from most to least important.','','','N','N',20,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(663,0,2023,39,'M','ciNix','What CI do you use with Nix?','','','Y','N',19,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',NULL),(662,0,2023,39,'M','environNix','In what environments do you use Nix?','','','Y','N',11,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',NULL),(778,647,2023,39,'T','SQ007','Limited support for graphical applications',NULL,NULL,'N',NULL,6,'en',0,0,'1',''),(661,0,2023,39,'M','osNix','On which platforms do you use Nix? (Apart from NixOS. We\'ll ask about NixOS later.)','','','Y','N',10,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(660,0,2023,38,'T','trialNixOS','What would cause you to try NixOS?','','','N','N',2,'en',0,0,'((2023X38X645.NAOK == \"N\") and (2023X38X659.NAOK == \"N\"))',NULL),(772,672,2023,39,'M','SQ003','General curiosity',NULL,NULL,'N',NULL,4,'en',0,0,'1',''),(659,0,2023,38,'Y','regularNixOS','Do you use NixOS regularly?','','','N','N',0,'en',0,0,'1',''),(658,0,2023,36,'!','region','Which region do you live in?','','','N','N',0,'en',0,0,'1',''),(771,672,2023,39,'M','SQ004','Following a recommendation',NULL,NULL,'N',NULL,2,'en',0,0,'1',''),(657,0,2023,39,'T','insteadNix','If Nix didn\'t exist, what would you use instead?','','','N','N',16,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(779,647,2023,39,'T','SQ008','Found a better solution',NULL,NULL,'N',NULL,7,'en',0,0,'1',''),(656,0,2023,39,'R','dislikeNix','Which changes to Nix would you most like to see implemented? Rank from most to least important for you.','','','N','N',14,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(655,0,2023,39,'R','likeNix','

Of the features that Nix currently provides, which of them are most important for you?

\r\n','','','N','N',13,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(654,0,2023,39,'T','rznNix','Why did you start using Nix? Tell us the story.','','','N','N',9,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(780,647,2023,39,'T','SQ009','Too hard to understand',NULL,NULL,'N',NULL,8,'en',0,0,'1',''),(653,0,2023,39,'L','durationNix','How long have you been using Nix?','','','N','N',8,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(786,673,2023,39,'T','SQ006','',NULL,NULL,'N',NULL,6,'en',0,0,'1',NULL),(652,0,2023,39,'M','contextNix','In what contexts do you use Nix?','','','Y','N',7,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(651,0,2023,39,'L','frequencyNix','How often do you use Nix?','','','N','N',6,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(650,0,2023,38,'L','durationNixOS','How long have you been using NixOS?','','','N','N',7,'en',0,0,'((2023X38X659.NAOK == \"Y\"))',''),(556,505,2022,31,'T','SQ008','Developer, embedded applications or devices',NULL,'','N','N',8,'en',0,0,'1',''),(649,0,2023,38,'M','contextNixOS','In what contexts do you use NixOS?','','','Y','N',6,'en',0,0,'((2023X38X659.NAOK == \"Y\"))',''),(647,0,2023,39,'P','triedStopRznNix','Why did you stop using Nix? Specify details in the comments if needed.','','','Y','N',4,'en',0,0,'((2023X39X670.NAOK == \"N\") and (2023X39X671.NAOK == \"Y\"))',''),(648,0,2023,38,'L','frequencyNixOS','How often do you use NixOS?','','','N','N',5,'en',0,0,'((2023X38X659.NAOK == \"Y\"))',''),(636,0,2023,36,'M','os','Which operating systems do you use at least weekly? (We’ll ask about Nix/NixOS later)','','','Y','N',4,'en',0,0,'1',''),(637,0,2023,38,'T','rznNixOS','Why did you start using NixOS? Tell us the story.','','','N','N',8,'en',0,0,'((2023X38X659.NAOK == \"Y\"))',''),(646,0,2023,38,'T','triedStopRznNixOS','Why did you stop using NixOS?','','','N','N',3,'en',0,0,'((2023X38X645.NAOK == \"Y\") and (2023X38X659.NAOK == \"N\"))',''),(645,0,2023,38,'Y','triedStopNixOS','Did you try and stop using NixOS at any point in the past?','','','N','N',1,'en',0,0,'((2023X38X659.NAOK == \"N\"))',''),(644,0,2023,38,'M','desktopNixOS','Which desktop environment or window managers do you use?','','','Y','N',14,'en',0,0,'((2023X38X659.NAOK == \"Y\"))',''),(643,0,2023,38,'M','deploymentsNixOS','Which deployment tools do you use with NixOS?','','','Y','N',13,'en',0,0,'((2023X38X659.NAOK == \"Y\"))',''),(642,0,2023,37,'T','end','Anything else that you want to tell us?','','','N','N',0,'en',0,0,'1',''),(641,0,2023,38,'T','insteadNixOS','If NixOS didn\'t exist, what would you use instead?','','','N','N',12,'en',0,0,'((2023X38X659.NAOK == \"Y\"))',''),(640,0,2023,38,'T','dislikeNixOS','If you had a magic wand, what would you add, change, or remove from NixOS?','','','N','N',11,'en',0,0,'((2023X38X659.NAOK == \"Y\"))',''),(638,0,2023,38,'M','environNixOS','In what environments do you use NixOS?','','','Y','N',9,'en',0,0,'((2023X38X659.NAOK == \"Y\"))',''),(633,0,2023,36,'!','age','How old are you?','','','N','N',1,'en',0,0,'1',''),(769,672,2023,39,'M','SQ001','Dissatisfaction with current tooling',NULL,NULL,'N',NULL,1,'en',0,0,'1',''),(634,0,2023,36,'L','gender','What is your gender identity?','','','Y','N',2,'en',0,0,'1',''),(635,0,2023,36,'M','occupation','Which of the following best describes your current occupation? ','','','Y','N',3,'en',0,0,'1',''),(797,676,2023,39,'T','SQ013','Passing installables to nix repl (repl-flake)',NULL,NULL,'N',NULL,13,'en',0,0,'1',NULL),(796,676,2023,39,'T','SQ012','Impure derivations (impure-derivations)',NULL,NULL,'N',NULL,12,'en',0,0,'1',NULL),(795,676,2023,39,'T','SQ011','builtins.fetchClosure (fetch-closure)',NULL,NULL,'N',NULL,11,'en',0,0,'1',NULL),(790,676,2023,39,'T','SQ006','Automatic allocation of UIDs (auto-allocate-uids)',NULL,NULL,'N',NULL,6,'en',0,0,'1',NULL),(801,0,239157,41,'S','location','Select the rough area of origin.','','','N','N',1,'en',0,0,'1',NULL),(799,0,2023,39,'R','plWishList','For which programming languages would you like to have better Nix support? Order from most to least important.','','','N','N',21,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(800,0,2023,39,'L','involvement','Which of these best describes your involvement with the Nix ecosystem?','','','Y','N',23,'en',0,0,'((2023X39X670.NAOK == \"Y\"))',''),(802,0,239157,41,'M','methodoftravel','What method of travel did you use to get to the event?','','','Y','N',2,'en',0,0,'1',''),(804,802,239157,41,'T','SQ001','Bicycle',NULL,NULL,'N',NULL,1,'en',0,0,'1',NULL),(805,802,239157,41,'T','SQ002','Walking',NULL,NULL,'N',NULL,2,'en',0,0,'1',NULL),(806,802,239157,41,'T','SQ003','Car',NULL,NULL,'N',NULL,3,'en',0,0,'1',NULL),(807,802,239157,41,'T','SQ004','Airplane',NULL,NULL,'N',NULL,4,'en',0,0,'1',NULL),(808,802,239157,41,'T','SQ005','Train',NULL,NULL,'N',NULL,5,'en',0,0,'1',NULL),(809,802,239157,41,'T','SQ006','Bus',NULL,NULL,'N',NULL,6,'en',0,0,'1',NULL),(810,0,239157,41,'L','traveltime','How long did you travel until you reached the location / your hotel / accomodation?','','','N','N',7,'en',0,0,'1',NULL),(811,0,239157,41,'Y','vacation','Did you combine your visit to NixCon with a vacation?','','','N','N',8,'en',0,0,'1',''),(812,0,239157,42,'L','nixconcount','How many NixCon\'s did you visit including this years event?','','','N','N',1,'en',0,0,'1',NULL),(813,0,239157,42,'L','professional','Are you visiting NixCon in a professional or personal capacity?','','','N','N',2,'en',0,0,'1',''),(814,0,239157,42,'5','enjoy','

On a scale from 0 to 5 how much did you enjoy your time at the event?

\r\n\r\n

5 being the best, 0 the worst score.

\r\n','','','N','N',3,'en',0,0,'1',NULL),(815,0,239157,41,'5','travelcosts','

How affordable was the travel for you (monetary)?

\r\n\r\n

1 = not affordable, 5 = very affordable

\r\n\r\n

If your employers paid your travel expenses, please select the approximate value (if you had to pay from your own money) or abstain from answering.

\r\n','','','N','N',9,'en',0,0,'1',''),(816,0,239157,41,'5','hotecosts','

How affordable was the accommodation for you (monetary)?

\r\n\r\n

 

\r\n\r\n

1 = not affordable, 5 = very affordable

\r\n\r\n

If your employers paid your accommodation expenses, please select the approximate value (if you had to pay from your own money) or abstain from answering.

\r\n','','','N','N',10,'en',0,0,'1',''),(817,0,239157,42,'5','enjoytalks','Did you enjoy talks? (0 = not at all, 5 = very much)','','','N','N',4,'en',0,0,'1',''),(818,0,239157,42,'5','hallway','

How much did you participate in the hallway track?

\r\n\r\n

0 = not at all

\r\n\r\n

5 = only hallway track

\r\n','','','N','N',5,'en',0,0,'1',''),(819,0,239157,41,'N','daysbefore','

How many days before the event did you arrive.

\r\n','','','N','N',11,'en',0,0,'1',''),(820,0,239157,41,'N','daysafter','

How many days after the even are you departing?

\r\n','','','N','N',12,'en',0,0,'1',''),(821,0,239157,42,'T','dislike','What did you dislike about the event?','','','N','N',6,'en',0,0,'1',NULL),(822,0,239157,42,'T','like','What did you like about the event?','','','N','N',7,'en',0,0,'1',NULL),(823,0,239157,42,'T','missing','What did you miss at the event?','','','N','N',8,'en',0,0,'1',NULL),(824,0,239157,42,'L','training','Did you attend the training?','','','N','N',9,'en',0,0,'1',NULL),(825,0,346552,43,'M','usertype','What\'s your Nix status?','','','Y','N',0,'en',0,0,'1',''),(826,0,346552,43,'!','userlocation','

Which state/province/territory are you located in?

\r\n\r\n

(Areas across Canada, USA, and Mexico)

\r\n','','','Y','N',3,'en',0,0,'1',''),(827,0,346552,43,'L','eventlocation','Which region would you be most likely to attend a NixCon event in?','','','Y','N',4,'en',0,0,'1',''),(828,0,346552,43,'S','locationcity','Do you have a specific city in mind that would be ideal for hosting NixCon North America?','','','N','N',5,'en',0,0,'1',''),(829,0,346552,43,'L','traveldistance','How far would you be willing to travel for the event?','','','Y','N',6,'en',0,0,'1',NULL),(830,0,346552,43,'M','eventweekday','Which days of the week are most convenient for you to attend the event?','','','N','N',7,'en',0,0,'1',''),(831,830,346552,43,'T','SQ001','Weekdays',NULL,'','N',NULL,1,'en',0,0,'1',''),(832,830,346552,43,'T','SQ002','Weekends',NULL,'','N',NULL,2,'en',0,0,'1',NULL),(833,0,346552,43,'L','volunteer','Would you be interested in volunteering for the event?','','','N','N',8,'en',0,0,'1',NULL),(834,0,346552,43,'T','comments','Do you have any other comments or suggestions for NixCon North America?','','','N','N',9,'en',0,0,'1',NULL),(835,825,346552,43,'T','SQ001','Just getting started with Nix!',NULL,'','N',NULL,2,'en',0,0,'1',''),(836,825,346552,43,'T','SQ002','Advanced Nix user ',NULL,'','N',NULL,4,'en',0,0,'1',''),(837,825,346552,43,'T','SQ003','Heard about it',NULL,'','N',NULL,1,'en',0,0,'1',''),(838,0,346552,43,'M','attendenceReason','What is the main reason you\'d want to attend NixCon in North America?','','','Y','N',1,'en',0,0,'1',''),(840,838,346552,43,'T','SQ002','Meet more Nixers',NULL,'','N',NULL,1,'en',0,0,'1',''),(841,838,346552,43,'T','SQ003','Learn Nix basics and attend Nix trainings',NULL,'','N',NULL,2,'en',0,0,'1',''),(842,838,346552,43,'T','SQ004','Learn advanced Nix topics',NULL,'','N',NULL,3,'en',0,0,'1',''),(843,838,346552,43,'T','SQ005','Hack on Nix',NULL,'','N',NULL,4,'en',0,0,'1',''),(844,838,346552,43,'T','SQ006','Find a Nix job',NULL,'','N',NULL,5,'en',0,0,'1',''),(845,825,346552,43,'T','SQ004','Contributor',NULL,'','N',NULL,3,'en',0,0,'1',NULL),(846,0,346552,43,'H','locationpreference','Where would you like or be able to attend?','','','N','N',2,'en',0,0,'1',NULL),(847,846,346552,43,'T','SQ001','US West Coast',NULL,'','N',NULL,1,'en',0,0,'1',NULL),(848,846,346552,43,'T','SQ002','US Midwest',NULL,'','N',NULL,2,'en',0,0,'1',NULL),(849,846,346552,43,'T','SQ003','US South',NULL,'','N',NULL,3,'en',0,0,'1',NULL),(850,846,346552,43,'T','SQ004','US East Coast',NULL,'','N',NULL,4,'en',0,0,'1',NULL),(851,846,346552,43,'T','SQ005','Canada',NULL,'','N',NULL,5,'en',0,0,'1',NULL),(852,846,346552,43,'T','SQ006','Mexico',NULL,'','N',NULL,6,'en',0,0,'1',NULL),(853,846,346552,43,'T','SQ007','Central America',NULL,'','N',NULL,7,'en',0,0,'1',NULL),(854,846,346552,43,'T','SQ008','South America',NULL,'','N',NULL,8,'en',0,0,'1',NULL),(855,0,248687,44,'S','jobtitle','What is your job title?','','','N','N',1,'en',0,0,'1',''),(856,0,248687,44,'S','companyname','What is the name of the company you work for?','','','N','N',2,'en',0,0,'1',''),(857,0,248687,44,'T','howhear','How did you hear about NixCon?','','','N','N',3,'en',0,0,'1',''),(858,0,248687,44,'T','whyattend','Why did you attend NixCon?','','','N','N',4,'en',0,0,'1',''),(859,0,248687,44,'L','usenixbefore','Have you used Nix before?','','','Y','N',5,'en',0,0,'1',''),(860,0,248687,44,'L','usenixhome','Do you use Nix at home?','','','Y','N',6,'en',0,0,'1',''),(861,0,248687,44,'L','usenixwork','Do you use Nix at work?','','','Y','N',7,'en',0,0,'1',''),(862,0,248687,44,'L','howfamiliarnix','How familiar are you with Nix?','','','N','N',8,'en',0,0,'1',''),(863,0,248687,47,'A','contentlikertscale','Rate the following with 1 being negative and 5 being positive.','','','N','N',1,'en',0,0,'1',''),(867,0,248687,47,'O','enoughtimediscussion','Was there enough time for discussion?','','','N','N',4,'en',0,0,'1',''),(864,863,248687,47,'A','SQ001','In your opinion, did the conference meet its objectives?',NULL,'','N',NULL,1,'en',0,0,'1',''),(865,863,248687,47,'A','SQ003','How well was the conference structured?',NULL,'','N',NULL,2,'en',0,0,'1',''),(866,863,248687,47,'A','SQ002','How satisfied are you with the variety of topics presented at the conference?',NULL,'','N',NULL,3,'en',0,0,'1',''),(868,0,248687,47,'T','mostvaluablesession','Which session did you find most valuable?','','','N','N',5,'en',0,0,'1',NULL),(869,0,248687,47,'T','futuretopics','Which topics would you like to see covered at future conferences?','','','N','N',6,'en',0,0,'1',NULL),(870,0,248687,49,'A','generallikertscale','Rate the following with 1 being negative and 5 being positive.','','','N','N',1,'en',0,0,'1',NULL),(871,870,248687,49,'T','SQ001','How would you rate your overall experience at the event?',NULL,'','N',NULL,1,'en',0,0,'1',NULL),(872,870,248687,49,'T','SQ004','How satisfied were you with the networking opportunities provided?',NULL,'','N',NULL,2,'en',0,0,'1',NULL),(873,870,248687,49,'T','SQ003','How likely are you to recommend this event to a friend?',NULL,'','N',NULL,3,'en',0,0,'1',NULL),(874,870,248687,49,'T','SQ002','Were you able to easily find all of the information you need about our event?',NULL,'','N',NULL,4,'en',0,0,'1',NULL),(875,0,248687,49,'T','eventlikemost','What did you like most about the event?','','','N','N',5,'en',0,0,'1',NULL),(876,0,248687,49,'T','eventlikeleast','What did you like least about the event?','','','N','N',6,'en',0,0,'1',NULL),(877,0,248687,49,'T','eventimprovefuture','How could we improve future events?','','','N','N',7,'en',0,0,'1',NULL),(878,0,248687,49,'L','plantoreturn','Are you planning to return next year?','','','N','N',8,'en',0,0,'1',''),(879,0,248687,49,'T','bigtakeaway','What was your biggest takeaway from this event?','','','N','N',9,'en',0,0,'1',NULL),(881,0,248687,44,'L','howmanyyears','How many years have you used Nix?','','','N','N',9,'en',0,0,'1',NULL),(882,0,2024,50,'L','q02','What is your age?','','','N','N',2,'en',0,0,'1',''),(883,0,2024,50,'L','q03','How do you identify?','','','Y','N',3,'en',0,0,'1',''),(884,0,2024,50,'L','q04','Including any education, how many years have you been programming in total?','','','Y','N',4,'en',0,0,'1',''),(885,0,2024,50,'L','q05','Which of the following describes your main occupation?','','','Y','N',5,'en',0,0,'1',''),(1214,1040,2024,50,'T','SQ005','iOS',NULL,'','N',NULL,5,'en',0,0,'1',NULL),(1212,1040,2024,50,'T','SQ003','Windows',NULL,'','N',NULL,3,'en',0,0,'1',NULL),(1213,1040,2024,50,'T','SQ004','BSD',NULL,'','N',NULL,4,'en',0,0,'1',NULL),(1296,1149,2024,50,'T','SQ001','I don\'t plan to contribute.',NULL,'','N',NULL,1,'en',0,0,'1',''),(1161,0,2024,50,'L','q26','When you need to get help with Nix or NixOS, how often do you find an acceptable answer?','','','N','N',26,'en',0,0,'1',''),(1298,1149,2024,50,'T','SQ003','I would like to contribute, but I don\'t know how to get started.',NULL,'','N',NULL,3,'en',0,0,'1',''),(1297,1149,2024,50,'T','SQ002','Everything I want to contribute to is already being worked on and I don\'t feel the need to get involved.',NULL,'','N',NULL,2,'en',0,0,'1',''),(891,0,2024,50,'T','q27','How can we improve this survey?','','','N','N',27,'en',0,0,'1',''),(1299,1149,2024,50,'T','SQ004','I tried to contribute something, but got stuck after I started.',NULL,'','N',NULL,4,'en',0,0,'1',''),(1300,1149,2024,50,'T','SQ005','I received unhelpful feedback.',NULL,'','N',NULL,5,'en',0,0,'1',''),(1301,1149,2024,50,'T','SQ006','It took longer than I expected to receive feedback.',NULL,'','N',NULL,6,'en',0,0,'1',''),(1302,1149,2024,50,'T','SQ007','I want to get involved in something being worked on, but don\'t know how to start.',NULL,'','N',NULL,7,'en',0,0,'1',''),(1303,1149,2024,50,'T','SQ008','I can\'t contribute because my company forbids it.',NULL,'','N',NULL,8,'en',0,0,'1',''),(1291,1077,2024,50,'T','SQ049','Swift',NULL,'','N',NULL,49,'en',0,0,'1',''),(1290,1077,2024,50,'T','SQ048','Solidity',NULL,'','N',NULL,48,'en',0,0,'1',''),(1289,1077,2024,50,'T','SQ047','Scala',NULL,'','N',NULL,47,'en',0,0,'1',''),(1288,1077,2024,50,'T','SQ046','SQL',NULL,'','N',NULL,46,'en',0,0,'1',''),(1287,1077,2024,50,'T','SQ045','SAS',NULL,'','N',NULL,45,'en',0,0,'1',''),(1286,1077,2024,50,'T','SQ044','Rust',NULL,'','N',NULL,44,'en',0,0,'1',''),(1285,1077,2024,50,'T','SQ043','Ruby',NULL,'','N',NULL,43,'en',0,0,'1',''),(1284,1077,2024,50,'T','SQ042','Raku',NULL,'','N',NULL,42,'en',0,0,'1',''),(1292,1077,2024,50,'T','SQ050','TypeScript',NULL,'','N',NULL,50,'en',0,0,'1',''),(1293,1077,2024,50,'T','SQ051','VBA',NULL,'','N',NULL,51,'en',0,0,'1',''),(1294,1077,2024,50,'T','SQ052','Visual Basic (.Net)',NULL,'','N',NULL,52,'en',0,0,'1',''),(1295,1077,2024,50,'T','SQ053','Zig',NULL,'','N',NULL,53,'en',0,0,'1',''),(1077,0,2024,50,'M','q18','Which software ecosystems do you use Nix with?','','','N','N',18,'en',0,0,'1',''),(907,0,2024,50,'L','q01','Where do you live?','','','N','N',1,'en',0,0,'1',''),(1304,1149,2024,50,'T','SQ009','I was able to contribute on my own.',NULL,'','N',NULL,9,'en',0,0,'1',''),(1076,0,2024,50,'S','q16','Which version of Nix do you use? (only write the SemVer, e.g. \"2.18.11\", get it with `nix-env --version`)','','','N','N',16,'en',0,0,'1',''),(1075,1067,2024,50,'T','SQ007','Embedded/IoT devices',NULL,'','N',NULL,7,'en',0,0,'1',''),(1074,1067,2024,50,'T','SQ006','Mobile devices',NULL,'','N',NULL,6,'en',0,0,'1',''),(1071,1067,2024,50,'T','SQ003','Home servers',NULL,'','N',NULL,3,'en',0,0,'1',''),(1072,1067,2024,50,'T','SQ004','Continuous integration servers',NULL,'','N',NULL,4,'en',0,0,'1',''),(1073,1067,2024,50,'T','SQ005','Production servers',NULL,'','N',NULL,5,'en',0,0,'1',''),(1070,1067,2024,50,'T','SQ002','Laptops, Desktops, Workstations, Development machines',NULL,'','N',NULL,2,'en',0,0,'1',''),(1235,1059,2024,50,'T','SQ005','BSD',NULL,'','N',NULL,5,'en',0,0,'1',''),(1234,1059,2024,50,'T','SQ004','Windows (via WSL)',NULL,'','N',NULL,4,'en',0,0,'1',''),(1233,1059,2024,50,'T','SQ003','macOS',NULL,'','N',NULL,3,'en',0,0,'1',''),(1232,1059,2024,50,'T','SQ002','GNU/Linux',NULL,'','N',NULL,2,'en',0,0,'1',''),(1231,1059,2024,50,'T','SQ001','I don\'t use Nix',NULL,'','N',NULL,1,'en',0,0,'1',''),(1067,0,2024,50,'M','q15','In what environments do you use Nix?','','','N','N',15,'en',0,0,'1',''),(1069,1067,2024,50,'T','SQ001','I don\'t use Nix',NULL,'','N',NULL,1,'en',0,0,'1',''),(1236,1059,2024,50,'T','SQ006','Android',NULL,'','N',NULL,6,'en',0,0,'1',''),(1226,1052,2024,50,'T','SQ001','A. I love the idea behind Nix',NULL,'','N',NULL,1,'en',0,0,'1',''),(1059,0,2024,50,'M','q13','On which operating systems do you use Nix currently?','','','N','N',13,'en',0,0,'1',''),(1229,1052,2024,50,'T','SQ004','D. I (want to) work on Nix',NULL,'','N',NULL,4,'en',0,0,'1',''),(1227,1052,2024,50,'T','SQ002','B. I\'m curious how Nix works',NULL,'','N',NULL,2,'en',0,0,'1',''),(1228,1052,2024,50,'T','SQ003','C. I use Nix to get things done',NULL,'','N',NULL,3,'en',0,0,'1',''),(1052,0,2024,50,'M','q12','

Which user types do you identify with? Select all that apply

\r\n\r\n
    \r\n
  • Type A: You love the idea behind Nix or NixOS.
    Maybe you spread the word among friends and coworkers.
    Maybe you are interested in or enthusiastic about any of the following:\r\n
      \r\n
    • Free and open source software
    • \r\n
    • Linux
    • \r\n
    • Home automation
    • \r\n
    • Online communities
    • \r\n
    • Distro-hopping
    • \r\n
    \r\n
  • \r\n
  • Type B. You’re here because you’re curious about Nix and how it works.
    Maybe you enjoy or want to learn functional programming, or you just want to learn new things.
    Maybe you identify yourself as:\r\n
      \r\n
    • Nix-curious developer
    • \r\n
    • Student of a technical field
    • \r\n
    • Educator
    • \r\n
    • Academic researcher
    • \r\n
    \r\n
  • \r\n
  • Type C: You use Nix or NixOS to get things done or boost your team’s productivity, you learn it to grow your career opportunities, or you have to use it on the job because someone said so.
    Maybe you identify yourself as:\r\n
      \r\n
    • System administrator
    • \r\n
    • Employee developer
    • \r\n
    • DevOps engineer
    • \r\n
    • Natural scientist
    • \r\n
    • Open source software author
    • \r\n
    • Early-career professional
    • \r\n
    \r\n
  • \r\n
  • Type D: You work or want to work on the Nix ecosystem rather than just with it.
    You are at least one of the following:\r\n
      \r\n
    • Aspiring contributor
    • \r\n
    • Novice contributor
    • \r\n
    • Drive-by contributor
    • \r\n
    • Package maintainer
    • \r\n
    • Code owner
    • \r\n
    • Community team member
    • \r\n
    • Sponsor
    • \r\n
    \r\n
  • \r\n
  • Type E: You make the strategic decisions for your team or company: which technologies to adopt, which skills to train your employees in, which projects to support or invest in, which services or products to offer.
    Maybe you’re a:\r\n
      \r\n
    • Entrepreneur
    • \r\n
    • Team lead
    • \r\n
    • Software architect
    • \r\n
    • CTO
    • \r\n
    • Sales executive
    • \r\n
    • Public service administrator
    • \r\n
    \r\n
  • \r\n
\r\n','','','N','N',12,'en',0,0,'1',''),(1225,1041,2024,50,'T','SQ010','I develop a tool based on or integrating with Nix, Nixpkgs, or NixOS',NULL,'','N',NULL,10,'en',0,0,'1',NULL),(1224,1041,2024,50,'T','SQ009','I have merge access to Nixpkgs',NULL,'','N',NULL,9,'en',0,0,'1',NULL),(1223,1041,2024,50,'T','SQ008','I actively maintain packages in Nixpkgs',NULL,'','N',NULL,8,'en',0,0,'1',NULL),(1222,1041,2024,50,'T','SQ007','I contribute packages or patches to Nixpkgs',NULL,'','N',NULL,7,'en',0,0,'1',NULL),(1211,1040,2024,50,'T','SQ002','macOS',NULL,'','N',NULL,2,'en',0,0,'1',NULL),(1305,1149,2024,50,'T','SQ010','I was able to contribute with assistance from others in the community.',NULL,'','N',NULL,10,'en',0,0,'1',''),(1149,0,2024,50,'M','q25','If you want to contribute or have contributed in the past to Nixpkgs, please select all that apply:','','','N','N',25,'en',0,0,'1',''),(1221,1041,2024,50,'T','SQ006','I develop software with Nix',NULL,'','N',NULL,6,'en',0,0,'1',NULL),(1215,1040,2024,50,'T','SQ006','Android',NULL,'','N',NULL,6,'en',0,0,'1',NULL),(1040,0,2024,50,'M','q06','Which operating systems do you currently use?','','','N','N',6,'en',0,0,'1',''),(1041,0,2024,50,'M','q07','Which of these best describe your involvement with the Nix ecosystem?','','','N','N',7,'en',0,0,'1',NULL),(1217,1041,2024,50,'T','SQ002','I don\'t use NixOS',NULL,'','N',NULL,2,'en',0,0,'1',NULL),(1218,1041,2024,50,'T','SQ003','I use NixOS',NULL,'','N',NULL,3,'en',0,0,'1',NULL),(1219,1041,2024,50,'T','SQ004','I manage or develop for machines running NixOS',NULL,'','N',NULL,4,'en',0,0,'1',NULL),(1220,1041,2024,50,'T','SQ005','I use Nix to install software',NULL,'','N',NULL,5,'en',0,0,'1',NULL),(1148,0,2024,50,'R','q24','

When you need to get help with Nix or NixOS, which resources do you use most often?

\r\n\r\n

If you always start with a web search, please choose which resources you go to most often among the results.

\r\n','','','N','N',24,'en',0,0,'1',''),(1147,0,2024,50,'R','q23','Which objects do you interact with or search for most often across the ecosystem?','','','N','N',23,'en',0,0,'1',''),(1146,0,2024,50,'L','q11','How did you find out about it?','','','N','N',11,'en',0,0,'1',''),(1145,0,2024,50,'L','q10','

Did you hear about Nix or NixOS first?

\r\n\r\n

If you heard about both at the same time, select which one first made you interested in the Nix ecosystem.

\r\n','','','N','N',10,'en',0,0,'1',''),(1144,0,2024,50,'T','q22','If you want to use NixOS but can\'t use NixOS, please tell us what prevents it and what would help you.','','','N','N',22,'en',0,0,'1',''),(1143,0,2024,50,'T','q21','If Nix is not part of your usual set of tools, please tell us what prevents it and what would help you.','','','N','N',21,'en',0,0,'1',''),(1142,0,2024,50,'L','q20','Do you currently consider Nix as part of your usual set of tools?','','','N','N',20,'en',0,0,'1',''),(1141,0,2024,50,'L','q09','How would you describe your skill level with Nix?','','','N','N',9,'en',0,0,'1',''),(1132,0,2024,50,'M','q14','How did you install Nix?','','','N','N',14,'en',0,0,'1',''),(1241,1132,2024,50,'T','SQ005','From source',NULL,'','N',NULL,5,'en',0,0,'1',''),(1240,1132,2024,50,'T','SQ004','With DeterminateSystems/nix-installer',NULL,'','N',NULL,4,'en',0,0,'1',''),(1239,1132,2024,50,'T','SQ003','With another package manager',NULL,'','N',NULL,3,'en',0,0,'1',''),(1238,1132,2024,50,'T','SQ002','With the official installer',NULL,'','N',NULL,2,'en',0,0,'1',''),(1237,1132,2024,50,'T','SQ001','NixOS',NULL,'','N',NULL,1,'en',0,0,'1',''),(1140,0,2024,50,'L','q08','For how many years have you been using Nix in total?','','','N','N',8,'en',0,0,'1',''),(1243,1077,2024,50,'T','SQ001','I don\'t use Nix',NULL,'','N',NULL,1,'en',0,0,'1',''),(1244,1077,2024,50,'T','SQ002','NixOS configurations',NULL,'','N',NULL,2,'en',0,0,'1',''),(1245,1077,2024,50,'T','SQ003','APL',NULL,'','N',NULL,3,'en',0,0,'1',''),(1246,1077,2024,50,'T','SQ004','Ada',NULL,'','N',NULL,4,'en',0,0,'1',''),(1247,1077,2024,50,'T','SQ005','Apex',NULL,'','N',NULL,5,'en',0,0,'1',''),(1248,1077,2024,50,'T','SQ006','Assembly',NULL,'','N',NULL,6,'en',0,0,'1',''),(1249,1077,2024,50,'T','SQ007','Bash/Shell (all shells)',NULL,'','N',NULL,7,'en',0,0,'1',''),(1250,1077,2024,50,'T','SQ008','C',NULL,'','N',NULL,8,'en',0,0,'1',''),(1251,1077,2024,50,'T','SQ009','C#',NULL,'','N',NULL,9,'en',0,0,'1',''),(1252,1077,2024,50,'T','SQ010','C++',NULL,'','N',NULL,10,'en',0,0,'1',''),(1253,1077,2024,50,'T','SQ011','Clojure',NULL,'','N',NULL,11,'en',0,0,'1',''),(1254,1077,2024,50,'T','SQ012','Cobol',NULL,'','N',NULL,12,'en',0,0,'1',''),(1255,1077,2024,50,'T','SQ013','Crystal',NULL,'','N',NULL,13,'en',0,0,'1',''),(1256,1077,2024,50,'T','SQ014','Dart',NULL,'','N',NULL,14,'en',0,0,'1',''),(1257,1077,2024,50,'T','SQ015','Delphi',NULL,'','N',NULL,15,'en',0,0,'1',''),(1258,1077,2024,50,'T','SQ016','Elixir',NULL,'','N',NULL,16,'en',0,0,'1',''),(1259,1077,2024,50,'T','SQ017','Erlang',NULL,'','N',NULL,17,'en',0,0,'1',''),(1260,1077,2024,50,'T','SQ018','F#',NULL,'','N',NULL,18,'en',0,0,'1',''),(1261,1077,2024,50,'T','SQ019','Flow',NULL,'','N',NULL,19,'en',0,0,'1',''),(1262,1077,2024,50,'T','SQ020','Fortran',NULL,'','N',NULL,20,'en',0,0,'1',''),(1263,1077,2024,50,'T','SQ021','GDScript',NULL,'','N',NULL,21,'en',0,0,'1',''),(1264,1077,2024,50,'T','SQ022','Go',NULL,'','N',NULL,22,'en',0,0,'1',''),(1265,1077,2024,50,'T','SQ023','Groovy',NULL,'','N',NULL,23,'en',0,0,'1',''),(1266,1077,2024,50,'T','SQ024','HTML/CSS',NULL,'','N',NULL,24,'en',0,0,'1',''),(1267,1077,2024,50,'T','SQ025','Haskell',NULL,'','N',NULL,25,'en',0,0,'1',''),(1268,1077,2024,50,'T','SQ026','Java',NULL,'','N',NULL,26,'en',0,0,'1',''),(1269,1077,2024,50,'T','SQ027','JavaScript',NULL,'','N',NULL,27,'en',0,0,'1',''),(1270,1077,2024,50,'T','SQ028','Julia',NULL,'','N',NULL,28,'en',0,0,'1',''),(1271,1077,2024,50,'T','SQ029','Kotlin',NULL,'','N',NULL,29,'en',0,0,'1',''),(1272,1077,2024,50,'T','SQ030','Lisp',NULL,'','N',NULL,30,'en',0,0,'1',''),(1273,1077,2024,50,'T','SQ031','Lua',NULL,'','N',NULL,31,'en',0,0,'1',''),(1274,1077,2024,50,'T','SQ032','MATLAB',NULL,'','N',NULL,32,'en',0,0,'1',''),(1275,1077,2024,50,'T','SQ033','Nim',NULL,'','N',NULL,33,'en',0,0,'1',''),(1276,1077,2024,50,'T','SQ034','OCaml',NULL,'','N',NULL,34,'en',0,0,'1',''),(1277,1077,2024,50,'T','SQ035','Objective-C',NULL,'','N',NULL,35,'en',0,0,'1',''),(1278,1077,2024,50,'T','SQ036','PHP',NULL,'','N',NULL,36,'en',0,0,'1',''),(1279,1077,2024,50,'T','SQ037','Perl',NULL,'','N',NULL,37,'en',0,0,'1',''),(1280,1077,2024,50,'T','SQ038','PowerShell',NULL,'','N',NULL,38,'en',0,0,'1',''),(1281,1077,2024,50,'T','SQ039','Prolog',NULL,'','N',NULL,39,'en',0,0,'1',''),(1282,1077,2024,50,'T','SQ040','Python',NULL,'','N',NULL,40,'en',0,0,'1',''),(1283,1077,2024,50,'T','SQ041','R',NULL,'','N',NULL,41,'en',0,0,'1',''),(1210,1040,2024,50,'T','SQ001','GNU/Linux',NULL,'','N',NULL,1,'en',0,0,'1',NULL),(1216,1041,2024,50,'T','SQ001','I don\'t use Nix',NULL,'','N',NULL,1,'en',0,0,'1',NULL),(1179,0,2024,50,'M','q17','Which NixOS releases do you use?','','','N','N',17,'en',0,0,'1',''),(1181,1179,2024,50,'T','SQ001','unstable',NULL,'','N',NULL,1,'en',0,0,'1',''),(1182,1179,2024,50,'T','SQ002','24.05',NULL,'','N',NULL,2,'en',0,0,'1',''),(1183,1179,2024,50,'T','SQ003','23.11',NULL,'','N',NULL,3,'en',0,0,'1',''),(1184,1179,2024,50,'T','SQ004','23.05',NULL,'','N',NULL,4,'en',0,0,'1',''),(1185,1179,2024,50,'T','SQ005','older',NULL,'','N',NULL,5,'en',0,0,'1',''),(1186,1179,2024,50,'T','SQ006','I don\'t know',NULL,'','N',NULL,6,'en',0,0,'1',''),(1187,1179,2024,50,'T','SQ007','I don\'t use NixOS',NULL,'','N',NULL,7,'en',0,0,'1',''),(1188,0,2024,50,'M','q19','Which Nix experimental features do you use?','','','N','N',19,'en',0,0,'1',''),(1190,1188,2024,50,'T','SQ001','Automatic UID allocation (`auto-allocate-uids`)',NULL,'','N',NULL,1,'en',0,0,'1',''),(1191,1188,2024,50,'T','SQ002','Content-addressed derivations (`ca-derivations`)',NULL,'','N',NULL,2,'en',0,0,'1',''),(1192,1188,2024,50,'T','SQ003','Use cgroups in execution environments (Linux) (`cgroups`)',NULL,'','N',NULL,3,'en',0,0,'1',''),(1193,1188,2024,50,'T','SQ004','Allow impure environment variables in the execution environment (`configurable-impure-env`)',NULL,'','N',NULL,4,'en',0,0,'1',''),(1194,1188,2024,50,'T','SQ005','Allow forcing trust settings for the Nix daemon (`daemon-trust-override`)',NULL,'','N',NULL,5,'en',0,0,'1',''),(1195,1188,2024,50,'T','SQ006','Dynamic derivations (`dynamic-derivations`)',NULL,'','N',NULL,6,'en',0,0,'1',''),(1196,1188,2024,50,'T','SQ007','`builtins.fetchClosure` (`fetch-closure`)',NULL,'','N',NULL,7,'en',0,0,'1',''),(1197,1188,2024,50,'T','SQ008','`builtins.fetchTree` (`fetch-tree`)',NULL,'','N',NULL,8,'en',0,0,'1',''),(1198,1188,2024,50,'T','SQ009','Flakes (`flakes`)',NULL,'','N',NULL,9,'en',0,0,'1',''),(1199,1188,2024,50,'T','SQ010','Git hashing for store objects (`git-hashing`)',NULL,'','N',NULL,10,'en',0,0,'1',''),(1200,1188,2024,50,'T','SQ011','Impure derivations (`impure-derivations`)',NULL,'','N',NULL,11,'en',0,0,'1',''),(1201,1188,2024,50,'T','SQ012','Local overlay store (`local-overlay-store`)',NULL,'','N',NULL,12,'en',0,0,'1',''),(1202,1188,2024,50,'T','SQ013','Mounted SSH store (`mounted-ssh-store`)',NULL,'','N',NULL,13,'en',0,0,'1',''),(1203,1188,2024,50,'T','SQ014','`nix` command line tools (`nix-command`)',NULL,'','N',NULL,14,'en',0,0,'1',''),(1204,1188,2024,50,'T','SQ015','Disallow literal URL (`no-url-literals`)',NULL,'','N',NULL,15,'en',0,0,'1',''),(1205,1188,2024,50,'T','SQ016','Allow parsing timestamps in `builtins.fromTOML` (`parse-toml-timestamps`)',NULL,'','N',NULL,16,'en',0,0,'1',''),(1206,1188,2024,50,'T','SQ017','Allow `read-only` on local stores `(`read-only-local-store`)',NULL,'','N',NULL,17,'en',0,0,'1',''),(1207,1188,2024,50,'T','SQ018','Allow derivation builders to call Nix (`recursive-nix`)',NULL,'','N',NULL,18,'en',0,0,'1',''),(1208,1188,2024,50,'T','SQ019','Verify Git commit signatures with `builtins.fetchGit` (`verified-fetches`)',NULL,'','N',NULL,19,'en',0,0,'1',''),(1230,1052,2024,50,'T','SQ005','E. I\'m a decision-maker',NULL,'','N',NULL,5,'en',0,0,'1',''),(1242,1132,2024,50,'T','SQ006','Other',NULL,'','N',NULL,6,'en',0,0,'1',''); -/*!40000 ALTER TABLE `limesurvey_questions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_quota` --- - -DROP TABLE IF EXISTS `limesurvey_quota`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_quota` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `sid` int(11) DEFAULT NULL, - `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `qlimit` int(11) DEFAULT NULL, - `action` int(11) DEFAULT NULL, - `active` int(11) NOT NULL DEFAULT 1, - `autoload_url` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `limesurvey_idx1_quota` (`sid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_quota` --- - -LOCK TABLES `limesurvey_quota` WRITE; -/*!40000 ALTER TABLE `limesurvey_quota` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_quota` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_quota_languagesettings` --- - -DROP TABLE IF EXISTS `limesurvey_quota_languagesettings`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_quota_languagesettings` ( - `quotals_id` int(11) NOT NULL AUTO_INCREMENT, - `quotals_quota_id` int(11) NOT NULL DEFAULT 0, - `quotals_language` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', - `quotals_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `quotals_message` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, - `quotals_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `quotals_urldescrip` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`quotals_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_quota_languagesettings` --- - -LOCK TABLES `limesurvey_quota_languagesettings` WRITE; -/*!40000 ALTER TABLE `limesurvey_quota_languagesettings` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_quota_languagesettings` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_quota_members` --- - -DROP TABLE IF EXISTS `limesurvey_quota_members`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_quota_members` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `sid` int(11) DEFAULT NULL, - `qid` int(11) DEFAULT NULL, - `quota_id` int(11) DEFAULT NULL, - `code` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `limesurvey_idx1_quota_members` (`sid`,`qid`,`quota_id`,`code`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_quota_members` --- - -LOCK TABLES `limesurvey_quota_members` WRITE; -/*!40000 ALTER TABLE `limesurvey_quota_members` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_quota_members` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_saved_control` --- - -DROP TABLE IF EXISTS `limesurvey_saved_control`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_saved_control` ( - `scid` int(11) NOT NULL AUTO_INCREMENT, - `sid` int(11) NOT NULL DEFAULT 0, - `srid` int(11) NOT NULL DEFAULT 0, - `identifier` text COLLATE utf8mb4_unicode_ci NOT NULL, - `access_code` text COLLATE utf8mb4_unicode_ci NOT NULL, - `email` varchar(192) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `ip` text COLLATE utf8mb4_unicode_ci NOT NULL, - `saved_thisstep` text COLLATE utf8mb4_unicode_ci NOT NULL, - `status` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `saved_date` datetime NOT NULL, - `refurl` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`scid`), - KEY `limesurvey_idx1_saved_control` (`sid`), - KEY `limesurvey_idx2_saved_control` (`srid`) -) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_saved_control` --- - -LOCK TABLES `limesurvey_saved_control` WRITE; -/*!40000 ALTER TABLE `limesurvey_saved_control` DISABLE KEYS */; -INSERT INTO `limesurvey_saved_control` VALUES (1,2022,834,'cole-h','$2y$10$sGqFWIT6hRtiZ83vCuODF.KainsakU7lxUGW4XoJ88by.IqWwlucy','cole.e.helbling@outlook.com','','3','S','2022-03-02 16:00:15','https://t.co/'),(2,2022,912,'Sealed','$2y$10$Q9W6Ngl4Of62tPSZAfgev.GPVzICWkZ4suqJ/hrkwIkPOWY.7QVDu','lab.sealedsensesproject@gmail.com','','5','S','2022-03-02 18:36:01','https://survey.nixos.org/2022'),(10,2023,1551,'dgdkeifbsvsnkcbs','$2y$10$VZ8G5dEYmhLvaX2NGSxbOOEC.C0/qHtxUa5SWu54Kef8o7I/Rq842','','','4','S','2023-07-05 10:02:11','https://t.co/'),(7,2022,1808,'lilyinstarlight','$2y$10$MIu1xtphXI831yx5UKtsbOd32i53/ZepyHYOrMvKNPVt4bCGWeI1u','lily@lily.flowers','','2','S','2022-03-14 14:54:42','https://discourse.nixos.org/'),(9,2023,1052,'Joe','$2y$10$rAZ3TQXJfemyhdPeKhaNjuZivowpjxqt80uwQaBALrZriL99s1Hiu','joe-nixos-org@elem.com','','3','S','2023-06-16 19:47:27','https://discourse.nixos.org/'),(6,2022,1410,'Marc Schulz','$2y$10$yJNGUHJwXSsg0DKsq0ARgOmJjrxMOuqSlTyVAfndSY55.LKh7U6Y6','marcleonschulz@gmail.com','','3','S','2022-03-05 08:38:18','https://nixos.org/'),(14,248687,24,'Diamond','$2y$10$bJH6Xpz5UdgJ/GaaZwPVyeE6O9hRWSYnmrxY..dJ91Ie8Dre7P4L6','diamond@libdb.so','','3','S','2024-03-15 18:52:08','https://survey.nixos.org/248687'); -/*!40000 ALTER TABLE `limesurvey_saved_control` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_sessions` --- - -DROP TABLE IF EXISTS `limesurvey_sessions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_sessions` ( - `id` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, - `expire` int(11) DEFAULT NULL, - `data` longblob DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_sessions` --- - -LOCK TABLES `limesurvey_sessions` WRITE; -/*!40000 ALTER TABLE `limesurvey_sessions` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_sessions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_settings_global` --- - -DROP TABLE IF EXISTS `limesurvey_settings_global`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_settings_global` ( - `stg_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `stg_value` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`stg_name`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_settings_global` --- - -LOCK TABLES `limesurvey_settings_global` WRITE; -/*!40000 ALTER TABLE `limesurvey_settings_global` DISABLE KEYS */; -INSERT INTO `limesurvey_settings_global` VALUES ('DBVersion','366'),('AssetsVersion','30225'),('defaultlang','en'),('restrictToLanguages',''),('sitename','NixOS Surveys'),('defaulthtmleditormode','inline'),('defaultquestionselectormode','default'),('defaultthemeteeditormode','default'),('javascriptdebugbcknd','0'),('javascriptdebugfrntnd','0'),('defaulttheme','fruity'),('x_frame_options','sameorigin'),('force_ssl','on'),('loginIpWhitelist',''),('tokenIpWhitelist',''),('admintheme','Sea_Green'),('emailmethod','smtp'),('emailsmtphost','smtp.gmail.com'),('emailsmtppassword','1ga9rba8s2'),('bounceaccounthost',''),('bounceaccounttype','off'),('bounceencryption','off'),('bounceaccountuser',''),('bounceaccountpass',''),('emailsmtpssl','ssl'),('emailsmtpdebug','0'),('emailsmtpuser','rok.garbas'),('filterxsshtml','1'),('siteadminbounce','your-email@example.net'),('siteadminemail','webmaster@nixos.org'),('siteadminname','NixOS Marketing team'),('shownoanswer','0'),('showxquestions','choose'),('showgroupinfo','choose'),('showqnumcode','choose'),('repeatheadings','25'),('maxemails','50'),('iSessionExpirationTime','7200'),('ipInfoDbAPIKey',''),('pdffontsize','9'),('pdfshowsurveytitle','Y'),('pdfshowheader','N'),('pdflogowidth','50'),('pdfheadertitle',''),('pdfheaderstring',''),('bPdfQuestionFill','1'),('bPdfQuestionBold','0'),('bPdfQuestionBorder','1'),('bPdfResponseBorder','1'),('googleMapsAPIKey',''),('googleanalyticsapikey',''),('googletranslateapikey',''),('surveyPreview_require_Auth','0'),('RPCInterface','off'),('rpc_publish_api',''),('add_access_control_header','1'),('characterset','auto'),('sideMenuBehaviour','adaptive'),('timeadjust','+0 minutes'),('usercontrolSameGroupPolicy','1'),('last_question_gid_5','32'),('last_survey_1','2024'),('show_logo','show'),('boxes_by_row','3'),('boxes_offset','3'),('last_question_6_2023','800'),('last_survey_5','2022'),('last_question_2_2022_gid','34'),('last_question_5','512'),('last_question_gid_6','39'),('last_question_2_2022','540'),('last_survey_6','2023'),('last_question_gid_2','34'),('last_question_6','800'),('last_question_sid_5','2022'),('last_question_2','540'),('last_question_sid_2','2022'),('last_survey_4','2022'),('last_question_sid_6','2023'),('last_survey_2','2022'),('last_question_5_2022','512'),('last_question_5_2022_gid','32'),('last_question_6_2023_gid','39'),('last_survey_7','2024'),('last_question_8_239157','819'),('last_question_sid_8','239157'),('last_question_gid_8','41'),('last_question_8','819'),('last_question_8_239157_gid','41'),('last_survey_8','239157'),('last_survey_9','346552'),('last_survey_11','346552'),('last_question_9','827'),('last_question_sid_9','346552'),('last_question_gid_9','43'),('last_question_9_346552','827'),('last_question_9_346552_gid','43'),('last_survey_10','346552'),('last_question_10','838'),('last_question_sid_10','346552'),('last_question_gid_10','43'),('last_question_10_346552','838'),('last_question_10_346552_gid','43'),('last_survey_12','964172'),('last_survey_13','248687'),('last_question_13','881'),('last_question_sid_13','248687'),('last_question_gid_13','44'),('last_question_13_248687','881'),('last_question_13_248687_gid','44'),('last_question_7_2024','907'),('last_question_sid_7','2024'),('last_question_gid_7','50'),('last_question_7_2023','662'),('last_question_7_2023_gid','39'),('last_question_7','907'),('last_question_7_2024_gid','50'); -/*!40000 ALTER TABLE `limesurvey_settings_global` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_settings_user` --- - -DROP TABLE IF EXISTS `limesurvey_settings_user`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_settings_user` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `uid` int(11) NOT NULL, - `entity` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `entity_id` varchar(31) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `stg_name` varchar(63) COLLATE utf8mb4_unicode_ci NOT NULL, - `stg_value` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `limesurvey_idx1_settings_user` (`uid`), - KEY `limesurvey_idx2_settings_user` (`entity`), - KEY `limesurvey_idx3_settings_user` (`entity_id`), - KEY `limesurvey_idx4_settings_user` (`stg_name`) -) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_settings_user` --- - -LOCK TABLES `limesurvey_settings_user` WRITE; -/*!40000 ALTER TABLE `limesurvey_settings_user` DISABLE KEYS */; -INSERT INTO `limesurvey_settings_user` VALUES (1,2,NULL,NULL,'quickaction_state','1'),(2,1,NULL,NULL,'quickaction_state','1'),(3,3,NULL,NULL,'quickaction_state','1'),(4,4,NULL,NULL,'quickaction_state','1'),(5,5,NULL,NULL,'quickaction_state','1'),(6,6,NULL,NULL,'quickaction_state','1'),(7,7,NULL,NULL,'quickaction_state','1'),(8,8,NULL,NULL,'quickaction_state','1'),(9,9,NULL,NULL,'quickaction_state','1'),(10,11,NULL,NULL,'quickaction_state','1'),(11,10,NULL,NULL,'quickaction_state','1'),(12,12,NULL,NULL,'quickaction_state','1'),(13,13,NULL,NULL,'quickaction_state','1'); -/*!40000 ALTER TABLE `limesurvey_settings_user` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_survey_2022` --- - -DROP TABLE IF EXISTS `limesurvey_survey_2022`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_survey_2022` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `submitdate` datetime DEFAULT NULL, - `lastpage` int(11) DEFAULT NULL, - `startlanguage` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, - `seed` varchar(31) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X528` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X503` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X504` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X504other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ009` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ010` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ011` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ012` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ013` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ014` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ015` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ016` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ017` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ018` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ019` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ020` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ021` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ022` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505SQ023` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X505other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X506SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X506SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X506SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X506SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X506SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X31X506other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X540` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X541` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X542` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X517` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X543` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X521` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X522SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X522SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X522SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X522other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X523` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X524` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X531SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X531SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X531SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X531SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X531SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X531other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X532SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X532SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X532SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X532SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X532SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X532SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X532other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X544SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X544SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X544SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X544SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X544SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X544other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X525SQ001` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X525SQ002` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X525SQ003` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X526` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X527` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X546SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X546SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X546SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X546SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X546SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X546other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X533SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X533SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X533SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X533SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X533SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X533SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X533SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X533other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X534` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X535SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X535SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X535SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X535other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X536` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X34X537` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X529` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X515` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X530` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X516` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X545` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X518` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X519SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X519SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X519SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X519other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X520` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X507` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X508SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X508SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X508SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X508SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X508SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X508SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X508other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X509SQ001` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X509SQ002` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X509SQ003` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X510` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X511` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X513SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X513SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X513SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X513SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X513SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X513SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X513other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X514SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X514SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X514SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X33X514other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X35X538` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X35X539` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2022X32X512` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=2205 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_survey_2022` --- - -LOCK TABLES `limesurvey_survey_2022` WRITE; -/*!40000 ALTER TABLE `limesurvey_survey_2022` DISABLE KEYS */; -INSERT INTO `limesurvey_survey_2022` VALUES (1,NULL,1,'en','1089832840','A2','A3','male','','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,'1980-01-01 00:00:00',5,'en','2093425183','A2','A3','male','','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Back at uni, I was shown this weird but funny thing by a friend, and since I had a lot of free time I tried it, just out of curiosity. Never looked back','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','','Y','','Isolated development environments','Sandboxed builds','Declarative system configuration','Not add anything fancy, but stabilize the existing (flakes, ca-derivations, and also make the whole thing more robust in general)','Pen and paper? abacus? No idea tbh','','Y','','Y','Y','','Y','','','','Y','','','','None on a regular basis right now. In the past I’ve used https://github.com/svanderburg/node2nix and https://github.com/nix-community/poetry2nix/ a bit','Y','Y','','','N','My own laziness','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same as Nix','Y','','Y','','','','','Declarative system configuration','Ease of setting-up new services (well, it’s not always true, but when it is, it’s magical)','Possibility to easily maintain a whole network','Dunno. Probably make the module system less magical one way or another','Duh. Probably something mainstream like Ubuntu and complain about it all day long','Y','Y','','','','Y','','Y','','','sway','None that I can think of','Same','💜 NixOS'),(3,NULL,1,'en','1166500186','A2','A3','male','','','Y','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,'1980-01-01 00:00:00',5,'en','2053364864','A5','A4','male','','','Y','Y','','Y','Y','Y','Y','Y','Y','','','Y','','','Y','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was looking for a more sane way to build my Haskell project.','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Reproducible OS configuration','Up to date software','','','Chef','','','','Y','Y','','','','Y','','Y','','','','bundix https://github.com/nix-community/bundix','Y','Y','','the applyPatches trivial builder','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I didn\'t like how old the packages were on Ubuntu so I switched to Arch and then I didn\'t like how I had to imperatively configure Arch, so I switched to NixOS which had declarative configuration and more up to date packages.','Y','Y','Y','Y','','Y','','Rollbacks','More turn-key setup of popular open source services','Building most services from source allows easier patching','Finish up transition to Markdown docs','A flavor of Arch Linux','Y','Y','','','','','','Y','','Y','','agenix\r\nCachix','deploy-rs',''),(5,'1980-01-01 00:00:00',5,'en','1863928487','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','','','Generic labor work','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','','','Y','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','Y','','','','','','','','','','Y','','','','','','','','','','Sway','','',''),(6,'1980-01-01 00:00:00',5,'en','1619380728','A2','A3','male','','','','','','Y','Y','','Y','','Y','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Always liked the concept, bounced off multiple times because of the learning curve, but now I\'m here. ','Y','Y','','Y','','','Y','','Y','Y','','Y','','','Y','Y','','Y','','Configuration as code','Remote deployments','Reproducible builds','I don\'t have a good solution here, but I think we need better ways to teach Nix, and a Nix that is easier to teach. ','Arch with Docker, probably','','','','Y','Y','','','','Y','','','','','','poetry2nix, naersk, occasionally node2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','NixOS was actually what got me into Nix. ','Y','','Y','Y','','Y','','Configuration as code','Ability to roll back a bad deployment easily','Reusing configuration across multiple hosts','Make the config system more understandable ','Still Arch + Docker','Y','','','Y','','','','','Y','','KDE is not a desktop environment, Plasma is','','',''),(7,'1980-01-01 00:00:00',5,'en','1787952371','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using NixOS prior to any \"Nix but not NixOS\" uses. However, my first use case of Nix outside of NixOS was creating devshell environments for software developers and interns.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','Y','','shell/devshell','flakes (reusable components)','modules (configuration options)','For Nix specifically, better offline support. Easier methodology for pinning and managing the registry. Better documentation of function schemas.','(Docker) containers','Y','Y','','Y','Y','','','','','','','','','','node2nix https://github.com/svanderburg/node2nix\r\ncomposer2nix https://github.com/svanderburg/composer2nix\r\n','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I first used NixOS to configure a Prometheus/Alertmanager instance in AWS after finding a guide that used NixOS. About a year latter I used a NixOS for a development server used by interns. At the same time I migrated all of my personal workstations from Archlinux to NixOS using the flake template DevOS. My main motivation was having a single declarative config and was generally unsatisfied with the more opinionated distros like Ubuntu yet I knew the management overhead of using Archlinux was not ideal.','Y','','Y','Y','','','','modules (configuration options)','flakes','change tracking using nix-diff & nvd','Better integration with tools like k8s and terraform. ','K8s, docker.','Y','','','Y','','','','','','','sway','DevOS (recently merged into library digga) https://github.com/divnix/digga/tree/main/examples/devos\r\ndevshell https://github.com/numtide/devshell\r\nagenix https://github.com/ryantm/agenix\r\nterranix https://github.com/terranix/terranix\r\nnvd https://gitlab.com/khumba/nvd\r\nnix-diff https://github.com/Gabriel439/nix-diff','Non-flake / old standalone NixOS configurations.\r\nAny tool that is difficult to use with flakes.',''),(8,'1980-01-01 00:00:00',5,'en','873658930','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to have a dotfile manager that was able to deal with arch Linux as well as Ubuntu *and* not only manages dotfiles but packages as well, that\'s why I started using Home-Manager and felt in love with it. Half a year later my laptop\'s disk broke and I installed nixos straight away without regret. Since then I use it when and wherever I can.','','','','Y','','','Y','','Y','','','','Desktop Machines','','Y','Y','','Y','','Reproducible builds','Declarative builds','Being sure that builds are \"self contained\"','`nix-env` as a high level tool. ','Pacman I think, though could have went back to emerge eventually, or have tried guix.','','','','Y','Y','','Y','','','','Y','','','','Poetry2nix, but very rarely.','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because my arch laptops hard disk broke and I installed nixos on it after having used Home-Manager already for a couple of months.','Y','','Y','','','','Desktop Machines','Declarative configuration','Reproducible configuration','Shared configuration across hosts through modules','The fact that `nixos-rebuild` ignores `nixos-config` in the nix path or equivalent env vars if `/etc/nixos/flake.nix` does exist.','Still arch Linux, or I might have went back to funtoo or Gentoo. Maybe I\'d even be using a red hat distribution, as the company I\'m working for has a heavy focus on them.','Y','','','','','Y','','','','','Awesome WM','','Hydra',''),(9,NULL,1,'en','449441515','A5','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Noticed an uptick of Nix-related content on social media, decided to check it out. I tried out on my personal systems and it made it much easier to manage everything so I stuck with it.','','Y','','','Y','','Y','Y','Y','','Y','Y','','Y','Y','Y','','Y','','Ephemeral development environments/shells. I work on a lot of other people\'s codebases at work, and may need version X of interpreter Y, and runtime dependency Z to build/run their code. nix-shell makes it easy!','Declarative system management (NixOS). I write it once and forget about it, but all system configuration is encapsulated and discoverable now.','Easier hacking on other projects (ex: adding custom patches, using different sources, etc)','','Ansible/Terraform for declarative config, containers for ephemeral dev envs, ','','','','','','','','','Y','','','','','','','Y','','Y','Contributing','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','Y','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(10,NULL,1,'en','1804043122','A5','A4','male','','','','','','Y','Y','Y','','','Y','','','','','','Y','','','Y','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(11,NULL,2,'en','72674448','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I wanted to try a different linux distro, with a truly unique package manager / set of tools. I found out the distro, then, I experienced nix-tools and only recently I started making good progress in writing nix modules etc.','','Y','','','','','Y','','Y','Y','','','','','','','Y','Y','','System changes right in front of my eyes, with no need to reboot, by just hitting nixos-rebuild','At every config change, I can always rollback to another config state','If correctly configured: stability. Never had to reinstall anything. Still usieg my very first install. ','Not nix itself related: a small, pratical, good guide. The wiki is good, but everything would have been much more simple with a guide about nix. The only thing I could find months ago were some very big pdfs, they were \"thesis\" from some of the nix devs. Good, well explained, but hundreds of pages and some of the concepts would be pretty hard to grasp for a non-CS student','Fedora, as daily driver. I would like to say Gentoo since I like to configure my machine from the top to the bottom, but it was very time consuming.','','','','','Y','','Y','','','','','','','','','','','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(12,'1980-01-01 00:00:00',5,'en','610704255','A3','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','My Arch install broke, and people have been telling me good things about nixos','','','','','','only nixos','Y','','Y','','','Y','','','Y','Y','','Y','','The vast amount of packages','How easy it is to extend/modify my packages','cross compilation, plus the easy combination with qemu if needed','I would make the error messages better','a normal linux distribution','','','','Y','Y','','','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Someone told me about it, and my other linux install broke','Y','','Y','','','Y','','Declarative system configuration','integration with nix','remote deployment','Add more modules, for more things, e.g. pihole','A normal distribution','Y','','','','','','','','','','i3','','','The distinction between nix and nixos is a bit confusing, especially since you have to use nix if you use nixos'),(13,'1980-01-01 00:00:00',5,'en','25662144','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','When I got a new laptop, I had to decide what OS to put onto it.\r\n\r\nI had been a happy Debian user for more than a decade. One of the reasons I\'m excited about open source is because it blurs the lines between \'developers\' and \'users\': users can actively participate in the development process. However, this was getting less and less the case with Debian: you have to choose between \'stable\' or \'unstable\', and even when choosing \'unstable\' the round-trip time between contributing something and actually using it in practice is rather long, especially if you\'re not a Debian Developer.\r\n\r\nFor this reason, I first tried Arch. I was turned off by their active resistance against making things easier to use. Debian isn\'t that easy to use either, but at least they\'re appropriately embarrassed by it and welcome initiatives to make things better. Also, I found their packaging tooling for maintainers (both \'official\' and AUR) not very conductive to collaboration on packaging, which I think is important for sustainability.\r\n\r\nI had always been intrigued by Nix, but using it outside of NixOS (and having many libraries on your system twice: once distro-provided and one for Nix) never sounded all that appealing. Also not having FHS paths sounded like a huge headache building stuff. Still, I decided to take the plunge.\r\n\r\nI was happily surprised with how well things worked in practice, even though the installation was somewhat painful because it wasn\'t particularly well-documented that a default installation wouldn\'t include WiFi drivers, so that took some work to go back and fix that.\r\n\r\nSince then I\'ve been a happy user of NixOS unstable. It provides a great balance between easily being able to experiment with things, but also always being able to revert to a \'known-good\' state if you want to get back to actually getting work done. The ease of contributing by forking nixpkgs, working from the fork locally, and then creating a PR based on that is amazing. The community is friendly. The tooling for collaborating on packaging is great.\r\n\r\nOnce I got familiar with Nix through NixOS, I\'ve also used it to create Docker images (and later also disk and other container images): the unreproducibility of building a Docker image through a Dockerfile has always annoyed me, and Nix solves this problem really nicely once you\'re ready to give it a serious look.','','Y','','','Y','','Y','','Y','','','Y','','','Y','','Y','Y','','A declaratively-managed desktop OS','A way to create declaratively-managed container images','','NixOS modules often contain infrastructure to generate configuration files to run something for a particular purpose (e.g. Nginx). However, those are not accessible outside of the module (for example in a nix-shell or in a \'distroless\' container image. This possibly also applies to home-manager, but I don\'t use that, so I\'m not sure). Having a nicer way so share that infrastructure (and having only the really NixOS-specific parts, like systemd integration etc, in the module) seems like it\'d be really nice.','Maybe Guix? Haven\'t looked at it.','','','','','','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started with Nix by starting with NixOS, so please see my answer to that question :)','Y','','','','','','','having declaratively-managed system configuration, easy to update and troubleshoot','rolling back to previous profiles','\'git bisect\' to find since when something I use broke','','Maybe Guix? Haven\'t used it','Y','','','','','','','','','','notion','','','I don\'t understand why \'nix-env\' shows up in so many places, it seems worse than nix-shell for basically every purpose. Am I missing something?'),(14,'1980-01-01 00:00:00',5,'en','670557563','A2','A3','male','','Y','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','wanted to have a declarative reproducible system','','','','','Y','','','','Y','Y','','','','','','','','Y','','having multiple channels','having overlays to configure the packages how I want','reproducible on other systems','the nix language is not my favorite','probably arch-linux','','','','Y','Y','','Y','','','','Y','','','','none','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','declarative reproducible system','Y','','Y','Y','','','','different channels','overlays','very easy to contribute','nothing','arch-linux','Y','','','','','','','','','','sway','-','-','keep up the great work'),(15,'1980-01-01 00:00:00',5,'en','1414705066','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','N','Y',NULL,'I tried to use Nix on Arch in an effort to learn the language and \'slowly\' moving to NixOS. I wanted to remove packages from Arch then install them via Nix and later lustrate the system. But I could not figure out how to get some applications working. e.g. I could not get nixpkgs.horizon-eda to find its icons. So I am currently trying to set up NixOS directly in a VM.','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','I am currently trying to move from Arch to Nixos because the aur often has broken dependencies and my computer science lectures\' software requirements often put me in dependency hell. I hope that nixos will help me with that.','Y','','','','','','','I have good integration of nix, one package manager with which I can manage all my dependencies, and can (hopefully) throw away all this pip, npm, etc shit','if you fuck up your system setup, you can easily roll back by selecting a boot option (have not tried that yet)','if I lose my laptop pc, I can easily resurrect my system from my configuration.nix ','I have never had a question left unanswered by the Arch wiki. The nixos wiki is way less complete. When I am more confident with my nix skills, I will try to contribute to that.','I would keep using Arch ','Y','','','','','','','Y','','','none+i3','','',''),(16,'1980-01-01 00:00:00',5,'en','64140792','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Nix had popped into my bubble a few times and I felt pretty confident it was just a better management model (but I was in not-yet mode). I think the most-acute reason is that I have always hated the process of moving systems or wiping it clean; it makes me anxious about losing things. I\'d end up spending days if not weeks hand-auditing what was on the old system and getting everything set up right on the new one. \r\n\r\nIn early 2018 the motherboard in my old Windows system flamed out. Since it was a sudden transfer I didn\'t have time to prepare for I decided it was a tolerable time to give NixOS a try.','Y','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','cross-platform declarative system config','garbage collection','an ur-glue-language/toolkit (like Shell supercharged by internalizing dependency specification--instead of Shell disempowered by externalizing dependency specification on implicit global state)','Oof. IDK. Imperative package management via nix-env has always struck me as a misfeature. I do have a few container CI jobs that use nix-env imperatively, so I guess my beef with it is more about doing a better job of telegraphing to newbies that nix-env probably isn\'t the place to start (not to mention how laden it is with gotcha performance problems if you don\'t know the right flags...). But, of course, part of the problem here is that Nix has left a power vacuum in the declarative package management space. I haven\'t learned enough about flakes to understand how they\'ll affect this situation.','A rusty knife.','','','','','','','','','Y','','Y','','','','https://github.com/DavHau/mach-nix\r\nhttps://github.com/kolloch/crate2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','It is mainly my \"fun\" machine; I do like 99%+ of my \"work\" in macOS','A4','I started using Nix when I started using NixOS; see answer to equivalent Nix question.','Y','','','','','','','declarative config','atomic updates','garbage collection','I wouldn\'t really call this a change to NixOS, but I feel like as you move out beyond basics that some combination of Nix + nixpkgs + NixOS are hampered by how the global ~service model in NixOS is implemented? \r\n\r\nThe ecosystem might be a little better if the NixOS modules were building atop readily-accessible utility functions alongside the package. This could, for example, help close the gap between being able to enable a service (perhaps postgres or nginx...) in NixOS, and figuring out how to build a shell.nix that starts an ephemeral server for working on a project and halts it on exit.\r\n\r\nPhrased around, this would be about ensuring the work that goes into NixOS maximizes leverage across the ecosystem.','Hard to say. Given when I first tried NixOS, I\'d probably still be using Windows on my desktop. I don\'t think I would see all of the papercuts associated with desktop Linux as a good use of my time/energy without the affordances that come with Nix and NixOS.','Y','','','','','','','','Y','','','nix-darwin','Not sure if this is in-scope since they had a separate question, but like almost everyone I had to fumble through a sequence of x2nix projects before finding something workable.','I would love to see the project take user experience around onboarding and offboarding (especially install/uninstall) more seriously (more resources/organization/attention, less indifference). \r\n\r\nMinimizing papercuts around these is probably a hybrid effort focused on ensuring things like:\r\n- the documentation is lucid enough for newbies to understand what to do\r\n- the documentation is clear and accurate about which systems/shells it will work on (mainly Nix?)\r\n- the installers are as easy to understand/use as is feasible\r\n- instructions for installing/uninstalling are complete (i.e., both up-to-date now, and not broken for people with older installs)\r\n- the installer runs cleanly across a spectrum of systems and preconditions (mainly Nix, but this may apply WRT hardware issues for NixOS as well)\r\n- the installer detects and reports as many precondition problems as is feasible before completing (users shouldn\'t immediately step on a rake if the installer claimed to run OK)\r\n- failed installs avoid the user-hostile antipattern of leaving partial state that will cause the next install attempt to fail until the user manually cleans it up\r\n- both installer and build error messages are clear enough for people to solve simple problems themselves without waiting for feedback\r\n- installer problems that only bite a subset of users get fixed rather than festering for years\r\n\r\n Since it looks like a hybrid effort that likely draws on information the marketing team gathers--and likely affects metrics the marketing team cares about--it makes sense to me as an incubator for such efforts (least in the absence of a more-appropriate home--perhaps a UX team).'),(17,NULL,1,'en','920574554','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','Y','Consultant','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18,'1980-01-01 00:00:00',5,'en','617557026','A2','A4','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because I liked the concept and I wanted something better than Homebrew on macOS ','Y','','','','','','Y','','Y','','','','','Y','Y','','','Y','','Reproducible Dev Environments','Reproducible machine configuration','','','','','','','Y','Y','','','','','Y','','','','','cabal2nix\r\npoetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','Y','','','','','','','','','','Y','','','','','','','','','','','emacs-overlay\r\nnix-darwin','',''),(19,NULL,2,'en','1895241653','A5','A2','-oth-','enby','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','dependancy resolution','reproducible/declarative systems','flakes','FreeBSD support','I\'d probably end up sacrificing language flexibilty to just use languages with decent package managers (rust, go, etc - no C/C++)','','','','Y','Y','','','','Y','','Y','','','','','','Y','','','N','need - there are so many contributors that every time i notice something old or wrong, there\'s already a PR.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(20,NULL,2,'en','619192717','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','Honestly? I was looking for a new OS for my laptop and am still trapped 5 years later :P','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','Nixpkgs','nix-shell / nix develop','NixOS','The split interface, everything would be / would\'ve always been the new interface (which would have feature parity with the old interface)','Arch I guess? And a mess of build software... It wouldn\'t be pretty','','','','Y','Y','','Y','','','','Y','','','','-','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','Because I was looking for a new OS for my laptop, see above','Y','','','','','','','','','','','','Y','','','','','','','','','','',NULL,NULL,NULL),(21,'1980-01-01 00:00:00',5,'en','255658999','A1','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','It provides all the features I want to manage things from a little personal project to an entire GNU/Linux OS.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','declarative','isolation','centralized management of state','I would make it easy to use an old version of certain program.','ansible and homemade scripts','','','','Y','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I have always wanted to write some text files that can declare an entire OS.','Y','','Y','','','','','centralized management of state','versatile modules','easy rollback','https://guix.gnu.org/en/blog/2020/grafts-continued/','Arch Linux','Y','','','','','','','','','','Sway','home-manager','NUR',''),(22,NULL,NULL,'en','2067281100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(23,'1980-01-01 00:00:00',5,'en','272705908','A2','A3','male','','Y','','','Y','','Y','','','','','','','','','','','Y','','','Y','','','Y','','','Y','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','Y','Y','','Y','','','Y','Y','','Y','','Repeatability','Easy config for many systems','Awesome community','more documentation concerning nix flakes (especially more advanced configurations)\r\nmore/better documentation for nixpkgs for specialized mk-derivations \r\na working and easy to use python environment (machNix and poetry2nix are ones I use and they both don\'t work really well..)','Debian','','Y','','Y','Y','','Y','','','','','','','','poetry2nix\r\nyarn2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','Y','','Y','','Easy configuration','One git repo to maintain the config of all machines ','','','','Y','','','Y','','','','','','','i3','','',''),(24,'1980-01-01 00:00:00',5,'en','616786853','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','NixOS has an easy way to customize and add new packages/service. On top of it it is completely declarative.','','','','','','','Y','','Y','','','','Main workstation','','Y','','Y','Y','','Declarative system configuration','nix-shell for temporary environments','Declarative home configuration (home-manager)','','','','','','','','','','','','','','','','','node2nix, go2nix','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Wanted a rolling release system, with declarative configuration, roll-back and easy to add custom packages','Y','','Y','','','','Main workstation','Declarative system configuration','Declarative home configuration (home-manager)','Roll-back','crosvm with system integration like somelier','Guix','Y','Y','','','','','','','','','Sway','','',''),(25,'1980-01-01 00:00:00',5,'en','1253782099','A4','A2','-oth-','Non-binary','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I read Xe\'s blog posts and slowly got sucked in: https://christine.website/blog','','','','','','','Y','Y','Y','Y','Y','Y','','','Y','Y','','Y','','I don\'t like this question. There\'s no three features that sold me on Nix, it\'s how well it all fits together.','','','What do you get from knowing this? It\'s not like you control what other people will decide to PR. And this isn\'t an RFC form. And what I want from Nix is not what Nix\'s overall goals are/should be.','I used Arch, docker-compose and a lot of symlinks before. It was messy.','','','','Y','Y','','','','','','Y','','','Crappy custom mess I wrote','yarn2nix (in nixpkgs)','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Same as the other question. Xe\'s blog posts: https://christine.website/blog','Y','Y','Y','Y','Y','Y','','','','','','','','','Y','','','Y','','','','','i3','- https://github.com/nix-community/nix-doom-emacs since I maintain it, https://github.com/nix-community/emacs-overlay since nix-doom-emacs uses that.\r\n- https://github.com/nix-community/home-manager for obvious reasons','','Building a survey is probably much harder than critiquing it but I honestly can\'t see what the motives behind a lot of the questions were.\r\n\r\nAnnd you didn\'t really mention home-manager at all which seems odd.\r\n\r\n(@ckie:ckie.dev)'),(26,'1980-01-01 00:00:00',5,'en','487196627','A2','A3','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','sane ci dependency management and caching','installing software unavailable on other distros (nixpkgs is so big!)','cross compilation','remove nix-env\r\nadd documentation (on nixpkgs more than nix, maybe)\r\nmake it clear on search.nixos.org what packages are meant to be used with nix-shell, with a dedicated nixos module (like apache) or \"normally\" with nix-env/environment.systemPackages\r\nmake lists take a separator (comma or whatever) instead of forgetting to add parens\r\nmake nix the language typed, and make adding misspelled attributes to mkDerivation and the like not be \"ignored\"','normal distros and toolchains, maybe gnu stow to replace home-manager.','','','','Y','','','','','Y','','Y','','','','crate2nix https://github.com/kolloch/crate2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','','','','','declarative configuration shared among machines. I started really customizing with computer thanks to NixOS because I no longer had the fear that if I had to reinstall, I would not know how to reapply the customization anymore.','ease of trying configuration changes and not commit the change if not satisfying/not working. ease of trying new programs in nix-shell and not have the change be persistent. no risk in upgrading.','ease of mixing stable and unstable (I have borked many debian installs trying to do the debian equivalent)','migration of state (notably: database migrations on update) in nixos modules is mostly ignored and should be addressed in a uniform and principled way. stateVersion should probably be made per-module.\r\nfix no such space left on device on rebuild in /boot\r\nadd an equivalent of home-manager news\r\npre-install home-manager on nixos and tell people it is officially endorsed as part of nixos, and the one true way to replace nix-env.\r\nprobably something similar should happen with sops-nix or agenix once the community clearly chooses one.','debian testing','Y','','','','','','','','','Y','','home-manager\r\nlorri\r\nniv\r\ncrate2nix\r\nnix-user-chroot\r\n','dconf2nix\r\nopam2nix',''),(27,'1980-01-01 00:00:00',5,'en','1174607615','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','Built into NixOS','','Y','','','','','Y','','Y','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','I don\'t follow upstream close enough to know when a new version is released and the package is usually updated by someone else pretty quickly. (I only mainly use a few very popular applications).','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I like NixOS having my entire configuration declarative. Easy to wipe and reinstall, easy to undo changes, easy to replicate to multiple machines.','Y','','Y','','','','','','','','Add Snap support. ','Arch Linux and evaluate Guix.','','','','','','','','','Y','','','','',''),(28,'1980-01-01 00:00:00',5,'en','1358614300','A5','A3','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Learned of nix through haskell subreddit in ~2016, then had it on my backlog of things to learn until 2018. Have been using it ever since then.','Y','Y','','Y','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Declarative configuration','reproducibility','composibility of packages/services','Add gradual typing or stronger type machinery.','Sadness.','','','','Y','Y','','Y','','','','Y','','Y','','https://github.com/fzakaria/mvn2nix\r\nhttps://github.com/zaninime/sbt-derivation','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started with wanting to use nix for development environments on Ubuntu. One day, ubuntu decided to die, and decided that the next linux OS would be NixOS.','Y','Y','Y','','','','','Declarative+congruent configuration','VCS-friendly configuration','Package+service composibility','More contributors?','Sadness.','Y','','','Y','','','','','','','i3-gaps','https://github.com/Mic92/nixpkgs-review\r\nhttps://github.com/jonringer/nix-template','','Nix, to the moon!'),(29,'1980-01-01 00:00:00',5,'en','557365296','A2','A4','male','','','','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Workplace had a test environment using nix that I ended up maintaining.','','','','','','','Y','Y','Y','','','','','','Y','Y','','','test builds','automatic build and caching of dependencies','slightly more workable language than at least make','','better integration with \"unsafe\" or \"non-deterministic\" code, eg. getting random more easily (run same test multiple times, even nixos could use this feature) or invoke external build service as a part of a build.','probably make, and regret it','','','','Y','','','','','','Y','','','','','','','','','overrides','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Work test system was nix on nixos','Y','Y','Y','','','','','easy accountability of system files with volatile rootfs','easy to have system description in git','rollbacks are nice, though generally of less value than one would have thought','all mergeable lists in modules as sets or other structures that would allow partial overrides','I used to use debian with setup scripts','Y','','','','','Y','','','','Y','sway','nixpkgs-fmt','nixfmt',''),(30,'1980-01-01 00:00:00',5,'en','1732005268','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','','','','','Y','','','','','','','Y','','','','Y','','simple system configuration','','','more Dokumentation','archlinux','','','','','','','','','','','','','','','','','','','','N','Dokumentation','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','One config file, simple rolebacks','Y','','','','','','','','','','Dokumentation','archlinux','Y','','','','','','','','','','','','',''),(31,NULL,NULL,'en','1109858097',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(32,'1980-01-01 00:00:00',5,'en','478565833','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I have background as both DevOps/SRE and application developer and I find maintaining reliable, consistent-over-time, repeatable software environments to be super frustrating, both before and after the advent of Docker. Commonly organizations supply their developers with Apple hardware, and using tools like Homebrew or ASDF to try to maintain our development environment is completely unsustainable over enough time or enough variation of MacOS version/hardware.','Y','Y','','','Y','','Y','','Y','','','','','','Y','Y','Y','Y','','Declarative builds of software from many languages/ecosystems','Transparent, safe-ish binary caching and immediate fallback to building from source','Safe, concurrent use of contradictory versions of software and libraries without polluting the global OS environment','I have adapted to it myself but I find Nix-the-language to be a significant roadblock to work adoption, even at organizations using functional-programming languages like Elixir, but Nix the tool/workflow is the actual desire/goal. I don\'t know what would be \"better\" and still satisfy the same constraints, but a less niche language would possibly ease adoption.','Guix, Docker. I\'d never use Snaps/Flatpaks/AppImages, though.','','','','Y','Y','','Y','','','','','','','','cargo2nix, crate2nix, yarn2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','Y','','','','','Reproducible, declarative machine-level configuration','Elimination of dependency hell once something is successfully packaged for Nix in general','Easy rollback after configuration mistakes or distaste','','','Y','','','','','','','','','','bspwm','home-manager, nix-direnv, emacs-overlay, nixfmt, hydra-check, statix, pre-commit-hooks.nix','niv, carnix, fenix, nixpkgs-fmt, lorri, naersk, linuxkit-nix, kubenix, dhall-nix',''),(33,NULL,1,'en','2929980','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34,'1980-01-01 00:00:00',5,'en','126986400','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Engineering Manager','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Wanted to build perfect all-in-one NAS & home server','','Y','','','','','','','Y','','','','','','Y','','','Y','','Repeatable','Declarative','Cross-platform','Switching to using a normal programming language','Combination of apt, ansible and custom scripts','','','','Y','','','','','','Y','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Build perfect all-in-one NAS & home server','','','Y','','','','','Declarative','Easy to rollback/repair','Latest packages','I would add better structure to the configuration and out of the box golden configurations to achieve different use cases','Ubuntu','Y','','','','','','','','','','','','nixops',''),(35,'1980-01-01 00:00:00',5,'en','854818489','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Disappointed by the previous generation of configuration management that basically implemented \"configuration drift management\", where NixOS would result in a declarative setup with a better vertical integration between package, configuration and resulting deployment.','','','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','Remote building','Throwaway-Environments with `nix-shell -p`','','Create a parallel implementation in Rust, so that nix would have to compete for being the BiS implementation.','','','','','','','','','','Y','','Y','','','','node2nix\r\nyarn2nix ','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Possibility to manage all machines, workstations and infrastructure in the same, declarative way.','Y','Y','Y','Y','','Y','','Vertical integration between packaging, configuration and deployment hardening','NixOS Tests','Low barrier to contribution due to most definitions being part of the nixpkgs mono repo','Reduce weird dependency chains in basic deployments, like how easy you get a system that depends on webkitgtk, or political issues like hard dependencies on polkit. Ideally something like USE-Flags.','Probably Debian for servers, Arch for workstations.','','','Y','','Y','','','','','','Sway','Home-Manager\r\nHydra\r\nnix-output-monitor\r\nNUR\r\n','lorri',''),(36,'1980-01-01 00:00:00',5,'en','2146796742','A5','','male','','','','','','','','','','','','','','','','','','','','','','','','','industry researcher','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','To have a single way to do package downloads and builds, regardless of platform, OS, language.','Y','','','','','','Y','','','','','','','Y','Y','Y','','','','rollback and reproducibility','downloading packages','development shell','The Nix language is very hard to use ---- it is especially hard to decipher to a newbie.\r\n','Guix, stack, cabal, npm, etc.','','','','','Y','','','','','','','','','','cabal2nix\r\n\r\nhpack\r\n','','Y','','','N','I do not know what I am doing (yet).','N','N','When/if I stop using MacBooks.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://github.com/utdemir/nix-tree\r\n\r\nhpack\r\n\r\n','niv\r\n','Please put more inline comments in the examples.\r\n\r\nFor example, when first encountering an overlay, without know what it is, \"final: prev: ...\" is pretty mysterious.'),(37,'1980-01-01 00:00:00',5,'en','777602229','A2','A2','male','','','','','','Y','Y','','','Y','Y','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'d heard about home-manager for declarative configs and then I looked more into home-manager and nixos as a whole','Y','Y','','','Y','','Y','','Y','','','','Containers','','Y','Y','Y','Y','','Reproducibility ','\"Provenance\" via Drv','Hermetic builds','Make the nodejs ecosystem less awful in nixpkgs :(','There isn\'t really an equivilent, especially for my expected uses for a secure supply-chain. You\'d have to use bubblewrap for denying network on demand within build environments. Maybe wrap builds with https://github.com/testifysec/witness\r\n\r\nOr just use Guix but that feels like cheating','','','','Y','Y','','','','','','Y','','','Tekton','node2nix sometimes','Y','Y','','NUR','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'d heard about home-manager for declarative configs and then I looked more into home-manager and nixos as a whole','Y','','Y','','','','','Declarative environments','Direct control over dependencies & things are either packaged properly or not','Very easy to configure most services','Stop nixos-unstable from being clogged up for longer than a day','Maybe fedora silverblue or just Arch','Y','','','Y','','','','','Y','','i3wm riverwm','I really like trustix but it needs more focus','I\'ve stopped using vulnix because of false positives and it keeps breaking on unstable','Please focus on software supply-chain. Nix has the cleanest solution to almost all the problems people are looking to solve via SLSA (https://slsa.dev/) and SBOM but people don\'t know about nix\'s power'),(38,'1980-01-01 00:00:00',5,'en','1577733485','A2','A3','male','','','','','','Y','Y','Y','Y','','','Y','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','Referential transparency','String context','Build cahcing','Remove flakes\r\nModernize Nix code base and add proper tests\r\nFix memory leaks','Goats','','','','','','','','','','','','','','Systemd timers, drone','Npmlock2nix','Y','','Y','applying patches in my custom tooling','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','Y','Y','Y','Y','','Atomic system switches','Rollbacks','Sending system closures to remote machines','Remove crytocurrencies\r\nRemove non-free software\r\nDefine Maintainerships for modules and packages, right now it isn\'t worth the byteels it takes to declare\r\nRun test on hardware for releases\r\nRemove cloud stuff that nobody in the active committees is using/maintaining','Fedora','','','Y','','','Y','','Y','','','sway','','','Don\'t make Nix a product or at least try to get it out of the academic YOLO mode first.'),(39,'1980-01-01 00:00:00',5,'en','1845841114','A5','A3','male','','','','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I learned functional programming via Haskell years ago, and I\'ve been a Linux distro enthusiast since high school. I had always found managing Linux distros painful when dealing with upgrades, so I tried combinations of ansible, chef, docker, etc. I saw a post about Nix on hacker news, and Nix checked all the boxes for my interests: functional programming, reliable/reproducible builds, etc.','','Y','','','','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','','','','1) have recursive nix / plan dynamism be stable/performant to replace most uses of IFD and be used by all the *2nix projects.\r\n2) clarity around the move to Nix flakes--concerns about ending up with a million versions of nixpkgs.','Docker :(','','','','Y','Y','','Y','','','','Y','Y','','','poetry2nix https://github.com/nix-community/poetry2nix','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same as previous','Y','Y','Y','Y','Y','Y','','','','','1) actually reliable updates that could also snapshot the state of various services and rollback if things go poorly.','Arch','Y','','','','Y','Y','','','','','i3','','',''),(40,'1980-01-01 00:00:00',5,'en','765243246','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Pentester','','Y','','Y','','','N','Y',NULL,'Strange syntax, Ansible + Docker is inferior but good enough ','Better usability, better integration into language ecosystems, mature flakes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Missing support for Secure Boot & TPMs','Generell improvements in the Nix language usability ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','home manager','Keep up the great work!'),(41,'1980-01-01 00:00:00',5,'en','764271105','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Due to easier Haskell package management','','Y','','','','','Y','','','','','','','','Y','Y','','','','Reproducibility','Hermetic packages','Rollbacks','Remove nix-env','GNU Guix','','','','Y','','','','','','','','','','','','','','','','N','I haven\'t had a need to package anything yet','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Due to better Haskell package management','Y','','','','','','','Reproducibility','Hermetic packages','rollbacks','Remove nix-env','GNU Guix','Y','','','','','','','','Y','','','','',''),(42,'1980-01-01 00:00:00',5,'en','1794921277','A2','A4','male','','','Y','Y','','Y','Y','','','Y','Y','','','Y','','Y','Y','Y','','','','Y','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I found the idea intriguing. And nix seems further along than guix.','','Y','','','Y','','Y','','Y','Y','Y','Y','','','Y','','','Y','','declarativity','reproducibility','large library of packaged software and related nixos configuration of services','Fix the documentation. Fix flakes and the new nix-stuff and rewrite documentation so that old stuff isn\'t mentioned anymore. Better development tools for nix the language to make it easier to use (I\'m not a fan, but I don\'t hate it either).','Guix? I used debian before.','','Y','','Y','Y','','','','','','','','','drone','python, go, rust','Y','Y','','','N','My skills','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','Y','Y','','declarativity','reproducibility','lots of software and related services','The documentation.','Guix. I used debian before.','','','','','','Y','','','','','notion','nixfmt, home-manager','','Keep on the good work!'),(43,'1980-01-01 00:00:00',5,'en','1296792175','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','','','','N','N','Selling point for me is that I can turn off my machine thinking that it will definitely boot again up. Also I can create my own iso very easily.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I want to have choice what packages will end up in store. for example I want to use python pip without nix knowing about it, but sometimes I want it to be reconfigurable. Long story Short, Nixos lacks choice'),(44,'1980-01-01 00:00:00',5,'en','2136373594','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I liked the ideas of reproducibility and good build caching.','Y','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Local shells','Reproducibility','Portability','Make the review process more approachable, ensure there\'s no nitpicking. Prioritize trivial PRs like package updates, generally reduce the barrier to entry.','Probably brew.','','','','Y','Y','','','','','','Y','','','','crate2nix\r\nnode2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','I wanted an easy way to configure my home server. NixOS enabled trivially deploying changes to networking config, systemd services, installed programs etc.','','','Y','','','','','Declarative configuration','Rollbacks','Feeling of stability (if things work once, they keep working later)','Add first-class macOS support','hard drugs (nothing else can alleviate the pain)','Y','','','','','Y','','','','','','home-manager\r\nnix-top, nix-tree - I\'d love if these were built in\r\nnix-darwin','nix-gui - no support for home-manager / nix-darwin','I want to see Nix succeed and I\'m committed to helping make that happen, also I\'m working on a book for beginners/early-intermediate users.'),(45,'1980-01-01 00:00:00',5,'en','668441273','A2','A6','male','','','','','','','','','','','','','','','','','','Y','','','','','','','servicedesk','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','learning Nix','A3','After breaking a successful install of a Kolab mailserver, the thing exploded when setting up the ssl certs, the IRC chat provided me the \"re-install\" answer.\r\nThat would mean to type xxx commands in following the install instructions again, that was the moment I began to search for \"versioned systems\" to get to a previous working state of a system.\r\nFound out about Nilfs(2) and that\'s where NixOS was mentioned https://en.wikipedia.org/wiki/NILFS#OS_compatibility\r\nSince then i\'m hooked and trying to get productive with Nix(OS)','','Y','','','','','','','Y','','Y','','','','Y','','Y','Y','','Declarative system config','Nix build','Functional programming lanquage','I would like to add more financial support to get the foundation/community the things they need.','Debian, OpenSuse','','','','Y','Y','','Y','','','','Y','','','','','','','','','N','Knowledge, I was thinking about starting a topic on Discourse about a beginners guide to Nixos.\r\nThen i Found someone who has started this already - https://github.com/kstenerud/nixos-beginners-handbook/blob/main/README.md','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','Y','','','','','','','','Y','Y','','Y','','','','','Y','','','Flox','',''),(46,NULL,NULL,'en','1675188561',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(47,'1980-01-01 00:00:00',5,'en','297744529','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','Because it\'s part of NixOS.','','Y','','','','','','','','Y','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','My custom packages are just .nix files in my repo with my NixOS configuration.','N','I think I would need to spend a lot more time on my packages to make them acceptable.','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','I heard about NixOS at the same time as I was choosing an OS for my new server.','','','','Y','','','','stability','configuration as code','it\'s easy to run common services (like Nextcloud), they\'re kind of preconfigured and it\'s all well document in NixOS Manual','I found it hard to set up a Python web application that was not a package but was just checked out from git in a directory in $HOME and had its Python dependencies installed using python38.withPackages and home-manager and yeah... it just took me a while to put all the pieces together. Dunno what exactly could be improved there though.','Guix or Docker','Y','','','','','Y','','','','','','','','Keep up the good work!'),(48,'1980-01-01 00:00:00',5,'en','584360496','A2','A2','male','','Y','','','','Y','Y','','','','','','','Y','','','Y','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Someone dared me to replace Gentoo with NixOS. Was a die-hard Gentoo fan before. How the turntables...','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','Declarative configuration of everything','Ephemeral shell environments (both development shells and \"oh I need this one-off tool for a second\" situations)','\"Magical\" package installation via ${} string interpolation in configuration files','I would improve the new-style CLI, first and foremost. Removing the need for the few commands that still require the v1 commands. Things like:\r\n - nix-shell -p (as in, a \"nix shell\" that also runs setup hooks)\r\n - various nix-store query commands\r\n - nix profile, especially an equivalent to \"nix-env --set\", so nix-env can finally be removed, and then use nix profile internally where nix-env is currently in use, such as nixos-rebuild\r\nAnd in general, making flakes stable and first-class.','Portage and (begrudgingly ;)) Docker.','','','','Y','Y','','Y','Y','Y','','','','','','https://github.com/nix-community/dream2nix\r\nhttps://github.com/fzakaria/mvn2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I\'ve been dared to replace my Gentoo with NixOS and I ended up liking it.','Y','Y','Y','Y','','','','Declarative configuration of everything','\"Magical package installation via string interpolation\" via ${pkgs.package} in a config file','Opt-out ','- Add multi-instantiable modules\r\n- \"NixOS a la carte\" (https://github.com/NixOS/nixpkgs/pull/148456)\r\n- Change the nixos-rebuild CLI (maybe rename the command to \"nixos\", make flake-style configuration first-class, i.e. no --flake, no /etc/nixos/configuration.nix)\r\n','Gentoo or a custom build of Fedora Silverblue','Y','','','Y','','Y','','Y','','','','home-manager','Hydra. Hydra feels like the Jenkins of the Nix world. Kind of clunky and doesn\'t integrate all too well into Git web services. Still in use here because there\'s no real replacement for it (fully self-hostable, private Nix-first CI).','I hope all the feedback collected from this survey helps bring Nix forward. You all have created something incredible. It would be a shame if it were to fade into obscurity.'),(50,'1980-01-01 00:00:00',5,'en','2110207521','A4','A4','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','','Y','Y','','','','','Y','Y','Y','Y','','Reproducibility','Declarative package management','Consistency','- Better error messages and debugging info.\r\n- Better documentation.','I find it hard to go back to any linux distro with traditional package management. If Nix didin\'t exist, maybe something like GNU Guix?','','','','','Y','','','','','','','','','','poetry2nix\r\n','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','Reproducibility','Declarative system management','Consistency','- Better error messages,\r\n- Better docs.','GNU guix, maybe?','Y','','','Y','','','','Y','Y','Y','and WM like: Sway, i3, xmonad','','','No! Thank you!'),(51,NULL,4,'en','921134745','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Engineering Manager ','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','','','','','Y','','','','','','','','Y','Y','Y','Y','','','','','Remove Flakes and spend time to improve the existing UX instead ','','','','','','','','','','','','Y','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A5','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL),(59,NULL,1,'en','1506953960','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(52,'1980-01-01 00:00:00',5,'en','2063862762','A2','A3','male','','','Y','','','','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Nix, or especially NixOS, started popping up more frequently on this very orange website. This lit the spark of my interest and I found myself fascinated with Nix\'s reproducibility and the implication that packets working on the maintainer\'s machine will also work on mine.','','','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','reproducibility','the Nix language','huge set of already existing packages and functions to build on','I would like to improve the documentation and add a more human-friendly search engine for the builtin functions on top. Sometimes it is hard finding something within the documentation, even when used multiple times before.','For packaging, perhaps ArchLinux\'s pacman or Alpine\'s apk as it is very easy to package some software.\r\n\r\nFor deployment, I would either use Puppet or Ansible.','','','','','','','','','','','Y','','','Travis CI','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','NixOS started popping up more frequently on this very orange website. This lit the spark of my interest and I found myself fascinated with Nix\'s reproducibility, the implication that packets working on the maintainer\'s machine will also work on mine, and the possibility to roll back to an older system generation in case of a f*ck up.','Y','','Y','Y','','','','Truly declarative system configuration in one place','Ability to easily overlay the nixpkgs with modified or even own packages','Huge community-driven nixpkgs repository','As for Nix, I would increase the documentation regarding to end users, not only developers.\r\n\r\nI also would like to have a more unified way to define systemd units, especially regarding systemd\'s security features. Some modules are restricting services through an extra user, seccomp, and even landlock (both through systemd) while others are just executed as the root user. A common ground would be nice. In this spirit, I would love to see a good AppArmor or SELinux integration.\r\n\r\nI would remove or alter the way how one can contribute to the nixpkgs. The current Pull Request-based approach is overrun by its huge user base. This results in lots of Pull Requests being ignored. As the maintainer of some packages, it annoys me when a simple version bump for one of my packages is just ignored and falls through, sometimes even for security-relevant fixes. I would really like to be able to at least alter \"my own\" packages without waiting, sometimes for months.','Depending on the context, it would be either Debian, ArchLinux, Alpine or OpenBSD. For servers, I would add Ansible or Puppet on top to get at least some reproducibility. Oh, and containers, I\'d guess.','Y','','','','','Y','','','','','dwm','agenix\r\nSimple Nixos Mailserver\r\nNUR, Nix User Repositories','','Thanks a lot for all Nix and NixOS users, contributors and developers for all their effort.'),(53,NULL,1,'en','1077577150','A2','A3','male','','Y','','','','','Y','Y','Y','Y','Y','','','Y','','','','Y','','','Y','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(54,NULL,1,'en','1570955253','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(55,'1980-01-01 00:00:00',5,'en','1240758923','A2','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','','','','','Y','','','','','','Pacman','','','','','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','Arch Linux','Y','','','','','','','Y','','','','','',''),(56,'1980-01-01 00:00:00',5,'en','1008110925','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Reproducible build environments.','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','Y','','Reproducible builds + build environments','Flakes','Binary cache','Put someone in charge of overhauling the documentation + website. They\'d be responsible for it, would be able to make controversial changes, and we would see some progress.\r\n\r\nI would improve the DX, by looking at other CLI tools.\r\n\r\nI would add a Rust backend to (parts of) Nix, to increase velocity.\r\n\r\nI would create a CEO position, separate from BDFL (= eelco). Someone with great project management skills.','Homebrew on macOS, probably. Or maybe Guix? But it wouldn\'t exist either.','','','','Y','Y','','','Y','','','Y','','','','https://github.com/nix-community/dream2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Declarative system configuration. I was always forgetting how I had achieved a certain setup on my Linux boxes. NixOS changed that.','Y','','','Y','','','','Declarative system config','Ease of sharing configurations','Rollbacks','The module system\'s code is very arcane, and apparently very few people really understand it fully. I would simplify it/document it.','macOS','Y','','','','','','','','','','sway','- Home Manager\r\n- nixos-hardware\r\n- rnix-lsp\r\n- nixbuild.net','- niv\r\n- nixops','This is great!'),(57,'1980-01-01 00:00:00',5,'en','993367559','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','Y','Y','','','','','','Y','','','Y','','','','','','','','','','Y','','','','','Y','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','',''),(58,NULL,NULL,'en','1400397373',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(60,NULL,1,'en','1515845934','A1','A7','-oth-','just testing the form, disregard this','','','','','','','','','','','','','','','','','','','','','','','','just testing the form, disregard this','','','','','','just testing the form, disregard this',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(61,'1980-01-01 00:00:00',5,'en','1438936673','A5','A5','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A2','I needed to try another OS. ','','Y','','','','','','','Y','','','','Test','','','Y','','Y','','','','','','Self written software','','','','','','','','','Y','','','','','','','','Y','','','N','Lack of time','N','N','More time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Thanks for asking'),(62,NULL,3,'en','2120481992','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(63,NULL,4,'en','224134807','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','Y','Y','','','Y','Y','Y','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(64,'1980-01-01 00:00:00',5,'en','1264179663','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was using arch back when it had a bunch of system configuration in 1 file (rc.conf), notably what daemons to start.\r\nThe idea of having much of the system declared in a single place really appealed to me.\r\nBut they moved away from that when they switched to systemd.\r\nShort after I found nixos, which does is a lot better :)','','','','Y','','','Y','','Y','Y','','','','','','','','Y','For nix home manager','All configuration is done in a single place','Easy to install new software without having to worry that it leaves random system files around after uninstall','System rollback in boot menu','The language. I really like the syntax, but it rarely happens that I have to write anything complicated. As a result I keep forgetting how to do those things and have to look it up every single time. That would be less of an issue if a more mainstream language was used. And also related: better documentation on what functions nixpkgs has to offer and how to use those.','guix probably :)','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was using arch back when it had a bunch of system configuration in 1 file (rc.conf), notably what daemons to start.\r\nThe idea of having much of the system declared in a single place really appealed to me.\r\nBut they moved away from that when they switched to systemd.\r\nShort after I found nixos, which does is a lot better :)','Y','','Y','Y','','','','All configuration is done in a single place','Easy to install new software without having to worry that it leaves random system files around after uninstall','System rollback in boot menu','The language. I really like the syntax, but it rarely happens that I have to write anything complicated. As a result I keep forgetting how to do those things and have to look it up every single time. That would be less of an issue if a more mainstream language was used. And also related: better documentation on what functions nixpkgs has to offer and how to use those.','guix probably :)','Y','','','','','','','','Y','','I3','home-manager','',''),(65,'1980-01-01 00:00:00',5,'en','11713359','A2','A3','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I always wanted to get more involved into my personal Linux system, but failed with Arch as I couldn\'t get hold of the system state for the live of it.\r\nA friend told me about NixOS and its guarantees about configuration and reproducibility. I realised that this was exactly what I was looking for in order to get a better understanding of operating systems and switched all my systems to NixOS in a few months.','','Y','','','','','Y','','Y','Y','','Y','','','Y','Y','','Y','','A unified model for how build steps are done, that is both flexible and easy to reason about.','Strong reproducibiltiy guarantees through it\'s model.','Strong security guarantees for source builds through sandboxing and output signing.','Make evaluation much faster/more cachable. If I just could evaluate my NixOS systems in milliseconds instead of ~30sec my life would just get much easier.\r\nEvaluation caching by Flakes already helps here, but isn\'t enough for it to make work really pleasant.\r\n\r\nAlso of course make flakes stable and widely accepted in the community ;) The fact that it\'s hidden behind an experimental flag is the single most important reason why I can\'t easily recommend Nix to friends/coworkers.','Frankly I probably wouldn\'t use a build system at all, as Nix was my gateway into building open source software. For package management I\'d probably still be stuck with something Debian based.','','','','Y','Y','','Y','','','','','','','','https://github.com/kolloch/crate2nix\r\nhttps://github.com/cachix/elm2nix\r\nhttps://github.com/svanderburg/node2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','See my \"Why did you start using Nix?\" answer.','Y','','Y','Y','','','','Truly reproducible system configuration, deploy systems from a git repository.','Access to a huge catalogue of deployment abstractions and packages','Composable system modules','I\'d provide a decent user interface for configuration so I won\'t need to maintain the Linux Mint and Ubuntu installations of my friends anymore.\r\n\r\nFaster security updates, e.g. through hourly channel upgrades and better testing, so channels never need to block.','Probably Linux Mint? My computer usage would be very different.','','','','','','Y','','Y','','','Sway','https://gitlab.com/simple-nixos-mailserver/nixos-mailserver\r\nhttps://github.com/nix-community/home-manager\r\nhttps://github.com/Gabriel439/nix-diff\r\nhttps://github.com/Mic92/nix-update\r\nhttps://github.com/jtojnar/nixpkgs-hammering\r\nhttps://github.com/ryantm/agenix','NixOps, when I reaiised that it does much too much magic for my purposes.\r\nA variety of rust2nix projects.\r\nnix-top, as it did weird stuff to my terminal\r\n',''),(66,'1980-01-01 00:00:00',5,'en','317024944','A5','A2','male','','','','','','','','','','','','','','','Y','','','Y','','Y','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I started experimenting with Nix in the hopes to switch to NixOS. It was a much more stable package manager than pacman and I could configure packages a lot easier.','','Y','','Y','','','Y','','Y','','Y','','','','Y','Y','Y','Y','','Easy configuration of from-source packages: can just override the nix expression','Reproducible development environments','A continuously growing and up to date package ecosystem','Break up nixpkgs into many flakes, assuming flakes was standardized','Not sure, maybe docker, gobolinux, anaconda or a mix of many solutions','Y','','','Y','Y','','','','Y','','Y','','','','node2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was using archlinux and I started to get frustrated with how much work was needed just to maintain the system. It always felt like there was something that was not working and no one was able to help me solve it since my system was likely so different than theirs. I saw the appeal of nixos and a system that can be described with nix code. From there I started experimenting with nix on archlinux before making the switch to nixos.','Y','','Y','','Y','','','Declarative system/application configuration... configure it once and it works forever','Stability with rolling release due to the checks performed by hydra','Documentation: once you understand nix code, NixOS is actually the best documented distro there is, since I can look up in a git repository how every part of the distro is configured and there are option descriptions for eerything','Improve the speed of rebuilding my operating system','Archlinux','Y','','','Y','','','','Y','Y','','','flake-utils-plus\r\ndivnix/digga\r\nmach-nix\r\nhome-manager','NixOps\r\nmobile-nixos(hope to try again soon)\r\n',''),(67,'1980-01-01 00:00:00',5,'en','73029023','A1','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I\'d long been annoyed with Gentoo not being able to track necessary rebuilds through compiler or `CFLAGS` changes. Nix looked like the only build tool which tracks dependencies \"properly\". NixOS providing fully-declarative systems is just a bonus.','Y','Y','','','','','Y','Y','','','','','','','Y','Y','','Y','','Binary caches for dev shells and deployment.','Proper dependency tracking... of everything.','Reproducible builds, and at least some pretense of bootstrappability.','Lists should not be space-separated. Remove the `with` keyword. Remove everything pre-flakes. Make `nix run` not redownload the flake as often. Being able to cache evaluations between Github Actions runs would be awesome.','Probably a combination of docker, bazel, and a good psychologist.','','','','Y','Y','','','','','','Y','','','','cabal2nix, hackage2nix (indirectly, though IOHK\'s haskell.nix project)','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I had time at a new job to dig in and learn it, and I was sick of trying to reprovision my machines with ansible or other inferior tools.','Y','','Y','','','','','Declarative system configuration.','Reproducible system configuration - I can go travelling with a throwaway image on my machine, and easily replace it with my true machine image as soon as I return','','','Gentoo','Y','','','','','Y','','','','','i3','IOHK\'s haskell.nix','nixpkgs\' haskellPackage set. While it\'s great for OS end-use, it is too limited for complicated dependencies in larger Haskell projects.',''),(68,NULL,NULL,'en','1085501919',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(69,NULL,1,'en','792225903','A3','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70,'1980-01-01 00:00:00',5,'en','581856564','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','A coworker cleaned up some development environments with Nix. The intention was to parlay that into production usage, but that did not pan out. I basically make small tweaks to the existing configurations.','Y','Y','','','','','Y','','','Y','','','','','Y','Y','Y','Y','','Great local development','Declarative package management','','Replace the Nix language probably, with something easier to grok. The functional/ML-esque thing is fine, but the language and how files work together is kinda confusing at a glance. It\'d be nice if documentation was better, too. A book would be nice, as well, if only to make Nix feel more official to managers and people you try to sell the concept to.','I guess Guix would be the closest, but I\'d probably just stick to Docker, Vagrant, or just some Makefile action.','','','','Y','Y','','','','','','','','','','Mostly Python stuff at work, e.g., poetry2nix and the like','Y','Y','','','N','Mostly being lazy and not feeling committed to it. I think it\'s nice but sometimes I feel like, at work at least, we have bigger fish to fry. Having a repeatable, declarative build is cool, but it doesn\'t seem to do much for our software sucking. I felt like a lot of time was spent on Nix initially, and the learning curve feels steep now for anyone else to maintain it. The developer who brought Nix in is leaving now.','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A1','The Nix guy at work wanted to set up the machines with GPUs in Nixos. So we\'ve done that.','Y','','','Y','','','','Declarative','Control over packages (maybe?)','','Same thing as Nix','Some other Linux thing','Y','','','','','Y','','','','','','','','Nix is really cool, thanks for all the work! I just wish it was a little easier to dip your toe into.'),(71,'1980-01-01 00:00:00',5,'en','1015690906','A2','A3','male','','','','','','Y','','','Y','','','','','Y','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I tried out various package managers to build, package, and deploy custom software.\r\n\r\nNix/NixOS seems to be the best solution, yet.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','declarative system management','packaging software','newest software packages','Content addressable.\r\nBetter CI.','portage, guix','','','','Y','Y','','','','','','','','','','poetry2nix\r\n','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I used Ansible to deploy infrastructure and tried out various package managers to build, package, and deploy custom software.\r\n\r\nNix/NixOS seems to be the best solution, yet.','Y','','Y','Y','','','','declarative system management','packaging software','extendability','Better system and service hardening.\r\nSELinux support.','Ansible, portage, guix, fedora','Y','','','','','','','Y','','','','','','5/5 Stars. Very helpful, open, and friendly community. Would recommend.'),(74,'1980-01-01 00:00:00',5,'en','235141631','A5','A6','male','','','','','','','','','','','Y','','','','','','','','','','','','','','private researcher','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','stumbled upon, amazed that had not known more sooner','','','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','declarative','rollback, failsafe','reproducibility','','used to use debian','','','','','','','','','','','','','','','dub2nix, but now mostly build statically from downloading any external depends','Y','Y','Y','','N','time, experience (possibly imagined beaurocracy), working mostly in private (as opposed to online)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','stumbled upon, surprised did not know of sooner, declarative was enough for me, there is much icing reproducible, rollback','Y','','Y','Y','','','','','','','focus or favoring particular languages and tools though I understand it is difficult to avoid this','used to use debian','Y','','','','','','','','','','i3 wm and selected tools tilix alacritty tmux (doom) emacs nvim vim etc','','',''),(72,'1980-01-01 00:00:00',5,'en','823521900','A5','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I wanted reproducible builds that avoid the pain points of modern package management (dependency hell, implicit dependencies, etc.)','Y','Y','','','','','Y','','','','','','','','Y','','','','','Reproducible builds','Declarative environment management','Declarative OS and system management (like NixOS and home-manager)','Better centralized documentation','GNU Guix','','','','Y','Y','','','','','','','','','','','','Y','','','N','I have never found Nixpkgs to be lacking anything I wanted','N','Y',NULL,'I was spending too much time trying to figure out how to do system management instead of getting work done','Easier installation, more automation + documentation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(73,'1980-01-01 00:00:00',5,'en','355408254','A5','A3','male','','Y','Y','','','','Y','Y','Y','Y','Y','','Y','','','','','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because I can\'t stand Docker and wanted a long term deployment solution for my personal projects!','','Y','','Y','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','Declarative environments','Declarative builds','','More tools to make managing systems and environments easier for people who don\'t know Nix like I do','Nothing, I can\'t stand Docker','','','','Y','Y','','Y','','','Y','','','','','yarn2nix, poetry2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I got into it because my Linux deployment story was atrocious and wanted a long term solution for the next 5-10 years','Y','Y','Y','Y','Y','Y','','Declarative OS configuration','NixOS containers','Declarative deployment','Compatibility with existing Linux binaries without needing a FHS environment','Arch','Y','','','Y','','','','','','','Enlightenment','deploy-rs for deployment','NixOps, because deploy-rs supports flakes','Nix has changed development and OS deployment more than any software I have tried in the past decade. Outstanding work, documentation still sucks though.'),(75,NULL,1,'en','944749027','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','virusmaker (in the past)','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(76,'1980-01-01 00:00:00',5,'en','531655787','A2','A5','male','','','Y','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','','Y','Y','','','','','Y','','Y','','','','','Y','Y','','','','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(77,'1980-01-01 00:00:00',5,'en','2042904338','A2','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Out of the need to create a stable environment for scientific software.','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','reproducible builds','NixOS','reproducible environments','Make flakes a stable feature and fix its shortcomings. Allow structured package sets in flakes (instead of just flat ones, i.e. allow more than just derivations in `packages.`).\r\nAdd feature to the new `nix` interface to allow it for use in shell script shebangs (like the old nix-shell).','?','','','','','','','Y','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','Y','','','','','','','','','Y','','Y','','','Y','Y','','','','',''),(78,'1980-01-01 00:00:00',5,'en','1888607317','A2','A3','male','','','','','','','Y','Y','','Y','Y','','Y','','','','','Y','','Y','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted to setup my devices in a declaritive way.\r\n\r\n- laptop\r\n- servers\r\n- ..','','Y','','','','','Y','','Y','Y','','Y','','','Y','','','Y','','Nixos','','','Better updated documentation.\r\nFocus on flakes, there are too many different ways to setup.\r\nDeprecate imperative\r\n','Fedora, arch, debian','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','See previous','Y','','Y','Y','','Y','','Declarative setup','','','See previous','See previous','Y','','','','','','','','','','swaywm','Flake-utils-plus\r\n','','Thank you, I <3 nixos'),(79,'1980-01-01 00:00:00',5,'en','61864664','A5','A4','male','','','','','','','Y','','','','Y','','','Y','','','','Y','','','Y','','','','','Y','','','Y','','Android','N','Y',NULL,'I found it much too hard to get started, even on my macOS device.','Improvements to the configuration language? Better macOS support and make NixOS work on my Debian image within ChromeOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Difficulty getting started, even in containers.','Make it easier to use alongside other packaging systems.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Flakes, home-manager, etc. NixOps.','I would love to talk more about this. yonkeltron@gmail.com.\r\n\r\nThanks,\r\n+Jonathan'),(80,'1980-01-01 00:00:00',5,'en','1122111205','A2','A5','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','Because of NixOS, no need to use it elsewhere so far.','','','','','','','Y','','','','','','','','Y','','','Y','','Declarative system management','Possibility to use multiple package versions/channels','Temporary environments','Proper --help option for Nix commands instead of just dumping man pages.\r\nFHS support: Programs having trouble to find necessary stuff in standard locations or the necessity to run applications in special nix-shell environments just because they need some Python library is annoying and a big waste of time.','I\'m not familiar with anything comparable.','','','','','','','','','','','','','','','','','','','','N','Lack of expertise and lack of time. Both amplified by the fact that Nix/NixOS uses a web forum instead of mailing lists, which makes it difficult to follow and gather knowledge continuously (Discourse e-mail notifications are poorly implemented and not well usable) ; the result is that I can watch just announcements.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Because I needed to use a sufficiently stable and usable GNU/Linux distribution other than Debian.','Y','','','','','','Desktop computers','Fairly complete and reasonable stable system','Declarative system and package management','Rollbacks','Besides the things already listed for Nix:\r\n\r\n- A longer transition period between versions. AFAIK once a new NixOS version is released, the old one is supported only for about one month, which makes NixOS unusable for me on servers.\r\n- Better descriptions of packages, it\'s sometimes difficult to identify which package to use or which is the right one to use.','Debian','Y','','','','','','','','Y','','','','',''),(81,'1980-01-01 00:00:00',5,'en','866224718','A2','A4','male','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I heard a talk about it on binaergewitter podcast','','Y','','','','','Y','','Y','Y','','Y','','','Y','','','Y','','Declarative package configuration and environments','Easy Rollbacks','Independence from main system',' Better documentation, more examples','pkgsrc','','','','Y','Y','','','','','','','','','','mach-nix','','','','','N','I have nothing to contribute, time constraints','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I heard a talk on binaergewitter podcast and was intrigued','Y','','Y','Y','','Y','','Declarative system configuration','Extendability (home-manager)','Easy rollbacks','Better compatibility with random binaries for testing','Arch','Y','','','','','','','Y','','','','home-manager','',''),(82,'1980-01-01 00:00:00',5,'en','565257704','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I’m tired of mutable state.','','','','','','','Y','','','','','','','Y','Y','','','','','declarative management of development environments','side-by-side installations of different versions of the same software','','seamless compatibility with existing codebases that manage dependencies via a language-specific package manager (npm, Yarn, Cargo, Bundler, Pip, etc.)','probably a smattering of rbenv, nvm, etc. with direnv on Debian','','','','','','','','','','','','','','','yarn2nix and bundix from nix-pkgs','','','','','N','Nothing to contribute yet.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I’m tired of mutable state.','Y','','','','','','','declarative system configuration','up-to-date packages, especially relating to Wayland','','better reporting of what’s about to happen during a system update','probably Debian, but Fedora Silverblue sounds interesting','','','','','','','','Y','','','','','',''),(83,'1980-01-01 00:00:00',5,'en','1102705851','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','A friend recommended NixOS for system configuration when I first set up a NAS. I contributed a NixOS module to nixpkgs for a package that had already been added. I haven\'t used Nix for development in any significant capacity.','','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','Enduring standards. There is not one consistent \"right way\" to use Nix tools across the sparse official documentation, the wiki, and whatever personal blogs and git repos show up on Google when you google \"nixos \". Niv, channels and pinning, flakes, the nix command vs the nix-* commands, load-bearing third-party repos like flake-utils, several different deployment tools, etc. all make it hard to build \"muscle memory\" with how to use nix tooling with a project from start to finish. There needs to be one standard way that works for most people, and then there needs to be a couple of years of consolidating around that standard to build inertia.','For Python, I\'d just install poetry into the system env. For services, I\'d just install them manually.','','','','Y','Y','','','','','','','','','','https://github.com/nix-community/poetry2nix','','','','I don\'t know how','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','A friend recommended NixOS for system configuration when I first set up a NAS.','Y','','Y','','','','','Centralized configuration management','Ease of enabling services','','','Ubuntu server and manually install things','Y','','','','','','','Y','','','','','',''),(84,NULL,1,'en','153828089','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(85,'1980-01-01 00:00:00',5,'en','613342016','A2','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','ChromeOs','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reading NixOS\' Options is really what brought me into the Nix ecosystem, but then I started to find testing iterative changes to packages by working with nix-shell, etc, very convenient and no longer feel the need to work with everything as a complete NixOS configurations.','','','','','','','Y','','','Y','','Y','','','Y','Y','','Y','','Ease of moving a shell between many custom versions of packages','A full featured but small DSL with syntax similar to ML, etc.','Support for many architectures.','A more unified/integrated mechanism to refer to clustered configurations of multiple systems so tasks like always starting a group of local virtual machines, NixOS\' testing of things in groups of virtual machines and deploying to a NixOps cluster are in normal capabilities.','I was using Debian to get a basic system image and packages followed by building the most important packages from git using ansible or bash scripts.','','','','','Y','','Y','','','','Y','','','','node2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was always unhappy with the situation of system packages and /etc. When I saw NixOS Options Search I very quickly switched over my own desktop first and later moved production systems to NixOps.','Y','','','Y','','Y','','Moving between builds from channels or local git','Methods like infect to convert cloud systems','Portability of a configuration.nix across very different systems, updates, etc.','Configuration would be oriented around dependencies in clusters of systems so starting up a lot of local virtual machines on boot, nixos-tests, VPN setups, and multiple host production NixOps setups would all be similar and feel entirely first class.','Guix? Less ideally Terraform and Ansible.','','Y','','','','','','','','','Xmonad','NixOps, nixos-infect, Mobile NixOS','',''),(86,'1980-01-01 00:00:00',5,'en','54764557','A5','A4','male','','','','','','Y','Y','Y','','Y','Y','','Y','','','','','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A2','I started a new job, and the company already used Nix to manage package dependencies for a full-stack web app.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','I love the fundamental concept of managing every build and run-time dependencies down to `ls` and `grep`','I love the functional-first approach','','It\'s too complicated and has a terrible developer experience. It is a decent v1, but I feel it has to be rebuilt a couple of times before it\'s better/easier to use. Take for example Git and Docker. They are 2nd or 3rd+ generations of version control and container orchestration, respectively.','The current Linux distro package managers and Docker.','','','','','','','','','','','Y','','','','','','','','','N','Don\'t have the time or energy.','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A2','Because I did not want to install nix on my macOS MacBook. So I run NixOS in a VM on my mac. And I also use the nixos docker image.','Y','Y','','','','','','','','','See my previous answer to the nix package manager.','Debian or Ubuntu','','','','','','','','','','','','','',''),(87,'1980-01-01 00:00:00',5,'en','572256434','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','As part of Cyberpipe I had influence from Domen Kozar, Matija Suklje and Rok Garbas who later showed me how to make my first Nix package which was my first contribution to nixpkgs','Y','Y','','Y','Y','','Y','','Y','','','','','Y','Y','Y','','Y','','Declarative management','Templating capabilities','Environment building','Add multi language support, like for example Pulumi has.','Docker\r\nLxc\r\nLinux namespaces','','','','Y','Y','','Y','','','','Y','','','','A lot, depends on the language packages that I need that day','','','Y','','N','- Not enough time because of job and life\r\n- no wish to argue with people why I did something like I did','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','Just installed it because of search of perfect Linux distro, NixOS is not perfect but comes closer to perfection than other distros or even OSes.','Y','','Y','','','','','Stability - even on unstable channel - if it builds it usually just works','','','Module system is something that needs attention, it needs to support different backends not just systemd','Fedora Silverblue probably','Y','','','','','Y','','Y','','','','Home manager','Flakes',''),(88,'1980-01-01 00:00:00',5,'en','1950328192','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Software ARchitect & Team Lead','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Initially got to hear about the name on the Pharo Smalltalk mailinglist.\r\nAt some point I started to try it and installed it on my new laptop and since then sticked with it.\r\nThe original person from which I heard the NixOS name first apparently moved away from NixOS at some point.\r\n\r\nWith using NixOS you do not get around to not use Nix.','','Y','','Y','','','Y','','','','','Y','','Y','Y','Y','','Y','','declarative package configuration','dependency closures without hidden dependencies','reproducible build environments','more ergonomic flakes (e.g. built-in flakes-utils)','difficult call\r\nsomething that takes dependency management serious and is based on the correct theoretical foundation (i.e. SAT-solvers) ','','','','','Y','','','','Y','','','','','Woodpecker CI','','','Y','','','N','I would be able to provide single package versions but do not have the time to maintain it and update to the package to newly released versions','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Initially got to hear about the name on the Pharo Smalltalk mailinglist.\r\nAt some point I started to try it and installed it on my new laptop and since then sticked with it.\r\nThe original person from which I heard the NixOS name first apparently moved away from NixOS at some point.','Y','','','','','Y','','Nix package manager','reproducable system configuration as code','no-pain rollback to older versions','built in declarative user/home-directory configuration management (home directory, dot files, ...)','tough call\r\nmaybe ArchLinux\r\nmaybe Ubuntu','Y','','','','','','containers','Y','','','','','','NixOS and Nix are awesome.\r\nThanks for making and improving it and I am glad that I can support a bit financially.\r\n\r\nMaybe at some point I get the chance to get it into the scope of my company.'),(89,NULL,1,'en','2024221745','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90,'1980-01-01 00:00:00',5,'en','1417278532','A4','A1','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','','','','','','','','','','','','','','','','DWM','','',''),(91,'1980-01-01 00:00:00',5,'en','702448587','A2','A4','male','','','Y','Y','','Y','Y','','','Y','Y','','','Y','','','Y','','','','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Sounded an interesting tech\r\nMy main project is a big Rail app, with dependencies managed in a mix of homebrew and docker. Docker was eating my MacBook’s battery, getting away from having to run that 24/7 was a big reason to switch.','Y','','','','','','Y','','','','','','','Y','Y','','','','','Declaratively set up dependencies for my main rails app and share it between a MacMini and Macbook','Nix-shell+direnv integration','Jumping between different library versions to test, eg Ruby 2 vs Ruby 3','Better support for Rubygems, both when installing ad-hoc (gem install foo) or when in a Bundler project,\r\nFor a while there was bundix but it feels like it’s suffering from a lack of maintainer focus. ','Homebrew+docker','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'N','N','For personal devices, not much - if Apple stopped making hardware, sure.\r\n\r\nFor servers… if it didn’t feel like such a niche environment I could maybe justify rolling it out more, but that’s a bit of a chicken and egg thing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Does direnv count..?','',''),(92,'1980-01-01 00:00:00',5,'en','1462956854','A2','A4','male','','','Y','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','The idea of having one configuration file managing everything on my little home server was very appealing, making it easier to get an overview of the configuration of the machine and be able to back it up easily and reuse if I had to reinstall it.','','','','','','','','','Y','','','','','','','','','Y','','Declarative system configuration','Consolidation of all system configuration in one place','Ease of configuring new services via nixpkgs','I\'ve never got fully to grips with the language syntax, so that would perhaps be something to improve. I\'m however sure it would become more normal to me if I just were to use it more regularly.','Probably Arch Linux and Ansible :/','','','','','','','','','','','','','','','','Y','','','','N','I haven\'t spent enough time on Nix(OS) yet that I\'ve had a need that wasn\'t already fulfilled.','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','Same as for Nix, for running on a home server where I liked the idea of having one configuration file which contained the entire configuration of the machine.','','','Y','','','','','Declarative system configuration','The availability of packages in nixpkgs and how easy it makes using a new package','Ability to roll back to previous versions','nixos-rebuild can take up a lot of RAM for my small Raspberry Pi 3B+ server, which slows it down a lot and makes it take quite a hit. It would be great if it wasn\'t as resource hungry.','Probably Arch Linux and Ansible :/','Y','','','','','','','','','','','','','The search site (https://search.nixos.org/) is great!'),(93,'1980-01-01 00:00:00',5,'en','860181265','A6','A2','male','','Y','','','','','','','','Y','Y','','Y','','Y','','','Y','','Y','','','Y','','','','Y','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I\'m way too scared of dealing with issues in most rolling-releases distributions, and at one time, my hard drive broke, and I decided to see if there is something worth giving a try. And of course, not to mess things up from upgrades to upgrades.','Y','','','','','','','Reproducible','Neat configuration','Extensible','','Fedora Silverblue or Manjaro','Y','','','','','','','','Y','','','','',''),(94,'1980-01-01 00:00:00',5,'en','583009211','A5','A4','male','','Y','','','','','','','','','','','','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I had read articles about it on hacker news and was curious','','','','','','','Y','','Y','','','Y','','','Y','','','Y','','Rollback','Human readable consistent managed configuration ','Ease of troubleshooting','I’d make the documentation better and make the conmand line interface more ergonomic, I’d make flakes more prominent, and error messages more obvious','Probably lots of docker containers on ubuntu','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','Y','','Rollback','Configuration management','Ease of troubleshooting','Better documentation, more intuitive conventions and commands, more prominent flakes','Ubuntu with lots of docker containers','Y','','','','','','','','','','I3 ','','','I love nix'),(95,NULL,1,'en','1671527341','A2','A4','male','','','','','','','Y','Y','','Y','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(96,NULL,1,'en','2014308202','A2','A4','male','','','Y','','','Y','Y','','','Y','Y','','','','','','Y','Y','','','','','','Y','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(97,'1980-01-01 00:00:00',5,'en','758713262','A3','A3','male','','','','','','Y','Y','Y','','','Y','','','','','Y','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','CTO ordered to migrate the company, then found it amazing and super reliable and adopted it for personal use as well','','Y','','','Y','','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','Y','','sandboxed builds','declarative configuration','reliability','I would create a core team of full-time, aligned people with clear product vision and goals,\r\nso that we can execute that vision as a high performance, coordinated, elite team and takeover the world\r\n\r\nI would add to the core team: influencers and more marketing people\r\n\r\nI would make Nix (the tool) a standalone small, modern, unprivileged, statically linked binary without a daemon (just download and run)\r\n\r\nI would strip all the redundant weight from Nix and place it somewhere else: nix-env, daemon, profiles,\r\nand focus on what makes us special and different: nix-build, nix develop, fetchers infrastructure (~flakes) and NixOS, anything else can be derived from this but should be done outside of Nix itself. This would allow to simplify Nix, reduce bugs, reduce maintenance, and move forward faster, without loosing features\r\n\r\nI would remove C++ from the codebase','ubuntu, bazel, OCI containers','','Y','','Y','Y','','Y','','Y','','Y','','Y','','https://github.com/fluidattacks/makes','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted more Nix (the concepts and value), NixOS was the logic next step','Y','Y','Y','','','','','declarative configuration','.enable=true ease of use','reproducibility','I would make easier for barbie-like operative systems people (windows/ubuntu/debian/mac) to try NixOS:\r\n- simple installation as windows (no manually formatting disks for instance)\r\n- out-of the box ubuntu-like look and feel, so they don\'t feel we are ugly or less user-friendly\r\n- more modules (more .enable=true and have fun)\r\n- hardware compatibility\r\nOnce they are able to try and feel the power of NixOS by themselves, it\'s hard not to pick it as daily driver','ubuntu :(','Y','','','','','','terraform','','','','i3','nixos-generators\r\nhome-manager\r\nfenix\r\n2nix tooling','',''),(98,'1980-01-01 00:00:00',5,'en','1456542656','A2','A3','male','','','','','','Y','','Y','Y','','','','','Y','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I like reproducible systems and generating my system from a config file.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Upstreaming and maintaining packages','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I like reproducible systems and generating my system from a config.','Y','Y','Y','Y','','Y','','','','','','Arch Linux.','Y','Y','Y','Y','','','','Y','Y','','i3, sway','','','MOOAAAR NIX!!'),(99,'1980-01-01 00:00:00',5,'en','1690449120','A5','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','When I was living in Auckland, NZ, Utku Demir got me interested in it when we were hanging out at the Auckland Functional Programming meetup group. He sold me on it, and the rest is history.','Y','','','','','','Y','','','','','','','','Y','Y','','Y','','Declarative project development environments','Declarative system environments','','I would remove all the imperative nix-env stuff so that people only focus on the declarative side of things. While I now understand and like the Nix language, I would do away with the Nix language and find a better way to lower the barrier to entry for everyday developers. I would also have simple CLI wizards for generating projects in popular languages / frameworks so that the experience is Rails-/Elixir-like: it\'s plain, and it does the work for you.','Everything for my projects would be pure docker + scripts. For my macOS system, it\'d be scripts + homebrew (although I still do use homebrew with nix-darwin).','','','','Y','Y','','','','','','Y','','','','cabal2nix','Y','Y','Y','','Y',NULL,'N','Y',NULL,'I\'m a seasoned web developer who has used primarily macOS for the last decade, and I could never figure out how to set up NixOS -- even on a VM -- so I gave up, as it was a waste of time. I\'ve tried a handful of times, and it\'s never been a good experience. This is also probably because I haven\'t used Linux distros before, but still... it\'s easy to see why more people aren\'t using NixOS.','Pre-install it on a laptop and send it to me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-darwin, flake-utils, cachix','','I love Nix and can\'t go back, but I\'m also on the lookout for things that build on top of Nix\'s concepts but do things differently across the board. I have a feeling a lot of other people are, too, but I don\'t want to be half-in, half-out the Nix door -- I want to be fully bought in! I know that being a community-driven project makes this hard and all, so I\'ll keep spreading the word and contributing where I can.'),(100,NULL,1,'en','689261672','A2','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(101,NULL,NULL,'en','263680350',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(102,'1980-01-01 00:00:00',5,'en','1100472423','A2','A2','-oth-','deeply confused','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','','Y','','','','','','Y','','','Y','','Y','also some cloud-hosted boxes for tinkering but not necessarily production','','Y','','','Y','','','','','','','','','','Y','Y','','Y','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','','Y','','','non-production cloud boxes for tinkering','','','','','','Y','','','','','','','Y','','','Sway','nix-darwin','',''),(103,NULL,NULL,'en','1933094312',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(104,'1980-01-01 00:00:00',5,'en','405516847','A2','A3','-oth-','nonbinary','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','People were talking about it, so I decided to check it out','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','I\'d stabilize flakes, removing the shortcomings currently present ','Guix','','','','Y','Y','','','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was already using Nix, and based on my experience with it, I thought NixOS would be a good idea ','Y','','Y','','','','','','','','','Guix','Y','','','','','','','','Y','','','Home Manager','',''),(105,NULL,NULL,'en','917847067',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(106,NULL,2,'en','638277255','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It\'s the only project that can configure systems as code, in a reliable manner.','Y','Y','','Y','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','A composable build system','With lots of packages','And reproducible builds','Remove nix-env, channels and impure eval in general.','I would use a shovel in the field because I would stop using computers.','','','','Y','','','','Y','Y','','Y','','Y','','poetry2nix, npmlock2nix, ...','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(107,NULL,1,'en','1845129210','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(108,'1980-01-01 00:00:00',5,'en','1226149873','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','','Y','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','Dev environment','Container build','NixOS','-I would decrease its learning curve...\r\n- I would make Nix installable with distribution package manager (apt,...)','Debian and containers','','','','','Y','','Y','','','','','','','','poetry2nix','','Y','','Sometimes, i fetch nixpkgs (with niv) and patch it','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A5','','Y','','Y','','','','','Declarative/versionnable','Rollbacks','Testable (though NixOS tests)','','Debian + containers','Y','','','','','Y','','','','','sway','','',''),(109,'1980-01-01 00:00:00',5,'en','833021523','A4','A5','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','Docker','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','','Fedora','','','','Y','','','','Y','','','','home-manager\r\nemacs-overlay\r\ndwarffs','',''),(110,NULL,1,'en','294226762','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(111,'1980-01-01 00:00:00',5,'en','248689041','A2','A2','fem','','','','','','Y','Y','Y','','','Y','','Y','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Friend recommended it!','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Declarativeness','Dependency tracking','Mostly unified configuration language','Remove flakes as a language feature and stop it from being required for every new nix command.','Alpine','','','','','','','','','','','','','','Buildbot','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Friend recommended it.','Y','Y','Y','Y','','','','Rollbacks','Unified configuration language','','Banish the fixpoint config system.','..Alpine?','Y','','','','','Y','','','','','awesomewm','','',''),(112,NULL,NULL,'en','2012685319',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(113,'1980-01-01 00:00:00',5,'en','670201919','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was attracted by the declarative approach, and there seemed to be a general vibe that nix is the future. So at 34C3 I went to the NixOS assembly and asked for guidance in setting up nixos over my Debian machine - I haven\'t looked back. ','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','Composable packaging','Declarative system configuration','shell.nix','By far: add types to nix the language (see nickel), and a way to document attributes, and build language server features on that. Discovery and documentation accessibility (both reading and writing) are two of nix\'s biggest shortcomings, and I believe this would be a huge help in a way that suits the nixpkgs community (unlike \"we should totally write more documentation\"). ','Would probably still hang out on Debian','','','','Y','Y','','','','Y','','','','','','Would like to use yarn2nix, but couldn\'t figure it out. ','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','See previous :) ','Y','','','','','','','','','','','Debian','Y','','','','','','','','','','bspwm','direnv, home-manager (can\'t believe that wasn\'t an option before?) ','','Thank you guys specifically for working on nix\'s public relations! You rock 🤘 '),(114,'1980-01-01 00:00:00',5,'en','469262032','A5','A3','male','','','','','','','Y','','','','Y','Y','Y','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Smart people seemed to be recommending it. Probably first heard through Gabriella Gonzalez?','Y','Y','','','','','Y','','','Y','','','','Y','Y','','','Y','','shell.nix','shell.nix','shell.nix','Sane CLI.','Long “dependencies” section in a README.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','I submitted a trivial patch once; it languished in eternity. Seems like a lot of emotional labor to poke strangers for review.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','','','','Y','','','','Ability to reproduce my setup on a brand new machine','','','','Probably still be on arch','Y','','','','','','','','','','','','','I wish the nix —help commands used troff to layout text sanely. Huge step down from man pages'),(115,'1980-01-01 00:00:00',5,'en','354191915','A2','A4','male','','','','','','','Y','','','Y','Y','','','','','Y','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I had seen it multiple times in news sites and social media, was tired of using different tools for each language to get dev environments and build environments and tried nix-shell, from then on I use it for all dev/build envs','','Y','','','','','Y','Y','','','','','','','Y','','','','','reproducible development environment','reproducible build environment','try things without poluting my machine','easier to understand the nix language','I would try guix, not sure it if would be able to replace my usage of nix','','','','','','','','','','','','','','','','','','','','N','don\'t know much of the language','N','N','not much, I\'m ok with ubuntu',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','thanks!'),(117,'1980-01-01 00:00:00',5,'en','199808152','A2','A3','male','','','','','','','','','Y','','','','','Y','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','Via curiosity about NixOS','','','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','Ability to specify steps for how to build essentially anything (package, service, system, configuration, ...)','Compared to other config/customization options, the ability to abstract with functions','\'nix-shell -p\' for ad-hoc shells with a set of packages in scope','I feel like there\'s a lot of historical baggage/cruft in Nix (which is understandable given how long-running the project is). It would have been nice if different components (the store, the daemon, the nixlang implementation) were more separate from one another, smaller and more self-contained with clear boundaries. As it is, it feels like there\'s a lot of historical warts in the syntax & semantics, and hard to fix those without breaking nixpkgs (which is kind of a non-starter at this point).','In practice, probably still Arch rather than NixOS, and probably not have realised the general paradigm of nix-style declarative build specification existing.\r\n\r\nThis kind of also blends into the previous section, but.. apart from Nix & Guix, the general paradigm space which they occupy feels underexplored. There\'s been a couple other hobby projects in the same space cropping up in recent years that I\'ve noticed, and I\'m hoping for more general exploration and research in that area. Of course nixpkgs gives Nix a big headstart in terms of offering derivations for a large set of packages already, so in practice I don\'t see myself switching to anything else anytime soon for any stable systems.','','','','Y','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Curiosity about NixOS and the stateless/declarative way of managing systems. Lots of friends using NixOS.','Y','','Y','','','Y','','Ability to specify and realise a full system config, with serivces & their configs','Ability to roll back changes/manage generations','','The module system gives me somewhat mixed feelings... with that modules are \"singletons\" (compared to nixpkgs package derivations where it\'s straightforward to have several differently-parameterised versions in parallel), and config that\'s tightly coupled to the modules and module system.','Arch linux still, probably. Or perhaps have distrohopped to something else, dunno..','Y','','','','','Y','','','','','hikari (wayland)','','',''),(118,NULL,NULL,'en','643563835',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(119,'1980-01-01 00:00:00',5,'en','1055091843','A2','A5','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','','','','','','','','','','Testbed (Grid\'5000)','Y','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','Y','','Y','','','','','Y','Y','','NUR','N','2 PRs stalled without clear reasons ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','research','A4','','Y','','','','','','testbed(Grid\'5000)','','','','','','Y','','','','','','nixos-compose','Y','','','','','',''),(120,NULL,2,'en','1579150151','A5','A3','-oth-','stop asking if im male or female im just normal','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','for looser definitions of \"use\": plan9, openbsd, ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','a bunch of my irc friends woulden\'t shut up about it and after my boyfriend went sicko mode on it for 2 weeks it was inevitable','Y','Y','','','Y','i used the broccoli one (https://github.com/tazjin/nixery) once','Y','Y','Y','Y','','','','','Y','','','Y','','nix-shell','nix-shell','nixos-lustrate','the like 5 different shasum variants idk just settle on one come on','probably no equivalent personally and in work environments i\'d probably have to suffer through puppet or ansible or something ','','','','','','','','','','','','','','i think we rolled our own at work','https://github.com/tazjin/buildGo.nix','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(121,'1980-01-01 00:00:00',5,'en','27860662','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','Y','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','Wanted to see what all the fuss was about, and so threw it on an old laptop','','','','','','','Y','','','','','','','','','','','Y','','repeatability','discoverability - i like the idea that i can go to one place to find out about the whole system','breadth of possibilities - i like using the linux port of cwm(1), which just happened to be available as an option fo X window manager','i would replace the DSL with a Scheme','What i\'ve always used - alpine, debian, or openbsd','','','','','','','','','','','','','','','','','','','','N','unfamiliar with the language and don\'t have the time to pick up yet another lang','N','Y',NULL,'barrier to entry is fairly high','if a server completely blew up and i didn\'t have backups. that would cause me to angrily reach for a tool that, with significant startup costs in terms of time and learning the nix language, would let me avoid configuration drift/loss in the future',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(122,'1980-01-01 00:00:00',5,'en','1747897228','A2','A2','male','','Y','Y','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','','','Y','Y','Y','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','idea sounded nice, so I gave it a shot, fell in love and stayed','','Y','','Y','Y','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','nix-env','nix-shell','nixOS declarative config/management','foreign package interface so the Nix can be wrapped around different kinds of package, maybe recompile it for our arch. and, I have no idea what to say there lmfao','nothing - I lived quite long before I knew Nix, but I don\'t want to even imagine what would be, if Nix didn\'t exist at all in the first place','Y','Y','Y','Y','Y','','Y','','','','Y','','','','cabal2nix mostly','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','sounded cool','Y','','Y','Y','','','','I have no idea, but I love the declarative configuration and management of NixOS','','','more packages and integrations (looks at VMware, which I\'m just used to, tho rn got used to KVM/Qemu, because NixOS forced me to haha)','dunno, I use Bedrock+Nix combo on a daily basis, so I\'d probably use that...','Y','Y','','','','','','','','','xmonad','dunno','dunno','have a great day!'),(123,NULL,1,'en','1805591435','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(124,'1980-01-01 00:00:00',5,'en','1569288727','A1','A5','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducibility','','','','','','Android','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','Y','','Reproducibility','Declarative system management','Haskell support','Nix would be replaced with Haskell. It needs to be a functional programming language.','Propeller on Debian (configuration management written in Haskell).','','','','Y','Y','','Y','','','','','','Y','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducibility','Y','Y','Y','Y','Y','Y','','Reproducibility','Declarative system management','Flakes','See earlier answers','See earlier answers','','Y','','Y','','','','','Y','','Xmonad','','',''),(125,NULL,1,'en','1088871549','A5','A3','male','','Y','','','','','Y','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(126,'1980-01-01 00:00:00',5,'en','1974109630','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was searching for something easier to use then Arch Linux.','','','','','','NixOS','Y','','','','','','Laptop','','Y','','','','','Easy configuration in configuration.nix with nixos.','nix shell with direnv','I would love to it to build java tomcat applications or npm webapps. But it is very complex and https://github.com/NixOS/templates does not have templates easy templates to use.','Add a wiki like Arch Linux. Add more templates to https://github.com/NixOS/templates.','Arch Linux','','','','','Y','','','','','','','','','','I tried maven2nix for a tomcat application, but did not find out how to use it. Also node2nix to get a reproducible build environment but also did not get it to work.','','Y','','','N','Nearly all needed packages are already there. For the ones that are not it is easier to create a nix-shell and use it once.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was searching for something easier to use then Arch Linux.','Y','','','','','','Desktop','Easy configuration in configuration.nix with nixos.','nix shell with direnv','I would love to it to build java tomcat applications or npm webapps. But it is very complex and https://github.com/NixOS/templates does not have templates easy templates to use.','Add a wiki like Arch Linux. Add more templates to https://github.com/NixOS/templates.','Arch Linux','Y','','','','','','','','Y','','','home-manager','','I love the idea. Configurationg my desktop pc is super easy. But learning any other feature is extreme complex.'),(127,'1980-01-01 00:00:00',5,'en','1802103043','A2','A3','fem','','Y','','','','','','','','','Y','','','','Y','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I started using NixOS.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducibility','Nixpkgs is huge','Separate development environments.','I\'d change nix to be a sane programming language.','A whole smattering of tools like rvm and nvm.','','','','Y','Y','','','','','','Y','','','','yarn2nix\r\nbundix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I don\'t remember how I found NixOS originally, but I do know that I was immediately enamored by it. I\'ve always liked functional programming and I\'d consider myself an amateur sysadmin, so that combination attracted me a lot.','Y','','Y','','','','','Declarative','NixOS modules contain a *lot*.','Rollbacks','Generic init system base.','Probably still Arch for dev machines and Debian with a lot of docker for servers.','Y','','','','','Y','','','','','Sway','direnv\r\nhome-manager\r\nemacs-overlay','nixops','Nix is great!'),(128,NULL,NULL,'en','929767177',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(129,NULL,2,'en','448549361','A5','A4','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I use NixOS on a couple of cloud-hosted VMs. I previously had an installation of NixOS on an old desktop but never migrated it after the hardware failed.\r\n\r\nI also use Nix as an additional package manager on an Arch Linux laptop and a Debian desktop.','','Y','','','','','Y','','Y','','','','','Y','','','','Y','','Safe rollbacks in NixOS.','Declarative package & configuration management through NixOS.','','I feel that there is a huge documentation gap from the Nix Pills to actually using Nix that could be addressed. So long as the packages & configuration I want are already managed in NixOS, I am fine. But as soon as a package breaks, or I need to do anything even slightly non-standard, it immediately becomes so confusing that I give up in 99% of situations.','Most likely I would use something like Ansible or Puppet for server management and would not even try to have a declarative setup for my non-server machines.','','','','','Y','','','','','','','','','','','','','','','N','Lack of expertise + cumbersome employer policies around contributing to open source even outside of work hours.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(130,'1980-01-01 00:00:00',5,'en','1823772887','A5','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I heard about NixOS and liked the idea of a declarative and reproducible OS. So I started with nix as a side effect of using NixOS.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','Y','','','','Y','','','','crate2nix, composer2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I heard about NixOS and liked the idea of a declarative and reproducible OS.','Y','Y','Y','Y','','','','','','','','','Y','','','','Y','','','','Y','','','','',''),(131,'1980-01-01 00:00:00',5,'en','472671732','A2','A3','-oth-','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','A completely reproducible (and version-controllable) Operating System seemed promising to me','','','','','','','Y','','Y','','','','','','Y','','','Y','','Self-Containment','Declarative Nature','Shareability','I\'d love to have a better language','Probably containers in many more places','','','','','Y','','Y','','','','Y','','','','poetry2nix (https://github.com/nix-community/poetry2nix)\r\npnpm2nix (https://github.com/nix-community/pnpm2nix)','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','It seemed appealing to have a completely declarative and version-controllable OS with built-in rollbacks','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','Y','','','',''),(132,'1980-01-01 00:00:00',5,'en','1171545935','A2','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','','Y','Y','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','Y','','','','','','','','','','Y','','','Y','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','','Y','Y','Y','Y','','','','','','','','','Y','Y','','','','','','','','','','','',''),(133,NULL,4,'en','359830282','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(134,'1980-01-01 00:00:00',5,'en','1818446794','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I started using NixOS as I needed a way to deploy some servers while exactly knowing their configuration, and at the same time, I had to package many applications both in a minimalist and reproducible way. Nix was ticking all the boxes and I installed it as my main desktop OS to get familiar with it.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','reproducible builds ','simple+efficient dependency tracking (no more broken dependencies/incompatible packages)','cross compilation toolchains (rust+c)','debugability. A way to interactively understand/observe how expressions are evaluted.','bazel / rpm-ostree / fedora coreos / fedora silverblie / docker','','','','Y','Y','','','','','','','','','drone','cargo2nix https://github.com/cargo2nix/cargo2nix','','','','none','N','I do not understand in which files/folder I must add my new package definition.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','rollback (generation)','a single configuration language','single source of trust configuration','a standard way to share more easily/adapt my configuration across my machines.','fedora silverblue / fedora coreos','Y','','','','','','','','','','sway','','',''),(135,'1980-01-01 00:00:00',5,'en','1854978','A5','A5','male','','','','','','Y','Y','','','Y','Y','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Don\'t recall when I heard about it first, but it was (almost) love at first sight. I love the declarative nature of NixOS and use it daily. I\'m exploring uses for work servers too.','','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','declarative OS configs','consistent package builds','profile history (NixOS)','Quicker and more reliable builds so unstable is as current as say Arch Linux. I\'m exploring ways to run immutable servers on NixOS and I\'ve had some success in this regard, but pinning channel versions AND/OR package versions is a must and is more difficult than is should be in Nix IMO.','I still use plenty of other distros including (but not limited to): Void, Arch, Ubuntu, CentOS. I distro hop frequently on my own equipment and may of these other distros have some really great features.','','','','','','','','','','','','','','','','','','','','N','Mainly a fear that I\'ll submit something but then abandon it as my needs/desires change over time.','Y',NULL,NULL,NULL,NULL,'A1','','','','','A2','','Y','','Y','','','','','declarative OS configs','profile history','consistent package builds','Better package version pinning... I often don\'t care much what is needed outside the requirements for a specific package version (or two).','Arch, Void, Ubuntu, CentOS','Y','Y','','','Y','','','Y','','Y','I3','home-manager','','NixOS is a solid OS. I\'m hoping that package and nixpkgs version pinning become first-class citizens in Nix. I\'m currently vetting out the possibility to run completely immutable servers (some PXE boot, some with limited on-disk persistence) using NixOS. The main drawbacks are tracking very specific server software versions and/or Kernel versions. Ideally a package version could be specified in config and then the nixos-rebuild would either grab the pre-built binary package or, in the case when that version isn\'t in nixpkgs it would be built automatically and added to the result.\r\n\r\nBetter documentation around best practices for creating slight variations of existing packages (could be as small as a minor version change). Duplicating .nix files in the nixpkgs repo seems like a lot of unnecessary duplication.'),(136,'1980-01-01 00:00:00',5,'en','1653517064','A5','A2','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Several of my friends, along with a number of other people I really respect, use NixOS and spoke about it to me. Eventually, I expressed interest and my friends offered to help get me set up with NixOS and Morph.','','','','','','','','','Y','','','','Desktops','','','','','Y','','The ability to easily share working packages with friends (excited for non-experimental flakes to make this easier!)','The assurance that unrelated system changes won\'t break a package','','','Probably Ubuntu.','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Same as Nix itself - friends and influential figures talking about it, friends offering to help.','','','Y','','','','Desktops','The ability to reconfigure multiple machines to matching configurations with a few commands','The ability to easily share configuration snippets with friends','','I would prefer to have Home Manager as a core part of NixOS, and if possible, I would like to be able to manage KDE settings though NixOS. Unfortunately, I think this is a pretty monumental task.','Probably Ubuntu.','Y','','Y','','','','','','Y','','','','I tried to use nixops, but it didn\'t work well for me.',''),(137,'1980-01-01 00:00:00',5,'en','150259044','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','Desktop environment of my personal computers','A3','Heard about the declarative system configurations which is a feature I missed in all operating systems I had used before.','','Y','','','','','Y','','Y','','','','Personal computers','','Y','Y','','Y','','Declarative system configuration','Declarative development environments, and automatically (un)loading them with direnv','Isolation, having multiple versions of software at the same time on the same machine','I would not make big changes, but I do feel like a lot of areas could use more polish. It is as if when something is \"good enough\" people will move on to work on the next thing, and it is not really looked at anymore. This I think is what makes it most difficult for newcomers to start using nix.','Too much of my time, configuring Ubuntu each time again when it eventually breaks.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','I don\'t use nix for work, and because nix does basically everything I need from it, I find it difficult to contribute to it in my free time.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','Desktop environment for my personal computers.','A3','I was interested in the declarative system configuration that I could share over multiple devices with a version control system.','Y','','Y','','','','','Declarative system configuration','Easy sharing of configuration between multiple machines','Easy deployment of configuration on multiple machines','','Ubuntu','Y','','','','','Y','','','','','Herbstluftwm','https://github.com/nix-community/home-manager\r\nhttps://github.com/nix-community/impermanence\r\nhttps://github.com/nix-community/fenix\r\nhttps://github.com/Mic92/sops-nix\r\n','','I accidentally clicked the back button of my mouse during this survey which deleted all my answers after showing me a very helpful message that I should not have used the back button...'),(138,NULL,NULL,'en','1376877163',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(140,'1980-01-01 00:00:00',5,'en','768956126','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','Y','Y','Y','','iOS, iPadOS','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','A friend showed me his NixOS setup and told me about generations and reproducible builds, etc.\r\nI was instantly sold.','','Y','','Y','','','Y','','','Y','','','','','Y','Y','Y','Y','',' Declarative system or server configuration/management (e.g. NixOS) ','Declarative environment management (e.g. nix-shell, nix-dev)','Build container images and packages','Rewrite it to Python, only half kidding here.\r\nThe syntax of the language is so foreign and I really miss the explicity from Python.\r\nSome arguments just seem to appear from nowhere.\r\nThe part I would change first though is replacing spaces with parentheses and commas, often it\'s just really hard to see which part belong to a function or a list or whatnot.','Ansible, make (I still use it but maybe dev-shell will replace it), virtualenv, Docker, ...','','','','','Y','','','','','','','','','','https://github.com/DavHau/mach-nix','Y','','','','N','I\'m still learning how to do all the things but I\'ve already seen a few packages I could provide some input.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Same as with Nix.','Y','','Y','Y','','','','Declarative Config','Generations','','See Nix.','Ubuntu LTS.','Y','','','','','Y','','','','','Qtile','Does flake-utils count?\r\nhttps://github.com/numtide/flake-utils\r\nAnd home-manager of course.\r\nIMO those two should be integrated by default.','','I love the idea behind Nix/NixOS.\r\nGetting started was quite easy but then it got quickly really difficult and confusing.\r\nI\'m still working my way through the Nix Pills which explain some concepts but sometimes just go into so much detail that I doubt that is still relevant for system and project configuration, however there a lot of great points in it.\r\nThe video series from Will Taylor is a great place to start and helped me a lot.\r\nhttps://www.youtube.com/watch?v=QKoQ1gKJY5A&list=PL-saUBvIJzOkjAw_vOac75v-x6EzNzZq-'),(139,NULL,2,'en','1735760436','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Declarative desktop management, system config in git','','Y','','','','','Y','','Y','','','','','','','','','Y','','Declarative system configuration','System rollbacks','Temporary packages / build environments','Probably replace the Nix language which something that can be better analyzed or statically typed, so that I grok package definitions better. More intuitive command line','Some hobbled together mix of docker and flatpak','','','','','Y','','','','','','','','','','','Y','','','','N','Almost all packages I use are already maintained, so not much to do for me. No interest in maintaining packages I do not use.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(141,'1980-01-01 00:00:00',5,'en','503737976','A2','A4','male','','','','','','','Y','','Y','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','learning to use if effectively','A3','Ansible did not have reasonable way to recover failed run, and using cloud-init to always fully rebuild VM did not work very well.\r\nNoticed vpsfree.cz built their thing on nixos, and started exporing it...\r\nLooked like a reasonable way to split building the application itself (configured using CMakeLists.txt) from fetching & building its dependencies (better done by nix)\r\nAlso seems like simplest solution for building compiler toolchains for embedded systems.','','','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Rebuild whole system from nixos configuration stored from git.','cross compilation (though it would be nice, if there were no difference between \"natively-build arm\"(or build using arm emulation) vs \"cross-compiled arm\")','Nix flakes - still learning it, already like the ability to build from exactly the same version of dependencies.\r\n(and seems like perfect way to build LXC containers for proxmox)','1) easier way to edit .nix files (language server?) - too often ending up browsing nixpkgs github repo in a web browser\r\n(maybe also add command to \'cd\' to Path provided by \"nix flake metadata whatver\")\r\n\r\n2) add types to the language. coming from c++ and scala it is really hard to get used to variables without types (especially when even code assigning to the variable often does not help. is it assigned a created object or function that has to be evaluated)\r\n\r\n3) enable packaging for \"rebuild from scratch\" - e.g. for given flake allow generating \"minimal live-dvd\" that would contain all the sources to i) rebuild the same dvd from _sources_, and ii) build the flake from sources\r\nthat would ensure that it is always possible to rebuild the flake in its original form (even in air-gapped environment) and that it is always possible to build fixed version of the flake - by patching its source or its dependencies\' sources\r\n\r\n4) option to hide/lockout imperative package management - or some other way to ensure that environment is used as declaratively configured, not modified nix-env (or at least warn that it is not)','mainly CMake\'s FetchContent\r\n\r\nand learn bazel.build','','','','','Y','','','','Y','','','','','','none','Y','Y','','','N','Still very unsure in correct use nix language... took me incredibly long time to figure out, that following 6 lines are required for localized firefox\r\n\r\nnixpkgs.overlays = [\r\n (self: super: {\r\n firefox-bin-unwrapped =\r\n super.firefox-bin-unwrapped.override { systemLocale = \"cs\"; };\r\n })\r\n ];\r\n\r\n(that was more than year ago, not sure if it is still needed)\r\n\r\ncode completion support (for an editor or IDE) and support for (optional) types would make it much easier.\r\n','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started reading about nix, found there is nixos, and it seemed like the best way to learn nix is to start with nixos (and avoid possible issues between host files and nix files).\r\nCurrently runs on home server, thin client, laptop and soon will replace ubuntu as primary desktop VM.','Y','Y','Y','','','','','configuration of multiple machines in single git tree','The ease of running patched packages.\r\n(e.g. on update, automatically build home server\'s kernel with additional patches)\r\nor even add custom/private packages to the system','avoid conflicts with multiple versions of same software','0) add better local documentation (and inform about it on console login)\r\n- nixos module options (once i found something that work like search.nixos.org/options, but forgot its name and cannot find it again)\r\n- unlike slackware (first linux distribution i used), it is _impossible_ to learn it locally or offline from an installed system.\r\n- not sure if there is \"nix manual\" and \"nixos manual\" installed by default, but it is not discoverable (unlike slackwares /usr/doc)\r\n- having both manuals and some popular tutorials (nix pills, etc.) installed and referenced in desktop environment shortcuts and after-console-login message would be great !\r\n\r\n1) split nixpkgs and \"lib\"\r\nit is difficult to understand how nixpkgs works when it is intermixed with something that is more or less \"language support library\"\r\n\r\n2) add better \"nixos-rebuild\" for files that end up outside /nix\r\n1.1) \"nixos-rebuild\" to update raspberrypi configuration on boot partition\r\n1.2) \"nixos-rebuild boot\" does not work in NixOS LXC container running on Proxmox (next boot boots old version), only \"nixos-rebuild switch\" ensures that updated version starts on next boot\r\n\r\n3) add easy way to sandbox a package - make resulting package run like it would in a very restricted (flatpak-like?) container\r\ne.g. allow steam access only to /nix and ~/.steam, no access to other files in ~, or connecting network servers running on the machine\r\n\r\n4) add clean handling of binary packages and \"allowUnfree\" packages\r\neg. \"brave browser\" is actually not build. it just downloads a binary (yet it is not marked unfree)\r\n(if i wanted to patch its source, unlike free nixos packages it is not easily possible with what is in github at the moment)\r\nat least firefox has \"firefox\" and \"firefox-bin\"\r\nbut it would be nice to have \"allowBin\" for packages that are downloaded as binaries, not build from source.\r\n\r\n4) add common behavior for packages that require webserver\r\n(unless i\'m mistaken, some require nginx, some support different servers, ....)\r\n\r\n4) NixOS-FreeBSD or NixOS-Illumos :)','probably fedora silverblue / kinoite, although there was also a recent slackware release...','Y','','','','','','','','Y','','icewm','home-manager (configured from the same git-repo that configures the system)\r\n\r\nhttps://search.nixos.org/options (default sort should be \"Alphabetically Ascending\" !)\r\n\r\nsearching https://github.com/NixOS/nixpkgs/ (there really should be better way to figure out what is available, and what is configurable - e.g. systemd-networkd unit options for configuring bonded network required referencing github) ','nixos weekly - it seems to have died. having a digest of what is going on was nice. (better than sometimes catching nixos-related blog post on lobste.rs)\r\n\r\nnixos for raspberrypi - nixos-rebuild on machine itself was too slow, and building using binfmt emulated native arm compiler was beyond my abilities in nix language.','Slackware was/is great first linux distribution, because it is simple enough do be explored, discovered and understood (with the help of installed documentation / howtos).\r\n\r\nNixOS has very good chance of being great last linux distribution. Declarative system configuration avoids issues that plague ansible workflows (non-idempotency, impossible rollbacks) and can paper-over stateful tasks using scripts in custom systemd-units.\r\n\r\nThe trouble is, one has to clearly see what would be possible using NixOS, and then keep that goal firmly in mind and use that to power through learning _untyped_ language with no code-completion. And then still spend lot of time wander through nixpkgs github, where comments are rare.\r\n\r\nEven though I started exploring nixos ecosystem close to two years ago, I do not have enough knowledge to help with\r\n- esp platform / toolchain https://github.com/NixOS/nixpkgs/pull/112401\r\nor\r\nfigure out how to use emscripten platform to build existing packages in nixpgs ? if i make an sdl application and package it using a flake, how to make it generate .html + .wasm file ?\r\n(it looks like wasm/emscriptem is packaged but not a \'platform\' in nixpkgs. but not really sure)\r\n\r\n\r\nChapter 9. Cross-compilation in the manual is a start, but even after reading it, and reading nixpkgs/lib/systems I know that I\'m still missing an enormous amount.\r\ne.g. cross-compilation toolchains for embedded systems have: 1) compiler 2) some sort of or subset of standard C library, and a 3) kernel (freertos/zephyr/etc...) headers/libraries.\r\nlike wasm it should be possible to create additional nixpkgs \"toolchain\"/\"double\"/\"platform\" (what even is the correct name for the thing I\'m trying to create ?)\r\nand then compile a user (embedded) application using that toolchain while re-using package compliation recipes from nixos (e.g. zlib, nanopb,...) optionally patching using overlays to build in the embedded environment.\r\n\r\nI\'m guessing it should be possible to define \"platform\" (using overlay) inside the flake compiling the embedded application, but at the moment i have no idea how to define the platform even by just modifying nixpkgs git checkout.\r\n\r\nMost documentation i have found about NixOS is written \"in order to do A following is required\" (specific recipe) or \"B does foo\" (description of an element).\r\nBut no virtually no documentation describes how the elements fit together.\r\nNix Pills was _the_ _best_ _thing_ _available_ for understanding how nix/nixpkgs is put together, but still not enough - unfortunately it stopped short of handling toolchains/platforms/cross-compilation, creating plaftorms.\r\n\r\nThe best documentation does not show \"in order to do A perform actions B,C and D\". The best documentation builds the simplest possible \"prototype\", explains it and its limitations. Then extends it, shows it, explains it and its limitations - and the cycle repeats until result matches actual software being documented.\r\n(It ignores or only mentions dead-ends and deprecated parts).\r\nThat results in reader having the knowledge of the whole system (incl. why was something done, and ideally why that way) ready to work on it - because the reader read about its development from scratch!\r\n\r\ncurrently the knowledge used to build the system is _hidden_ - only \"available\" in code in untyped language with no documentation - therefore it is insanely difficult to obtain\r\n\r\nThe issue with code written in nix language being hard to understand (missing types, every contract is implicit and not documented) and non-package parts of nixpkgs repo being underdocumented (mainly cross compilation, but nixos modules documentation is also lacking) is a very _real_ problem.\r\nI think that i have a reasonable tolerance for complexity - reading/writing templated C++ code (in times when SFINAE was the best option available) and reading/writing Scala code (and using the DSL monster named \"sbt\"), yet I feel _beaten_ by nixpkgs.\r\n\r\nI know what should be possible to achieve using nix/nixpkgs/nixos ecosystem (which is great and mostly unavailable by using other technologies - and I want to achieve it), I read practically everything about nixos I discover, yet I\'m still unable to understand parts of nixpkgs repo that are not \'package recipes\' or \'very simple nixos modules\'. In the end I\'m not proficient nor effective in nix language / nixpkgs repo and do not see a reasonable way to get there...\r\n\r\nI\'m still trying, but increasingly I thing _really_ hard about writing a library in Scala language to generate .drv files and use \'nix store --add\' to use them and sidestepping nixpkgs altogether.\r\n(scala is typed, has ide/code-completion support, and using \"ammonite.io\" it may be possible to use it event interactively)'),(142,'1980-01-01 00:00:00',5,'en','1915295201','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','','','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','',''),(143,NULL,1,'en','571873525','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(144,'1980-01-01 00:00:00',5,'en','1912382911','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Through NixOS, I will add more detail in that section','','','','','','','Y','','','','','','','','','','','Y','','','','','A command to show the available updates (akin to the list of available packages, the download size and the installed size when running pacman -Syu on arch)','Probably pacman, or just any of the more traditional package managers','','','','','','','','','','','','','','','','','','','','N','Lack of confidence','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Mainly out of curiosity and because I happened to dabble in Haskell just before I first heard about Nix (or NixOS, to be more precise), so the functional approach caught my attention. It is also a pain to set up a system to work in a specific way (e.g. choosing one of the dozens of ways to install a Haskell development environment) and then having to remember the individual steps when you notice you\'d like to have the same setup on another device.','Y','','','','','','','Declarative and reproducible configuration','Rollback capabilities','Installing different versions of the same package, e.g. because two programs have different requirements','That view updates feature, that a certain person that might have been me added to the nix feature list','I would probably continue using Arch, or have a look at OpenSuse Tumbleweed','Y','','','','','','','','Y','','','','',''),(145,'1980-01-01 00:00:00',5,'en','178862946','A5','A3','fem','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','OpenBSD','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(146,NULL,1,'en','852017468','A5','A3','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(147,'1980-01-01 00:00:00',5,'en','479357139','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I started with Nix on MacOS after dissatisfaction with ports, brew, et al. After using it to manage packages, I quickly discovered how useful the ability to reproduce working environments was via nix-darwin. That made for a pretty obvious gateway to NixOS on my servers and desktop machines. Along the way what definitely kept Nix convincing was the ease of packaging. Nothing from BSD ports to Portage to APT/RPM has ever been quite as low-friction as Nix in terms of going from zero to deployable package.','Y','','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Ease of packaging','Ease of creation of entire environments','Reproducibility of entire environments','I would change the way stdenv.mkDerivation processes its attributes such that such that adding in a platform-specific hotfix would no longer have the potential to cause massive rebuilds and need to go into staging.\r\n\r\nI\'d add single-letter equivalents to various longopt-only flags. nix-shell --command to nix-shell -c as the former kind of makes me want to die every time I have to type it all out, etc.\r\n\r\nI\'d add some sort of library to nixpkgs for generating configuration files that isn\'t just nested autoindent strings, so output could be effortlessly human-readable with proper indentation and so on. Much complexity could be factored out of the way NixOS generates Xorg configs, etc.\r\n\r\nOftentimes, declaring an overlay within package sets like pythonPackages or haskellPackages can be messy. You wind up having to restate segments of all-packages.nix.\r\n\r\nIn general, I\'d restructure nixpkgs such that monkey-patching nixpkgs can more frequently be achieved with straightforward overlays. The situation is pretty good by and large, but often enough to be painful, one really has to bite the bullet and conclude it\'s simpler to fork a revision of nixpkgs, edit the file in question, and evaluate nixpkgs twice during every rebuild, if now just maintaining a personal fork/patchset of a channel altogether.','Likely BSD ports/Portage/Macports and chef/puppet/ansible. I would not be nearly as happy, that\'s for sure.','','','','Y','','','','','','','','','','','cabal2nix, crate2nix, dconf2nix, and go2nix as already packaged in nixpkgs; no external ones that need to be linked.','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','My earlier story about Nix covers this','Y','','Y','Y','','','','Ability to comprehensively specify environments','Ease of creating modules','Ease of disaster recovery','I would force a sync on /boot when switching to a new configuration. The number of times I\'ve experimented with system-crashing configurations only to have to repair GRUB from another machine after giving the machine the big button is kind of wild. Naturally, I\'m pleased that recovery is as easy to perform as it is, but I\'d still rather not have to.','Some BSD, probably. NixOS makes the complexity of modern Linux abstractable and manageable.','Y','','','','','Y','','Y','','Y','i3 ','nix-darwin, home-manager, random bits and pieces of people\'s personal module and package collections, TVL monorepo','none','Nix has really been a revolution in quality-of-life for me and eliminated so many frustrations I\'ve had.\r\n\r\nGovernance and maintenance for nixpkgs are a little wonky sometimes, I won\'t lie. Regressions can get merged fast, sometimes even self-merged, and fixes can sometimes go through comparatively more red tape. In that respect, contributing can sometimes be a little frustrating. I have no magic solution to propose on that front, though.\r\n\r\nBy comparison, contributing to Nix proper is significantly more pleasant, I suppose owing to its smaller scale.\r\n\r\nI\'m looking forward to seeing Nix on more platforms.\r\n\r\nMuch love, keep at it y\'all!'),(148,NULL,NULL,'en','1028477685',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(149,'1980-01-01 00:00:00',5,'en','532215757','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','A colleague introduced nix-shell for dependency management.','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','nix-shell','Substitute builders','remote build artifact caching','Use a more widely known language instead of the Nix Expression Language.\r\nVastly improve the documentation itself and its \"up-to-dateness\".','Docker containers for multilanguage dependency management.\r\nConda for Python dependency management.\r\nOpenSuse Snapper for operating system management. ','','','','Y','','','Y','','','','','','','','','Y','','','','N','Not enough experience with Nix','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','A colleague introduced nix for dependency management at work. After using nix on CentOS and Ubuntu I wanted to try out NixOS at home.','','','Y','','','','','','','','Improve it\'s documentation.','OpenSuse','Y','','','','','','','Y','','','','','',''),(150,'1980-01-01 00:00:00',5,'en','1060391985','A2','A4','male','','','','','','','','','','','Y','Y','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','See NixOS story','','','','','','','Y','','','','','','','','Y','Y','','Y','','Development environment shell','','','Strong typing in the Nix language maybe? The pain points are probably in the language, but I haven\'t really dived deep yet. Type system might help discoverability...','Ansible or maybe just shell scripts','','','','','Y','','','','','','','','','','I\'ve never heard of 2nix.','Y','','','I don\'t really know how, I think I cobbled together some sort of overlay thing once or twice','N','I don\'t understand all the Nix machinery involved with nixpkgs, hard to learn the language/system.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Was tired of reconfiguring my Linux box every time I reinstall the OS to get the settings just right. Figured I\'d use Ansible to write a script to set up my box, went back to the github of the guy whose Ansible setups I\'d bookmarked half a year earlier and there was a note saying he\'d jumped ship to NixOS. Decided to try NixOS, haven\'t looked back.','Y','','','','','','','Reproducible Linux box configuration','','','','Arch Linux','Y','','','','','','','','','','i3wm','','Nix on a non-NixOS (Debian) box. Didn\'t bother figuring out conflicts between nix-installed and apt-installed stuff. A pain.',''),(151,'1980-01-01 00:00:00',5,'en','920761314','A2','A2','male','','','','','','Y','Y','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','Back then (2015) it was the only painfree way to have Haskell development environments without compiling the same packages over and over yourself, one thing led to the other.','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','','Y','','','','','Remove flakes.\r\nSpeed up the evaluator.','Potentially Bazel or another build system by Google; or just plain unwrapped make, CMake, cabal-install, …','','','','','','','Y','','','','Y','','Y','','cabal2nix (https://github.com/nixos/cabal2nix)\r\nnapalm (https://github.com/nix-community/napalm/pulls)\r\nnaersk (https://github.com/nix-community/naersk/)\r\nProfpatsch\'s yarn2nix (https://github.com/Profpatsch/yarn2nix)','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','Got curious after using Nix for Haskell development environments initially, some friends were already using it.','Y','','','Y','','','','','','','Replace the module system with something that\'s quicker and less reliant on an ominous global fixpoint.','ArchLinux or Void Linux','Y','','','','','','','','','','sway','nman (https://github.com/openlab-aux/vuizvui/tree/master/pkgs/profpatsch/nman)\r\nemacs-overlay (https://github.com/nix-community/emacs-overlay)','Nix >= 2.4\r\nnpmlock2nix (https://github.com/nix-community/npmlock2nix)',''),(152,'1980-01-01 00:00:00',5,'en','504125606','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','Y','Y','Y','Y','Y','','','Y','Y','','Y','','Reproducibility','Recipes','Hermeticity','','','','','','Y','Y','','','','','Y','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','Y','Y','Y','','','','','','','Y','','','','','','','','','','sway','','',''),(153,'1980-01-01 00:00:00',5,'en','1210065817','A6','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','After having bad experiences with ubuntus apt get i decided to explore nix','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','To stop having to configure my system again and again ','Y','','','','','','','Truly independent package installation','Updated packages','Ability to define system declaratively','','','','','','','','','','','','','I3','','',''),(154,NULL,3,'en','583782487','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','My collegae used it, and recommended it to me.','','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Configuration','Rollbacks','','Make nixpkgs more uniform in the different languages/packages (e.g each language does it slightly differently).','Arch linux probably','','','','Y','Y','','Y','','','','','','','','pip2nix\r\nnpm2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Collegae used it, and recommended it.','Y','','Y','','','','','Rollbacks','Unified config','','Add better support for Intellij & KDE (and other programs that don\'t really work with the NixOS philosophy).','Arch linux','Y','','','','','','','','Y','','',NULL,NULL,NULL),(155,NULL,1,'en','811244849','A2','A2','-oth-','','','Y','','','Y','Y','','','','Y','','','','','Y','','Y','','','','','','Y','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(156,NULL,2,'en','1578276862','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(158,NULL,NULL,'en','912060876',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(157,'1980-01-01 00:00:00',5,'en','1240107741','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I placed a new SSD in my laptop and I wanted to briefly experiment with nixOS. It stuck arround and now my servers are also running nix','','','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','eclarative confguration','Rollbacks','','','Arch','','','','','Y','','Y','','','','Y','','','','yarn2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I tried it out after some nuding from a friend. \r\nI needed to installe a new OS because I changed my SSD, and I tried it.\r\nIt stuck arround... Now it runs on all my servers.','Y','','Y','Y','','','','Declararivity','Rollbacks','','Better support for remote deployment of flakes','','','','','','','','','','','','Sway','','',''),(159,'1980-01-01 00:00:00',5,'en','623046957','A2','A5','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','Y',NULL,'Too hard to figure out. Difficult to understand how NixOS, Nix, HomeManager, Flakes, Whathaveyou all are supposed to work together.','Less complicated tooling, more concise/consistent/simple documentation. When something like \'Nix for users\' exists, as opposed to just \'Nix for developers\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Unclear how to use it in a consistent and productive way. Too complicated and unclear documentation.','Better docs, better tooling. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'HomeManager','HomeManager','Would love to use Nix, but the experience isn\'t very good.'),(162,'1980-01-01 00:00:00',5,'en','1920430729','A2','A2','male','','','','','Y','Y','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I\'ve seen it somewhere on YouTube and it just intrigued me','','','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative configuration','','','','Guix','','','','','Y','','','','','','','','','','Machnix','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','Y','','','','','','','','','','','','','Y','','','','','','','awesomewm','','',''),(161,'1980-01-01 00:00:00',5,'en','426223053','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','','','NixOS','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','N','knowledge :)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','','Y','','','','','','','','','','Y','','','','','','','','','','','nix-darwin\r\nhome-manager','',''),(160,'1980-01-01 00:00:00',5,'en','1148119381','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','ChromeOS','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','ChromeOS','Y','','Y','','','','','','Y','','','Y','','','','','','Guix','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','I would like to, but not sure how welcoming it is, or where to get started. I have packages or version bumps that I could contribute right now.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','','','','','','','','','','','','','bspwm','','','Flakes! More flakes! Everywhere!'),(163,NULL,NULL,'en','1822614855',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(164,NULL,NULL,'en','1501420395',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(165,'1980-01-01 00:00:00',5,'en','1852422667','A2','A4','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','My source-based distribution (Gentoo) did not provide usable binary caches for heavyweight packages like firefox. When I occasionally got them broken I had no simple way to install working version without waiting 20 minutes. I started using `nix` as a way to get binaries quickly while I\'m recovering the tool.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Ability to mix multiple package versions on a single system (easy rollbacks and regression tracking).','Support for binary substitutions.','Predictable build environment for packages.','I would like `nix develop` / `genericBuild` (or the equivalent) to be closer to `nix build` build environment. So far it\'s very hard to debug failures if they are related to containers provided by `nix-daemon`. `guix environment --container` is a good tool to compare against.','Gentoo.','','Y','','Y','','','Y','','','','Y','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Desktop OS','A2','I was a Gentoo user (and developer) for 10 years :)\r\n\r\nMultiple issues user-facing accumulated over time and were a part of the decision to switch:\r\n- default packages manager `emerge` became so slow that it started taking tens of minutes to resolve all dependencies on my desktop; i needed more interactivity\r\n- inability to roll glibc upgrade back (or similar core packages) causes consistent problems; creating a system with old glibc out of a new one is manual and tedious\r\n- performing unattended upgrades for kernel is not very easy\r\n\r\nI ported most of my Gentoo user experience to NixOS without problems.\r\n\r\n','Y','Y','Y','','','','','Declarative reproducible configuration','Atomic upgrades and rollbacks','Fast packages install from binary caches','I\'d like `nixpkgs` to be more consistent in various interface parts, like `python.withPackages` / `haskellPackages.ghcWithPackages` / `(pidgin.override { plugins = [ pidgin-window-merge ]; })`.','Gentoo.','Y','','','','','','','','','','i3+none','nixpkgs','',''),(166,'1980-01-01 00:00:00',5,'en','598107944','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','Y','','','','','Y','','','Y','','full system configuration','nix-shell -p','','Simpler and more consistent command line interface. \'nix-shell -p vim\' vs \'nix run pkgs.vim\'','apt + home-brew','','','','','','','','','','','','','','','','Y','','','','N','Huge learning curve, quickly evolving best practices, nix is a confusing language','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted a declarative system. I got sick and tired of conflicting packages, confusingly inconsistent configuration, etc...','Y','','Y','Y','','','','','','','','Arch Linux or an Ubuntu derivative','Y','','','','','','','Y','Y','','','','nixops, flakes',''),(167,'1980-01-01 00:00:00',5,'en','120464282','A2','A2','','','Y','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Friends told me about it. Sounded interesting and I need something like NixOS.','','Y','','','Y','','Y','Y','Y','','','Y','Routers','','Y','Y','Y','Y','','Reproducible and more or less customizable builds from source without a binary cache','Trying out software risk-free without compiling in my home directory but instead in a restricted build environment','Multiple versions of the same software side by side without breaking anything and installation without root privileges','Remove bugs of course, stabilize currently experimental features such as flakes, content-addressed derivations and most importantly the new cli. Maybe rewrite it in Rust ;)','Guix','','Y','','Y','Y','','Y','','Y','','','','','','crate2nix, naersk','Y','Y','Y','','N','Lack of time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Had multiple devices on different Linux distros with a pretty extensive dot file repo that reached its limits when I head of NixOS. Being able to have the same configuration across multiple devices without fear of a non-bootable configuration got me sold instantly.','Y','Y','Y','','','Y','Routers','Declarative and portable system configuration without fear of a non-bootable configuration','Tmpfs as root file system','Vast knowledge base of configuration options for software I use and host','Get rid of the defaultPackages. Make environment.systemPackages an AttrSet to be able to null out packages. Rewrite wrappers like nixos-rebuild in Perl and Bash to something else. Disable caching of sources in hydra to make the sha256sums in nixpkgs more recent. Make the system closure size smaller by removing unnecessary dependencies and split nixpkgs into more smaller flakes. Tackle most FIXMEs that have been in the core of nixpkgs since 9 years.','Guix System','Y','','','Y','','Y','','','','','Sway','patchelf I guess. nixos-search, mobile-nixos, nixos-weekly','Hydra because it couldn\'t build all of my content-addressed derivations. NixOps because it didn\'t have the \"magic rollback\" feature of deploy-rs.','Thank you for all your effort. It really makes my life better and even if sometimes some things don\'t work, I love NixOS.'),(168,'1980-01-01 00:00:00',5,'en','2089590575','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Declarative configuration seemed amazing. Was my first main Linux distribution to switch from Windows ','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','','Declarative system configuration ','Reproducible packaging builds ','','Would make usability of Nix(OS) as user friendly as rustup/cargo. Sorry for the Kool-aid ','Guix(?). I have no idea. ','','','','Y','Y','','Y','','','','','','','','Cargo2nix\r\nMach-nix','Y','Y','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','Y','Y','','','','','','Y','','','','','',''),(169,'1980-01-01 00:00:00',5,'en','1854078614','A2','A3','male','','','','','Y','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I was distro hopping a lot, and found the concept of nixos and mix interesting, so I gave it a try, and got stuck. I liked the concept of reproducible builds and being able to make several versions of a library coexist on the same system.','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative environment management','Declarative configuration','Nixpkgs','Better documentation, especially about flakes. Less obscure terminology (like derivation and FP verbiage). Make nix search stop sending request to servers even when the cache is up to date. ','Anaconda/poetry/pyenv/docker for declarative environment. \r\n\r\nAnsible for declarative configuration\r\n\r\n','','','','Y','','','','','','','','','','','','Y','','Y','','N','Burden of maintenance, complexity of writing a package.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I was distro hopping a lot, and found the concept of nixos and mix interesting, so I gave it a try, and got stuck. I liked the concept of reproducible builds and being able to make several versions of a library coexist on the same system. The possibility to roll back, and a declarative configuration was also a really great experience. ','Y','','Y','','','','','Declarative configuration','Coexistence of different system configuration in grub','Rollbacks','Gnome as first class citizens (I get a lot of breakage when updating, not s big deal thanks to rollbacks, but a bit frustrating).\r\n\r\nBetter discoverability of options. ','Another Linux distribution, maybe fedora or arch. ','Y','','','','','','','Y','','','','home-manager','','Keep doing the great work, I\'m sure things will improve. '),(171,'1980-01-01 00:00:00',5,'en','240795741','A2','A3','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','','Y','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','Y','building embedded systems','(Assuming nixpkgs is included in \"Nix\" here) comprehensive distribution of software of all kinds','Reproducibility','Declarative config','The stabilisation of Flakes would stop. People are using it and completely ignoring that it\'s an experimental feature and subject to change, _depending_ on it. Flakes feels like it\'s being brought to us by the faceless gods who decide where Nix is going (Eelco is the only one clearly involved, but it feels like there\'s a secret in-group) and not designed with the community.','Probably Guix? Or sadness.','','','','Y','Y','','Y','','Y','','','','','','yarn2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','Y','Y','','Declarative config for the whole system','Fearless experimentation','Complete software inventory control','Faster evaluation and build.','Guix probably','','Y','','','Y','Y','','','','','sway','','Phasing out nixops.\r\nnox\r\nProbably more I can\'t think of now',''),(170,NULL,1,'en','288999809','A5','A2','fem','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(172,NULL,1,'en','998104273','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(173,'1980-01-01 00:00:00',5,'en','1070613927','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I started using Nix when I installed NixOS (Randomly interested to the concept of a \"functionally pure Linux distro\" after I had a blast discovering Haskell)','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Hermeticity and reproducibility','Declarative system configuration, declarative build recipes','Generation and evaluation of arbitrarily complicated build graphs','I\'d remove C++ in order to help broaden the range of people that may contribute. (This applies to me!)','Debian/apt and language-dependent package managers','','','Y','Y','Y','','','','Y','','','','','','Naersk','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','Randomly interested to the concept of a \"functionally pure Linux distro\" after I had a blast discovering Haskell','Y','','Y','','','','','Declarative configuration','Remote building','Very large package set','','Debian','Y','','','','','','','','','','sway','I use nix-build.net regularly.','',''),(174,'1980-01-01 00:00:00',5,'en','507615934','A6','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','','','','','','','','','Y','Y','','Y','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','','','','','','','Y','','','','','','','','','','only i3','','',''),(175,'1980-01-01 00:00:00',5,'en','187850443','A2','A3','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted a good cross-platform package manager, and an easy wau to handle upgrades rollbacks and dotfiles. Especially removal of old conf files was a hassle with previous setup (brew + bash scripts).','Y','','','','Y','','Y','','Y','','','Y','','','Y','','','','','Flakes and easily pinning dependencies. ','Easy dotfile/package setup with possibility for per-system variation with home-manager. ','','Better macOS support. Especially packages from nixpkgs available on macOS.\r\n\r\nEasier way to get a specific version of a package. Possible with multiple channels and overlays in a flake, but usually quite a hassle to do it.','Brew + bash scripts. Possibly Guix.','','','','Y','Y','','','','','','','','','','Node2nix','Y','Y','','','Y',NULL,'N','N','Non-mac development laptop. Time to migrate home servers/rpi to nixos.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Home-manager, flake-utils, nixpk.gs','Nix-darwin ',''),(176,'1980-01-01 00:00:00',5,'en','474431262','A5','A5','fem','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','','Y','','Y','Y','Y','Y','','','','','Y','','','Y','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','Y','Y','','','','','','','','','Y','','','','','','','','','','','','',''),(177,'1980-01-01 00:00:00',5,'en','669837960','A2','A3','-oth-','Non-Binary','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','','','private laptop','A1','At the moment, I use nix only on my NixOS systems.','','','','','','','','','','Y','','','private laptop','Y','','','','Y','','','','','Add more docs and beginner tutorials.','Probably Ansible and if that would not exist maybe Salt or Bash scripts.','','','','','','','','','','','','','','','','','','','','N','I still have to learn much about nix, nixpkgs and flakes to feel comfortable contributing.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','private laptop and server','A1','Friends told me about NixOS some years ago, even tried it a few years ago but I failed to configure vim and gave up.\r\n\r\nLast December, a close friend started to write NixOS configuration for all his computers. I got interested again and tried it out on an old, unused computer. Having some experience with Salt, Ansible and Terraform, I was fascinated by the idea of managing most parts of my system with a declarative configuration. For me its easier to use than Salt and Ansible (at least for most parts) and it solves one of the problems I encountered on Arch Linux: easily reinstall/reproduce a system with all its packages and (global) configuration. Also for my server it came in quite handy.\r\n\r\nNow I\'m running my new laptop on NixOS and 2 NixOS-VMs on my private server.','Y','','','Y','','','private laptop','Describing the system including installed packages and systemwide configuration in a declarative, reproducible manner','','','more up-to-date Wiki arcticles, add more How tos\r\n\r\nimprove display of what is updated when running nixos-rebuild switch --upgrade','Arch Linux, which I have been using since 2014 and still use today','Y','','','','','','','','','','Sway','','',''),(178,NULL,1,'en','1861655619','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(179,'1980-01-01 00:00:00',5,'en','1194099043','A2','A3','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend (also a developer) of mine introduced me to Nix, specifically NixOS.','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','declarative package management','reproducible builds','declarative system configuration','Embrace flakes as the default (though, I guess that\'s where it\'s heading already).','Nothing really. I\'d install dependencies manually & have loose system configurations.','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend of mine introduced me to it and I was intrigued by it.','Y','Y','Y','','','','','declarative system configuration','reproducible builds','atomic upgrades','Require less rebuilding (thus more caches) e.g. for custom home assistant configurations.','Other Linux distribution, probably a rolling release distro to get up-to-date packages.','Y','','','','','','','Y','','','','home-manager\r\nrycee/nur-expressions (for Firefox add-ons)','NixOps (lack of flake support)',''),(180,NULL,1,'en','1849919868','A5','A3','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(181,'1980-01-01 00:00:00',5,'en','626632722','A2','A4','male','','','','','','Y','Y','','','','Y','Y','Y','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Found out that bleeding edge doesn\'t necessarily means unstable. Felt in control of my system.','Y','','','','','','Y','','Y','','','','','','Y','Y','','Y','home-manager','Share environments with others','Rollback with ease','','Replace nix-env and nix profile with commands to add packages to system/home configuration.','ArchLinux. Docker?','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','Bleeding edge while being confident I can switch to an earlier version of my configuration','Sharing of configuration','Ease of system configuration','Add recommended profiles, like nixos-hardware, but for (for instance) Wayland/Sway. Currently requires a lot of options to be set.','ArchLinux, MacOS','Y','','','','','','','','','','i3 / Sway','home-manager\r\nnixos-hardware\r\n','Nixops, nix-env, nix-channel','It\'s a bit baffling that home-manager is still not adopted as a standard Nix tool.'),(182,NULL,NULL,'en','2044976549',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(183,'1980-01-01 00:00:00',5,'en','1548056127','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was intrigued by reproducible system configurations.','','Y','','','Y','','Y','Y','Y','','Y','','','','Y','Y','Y','Y','','nix flakes','casync','','Splitup nixpkgs, establish a stable but far smaller base (with LTS if possible), move as much as possible to external flakes.','guix','Y','','','','Y','','Y','','','','','','','','node2nix, poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','Y','','','','','','','','guix-sd','','','','','Y','','','Y','','','','nix-on-droid, home-manager','',''),(184,NULL,1,'en','1256863815','A2','A3','-oth-','genderfluid','','','','Y','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(185,'1980-01-01 00:00:00',5,'en','918874798','A2','A2','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','Y',NULL,'Some libraries(I\'ve meant boost library) didn\'t have enough support for my tools. Other causes were general problem integration NixOS with IDE(mainly Jetbrains IDEs)','Definitely I wanna back to NixOS and nix eco-system, but I need some time to finish my dotfiles and other things',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'same reason as in the previous question','same reason as in the previous question',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(186,NULL,NULL,'en','98275989',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(187,NULL,NULL,'en','430495823',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(188,'1980-01-01 00:00:00',5,'en','2024985316','A5','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','Y','Y','','Y','','','Y','','Y','','','','','Y','Y','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','N','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(189,'1980-01-01 00:00:00',5,'en','1708445628','A5','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I really wanted to have all my configuration in a single place. Still not there yet, because of Plasma configs, but it\'s so much easier to restore machines from a Nix configuration than a list of debs.','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative management','Reproducible builds','','','Guix, probably, but if Nix never existed, that wouldn\'t either.','','','','Y','Y','','','','','','','','','','mix2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','','','','','','','Y','','','','','','','Y','','','home-manager\r\nnix-direnv','Lorri',''),(190,'1980-01-01 00:00:00',5,'en','164502046','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','cabal2nix, node2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A3','','Y','Y','','','','','','','','','','','Y','','','','','Y','','Y','','','','nix-darwin, home-manager','',''),(191,'1980-01-01 00:00:00',5,'en','133371771','A5','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Refugee from chef and wanting a fully declarative system for managing my hosts','','Y','','','','','Y','','Y','','','Y','','','Y','','','Y','','Whole system state defined in configs','Ability to roll back','Customization ','Less obtuse error reporting and a mechanism for propagating discovered hosts info like facter and ohai in the puppet and chef worlds','Chef with a constant annoyance that it is owned by progress software','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','Time and willingness to dig into that surface area of the community','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Was building a home lab setup and found continuing with chef unappealing and the current docker and kubernetes approaches contained far too much complexity and a focus on things I didn\'t care about like load balancing and deploying multiple versions of a service','Y','','Y','','','Y','','Whole infra management from a git repo','Roll backs','Rolling updates','Less obtuse errors when writing configs','Ubuntu and chef','Y','','','Y','','','','Y','','','','Nothing offhand','Haven\'t really churned through projects, devos and surrounding tools has worked well for me','Thanks from a fan'),(192,'1980-01-01 00:00:00',5,'en','966313305','A2','A3','male','','Y','','','','','','','','','Y','','','','Y','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was searching for a declarative system administration tool that would enforce state.','Y','','','','','','','','','','','','Home laptop','','Y','Y','','Y','','system management','package management','build system','more ergonomic tooling with better documentation','make?','','','','','Y','','','','','','Y','','','','yarn2nix\r\ncargo2nix','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was searching for a better alternative to ansible,','Y','','Y','','','','','shared configuration between machines','extendability','flawless rollback','runit istead of systemd, better nixpkgs documentation','Alpine Linux','Y','','','','','Y','','','','','XMonad','Agenix\r\nHome-manager','NixOps',''),(193,'1980-01-01 00:00:00',5,'en','1690125208','A2','A4','male','','','Y','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','interesting concepts to keep track of all deps','','Y','','','','','Y','','','Y','','','','','Y','','','Y','nix flakes','reproducibility (flake)','declarative','revertible','add more docks and samples','Archlinux and Pacman','','','','','Y','','','','','Y','','','','','poetry2nix','Y','Y','Y','','N','Quite new to the ecosystem have to better understand how it works. Specially not familiar with nix language ','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','reproducible, declarative OS system sound to good to be true ','Y','Y','','Y','','','','reproducible','declarative','rollback','Docs, docs docs','Debian for production, Arch for dev','Y','','','','','','','','','','i3','none','none','hard to follow the ideas'),(195,'1980-01-01 00:00:00',5,'en','1534581856','A5','A5','male','','','','','','','Y','','Y','','','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','Attempted to use NixOS for a work station. Ended up too difficult to deal with the company python environment. Still tinker with straight Nix as a package manager for WSL and Synology environments.','','Y','','Y','','','Y','','Y','','','','','','Y','','','','Home manager','Declarative package management','Easy roll forward and back','','Far better UX/DX, with much more consistent interfaces. Integrated home-manager. More up to date docs. Consistent messaging around flakes and better docs for transition from pre-flake tutorials. Much less boilerplate for flake usage, especially in simple packages.','Currently use a mixture of os level package management with asdf-vm and pipx to manage python environments.','','','','Y','Y','','','','','','','','','','','','Y','','','N','Lack of consistency and simplicity.','N','Y',NULL,'Managing python for work environments was too difficult.','Radical streamlining of the user and Deb experience, especially for dealing with non-nix native packages.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(196,'1980-01-01 00:00:00',5,'en','1605918025','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Arch Linux Install got borked too many times then found out about nixos','Y','Y','','','Y','','Y','Y','Y','','','Y','','Y','Y','Y','Y','Y','','','','','Remove nix-env. Nuke all its references from docs.\r\n\r\nChange docs to be better.\r\n\r\nRemove nix-channel','Guix','','','','Y','Y','','','','','','Y','Y','','','node2nix, cabal2nix, naersk, buildGoModule','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I borked my arch Linux install','Y','','Y','','','Y','','Declarative config','Large module set','Rollbacks','Change the nscd kerkuffle, get rid of global path /etc/Nixos . Integrate nixos-rebuild into nix command or explain people what nixos-rebuild does .\r\n\r\nMove to networkd networking,\r\n\r\nAdd systemd based initrd','Arch Linux ','Y','','','','','','','Y','','','','Niv','Home-manager',''),(197,NULL,1,'en','1590357111','A2','A3','male','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(198,NULL,2,'en','628682851','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Nix seemed like a great idea so I installed NixOS 18.09 on a ThinkPad E365.','','Y','Y','','','','Y','','Y','','','','','','Y','','','Y','','Nix generations help keep NixOS stable','Declarative system management','Everything basically works well','Add more resources for SELinux and other secure configuration like possibly some way to integrate it with OpenSCAP.','Guix','','','','','','','','','','','','','','','','','','Y','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(199,'1980-01-01 00:00:00',5,'en','1003978532','A5','A2','fem','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Flakes!','Overlays are useful for compiling packages with custom options/optimisations, which I tend to do a lot.','The 2.4 print-dev-env command','- Make it easier to do cross-compilation with flakes\r\n- Get rid of channels','Probably apt/dpkg, along with manually compiling nightly builds of software.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I was sick of dealing with broken Ubuntu systems, and had heard of NixOS a few months earlier, so I decided to give it a try.','Y','','','','','','','Overlays','Multiple generations','','I just want the modules system to be faster, as it can take a full minute to evaluate the system on my thinkpad x140e.','Probably Ubuntu or Debian','Y','','','','','','','','','','sway','direnv\r\nhome-manager\r\nragenix','',''),(200,'1980-01-01 00:00:00',5,'en','1561204404','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','sway','','',''),(201,'1980-01-01 00:00:00',5,'en','411356437','A2','A3','male','','','','','','','','Y','','','Y','','Y','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','NixOS sounded like a great idea.','','','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','nix-shell','Nix language','build sandbox','Finally having content-addressed derivations in production would be nice. Also a coherent CLI API but that might be even harder problem.','Probably combination of something ostree-based, toolbx, Docker and suffering.','','','','Y','Y','','','','','','Y','','','','https://github.com/nix-community/naersk\r\nhttps://github.com/nix-community/napalm\r\nhttps://github.com/NixOS/nixpkgs/tree/master/pkgs/development/tools/yarn2nix-moretea\r\n','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I was tired of having to install everything over again each time I upgraded PC, my legacy distro-based system was getting polluted, and Nix felt like a reasonable approach coming from a Haskell background.','Y','','Y','Y','','','','Functional approach to building system root (mutation is bad)','Declarative configuration','nixos-rebuild build-vm','Granular personalized channels blocking on tests for all software I use and nothing more.','Perhaps something ostree-based like Fedora Silverblue. But I am not sure I would even be aware of this mindset without NixOS.','Y','','','','','Y','','Y','','','','https://github.com/edolstra/dwarffs\r\nhttps://github.com/nmattia/niv\r\nhttps://github.com/ryantm/agenix','',''),(202,'1980-01-01 00:00:00',5,'en','1648897216','A2','A2','male','','','','','','','','','','','Y','Y','Y','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','Y','','','','','','','','','Y','','','Y','','','','Y','','','','','',''),(203,'1980-01-01 00:00:00',5,'en','1671696378','A5','A4','male','','','Y','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I really liked the idea of per-project locked development dependencies. I also loved the idea of using home manager for dotfiles, etc.','Y','Y','','','Y','','Y','','','','','','','','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','poetry2nix','Y','Y','','','N','I have no idea how I would go about it.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','arion','nixos-shell, it just wouldn\'t run for me, unfortunately',''),(204,'1980-01-01 00:00:00',5,'en','373986359','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(205,'1980-01-01 00:00:00',5,'en','1779450158','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Easy dev environments','Y','','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','Nix develop','','','Rewrite documentation like rails guides','The usual crap that programming langs offer','','Y','','Y','Y','','','','','','','','','','','Y','Y','','','N','Too complex','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Mac tools are too esoteric ','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','','Tmux','','',''),(206,NULL,1,'en','1646487878','A2','A4','male','','','','','','','Y','','','','Y','','','','','','Y','','','','','','','Y','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(207,'1980-01-01 00:00:00',5,'en','892683282','A5','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I liked the idea of reproducibility and declarative configuration of entire systems.','Y','','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Declarative configuration of systems via NixOS','Declarative configuration of home directories via home-manager','Flakes','I\'d make the documentation perfect, especially for new users (I\'ve wanted to introduce friends to Nix and I\'ve always stressed that it will take time to learn).','MacPorts on macOS, maybe Arch Linux or Debian for servers.','','','','Y','Y','','','','','','','','','','https://github.com/svanderburg/node2nix\r\nhttps://github.com/winterqt/nuget2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','Y','Y','','','','','','','','','Y','','','','Y','Y','','','','','','','','Thanks for everything. ❤️'),(208,'1980-01-01 00:00:00',5,'en','2056143948','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','N','Y',NULL,'I stopped needing software I could only install easily with nix','Needing to use software that\'s only packaged nicely with nix again',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I couldn\'t understand the docs despite my best efforts. I think the representation I had in my mind of how nixos was supposed to behave was actually very different from how it really works under the hood.','Finding beginner level docs that make me understand how basic everyday operations should be done',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','nix-env, (or was it nix-shell?) or was that the topic of the previous questions ?','🍕'),(209,'1980-01-01 00:00:00',5,'en','1032375004','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','As a way to have more up-to-date packages on a debian install.','','Y','','','','','Y','','','','','','','','Y','','','Y','','the \"fearless experimentation\" thing.','per-project dependencies with nix-shell','rollbacks','The language is kind of weird.','Guix, maybe.','','','','Y','','','','','','','','','','','','','','','','N','Haven\'t needed to yet, everything I\'ve used is already present and up-to-date.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Had some new hardware to setup, figured I would try nixos.','Y','','','','','','','system rollbacks','very up to date software','','maybe integrate things like home-manager?','guix, maybe.','','','','','','','lorri','','','Y','cinnamon, i3 ','home-manager. That\'s primarily how I use nix on non nixos systems.','None, I\'ve only really used home-manager and lorri and have had good experience with both.','Thank you for nix :-)'),(210,NULL,1,'en','1213683925','A5','A4','fem','','','','','','','Y','Y','Y','Y','Y','Y','','','','','','','','','','','','Y','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(211,'1980-01-01 00:00:00',5,'en','643085919','A5','A4','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','When I first heard how nix worked, it just sounded obviously \"right\" I kept track of it and switched to using it as my daily driver as soon as (nearly) all of the packages I rely on were in nixpkgs','','Y','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','Flexible declarative configuration & management for my machine','Single format for build environments that can pull in cross-language dependencies','nix-ops','I would kill nix-env (while keeping buildEnv). I ran into so many problems with nix-env and I eventually replaced my .nix-profile with the output of my own nix expression that called pkgs.buildEnv. having to delete packages by name was the biggest problem, but I ran into others as well.\r\n\r\nI replaced nix-env with about 5 lines of nix and 5 lines of shell and I\'ve never been happier!','Either Gentoo or Guix; I\'ve never used the latter, but it promises to do all the things that Nix does','','','','','','','','','Y','Y','','','','','','','','','callPackage inside my declarative buildEnv','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Started with Nix (see my answer there), tried NixOS a couple of times until it felt \"ready\" then slowly moved every machine I run to NixOS.','Y','','Y','','','','','configuration all in one place','rollbacks','declarative configuration','','Gentoo or Guix','Y','Y','','','','','','','Y','','FVWM','','',''),(212,NULL,NULL,'en','1094615786',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(213,NULL,2,'en','1911335537','A1','A3','-oth-','Enby Femme','','','','','Y','Y','','Y','','','','','Y','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','Desktop OS','A4','Needed something reproducible for work at the time, tried out NixOS in a VM and then decided to run it as my daily driver at home.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Declaritive OS Definitions','Reproducible Package Management','Variable Interpolation (for defining shared values among programs configs)','I would remove GNU/Linux from Nix, and instead base NixOS on top of 9front or Plan9. I believe the mechanics of Plan9\'s kernel are a very good for for Nix and vice-versa, and the lack of established software (alsmost all are self-contained plan9 C programs) means we wouldnt need to alter the design to accomodate programs that werent designed to be sandboxed.','Guix (if that counts), otherwise I would simply be sad at the lack of a decent reproducible and declaritive OS','','','','Y','Y','','Y','','','','','','','','cabal2nix https://github.com/NixOS/cabal2nix','Y','Y','','','N','I dont feel like I understand the packaging well enough to do things the \"proper\" way, and I dont have any software worth packaging to NixOS (theyre all small personal projects)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(214,'1980-01-01 00:00:00',5,'en','342526537','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It came with NixOS.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','','','','','Quick development environment.','Reproducibility.','Read-only system.','Add: debug symbols. This is a very big missing feature. Nix(OS) users cannot provide upstream with backtraces.\r\nAdd: sandboxes for all packages. Block all network, file and devices by default and whitelist some.\r\n\r\nRemove: dependence on GitHub, so I can contribute without Microsoft as a middle man. Be a real community.','Guix, SuSE, Debian, Docker, drugs.','','','','Y','Y','','','','Y','','','','','','crate2nix','Y','Y','Y','','N','GitHub. I keep local patches/branches and sometimes send a mail.\r\n','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','Linux','KDE Plasma','nvim','Add: debug symbols for all packages\r\nAdd: easy way to write many tests for regressions of personal way of using packages. (Does X still do Y?)\r\nRemove: dependency on GitHub.','Guix, Debian, Docker, food stamps.','Y','','','','','','','','Y','','sway','Nix REPL, Nix LSP\r\n','NixOps','Thank you for Nix!'),(215,'1980-01-01 00:00:00',5,'en','1431176018','A5','A3','fem','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','At a former workplace, my manager and a couple of coworkers were very enthusiastic and knowledgeable about Nix. When I was setting up my work laptop, they offered me a NixOS config with various customizations to make it work nicely with the company\'s IT infrastructure, and were using Nix for building the main project I was working on. It took a while before I got confident exploring Nix beyond basic surface-level tasks like installing and upgrading software, but I started to really appreciate the power and flexibility it offered, along with the convenience and reusability of configuration-as-code. About a year ago I started using NixOS for my personal laptop too, and for my work computer at my next job, as well as using Nix in various other personal projects.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Overriding derivations (applying custom patches, backporting features or newer releases, etc)','Flakes and reproducibility','Copying closures between systems','It\'s awkward how, if I want to enter an environment with a non-free package using `nix shell`, I need to set the environment variable to allow non-free packages *and* pass the `--impure` flag so that environment variable isn\'t just discarded. I\'d love to be able to run \"pure\" builds that rely on external environment variables not to change the output, but to allow the build to take place at all.','Probably Ansible for managing server configs, Arch Linux for my personal computers, and building software using whatever dependency management tools a given language has available (cargo, yarn, stack, etc)','','','','Y','Y','','','','','','','','','','https://github.com/kolloch/crate2nix\r\nhttps://github.com/nix-community/npmlock2nix\r\nhttps://github.com/tweag/gomod2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','(see answer for Nix)','Y','','Y','Y','','','','Declarative system configurations','Easy rollbacks of the entire system','Out-of-the-box ZFS support, plus availability of related tools/services like znapzend','I\'d love to see better ways for handling secrets in NixOS, both in terms of access controls on the Nix store and in terms of encrypting secret values in version-controlled repos. It\'d be awesome to have a library function that takes an encrypted value and decrypts it using a passphrase supplied on the command-line at build time, so individual attrs within an attrset could be encrypted, while using MACs or hashes to validate the passphrase so the build is still consistent.','Probably Arch Linux for home machines and Ansible for configuring servers.','Y','','','','','','','','','','swaywm','https://github.com/musnix/musnix\r\nhttps://github.com/nix-community/home-manager\r\nhttps://github.com/nix-community/emacs-overlay\r\nhttps://github.com/oxalica/rust-overlay','',''),(216,NULL,1,'en','122625620','A1','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(217,'1980-01-01 00:00:00',5,'en','1630825382','A2','A2','male','','','','','','Y','Y','','Y','','','','','','','','','Y','','','','','Y','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Read about it on Hacker News and figured it might be a good way to obsolete the flaky Ansible-based config management for my PC and servers.','Y','Y','','','Y','','Y','','Y','','','','','Y','Y','','','Y','','Reproducibility','Ease of packaging','Size of nixpkgs','* ','Probably Docker or Toolbox containers for dev environments, Ansible on top of traditional Linux distro for config managemement.','','','','Y','Y','','','','Y','','Y','','','','* https://github.com/tweag/gomod2nix\r\n* https://github.com/DavHau/mach-nix\r\n* https://github.com/svanderburg/node2nix\r\n* https://github.com/nix-community/naersk','Y','Y','','','N','* Lack of time\r\n* Many parts seem under-documented and filled with \"tribal knowledge\" (especially cross-compilation stuff)','N','Y',NULL,'* Problems with applications downloading binaries from the Internet (especially VSCode)\r\n* Lack of quality documentation, lots of copy-pasting from random Github repos to get things working','* More effort invested into fixing broken nixpkgs packages\r\n* Better documentation, especially for \r\n* Better support for vscode extensions shipping native binaries',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'* home-manager\r\n','* nix-on-droid',''),(218,'1980-01-01 00:00:00',5,'en','470447327','A5','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','N','Y',NULL,'Too hard to get started.','Better container tooling and support for macOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'The config language was too hard.','Perhaps an intermediate language?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','NixOps and Flakes.','I really want to like NixOS but it\'s just so awkward to get started with. I have tried several times.'),(219,'1980-01-01 00:00:00',5,'en','2030944793','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Developer Environments with nix-shell','System Configuration','Building Projects','- Project generators for common setups\r\n- Have new cli be usable without flakes\r\n','asdf','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','Daily Driver','A3','','Y','','','','','','','Easy Management of Services and Desktop Environments/Window Managers via builtin modules','NixOS generations','Centralized Configuration ','A Gui installer for NixOS\r\nRemove The global flake registry','Fedora','Y','','','','','','','Y','','','SwayWM','niv\r\nhome-manager\r\nflake-utils\r\nmanix','node2nix\r\nlorri',''),(220,'1980-01-01 00:00:00',5,'en','1051954744','A2','A3','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I liked the reproducabillity of an OS, to be able to share configs through git an be able to share it between system. So when I solve an issue or atdd a feature on one system, its usable everywhere.','','','','','Y','','Y','','Y','','','','','Y','Y','','','Y','','Declarative configuration','Reproducible dev environment','Easy package testing/using through nix-shell -p without cluttering my system','Better documentation, currently it\'s fragmented, out of date or non existent.','Rust/cargo.toml, cmake with hunter, arch/pacman','','','','','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I liked the reproducabillity of an OS, to be able to share configs through git an be able to share it between system. So when I solve an issue or atdd a feature on one system, its usable everywhere.','Y','','Y','','','','','Declarative os configuration','Reproducible dev environment','Easy package testing/using through nix-shell -p without cluttering my system','Better documentation, currently it\'s fragmented, out of date or non existent.','Arch','Y','','','','','','','','','','i3','','',''),(221,'1980-01-01 00:00:00',5,'en','1868835391','A5','A3','male','','','Y','','','Y','Y','Y','','Y','Y','','Y','Y','','','Y','','Y','Y','','','','Y','','','Y','','Y','','','N','Y',NULL,'I had over 1000 generations before I stopped using NixOS for the following reasons: Upgrade process wasn\'t clear (and borked my system, which was the straw which broke my camel\'s back), packages were frequently out-of-date, many idioms were not obvious, wasn\'t a fan of the Nix language, documentation was the worst I had ever seen, error messages were *completely* unhelpful, not being able to simply follow steps in Github repos to test something became a nuisance, no built-in way to manage home directory... that\'s all I can recall at the moment.','A language change with easy discoverability and good error messages at build time would at least make me interested enough to give it another go. Also, an examples section which shows users how to do common tasks (with comments) instead of making us look at what other people have done on random Github repos would be great. Home management is stupidly vital, have it built-in.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I just answered this.','I just answered this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None, since as I stated, I no longer use NixOS.','I only really used home-manager (which without, I would have quit a lot sooner). Never got around to trying nix-flakes.','You have the right idea, but you need to find people both smarter and dumber to help you simplify every single thing about the OS, language, and ecosystem. A focus on server management would be vital, as a good system with easy rollbacks is what every single sysadmin wants, but you aren\'t going to get them to learn so many things in one go. It\'s honestly heartbreaking to see such a revolutionary idea go to waste because no one\'s been smart enough to simplify it.'),(222,NULL,NULL,'en','895417244',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(223,'1980-01-01 00:00:00',5,'en','302304522','A1','A4','male','','','','','','Y','Y','Y','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','Y','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','dev shells','huge package set','','better documentation','','','','','Y','Y','','','','','','Y','','Y','','cabal2nix, haskell.nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','declarative config','','','','','Y','','','','','','','','','','xmonad','','',''),(224,'1980-01-01 00:00:00',5,'en','392611270','','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','N','Y',NULL,'Too complicated to package lxde given too many patches needed.','Support for micro-architectural package like amd64-v3 to have better performance on newer systems.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Packaging lxde is too hard, need too many patches.','Support for micro-architecture like amd64-v3 to have better performance on newer systems.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I wish nixos supports x86_64-v3, that would be a deal breaker over many distros.'),(225,'1980-01-01 00:00:00',5,'en','1853371090','A2','A3','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Recommendation of a friend','Y','Y','','Y','','','','','Y','','','Y','','','Y','Y','Y','Y','','Repeatable builds','Declarative management of installed software, with clean removal when things are removed correctly','Rollback-able Nix environments','The community divide between Flakes and non-Flakes users','Docker containers','','','','Y','','','','','Y','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Recommendation of a friend! Interested in fully repeatable machine setup, and having all my machine configs live in a VCS repo that could be correctly used','','','Y','','','Y','','Declarative package installation, with removal meaning clean uninstallation','Comprehensive set of modules for configuring a wide variety of software','Great nginx configuration support','','','','','','','','Y','','','','','i3 + sway','Home Manager','',''),(226,'1980-01-01 00:00:00',5,'en','1536737373','A1','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(227,NULL,1,'en','572717954','A2','A2','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','Y','','','','','','Y','','Android',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(228,'1980-01-01 00:00:00',5,'en','1284778648','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I have been on and off different distros for a long time. I love trying new and interesting things.\r\nI heard about two friends using NixOS so I tried it.\r\nNever left :)','','Y','','','Y','','Y','','Y','','','','Laptop and home machine','Y','Y','Y','Y','Y','','I really love the fact that you can version control your setup through git, and revert to old versions etc. very easily. And also that I have a single place where I can actually read through everything that is installed on my machine, and I can also comment config so that I remember why I installed certain things.','Nix shells so that I don\'t have to install packages system wide when developing stuff with dependencies, it also makes spinning projects up on different machines trivial.','Nix env so that I can try out packeges before installing them, or run them once if I only need them once','I would make flake default, or at least make a work around so that you don\'t have to add the flake declaration in the config and run it before you add your flake stuff to the config.\r\nI love the idea that I can take my current config, past it in to a brand new machine, and get the exact same setup. However, now I need to first install a dummy config with:\r\nnix = {\r\n package = pkgs.nixUnstable; # or versioned attributes like nix_2_4\r\n extraOptions = \'\'\r\n experimental-features = nix-command flakes\r\n \'\';\r\n };\r\n\r\nbecause if I don\'t do this first my config failes when trying to install it.','Arch pacman','','','','','Y','','','','','','','','','','','','Y','','','N','I\'m scared of doing something improper when creating my packages.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Same as Nix','Y','','Y','','','','laptop and desktop','same as nix','','','same as nix','Arch','','','','','','','','Y','','','Sway','','','I love NixOS, keep up the great work guys! :)'),(229,'1980-01-01 00:00:00',5,'en','657861283','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Package management in haskell. Reproducability. Functional and declarative programming','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Configuration management ','Declarative environment','Very large nixpkgs repository.','The cli application and language inconsistencies.','Guix for similiar features.\r\nFedora workstation for convenience.','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I liked nix-env and wanted to step up from home-manager to a system wide configuration.nix','Y','','Y','','','','','System-wide configuration ','Containers','Size of nix-packages','cli and language inconsistencies','Guix','','','','','','','','','Y','','Xmonad','home-manager.\r\ncomma for one-time use instead of nix-shell','','Thanks for the great work. I\'m looking forward to the future of the nix-ecosystem'),(230,NULL,NULL,'en','305563328',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(233,NULL,2,'en','1953522457','A5','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I heard rumors about declarative configuration management w/ NixOS and now I\'m too invested to stop :(','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','','Package isolation','Declarative config management','','A simplified declarative DSL instead of forcing everyone to learn a bespoke functional language just to make packages or configure their system.\r\n\r\nBarring that, more concise reference documentation about the Nix stdlib.','Shell scripts and containers.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','I would have to interact with Nix users.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Oh wait I answered this in the Nix question, well, same answer.','Y','','Y','','','','','','','','','','Y','','','','','','','','','','',NULL,NULL,NULL),(234,'1980-01-01 00:00:00',5,'en','2136009048','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','','','for my own NixOS desktop','A4','Tired to maintain Ansible/Saltstack automation/homegrown script etc to deploy my home infra I\'ve casually encountered NixOS and decide that while I can\'t digest the language the idea is superb and the implementation is mature and maintained enough to be a daily driver.','','Y','','','','','','','Y','','','','Desktop','','Y','','','Y','','Declarative *full* OS config (NixOS)','Easy creation of custom ISO','nix-shell','The language. It\'s really indigestible for me... Guix can\'t be compared since it\'s far from being equally mature, but Scheme/Lisp family languages are FAR more digestible for me.\r\n\r\nIn change terms: the documentation. Nix ecosystem evolve quickly but almost anything beyond the basic it\'s not really documented enough in a way that a newcomer can simply read something like a book and have essentially all he/she need to operate NOT ONLY for basic stuff.','I can\'t say Guix since it\'s a fork of Nix at start, so I\'d use homegrown scripts and \"modern\" automation (Salt/Ansible) as I\'ve used before choosing NixOS. They have more overhead in human terms, they are less reliable, a bit more flexible, even if in general in non-positive ways, and with them an infra/a single system can be maintained in \"code\" in a similar way.','','','','','Y','','Y','','','','','','','','none','','','','imported .nix files in configuration.nix','N','I\'ve just contribute a hyper-stupid fix time ago, the main thing stopping me is the nix language itself, I can\'t make quality contribution without mastering the language. Another is the choice of being tied to GitHub: for me being tied on third party service, a single one, it a very big weakness, I do not really care how simple, nice etc GitHub is and I do not also care who is it\'s owner, it doesn\'t matter. What\'s matter is using not just a third party code host, so multiple are possible, switching from one to another is simple etc, but using specific features like PR witch means being tied to one and only one service.\r\n\r\nThese days most people do not care until something happen, like when an account get suspended for no reasons, when during an experiment the developers of a \"fully decentralized p2p system\" discover that their own system does not work without a third party services etc, but I do care, much.','Y',NULL,NULL,NULL,NULL,'A1','','','','personal Desktop, an experimental home server','A4','It\'s my Nix story, I never used Nix on some other distro/OSes, I\'ve just started with NixOS. My story in that sense is simple: I feel the need of something I can maintain at home without replicate a big infra setup. I\'ve tried few options and all are simply overburden, NixOS is simple enough to have a config tangle-ed from org-mode files, make a custom iso to be passed to ventoy and done. Nothing more, nothing less.','','','Y','','','','Desktop','Declarative configuration','Easy and quick custom iso with just a simple config and a oneliner to generate them','Nix-shell for quick testing or for unported software that demand an FHS environment with relevant deps ','Again, the nix language, substituted with some Lisp-ic one, perhaps something integrated in Emacs\r\n\r\nDocumentation. Too limited beyond the basic usage','Homegrown scripts and Ansible/Salt','Y','','','','','Y','','','','','EXWM','None...','I\'ve tried NixOps, it seems dead unfortunately but you mention it even if only one time...','Thanks :-)'),(231,'1980-01-01 00:00:00',5,'en','213736077','A2','A3','male','','','Y','','','Y','Y','Y','Y','Y','Y','','','Y','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','','','I\'d like to use arbitrary HTTP resources as flake inputs; that way all inputs of my NixOS inputs would be managed by the flake.','AFAICT GNU Guix is the only other alternative','','Y','','Y','Y','','Y','','Y','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','For one, it\'s actually much easier to use declarative configs; NixOS flattens out most of the kinks Linux has. For another, having reproducible, as-code config is in itself useful.','Y','','Y','','','','','Config-as-Code','Ease of use','Reproducibility','','','Y','Y','','','','','','','','','xmonad','pre-commit-hooks.nix','',''),(232,NULL,NULL,'en','2053865837',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(235,NULL,4,'en','1236698174','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','Y','','','','','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','home-manager','',NULL),(236,'1980-01-01 00:00:00',5,'en','1213157161','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Saw a friend using it, decided to jump into the cold water of NixOS and liked it','','','','','','only NixOS','','','','','','','','','','','','','','','','','Remove imperative packaging functions','Probably Debian\'s apt','','','','','','','','','','','','','','','Basically none as they are generally very hard to use and don\'t integrate well.','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Jumped into the cold water of replacing my OS after seeing it used by a friend.','Y','','Y','Y','','','Desktop','Reliability of expressions - Set it up once and it\'ll basically work \"forever\"','Low effort to migrate to new NixOS versions - just build it, take care of warnings/errors during build, then when it\'s convenient, reboot into it','Single source of \"truth\" about the full system in the form of configuration.nix','Change the module system to allow more flexibility with modules and have all non-system modules expose a package option to replace the default package being used','Probably Debian with APT and Ansible','Y','Y','','','','','','','Y','','','- https://github.com/NixOS/nixos-hardware\r\n- NUR','Pretty much all 2nix variants as those are often unusuable without in-depth knowledge about the details of the wrapped build systems and the projects I would like to see wrapped.\r\nAnd don\'t even start about projects that use multiple build systems...',''),(237,'1980-01-01 00:00:00',5,'en','1975291499','A5','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got frustrated with other package managers; found Nix, seemed cool. Spoiler alert: it was :)','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Lightweight development environments','Declarative package and config managment','Rich stdlib and excellent ecosystem','Better error messages and easier-to-grok traces; —i-am-a-dummy.','fpm, Ansible, … I am already exhausted thinking about it.','','','','Y','Y','','','','Y','','','','','','bundix','Y','Y','','','N','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got frustrated with other package manager; found Nix; thought it looked cool; it was.','Y','Y','Y','Y','','Y','','Lightweight development environments','Declarative package and config management','Rich stdlib and ecosystem','Easier-to-grok errors/traces; —i-am-a-dummy.','fpm, Ansible, … I am getting exhausted just thinking about it.','Y','','','Y','','','','','','Y','I3','niv, arion','',''),(238,NULL,1,'en','1213438461','A3','A2','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(239,NULL,2,'en','1974873861','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','','Y','','','','Y','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(240,'1980-01-01 00:00:00',5,'en','1791909704','A1','A4','male','','','','','','Y','Y','Y','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','As a replacement for constant issues with homebrew library updates.','Y','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Version pinning for specific packages','','','Validation closer to the issue. For example currently you can get a trace with an internal error and none of the frames coming from the code you wrote. Instead, the errors should be caught at user/nixpkgs boundary.\r\nOr even better, the goods ideas from nix could be moved to a project which does not use nix throughout but instead has packages and other options as first class objects with strict boundaries.','Alcohol','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'N','N','A lot of people having success with it with daily usage. If it requires more effort than Fedora, I\'m not interested.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I don\'t understand the expectations for nixpkgs contributions. I\'ve got security fixes, new packages, bugfixes and issues in current packages open for weeks with no response. Is there just not enough maintainers? Should I constantly poke people? Am I doing something wrong?'),(241,NULL,4,'en','7330895','A5','A3','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','Y','','Y','','','','','','','Y','','','','Y','','','','','','','','',NULL),(242,'1980-01-01 00:00:00',5,'en','684284735','A1','A3','male','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I joined a company which used Nix intensively. Nix shell for development, and VM for deployment.','','Y','','Y','','','Y','','','','','','','','Y','Y','Y','Y','','Reproducibility','Binary cache','Nix shell','I\'d like to add a type system and also a language server based on that.','For Haskell development, probably stack. For package management, probably just apt.','','','','Y','Y','','','','','','','','Y','','https://github.com/NixOS/cabal2nix\r\nhttps://github.com/nix-community/poetry2nix','','Y','','','N','It feels very hard to debug nix in general.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I joined a company which uses nix, so I started to use NixOS for better integration.','Y','','','','','','','Ease to configure','Reproducibility','Profile management (roll back)','I would like an \"configuration explorer\", which enumerates possible configurations. Currently, I often have to resort to reading the code.','Ubuntu','','','','','','Y','','','Y','','','home-manager','',''),(244,NULL,NULL,'en','1263656176',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(243,NULL,2,'en','69375747','A5','A4','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was introduced to nix in 2015, then a few years later I decided to try it out. I’ve been hooked ever since','','','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Declarative semantics','Nix Store','Reproducibility','Standardize .drv file format for integration with other ecosystems','Arch, I guess?','','','','Y','Y','','','','','','','','','','yarn2nix (moretea)\r\nMach-nix\r\n','Y','Y','','','N','Either y’all have the packages I need, or I can’t figure out how to package something so there’s nothing to contribute',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(246,NULL,NULL,'en','2092883377',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(247,'1980-01-01 00:00:00',5,'en','1259154179','A5','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','','','Nix build with cgroups (systemd slices or something) so I can limit resource usage.','','','','','Y','Y','','','','','Y','Y','','Y','','','Y','Y','Y','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','','','','','','Y','Y','','','','Y','','','','','','','',''),(248,'1980-01-01 00:00:00',5,'en','1733833378','A1','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','','','','Replace Nix Expression Language with Haskell','Guix','','Y','','Y','Y','','','','','','','','','','','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','','','','','Gnu Guix System','Y','','','','','','','Y','','','','','',''),(249,NULL,NULL,'en','2113873662',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(250,NULL,NULL,'en','1950634473',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(251,NULL,1,'en','1959930512','A5','A3','male','','Y','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(252,'1980-01-01 00:00:00',5,'en','236906710','A3','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was initially drawn in by the \"separate environments\" point, but it has gotten me into functional programming in general.','','','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','Reproducibility','Declarative package and system management','Relative program isolation (PATH and such)','I would make it have a more \"normal\" syntax','Guix with Scheme, or something ostree-based','','Y','','Y','Y','','','','','','Y','','','','I\'ve used gomod2nix previously','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I heard about the declarative package and system management and decided to try it, found it to be extremely straightforward.','Y','','','','','','','Declarative system management','Extremely up-to-date packages','','I\'d overhaul the system configuration to be more consistent, at least for the syntax. For example: declaring the use of GDM uses \'services.xserver\' even if it doesn\'t actually launch XOrg. I\'d also make it so it doesn\'t assume/need the default shell to be Bash.','Guix System, ostree-based OSes','Y','','','','','','','','','','Sway','','','NixOS is a truly great operating system, and Nix itself is a revolutionary breakthrough in the idea of environment management.'),(253,'1980-01-01 00:00:00',5,'en','1746156535','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Got fed up with arch Linux breaking on updates, so I decided to try the weird distro that let me configure everything declaratively ','','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','Declarative configuration ','Declarative package management ','Effortless rollbacks ','I would make flakes into à first-class feature, and improve documentation ','Probably a mix of shell scripts and technology like Ansible.','','','','Y','Y','','','','','','','Y','','','','Y','Y','','','N','Honestly I just haven’t had the patience to figure out how to properly add myself as a maintainer to Nixpkgs. Also, since most of my packages are for proprietary software with no stable URLs, I don’t believe I could maintain the level of reproducibility required by Nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I wanted a way to configure everything from one place, and NixOS (along with home-manager) provided the solution.','Y','','Y','','','Y','','Declarative system configuration, including all programs','','','Modules for every single thing out there. A nice, comprehensive list of vim packages.','Fedora, probably.','Y','','','','','','','','Y','','','Home-manager and Nixvim','NixOps (ended up being too complicated for my needs, and the required state made it unsuitable for me)',''),(254,NULL,1,'en','1167609724','A5','A3','male','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(255,'1980-01-01 00:00:00',5,'en','634965795','A1','A3','male','','Y','','','Y','','Y','Y','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Nix is declaratetive reproducable. Nixpkgs has programs I need, which are cuda, python, and otrher mache learning stuff. Also I have several servers to regulate. And packaging and testing programs is awesome.\r\nNix helps me with these.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','flake for project config','flake for systems config','remote build','add better debug or trace info\r\nadd better lsp and other tools for writing nix\r\nadd some compilation optimization, e.g. lto and pgo\r\nadd more manpower for github issue and pr','gentoo conda','','','Y','Y','Y','','','','','','Y','','','','mach-nix https://github.com/DavHau/mach-nix#configure-providers','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','the same as \"Why did you start using NixOS? Tell us the story.\"','Y','','Y','Y','','','','rollback','','','rollback data\r\nmore manpower for github issue and pr','gentoo ansible','Y','','','Y','','','','Y','','','','home-manager\r\nnix-direnv\r\nemacs-overlay\r\nnixgl\r\nmach-nix','','improve the state of github issue and pr, maybe change the work flow to something like linux kernel?'),(256,'1980-01-01 00:00:00',5,'en','133095674','A5','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started with NixOS on my work laptop, and eventually started to use nix for development environments with nix-shell.','Y','','','','','','Y','','Y','','','Y','','','Y','','','Y','','Declaritive reproducible dev environments','Create temporary environments for development/experimentation','Override parts of nixpkgs to solve issues when newer software has bugs','I\'d like a build system that compliments nix well and perhaps shares a cache, so incremental builds could be part of nix build. Dependencies could be extracted from source files, and handled similarly to build inputs in Nix.','Shell scrips for personal use, perhaps Ansible, as I ran into many problems with SaltStack.','','','','Y','Y','','','','','','','','','','node2nix: https://github.com/svanderburg/node2nix\r\npoetry2nix: https://github.com/nix-community/poetry2nix\r\nrust-overlay: https://github.com/oxalica/rust-overlay (not sure if that counts)','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I had been administering linux servers for a while with tools like Chef, and SaltStack and shell scrips which had many problems that Nix/NixOS seem to solve. While I used MacOS for my personal and work laptops, there wasn\'t much hardward that was interesting from Apple for a period, so I decided to use Linux again for my OS. I had been hearing about NixOS for a while and decided to give it a try based on seeing how it did a better job than those other administration tools.','Y','','Y','','','Y','','Declaritive configuration that can be saved in a version control','Create reusable modules for different configurations','Using overlays to deal with problems','I\'d like the Module system to be a little more composable, it seems that enabling a service can have a fairly deep impact enabling several other modules which intern install many other packages, and it feels a bit like altering a lot of global state making it difficult to understand the full impact of enabling something without doing a lot of tracing through the nixpkgs source code. I\'m not sure how to improve this situation but I think that would be desirable.','Probably Ubuntu, though I wanted a change from that, installing a deb that automatically starts a service before you can configure it was always a source of pain for me.','Y','','','','','','','','','','sway','home-manager','',''),(257,'1980-01-01 00:00:00',5,'en','1655294499','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','','','','','Y','','Y','','','','','','','Y','','','','','','','','Likely multiple things. ','Y','','','','Y','','','','','','','','','','','Y','Y','','','N','Time','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','','Y','','','','','','','','','Y','','','','','','','','','','sway','','',''),(258,'1980-01-01 00:00:00',5,'en','1179471476','A5','A3','-oth-','nb, also male and female are sexes not genders probably','','','','','','Y','','','','','','','','','Y','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','my laptop runs nixos','A2','to maintain my server and set up new laptops i had a creaking pile of ansible that i didn\'t like working with, embedded in some emacs org-mode documents. Now I have a bunch of nix derivations in those same org-mode documents, and it works a lot better and does more than just configure new machines.','','Y','','','','','Y','','Y','','','Y','','','Y','Y','Y','Y','','declarative declarative declarative!','micro-communities like emacs-overlay, i would absolutely never bother compiling emacs-gcc or kernel myself but now it\'s straightforward.','(binary) cache is king','i don\'t think it\'s unfair to expect a magnitude order improvement in the runtime performance of the nix language itself. it\'s a really beautiful language, but the time spent evaluating on every command is a millstone around its neck. \r\n\r\nbuild in something like flake-utils particularly eachDefaultSystem\r\n\r\nofc it\'s possible to say \"well you should just boilerplate this flake input in and it\'s fine\" but this is another problem i see: the amount of a-priori design patterns, functions, etc which are present inside of nixpkgs. the section.md does help, but browsing those sucks, and browsing the \"one big html page\" output also sucks unless you\'re some kind of goblin who keeps the nixpkgs, nixos, and nix manuals in pinned tabs. documentation of these things, more things which point to best practices in clear language would help people become less afraid/put off by learning the language and learning how nixpkgs works. recently have been watching a friend move a bunch of buildbot python over to their own nixpkgs, they would hit a stumbling point and i would say \"oh this sounds like the sort of thing that $pattern in nixpkgs would be good for\" and a lightbulb goes off in their head where a bunch of stuff clicks. we need more of those potholes paved over. perhaps i should be paving more potholes.','i\'d be an unhappy user of fedora and ansible still, maybe i\'d figure out how to be happy with silverblue. maybe copy a dotfiles repo from someone','','','','Y','Y','','','','','','','','','','my immediate response was \"what the fuck is 2nix\" -- considering my last point in \"add/remove/change\" question here... maybe i\'m just dull\r\n\r\nnode2nix\r\npoetry2nix\r\nemacsWithPackagesFromUsePackage in emacs-overlay is a 2nix imho\r\n\r\n','','Y','','i have a highly chaotic nixos configuration.nix generator which can include my own pkgs','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','i started with home-manager on fedora on my workstation just long enough to get my system encoded in nixos and to validate my thesis that nix\'s philosophy and maturity were up to my needs -- i don\'t have enough time to maintain a lot of packages -- and to extend my existing \"build system\" to generates configuration.nix etc from metadata in my org-mode notes. i was quite ready to jump off of fedora and a move to a fully declarative system is a no-brainer. I think over the last five years especially working in microservices, cloud, etc at my last job with thousands of servers in a fleet managed by a mess of puppet and docker i came to conclusions that align with the philosophy of nix, and at the same time nixpkgs has become quite mature and has nearly everything i care about packaged. \r\n\r\nThe only fedora machine left in my fleet is my personal webserver, which has been slowly coming together as I build nixpkgs for the handful of services that aren\'t packaged. And meanwhile more of them become available as the community picks up momentum. it\'s nice.','Y','','Y','Y','','','','declarative configuration, esp with home-manager multiplies my abilities','system rollbacks let me be a lot more confident with my fleet\'s deployment. running unstable becomes feasible if you can rollback without fear, especially with flake removing the need for managing non-declarative channels it\'s quite easy to manage too','nixpkgs, obviously. listen, i maintained spec files and they were a lot better than debian packaging, but i mostly don\'t need to. i guess i have like a half dozen of them and keep meaning to move them in to nixpkgs.... ENOTIME','an auto-installer or at least an auto-formatter. i use https://github.com/cleverca22/nix-tests/blob/master/kexec/justdoit.nix right now and it\'s great but i have to customize it and bake an image for each machine i install','probably whatever version of guix works with steam, i guess? guix wouldn\'t exist without nix, though, so i\'d be writing a pile of un-testable creaking ansible scripts on fedora like i had.','','','Y','','','Y','','','Y','','i3wm','morph or similar is really important. the state of nixops is sad, the rewrite to py3 has been a bit stutter-stepped and lost a lot of trust.\r\nemacs-overlay, zig-overlay, rust-overlay -- the language overlays are nice playgrounds for nixpkgs functionality','aforementioned nixops','i\'m quite bullish on the future of nix, nixpkgs & nixos but for someone who is not a github native it\'s a bit hard to not feel like an outsider\r\n\r\ni\'m a bit worried about how the community will handle new users, even as a relative newcomer, and how governance structures will come together. the github organized anarchy is beautiful to see, but it\'s also at a certain point a lot of context to keep in a single repository, and to have that community exist de-facto within that single repository\'s proprietary metadata services. \r\ni fear supply chain attacks performed through nixpkgs or any number of random 3rd party github dependencies being compromised. i don\'t know what to do about these things, though. i use the 3rd party emacs packages and archives and npm in fear too, it\'s not like nixpkgs is unique here.'),(259,NULL,2,'en','127390043','A5','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Someone was adding Azure support, I tried it, got sucked it and now I\'m trapped ;)','','Y','','','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','I use terranix to also do /better/ declarative terraform deployment','The hermetic properties of nix (with pure eval :snowflake:)','\"built from source, but with binary caching\"','the visibility of it all - when I\'m building a nixos image, it\'s trivial to do things like customize the initrd, build a one-off with a custom kernel config, etc, etc, etc.','Rewrite in Rust. Spec out the daemon properly. Go back in times and do flakes the right way. Write a better build planner / scheduler.','Don\'t make me think about such things. I don\'t know.','','','','Y','Y','','Y','','','','Y','','','','none, but I anticipate using cargo-nix-integration a lot more in the future.','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(260,'1980-01-01 00:00:00',5,'en','603633429','A5','A4','male','','Y','','','Y','','','','','','Y','','','','Y','','','','','','Y','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Haskell packages I need to use are too complex to set up without nix','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','','','','Reproducible environments','Easily sharing environments','Easy to set up dev environments','Non-root installs','Docker','','','','Y','Y','','Y','','','','Y','Y','','','','Y','Y','','','N','Lack of information and clear howtos on how to do so.','N','Y',NULL,'Complexity. Lack of simple support for outside binaries. Lack of documentation.','A large collection of howtos, in the format of \"you want to X, do it with Y\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Nix documentation is disastrously bad. Much of it is in the form of long tracts about Nix philosophy.\r\n\r\nPlease focus on simple tutorials: you want to do X, here is how. No background, no explanations, just hundreds of clear recipes.'),(262,'1980-01-01 00:00:00',5,'en','1849685835','A2','A2','-oth-','non-binary','','','','','','','Y','Y','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Somebody showed me nix-shell -p','','Y','','','','NetBSD','Y','Y','Y','Y','','','','','Y','Y','','Y','','Reproducible builds','Cross-compilation','Transient environments','Remove flakes (especially the global registry), focus Nixpkgs on bootstrappability.','Guix, pkgsrc.','','','','Y','','','','','','','','','','nix-build in a git hook','https://github.com/nix-community/bundix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Declarative configuration','Y','Y','','Y','','','','Declarative configuration','','','','Guix','Y','','','','','','','','','','sway','pr-tracker, OfBorg, nix-top','nix-darwin','We need better community management. Without active moderation (with consequences, including for committers), the loudest / most argumentative people win, and make the community less welcoming. Dismissive attitudes, victim blaming, and lack of leadership support and moderation are the biggest Nix turn-offs for people I\'ve tried to introduce to it, especially women. It doesn\'t happen often, but the examples aren\'t difficult to find, people do find them, and when they do I\'m not able to reassure them it\'ll go better next time.'),(263,'1980-01-01 00:00:00',5,'en','319334193','A1','A6','male','','','','','','','','','','','','','','','','','','','','','','','','','other','','','','','','only NixOS','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','NixOS','','','','','','','laptops','Y','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','I don\'t like GitHub','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','laptops','','','','','','Y','','','','','','','Y','','','','','Home Manager\r\nNixOps',''),(266,NULL,NULL,'en','60756679',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(264,NULL,1,'en','552493063','A3','A4','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Nixos',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(265,NULL,NULL,'en','961398323',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(267,NULL,2,'en','1429746452','A2','A3','male','','','','','','','','Y','','','Y','','','','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(268,NULL,NULL,'en','2139406166',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(269,'1980-01-01 00:00:00',5,'en','1527645594','A2','A4','male','','','','','','','','Y','','','','Y','','','','','','','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A5','Determinism; clear uninstalls; easy copying of config; unified config.','Y','Y','','','','','Y','','','','','','','Y','Y','','','Y','','home-manager','nix-env','flakes','Better documentation. Static type system. CUE. Faster feedback loop when changing config. Easier discovery of options to change. Unified handling of app plugins (e.g. for vim, Firefox, etc). Unified handling of libraries between different tech stacks (npm, Go, Python, etc, etc). GUI for searching and installing packages. Easier OpenGL integration.','Docker, Ubuntu, https://github.com/capr/mgit, 0install','','','','Y','Y','','','','','','','','','','what are \"2nix tools\"??','Y','Y','','','N','Fear of having to maintain. Bad expriences from many years ago with PRs not being merged for long time.','N','Y',NULL,'Challenges with installing software not present in Nixpkgs. Challenges with configuring some aspects of the GUI Desktop environment(s). Fear of the OS breaking after an upgrade.','I do sometimes use it, it seems in better shape recently than a few years ago. Also, flakes help with determinism and strongly reduce fear of upgrading.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager; Nix Hound','cachix; node2nix','Thank you! <3'),(270,'1980-01-01 00:00:00',5,'en','10042464','A1','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','NixOS for my own machines','A2','I\'ve used Puppet for many years to manage my own machines. Once nixpkgs became stable enough in 2021 I was able to move to a radically smaller and less complex configuration with a very similar feature set using NixOS.','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','Reproducibility','Speed, because of nixpkgs and Cachix','Simplicity, once I figure out how to do something','I\'d slowly restructure the language to be user friendly. For example, currently there are many ways to do common things, and some of those are just less user friendly than others. For example, each function taking a single argument. Either change that to any number of arguments (like basically every other language) or unconditionally take a single dictionary argument. Make \".\" work as the current directory. Make it obvious how to cache nix-shell results. Most importantly, don\'t be afraid to remove existing features to make it simpler for the vast majority of projects.\r\n\r\nPay a few dozen full-time package maintainers to add basically every package under the sun and keep them up to date.\r\n\r\nGenerate API documentation from the code with links back to the code for reference.','Puppet. It\'s much more verbose, and much more tedious to do anything non-trivial, but it does kinda work.','','','','','','','','','Y','','Y','','','','https://github.com/nix-community/poetry2nix\r\nhttps://github.com/nix-community/bundix','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Because using Nix on Ubuntu felt like a glass-half-full situation, and I wanted to learn Nix faster.','Y','','Y','','','','','Reproducibility','Safety because of the generations system','','In addition to my Nix answer:\r\n\r\n- Better garbage collection (such as boot menu entries)\r\n- Better nixpkgs testing, to avoid any package breakage\r\n- I\'d probably change to a rolling release with no \"stable\" points, since in my limited experience with Arch Linux it\'s much more stable than big bang updates.','Arch Linux, my daily driver for the last few years.','Y','','','','','','','Y','','','','','',''),(271,NULL,NULL,'en','1327511225',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(272,'1980-01-01 00:00:00',5,'en','1717192576','A5','A4','male','','','Y','','','Y','Y','','','Y','','','','','','','Y','Y','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Originally as a replacement for homebrew that worked more consistently on both Mac and Linux so that I could guarantee the same version of unison on both sides, because it\'s incredibly picky about both its own version as well as the version of the ocaml compiler used.','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','Repeatability','Customization (e.g. being able to override a package)','Separation (e.g. using direnv+nix-shell to have virtualenvs for every language)','Probably improvements in the deployments space. I use nixops and it\'s much better than other configuration management schemes I\'ve used, but I can\'t imagine trying to use it with a sizable team in a production environment. I\'ve also looked at morph and deploy-rs and probably a few other things and they don\'t seem to solve the larger-scale issues.','I had been using homebrew on Mac, and a variety of Linux distributions, mostly managed by Ansible.','','','','','','','','','','','','','','','I\'ve tried to use some of the nodejs ones with varying success. And I think some of the python ones, but it\'s been a while.','Y','','','I have local package definitions that my modules can refer to.','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Wanting to get the benefits I got from nix+home-manager on a higher level.','Y','','Y','','','','','Repeatability','Customization','Ease of upgrade','uhhh. deployment as I mentioned in the last one I guess. Not sure that actually applied to Nix as a ... package manager? Language? Unsure now what the prior page was supposed to be for','I used to use Ubuntu and Fedora','Y','Y','','','','','','','','','Pretty much entirely headless. I have a setup on my Windows machine with hyper-v and x410, but it\'s just for emacs with no (linux-side) WM.','','I think I lightly tried flakes at some point but didn\'t understand them. Hoping for better documentation as it stabilizes.',''),(273,NULL,3,'en','1982031310','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Because I was tired with the difficulty of managing things. ','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','nixos modules','reproducible','large number of packages available','I would make flakes the default since the beginning.','Guix but Guix wouldn\'t be possible without Nix. Probably very fragile bash scripts.','','','','','Y','','','','','','','','','','','Y','Y','','','N','All the packages I need are already there. I have no need.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Heard about its benefits on some link aggregator. Decided to try it after being frustrated with Arch Linux.','Y','','Y','','','','','modules','reproducible','large package repository','improve documentation','fragile bash scripts','Y','','','','','','','','','Y','','','',NULL),(274,'1980-01-01 00:00:00',5,'en','2079135742','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','In wanted arch with a rollback button','','Y','','','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','drone','yarn2nix (might need a yarn2 version)\r\nCrate 2nix\r\nCrane\r\n','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted arch with an undo button','Y','Y','Y','Y','Y','Y','','','','','','','Y','','','Y','','','','Y','','','sway','Home manager','','Be excellent to each others'),(275,'1980-01-01 00:00:00',5,'en','917525107','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','N','N','Good docs, finalized design, less broken setups & horror stories. Debian still seems to work more stable than hacking your setup/buildprozess into an under-construction language',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(276,NULL,NULL,'en','461149749',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(277,NULL,1,'en','1666532173','A5','A5','male','','','','','','','','','','','','','','','','','','','','','','','','','Engineering Manager','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(278,'1980-01-01 00:00:00',5,'en','1132237053','A3','A4','male','','Y','','','','','','Y','','','Y','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(279,NULL,1,'en','1519804216','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(280,NULL,1,'en','550391125','A5','A4','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(281,'1980-01-01 00:00:00',5,'en','268993338','A5','A4','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','tried nixos for the declarative, functional configuration','Y','Y','','','','','','','Y','','','','','Y','Y','','','Y','','atomic upgrades','declarative configuration','portability to macos','1. make it easy to run binaries compiled on non-nix systems\r\n2. improve documentation\r\n3. add a channel that points to latest channel (like /stable as alias to /21.11 but will update later)','guix would be great if it worked on macos','','','','','','','','','','','','','','','','','','','','N','lack of documentation, coding conventions, clear process','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','Y','','','','','bspwm, mate','','',''),(282,NULL,2,'en','1500581681','A5','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to make my shell scripts more reproducible.','Y','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Declarative system management','Reliable configuration rollback','Relatively easy build language','A way to use a flake with nix develop without copying the whole repository to the nix store. It makes it incompatible with large monorepos.','A combination of Debian, Saltstack, Joey Hess’ Propellor, and ad-hoc scripting.','','','','Y','Y','','','','','','','Y','','','https://github.com/tweag/gomod2nix','Y','Y','','','N','Nothing, just hasn’t happened yet',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(283,'1980-01-01 00:00:00',5,'en','307395163','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','I decided to try NixOS and almost immediately started having to learn Nix. But I was a professional Haskell developer for a while, so it wasn\'t a huge leap for me.','','Y','','','Y','','Y','','','Y','','','','','Y','Y','Y','Y','','','','','I\'d add static types and more development aids to Nix. The nixpkgs repo has so much code; having better support for understanding large codebases written in this language would be a huge deal.\r\n\r\nPut another way, I\'d focus on UX for the Nix language, like the kinds of things the Rust folks keep working at: good error messages, IDE integration, etc. I think static types could help those efforts, or I wouldn\'t bother listing that as a goal.','I started building my own Nix-like thing in 2009, so I guess I\'d get back to that eventually.','','','','','','','','','','','','','','','This question was confusing because I wasn\'t sure what \"2nix\" referred to, but I guess you mean these:\r\nhttps://github.com/oxalica/rust-overlay\r\nhttps://github.com/nix-community/poetry2nix\r\n\r\nAlso, occasionally bundix and cabal2nix.','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I\'d been meaning to try NixOS for a while, so when I got a new laptop I decided to give it a try, and pretty quickly decided that it was what I really wanted a Linux distro to be. I\'d been using Debian for close to 20 years before that.','Y','','','','','','','','','','I\'d improve documentation. The NixOS manual is great, but there are so many undocumented tricks and insights I\'ve found necessary for daily use.\r\n\r\nI\'ve had the idle thought that, with all the autogenerated information out of the NixOS module system, some sort of interactive typed configuration editor might be feasible and useful.','I started building my own Nix-like thing in 2009 and wanted to make a distro from it. If NixOS didn\'t exist I guess I\'d go back to that project eventually.','Y','','','','','','','Y','','','','https://direnv.net/\r\nhttps://github.com/nmattia/niv\r\nhttps://github.com/nix-community/lorri\r\nhttps://github.com/bennofs/nix-index\r\n','','I hope you get helpful insights from this survey! Nix and NixOS are great, and I look forward to seeing them get ever better.'),(284,NULL,3,'en','523569047','A6','A2','male','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','Y','','','Y','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(285,NULL,1,'en','1571362321','A2','A3','male','','','','','','','','','Y','','Y','','','','','','','','','','','','','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(286,NULL,4,'en','1616982361','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(287,'1980-01-01 00:00:00',5,'en','531501973','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Prior to NixOS I had been using Arch on all my computers (and the computers of family members I managed). I always dreaded reinstalling the OS or doing any complicated system configuration because I knew it would eventually break and by then I would have forgotten what files I put where and how it all works. So then I started using Ansible to manage my Arch system, which was an improvement because now this all lived in Git and at least I\'d know what files I have touched and what files are managed. Still, I hated running it and maintaining it since it was slow and broke often, so I wouldn\'t put everything into it. Plus regardless of how well I did my Ansible stuff, a kernel update could break booting at any time, requiring me to dig out that old USB drive with Arch on it so I could arch-chroot and fix my system somehow.\r\n\r\nEventually I heard about NixOS and how literally everything goes into a configuration file and it creates boot entries for each system generation so if something goes wrong I can just boot into the previous generation and I was sold. I installed NixOS on my laptop and Nix on my Arch desktop.','Y','Y','','','Y','','Y','','Y','Y','Y','','','','Y','Y','','Y','','Declarative system or server configuration/management','Declarative environment management','Build and package software','Build on a more common programming language that has typing so we can have IDE support (types, go to definition, autocomplete, etc.). Also change the name, since people often use \"*nix\" when talking about Linux and Unix in general so searching for anything is hard. I often have to experiment with using \"nixpkgs\" or \"nixos\" in the search, even if my search is about the language. Also on the topic of naming, the language, the package manager, and the OS kinda have different names but kinda not.','Arch + Ansible I guess.','','','','Y','','','','','Y','Y','Y','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Prior to NixOS I had been using Arch on all my computers (and the computers of family members I managed). I always dreaded reinstalling the OS or doing any complicated system configuration because I knew it would eventually break and by then I would have forgotten what files I put where and how it all works. So then I started using Ansible to manage my Arch system, which was an improvement because now this all lived in Git and at least I\'d know what files I have touched and what files are managed. Still, I hated running it and maintaining it since it was slow and broke often, so I wouldn\'t put everything into it. Plus regardless of how well I did my Ansible stuff, a kernel update could break booting at any time, requiring me to dig out that old USB drive with Arch on it so I could arch-chroot and fix my system somehow.\r\n\r\nEventually I heard about NixOS and how literally everything goes into a configuration file and it creates boot entries for each system generation so if something goes wrong I can just boot into the previous generation and I was sold. I installed NixOS on my laptop and Nix on my Arch desktop.','Y','','Y','Y','','','','Declarative system configuration','Boot into different generations','Overlays allowing me to update my system but still pin or fix particular packages','Secrets management','Arch + Ansible','Y','','','','','Y','','Y','','','','home-manager, nixpkgs-review, alejandra, vscode-nix-ide, nixos-generators, oxalica rust overlay','nixfmt, nixpkgs-fmt',''),(288,NULL,1,'en','415402120','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(289,'1980-01-01 00:00:00',5,'en','110514025','A3','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(290,'1980-01-01 00:00:00',5,'en','1464929401','A1','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','N','Y',NULL,'complexity. the nix language is a huge hurdle. I just want to install some packages, this seems like a straightforward thing to do, and I like the promises of Nix/nixos. I just can\'t dedicate the hours to learn to use it properly.','Dropping or drastically simplifying the nix language and using something closer to a configuration format or build format people are actually familiar with',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'poor documentation','better documentation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(291,'1980-01-01 00:00:00',5,'en','2025775944','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','','Y','','','','','','Y','','','Y','','Reproducible builds','Complete system configuration','','I would have the Nix community aligned around a clear plan for future developments, e.g. flakes, content-addressable derivations, etc. I would have the Nix team consider user experience to be a key priority.','Homebrew, Docker, dotfiles','','','','','','','','','','','Y','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A2','I wanted to declaratively set up some servers.','','','Y','','','','','','','','','','','','','','','Y','','','','','','','',''),(292,'1980-01-01 00:00:00',5,'en','1108707652','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','When I started using NixOS. Sort-of had to.','','Y','','','Y','','Y','','Y','','','','','','Y','Y','','Y','','Decently reproducible environments.','','','I\'d improve nixpkgs. Having a poorly-document, haphazardly built library is a bit of a drag when it\'s pretty much the \"standard library\" of Nix.','Probably Alpine. Maybe Ansible.','','','','Y','Y','','','','','','','','','','','','Y','','','N','Lack of time. Lack of willingness to try too hard, there\'s plenty of other stuff I\'d rather do instead of fiddling with computer infrastructure.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','When someone else had it on their laptop, I figured I\'d give it a try. Using anything else for my personal devices feels strictly worse now. I\'m trapped.','Y','','Y','','','','','Reproducible laptop install.','Decently easy to test stuff that\'ll go on a server on my local machine (though not always possible).','','','I assume Guix wouldn\'t exist. So probably Alpine. Maybe OpenBSD.','Y','','','','','','','Y','','','','','direnv integration.',''),(293,'1980-01-01 00:00:00',5,'en','1684685691','A5','A4','male','','','','','','','Y','','','Y','Y','Y','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend of mine who is a professional Haskell programmer convinced me to give NixOS a try on my new Linux work laptop in 2018. It was rough at first, but I haven\'t looked back. It\'s only gotten better as I\'ve learned more and more about how it works.','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','Painless consistent rollbacks','Reproducible builds with Flakes','Self-contained dev environments for any language','Make Flakes (or something like it) \"the way\".','Not sure what I would replace Nix itself with.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','My additions have been personal projects and version pinning (mostly changing versions to get a newer one while waiting for an update in Nixpkgs), nothing that would need to be put into Nixpkgs. Maybe some day.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend of mine who is a professional Haskell programmer convinced me to give NixOS a try on my new Linux work laptop in 2018. It was rough at first, but I haven\'t looked back. It\'s only gotten better as I\'ve learned more and more about how it works.','Y','','Y','','','','','Painless simple rollbacks','Reproducible system configurations with Flakes','Unified configuration for all my NixOS systems. Having one configuration repo that makes all my machines be configured roughly the same.','Better documentation. It took me until this year (and I started in 2018) to get to where I feel like I know exactly what is happening in a system configuration build. I\'d also like a good way to look up library function definitions. I\'m used to being able to easily navigate a codebase using IDEs like the ones from Jetbrains and not having anything near that makes it hard to work with. Maybe a LSP server for Nix and Nixpkgs?','Not sure, some other distro. I haven\'t thought about it.','Y','','','','','','','','','','herbstluftwm','I use cachix, but only for nix-community. Not much interaction there.','Nothing that I can think of.','I love NixOS. I don\'t really understand the complaints about the Nix expression language itself. \r\n\r\nThat said, it\'s taken me from 2018 until 2021 to have a good mental model of how system configurations work. I think somehow I missed the description of how modules work. I\'m still not sure of some things like, if I have a project that has a `flake.nix`, what\'s the right way to refer to it from a Nixpkgs derivation and build and install it?\r\n\r\nI think how things like `nixos-rebuild` works aren\'t clear, and sometimes it\'s not clear what arguments are passed or are available in a system configuration module.\r\n\r\nSo I feel like the documentation and onboarding side of it could use some work. It\'s something I\'ve considered trying to tackle myself, but I don\'t have all the answers. I\'m not sure the Nix Pills do the best job, but maybe they\'ve improved. It\'s been a while since I read them.'),(294,'1980-01-01 00:00:00',5,'en','1430542057','A6','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Got sick of being afraid of updating my OS because I had too much important stuff to lose from one bad update turning up black screen.','','Y','','','','','Y','','Y','','','Y','','','Y','','Y','Y','','Atomic rollback','Declarative configuration','Easy to read package derivations','Remove Nix the language. Its UX is very foreign from anything else I know. I would NOT replace it with TOML/YAML etc. After using Nix I now understand why turing-complete language makes sense here.','Docker','','Y','','Y','Y','','','','','','','','','','Cargo2Nix, CL2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Got sick of being afraid to update my machine.','Y','','Y','','','Y','','Atomic rollback','Declarative configuration','Easy to read examples from other people','Make the documentation nicer and more Emacs-like.','Fedora Silverblue','Y','','','','','','','','Y','','','Emacs-overlay from Nix-community','NixOps, Morph, other deployment tools.',''),(295,'1980-01-01 00:00:00',5,'en','726708928','A2','A3','male','','','','','','','Y','','Y','','','','','','','','','','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','','','Y','','','','','','','Y','Y','','','','Y','','','','Y','','','','','- add Better progress indicator (what each job is doing)\r\n- add TUI (e.g. for store operations)\r\n','','','','','','','','','','','','','','','','','','','','','N','Time allocation failure.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','','Y','Y','','','','','','','','','Y','','','','','','','','','','','','',''),(296,NULL,1,'en','1422500948','A5','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(297,'1980-01-01 00:00:00',5,'en','1376882986','A5','A2','male','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I started using Nix because I started using NixOS.','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','nixpkgs','nix-shell','flakes','Improve documentation coverage and findability. Many times, in order to figure out how to do something you often have to search for a public repository that happens to do the thing you want and end up reading lots of Nix code, because the thing is undocumented or you didn\'t know the keywords to find the thing in one of the manuals. This has become less of an issue as I\'ve become more experienced, but it\'d still be really nice to have ArchWiki levels of documentation accessibility.','apt and yum','','','','Y','Y','','','','','','','','','','https://github.com/nix-community/poetry2nix\r\nhttps://github.com/nix-community/yarn2nix','Y','Y','','','N','I\'m not really sure what the process is or where to even start. When I do run into issues, it\'s usually pretty easy to create a temporary overlay until the issue is resolved by someone else.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I started using NixOS because I heard it could manage system configuration in a way that is declarative, version controllable, and revertible. That sounded appealing to me, so I installed it on a VM and started messing with it until I slowly got it how I wanted. After a few months, I made the jump to install it bare metal on my desktop and laptop, replacing Manjaro. I later started using it to replace some Ubuntu servers and on my work Mac too.','Y','','Y','','','','','Declarative system configuration','Version controllable','Roll backs','Improve documentation coverage and findability. Many times, in order to figure out how to do something you often have to search for a public repository that happens to do the thing you want and end up reading lots of Nix code, because the thing is undocumented or you didn\'t know the keywords to find the thing in one of the manuals. This has become less of an issue as I\'ve become more experienced, but it\'d still be really nice to have ArchWiki levels of documentation accessibility.','Ansible and a bunch of handmade bash and Python scripts on top of Manjaro (desktop) and Ubuntu (server)','Y','','','','','','','','','Y','','https://github.com/nix-community/home-manager\r\nhttps://gitlab.com/simple-nixos-mailserver/nixos-mailserver\r\nhttps://github.com/LnL7/nix-darwin','','Keep up the good work :^)'),(298,'1980-01-01 00:00:00',5,'en','1955478030','A5','A3','male','','','Y','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Experimenting for personal projects followed by bringing it to work to build container images with large dependency trees for batch image processing','Y','Y','','','Y','','Y','Y','','Y','','Y','','','Y','Y','Y','','','buildLayeredImage','overlays / easy customization to remove unused dependencies from packages','reproducible / hermetic builds','1. Improve docker building support (e.g. better layer splitting for > 125 layers, improve speed vs piping to docker load)\r\n2. Finish content-addressed store\r\n3. Tools or funding to make nixpkgs PR reviews faster \r\n4. Easier integration with language package manager ecosystems\r\n5. Improve documentation','large messy dockerfiles','','','','Y','','','','','','Y','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','','','','Y','','Declarative configuration','','','Better documentation\r\nImprove ARM64 / embedded board support','bitbake','','','','','','','','','','','','direnv','',''),(299,'1980-01-01 00:00:00',5,'en','177714946','A6','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Turned out to be the best way to manage Haskell projects.','Y','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','','Y','','Flakes','Profiles','Channels','Fix the Nix language','Guix','','Y','Y','Y','Y','','','','','Y','Y','','','','- dream2nix: https://github.com/DavHau/dream2nix\r\n- machnix: https://github.com/DavHau/mach-nix\r\n- crate2nix\r\n- crane: https://github.com/ipetkov/crane','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I wanted to manage my local machine\'s dotfiles using home-manager. I wanted to simplify my home-server\'s configuration.','Y','','Y','','','','','Declarative configuration management','Abstraction over systemd','Ability to rollback changes','','Guix','Y','','','','','','','','','','2bwm','- statix: https://github.com/nerdypepper/statix\r\n- rnix-lsp: https://github.com/nix-community/rnix-lsp\r\n- nixpkgs-fmt: https://github.com/nix-community/nixpkgs-fmt\r\n- alejandra: https://github.com/kamadorueda/alejandra','- niv: https://github.com/nmattia/niv\r\n- naersk: https://github.com/nmattia/naersk','Thank you!'),(300,NULL,0,'en','1220122142','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(301,'1980-01-01 00:00:00',5,'en','2120809973','A5','A3','-oth-','Nonbinary','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Docker pissed me off one too many times','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','','Reproducibility','Security','Predictability','I\'d have a grafting tool to allow openssl/glibc patches without having to rebuild the world','Probably guix','','','','Y','Y','','','','','','','','','`nix build` from a webhook','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I got nerd-sniped into it from a friend and now it has ruined me to the point that other distributions are brittle and hard to reason about.','Y','','Y','','','','','Reproduciblity','Declarative Config','Pushing system closures','A security team and mailing list so that I could use it at work in production. An LTS branch wouldn\'t hurt too.','Probably Arch or something','','','Y','Y','','Y','','Y','Y','','','','','I hope this survey helps to make Nix and NixOS better for everyone :)'),(303,'1980-01-01 00:00:00',5,'en','1398025246','A6','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','N','Y',NULL,'Lack of comprehensive and official documentation, too many options for performing a specifc tasks (such as installing a package), the package manager was slower than I like (similar to dnf)','Comprehensive and official documentation, faster package management, lesser learning curve',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','The same issues outlined for the Nix package manager. Providing `#!/bin/bash` would also be a good step.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(302,'1980-01-01 00:00:00',5,'en','857546489','A5','A3','male','','','','','','','','','','','Y','','','Y','','','','','','','','','','','','Y','Y','','','','','N','Y',NULL,'I use it occasionally to set up software in a home lab for personal use, but documentation is mostly vague and i need to rely on word of mouth help or a lot of trial and error','Better documentation would make me more eager to use it',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Userspace maturity and more documentation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(304,NULL,1,'en','971435783','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(305,'1980-01-01 00:00:00',5,'en','1084852064','A5','A3','male','','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A2','The cofounder for our startup introduced me to Nix and it is the only linux distribution that hasn\'t bricked itself upon installing nvidia graphics drivers. We use it whenever possible to ensure our internal projects are reproducible and are trying to figure out a way to set up distributed nix profiles for our employees. We also use it on all of our company cloud VMs by taking advantage of the declarative system configuration.','','','','Y','Y','','Y','Y','','Y','','','','','Y','Y','Y','Y','','Declarative and deterministic system configuration','Declarative and deterministic package management','','I would rip out the entire configuration language and replace it with something that isn\'t demonic filth fished from the depths of hell itself. The issues the configuration language has are too numerous to list, but the top issues are lists separating things by space instead of by comma, and when separating arguments for a function definition, in a file it uses a comma, but when defining it, it uses semicolons! WHY?!','Windows (or ubuntu if I absolutely had to run a linux based program)','','Y','','','Y','','Y','','','','','','','','','','Y','','','N','Your fucking configuration language','N','Y',NULL,'The configuration language','Fixing your fucking configuration language.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','','FIX THE CONFIGURATION LANGUAGE FOR THE LOVE OF GOD'),(306,NULL,3,'en','620341951','A3','A3','-oth-','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','','N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(307,NULL,1,'en','1730039686','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(308,'1980-01-01 00:00:00',5,'en','214436496','A3','A3','male','','','','Y','Y','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','N','Time to toy with that. Packaging a missing software.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','To stop worrying about tracking all my installed software in case of re-installing it.','','','','','','','Work machine','reproducibility','number of packages','','Remove the ; from the nix syntax\r\nImprove the documentation (specially in other languages like spanish)\r\nGUI installer','Debian, probably with guix','Y','','','','','','','','','','i3','','Popcorn Time\r\nMVT https://github.com/mvt-project/mvt','Thank you for make and mantain NixOS'),(309,NULL,1,'en','1011187906','A5','A3','male','','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(311,NULL,1,'en','1435396754','A5','A2','fem','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','Y','','','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(312,NULL,NULL,'en','1675486451',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(313,NULL,NULL,'en','1129002549',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(314,NULL,1,'en','136256449','A5','A4','fem','','','','','','','Y','','','','Y','','','','','','','','','','','','','','Developer, libraries / frameworks','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(315,NULL,2,'en','1170112423','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','','Y','','','','','Y','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(316,'1980-01-01 00:00:00',5,'en','1509718946','A2','A6','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','','',''),(317,'1980-01-01 00:00:00',5,'en','711933194','A5','A2','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted more powerful consistent environments across my machines. My git-based dotfiles setup worked, but required manual work on each new machine. I also had to install all the programs by hand every time. Nix solved this for me.','','Y','','','','','Y','Y','Y','','','','','','Y','','','Y','','Declarative system specification','Reproducibility (hermeticity not a top priority for me)','Portability in non-NixOS environments','Please use a configuration language that the world understands. Please present better onramp documentation. It took me a year to learn to even use Nix fluently for personal needs. I nearly gave up several times, but ended up learning enough at work to take another shot.','probably guix','','','','','','','','','','','','','Y','','','Y','','','','N','i don\'t understand the language or builds enough. feels like i should use the functions that auto-build, but when the environment differs somewhat from the standard default environment, i\'m not sure how to proceed.','N','Y',NULL,'i needed to run binaries that were not packaged in nixos. i could not figure out how to setup a fhs env that supported these binaries','a feeling of confidence in being able to conveniently run binaries outside of nix ecosystem. i still don\'t know how to run semgrep in nix unless i whip out docker',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(318,NULL,1,'en','710131394','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(319,NULL,4,'en','779129052','A1','A2','male','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','Y','Y','Y','','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','A need for Nix that Guix couldn’t solve, be it in non-free software or working with others that prefer Guix. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Na','NA',NULL),(320,'1980-01-01 00:00:00',5,'en','385108568','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Came for its first class support of Haskell (using nix-shell under Debian back then).','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Customizable','Declarative','Reproducible','The language. I would use a stronger type system to catch errors and remove some oddities. Maybe just Haskell tagless-final embedded DSL, leveraging existing tools and knowledge about Haskell. I know it would be much slower, but still. I prefer correctness and sane debugging over speed.','Ansible','','','','','Y','','','','','','','','','','cabal2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Configuring a new computer. This was a natural move after using nix-env under Debian for a few months.','Y','','Y','Y','','','','Customizable','Declarative','Reproducible','I would add a graphical user interface to generate a configuration.nix so that mere mortals can benefit from NixOS without depending that much on a geek to help them.','Debian','Y','','','','','Y','','','','','Xmonad','home-manager','nixops','Thanks for your work.'),(321,NULL,NULL,'en','1972558843',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(322,'1980-01-01 00:00:00',5,'en','1523780978','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','Y','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Curiosity at first. Following the footsteps of somebody mone daring than I was, who confirmed NixOS was usable day to day.','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','Lower day-to-day maintenance','Rollbacks','Soo many pre-packaged software and services in Nixpkgs','I\'d make channels and all pre-flakes stuff disappear overnight, closing this parenthesis. I\'d add way more documentation, mostly example-based, and publish best practices docs.','pacman','','','','','Y','','','','Y','','','','','','cabal2nix ','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Curiosity','Y','','Y','','','','','','','','','Archlinux or Gentoo','Y','Y','Y','','','','','','','','XMonad','','nixops','Keep going\r\n\r\nAlso, seek better implantation in software companies, for this some guarantees are often sought like solid partners and vetting, support for SELinux and some other nonsense.'),(323,'1980-01-01 00:00:00',5,'en','348583740','A5','A3','male','','Y','','','Y','','Y','Y','Y','','Y','','','','','','','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(324,NULL,1,'en','1258033503','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(325,'1980-01-01 00:00:00',5,'en','2087242902','A1','A3','male','','','','','Y','','','','','','Y','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Mostly for NixOS','Y','Y','','','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','Reproducibility/declarativity, they feed into each other so I\'m not ranking them','','Street cred','I love the Nix language, I love the core ideas of Nix, but I think everything else kind of sucks. Documentation and the CLI interface are fractured and inconsistent, flakes are amazing in theory but meh in practice, nixpkgs can be extremely convoluted. I would fix those, if only they weren\'t very difficult problems.','whatever mac people use these days','','','','','Y','','','','','','Y','','Y','','haskell.nix, if that counts','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I had been developing on OS X, which was nice but ultimately too closed. Linux would need a very good value proposition to be worth the comfort I\'d be sacrificing, Nix was that value proposition.','Y','Y','Y','Y','Y','Y','','Same as Nix, just for an OS','','','','MacOS','Y','','','','','','','','','','xmonad','Cachix, direnv-nix, haskell.nix','Niv',''),(326,NULL,3,'en','374799057','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(327,NULL,1,'en','1510952193','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(328,'1980-01-01 00:00:00',5,'en','259446178','A6','A3','male','','','','','','Y','','','','','Y','','','','','','Y','Y','','','','','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','Y','','Y','','Y','','','','','Y','Y','','Y','Y','','system immutability','nix-shell','flakes','would add a better documentation','guix','','','','Y','Y','','Y','','Y','','','','','','gomod2nix: https://github.com/tweag/gomod2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','Y','Y','','','','','','Y','','','','','',''),(329,'1980-01-01 00:00:00',5,'en','2073431987','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','','','','','','','','','Y','Y','','Y','','','','Y','','','','crate2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','Y','','','','','','','Y','','','','Y','','','','','','awesomewm','','',''),(330,'1980-01-01 00:00:00',5,'en','880181029','A2','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Because science need reproducibility and our previous solution wasn\'t cutting it.','','Y','','','','','Y','','','Y','','','','','Y','Y','Y','Y','','Reproducibility ','Flakes','','Remove bislang for something battle hardened (I have had the interprete segfault on me). Rework the standardlib so all the map functions compose better.','A home grown solution with similar goals','','Y','','Y','Y','','','','','','Y','','','','Mach-nix https://github.com/DavHau/mach-nix\r\nNaersk https://github.com/nix-community/naersk','','Y','','','N','Haven\'t found a need for it yet. Slow or reviews are dampening my enthusiasm.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Because my Ubuntu stopped supplying updates and could not be upgraded in place.','Y','Y','','','','','','Reproducibility ','','','','Ubuntu ','Y','','','','','','','Y','','','i3','','',''),(331,'1980-01-01 00:00:00',5,'en','796197940','A5','A4','male','','','Y','','','Y','Y','Y','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was tired of server config management that tries to rein in the chaos of imperative distributions. NixOS\'s promise of a fully (or as much as possible) declarative system with rollbacks was amazing.','','','','','','','Y','','Y','','','','','','Y','','','Y','','Hermetic builds','Reproducible builds','Very wide selection of up-to-date packages','I would hire a UX designer and make them BDFL of the project, with veto power over changes. Nix badly, _badly_ needs to become less user-hostile.','Arch linux. Package freshness and some care about reproducibility, and hope for the best with ZFS snapshotting to have rollbacks.','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','See previous answer about Nix. I started using Nix because of NixOS, to get declarative servers at home.','Y','','Y','','','','','Declarative system config','Seamless rollbacks','','Same comment as Nix, make a UX expert BDFL and let them veto terrible UI/UX. Also do UX studies with system administrators to be less operator-hostile, and standardize on core tooling for deployment rather than rely on 15 incompatible third-party tools with no obvious winner.','','','','','','','Y','','','','','i3','','',''),(332,'1980-01-01 00:00:00',5,'en','1228637288','A5','A3','-oth-','Nonbinary Trans Woman','Y','','','Y','','','','Y','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I read a blog post about it (probably this one: https://christine.website/blog/i-was-wrong-about-nix-2020-02-10 ) just as I was becoming irritated by having to reconfigure a new system, so I decided to try NixOS','','Y','','','','','Y','','Y','','','Y','','Y','Y','Y','','Y','','Declarative environment management','Declarative system configuration','Software building/packaging','Clearer, more organized documentation (it feels a bit ridiculous to have to search through both the manual and github:nixos/nixpkgs to find standard library documentation, and I\'m still not entirely sure what is and isn\'t a builtin function)\r\n\r\nBetter error messages, because, currently, they\'re usually either incomprehensible or unrelated to the actual problem\r\n\r\nStrong typing, because I think it would help alleviate both (it\'s easier to reason about unfamiliar code if you know the expected types of the inputs and outputs, and, in my experience, languages with stronger typing usually output error messages more relevant to their root cause)','Guix, probably','','','','Y','Y','','Y','','','','','','','','cabal2nix\r\nnix-cargo-integration https://github.com/yusdacra/nix-cargo-integration','Y','Y','','','N','I\'ve contributed a tiny bit to github:mozilla/nixpkgs-mozilla, but:\r\n* I haven\'t really had the time for anything more substantial recently\r\n* While I have overridden packages from github:nixos/nixpkgs to fix problems I\'d been having, I\'m not sure whether those overrides were necessary or if I was just doing something else incorrectly, so I\'m not confident that I could make a useful contribution','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I like having a declarative system configuration, because I recreate machines pretty frequently','Y','','Y','Y','','','','Declarative system configuration','Rollback','','The same things I\'d change about Nix as a language','Probably Arch','','','','Y','','','','','','','XMonad','','',''),(333,'1980-01-01 00:00:00',5,'en','1636217458','A5','A3','male','','Y','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','painless rollback','isolated declarative build/dev environments','declarative system configuration','types','silverblue. cry a lot','','','','Y','','','','','','','','','','','cabal2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','','Y','Y','','','','','','','','','Y','','','','','','','','','','xmonad','nix-direnv','',''),(334,'1980-01-01 00:00:00',5,'en','85539407','A4','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Came from Arch, found the story of \"you cannot irrevocably screw up your system\" compelling','','','','','','','Y','','','','','','','','Y','','','Y','','Declarative system configuration','Reproducibility / \"it just works\"','Share dependency pinning with other developers','The lang2nix story is horribly underdeveloped. I don\'t run Haskell, my company mostly builds Scala, but even poetry2nix worked on a NixOS machine but not on Darwin. nix-shell is a great starting point, but if I can\'t use nix to build the services, then I can\'t use Nix to build a container around it either, or think about using NixOps to run the service in production, etc.\r\n\r\nNot the Nixpkgs manual, which is a reference, not a tutorial. Not GitHub READMEs. Focus on the persona of a developer using a top 5 language on StackOverflow. For example, imagine a developer who builds a NodeJS project with TypeScript. It\'s well known that the JS ecosystem build systems are horrible, so maybe I\'m looking at Nix as an alternative. How do I get started? What friendly resource tells me what to do to get my project built with Nix? How does Nix help me run my service in production? Today, that resource does not exist. The developer experience (DX) needs a lot of work.','Maybe Guix?','','','','','','','','','','','','','','','','','','','','N','I tried, but basically, I had no idea what the hell I was doing. Something wasn\'t building right and I ran out of patience to try and get it to work, so I abandoned it.\r\n\r\nI understand enough about Nixpkgs to understand that the various functions exist to drastically (90+%) reduce the amount of code in what is already one of the largest repositories on GitHub. At the same time, the documentation is nowhere near complete. For example, I was trying to update a Go package, and the dependencies changed, so the hash of the dependencies needed to change. The documentation tells me that it\'s the hash of the dependencies but doesn\'t tell me how to get that hash. Eventually I gave up trying to find the hash and just downloaded the statically linked binary from the vendor\'s site.\r\n\r\nThere should be some way for a PR to be labeled as \"hi I\'m a newbie, I need some help\" so that the PR can be reviewed by someone who can help answer questions and build up the confidence of new contributors','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Found the \"you cannot screw up your system\" story compelling (coming from Arch).','Y','','','','','','','Declarative system configuration','Choose the system configuration from the GRUB boot list','Save system configuration in private GitHub repository for backing up','home-manager should be an official tool, integrate it better with NixOS. I am the only user on my laptop. When I do nixos-rebuild, it should rebuild my home too.','Maybe Guix?','Y','','','','','','','Y','','','','home-manager','NixOps\r\nBuilding containers / services with Nix',''),(335,NULL,1,'en','1512426867','A2','A3','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','Y','OpenBSD','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(336,NULL,1,'en','259769780','A2','A4','male','','','','','','','Y','Y','','','','','','Y','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(337,'1980-01-01 00:00:00',5,'en','947583608','A2','A3','male','','Y','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was looking for an alternative to build docker containers instead of using Dockerfiles','Y','','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Pinning all kinds of dependencies','Having a clean build sandbox to run shell scripts in','','Improve evaluation time and memory usage. Improve build sandbox instantiation time and allow to create text files with dependencies without having to create a nix sandbox.','bazel?','','','','Y','Y','','','Y','Y','','Y','','Y','','dream2nix','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was looking for an alternative to my LXC server setup. I installed nix and later switched to NixOS completely after finding about native zfs support in NixOS.','Y','Y','Y','Y','','Y','','Easiest and fastest configuration management','Well maintained nixos modules for everything','The module system','Modules should not be all imported at once. C++ implementation of the module system to improve performance.','archlinux','Y','','','','','Y','','Y','','','sway','cachix\r\nnix-update\r\nnixpkgs-review\r\nnixos-shell\r\nnixos-generators\r\n','',''),(338,NULL,NULL,'en','513806780',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(339,'1980-01-01 00:00:00',5,'en','1342457709','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The appeal of reproducibility and development shells I could share with my team. ','','Y','','','Y','','Y','','Y','','','','','','Y','Y','Y','Y','','Reproducibility ','Ease of packaging software ','User experience ','Better support for the JVM ecosystem (Java, Scala, Clojure, etc) such as management of internal dependencies and use Nix as a build tool. ','I\'d be lost... Probably Guix. ','','','','Y','Y','','','','','','Y','','','','cabal2nix, dconf2nix, elm2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It was the natural transition after using Nixpkgs for a while. ','Y','','Y','','','','','Reproducibility ','Rollbacks','ISO Generation ','User-friendly installation process (e.g. UI wizard as Ubuntu and other OSS) ','Some flavor of Debian','Y','','','','','','','','','','XMonad','nix-direnv','lorri',''),(340,'1980-01-01 00:00:00',5,'en','1003207674','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','nix-direnv','',''),(341,'1980-01-01 00:00:00',5,'en','448653376','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','The radical idea seemed interesting at the time','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Atomicity','Pinning','Binary cache','','Guix','','','','','Y','','','','Y','','Y','','','','Cabal2nix','Y','Y','','','N','I do the occasional issue and pull request, but otherwise it\'s so complete and stable that there are no low hanging fruit','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','The idea seemed interesting','Y','Y','Y','Y','','','','Atomicity','Pinning','Binary cache','','Guix','Y','','','','','','crops','','','','xmonad','Home-manager\r\nNix-du','',''),(342,NULL,NULL,'en','1471856258',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(343,'1980-01-01 00:00:00',5,'en','1901250200','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','My interest got piqued after getting tired of software updates breaking other software in unforeseen/uncontrollable ways (like changing libc version).\r\n\r\nSo a year or so ago I started out with NixOS on a laptop. Back in October I got to install it on my server. Thereafter followed learning Nix flakes and converting the rest of my laptops/desktops/servers to flaked NixOS/home-manager. ','','Y','','','','','Y','','Y','Y','','','','','Y','','','Y','','Hermetically sealed software/versions. ','Fully declarative/versionable OS/OS settings. (This also applies to home-manager, albeit to a lesser extent). ','The ability to configure whatever you\'d want. ','More documentation aimed at lowering barrier of entry, such like this PR: doc: https://github.com/NixOS/nixpkgs/pull/145011','Dotfiles of some sort/flavor','','','','Y','Y','','','','','','','','','','https://github.com/nix-community/naersk and derivatives\r\nhttps://github.com/nix-community/poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','See the nixpkgs story ','Y','','Y','','','','','See the nixpkgs answers','See the nixpkgs answers','See the nixpkgs answers','See the nixpkgs answers','Dunno tbh. ','','','','Y','','','','','','','Sway ','','NixOS for Raspberry Pi',''),(344,'1980-01-01 00:00:00',5,'en','1233220982','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','Y','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Nix plus direnv = easily synced dev environments','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Reproducible declarative environments','Can add/modify packages easily','Rollbacks','Replace language with something strongly typed.','Docker probably','','','','Y','Y','','','','','','','','','','Cabal2nix','Y','Y','','','N','I don\'t understand the architecture and what is actually wante.d in the repo(vs just my personal additions)\r\n\r\nI have no idea what level of testing is expected\r\n\r\nI\'m having a hard time generalizing my additions so they\'re not specific to me.\r\nWhen I get errors from the depths of nixpkgs i usually give up or randomly change things until it works.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Wanted declarative home server config','','','Y','','','','','Declarative system config','Rollbacks','','Better did how different settings fit together. Individual die are good, but it\'s hard to grasp the bigger picture sometimes','Debian with Ansible or maybe puppet','','','','','','','Scp && ssh nixos-rebuild switch','','','','None','Home-manager, lorri','Flakes, because I didn\'t understand how they worked, but I\'m looking into them again now.','Nix should quit on ctrl-c (this should go to a github issue though)'),(345,NULL,1,'en','840122367','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(346,NULL,3,'en','126042295','A5','A2','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(347,NULL,1,'en','1755496467','A4','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(349,NULL,2,'en','639823323','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','The appeal of managing system configuration','','','','','','','Y','','Y','','','','','Y','Y','','','Y','','Declarative Systems','','','Integrate home-manager als an official NixOS Project','Guix, Containers/APT','','','','Y','Y','','Y','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(350,'1980-01-01 00:00:00',5,'en','775752917','A2','A2','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Declarative ','Easy to patch applications ','Support for Linux and macOS ','Fix Garbage collector, fix sigint response ','','','','','Y','Y','','Y','','Y','','Y','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','Declarative ','Transient (remove foreign files at boot)','Flakes','Fix ZFS broken tag for unstable kernel','Arch','Y','','','','','','','','','','','nixfmt \r\n','niv,',''),(351,'1980-01-01 00:00:00',5,'en','1261173554','A5','A3','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','To manage development environments between projects. Then to manage whole machines. I like the declarative nature of it.','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','Time and experience with nix','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted declarative system management and access to the latest versions of packages. The low barrier to entry to contributing to adding software that wasn\'t already included into nixpkgs or upgrade packages myself if need be was a big plus as well.','Y','','Y','','','','','','','','','Fedora or Arch','Y','','','','','','','','','','Sway','home-manager','lorri','Y\'all are going great work, thank you to everyone who contributes!'),(352,'1980-01-01 00:00:00',5,'en','310398828','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started to have a Linux and a mac but wanted to keep the configuration the same for my terminal. Nix seemed a nice solution for that ','Y','','','','','','Y','Y','','','','','','','Y','Y','','','','Nix shell','Flake files ','Home manager','Easier user experience \r\nNix shell should not fetch the tarball all the time','Custom script’s ','','','','Y','Y','','','','','','Y','','','','Yarn2nix\r\nElm2nix','Y','Y','','','N','Company policy ','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I wanted to setup a small server on the internet. Nixos makes this a bit too easy','Y','','Y','','','','','','','','','','','','','','','Y','','','Y','','','','',''),(353,NULL,1,'en','635890772','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(354,NULL,NULL,'en','765378651',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(355,NULL,3,'en','5302188','A5','A2','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','','','','Y','','','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(356,'1980-01-01 00:00:00',5,'en','245804897','A5','A4','-oth-','It\'s complicated (femme)','','','','','','','','','','','','','','','','','','','','','','','','Privacy consultant','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I heard about it through friends in academic circles, and it was immediately obvious that its approach is the future. So I wanted to learn as much about it as I can, and the best way to do that is by using it.','','','','','Y','','Y','','Y','Y','Y','Y','','','Y','Y','Y','Y','','Hermetic builds.','Pure-functional language.','Command-line interface.','I\'m very conflicted about the \"with\" construct, which serves an important purpose but makes it harder for both humans and hypothetical static analysis tools to follow symbol references.','Debian. Or maybe guix.','','','','Y','','','','','','','','','','','crate2nix https://github.com/kolloch/crate2nix/\r\n\r\nnode2nix (I think it\'s in nixpkgs?)','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same reasons as Nix. Can\'t remember any more details.','Y','','Y','Y','Y','Y','','Declarative, system-wide configuration.','One-stop shopping in the nixpkgs repo code for anything I want to know about how low-level aspects of the system are implemented.','Full control over where package definitions and other code are sourced from and how they\'re updated.','I still don\'t understand flakes.','Probably Debian, or guix. (Same answer as for Nix.)','Y','','','','','Y','','','','','i3wm','nix-shell is great! I use it constantly. Also lorri.','I tried the experimental new unified \"nix\" command a few times but at the time, it didn\'t give me a way to get all the debug messages for failed builds that I\'m used to with nix-build, so I stopped.','A proper, comprehensive demographics section would be amazing in future iterations of this survey. Questions about culture and inclusivity would also be very welcome.'),(357,NULL,NULL,'en','1805809212',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(358,'1980-01-01 00:00:00',5,'en','1507415376','A5','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(359,'1980-01-01 00:00:00',5,'en','1489573461','A2','A4','male','','Y','','','','Y','Y','','Y','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','New notebook, a conference and a person willing to teach','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','Sandboxing','Reproducibility','','Better support for IFD','ArchLinux + Salt stack + Scripts','Y','','','Y','Y','','Y','','','','','','','Drone','Npmlock, ','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A new notebook, a conference and a person willing to teach','Y','Y','Y','Y','','Y','','Modules','Type checks','Abstractions and reusability','','ArchLinux + Saltstack','','','Y','','','','','','','','I3wm','Nix-diff, niv','Nixops',''),(360,NULL,4,'en','1407963788','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','Heard about it from Haskell people. Loved the abstract vision for how computer dependencies _could_ be managed (in theory)','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Declaratively manage whether a tool/library is some project\'s $PATH','Access bleeding edge package versions in multiple ecosystems','Apply local patches to system packages in a declarative way.','Remove nix-env. Magic caching for nix-builds (annoying to wait for a full package source build and get a compiler error). ','Docker','','','','','','','','','','','Y','','','','','','','','','Y',NULL,'N','Y',NULL,'1. Disk scratching noises on my laptop (think it was ssd twitching or some driver issue.\r\n\r\n2. NixOS doesn\'t help manage the big programs on my laptop (kde, firefox/thunderbird, spacemacs, gimp, etc). \r\n\r\n3. I can get the features using the Nix tool on a simpler stable KUbuntu instance. \r\n','When I setup my homeserver / private-servers I\'ll try to use nixos. Makes more sense for the daemons and mostly console UI. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','niv, python2nix, haskell2nix, rust2nix, yarn2nix, etc.\r\n\r\nI found it more conveineint for small projects to use nix to import the language package manager and then build the project. ',NULL),(361,NULL,1,'en','182549587','A2','A4','male','','Y','','','','','','','','','','','','','Y','','','','','','Y','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(362,'1980-01-01 00:00:00',5,'en','752644738','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','','','Y','','Y','','','Y','Y','','Y','','','','','Y','','','Y','','Declarative development environment (not covered with nix flakes)','Declarative server configuration with rollback (in case)','Fast CI caching of builds (kind of - it\'s getting harder with nix flakes as it\'s going kind of too pure)','Coupling nix flakes to Git.','Alpine Linux + Bash only','','','','Y','Y','','','','Y','','','','','','None of them - this approach is too much for my taste.','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Rollbacks','','','','Y','','','','Declarative server configuration','Rollback','','Make it slimmer.','Alpine Linux','Y','','','','','','','','','','','','','Keep going. It\'s cool. Thx.'),(363,'1980-01-01 00:00:00',5,'en','543314804','A5','A3','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','','','','','Y','','','','','','','Y','Y','','','','','Composing dotfiles for different machines','Easily trying software','','I would improve the CLI so it\'s much easier to know what to do.','','','','','','','','','','','','','','','','','','','','','N','I struggle with the language','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','Y','','','','','','','','','','','','','','','','','','','','DWM','','',''),(364,'1980-01-01 00:00:00',5,'en','15799624','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started out for personal usage out of growing interest on Lobste.rs and HN. I didn\'t have a good dotfiles solution at the time. I started out with nix-darwin / home-manager and grew my configuration to replace pretty much all of my dotfiles and Homebrew installations.\r\n\r\nLater started introducing NixOS for my own cloud VM, and an open-source project a volunteer for. (portier.io)\r\n\r\nLater started using it at work, where we run a lot of per-client servers. These are small, isolated installations that don\'t benefit from e.g. Kubernetes or Nomad. We switched these from Debian to NixOS at my direction, and manage them using Terraform plus some in-house tooling.\r\n\r\nNote that, for work, we still use Docker for actual application deployments. The barrier to entry is simply a lot lower for my coworkers.','Y','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Declarative configuration','Deterministic builds','Nixpkgs','A very low barrier to entry. Outside of NixOS, the Nix installer works well but is invasive. I feel like I cannot really tell others to just try it, when it makes a whole bunch of changes to system configuration that many developers don\'t even understand the impact of. For myself, running it the first time felt like a gamble.','Docker for deployments, Debian plus some scripts for management, Ansible for automating deployments. (Kind of what it looks like now when we have to interact with non-NixOS stuff.)','','','','Y','Y','','','','','','Y','','','','I use two that are my own creation:\r\n- https://github.com/stephank/yarn-plugin-nixify\r\n- https://github.com/stephank/composer-plugin-nixify\r\n\r\nAlso working on a third, but that\'s not yet mature:\r\n- https://github.com/stephank/yarn-nixpkgs','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Needed a better way to manage systems than Debian plus some scripts.','','','Y','Y','','','','Declarative configuration','Automated upgrades that I can integrate into my application deployments','The best systemd integration in any distribution','Some sort of configuration diff viewer, so it\'s clearer what will happen before switching to a new configuration.','Probably still Debian plus some scripts.','','','','','','Y','','','','','','nix-darwin & home-manager for my main machine','Nixops. We needed something that\'d integrate with Terraform, plus something our team could work on, not all of who have Nix installed. So we use a homegrown tool instead. (May try to open-source it at some point, but time is limited.)',''),(365,'1980-01-01 00:00:00',5,'en','202393956','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','Was frustrated with python packaging and wanted to build something similar to Nix. Luckily I can across Nix.','Y','','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Reproducibility','One tool instead of many tools for packaging / building your project','','Rewrite Nix in Rust\r\nImprove the Nix installer\r\nReorganize documentation\r\nFinish flakes :)\r\nMake it work on Windows native instead of via WSL','Docker and VMs I guess','','Y','','Y','Y','','Y','','Y','','Y','Y','Y','','poetry2nix\r\nsbt2nix\r\nnpmlock2nix\r\nyarn2nix\r\nclj2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was using Nix on OSX at the time and once I see how nice it is to manage whole system via Nix I couldn\'t resist but to give it a try.','Y','Y','Y','Y','','Y','','Declarative specification of your system','Testability of my system','Easy to share parts of my config','Have more active security team\r\nHave a subset of high quality services\r\nTutorial based documentation','Probably Arch or Gentoo. Might also end up on BSD ','Y','Y','Y','','','Y','','','','','i3','','disnix',''),(366,NULL,1,'en','123417562','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(367,NULL,NULL,'en','316782956',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(368,NULL,NULL,'en','637363137',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(369,'1980-01-01 00:00:00',5,'en','2105874776','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Wanted to have a clean home server setup. Was a great experience, so I switched to it on nearly all devices.','','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','Reproducibility','Modularity ','Ability to share configs','Removing nix-env. It commonly causes confusion and does not help new users.','Ansible','','','','Y','Y','','','','Y','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Wanted to use nix, didn\'t know the difference and disliked the idea of having multiple package manager on one system. For the rest, see \"WHT did you start using nix\"','Y','','Y','','','Y','','','','','','','','','','','Y','','','','Y','','xmonad','Tow-boot\r\nHome-Manager\r\n','',''),(370,NULL,NULL,'en','76707621',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(371,NULL,1,'en','963136017','A2','A2','male','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(372,'1980-01-01 00:00:00',5,'en','312800733','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','N','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(373,'1980-01-01 00:00:00',5,'en','1814977609','A2','A2','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I went down the functional rabbit hole :).','','Y','','','Y','','Y','Y','Y','','','Y','','Y','Y','Y','Y','Y','','Declarative system management','Rollbacks','The Nix DSL','I\'d make the daemon more language agnostic. So that it\'d be easier for other languages to use/build on Nix.','Guix ;) I took the functional pill, can\'t go back now.','','','','Y','Y','','Y','','Y','Y','Y','','','','https://github.com/nix-community/dream2nix\r\nhttps://github.com/nix-community/poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got tired of machines breaking on me when I was experimenting with them. Came across NixOS and ot seems to scratch that itch.','Y','Y','Y','','','Y','','The community, just amazing','The declarative nature of it','The Nix DSL','The Nix DSL, and make the daemon accept something more generalized. Like in the previous answer','Guix-SD ;)','Y','','','','','','','Y','','','','home-manager\r\nThe emacs community overlay\r\nnixos-hardware','None as far as I can remember','Keep up the amazing work! :)'),(374,'1980-01-01 00:00:00',5,'en','120512319','A1','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Saw Mitchell Hashimoto from Hashicorp tweet about using nixos vm on Mac.\r\n\r\nNew job had Mac instead of Linux so thought perfect to try. \r\nPorted dotfiles and never looked back. Converted Ubuntu and other machines to nixos.','','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Declarative','Flakes for composition','Open source','Make flakes first class. \r\n\r\nProvide patterns/ examples on usage, overrides, secrets, etc','Make and shell scripts','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','N','Haven\'t found need to yet but getting familiar with structure and feel could bump or contribute if want. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Saw Mitchell Hashimoto from Hashicorp tweet about nixos vm on Mac. ','Y','','Y','','','','','Declarative','Flakes for composition','Open source','Flakes first class','Ubuntu','Y','','','','','','','','','','I3','','','Brilliant thank you'),(375,NULL,NULL,'en','758603827',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(376,NULL,1,'en','1635673857','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(377,'1980-01-01 00:00:00',5,'en','1310428265','A3','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','To create dev envs for Haskell and for work.','','Y','','','','','Y','Y','','','','','','','Y','Y','','Y','','Repro system configuration','dotfile management','reproducible and cached development shells','I dont know enough to answer','dotfiles and apt-based OSs.','','','','','','','','','','','Y','','','','cabal, node, purescript (dont know if it counts)','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','To learn more nix and try home-manager.','Y','','','','','','','rollbacks','declarative system config','','','Debian GNU/Linux','Y','','','','','','','Y','','','','haskell.nix','',''),(378,'1980-01-01 00:00:00',5,'en','1409431466','A1','A5','male','','','','','','Y','Y','','','','Y','','','Y','','','','','','','','','','','','Y','','','','','','N','Y',NULL,'I coukd never get it properly working on OSX in an easy fashion - and didn\'t have the time to explore further at the time.','Portable nix is looking nice - but afaik doesn\'t work on macOs yet',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(379,'1980-01-01 00:00:00',5,'en','1710462428','A2','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Curiosity and the will to make a deep dive into functional programming.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','Universal package management','Nix language ','Ease of use','I would definitely rewrite the naming of some terms, and the documentation. What are the difference between nix shell and nix develop ? I would make plenty of real use case examples on how to use the Nix programming language, with proper explanations. In order to make adoption of nixos, I would create a basic UI installer as well.','Gentoo','','','','Y','Y','','','','','','Y','','','','composer2nix','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I wanted to learn FP and learn something else than Gentoo.','Y','','Y','','','','','Reproductibility ','Stability','Ease of use','Enable flake by default and provide a UI for installation!','Gentoo','Y','','','','','','','','Y','','','','','Thanks for making Nix ecosystem so great ! I\'m Pol Dellaiera and trying to push it for adoption at European Commission. It\'s hard to make the lines moving !'),(380,'1980-01-01 00:00:00',5,'en','2136485041','A1','A2','male','','Y','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking for solution to dependency hell at the time I used Arch Linux. Then came across Lethalman post about NixOS. I research at first, then learning the language, then start installing it into my machine using YouTube guide. I succeed and fascinated with the ','Y','','','','','','Y','','','','','','','Y','Y','Y','','','','Nix shell development isolation, both for simple \"run the app from source\" or \"full scale development\"','Python virtual env shell','Flake','- Content addressable perfect implementation, so that we can start \"download\" package like debian and rpm do.\r\n- Packages automatic discovery from build system.\r\n- Good compiler error reports and tracing like in Rust compiler.\r\n- Package \"API\" for deep integration to pip, cargo, stack, gnome software, etc.','Docker (?) but it\'s not quite solving dependency hell.','','Y','','Y','','','Y','','','','','','','','- Mach Nix (Python) - https://github.com/DavHau/mach-nix\r\n- NPM2nix - https://github.com/svanderburg/node2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same as Nix.','Y','','Y','','','','','Declarative machine definition (I git-ed my machines definition and very fast recover my machine when something when wrong with all feature intact)','Overlay to patch app','Unstable channel to test latest version','- Tools to install package from .deb / .rpm / .flathub / etc, but still in declarative manner.','Arch Linux with many tweaks','Y','','','','','','','Y','','','Pantheon','- Mach Nix\r\n- Lorri','- Flake, it is too complex and I\'m still satisfied with Nix shell','NixOS is a game changer for me. But it still rather hard to install NixOS from scratch.'),(381,NULL,NULL,'en','952410941',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(382,'1980-01-01 00:00:00',5,'en','1743380334','A5','A3','male','','','Y','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was unable to keep up with completely insane Debian packaging. I was maintaining 70 forked packages with the patches I needed, and it was extremely cumbersome compared to rebasing patches on top of nixpkgs.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','Being able to patch anything easily','Being able to rebuild everything in a standardized way','','Make it run a little faster & add a feature to automatically update the sha256 = .\r\n\r\nMake ca-derivations actually work properly when upgrading existing systems to it & fix https://github.com/NixOS/nix/issues/4493','I honestly don\'t want to think about it. Maybe an OpenSUSE or Gentoo or something else that I can completely rebuild from source','','','','Y','','','Y','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wrote a whole configuration management system for Debian and I was patching and rebuilding 70 Debian packages. I eventually realized that NixOS would do all of that better and with a superior configuration management system.','Y','Y','Y','Y','','','','','','','','','Y','','Y','','','','','','','','','','','It would be nice to be able to produce Go and Rust binaries outside nixpkgs and not have them break when the old libc gets GCed'),(383,NULL,NULL,'en','745281088',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(384,NULL,NULL,'en','1769591875',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(385,NULL,NULL,'en','968383254',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(386,NULL,1,'en','1442857194','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(387,NULL,NULL,'en','1838897823',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(388,'1980-01-01 00:00:00',5,'en','1584839663','A2','A4','-oth-','Non-binary ','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','','Y','Y','','','','','Y','Y','Y','Y','','','','','Types ','Guix???','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','Y','','','','','Still types.','','Y','','','','','','','','','','bspwm ','','morph, nixops',''),(389,NULL,2,'en','93189617','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Y','','','Y','','','','','','','Y','Y','','Nixos - declarative system configuration','','','','Probably some config management tool (Ansible, Saltstack).','','','','','','','','','','','','','','','','','','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(390,'1980-01-01 00:00:00',5,'en','1622711386','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','all time time!','A3','I\'ve started new job and, having had to clone my current setup (Ubuntu, back them) onto work machine, I\'ve started to look at options that could make it easier.','','Y','','','','','Y','','Y','Y','','','','Y','','Y','Y','Y','','nixpkgs is a fantastic source of packages, basically 99% of my stuff is installed & kept up-to-date thanks to it','Ability to `nix-build` / `nix build` on a remote machine (e.g. I usually re-build my NixOS on a home server, since it\'s faster than my laptop -- and compiling Emacs from sources takes a while!)','I like Nix Flakes - they make managing dependencies way easier than it used to be','I\'d add more documentation (although I understand it costs a lot to develop a good one); lacking docs have been the top-one source of frustration across my friends who had the opportunity to use Nix.','Carefully crafted selection of bash scripts and rsync tricks; maybe Ansible or a similar technology.','','','','Y','Y','','','','','','','','','','Question took a while to understand! As a Rust developer, I\'m using https://github.com/nix-community/naersk','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as with Nix itself - I wanted to have a reproducible home <-> work environment','Y','','Y','','','','','nixos-rebuild switch','systemd management','nixos-containers','','Ubuntu, most likely','Y','','','','','','','','','','Sway','home-manager','NixOps (feels to contrived for my relatively simple home-server setup + I\'m not totally sold on the state file idea it uses)','Have a great day & take care!'),(391,NULL,2,'en','1804653384','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','Y','','','','','','','Y','','','','','','Y','','','Y','','Declarative system configuration','Simple testing of new packages','','','Ansible on debian, VMs/containers','','','','','','','','','','','','','','','','','','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(392,'1980-01-01 00:00:00',5,'en','87971258','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','','N','N','Great GUI to manage everything',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Great GUI to manage everything',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Fedora silverblue (kinoite)','',''),(393,'1980-01-01 00:00:00',5,'en','1734474783','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Hacker News blog posts about how great it is (I forget which)','Y','','','','','','Y','','','','','','','','Y','Y','','','','Packages don\'t trample over each other','\"Instant\" shell configurations with the right packages in','The speed at which people incorporate updates into nixpkgs','\"Dynamically-typed and lazy\" combines LISP\'s static analysability with Haskell\'s debuggability, it\'s a uniquely painful combination','Homebrew','','','','Y','Y','','','','','','','','','','','Y','','','','Y',NULL,'N','Y',NULL,'Ran out of personal time for the project I was using it for, it\'s not NixOS\'s fault','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-darwin, home-manager','',''),(394,'1980-01-01 00:00:00',5,'en','19362495','A2','A3','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','Y','','Reproducibility ','Rollbacks ','Isolation ','Nix expression language ','docker','','','','Y','Y','','','','Y','','','','','','poetry2nix\r\nnpm2nix','','Y','','','N','Don\'t know how, the overhead to get started seems massive ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','Rollbacks','Reproducibility via flake support','Nixpkgs are huge and well maintained ','I would improve wayland support ','Debian or arch','Y','','','','','','','Y','','','','Mach-nix\r\nRnix-lsp','',''),(395,'1980-01-01 00:00:00',5,'en','998177306','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','Y','','','','','','','Y','','','','','','','','','the mess','','','','','','','','','','','','','','','','','','','','','Y',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(396,'1980-01-01 00:00:00',5,'en','2022573080','A1','A4','male','','','','','','','Y','','Y','Y','Y','','Y','','','','Y','','','','','','','Y','','Y','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because we didn\'t want to have to deal with Windows in CI.','Y','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Development environment provisioning','Declarative system management','Barely acceptable CI solution','- Fix the interpreter, make `nix` fast.\r\n- Have high quality profiling/analysis tools.\r\n- Drop Perl from Hydra.','Not computers.','','','','Y','Y','','Y','','Y','','Y','','','','iohk\'s haskell.nix (with nix-tools); serokell\'s npm-build-package; naersk','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Needed to provision servers, did not want to deal with debian or similar stateful systems.','','Y','Y','Y','','Y','','Describe the system; ignore the hardware.','','','It works for me.','macOS','','Y','','','Y','','','','','','','It\'s not really a project/product, but I use nix\'s cross compilation facilities extensively.','Nix built in solutions for\r\n- haskell (packages.haskell.*)\r\n- nodejs (mkYarnPackage)',''),(397,'1980-01-01 00:00:00',5,'en','1989471622','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Arch + GNU Stow got boring','','Y','','','','','Y','','Y','','','','Recreational PC','','Y','','','Y','','Declarative system configuration','Streamlined interface to all my settings','Packaging is just bash on steroids','Add a simple way to run applications that want a standard environment (like steam) in a less hacky way.\r\nAdd Julia packaging (like python).','Probably still arch + gnu stow and debian for servers (maybe guix but this wouldn\'t exist then, too)','','','','Y','Y','','','','','','','','','','I tried julia2nix https://github.com/codedownio/julia2nix , but it didn\'t work as I wanted so I manually did what I needed','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Just for fun','Y','','Y','','','','','Same as nix','','','again, same as nix: Julia packaging and a compatibility layer/runtime for applications expecting the standard filesystem layout (like steamruntime but more reliable)','Arch + GNU Stow','Y','','','','','','','Y','','','','digga, home-manager, nvfetcher, emacs-overlay, nixos-mailserver, nix-matrix-appservices','','The documentation could be a bit more concise and easier accessible offline. \r\nI.e. without grepping nixpkgs.'),(398,NULL,1,'en','1092213727','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(399,NULL,2,'en','953852792','A2','A3','-oth-','enby ','Y','','','','Y','Y','','','','','','','Y','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because the elegance of the concepts filled me with joy.','','Y','','','','','Y','Y','Y','','','Y','','','Y','Y','','Y','','repeatability ','auditability','dev shells','make evaluation at least 10x faster ','maybe some kind of terraform / packer style solution. ','','','','Y','Y','','','','','','Y','','','','cabal2nix','','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(400,NULL,2,'en','186750564','A2','A4','male','','','','Y','','','Y','','','Y','Y','','','','Y','Y','','Y','','Y','','','','','','','Y','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','','Y','','','Y','','Declarative system configuration/management','Declarative development environments','Huge number of available packages in nixpkgs','','Arch Lunix and OpenBSD','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(401,'1980-01-01 00:00:00',5,'en','732986655','A2','A4','male','','','','','Y','Y','Y','','Y','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Needed reproducible dev environments and got tired of the pseudo-reproducibility of docker.','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Reproducibility ','Unified dependency management ','','Rebuild nixpkgs from scratch to to lessen the amount of undocumented bash magic that makes the level of entry high.','Probably docker or some kind of containers ','','','','','Y','','','','Y','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','Configuration as code','Reproducibility ','','','Probably any Linux distribution and a combination of terraform/ansible ','Y','Y','','','','','','','','','xmonad','home-manager, lorri ','deploy-rs','I think there’s a strong lack of documentation on how nixpkgs is built up. All the abstractions used by it, all the magic environment variables set and used by builders and so on.'),(402,NULL,1,'en','1328423619','A2','A2','male','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(403,NULL,1,'en','2031191999','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(404,'1980-01-01 00:00:00',5,'en','679643388','A5','A3','male','','','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','','','','','','','Y','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','1. nix-shell provides a way to reliably build projects from source, and get helpful compile errors in build scripts that indicate environmental dependencies. This helps when working on the build script for an open source project to be portable even to *non* linux platforms.\r\n2. nixpkgs has multiple versions of things, making more packages readily available, and again helping open source projects build from source using the exact desired version\r\n3. provided me a mostly painless way to configure my linux system only once and then keep reusing my config','','Y','','','','','Y','','Y','','','','my main email server','','Y','','','Y','','nix-shell','/etc/nixos/configuration.nix','a nixpkgs policy that is less strict than Debian Free Software Guidelines, allowing multiple versions of stuff and not having rules about vendoring and packages that are too small, etc. For example packaging a node.js application is trivial on nixpkgs but near impossible with debian.','I would change the nix language to be a more mainstream language. The syntax and semantics are unintelligible to me. I have survived only by sloppily copying working examples from other people and then very delicately modifying them.','Debian','','','','','','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I already answered this question','Y','','Y','','','','main email server','I already answered this','','','I already answered this','I already answered this','Y','','','','','','','','','Y','','','','I\'m happy with nixos and I have no intention to switch away any time soon.'),(405,'1980-01-01 00:00:00',5,'en','764543078','A4','A2','fem','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','','','','','Y','','','N','Y',NULL,'I was using it as a daily driver and almost every update needed webkit/webkit2gtk to be compiled except my laptop gives OOM in the process (16GiB RAM if it helps)','Binary availability without being obsolete instantly?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I was using it as a daily driver and almost every update needed webkit/webkit2gtk to be compiled except my laptop gives OOM in the process (16GiB RAM if it helps)','Binary cache availability without being obsolete instantly',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Flakes','Hydra',''),(406,'1980-01-01 00:00:00',5,'en','1584903609','A1','A2','fem','','','','','','','','','','','','','','','','','','','','','','','','','Pentester/security consultant','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','','','','Massive performance improvements to evaluation, especially of multiple NixOS machine closures.','','','','','','','','Y','','','','','','','','crate2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','','','','A way to get PRs into nixpkgs without them getting overlooked and ignored - perhaps a smoother process for fully automated package updates to reduce merger workload','','','Y','','','','','','','Y','','i3','niv ','flakes - i really don’t like the direction they’re taking the ecosystem, and wish they had gone through an RFC process instead of being snuck in :(',''),(407,NULL,2,'en','1783913968','A2','A2','male','','','','','','','','','','Y','','Y','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I have 3 computers. It was annoying to set up every change separately 3 times.','','','','','','','Y','','Y','','','','','','','','','Y','','repeatability ','','','Better documentation. It\'s very hard for me to package applications. And it\'s the most annoying thing.','Arch Linux','','','','','','','Y','','','','','','','','','Y','','','','N','It\'s hard to package an applications. I would happily do it, but there is a lack of tutorials. There are a few, but if you encounter anything different, then you are out of luck.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(408,'1980-01-01 00:00:00',5,'en','1556783284','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was distrohopping and ended up on NixOS; I liked it but decided it wasn\'t for me. Then I installed Nix on another distro and now I use NixOS on all my machines.','','Y','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','Declarive package management','Virtual environments ','Flakes','A dedicated flake output for Home Manager.','Flatoack or appimages, and direnv','Y','Y','','Y','Y','','','','','','Y','','','','node2nix, yarn2nix both in nixpkgs','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','','','','Centralised, declarative configuration','Reproducibility','Rollbacks','','Fedora silverblue','Y','','','','','','','','Y','','Swaywm','Home Manager, nix-direnv, sops-nix, NUR','','You\'re great, thank you.'),(409,NULL,1,'en','407469568','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(410,'1980-01-01 00:00:00',5,'en','646746951','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Security Analyst','','Y','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Because of the different approach to package management.','','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','','Y','','Package and service management','Configuration management','','Replace the language which something that this is easier to approach.','Don\'t know.','','','','','','','Y','','','','','','','','None','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','','','','','','','Y','','','','','Y','','Y','','','','','',''),(411,NULL,1,'en','776549153','A2','A3','male','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(412,NULL,NULL,'en','324156692',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(413,'1980-01-01 00:00:00',5,'en','1503126153','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I learned Nix because we were using at work. I now use it everywhere. It still has rough edges, but it\'s better than the alternative. ','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','','','','','','','','','','','Y','','','','Y','','','','cabal2nix https://github.com/NixOS/cabal2nix\r\ncrate2nix https://github.com/kolloch/crate2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','At work, we use NixOS for our CI machine (to run hydra and other services), it is quite impressive how the configuration can be stored in a repo which makes it possible to use our usual workflows (CI, PRs, PR reviews...).\r\n\r\nI also wanted to see what it was like to use Nix to manage everything on my personal laptop. Overall, I\'m quite happy with the approach, to the extent that I started using home-manager on both my NixOS and non NixOS machines to manage all my user software.','Y','Y','','','','','','','','','','Some stable Linux distro with home-manager to manage my software.','Y','','','','','','nix-deploy','','Y','','','home-manager','lorri\r\n',''),(414,NULL,1,'en','510792458','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(415,'1980-01-01 00:00:00',5,'en','1186139670','A2','A5','male','','','Y','','','Y','Y','Y','','Y','Y','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','I started with guix, but I code in Haskell and the ecosystem was more mature in Nix : and here I am.','','Y','','Y','Y','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','declarative configuration','reproductability','composition','Change nix the language : it is very difficult to understand what\'s going on when reading a source file if you don\'t know the context.\r\n\r\nAnd few things in the language give context : the language is thus hard to learn','Guix','','','','Y','Y','','','','Y','','','','','','https://github.com/NixOS/cabal2nix','Y','Y','','','N','Lack of understanding ','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','I discovered the principle behind modules with home-manager on my debian laptop.\r\nThen a mini-project at work :\r\nThe nginx module and acme integration are fantastic\r\nI deployed a reverse proxy with lua code to do openid-connect authentication.\r\n\r\nFrom there, I am currently growing my knowledge of nix to write code of my own.','Y','','Y','Y','','','','modules','simply overwrite a given configuration','reproductability','Add basic possibility to reuse NixOS module in a docker container. \r\nRemove the heavy dependancy on systemd','Guix\r\npuppet/ansible and other similar tools','Y','Y','','','','','','Y','','','','nix-copy-clojure to quickly deploy from my laptop to a production server','','The community is quite engaging !'),(416,'1980-01-01 00:00:00',5,'en','1394540430','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted declarative and reprodicuble environment configuration','','Y','','','','','Y','','','','','','','','Y','','','Y','','Declarative configuration','Easy rollbacks','Sharing the configuration between machines','I would add a static type system ','Whatever package manager was in the distro I would end up using','','','','','Y','','','','','','','','','','','','Y','','','N','Haven\'t had a reason yet, but also I don\'t feel comfortable enough with Nix/Nixpkgs','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','I wanted declarative system configuration','Y','','','','','','','Declarative system configuration','Easy rollbacks','Sharing configuration between machines','Probably just better documentation or installer, so it gets more popular','No idea, I would probably distro hop a lot, fortunately I don\'t have too since I tried NixOS','Y','','','','','','','','','','i3','None','None','Thank you for Nix(OS), it\'s awesome :)'),(417,'1980-01-01 00:00:00',5,'en','2082063107','A2','A4','male','','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','N','N','If I would see the need for it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Declarative configuration','','','','Y','Y','','','Declarative configuration','Ability to switch back to previous configurations','','','Debian','','','','','','Y','','Y','','','','','','Great project, thank you!'),(418,'1980-01-01 00:00:00',5,'en','2021966805','A5','A2','male','','Y','','','','Y','','','','','','','','','Y','','','Y','','','','','Y','Y','','Y','Y','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','','','','','','','Y','Y','','','','','','','Y','Y','','','','','Delete everything that happened before flakes. The tooling from before then is just too confusing and I don\'t want it to exist.','Ubuntu','','','','','Y','','','','','','','','','','','','Y','','','N','Nothing really, it seems welcoming.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I wanted solid technical infrastructure, and Ansible / Puppet / etc seemed hacky at best. I think the right thing to do is actually generate config from some DSL, which nix does. Unfortunately, I ran into a lot of trouble with tooling, but I\'m too lazy to reinstall my OS so I just run my services in ubuntu in kvm / libvirt.','Y','','Y','Y','','','','','','','','','Y','','','','','','','Y','Y','','','','',''),(419,NULL,1,'en','1076532620','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(420,NULL,NULL,'en','1384701521',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(421,'1980-01-01 00:00:00',5,'en','1654355232','A2','','','','Y','','','Y','','Y','','','','','','','','','Y','','Y','','','Y','','','Y','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using NixOS because it matched my view of what an OS should be, pretty much immediately switched to it as my daily driver, going all the way into immutability by using a tmpfs root.\r\nUsing it to deploy machines online too.\r\nNever used Nix on its own.','','','','','','','Y','','Y','Y','','','','Y','Y','','Y','Y','','Hash-based dependencies management','Declarative configuration language','NixOS','','Would probably try guix.','','','','','','','','','','','','','','','','Y','','','','N','IIRC, went to submit some small pull request to fix some doc when I started, realized that there was an existing pull request fixing the same issue that was months old and still waiting. Felt like massive inertia.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using NixOS because it matched my view of what an OS should be, pretty much immediately switched to it as my daily driver, going all the way into immutability by using a tmpfs root.\r\nUsing it to deploy machines online too.','Y','','Y','Y','','','','Hash-based dependencies management, immutability','Declarative configuration language','Large depth of tools to tackle any problems, large package database.','Would make the creation of NixOS qcow disk images faster and the result much smaller.','Would try guix','Y','','','','','','terraform, ssh','','','','i3','','NixOPS, awesome tool, but was broken.','Thank you! NixOS is awesome.'),(422,NULL,1,'en','1996890906','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Network Technician Trainee','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(423,NULL,NULL,'en','2141955863',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(424,NULL,1,'en','549904145','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(425,'1980-01-01 00:00:00',5,'en','2026066725','A2','A5','male','','','','','','Y','Y','','','','','','','Y','','','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Curiosity. Then reproducibility and ease of use','Y','Y','','','','','Y','','','','','','','Y','Y','','','Y','','Reproducibility','Up-to-date versions (on nixpkgs--unstable)','','I would add dovumentation','','','','','','','','','','','','','','','','','Y','','','','N','Everything I need is already there','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Like Nix itself: First curiosity, then reproducibility and reliability. ','Y','','','','','','','Reproducibility','Reliability','Uo-to-date versions (nixos-unstable)','','Ubuntu + Ansible','Y','','','','','','','Y','','','Plain i3','home-manager ---- game changer! Keeps my environment aligned in macOS and Linux','','Thanks for making Nix/NixOS happen!'),(429,NULL,1,'en','1066062147','A2','A4','-oth-','non-binary','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(426,'1980-01-01 00:00:00',5,'en','237231761','A2','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','Y','','','','','','','Y','','','','Y','','Reproducibility','Atomic updates','Package choice','Using Dhall as the langage powering Nix','Guix','','','','Y','','','','','','','','','','','','','','','','N','Too early in the learning process','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','Declarative configuration','Atomic updates','Package choice','Automatic installer','Debian testing','Y','','','','','','','Y','','','','','',''),(427,'1980-01-01 00:00:00',5,'en','1385012794','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Infosec','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I saw Mitchellh ´s demonstration and ripped his config','Y','','','','','','Y','','','','','','','Y','Y','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','','I3','','',''),(428,'1980-01-01 00:00:00',5,'en','90830852','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','For configuration management mostly.','','Y','','','Y','','Y','','Y','','','','','','Y','','','Y','','nixpkgs','Flakes','Configuration management','Switch to Guile for the language.','Guix','','','','Y','Y','','','','Y','','Y','','','','poetry2nix\r\nyarn2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Configuration management and NixOps','','','Y','','','','','nixpkgs','Configuration management','Rollback','Switch to Guile for language','Debian','','Y','','','','','','','','','i3','','niv\r\nmorph',''),(430,NULL,NULL,'en','2044304190',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(434,'1980-01-01 00:00:00',5,'en','791713481','A1','A4','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','I never planned to, Like a lot of people was curious that everything in hackage had a nix package.\r\n\r\nI\'ve been a staunch debian user for 13years before that none of the distros where the same, gentoo had some appeal but compiling wasn\'t attractive.\r\n\r\nI tried it and never looked back. While nix(os) has its pain points I have definitely learned a lot more with the time I played with it.','Y','','','','','','Y','','Y','','Y','Y','','','Y','Y','','Y','','Reproducibility','Declarative','Open Source','Windows support. While I don\'t use windows personally, this will be a game changer\r\nFaster evaluation time\r\nLower memory footprint\r\nFirst class secrets support\r\nSELinux support\r\nFirst-class OpenGL/ssl/quirks on non-nixos\r\nExtendable nixos module system\r\nTerraform-ish imperative resources\r\nBetter nixops experience\r\nUnpopular opinion: lets not encourage flakes everywhere. home-manager nixpkgs nixos-hardware nur, its really messy just to setup my machine','Nothing. I don\'t think there is anything with level of vertical-integration we have.','','','','Y','','','Y','','','','','','','','cabal2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A6','','Y','Y','Y','','Y','Y','','Reproducibility','Declarative','Open Source','Windows support. While I don\'t use windows personally, this will be a game changer\r\nFaster evaluation time\r\nLower memory footprint\r\nFirst class secrets support\r\nSELinux support\r\nFirst-class OpenGL/ssl/quirks on non-nixos\r\nExtendable nixos module system\r\nTerraform-ish imperative resources\r\nBetter nixops experience\r\nUnpopular opinion: lets not encourage flakes everywhere. home-manager nixpkgs nixos-hardware nur, its really messy just to setup my machine','Nothing. I don\'t think there is anything with the level of vertical-integration we have.','Y','','','','Y','','','','','','xmonad','mobile-nixos','terrafomo RIP\r\nNixOps, I still have high hopes for this','Keep it up marketing team!'),(432,NULL,NULL,'en','641499862',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(433,'1980-01-01 00:00:00',5,'en','1559689485','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','Y','Y','','Android','N','N','I\'m not sure, change in leadership for Arch Linux?\r\n\r\nMy study at university is more important than what OS I use, most of the time my laptop is just a display for PDF\'s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','(didn\'t I already answer this question?)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none','none','the configuration files on nixos.org look confusing, I haven\'t even got my head around unrelated projects such as Ansible yet!'),(435,NULL,1,'en','1743671258','A2','A5','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(436,NULL,1,'en','1268538447','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(437,'1980-01-01 00:00:00',5,'en','1946150170','A2','A4','fem','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','I heard about it like 5 years ago but did not really understand it.\r\n\r\nThen someone explained nixos to me and I fell in love.','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','','','','','','','','','','Y','','','','Y','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','Router','Declarative description of a system','','','','Arch','Y','','Y','','','Y','','','','Y','Sway','','',''),(438,'1980-01-01 00:00:00',5,'en','2047303701','A2','A2','male','','Y','','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','When I started using NixOS (see next answers)','','','','','','','Y','','','','','','','','Y','','','Y','','Declarative configuration','Bleeding edge packages','The way packages are managed (nix store, symlinks...), the core of what Nix is !','Nixpkgs are great, but they sometimes break (less on the 21.11 branch than on unstable but it happens). So I would fix that.\r\nDocumentation is crucial and, although it is improving very fast on Nix and NixOS, there is still work to do.\r\nShoutout to all the community, devs and enhusiasts who share their knowledge on discourse, reddit, videos...','I would use a different OS than NixOS (Arch I think), but I could not really \"replace\" Nix as a whole as it is so unique !','','','','','Y','','','','','','','','','','','Y','','','','N','First, I never faced a crucial need for me.\r\nThe few time I could have wanted to package something, I didn\'t feel like investing the time.\r\n\r\nI sometimes participate on the issues on the nixpkgs github (bugs, outdated packages...)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I switched from Arch Linux to NixOS.\r\nI heard of it on forums and reddit.\r\nThe possibility to have a stateless system of which the configuration was declared in a configuration file really got me in.\r\nIt was hard at the beginning and needed to some time but since them, I had no regrets of investing my time !','Y','','','','','','','Declarative configuration','Minimal and really up to date distro','Nix','','Arch Linux, with some scripts and/or Ansible...\r\nBut now that I know NixOS, I would never do that !','Y','','','','','','','','','','bspwm','','Poetry2nix.\r\nFor python development, I ended up using a nix-shell and a conventional venv inside it (with pip requirements.txt)','Thank you very much for working on this masterpiece of software.\r\nWhat a great idea ! What a great project ! Good luck and have fun for the following years that I hope will see Nix succeed even more !'),(440,'1980-01-01 00:00:00',5,'en','368591099','A2','A3','male','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Liked the concept of deduplicated separate per user package management and the promise of being able to resolve dependencies differently in different contexts across language bondaries. Additionally had lots of nixos users around me. Took me two attempts to switch from archlinux nevertheless.','','Y','','','','','Y','','Y','','Y','','','','Y','Y','','Y','home-manager','single source machine configuration','deduplicated dependency store','','Remove all the imperative impure stuff (including nix-channels), unify the user interface add some graphical visualisations and tooling to automate recurring tasks, add content addressing and ipfs (or a simillar p2p mechanism), better home-manager integration.','Probably would have stayed with ArchLinux','','','','Y','','','Y','','','','','','','','mvn2nix','Y','','Y','manual package overrides in configuration','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because the experience is much smoother than with nix on non-nixos and you get all the declarative configuration perks.','Y','','Y','','Y','','','','','','better home-manager integration, allowing each user to manager their own configuration on top of the system configuration while being able to access the machine configuration, machine rebuilds and nixpkgs bumps should automatically rebuild the user environments, but users should be able to rebuild on their own.','Archlinux','Y','','','','','','','','Y','','i3wm, sway','nix-bundle, nix-du, nix-visualize','nixops',''),(441,'1980-01-01 00:00:00',5,'en','679805274','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','','','Y','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','Y','','','','','','','','Debian','Y','','','','','','','','','','xmonad','','',''),(442,'1980-01-01 00:00:00',5,'en','1898989935','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Deterministic configuration. For home-cloud and safe upgrades in remote location remotly.','','Y','','','Y','','Y','','Y','','','Y','','','Y','','Y','Y','','Declarative configuration ','Easy rollback','Good configs for services like nextcloud','- The high count of open issues on GitHub is concerning. Are security updates applied in a reasonable time frame?\r\n- faster switch to systemd-nspawn containers\r\n- integrated support for encrypted secrets in the nix store','Fedora linux with shell scripts / ansible','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','Not enough time but it\'s planned.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Management of rasperry pis. Declarative configuration, determinism, easy recovery. Safe updates for a remote router/server.','Y','','Y','','','Y','','Declarative configuration','Easy rollback','Good service configurations for e.g. nextcloud','- High issue count on GitHub is concerning\r\n- Are all security update really always fixed on time, especially for the stable channel?\r\n- nixos-containers using systemd-nspawn\r\n- integrated secrets management, encrypted in store','Fedora Linux with scripts / ansible','Y','','','','','Y','','Y','','','LXQT','nixos-containers module\r\nflakes flakes flakes','nix-env\r\nchannels','Thanks for all your hard work.\r\nI love Nix/NixOS!'),(443,'1980-01-01 00:00:00',5,'en','864505304','A2','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','Y','Y','','Y','','','N','Y',NULL,'Lack of commitment in stability. Things that worked before, stopped working.\r\n\r\nNo easy way to set up builders on Kubernetes. \r\n\r\nNix interpreter is too slow for complicated code and misses standard debugging tools.\r\n\r\nIFDs are not well supported, e.g. force sequential builds. But I needed them due to the slow interpreter. ','Limited use :\r\n\r\nCommitment to stability and a general spirit that this is meant for production.\r\n\r\nKubernetes builders.\r\n\r\nGoing full in :\r\n\r\nFast nix interpreter with some static type checking. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Too much time spent on updates or tools that didn\'t support NixOS. ','Main stream adoption or easy escape hatches for software from other distributions.\r\n\r\nConfig stability. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','crate2nix',''),(444,'1980-01-01 00:00:00',5,'en','1632821156','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I started using NixOS and nix just made sense for my projects ','','','','','','HyperV VM setup similar to WSL ','Y','','','','Y','','','','Y','Y','','Y','','Declarative system or server configuration/management','Declarative environment management','Build and package software','Channels being blocked is obviously bad but I\'m not smart enough to figure that out. :)','I would try Guix, but might just go back to arch since the ecosystem doesn\'t appear to be anywhere near as complete as Nix','','','','Y','Y','','','','','','','','','','','Y','','','','N','I want to contribute but am still learning the language. The Nix language has a steep learning curve especially coming from imperative programming languages, I think more examples (real world packages) with good comments would help me and others learn, it can be very overwhelming to read a package source and actually understand what is happening.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I used to use arch but got tired of maintaining a couple machines, using git to track my entire system\'s config (NixOS and Home Manager) is a godsend. Also, arch broke my laptop way too many times.','Y','','','','Y','','','Declarative System Configuration','Rollbacks','Ability to boot with only /boot and /nix','Some of the NixOS config options seems kind misleading (needing xserver options to use Gnome wayland), but overall everything seems really solid. ','Probably arch','Y','','','','','','','Y','Y','','','Home manager\r\nImpermanence','','Thank you for all of your hard work, NixOS is in its own league and I don\'t think I can ever look back'),(445,NULL,NULL,'en','2056633048',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(446,NULL,NULL,'en','884347592',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(447,NULL,NULL,'en','941849493',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(448,'1980-01-01 00:00:00',5,'en','1524376591','A2','A3','male','','','Y','','','','Y','Y','','','Y','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','Y','','','',''),(449,NULL,1,'en','1536751268','A2','A4','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','','Y','','Y','','android',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(450,NULL,1,'en','152937197','A2','A4','male','','','Y','','','Y','Y','','','Y','Y','','','','','','Y','','','','','','','Y','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(451,'1980-01-01 00:00:00',5,'en','1992737012','A1','A6','male','','Y','','','','','','','','Y','','','','','Y','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','(On Mac) As an alternative package manager to brew. (On ArchLinux) to install the latest versions.','Y','Y','','','','','Y','','Y','','','','','Y','','Y','','','','Making installation simple, easy, and uniform.','Version-controlled profiles','the number of supported packages.','Change the syntax of Nix language. ','guix (reluctantly)','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','On Mac, as an alternative package manager to brew.\r\nOn ArchLinux, to install the latest packages.','Y','','Y','','','','','Making software installation simple, easy, and uniform.','Version-controlled profiles','The number of packages.','The syntax of Nix language.','guix','','','','','','','','Y','','','','','',''),(452,'1980-01-01 00:00:00',5,'en','1449926570','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Honestly don\'t remember. Probably saw something on Reddit mentioning centralized declarative reproducible system config, and was instantly sold','','Y','','','','','Y','','Y','','Y','','','','Y','Y','Y','Y','','reproducible and isolated development environments','ability to move/rebuild a machine by just copying one configuration file','uncluttering $PATH, least power principle, ...','- I\'m a bit worried about the flake/nix 2.4 (is it 2.4?) bruhaha, and I would wish the transition process to be swift if not over already (I\'m in the camp that didn\'t feel the need for flakes, to be honest, but maybe I\'m not a power-enough user :) )\r\n- It\'s annoying that sometimes even in nix you can get conflicts in python dependencies/versions -- but that\'s on python, not nix, I think\r\n- I would love to have a complete-ish devops solution (last time I checked, nixops was not really recommended, and the other solutions were small and fragmented)\r\n- dealing with the nixpkgs git repo is getting horribly slow, but not sure how that can be fixed\r\n- in general, maybe it\'s me not finding it, but mid-level documentation (of the nix language, of typical solutions to typical problems, ...) is not really handy (where do I import this function from? ...), and the Discourse instance often doesn\'t help','Debian? Arch? Guix :P ? No idea','','','','','','','','','','','','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','Y','','','','','','','','Y','','','','','','','','','','sway','','',''),(453,NULL,1,'en','1697328197','A6','A4','male','','','','','Y','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(454,NULL,1,'en','1371801027','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Started with Manjaro as my first Linux distribution but messed things up several times with updates and using specific versions of packages. Found out about NixOS from DistroTube, switched and loved it immediately.','','','','','','','Y','','','','','','','','Y','Y','','Y','','Safety of upgrades and package installation','Home Manager','Ephemeral shells','- Documentation for configuration, especially configuring specific programs in Home Manager\r\n- Better integration of home.nix into configuration.nix so they shared the same generations and didn\'t need to duplicate all nix-env commands','Gnu Guix','','','','','','','','','','','','','','','cabal2nix: https://github.com/NixOS/cabal2nix\r\nnode2nix: https://github.com/svanderburg/node2nix\r\ndconf2nix: https://github.com/gvolpe/dconf2nix','Y','','','','N','Lack of knowledge on how to do it','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(455,'1980-01-01 00:00:00',5,'en','479187738','A2','A3','male','','','','','','Y','','','','','Y','','','Y','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Saw a poster at university while doing a thesis on a functional programming language, idea of declarative package manager spoke to me.','','','','','','','Y','','','','','','','','Y','','','Y','','','','','','pacman','','','','','','','','','','','','','','','','','','','','N','Not enough time to learn nix language','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Saw a poster at university while doing a thesis on a functional programming language, idea of declarative OS spoke to me.','Y','','','','','','','','','','','Arch Linux','Y','','','','','','','','','','i3','','',''),(456,'1980-01-01 00:00:00',5,'en','1135816615','A5','A3','male','','Y','','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','For ML research. Easiest way to do reproducible research in my experience.','Y','Y','','','','','Y','Y','','','','','','','Y','Y','','Y','','nix-shell','reproducibility','','In rough descending order of importance,\r\n* Hydra building and caching of software that depends on CUDA.\r\n* NVIDIA \"data center\" drivers for V100/A100 GPUs.\r\n* Better nixGL support, eg. cudatoolkit support.\r\n* Fix the confusion between \"nix-foo\" commands and \"nix foo\" commands. What is what? Which should I use? When will things finally be stabilized?\r\n* Remove imperative nix-env commands.','I would just cry and stop using computers.','','','','Y','','','','','','','Y','','','','none','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','First got into Nix on macOS, then starting using Nix on a remote ubuntu machine. Then transitioned into using NixOS on the remote machine. Later discovered that NixOS doesn\'t support NVIDIA \"data center\" drivers for V100/A100 GPUs, so I\'ve had to switch back to ubuntu on the remote machine.','Y','','','','','','','Declarative configuration','','','* NVIDIA \"data center\" drivers for V100/A100 GPUs.\r\n* Better support and tutorials for spinning up servers on the AWS/GCP/Azure.','Ubuntu','','','','','','','','Y','','','','nixGL, home-manager','','Nixpkgs is the best package system because it\'s fully hosted on GitHub, making it super easy to contribute! It also has the added benefit of making it easy to build automation, which is something that I\'ve made good use of.\r\n'),(457,NULL,1,'en','1746752450','A2','A3','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(458,'1980-01-01 00:00:00',5,'en','1871112103','A1','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Was introduced to it by a friend and colleague. After 18 years of mostly Ubuntu as my personal workstation, I\'ve switched fully to NixOS unstable and home-manager.','','','','','','','Y','','Y','','','','Smart TV','','Y','','','Y','','System and home management using code','Development environments using lorri','Huge selection of mostly up-to-date software packages with cached binaries','Statically typed language. Lack of static type checking is felt. I love Rust, by the way.','I\'d look into anything similar. I heard of GNU Guix. Is there an alternative to NixOS? Pff, probably not a practical one.','','','','Y','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','Smart TV','','','','','','Y','','','','','','','','','','sway','lorri','',''),(459,'1980-01-01 00:00:00',5,'en','763775950','A2','A4','male','','','Y','','','Y','Y','','','','Y','','','','','','Y','Y','','Y','','Y','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Reliability, speed of implementing stuff, management of variations of things','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','variation management through the checksumming in a store / parallel versions + atomic upgrades','independence of userland from runtimes (physical, virtual, container, shell, ...)','hydra','better integration of non-nix stuff (CMMI installs) ','no idea. we came from using Gentoo and maybe we\'d end up using ubuntu + docker instead','','','','','','','Y','','','','','','','','I think we use pypi2nix and maybe some node stuff.','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Gentoo+Puppet allowed for a lot of variability but upgrades where a big pain and managing state was just impossible in a growing (multiple hundred machines) environment. Turnaround time for config management was insane (puppet runs took 5min+ for NOOPs)','Y','Y','Y','Y','','','','argh ... didn\'t I just answer this question on the previous page?','','','this was here twice, too, wasn\'t it?','this was here twice, too, wasn\'t it?','Y','','','','','','','','','','','','','I think the survey is broken with duplicate questions ... that almost made me abort it ... '),(460,'1980-01-01 00:00:00',5,'en','1337090152','A2','A2','-oth-','enby','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','','','android','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','arch broke packages, and i got upset and wanted to move distros. someone told me to install nixos so i did','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','nix-shell, i can temporarily have a package for something i want to do now, without worrying about it later','i can make a build script which doesn\'t need to make assumptions about the user\'s distro (other than nix)','idk but see the next answer','make nix features more discoverable (i keep getting told about things i didn\'t know). make the documentation more searchable, and maybe interactive','idk i\'d be probably doing manually-written shell scripts and makepkg scripts and other shenanigans in arch, or whatever they do in void if i went for that','','','','','Y','','','','','','','','','','','Y','Y','','idk it\'s been a while since i did either of these things','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','see nix','Y','','Y','','','','','i can copy a config to another machine, and if i carefully tread past machine differences i can basically clone a service config with minimal effort','idk i feel like i\'m having a worse experience on nixos than arch, even though it\'s technically better','','if i could easily find exactly which module takes care of a particular setting, option and action, that\'d be cool. also, one of the things i\'m loath to do is basically reimplementing nixos modules just to have them separate from the system-wide config, cuz the system config takes way too long to build and makes me scared of doing anything on my system ever. it\'s hard to integrate them back into the system, too, i have to put a systemd config in the system config, fragmenting the module into separate parts i need to look after','arch or void or alpine or smth i\'d be writing shell scripts instead of nix config all day','Y','','','','','','','','Y','','i3wm, i\'d use sway but it\'s too much for my hardware still','search.nixos.org is cool, but could be smarter than it is rn','','writing type-safe modules as a wrapper for a simple text config is hard af, is there a tutorial for that?'),(461,'1980-01-01 00:00:00',5,'en','1243830948','A2','A4','male','','','','','','','Y','Y','Y','','','','Y','','','','','Y','','','','','','Y','','Y','','','Y','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(462,NULL,1,'en','632824188','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(463,'1980-01-01 00:00:00',5,'en','450029505','A2','A5','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','Y','','','','','','','','','i3','','',''),(464,'1980-01-01 00:00:00',5,'en','941420674','A2','A4','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because or NixOS','Y','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','Easy contribution via pull request','Availabilty of packages on different distros','Dev environment with nix shell','Make packaging even easier.\r\nAdd nix as a package to all distros so it is available via the package manager.','Probably homebrew/linuxbrew','','','','','','','','','Y','','','','','','none so far','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','We needed a system where we could easily patch every component of the system, including the kernel and deploy it to production. Easy roll back was a blessing.','','Y','Y','','','Y','','Declarative config','Source based allows patching of everything','Easy to contribute via pull request','Ability to run standart software out of the box. ','Debian + Ansible','Y','Y','','','','','','','Y','Y','','','home-manager',''),(465,'1980-01-01 00:00:00',5,'en','1990777552','A2','A3','male','','','Y','','','Y','Y','','','Y','Y','','','Y','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','','','','','Y','','Y','Y','','','','','','','','','Woodpecker','https://github.com/svanderburg/composer2nix\r\nhttps://github.com/svanderburg/node2nix\r\nhttps://github.com/nix-community/napalm\r\nhttps://github.com/fossar/composition-c4','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','','','','','','','','','Y','','Y','','','','','sway','','',''),(466,NULL,NULL,'en','630141597',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(467,'1980-01-01 00:00:00',5,'en','1979775901','A1','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','My colleague rewrote my project\'s Docker-based build system for me in Nix. Once I saw it the advantages were obvious.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','Y','','','','','I would replace the Nix language with https://github.com/purenix-org/purenix','','','Y','','Y','Y','','','','Y','','','','Y','','https://github.com/svanderburg/node2nix\r\nhttps://github.com/justinwoo/spago2nix\r\nhttps://github.com/NixOS/cabal2nix\r\nhttps://github.com/cdepillabout/cabal2nixWithoutIFD (not actually but I wish)','Y','Y','','','N','It\'s so easy to just keep my improvements to myself in our private repos. I\'m ashamed.','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A1','My team put NixOS on all of our servers.','','Y','','','','','','','','','I would replace the Nix language with https://github.com/purenix-org/purenix','','','','','','','','','Y','','','','','','Thank you!'),(468,NULL,NULL,'en','2014326457',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(469,'1980-01-01 00:00:00',5,'en','1616963874','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Because of its determinism','','Y','','','','','','','Y','','','','','','','','','Y','','Rfc 92','Flakes','','Nix is bloated right now with all of it\'s experimental features. I would either finalize them an decide on which to throw out and which to keep or change the \"experimental feature\" process to something else. ','I wouldn\'t use something else','','Y','','Y','Y','','','','','','','','','','dream2nix','','Y','','','N','The size of the monorepo. It should be a lot more modular and compostable as planned with flakes. ','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','Y','','','','','Nixos modules','','','I would make nixos modules more ergonomic to write and compose','','Y','','','','','','','','','','server only','','',''),(470,'1980-01-01 00:00:00',5,'en','1351627180','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','The premise of a fully declarative, immutable system seemed very interesting.','','Y','','','','','Y','','Y','','','Y','','','Y','','Y','Y','','Declarativity','Reproducibility','Isolated environments/coexisting packages','A definitive approach to secrets management which doesn\'t store them in the Nix store. Seems like Morph et al. do have some solutions, but it still feels like an open problem.','Podman nad Ansible.','','','','','Y','','','','','','','','','','https://git.sr.ht/~remexre/clnix\r\nI use various js/python 2nix tools very rarely when I want to locally package something not in nixpkgs, so I always look what\'s currently the \"best\" option.','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Installed NixOS on a new laptop I got when i decided to try Nix to get the full experience.','Y','','Y','','','','','Declarativity','Reproducibility','Isolated environments/coexisting packages','Improved language support, the two main languages I use (C# and Common Lisp) are in a not so great state. There\'s some great work for CL being done with clnix by @remexre.','Assuming Guix isn\'t an option, probably Arch or Fedora.\r\n','Y','','','','','','','','','','sway','rnix-lsp, nix-direnv, emacs-overlay, home-manager','lorri, only because I\'ve replaced it with flakes.',''),(471,NULL,NULL,'en','1167346837',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(472,'1980-01-01 00:00:00',5,'en','1283797303','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I think I stumbled over some blog posts and immediately got excited about the concept during a time when everybody build castles around fat VMs and containers. Nix is conceptually a lot simpler and orthogonal to other solutions.','Y','Y','','','','','Y','','','','','','','Y','Y','','','','','reproducible development envs that are disposable','Homebrew replacement','','More stable nixpkgs or at least make it easier / better documented to mix and match. \r\n\r\nBetter defaults / best practices\r\n\r\nRemove the old CLI and focus on the new one\r\n\r\nProbably find a better way to steer the whole project. At the moment, it does develop so many things at the same time that it’s hard to notice the improvements. ','Containers, Homebrew','','','','Y','Y','','','','','','','','','','','','','Y','','Y',NULL,'N','Y',NULL,'I’m using macOS as my main OS and a VM just for development started to annoy me. ','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(473,'1980-01-01 00:00:00',5,'en','1982223605','A1','A2','male','','','','','','','','Y','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','As a frequent user of the AUR, I was enticed by the concept of Nixpkgs as \"AUR + reproducible builds\".','','Y','','','Y','','','Y','Y','','','','','Y','Y','Y','','','','nix-shell -p for temporary installation','Content-addressed derivations','The Nix language as a lingua franca of build scripts','Do away with Bash and Bashisms','Arch Linux Package Manager + chroot','','Y','','Y','','','','','Y','','','','','','[nuget-to-nix](https://github.com/NixOS/nixpkgs/blob/21.11/pkgs/build-support/nuget-to-nix)','Y','','','','N','My inexperience; a lack of documentation for .NET','N','N','System updates to my Arch-based daily driver causing problems, which has already happened and already convinced me to switch as soon as I get time :)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N/A','N/A','<3'),(474,'1980-01-01 00:00:00',5,'en','1778605397','A2','A2','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My PhD advisor showed me, I tried it and now there is no going back!\r\nthe peace of mind of using Nix is really something else','','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','flakes','nixos rollback','building and trying new nixos configuration in vms','the fact that flakes needs the set of derivations to be flatten.\r\nI would really love to have some hierarchy\r\n(there is the `flattenTree` function from https://github.com/numtide/flake-utils, but it is not really satisfactory) ','If guix exists, i guess guix.\r\nOtherwise, something debian-based probably','','','','Y','Y','','','','Y','','','','','','none\r\n(i tried https://github.com/cargo2nix/cargo2nix tho)','Y','Y','','','N','I have my own flake with the packages i need that are not in nixpkgs.\r\n','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My PhD advisor showed me, and i loved it','Y','','Y','','','','','easy rollbacks','easy to try/test configurations','can easily deploy my config to another machine','nothing comes to mind at the moment ...','debian (or ubuntu)','Y','','','','','','','','','','i3','arion: https://github.com/hercules-ci/arion/\r\nnixos-generators: https://github.com/nix-community/nixos-generators\r\nflake-utils: https://github.com/numtide/flake-utils\r\n\r\n(I will try home-manager at some point: https://github.com/nix-community/home-manager)','','I love the work you are doing!'),(475,NULL,1,'en','2105962861','A5','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','Y','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(476,'1980-01-01 00:00:00',5,'en','1178068077','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','N','N','Just starting to learn Nix and nixpkgs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Just starting to learn NixOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(477,'1980-01-01 00:00:00',5,'en','1008350256','A2','A2','male','','','','','','','Y','','','Y','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I have just built a new desktop PC and was looking for a distro to install, since I did not want to use windows anymore.\r\n\r\nOne of my friends told me about NixOS, but he wasn\'t using it he had also just heard about it. Checked it out on the website and looked cool.\r\n\r\nDownloaded it and installed it, and thought it was pretty cool. It was kinda hard using it in the beginning and also the docs wasn\'t that easy to follow on some points.\r\n\r\nBut 6 months ago I also installed it on my laptop and I am now using Nixos on all my systems, including my home server.','','','','','','','Y','','Y','','','','My personal computer','','Y','Y','','Y','','Declarative system management and nix collect garbage works wonderfully to keep a clean system','','','I would remove nix-channel.\r\nI would make flakes stable.\r\nI would make it easier for contributes to have changes to modules merged','Probably use the default package manager on whatever distro','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Told it on the nix part','Y','','Y','','','','Personal computer','Declarative system management, and nix collect garbage. To always have a clean system','','','I would make it easier to install packages. By using a command instead of having to open a text editor and rebuilding every time','Probably Manjaro or Arch or Gentoo or void','','','','Y','','','','','','','dwm','Nur\r\nFenix','',''),(478,'1980-01-01 00:00:00',5,'en','27970314','A2','A3','male','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started with Nix (not NixOS) as an alternative to homebrew on Mac. Eventually switched to home-manager. I then recently experimented with NixOS which has worked well. Nix-darwin did not work out well.','Y','','','','','','Y','','Y','','','','','','Y','','','Y','','nix-shell -p -- running software without permanently installing it','Declarative system config (home-manager on Mac, and nixos)','Flexibility - I really can represent most of the things I need in nix. Not limited to just installing packages. I was even able to setup some custom LUKS logic on NixOS.','Better discovery of options instead of relying on the online search. Easier debuggability. Frozen versions by default - instead of relying on whatever version happened to be current at the time of channel setup.','A hodgepodge of scripts, perhaps a config management tool like cfengine or ansible.','','','','Y','','','','','','','','','','','cabal2nix','Y','','','','N','Already high quality - limited opportunity to improve things. As to new software packages - too busy to fiddle with it, better just use homebrew for those. On NixOS I can find everything I need in nixpkgs, and if I don\'t find something then there will at least be a good alternative.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','After using nix for a while, I tried out NixOS and liked it.','Y','','Y','','','','','Declarative system config.','Easily managing a fleet of machines.','','A safer way to deploy configs to headless machines. I\'d like to be able to switch to a config for the next boot, but not subsequent boots. Or some other way to fallback without having to attach a keyboard/mouse/screen or KVM.\r\n\r\nAn easier way to automate the installation of NixOS onto a machine.\r\n\r\nMore official support in cloud environments.','Ubuntu or Fedora','Y','','','','','Y','git push + pssh to run git pull && nixos-rebuild','','Y','','','home-manager','nix-darwin',''),(479,NULL,1,'en','2067898348','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(480,'1980-01-01 00:00:00',5,'en','318621768','A5','A3','-oth-','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I thought the community was cool, and d wished to spend less time configuring arch, most of it consisting of copy-pasting commands from stack overflow or random blogs. Now, I just flip on a NixOS option and say a small prayer to all the maintainers who made it possible. If the option does not exist, I write it and contribute to nixpkgs when possible. ','','Y','','','','','Y','','','','','','','','Y','','','Y','','NixOS options system, all my configs in a git repository ','nix-shell (both with & without the -p flag)','Generations / rollbacks','I would push flakes over the finish line, officially recommend it, and then unify the CLI to be more consistent. After that, docs.','Not sure. Maybe arch.','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I said it in the previous section :C','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','The Rust overlay, agenix','','The community + RFC #98 are very important to me, and are as important to my involvement with Nix as any of its technical advances.'),(481,'1980-01-01 00:00:00',5,'en','1887493217','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','N','Y',NULL,'Installation on macOS was painful','Streamlining integration with macos, providing clear direction on replacing brew with nix. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I think you’ve got a brilliant foundation and am eager to adopt when it becomes easier'),(482,'1980-01-01 00:00:00',5,'en','2055337406','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Immutable OS ','','Y','','','','','Y','','','','','','','Y','Y','','','Y','','Declarative build recipe','Binary cache ','','The language - can we just use a proper language? :D I still don\'t completely follow nix and have to do copy paste dev, with no ide support ','I\'d find it then...','','','','','','','Y','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Immutable OS ','Y','','','','','','','','','','','','Y','','','','','','','','','','Xmonad','','',''),(483,'1980-01-01 00:00:00',5,'en','598172288','A2','A5','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was looking for GNU Stow but couldn\'t remember its name. Googling brought me to Nix','Y','','','','','','Y','','Y','','Y','Y','','Y','Y','Y','','Y','','Congruent configuration management','Cross compilation \"just works\"','Derivations describe *all* dependencies of a program I\'m building, nothing is implicit','Make it possible to use `lib` without importing all of nixpkgs. ','Guix, but I guess that wouldnt exist either. Debian, Postmarketos','','','','','','','','','','','','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','Y','Y','','','','','','','Y','','','','','Y','','','','','labwc (Wayland)','Mobile nixos, nixwrt','Hydra self-install',''),(484,'1980-01-01 00:00:00',5,'en','84265485','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','To try out new software without messing up the whole operating system','','','','','','Only through NixOS','Y','','','','','','As my main laptop','','','','','Y','','Reproducible','Single file to configure the whole desktop','','Faster update cycles for the software (maybe community maintained like AUR?)\r\nAn easier language','Arch','','','','','','','','','','','','','','','','Y','','','','N','Slow and centralized repository\r\nI think Flakes solve this but still not used widely ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I used Arch but had to reformat every 6 months or so because of some packages leftovers and hand-made global configurations that led to inconsistencies','Y','','','','','','','','','','','Arch','Y','','','','','','','','','Y','Mate, i3','','',''),(485,'1980-01-01 00:00:00',5,'en','301661892','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Not much of a story really, decided to give it a look after a mixture of casual exposure on various discussion forums/irc online over the years, and found the idea of functional package management exciting/persuasive.','','Y','','','','','Y','','','','','','','','Y','Y','Y','Y','','Purity.','`nix-shell` and `nix develop`','`nix run` and `nix shell`','Content-addressed by default.','Arch Linux with Pacman and too many language specific package managers/virtual environment providers.','','','','Y','Y','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Not much of a story really, decided to give it a look after a mixture of casual exposure on various discussion forums/irc online over the years, and found the idea of functional package management exciting/persuasive.','Y','','','','','','Generic desktops/laptops','Declaratively and programmatically defining a complete system.','Atomic updates.','Overlays.','I would merge the boot counting pr.','Arch Linux. Still do, because I\'m too lazy to switch over some machines.','Y','','','','','','','','','','','Lorri.','',''),(486,'1980-01-01 00:00:00',5,'en','665590692','A2','A4','male','','','','','Y','','','Y','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','Botched Ubuntu upgrade was the trigger','','Y','','','','','Y','','','Y','','','Home desktop + laptops','Y','Y','Y','','Y','','Declarative & reproducible whole system configuration ','Nixpkgs being a single repo, all versions determined by single hash (git bisect etc)','Ease of adding/maintaining packages','Somehow we need a solution for faster rebuilds upon CVEs. Also would be nice if there was a tool that could tell me how many CVEs are present in a given nixpkgs hash (filterered for the ones I\'ve installed)','I\'d be sad but probably Debian.','','','','Y','','','Y','','','','','','','','','','','Y','override derivation & add packages via nixpkgs config ','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Ubuntu botched upgrade ','Y','','','Y','','','all home desktops + laptops','Declarative & reproducible configuration ','Nixpkgs monorepo pins everything with single hash (git bisect etc)','Atomic upgrades with rollback','More support for analysis of which CVEs are present in git hash / environnement.','Would be sad but use Debian','Y','','','','','Y','','','','Y','i3','','','Thank you for everything!'),(487,NULL,NULL,'en','1044362776',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(488,'1980-01-01 00:00:00',5,'en','1481515859','A2','A3','-oth-','','Y','','','','Y','Y','','Y','','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','N','Y',NULL,'configuration is very counter intuitive','I like the idea and will try again in the future',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','simpler configuration file formats',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix shell to have common dependencies for scripts','creating oci containers from nix but they were huge in comparison. Also the dockerfile format is way simpler compared to the configuration file format of nix. There were no good documentation on how to achieve what I wanted to get in multiple cases.',''),(489,'1980-01-01 00:00:00',5,'en','2026697649','A5','A4','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','All the great blog posts (eg christine.website) on lobste.rs','','Y','','','','','Y','','Y','','','','','','','','','Y','','Easy, reproducible server configuration ','','','Ease of use, more docs','More Docker','','','','','Y','','','','','','','','','','','','','','','N','Still learning how to use Nix, haven’t needed anything not in Nixpkgs (yet!)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','','','','','','Y','','','','','Y','','','','','','','',''),(490,NULL,1,'en','820277792','A2','A4','male','','','','','','Y','','','','','Y','','','','','','Y','','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(491,'1980-01-01 00:00:00',5,'en','699854520','A2','A4','male','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I ditched MacOS around 2014 because it was becoming too bloated and slow. I had been an occasional Linux user since the early 2000s but now started using it to actually be productive. I used Arch and Debian, but I was frustrated with these systems and how they would inevitability come to be composed by a series of one-off fixes and workarounds that were impossible to keep track of, even with etckeeper and playbooks. This got me intererested in GNU Guix. In 2018, I tried to install GuixSD on a laptop but found it lacked hardware support, so I gave NixOS a try instead and liked it enough that I now run it on 3 different machines, including a server that hosts a variety of services for a small research group.','','','','','','','Y','Y','','Y','','','','Y','Y','','','Y','','Reproducible project environments with nix-shell','Good selection of packages','System configuration with rollbacks','I would prefer writing scheme to nix.','Probably Debian with guix','','','','','','','','','Y','','','','','','I have tried poetry2nix but didn\'t get very far','Y','','','','N','Big repo seems a bit overwhelming. I also find the github workflow more intimidating than emailing patches.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same as beforw','Y','Y','','Y','','','','','','','See above','See above','Y','','','','','','','','','','i3','Direnv','',''),(492,'1980-01-01 00:00:00',5,'en','149724642','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started to work on a project using Nix.','','Y','','','','','Y','','','','','','','','Y','Y','','','','Nix-shell for development, no need to install all dependencies by hand.','Easy sharing/usability of a project to other machines/other people, with project packaged in Nix','','','','','','','','','','','','','','','','','','poetry2nix','','','','','N','Do not have personal packaging to share.','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Easy system configuration among different machines, no need to manually re-install all all utility softwares.','Y','','','','','','','Easy system configuration, combined with versioned config file.','Easy \"roll back\" to previous version of our system config if anything goes wrong','','Easier management of config files for installed softwares (currently stored in read-only /nix, compared to ~/ which can be easily edited in linux distros)','Linux mint or ubuntu','Y','','','','','','','','Y','','','','',''),(493,NULL,1,'en','1283703960','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(494,'1980-01-01 00:00:00',5,'en','2088651','A2','A3','male','','Y','','','','','','','','','','','','','','Y','','Y','','','Y','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It is widely used at my lab, and now I am convinced of its usage.','','Y','','Y','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','Declarative configuration','Collaborative work (via a nur repository) and thanks to nix distributed architecture.','(With flake) software traceability','I would change rust and R packaging. Rust because I don\'t understand how it works, and I often get errors about cargo registry.\r\nR, because, it doesn\'t seem to have a binary cache for R dependencies (I always re-compile tidyverse).\r\n\r\nAlso, I would add an abstraction (or at least a comprehensive documentation) about runtime dependencies.','IDK, probably depends on the language I am using, and the distribution I am running on.','','','','Y','Y','','','','Y','','Y','','','','cargo2nix','Y','Y','','','N','I never really thought about it.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','my server','A4','A colleague installed NixOS on the laptop they attributed to me at work.','Y','','Y','','','','','Declarative configuration','Service declaration/management made easy','Rollback for the win','Add a way to manage MIME types. ','debian / arch','Y','','','Y','','','','','','','i3','','lorri',''),(495,NULL,1,'en','48586139','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(496,'1980-01-01 00:00:00',5,'en','1380055084','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to solve a problem with state, I was using ansible before but that doesn’t hold state in check as we know. Found NixOS, followed the tutorials and the rest is history ','Y','Y','','Y','','','Y','','Y','Y','','','','','','','','Y','','Stateful configuration ','Up to date packages','Home-manager','There isn’t much I’d change, maybe improve the documentation/tutorials on offer for newbies','CentOS/openSUSE & ansible','','','','','Y','','','','','','Y','','','','','Y','Y','','','N','I haven’t fully worked out how to write my own derivation yet but I am working on it','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Resolving issues with state','Y','','Y','Y','','','','','','','','','','','','Y','','','','','','','','','',''),(497,NULL,1,'en','1909805234','A1','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(498,NULL,NULL,'en','1391206735',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(499,'1980-01-01 00:00:00',5,'en','1721318935','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Some friends had suggested it','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Consistent semi-reproducible environment management','Easy system configuration','Software updates','Make reproducibility a priority instead of an afterthought. Make the language less weird. ','guix','','','','','','','','','','','Y','','','','cabal2nix','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Some friends suggested it','Y','Y','Y','','','','','','','','','guix','Y','','','','','','','','','','sway','niv','flakes, nixops',''),(500,NULL,1,'en','717446042','A2','A3','male','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(501,NULL,1,'en','1335775794','A2','A3','male','','','Y','','','Y','Y','','','Y','Y','','','','','Y','Y','Y','','Y','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(502,'1980-01-01 00:00:00',5,'en','1644009336','A4','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','Flakes','Stability','Rollbacks','Deprecate the old command line interface\r\nFinalize flakes and the new CLI\r\nImprove documentation on system wide nixos flake','Arch with btrfs and snapshots','','','','Y','Y','','','','','','','','','','Crate2nix\r\nMachnix','Y','Y','','','N','Takes way too long for changes to take effect.\r\nMaintaining my own fork is way easier','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','Stability','Rollbacks','isolation','Improve nixos system flake','Arch with btrfs','Y','','','','','','','','Y','','','MachNix\r\nCrate2Nix\r\nCachix\r\n','',''),(503,NULL,2,'en','565653341','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Reproduceable builds','Isolation so rollbacks are easy ','Pinning of inputs for dev shells the same as for container builds','Documentation to help with onboarding ','ArchLinux with custom image builder and lots of scripts ','','','','Y','Y','','','','','','Y','','','','https://github.com/svanderburg/composer2nix','Y','Y','','','N','Lack of time ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(504,'1980-01-01 00:00:00',5,'en','356174244','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was attracted to the declarative aspect of it, so I migrated from arch to NixOS, and never went back.','','Y','','Y','','','Y','','','','','Y','','Y','Y','','','Y','','Declarative configuration and package management','Fearless upgrades with easy rollbacks','Integration with SystemD','Either standardized home management, or better devops integration (nixops is not great due to the manual restarts)','Probably ASDF for managing multiple projects with different dependencies. \r\nFor package management I would probably have kept arch/pacman, or be tempted by exherbo\'s cave','','','','Y','Y','','','','','','','','','','crate2nix (I think) https://github.com/kolloch/crate2nix','Y','','','','N','The speed at which it evolves, I fear it would take too much time to keep a PR up-to-date before maintainers have time to look at it\r\n','N','Y',NULL,'Got a Windows work laptop, and I didn\'t want to install a dualboot on it (for better cleanup afterwards). Besides, WSL works well enough','More work on my personal laptop (which has nixos dualboot)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','* https://github.com/nix-community/NixOS-WSL the hack to make systemd work introduced weird terminal issues, and ubuntu+nix works well enough for me\r\n* https://github.com/matthewbauer/nixiosk I tried to use nixiosk to build raspberry pi images for an open source ventilator for covid (https://makair.life/), but couldn\'t make rhe rust ui launch ','Thanks for this great package manager and OS, and thanks to several people for helping with the promotion and documentation, mainly: \r\n* Xe Iaso https://christine.website/\r\n* Domen Kožar https://nix.dev/ https://www.cachix.org/\r\n* Graham Christensen, on Twitter \r\n* Jonas Chevalier, aka @zimbatm on Twitter\r\n* Tweag and tailscale'),(505,'1980-01-01 00:00:00',5,'en','1649131835','A2','A2','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','','','','','','','','','Y','','','','','Y','','','','',''),(506,'1980-01-01 00:00:00',5,'en','1411349801','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Accidentally spotted it somewhere and I fell in love.','Y','','','','','','Y','','','','','','','','Y','','','Y','','Multi-version management while keeping the dependencies related (for example Elixir and Erlang version match).','One-place configuration of different parts of the environment.','Configurability of the environment when needed (for example use different SSL library for Erlang).','Add auto-generated documentation to the core and make it easier to navigate through all derivations. It is often pretty irritating to find what and how can be configured. Also Erlang packages are just \"regular set\", and overriding it with new packages is currently PITA (I have created issue for that, but I haven\'t got time to work on it). Also I think that BSD-based distribution of NixOS would be nice.','Probably I would use ASDF','','','','Y','Y','','','','Y','','Y','Y','','','','Y','Y','','','Y',NULL,'N','N','I need more time to prepare my home server and personal server with Nix. For sure better support from cloud providers would be a great help.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not really Nix ecosystem, but Direnv.','',''),(507,'1980-01-01 00:00:00',5,'en','576808136','A2','A2','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','','','Y','','Y','','Y','','','','','Y','Y','','Y','Y','','','','','I would have Nix not be written in bash','GNU Guix or Arch Linux','','','','','','','','','Y','','','','','','','','','','','N','Nix seems very complex compared to something like PKGBUILD from Arch. There also isn\'t a wiki comparable to the ArchWiki to guide me through creating packages.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','','','','','','','Y','','','','','','','','','LeftWM','','',''),(508,NULL,1,'en','653133355','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Network Engineer','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(509,'1980-01-01 00:00:00',5,'en','941978502','A2','A3','male','','Y','','','','Y','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','For reproducible research and shareable development environments.','','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','Y','','Reproducible builds','Well-defined shareable environments','Customizable packages (via function inputs or definition overriding)','I would add arguments to flakes whose value can be overridden by a command-line argument (similar to nix-build --arg and --argstr). It would enable me to use them conveniently for my local testing / CI needs (combination of build system/compiler flags, whether coverage should be done in my pipeline or not, whether tests are run in valgrind or not...)\r\n\r\nI would also improve/debug something around R packages, as I must compile locally most of the packages I use (notably those from tidyverse) when I install a fresh NixOS.\r\n\r\nI would make ccache (or a similar mechanism) work again, to avoid the huge number of unneeded recompilations of the same sources I do everyday.\r\n\r\nI would understand what\'s going on with cargoSha256 (had reproducibility issues when packaging rust projects).','Probably just Docker for CI environments. And nothing clean for shareable development environments :/.','','','','Y','Y','','','','Y','','Y','','','','','','Y','','NUR (I maintain NUR-Kapack)','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I switched to Nix to execute my scientific workflows with better reproducibility. I then switched to Nix to create well-defined shareable environments for the various developments I do.\r\n\r\nI then switched to NixOS (from Arch Linux) to:\r\n- avoid package duplication between Nix and my base distribution\r\n- benefit from transactional system upgrades\r\n- easily deploy similar environments on several machines','Y','','','','','','','Transactional system upgrades (and rollbacks that work)','Easily tune the version of a package if needed. e.g., use old pango/cairo to avoid bad regressions, tuning kernel version becomes trivial with NixOS...','Sharing well-configured systems becomes easy','','Arch Linux','Y','','','','','','','','','','i3','','','Thanks for your work!'),(510,NULL,NULL,'en','1844528715',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(511,'1980-01-01 00:00:00',5,'en','1189706647','A5','A3','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Continued frustrations managing local patches to Arch packages (and rebuilding them when pacman installed an update) pushed me towards nixpkgs/home-manager. From there expanded to nix-shell for projects, and nixpkgs to build projects.','','','','','Y','','','Y','Y','Y','','','','','Y','Y','Y','Y','','Declarative builds','Shell virtualenvs','Easy of patching programs','More end-user documentation. Getting friends to try it out is an uphill battle.','Back to Bazel.','','','','','','','','','','','','','','','- [npmlock2nix](https://github.com/nix-community/npmlock2nix), after switching from npm2nix.\r\n- [mach2nix](https://github.com/DavHau/mach-nix), though this has been pretty buggy lately.','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I got a taste with nixpkgs/home-manager and using nix for virtualenvs, and got hooked.','Y','','Y','Y','','','','Declarative systems','Fast updates','Single for for entire system','','Likely would have gone back to Gentoo.','Y','','','','','','','','','','herbstluftwm','home-manager, nixos-infect','NixOps',''),(512,'1980-01-01 00:00:00',5,'en','1342534345','A5','A2','-oth-','Non-binary ','','','','','','','','','','','','','','','','','','','','','','','','Multidisciplinary Artist ','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','','','','','','Y','Y','','Y','Y','','','','','','','','','','','Y','Y','Y','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','','Y','','','','','','','','','','Y','','','','','Y','','Y','','','Pantheon','','',''),(513,'1980-01-01 00:00:00',5,'en','955040810','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','best gaming platform ever','A2','So i was kinda tired of having to do stuff for my configurations to work and i accidentaly borked my arch linux install. So i just decided to use nixos instead. Once i got past the barrier of \"i have no idea what i\'m doing\" it has been so much easier than crap where bleeding edge packages are able to brick your system.','','Y','','','','','','','','','','','','Y','','','','Y','gaming','The configuration file to just enable services and drivers etc.','Home manager(don\'t know if this counts) to not have to deal with a million configs in a million different folders and the quicker install process than system packages.','The stable and bleeding edge rolling release model.','I sat here for about and hour before figuring out the following:\r\nA clearer way to make two packages talk/communicate with eachother. I know this is possible but maybe a clearer way to do it. Something like a portal between them. And i also had an issue installing pygame with pip because it didn\'t find it (python compiler) this is probably related.','package manager probably arch pacman just because i need bleeding edge packages and alot of them easily accessable.\r\nMaybe something like debian withmostly flatpaks because i hate having to deal with a broken system and flatpaks are waay more stable than arch pacman.','','','','','Y','','','','','','Y','','','','','','Y','','','N','I have to little knowledge in nix to be able to.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','gaming','A2','didn\'t i answer this','Y','','','','','','','','','','','','Y','','','','','','','Y','','','xmonad','','nix-env home manager is miles better','awesome os and package manager please keep up the amazing work'),(514,'1980-01-01 00:00:00',5,'en','1921091792','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was curious about configuring my system with a single file. I started testing it out at the last Chaos Communication Congress in Leipzig, Germany. There was a NixOS group of hackers and I asked them to help me to setup NixOS on my laptop','','','','','','','Y','','Y','Y','','Y','','','Y','Y','','Y','','Declarative system management','Module system','Reproducibility','A simpler and more user friendly interface like \'apt\' or \'pacman\'.','Puppet or Ansible','','','','Y','Y','','Y','','Y','','','','','','node2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','Same as before on Nix','','','Same as before for Nix','Same as before for Nix','Y','Y','','','','','','','','','Sway','nixos-shell','',''),(515,'1980-01-01 00:00:00',5,'en','426523903','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','N','Y',NULL,'I had a few issues with games and Steam in the past and ended up reverting back to PopOS (hassle free NVIDIA drivers helped a bit)','I am already trying to use Nix again - I have installed it on my personal laptop and was planning on using Nix on some personal side projects to play around with it a bit more',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I already hinted on this, but there were some issues with Steam in the past that I wasn\'t able to fix','I just installed earlier this week! :)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'I am trying to play around with flakes with my new NixOS install','',''),(516,NULL,NULL,'en','249616815',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(517,'1980-01-01 00:00:00',5,'en','910029344','A4','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I was using Ubuntu for about 6 years. Last year, a driver update broke the machine and I had a really hard time fixing it. I started looking for alternatives, and found GNU Guix. I tried it for a while, but the software availability sucks there. So the first thing I looked at was NixOS, since GNU Guix said they are inspired by NixOS. I found what I want in NixOS, great software availability, and functional OS.','','','','','','NixOS','Y','','','','','','','','Y','Y','','Y','','Declarative Configuration','Rollback','Customizability','It\'s not an addition in itself, but I would create a comprehensive course on how to write package definitions, and contribute to the community in general.','Arch Linux','','','','','Y','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','','AwesomeWM','home-manager nix-direnv','',''),(518,'1980-01-01 00:00:00',5,'en','1046881022','A2','A2','male','','','','','','','','Y','','','','','','Y','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','To install emacs 27.1 on ubuntu without building locally or adding a PPA','','Y','','','','','Y','','','','','','','Y','','','','','','Up to date packages','','','Not enough experience with Nix to have a useful opinion. Maybe more documentation on nix command and flakes since that gets talked about a lot these days.','','','','','','','','','','','','','','','','','','','','','N','','N','N','I don\'t see many benefits of replacing Ubuntu on my personal machine',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(519,'1980-01-01 00:00:00',5,'en','850615319','A2','A3','male','','Y','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','For managing all my devices & servers','A3','I was really frustrated at reproducible builds. This is the main reason I tried Nix.\r\nI stayed for the expressivity and declarativity.','','Y','','','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','','Y','','Reproducible builds','Declarative configuration','Expressivity: Being able to do so many things with little amount of code','A more regular way of describing everythine in nixpkgs. There\'s a billion different ways of doing things and some things are specific and buggy. For example, the way the different version of the package \'ocamlformat\' are exposed.\r\nI think we need a way to expose all the past versions of a package, in a concise and consistent way.\r\n','Makefiles and tears. Nix is solving a real issue for me.\r\nI guess the question imply that Guix wouldn\'t exist either.','','','','Y','','','','','','','Y','','','','opam2nix, which has a lot of rough edges.','Y','','','I pin nixpkgs and apply patches','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','For home and servers','A3','I was really excited by Nix and I immediately wanted to use the paradigm for my system too.','Y','','Y','Y','','','','Declarative','No inconsistent state','Composable and easy to extend','I\'d move more things to the hardware-configuration so the conf is less specific. (eg. networking, root hashed password, hostname, stateVersion)\r\nThe hardware-configuration is important for me because the first thing I do to a fresh system is to download it and it\'s the last time I log in onto it. I\'ve made systems misbehave in the past because of careless tweaking of configuration or forgetting to imports everything.','Guix I guess.','','','','','','Y','','','','','no DE + custom config + xmonad','nix-workspaces, home-manager, nixos-hardware.','nixops','Nix and NixOS are really a step forward and will continue to be ahead for years. Nixpkgs is a mess.'),(520,'1980-01-01 00:00:00',5,'en','1620901706','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Once I started using NixOS on my laptop (because I became convinced that declarative system configuration was the way), I had no choice but to learn Nix to setup development environments','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Flakes and their lockfiles for reproducibility','Development environments in each project','','Add: better error messages for the language\r\nRemove: nix-env and its pitfalls\r\nChange: the fragmentation of documentation','Maybe Guix, but that wouldn\'t exist without Nix, so probably Docker.','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Had a self hosted server with about 10 services deployed, each service configuration versioned in docker-compose files. Got tired of it all, redeployed everything with NixOS.','Y','','Y','','','','','Declarative configuration','I could completely wipe my disk and have the exact same working environment ready to go in a few minutes','','','Archlinux','Y','','','','','','','','','','i3','','',''),(521,NULL,1,'en','882290791','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','Y','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(522,'1980-01-01 00:00:00',5,'en','754097230','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I don\'t rememeber','','','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Declarative, versioned configuration management','Reproducability','Uniform configuration language/style','Make flakes be the standard everywhere, unify their interface, improve their documentation and tutorials','Ansible, and a tissue to wipe my tears of sadness.','','','','Y','Y','','Y','','','','Y','','','drone CI','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I don\'t remember, sorry','Y','Y','Y','Y','','Y','','Reproducible and versioned configuration management','','','Better flake integration, make it the default. Fix and extend networking modules. ','guix','Y','','','','Y','','krops','','','','awesomeWM','https://search.nixos.org','nixops','Thanks for the great work!'),(523,'1980-01-01 00:00:00',5,'en','2120071269','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','It was advertised by friends. All the features of Nix and the cross platformness made it seem like a better option than Arch Linux\' package manager which I was using at the time. I also heard about Home Manager and how it could replace my dotfiles manager which was GNU stow at the time.','','','','','','Android','Y','','Y','','Y','Y','','Y','','','','Y','','cross platform','package recipe','system configuration','','The Arch Linux package manager.','','','','','Y','','','','','','','','','','','','Y','Y','Contributing packages','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Since I had already bee using Nix on Arch Linux NixOS seemed like the next step.','Y','','Y','','','Y','','system configuration','rolling back','','','Arch Linux','Y','','','','','','Home Manager','','','','Sway','','','I have no plans to switch away from NixOS. It\'s great.'),(524,'1980-01-01 00:00:00',5,'en','99853928','A2','A3','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','i really like the idea of having a reproducible system, defined by text files that i could then comment so i wouldn\'t forget why things were configured a certain way','','','','','','','Y','','','','','','','','Y','Y','','Y','','a declarative way to define my environment','ability to not clutter my environment when i need a one-off tool for a specific project','easy rollbacks','would be nice if the documentation was a bit more approachable - things like changing the stdenv to use clang instead of gcc or overriding a derivation with some local patches/version bump took me an embarassingly long time to figure out, and only thanks to nix chatlogs and forum posts','i would try to make docker containers with the right tools inside to build all my projects','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','i don\'t want to have the responsibility of maintaining something for others at the moment, i\'m using nix/nixos fairly casually','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','as a mainly windows user i\'ve slowly been drawn to linux over the years, but unfortunately each time i reinstalled linux there were always more steps than anticipated in order to have my machine working as i wanted. stuff like having a wifi card with drivers that weren\'t in the kernel, etc. \r\ni would always forget/get nervous about the random changes i would do to my system right after i reinstalled in order to have it working. the idea of being able to reliably reproduce those changes from files really appealed to me.','Y','','','','','','','the ability to figure something out once, and then i don\'t have to worry about it anymore because it\'s in a file i wrote and commented','being able to setup something that is as \"complex\" as nvidia prime offload with some very simple exposed options because someone smarter than me figured it out','easy rollbacks','i\'m a bit overwhelmed by all the different ways to do the same thing (flakes vs not, home-manager or not) though i do understand a part of this is because nix seems to be in a big transition phase to flakes','probably an easy to install distribution like antergos or manjaro, and hope that my hardware is supported','Y','','','','','','','','Y','','','','','i love the idea of nix/nixos! i really do think this is the future though i\'m probably barely scraping the surface of what nix allows me to do because i\'m a bit overwhelmed by how to do things the \"right\" way'),(525,NULL,2,'en','718786307','A2','A3','fem','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','The first time I started using NixOS, I was procrastinating during my PhD, but stopped using it. Later, I fell into an unhealthy relationship with GCL, and NixOS was a way to feed my habit after I left Google.','','Y','','','','','Y','','Y','','','Y','Any Linux machine I can.','','','','','Y','','Declarative lazy config language & module system.','Rollbacks.','Unified build frontend (make/maven/etc ugliness can be hidden).','Decouple it from the /nix store path, either for $HOME/nix/ or some entirely different store (S3 or whatever).','Debian + ugly shell scripts.','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(526,'1980-01-01 00:00:00',5,'en','1385684712','A6','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Cleanest dependency management\r\n\r\nCleanest package manager\r\n\r\nSold on the philosophy\r\n\r\nFlake is a godsend','Y','Y','','','','','Y','','','','','','','','Y','Y','','Y','declarative package management using Flakes','Flakes','Environment management','Project dependency management','Have a much better nix lsp, with autocompletion, intellisense, static analysis, etc.\r\nDocument the useful internal functions.\r\nWave away pre-flake stuff.\r\nUse either a statically-typed ML-like language (eg., OCaml) instead of Nix or a lisp\r\n','Guix?','','','','Y','Y','','','','','','','','','','','','Y','','','Y',NULL,'N','Y',NULL,'Mainly using macOS right now, with Nix package manager as the driver.\r\n\r\nMy non-mac machine is NixOS.\r\n\r\nIf I were to move off macOS, I would go back to NixOS.','Mainly using macOS right now, with Nix package manager as the driver.\r\n\r\nMy non-mac machine is NixOS.\r\n\r\nIf I were to move off macOS, I would go back to NixOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-direnv','',''),(527,NULL,1,'en','1932239440','A2','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(528,'1980-01-01 00:00:00',5,'en','600612741','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','','IT Architect','','Y','','Y','','iOS, Android','N','Y',NULL,'I don’t enough time to learn the language.','Interested in declarative configuration.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I don’t have enough time to learn the language.','Interested in declarative configuration for operating system.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(529,'1980-01-01 00:00:00',5,'en','1733192146','A2','A3','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','The fact that customizing existing packages is trivial because you always start from a working build. With other package managers, you would first need to set up a building environment which is often tricky to get right.','nix-diff','behavioral reproducability','I\'ve become increasingly convinced that content hashing schemes used in various kinds of lock files should have support added in Nix. E.g. Golang and Elixir lock files which are otherwise hard to emulate.\r\n\r\nI think they are best supported through plugins enabled by default since that means that future plugins can be added to the first version of Nix supporting hashing plugins and updating Nix to access the newest languages isn\'t necessary.','Whatever package manager is included in the distro or language I\'d use, plus extensive documentation of manual steps.','','','','','','','Y','','','','','','','','https://github.com/serokell/nix-npm-buildpackage\r\nhttps://github.com/NixOS/cabal2nix\r\nhttps://github.com/nix-community/poetry2nix\r\n','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I\'d heard it\'s good from a friend but got stuck installing it on getting full disk encryption right. After I got a Nix job I had enough time to work it out and have used it ever since.','Y','Y','Y','Y','','','','Configuration using a single language with good abstraction.','Atomic upgrades and rollbacks.','Testing a system configuration in a VM is trivial.','','Void Linux or FreeBSD.','','','','','','Y','','','','','i3','nixpkgs, nixfmt, nix-diff','NixOps','I feel some of the core C/C++ build mechanisms, like cc-wrapper and @REPLACEMENTS@ are too arcane and/or undocumented. I really would like to understand my entire system and those parts are my biggest obstacle to that.'),(530,NULL,NULL,'en','1697174348',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(531,'1980-01-01 00:00:00',5,'en','1833345951','A1','A2','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','ArchLinux','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Declarative',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(532,'1980-01-01 00:00:00',5,'en','1962773316','A2','A3','male','','','','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I\'ve been a Gentoo user before, but since I also have Gentoo on my work laptop, I didn\'t want to manage both of those. I decided for NixOS because the laptop is unlikely to be rendered unusable while also be at least as configurable as Gentoo, in some ways it is even more configurable.','','','','','','','private laptop','Rollbacks','Configurability','Packaging is relatively easy once you get past the steep learning curve of the Nix language','system wide use flags from Gentoo, but I miss them too much, and I understand that it\'s not viable to have all combinations built by hydra','Gentoo or Debian','Y','','','','','','','Y','','','','','',''),(533,'1980-01-01 00:00:00',5,'en','624182619','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I saw that some Haskell people were using Nix. It looked interesting and I really liked the idea of reproducibility and declarative definition of packages and systems. I started with Nix pills but really got into Nix when I moved my development environment configuration into Nix. ','','Y','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','Declarative configuration','Support for almost every package/language','Reproducibility','Support for catching builds on a file level to avoid full rebuilds to make builds on CI actually fast.','Guix, Bazel, or some home-spun shell scripts','','','','Y','Y','','','','Y','','','','','','spago2nix','Y','Y','','','N','Nothing really, I guess I\'m just shy.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I started using NixOS after using Nix for a while and wanting to go all-in.','','','Y','','','','','Declarative configuration','Rollbacks','Having my system configuration version controlled','An automated installer that you can configure with Nix.','Arch Linux, Ubuntu','Y','','','Y','','','','Y','','','','NixOS Options Search, NixOS package search, Niv','Haskell.nix','Keep up the great work!'),(534,'1980-01-01 00:00:00',5,'en','1847217645','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I like the idea.','','','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative system management','Declarative, ad-hoc environment management','','I would add much more documentation.','','','','','Y','','','','','','','','','','','Python, though that seems to be outdated.','Y','','','','N','I just haven\'t had to.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','Y','','','','','StumpWM','niv','','Thank you for doing this survey! :)'),(535,'1980-01-01 00:00:00',5,'en','1584259326','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend told me about it.','','','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','declarative system configuration','single point of entry for development','reproducible environments','add documentation','apt + /etc as git repo + a lot of sweat and tears','','','','Y','Y','','','','','','','','','simple self-written systemd units','','','Y','Y','','N','not knowing how to do something \"right\", what is the canonical way to add packages/overlays (code structure, conventions), too many ways to achieve one thing','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','a friend told me about it','Y','','Y','','','Y','','declarative system configuration','single point of entry','reproducible system states','add documentation','apt + /etc as git repo','Y','','','','','','','','','','xmonad','agenix','','keep up the great work!'),(537,'1980-01-01 00:00:00',5,'en','1060633702','A1','A2','male','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Curiosity','','Y','','','','','Y','Y','','','','','','','Y','','','Y','','Declarative configuration and packages','Atomic update and rollback','Nix shell','Native IPFS caching','Guix','','','','','','','','','','','','','','builds.sr.ht','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Curiosity','Y','Y','','','','','','Declarative configuration and packages','Atomic update and rollback','Nix shell','IPFS caching','Guix System','Y','','','','','','','','','','awesome','','mobile-nixos (lacking maturity; I might look into it again in the future)',''),(538,NULL,NULL,'en','274294126',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(539,NULL,NULL,'en','1712482614',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(558,'1980-01-01 00:00:00',5,'en','1083164070','A2','A3','male','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','Y','','','Easy rollbacks','Reproducibility','Easy to share configs between machines','100% somehow make nix work nicely with other package managers so that we didn\'t have npm2nix, node2nix, yarn2nix, bundlix, something for Rust, another thing for elixir... I know it\'s complicated, but it\'s extremely frustrating that everything has it\'s own specific flow that very often doesn\'t work (just take a look at open issues in various projects).\r\n\r\nAfter 6 months with Nix, I still cannot fully stop using asdf to install ruby and node because some npm package just cannot run when it\'s installed via nix. https://github.com/svanderburg/node2nix/issues/275 ','The thing I had before - combination of Ansible, some scripts and lots of docker containers (still do)','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','N','Lots of noise, pace of change, and nixpkg has its own way of doing many things, very often in various ways. It feels like each bigger module has its own system/approach. ','N','N','It firstly would have to work flawlessly standalone, I mean just nix+home-manager. My biggest worry then, Steam, it would probably take a lot of time to get everything run correctly in order to run \"complicated\" games like Sims or Cyberpunk. I\'m also using NVIDIA GPU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','node2nix, bundle2nix, bundix - lots of configuration, lots of \"noise\" when I simply want to installed dependencies for some random github project.','I love the ideas behind nix, but I\'m currently only half convinced \"nix\" in the current form is the way and I\'m unsure if it\'s worth the learning effort... '),(540,'1980-01-01 00:00:00',5,'en','206226974','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I stumbled across it together with NixOS (I don\'t know where), tried it for a while on my personal machine and got convinced to introduce it in our company, especially to make it easier to create test environments for less technical people on their MacBooks and to easily run legacy projects using pinned nixpkgs.','Y','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','Flakes, especially with pinned nixpkgs','Reproduce builds on any machine','Easy dev environments that can be separated per project','Interactive flake scaffolding. Apt-get update like preview of to be upgraded packages ','Regular Linux I guess','','','','Y','Y','','','','Y','','','','','','Node\r\nGo','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Stumbled across it and it grabbed my attention while shopping around as a distro to play with on my new desktop','Y','Y','Y','','','','','Generations and thus safe updates','Central configuration','Easy upgrades','','Arch','Y','','','','','','','','','','bspwm','','',''),(541,'1980-01-01 00:00:00',5,'en','1507489814','A2','A4','male','','','','','','Y','Y','','','','','','','','','Y','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using nix primarily in the context of NixOS, because I was fed up with my systems slowly degrading to the point of unusability and for the magic ability to recreate my current system (which is heavily customized to my needs) with a single command on a new machine.','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Declarative system configuration','Deterministic development shells','Ease of deployments (by just copying closures)','With a magic wand I\'d add a type system, since I\'d expect that to improve the discoverability of nixpkgs','- probably still Arch as the OS\r\n- containers to distribute applications\r\n- containers for CI\r\n- sweat, blood and language specific tools for development environments\r\n','','','','Y','Y','','','','Y','','','','','','poetry2nix https://github.com/nix-community/poetry2nix\r\nsbt-derivation https://github.com/zaninime/sbt-derivation','Y','Y','','','N','Didn\'t have the need until now','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','see my answer to the same question concerning my usage of Nix','Y','Y','Y','','','','','','','','','Arch','Y','','','Y','','','','','','','xmonad','flake-utils\r\nflake-compat\r\nnixos-shell\r\nnixos-generators\r\nnumtide/devshell\r\nMic92/sops-nix\r\nserokell/vault-secrets','',''),(542,NULL,1,'en','1009745453','A2','A4','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(543,'1980-01-01 00:00:00',5,'en','521003251','A2','A4','male','','','','Y','','','','','','','Y','','','','','Y','','Y','Y','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','company used it.','','Y','','','','','Y','','','','','','','','Y','Y','Y','Y','','declarative project environments','reproducibility','','add user friendliness and simplicity\r\nenhanced portability, at least to mac\r\nkeep power user capacities','Ubuntu package manager\r\nanaconda and ecosystem package managers','','','','Y','Y','','','','','','','','','','poetry2nix\r\nstackcabal2nix\r\nnode2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','felt natural after using nix as package manager, because I started managing everything with it.','Y','','','','','','','reproducibility','overrides','ease of pinning specific versions','','','','','','','','Y','','Y','','','','direnv integration','',''),(544,'1980-01-01 00:00:00',5,'en','747486849','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Got hooked by the reproducible aspect','','Y','','Y','Y','','Y','','','','','','HPC experiment','','Y','Y','Y','Y','','The nix store and everything around unique identifier','flakes','nix shells','Nix with types','guix','','','','','Y','','','','','','','','','','https://github.com/nix-community/poetry2nix','Y','Y','','','N','Did not needed yet','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was attracted by the configuration aspect, reproducible and all in one place.','Y','','','','','','HPC experiments','ease of configuration','','package availability (not really nixos related tho)','','Fedora','Y','','','','','','','Y','','','','','','Keep up the good work'),(545,'1980-01-01 00:00:00',5,'en','1113617538','A2','A4','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','','','','','','Y','','','Y','','Stateless rootfs (tmpfs)','Git bisectable','Easy to contribute','nixpkgs is *huge* and does not scale well (e.g. slow CI roundtrip times, having to wait 2 weeks for an update to nixos-unstable!), so I think it should be split into smaller repos (which is in the spirit of flakes anyway)','Obarun','','','','Y','Y','','','','Y','','Y','','','','crate2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(546,NULL,NULL,'en','1761935378',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(547,'1980-01-01 00:00:00',5,'en','825305860','A5','A3','male','','','','','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Haskell bandwagon was strong.\r\n\r\nI don\'t use Haskell much now, but stuck with Nix. ','Y','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','Reproducible builds','Strict dependency tracking ','Hash magic ','Use `bear` style build tracing in a FHS container to detect ( most ) dependencies.\r\nBasically you can just `ptrace` and `grep` file read attempts to scrape the bulk of them.\r\n\r\nDrastically improve documentation. ','I would have to use a dozen different tools to fill that gap.\r\n\r\nI\'d honestly wind up creating shit loads of VMs or user profiles like I did previously.','Y','Y','','Y','Y','','Y','','','','Y','','','','Node2nix\r\nYarn2nix ( broken now ) \r\nCabal2nix\r\nGem2nix ( or whatever the broken ruby one used to be )','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Ubuntu blew up and all the Haskell nerds were using NixOS. ','Y','Y','Y','Y','','Y','','','','','Building \"chunks\" of a system within a single config. Home Manager helped here; but with flakes there\'s no separation anymore. ','Debian ','Y','Y','','','','Y','','','','','DWM, XMonad ','','NixOps','You have something in your teeth '),(548,'1980-01-01 00:00:00',5,'en','447917873','A2','A3','male','','','','','','Y','','','Y','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was on Gentoo before discovering NixOS. The package manager kept breaking and required more and more manual interventions. I liked the philosophy of the Nix package manager, and also having administered some GNU/Linux servers of different distributions (and also having quite a bit of dotfiles), the declarative configuration of NixOS seemed particularly interesting. I haven\'t left NixOS as a primary distro since, and am currently working on a Nix packaging solution for internal use at my company, that might hopefully be useful in the future outside in the scientific field.','','Y','','Y','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','','Y','','reproducibility','easy deployment of a closure','flakes','- Better documentation (user documentation, developer documentation, references, guides)\r\n- Stabilized Nix flakes\r\n- A clearer way of packaging apps using flakes (overlay vs. package)\r\n- More consistent reviewers and mergers','Traditional deb/rpm packaging? Or maybe flatpak.','','','','Y','Y','','Y','','Y','','','','','','- poetry2nix: https://github.com/nix-community/poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was on Gentoo before discovering NixOS. The package manager kept breaking and required more and more manual interventions. I liked the philosophy of the Nix package manager, and also having administered some GNU/Linux servers of different distributions (and also having quite a bit of dotfiles), the declarative configuration of NixOS seemed particularly interesting. I haven\'t left NixOS as a primary distro since, and am currently working on a Nix packaging solution for internal use at my company, that might hopefully be useful in the future outside in the scientific field. NixOS is currently only used for CI (Gitlab CI).','Y','Y','Y','','','','','the module system','NixOS tests','rollbacks','- Better documentation (user documentation, developer documentation, references, guides)\r\n- More consistent reviewers and mergers\r\n- RFC42 everywhere\r\n- Long-term support releases, for adoption in companies','Probably Debian for servers and Arch for desktop','Y','','','','','Y','','','','','sway','- home-manager: https://github.com/nix-community/home-manager/\r\n- NUR: https://github.com/nix-community/NUR\r\n- musnix: https://github.com/musnix/musnix\r\n- flake-utils: https://github.com/numtide/flake-utils/\r\n- robotnix: https://github.com/danielfullmer/robotnix','','Thank you so much for your work! I think a community survey is quite welcome'),(549,NULL,NULL,'en','1208217700',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(550,NULL,NULL,'en','1865418683',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(551,'1980-01-01 00:00:00',5,'en','1762235352','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Macports was broken more and more, came across nix, read good things about it and got it running quick.','Y','Y','','','Y','','Y','Y','','','','','','','Y','','','Y','','pinning exact versions','nix shell ','nix shell in the hashbang of e.g. python scripts','Better documentation with more examples\r\nnix installer should also be runnable as root\r\na static analyzer for derivations, e.g. warn when there were unused attributes. i spent hours chasing a \"bug\" when it was only a typo in an overridden attribute','guix?\r\nzypper\r\nmacports','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'homa-manager\r\ndarwin-nix\r\nemacs-overlay','',''),(552,NULL,4,'en','1341458549','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(553,NULL,2,'en','1703187624','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','Hobbyist programmer','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','','','To manage my system via flakes','A2','I love the reproducibility\r\nLegit makes my life more convenient, even if I still have a lot to learn, and I struggle to understand some concepts, but that is fine. ','','Y','','','','','','','','','','','Home desktop','','Y','','','Y','','How easy it is to use ZFS, no need to worry about kernel mismatch and such','Ability to declaratively configure system','Ability to specify what I want to use for nixpkgs, e.g whether to use unstable, or 21.11, without much issues','Not per se add, but more of, create more, easily accessible tutorials, with low entry level. While documentation is nice, tutorials also can be very helpful, especially to the ones that need some practice, to see how things are done first to really get grasp on things','Gentoo, But that is because its about second distro that I like most, and ZFS also was pretty pain-free to set up there.','','','','','Y','','','','','','','','','','','','Y','','','N','Lack of my understanding, and maybe resources to actually understand those things properly,\r\nBut that will change with time, I Just need to work on it myself more',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(554,NULL,2,'en','557311162','A2','A4','male','','','','','','Y','Y','Y','Y','Y','Y','','','','','','','Y','','','','','','','','Y','Y','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I dove deep into functional programing, mainly using Haskell.\r\nNixOS is frequently used by that community and it caught my interest due to it\'s declarative and reproducible nature.\r\n\r\nSo I started using it mainly as a package manager and system configuration tool on my MacOS machines.\r\n\r\nI\'m using NixOS and NixOps to manage a small number of Raspberry Pi:s for different home automation tasks at 2 locations.\r\n\r\nI have later also switched one of my personal non Mac systems over to NixOS.','Y','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','Declarative system configuration and management','Software packaging and build tool','Ease of mind with regards to any fears related to upgrades and experimentation','- Make cross-compiling to AArch64 always work.\r\n- No more breaking package builds on Darwin.\r\n- Improve the static verification of the Nix programs. Maybe some kind of static type system.','I have used tools like Vagrant and Ansible to solve these tasks previously. I would probably be stuck there if Nix didn\'t exist.','','','','','Y','','','','Y','','','','','','npm2nix\r\ngo2nix','Y','Y','','','N','Haven\'t had the time or energy to produce anything of the quality that I feel are appropriate.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(555,NULL,4,'en','1248149921','A2','A3','male','','','Y','Y','Y','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y','','Y','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','Y','','A2','','Y','Y','','','','','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(556,NULL,NULL,'en','977640127',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(557,NULL,2,'en','188913812','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','N','N','More tutorials -- time is at a premium, need to know there\'s a guide that\'ll take me to where I want to get.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(559,NULL,0,'en','1425979976','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(560,'1980-01-01 00:00:00',5,'en','882520057','A2','A2','male','','Y','Y','','','','Y','','','Y','','','','','','','','','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I loved Haskell and a friend recommended Nix to me. I found out I also loved Nix.','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','','','','','','','krops','','','','I3','','',''),(561,NULL,2,'en','1208352503','A2','A2','male','','','','','','','','','','Y','Y','','','','','','','Y','','','','','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was developing a Haskell project and was disappointed with Windows and Arch Linux.','','','','','','','Y','','','','','','','Y','Y','Y','','Y','','nix develop (nix-shell with flakes)','Declarative system management (NixOS)','nix profile (nix-env with flakes)','','I\'d stick to other minimal Linux distros and I\'d try Guix','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','I didn\'t find a package I missed in nixpkgs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(562,'1980-01-01 00:00:00',5,'en','1838761698','A2','A4','male','','','Y','','','Y','Y','Y','','','Y','','','','','Y','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','i love declarative stuff, and geeky, minimalistic, programmable OS installs','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','reproducibility','declarative as code (and via flakes)','being able to reproduce a complete multi-stack dev setup, iso-prod','more docs/how-to that *still works* after 6 months, far better error messages.','docker(-compose), still do sometimes due to its omnipresence and simplicity','','','','','Y','','','','','','Y','','','','haskell2nix','Y','Y','','','N','I wanted to, but I stopped because I didn\'t want to do the trial and error loop locally (bad idea). I wanted hydra to tell me, but it took to much time and abandonned since. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I loved using nix to manage reproducible haskell/rust/... projects for dev environments/CI and wante to apply the idea further.','Y','','Y','','','','','immutable, rollbackable boot','minimalism, grow by composition of multiple decentralized sources (flakes)','big package set, nicely activable in a unified config','more packages, faster feedback loop for nix rebuild switch, better error messages, better, more stable docs.','arch, (defunct) coreos, linuxkit, rancher-os','Y','','','','','','','','','','i3 + some gtk/gnome stuff','','','thanks :) nix is an amazing idea!'),(563,NULL,2,'en','1093397793','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','','Y','','Y','','','Y','Y','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','N','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(564,'1980-01-01 00:00:00',5,'en','1721003449','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','an evangelist forced it on us','','Y','','Y','','','Y','Y','Y','','','','','Y','Y','Y','','Y','','atomicity','dependency','no damage to the system','better caching wihtout using experimental flakes\r\nno functional programming','nothing','','','','','Y','','','','Y','','','','','','go\r\npython','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','tried all linux distros, nixos is better to work with nix','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(565,'1980-01-01 00:00:00',5,'en','107445835','A6','A3','fem','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Was frustrated at Arch suddenly not working one day and I couldn\'t rollback.','Y','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Reproducibility and the ability to rollback.','Easy system configuration using modules.','Huge number of packages.','- A typed configuration language with first-class IDE support\r\n- Make everything flake-first\r\n- Borrow ideas from Guix heavily','Guix\r\nArch','','','','Y','Y','','','','','','Y','','','','https://github.com/DavHau/mach-nix/','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Sway','home-manager','',''),(566,'1980-01-01 00:00:00',5,'en','684075117','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(567,'1980-01-01 00:00:00',5,'en','1701690760','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','was pulled in by the concept of nixos, a declarative, reproducible configuration for my system and have been hooked ever since','','Y','','','','','','','','','','','','','Y','','','Y','','declarative configuration for my system with nixos','nix development shells','source based package management providing easy modifications','definitely documentation of some of the less documented features like flakes','','','','','','Y','','','','','','','','','','','Y','Y','','','N','recently started using nix and hence lacking in the required knowledge','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','pulled in by the novel concept of a declarative configuration and had an itch to try something different from the rest of the distributions','','','','','','','home pc','a single configuration file to manage my entire system with rollback functionality','easy way to modify packages','reproducibility','documentation for flakes and the other less documentated features like specifications','Fedora linux','Y','','','','','','','Y','','','i3/sway','home manager','not really any','you are doing a great job! i hope to be able to contribute in some way in the future'),(568,'1980-01-01 00:00:00',5,'en','1258770366','A2','A3','male','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','Y','','Declarative change mamagement','','','','','','','','','Y','','','','','','','','','','yarm2nix','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','Y','Y','','Y','','Y','','','Y','','i3','','',''),(569,'1980-01-01 00:00:00',5,'en','114860531','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Initially got interested as Nix seemed to be the only sane way to use GHCJS, then got sucked into using the Nix package manager for more and more things, and finally migrated everything to NixOS :)','Y','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Declaratively specifying software environments','Reproducibility','Caching','Add some form of type system to Nix (cf. Nickel)','It feels hard to go back to anything else, so right now, I would probably check out Guix ','','','','Y','Y','','Y','','','','Y','','Y','',' - haskell.nix https://github.com/input-output-hk/haskell.nix\r\n - npmlock2nix https://github.com/nix-community/npmlock2nix\r\n - naersk https://github.com/nix-community/naersk','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','On local machines: Got tired of using a usual dotfiles approach of sharing configuration between different files (not all config is part of dotfiles; often, small modifications on some machine are necessary which is quite ugly to accomplish without weird templating/lots of copying).\r\nOn personal servers: Losing track on what I installed on which server, not being able to share e.g. port values between different configuration bits\r\n\r\nNixOS solves all of these issues and much more!','Y','Y','Y','','','','','Sharing Nix code between different machine setups','Atomic upgrades and rollbacks','Easily patching installed packages (older/newer versions), without having to worry about compatibility','Some magic form of garbage collection/deduplication','Probably going back to Arch','Y','','','Y','','','','','','','i3',' - home-manager https://github.com/nix-community/home-manager/\r\n - nix-direnv https://github.com/nix-community/nix-direnv\r\n - emacs-overlay https://github.com/nix-community/emacs-overlay/ (especially the use-package integration)\r\n - the easy-{purescript,dhall}-nix projects are nice when nixpkgs is lacking behind\r\n - Cachix\r\n - nix-index and comma\r\n - nixpkgs-fmt https://github.com/nix-community/nixpkgs-fmt','',''),(570,'1980-01-01 00:00:00',5,'en','364153548','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','functionnal','Y','Y','','','','','Y','Y','','','','','','Y','Y','','','Y','','nix-shell','nix-env','RO and functionnal system for nixos','','OpenBSD or guix','','','','','','','Y','','','','','','','','','Y','','','','N','time','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','using nix-shell for build stabillity over different build env','Y','Y','','','','','','RO system','Configuration from /etc/nix','','','OpenBSD','Y','','','','','','','','','','spectrwm','','',''),(571,NULL,-1,'en','420936468','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(572,'1980-01-01 00:00:00',5,'en','427010314','A5','A3','male','','','','','','','','Y','','','','','','','','','','','','','','','','','Twitch Streamer','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Gaming','A1','I was an arch user for ages, and I saw Nix, and decided to give it a shot. Long story short, I discovered I loved being able to configure my system from a config file basically and that sold me.','','Y','','','','','Y','','Y','','','','Gaming PC','','Y','','','Y','','Ready-to-Use almost immediately','Local Environments','Reproducibility.','A GUI package manager, or at least a simpler way of building a system - Right now it\'s quite verbose, and it feels like it could be simplified without compromising the quality of the OS. For example, a the GUI could load your Nix files, and by reading it represent the objects within it as, for example, checkboxes for booleans, submenu\'s for included files, and so on. It could allow easy modifications, and prevent syntax errors. It could even offer autocomplete in terms of saying \"I want this package\" and it could provide a bunch of defaults for the user to configure.','Arch Linux','','','','Y','Y','','','','','','','','','','dotnet2nix - The one suggested in the manual.','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Gaming','A1','I liked the idea.','Y','','Y','','','','Gaming','','','','','Arch','','','','','Y','','','Y','','','I\'d love to use Budgie','','deploy-rs',''),(573,'1980-01-01 00:00:00',5,'en','499447903','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Back in 2019, I got a brand new laptop (Dell XPS13) and if I recall clearly, the latest NixOS image was the only one which worked right out of the box. Also, I was seeing more and more people talking about it online, so I wanted to try it. ','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','','','Y','','nix-shell with a shell.nix + direnv','nix-shell to test packages easily','','','Guix or Debian + ansible','','','','','','','','','Y','','','','','','','Y','','','','N','I\'m not sure I would have the time maintaining them correctly afterwards.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same story as nix :-)','Y','Y','Y','Y','','','','Declarative configuration (configuration.nix / home-manager)','Complexity is well hidden for a lot of things','','I would like something like `guix deploy` but easier to configure. It\'s been a while since I last tested nixops and morph, so maybe these projects could fit the bill now.','Debian','','','','','','Y','','','','','bspwm','home-manager','','Thanks you for Nix and NixOS!'),(574,'1980-01-01 00:00:00',5,'en','1034935891','A2','A4','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','because it looks like a good idea','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','Arch Linux','','','','','Y','','','','','','','','','','','Y','','','','N','- Maybe I underestimate my Nix skills\r\n- I am using NixOS stable on my machines, I think contributions will go to unstable, so it will have to maintain my own overlay anyways\r\n Maybe this can be worked around somehow using flakes but I don\'t understand it well enough.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Tired of long setup of new machines or porting configuration snippets between machines.','Y','','Y','','','','','','','','','','','','','','','','','','','','i3wm','','',''),(575,NULL,1,'en','2008901491','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(576,'1980-01-01 00:00:00',5,'en','485379939','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','To have less state on my personal machine','','Y','','','','','Y','','','','','','','','Y','','','Y','','Declarative system configuration','Large, up-to-date package selection','Easy roll-back','Reduce complexity of tooling','Ubuntu or Arch (with traditional package managers)','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','To have less state on my machine and to learn about Nix','Y','','','','','','','Declarative configuration','Large, up-to-date package selection','Easy roll-back','Reduce size of Nix store','Ubuntu or Arch','','','','','','','','','','','Sway','','',''),(577,'1980-01-01 00:00:00',5,'en','1168751331','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Developer, build systems','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I originally tried nix 6~7 years ago, when I wanted a way to install more up-to-date versions of git and emacs on my accounts on university computers without constantly manually building them. Sadly there was a file quota as well as a disk space quota, which nix blew through very quickly with its symlink farms, especially at the time, so it left a bad impression and I left for a gentoo prefix quite quickly.\r\n\r\nThen a few years ago I met a few people from CERN (if I recall correctly) at a conference, who were apparently using nix and explained it to me from a different perspective. That got me much more interested.\r\n\r\nI\'ve always needed a way to make my dotfiles work on many devices with minor patches between all of them, and was getting tired of rebasing branches against each other. I was also interested in managing my VPSes declaratively, which I was pretty sure was impossible after trying Fedora silverblue, kubernetes & co, which I found to largely only help with declaratively managing services, not the hosts themselves. I\'ve never liked ansible conceptually either.\r\n\r\nNix + home-manager seemed to fill that former niche perfectly, and once I started using it for the former use case I quickly realized just how powerful nix was, and how many of my gripes with traditional OS management NixOS solves. Within a couple of months I\'d installed NixOS everywhere and it became my go-to for everything (hopefully even my phone one day!) - pure nix still sees use where I can\'t control the OS of course :)','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','Y','','The declarative configuration management that makes NixOS/home-manager possible','Transient, shareable development environments using nix-shell/nix develop','(Mostly) reproducible software builds. It falls a bit short due to the common use of FODs and lack of convenient source mirroring, but is better than bazel and more readily usable than buildstream.','I\'d really consider removing nix-env, or at least magically turn it into less of a footgun for new users.','*Maybe* ansible, assuming guix doesn\'t exist either?','','','Y','Y','Y','','','','','','Y','','','','https://github.com/svanderburg/node2nix\r\nhttps://github.com/nix-community/naersk - intend to move to cargo2nix one day\r\nhttps://github.com/tadfisher/gradle2nix - well, at least I try and fail to package something Java related every few months','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','This is a copy of my nix story, since I of course use them at the same time - after learning how powerful nix is and experimenting with home-manager on Arch, I quickly switched to NixOS everywhere.','Y','','Y','Y','','','','Convenient, traceable downstream modifications, from configuration to packages','Usable mixing of stable/unstable packages','Declarative, minimal creation of container images (both NixOS containers and dockertools-based ones)','I\'d add a useful way to build, install and manage flatpaks.','If guix doesn\'t exist either, probably gentoo/arch, perhaps I\'d give Fedora silverblue another shot.','Y','','','','','','','','','','stumpwm','https://github.com/nix-community/home-manager\r\nhttps://github.com/berberman/nvfetcher','https://github.com/tadfisher/gradle2nix - gradle\'s fault for being unusable\r\nhttps://github.com/DavHau/mach-nix - nixpkgs\' python support is good enough for me most of the time\r\nhttps://github.com/NixOS/hydra - lacked a way to declaratively define a gitea access key without exposing it to the nix store at the time (and still does? I think I opened an issue...)','Thanks for all these cool projects :)'),(578,NULL,2,'en','980864449','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','In the beginning it was about exploring something new. I was distro-hoping, and I think that I felt that I didn\'t see much new when switching distros then.','','Y','','','','','Y','','','','','','Allround PC','','Y','Y','','Y','','Almost total control of my system','Access to an insanely huge package repository','Easily create development environments that doesn\'t pollute the rest of the system.','I feel that it\'s hard to read and understand Nix code. I don\'t know if it\'s the result of how the language itself, or lack of development tools and documentation. I get the feeling that whenever I read some nontrivial Nix code, a lot of stuff happens in the background so I don\'t know what context stuff is.','Would Nix have existed, and then disappeared? Or the concepts of Nix never had been developed?\r\n\r\nGuix, or something similar, in the first case.\r\n\r\nOtherwise I don\'t really know. Fedora or Void I think.','','','','Y','Y','','Y','','','','','','','','I probably use a lot of them, but I don\'t know a method for searching for them in the Nix store.','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(579,NULL,NULL,'en','1601692502',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(580,'1980-01-01 00:00:00',5,'en','287444862','A2','A3','male','','','','','','','','','Y','','Y','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','Declarative and unified system configuration','Easy to deploy to other machines with tools like NixOps','','- Better support for language-specific dependency management; the *2nix tools are not particularly pleasant to use\r\n- Make buildRustPackage (and similar language-specific) packages reproducible\r\n- Support or at least documentation for building projects that use than one language e.g. backend with bundled frontend\r\n- A syntax revision of the Nix expression language similar to ReasonML/ReScript\r\n- Add types to the Nix expression language\r\n- Better documentation and discoverability for the stdlib functions and everything used to build packages','','','','','','','','','','','','','','','','opam2nix (https://github.com/timbertson/opam2nix), buildGoModule, buildRustPackage','Y','','','','N','Packages for my personal overlay are usually highly specific to my setup and I\'m not particularly willing to spend time on making them generic enough to have a place on Nixpkgs.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','I was drawn in by the promise of having a single configuration file for the whole system. I always disliked the mess of software wanting custom installation methods that lived outside of the package manager and all the little tweaks to /etc files I\'d make and then forget every time, and since NixOS had a solution to that I started using it on my laptop.\r\nFurther down the line I also started using it for my servers because it makes it easy to tell what I\'m actually running on a server; I tend to just leave them running for months and sometimes I forget how to even access them so when I have to make changes I can easily tell what\'s going on by just looking at the configuration file.','Y','','Y','','','Y','','','','','','','','Y','','','','','','','','','XMonad','','',''),(581,NULL,1,'en','382687754','A2','A4','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(582,'1980-01-01 00:00:00',5,'en','26557852','A2','A4','-oth-','non-binary','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I learned of NixOS at FOSDEM 2011 or 2012, and as a way to learn it, immediately replaced the OS on my work laptop (Ubuntu at the time) with NixOS to force myself to have to learn.\r\n\r\nI never went back; it\'s now on personal and work laptops, home server, cloud servers and raspberry pis.','','','','','Y','','Y','','Y','Y','','Y','','','Y','Y','','Y','','','','','','apt/ubuntu','','','','','','','','','','','','','','','node2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I learned of NixOS at FOSDEM 2011 or 2012, and as a way to learn it, immediately replaced the OS on my work laptop (Ubuntu at the time) with NixOS to force myself to have to learn.\r\n\r\nI never went back; it\'s now on personal and work laptops, home server, cloud servers and raspberry pis.','Y','','Y','Y','','Y','','','','','','','Y','Y','','','','','','','','','i3wm','home-manager','',''),(583,NULL,1,'en','1054550552','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(584,'1980-01-01 00:00:00',5,'en','208271339','A1','A4','male','','','','','','','','','','Y','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Grew up with Windows, had tried various linux distros over the years, but none stuck with me. Liked the direction WSL was headed in but was frustrated with the limited Linux experience WSL offered; found NixOS, and the way it lets me mess up and roll back (especially with the OS config under git version control) gave me the confidence to switch to NixOS full time.\r\nOnly two things keep me dual-booting to Windows; the desire to keep work and home separate, and not enough disk space to keep both Steam and a lenient NixOS garbage collector.','','Y','','','','','Y','','Y','','','','','','Y','','Y','Y','','Determinism (\"what\'s in this file is *all* you need, now and ever, to do the things described in the README\")','Painless experimenting & rollback, like \"nixos-rebuild test\" and the \"generation\" option offered at boot time','A neat way to output multiple json/yaml/whatever files, without introducing the drama of an effectful turing-complete language','I would add some kind of context-aware \"intellisense\" feature to the tools that edit `.nix` files.','probably WSL2 + multiple (identical?) distros','','','','','Y','','','','','','','','','','https://github.com/cachix/elm2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Grew up with Windows, had tried various linux distros over the years, but none stuck with me. Liked the direction WSL was headed in but was frustrated with the limited Linux experience WSL offered; found NixOS, and the way it lets me mess up and roll back (especially with the OS config under git version control) gave me the confidence to switch to NixOS full time.\r\nOnly two things keep me dual-booting to Windows; the desire to keep work and home separate, and not enough disk space to keep both Steam and a lenient NixOS garbage collector.','Y','','Y','','','','','Determinism (\"what\'s in this file is *all* you need, now and ever, to do the things described in the README\")','Painless experimenting & rollback, like \"nixos-rebuild test\" and the \"generation\" option offered at boot time','Painless experimenting & rollback, like \"nixos-rebuild test\" and the \"generation\" option offered at boot time','I would add some kind of context-aware \"intellisense\" feature to the tools that edit `.nix` files.','probably WSL2 + multiple (identical?) distros','Y','','','','','','direnv','','Y','','','','home-manager',''),(585,'1980-01-01 00:00:00',5,'en','565740588','A5','A2','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I\'ve always despised installing software, I can\'t stand normal package managers putting files all over the filesystem. I found nixos 3-5 years ago, but it was over my head, but I kept taking stabs at it intermittently in hopes that I could make it work. Recently, I needed to completely redo my home server, and I took the opportunity to make it Nixos instead of FreeBSD. That snowballed, and I switched my main personal laptop from Gentoo to Nixos. Ever since, I\'ve been starting my programming projects with default.nix or more recently flake.nix.','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','reproducible builds','declarative environments','Independently updatable programs (via flakes)','Nix needs static typing. It can be very aggravating to track down type errors, especially in nixos modules, without static type checking. ','Docker','','','','Y','Y','','','','','','','','','','n/a','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I found nixos 3-5 years ago, but it was over my head. The promise of a single configuration file to describe a whole system was too good to pass up, so I kept taking stabs at it intermittently in hopes that I could make it work. Recently, I needed to completely redo my home server, and I took the opportunity to make it Nixos instead of FreeBSD. That snowballed, and I switched my main personal laptop from Gentoo to Nixos. In the process, I learned a lot about managing NixOS, and it\'s made all the difference.','Y','','Y','','','','','Centralized, declarative configuration','Modules','Rollbacks','Conventions between the different modules vary greatly, leading to an inconsistent experience. When I set up my servers, I\'ve often resorted to reading the module\'s source.\r\n\r\nI think NixOS would benefit greatly from some standardized conventions and better documentation.','I don\'t think there\'s any alternative to Nixos, so I\'d probably just settle for Debian and compartmentalize with VMs or containers to make management easier.','Y','','','','','','','','','','Sway','home-manager','','I really like flakes, but the way they were introduced and the conflict they created makes me a little worried about the future of the project. I think changes are best made well after everyone\'s tired of waiting. Maybe not as slow as Go is (see generics proposal), but certainly closer to their approach is better, in my opinion.'),(586,'1980-01-01 00:00:00',5,'en','1832711303','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I want full reproducibility of my entire environment everywhere I go.','','Y','','','','','Y','Y','','','','','','','Y','','','Y','','nix-shell','nix flakes','nix run','better documentation, --> EXAMPLES! <-- on how to use various functions of the nix language. It\'s super hard to find out how to use `buildGoModule`, or some other in-built function.\r\n','idk, would probably google some substandard environment manager and use that - I\'m really tired of nvms/pyenvs and what not. Doing dev stuff inside a container, maybe?','','','','','Y','','','','','','','Y','','','','','Y','','','N','poor documentation of nix functionalities, especially - lack of examples','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','told ya - I want my environment to be reproduced exactly, wherever I go.','Y','Y','','','','','','','','','Please, provide people with an easy way to install .deb packages the same way one can \"fetchFromGitHub\" - or, more generally, stuff that\'s been compiled and dynamically linked for the \"regular\" GNU/linux distributions. Preferably with a clear, full-featured example on your wiki.','guix. Or maybe artix','Y','','','','','','','','','','bspwm','','various $2nix projects - they\'re simply undocumented or plain outright deprecated.','just three things:\r\n- EXAMPLES, EXAMPLES, EXAMPLES! I love the way terraform docs do it, for instance\r\n- easy way to install \".deb\" packages\r\n- let us run stuff that\'s been dynamically compiled for other distros - such as ubuntu/debian. Some premade \"compat\" flake?\r\nThank you for your work, guys! You people are awesome.'),(587,'1980-01-01 00:00:00',5,'en','158356901','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Started using NixOS and Nix as a result of that','','','','','','','Y','','','','','Y','','','Y','Y','','Y','','Home Manager configuration','Ephemeral shells/nix-shell','Integration with languages/toolchains (*Packages.*)','Improved documentation for specific Home Manager modules, especially for adding missing packages/extensions','GNU Guix package manager','','','','','','','','','','','','','','','cabal2nix https://github.com/NixOS/cabal2nix\r\nnode2nix https://github.com/svanderburg/node2nix\r\ndconf2nix https://github.com/gvolpe/dconf2nix','','','','','N','Lack of knowledge/skill','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Started with Manjaro as first Linux distribution but got frustrated with the method of package management and moved onto NixOS after seeing a video by DistroTube. Haven\'t been back to Windows or FHS since.','Y','','','','','Y','','Declarative + safe configuration with configuration.nix','Integration with Home Manager','Rolling back from the boot menu','- Making it easier to sort out problems with running standard executables, e.g. those that IDEs like Intellij IDEA download automatically\r\n- Quick modular/testing rebuilds to quickly try small changes before turning it into a full generation','Guix System','Y','','','','','','','','','','Openbox, Sway','Home Manager','','Nix, NixOS, Home Manager, etc. are amazing contributions to the Linux and MacOS community, especially given they\'re free!'),(588,'1980-01-01 00:00:00',5,'en','1396689801','A2','A4','male','','Y','','','Y','','','','','','','','','','Y','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','deterministic builds','','','switch from nix to PureNix','Guix','','','','Y','Y','','','','','','','','','','poetry2nix\r\nmachnix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','full system rollback','development environments','','switch from nix to PureNix','Guix','Y','','','','','','','Y','','','','','',''),(589,'1980-01-01 00:00:00',5,'en','1367741259','A1','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I\'ve started to use Nix with NixOS, so I will post full story on next page','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Nix develop and nix-shell -p','','','Fully-typed language with IDE-like autocomplete. Maybe something like Typescript for Nix.','Docker and probably Ansible','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted to create personal vpn server, and was looking for a way to escape imperative configuration and package management. I already used Docker containers at work and thought of using Docker here as well, but luckily I\'ve stumbled onto some nix-related HN post. After successfully installing my VPN and using it for a couple of months, I\'ve switched my work machine to NixOS as well.','Y','','Y','','','','','Declarative configuration and package management','NixOS generations rollbacks','','Fully-typed language with IDE-like autocomplete. Maybe something like Typescript for Nix.','Arch Linux','Y','','','','','','','','Y','','','Nixpkgs','',''),(590,'1980-01-01 00:00:00',5,'en','359527626','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','The initial reason I forgot, but it was to use NixOS and I enjoyed the declarative nature and being able to roll back breaking changes at startup. I was probably also using nix with haskell. I stopped using it for a few years and now I\'m back, and this time initially started using it to manage my dotfiles with home-manager, now I\'m managing all my machines (except the one windows gaming drive) with nix config in git.','','','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','','','','Finish Nickel and replace the Nix language with it.\r\n\r\nA more polished version of https://github.com/nix-gui/nix-gui seems like it could massively improve adoption among more typical linux users. ','Maybe Guix but I\'m not familiar with it. Excluding that, probably Arch for personal machines and Debian with docker for servers.','','','','Y','Y','','','','Y','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','','','','','','','','','','Y','','Y','','','','','Y','','','Sway','home-manager','NixOps',''),(591,'1980-01-01 00:00:00',5,'en','313761800','A2','A3','male','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','Y','','','','','','','','','','Y','','','Y','','Y','','','','','XMonad','','',''),(592,'1980-01-01 00:00:00',5,'en','1788986762','A2','A2','male','','','','','','Y','','','','','','','','Y','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A couple of students from my school used it so I switched. Was hard to get in but was very interesting. No regrets.','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','','','- more documentation\r\n- faster language interpretation\r\n- cleaner errors messages','Other IaC tools, like ansible, GNU Stow, etc.','','','','Y','Y','','','','','','','','','Drone','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Couple of people from my schools used it, so I switched :).','Y','Y','Y','Y','','','','reproducible builds','extremely customizable distribution / packages','a lot of things are already packaged for NixOS (and others I try to contribute)','- more documentation about the language and nixpkgs idiomatisms\r\n- Better errors messages\r\n- faster nix evaluation','Other IaC tools like Ansible, Packer, Docker etc.','Y','','','','','Y','','','','','i3','Not much I can think of.','Not much I can think of.','Let\'s keep on the good work !'),(593,NULL,1,'en','895237619','A1','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','Y','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(594,'1980-01-01 00:00:00',5,'en','1615938646','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A3','Project at work was configured to build release version with nix','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','','','','package management','flakes as declarative and complete definition of dev environment','flakes as a mean to build project for further deployment','1. LSP for nix (language)\r\n2. some notion of type-checking - as a beginner in writing complete flakes I made many errors that could have been avoided if only there was typechecking in place','Mix of three:\r\n - encapsulation tools offered by language-specifing tooling (npm + nvm, the way sbt works, rustup, etc.)\r\n - Docker \r\n - ansible + (maybe) some form of containers','','','','Y','Y','','','','','','','','Y','','node2nix (https://github.com/svanderburg/node2nix)\r\nsbt-derivation (https://github.com/zaninime/sbt-derivation)\r\n','','','','','N','My personal usage of nix is still very limited, so I haven\'t run yet into situations, where I would need to contribute','N','N','Being in possession of Linux workstation or official \"NixOs on macOS\" thing. As a mac owner, who values the UX and UI of macOS, where things work for me \"good enough\" for my needs - I find it hard to find motivation (and time) to try even the Home Manager.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'This documentation of builtin functions - https://teu5us.github.io/nix-lib.html#nix-builtin-functions. I find it very helpful, and yet I was somewhat surprised it\'s not part of official documentation.','sbtix',''),(595,'1980-01-01 00:00:00',5,'en','1333791019','A2','A2','-oth-','Feminin non-binary','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','In 2017 a friend in a hackspace set up a NixOS machine to host the local git service and I got interested. Then he guided me through an installation on my old laptop. I used it for a few months, then ended up back at Arch. At some point in the beginning of the pandemic I switched to NixOS again, when we started using Nix at work to run large Mail and DNS setups.','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','nix-shells to grab software on the go and have the garbage collector bringing it out again later','Building and packaging janky software becomes less of a pain','Proper working dev environments on all my and my colleagues computers!','','I used a lot of Ansible before.','','','','','Y','','','','','','','','','','pip2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','In 2017 a friend in a hackspace set up a NixOS machine to host the local git service and I got interested. Then he guided me through an installation on my old laptop. I used it for a few months, then ended up back at Arch. At some point in the beginning of the pandemic I switched to NixOS again, when we started using Nix at work to run large Mail and DNS setups.','Y','Y','Y','Y','','','','Reproducibility of my computers: My desktop feels exactly the same as my laptop and work laptop.','Easy Rollbacks','Easy Overlays/patches for stuff that’s broken on upstream. Try that on Ubuntu..','','Arch Linux','Y','','Y','','','','','','','','Sway','','','meow <3'),(596,'1980-01-01 00:00:00',5,'en','2034105111','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','N','time','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','','','','standardized templates for setting up machines instead of everyone doing things slightly different','gentoo (still use it for some systems)','','','','','','Y','','','','','sway','','',''),(597,NULL,1,'en','539789822','A1','A3','male','','','','','','','','','','','Y','','Y','','','','','Y','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(598,NULL,1,'en','194700797','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(599,NULL,NULL,'en','1710032537',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(600,'1980-01-01 00:00:00',5,'en','185995541','A2','A2','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','To have a reproduceable system.','','Y','','Y','','','','','','','','','Personal Computer','','Y','','','Y','','Automatisation','Reproduceability','','I would add a wrapper around nix, so that i could use whatever Configuration / Programming language i would be comfortable with.\r\nAlso; improving the documentation as well as (most likely) embed the home-manager natively.','I don\'t think there is something similar to Nix, so i am not sure.','','','','','','','','','','','','','','','','','','','','N','My lack of knowledge in Nix.\r\nI am looking forward in improving Nixpkgs in the future.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','The same reason as i started using nix.\r\nI want to have a reproduceable, automated system.','','','','','','','Personal Computer','Automatisation','Reproduceability','','Being able to set up a temporary environment in which i can e.g. communicate with the x-server and / or wayland.\r\n','Either GUIX, or i would just stick to Windows.','Y','','','','','','','','','','As of rn: LeftWM (x11)','','',''),(601,NULL,1,'en','1606819507','A2','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(602,NULL,2,'en','671465462','A2','A2','male','','','','','','','','Y','','','','','Y','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Wanted to stop having my config all over the place, wanted to be able to worry less about how to redeploy my server after catastrophic failure.','','Y','','','','','','','Y','','','','','Y','Y','','','Y','','Package management','having multiple versions of same dependency without issues','Immutability','','Guix','','','','','','','','','','','','','','','','','','','','N','Still getting to know nix(OS)','Y',NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(603,'1980-01-01 00:00:00',5,'en','2077606075','A2','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Flakes became stable enough that I could give it a go. Found it much more straightforward than the old way of doing things, which I had tried and given up.\r\n','Y','Y','','','','','Y','','','','','','','','Y','Y','','','','Complete environment definition on a build','Simple language (Nix itself, not considering Nixpkgs functions)','Fast switch between projects','* Remove non-flakes \"legacy\" documentation from initial tutorials\r\n* Add types to Nix itself\r\n* Provide easier way to discover code than `nix repl` and tab-completing things from Nixpkgs','Guix','','','','Y','Y','','','','','','','','','Drone','','','Y','','','N','Intellectual property waive from employer','N','Y',NULL,'Setting up desktop environment was cumbersome','Either better tiling support on KDE or Pop_OS! making it easy to integrate their tiling for GNOME elsewhere.\r\nI was an XMonad user for many years, and Haskeller, but stopped using both. I don\'t have the time or energy anymore. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Nixops, as it didn\'t support launch templates for autoscaling groups on AWS. I can imagine hacking together something with Ignition and Nix flakes directly, though.','Flakes were the best thing to ever happen to Nix. I always wanted to use Nix and felt a barrier.\r\nNow it feels pleasant and I can\'t imagine developing software without it anymore.\r\nThe only missing thing is easy docker builds for Linux from macOS, but I feel like it\'s almost there.'),(604,'1980-01-01 00:00:00',5,'en','1576995241','A4','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','I got hired as a backend developer in a company that used Nix for the build and test configuration of the product. Started tweaking the .nix files and fell in love with it after a while. Now I bring Nix wherever I go.','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','The wide array of packages available in nixpkgs and other repositories that I can just grab and reliably depend on everywhere','Hack once, use everywhere','dockerTools','I would implement the NixOS of Kubernetes (or some other orchestration infrastructure). I.e. a declarative way to specify an entire system where something like Kubernetes takes the role of systemd in NixOS.','I would stop using computers and take up carpentry','','','','Y','','','','','','Y','','','','A fully custom CI server for dev team','cabal2nix\r\nhaskell.nix\r\nyarn2nix\r\npip2nix','Y','','Y','','Y',NULL,'N','N','Hearing from enough people that I won\'t have trouble setting up graphics drivers, wifi drivers, desktop managers and all the world of complexity that comes with a personal computing environment. I love Nix and fiddling with it for development / packaging software, but I have very low bandwidth for setting up a smooth desktop experience, so I just go with whatever comes out of Linux Mint.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I don\'t use most of the experimental but awesome features of Nix, *because* they\'re experimental and not because I don\'t think they\'re awesome. I think recursive Nix and content addressable derivations are fantastic and flakes look great from a distance too, I\'m looking forward to them becoming standard so that I can invest in them.'),(605,'1980-01-01 00:00:00',5,'en','1245988060','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted to fix the environment mess on my Arch system, and prevent it from happening ever again.','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducible pure environments','Easy server/software management and deployment','Easy inspection of how to build packages','Disallow imperative management (nix-env, nix profile install, ...), make flakes non-experimental, and standardize some form of IFD/computed derivations','Nothing; Nixpkgs is essential to me','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I wanted to fix my Arch environment mess, so NixOS it was','Y','','Y','','','','','Reproducible pure environments','Easy management of servers','Easy system introspection (i.e. it\'s easy to see environment configuration)','Fix the issue where old generations fill up /boot','There is no other suitable alternative','Y','','','','','Y','','','','','xmonad','','','Thank you for making Nix!'),(606,NULL,NULL,'en','969825728',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(607,'1980-01-01 00:00:00',5,'en','355217520','A2','A4','male','','','','','','','Y','','Y','','','','','Y','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Initially it was looked at to create both a development environment and identical production environment w.r.t. package dependencies on CentOS. Although many of us were happy a number of problems remains unsolved and it this approach has now been frozen. Problems are in the are of authentication of private repos, secrets management, interaction of nixpkgs packages on host system (libgl, suid etc) that doesn\'t work.','','Y','','','','','Y','','','','','','','','','Y','','Y','','Addresses the problems with Linux FHS (package isolation)','Reproducibility','','Address secrets management and information leakage to nix store.','','','','','Y','Y','','Y','','','Y','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Have used nix on CentOS for years but never made the full transition to NixOS for my workstation until recently. I couldn\'t imagine using imperative configy anymore so there was no other good option. The various other config mgmt solutions like Puppet or Ansible is just terrible when compared to NixOS.','','','','','','','Work laptop (which is mostly not the development machine).','Riskless changes with rollback','Extensive set of modules','Allows use of e.g. home-manager','','','Y','','','','','','','Y','','','','','','I❤️nix\r\nThanks for the great community and the work you put in!'),(608,'1980-01-01 00:00:00',5,'en','323785951','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','','','Managing personal/work mixed use devices','A6','After running an A/BLFS system with union FS to separate packages, Nixpkgs looked like a cleaner package path separation solution with significant work already done','','Y','','','','','Y','','','Y','Y','','','','Y','','','Y','Transient environments','Avoidance of package conflicts','Fast environment switches on upgrade/downgrade','','Drop boolean literals, create at least a tristate in its place.\r\n\r\nMore separation of concerns; possibly up to separation of evaluation and instantiation (with cacheable evaluation). Maybe partial evaluation caching (with the magic wand readied to undo if it goes wrong).\r\n\r\nSplit as much as possible into separate packages. Both to be able to release compatible improvements to one component without negotiating the schedule with features in the other components, and to define which interfaces are lower churn so the other side can be replaced.\r\n\r\nRevise whether external assumptions are baked in. Configurable extra hash command support, pure mode without assuming specific VCS, maybe configurable sandboxing as an invokable program.\r\n\r\nUpdated daemon model, with handover of running build from a failed connection to another one still needing the same build.','Guix, assuming it appeared despite non-existence of Nix (or before it?).\r\n\r\nIf not, whatever would try to be GoboLinux but done right / containers but with sharing. \r\n\r\nFailing that, probably Debian or Arch packages with something about containers and union FS and custom boot scripts','','','','','','','','','','','','','','','Mainly quicklisp-to-nix (inside Nixpkgs lisp infrastructure)\r\npypi2nix','','','','Personal tree of expressions importing Nixpkgs','Y',NULL,'N','Y',NULL,'systemd became too unusable for my workflow preferences;\r\n preferred boot settings getting harder to describe in NixOS than in plain shell;\r\n module system is not how I want the system to be structured anyway;\r\n\r\n(I do use some of the config generators in NixOS to build my system with Nix)','Pluggable service supervision systems separated from init; \r\npreferably module system revision (or going full-overlay closer to Nixpkgs style)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(609,'1980-01-01 00:00:00',5,'en','1790035248','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','Y','Y','','','N','Y',NULL,'Comlexity of the nix language and lack of good docs','Better docs. The docs need to contain an easy explanation of the basic terms with examples and all builtin functions and development utility packages need to be exactly documented (what parameters goes in a function, what goes out, and a short, pregnant description of what it does). It\'s very hard for beginners to grasp the language espacially if there are no good ressources and docs. In my opinion the number of cli tools is also too large. There should be one cli tool to manage the os and one like home-manager. It should be trivially possible to track your config with git without the (most of the time) hacky solutions.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Regularly nothing. When i was on nixos: home-manager','','I love the concepts of nix but for me as a beginner the language is frustrating and stops the enthusiasm for the distro tbh. I think i\'m not the only one who thinks that, so this really needs to be adressed in some way or another.\r\nImo it\'s a good idea to keep track of what the community wants, but i\'d suggest more specific questions in this survey about the tools and topics.'),(610,'1980-01-01 00:00:00',5,'en','1978629007','A3','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I was searching for a way to configure development environments.','','Y','','Y','Y','','Y','Y','','','','','','','Y','Y','Y','Y','','Flakes!','nix shell','nix run','I\'d change the language. Use a lisp like Guix or a ML-like with static typing.','Docker or Fedora Silverblue','','','','','Y','','','','Y','','Y','','','builds.sr.ht','poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Declarative configuration','Y','Y','','','','','','','','','','','Y','','','','','','','Y','','','','Home Manager, nix-community in general','',''),(611,NULL,4,'en','1450088472','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','N','N','my new laptop I\'ll get in a month or two ^^',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(612,'1980-01-01 00:00:00',5,'en','450210652','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','','','Add Support for Private files in /nix/store\r\nParallel Downloads (In general better download experience)\r\nAnd just loads of bug fixes (submodules, symlinks, yada)','','','','','Y','Y','','','','Y','','Y','','','','dconf2nix: https://github.com/gvolpe/dconf2nix','Y','Y','','','N','Lack of time','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','GUI Management Tools\r\nSecure Boot Support\r\n\r\nBut as is, NixOS is pretty solid','','Y','','','Y','','','','Y','','','','Formatter: https://github.com/kamadorueda/alejandra\r\nHome Manager: https://github.com/nix-community/home-manager\r\nFlake Utils Plus: https://github.com/gytis-ivaskevicius/flake-utils-plusv','',''),(613,'1980-01-01 00:00:00',5,'en','1113709880','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','','','Y','','','','','','','','','','Y','Y','','Y','','','','Y','','','','haskell2nix','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','','niv',''),(614,'1980-01-01 00:00:00',5,'en','1440620456','A3','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A friend recommended it to me after I complained about APT.','','Y','','','','','Y','','','','','Y','','','Y','Y','Y','Y','','Organization of the dotfiles','Easy to handle multiple packages','','The syntax of the language.','Guix','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted a system where I could declare packages','Y','','','','','Y','','The ease of handling drivers','The system states','','Nothing','Guix','Y','','','','','','','Y','','','i3','None.','None.',''),(615,'1980-01-01 00:00:00',5,'en','126977485','A2','A2','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend recommended it to me','Y','Y','','','','','Y','Y','','','','','Gaming PC','Y','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','Arch','Y','','','','','','','','Y','','','','',''),(616,'1980-01-01 00:00:00',5,'en','1257036841','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Migrated from Gentoo and never looked back. :)','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','Y','','Systems, packages and development environments are reproducible.','Configuration can be stored in a VCS, easy backups and rollbacks.','Ad-hoc access to packages via nix shell without installation.','Better documentation. :)\r\n\r\n- The Nix manual itself is mostly OK for learning the language, but to really understand how Nix works, one has to read Nix Pills and edolstra\'s PHD thesis. Wish there were a single comprehensive Nix Book that would explain the motivation of Nix and its design principles, than teach the language itself, step by step, textbook style. Should also include an up-to-date chapter about flakes. :)\r\n\r\n- Nixpkgs could be better documented too, especially the NixOS module system and the library stuff. Wish there were a Nixpkgs Book. :)','GNU Guix :)','','','','Y','Y','','','','Y','','','','','','naersk\r\npoetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Migrated from Gentoo and never looked back. :)','Y','Y','','Y','','','','','','','Better documentation. :)','GNU Guix System :)','Y','','Y','Y','','','','','Y','','','','NixOps - tries to cover too much stuff at once but does but have manpower for that.',''),(617,NULL,3,'en','1016361627','A1','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','','','','','','N','N','The idea of declarative system is great',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(618,'1980-01-01 00:00:00',5,'en','1288502496','A2','A4','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Suffered through Python and Ruby\'s package tooling and decided enough is enough. Fell in love with nix-shell.','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','nix-shell','nixos modules e.g. nextcloud','reproducibility and nixpkgs pinning','Nix the language should have been statically typed.','FreeBSD probably. Nix is likely the last thing keeping me in Linux-land.','','','','Y','Y','','','','','','','','','','Never heard of 2nix before.','Y','Y','','','N','The process is unclear and intimidating. Way easier to just fork packages locally and fix them for me.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I started with a WooCommerce site for my wife that I shipped as a set of Nix packages on Ubuntu LTS. At one point I realized I was reinventing NixOS and just stopped. My next project is a family Nextcloud server running on NixOS proper and it\'s much easier to manage.','','','Y','','','','','The large collection of modules.','Trivial nginx + let\'s encrypt suport.','Easy declarative systemd service management.','Static typing and better documentation for module configurations.','FreeBSD','','','','','','Y','','','Y','','','home-manager. Duh!','Many -to-nix converters are crude and incomplete. We need better developer tools that interoperate with pip/npm/composer/rubygems, so you can go from dev shell to deployable derivation in minutes.','Nix outside of NixOS (both Linux and Darwin) needs more love. More GUI packages and dev tools (e.g. DB servers) should work out of the box as that is a unique gateway drug for many people.'),(619,'1980-01-01 00:00:00',5,'en','1906952388','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I had a friend telling me to use it. They said it was great and after some convincing I gave it a try.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Easy to re-use the same configuration across machines','Reproducible builds of systems built on said config','Control of how and when my system changes','I would want the nix project to spend less time bothering to implement experimental features that sometimes breaks for users of non-experimental things.\r\n\r\nI would also like to see the nix project embrace rust to try to clean up the mess of a C++ that has been created.','Probably Arch Linux.','','','','','','','','','','','','','','','node2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend told me how great it was for some time, after some convincing I tried it out and do like it.','Y','','Y','Y','','','','The module system to define which services should run and to configure them.','','','','Probably Arch Linux','Y','','','','','','NixUS: https://github.com/Infinisil/nixus','','','','Sway','','I tried using flakes, then I stopped using it because it wasn\'t there or ready. It\'s also an experimental feature that haven\'t been accepted but still made it mainline and started breaking things in nix. So I went back to basics.','I don\'t like how flakes have been managed or developed.'),(620,NULL,1,'en','2057225077','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(621,NULL,NULL,'en','968546823',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(622,NULL,2,'en','1229780632','A1','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','','','','','','','','','','Y','','','','','','','','','Y','','declarative config','user package repository','','better docs','arch','','','','','','','','','','','','','','','','','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(623,NULL,NULL,'en','1268072151',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(624,'1980-01-01 00:00:00',5,'en','655648422','A1','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','purity','binary cache','','','','','','Y','Y','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Sway','','Home Manager',''),(625,'1980-01-01 00:00:00',5,'en','1608576031','A2','A5','male','','','','','','','Y','','Y','Y','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','','Y','Y','','Y','','','Y','Y','','Y','','','','','Add: type system, or something else that localises errors to where you fix them, not some lib function 20 stack frames deeper\r\n\r\nChange: ease of learning ','I find it hard to imagine. Probably more docker/VMs with build scripts, but that world is extremely bleak. ','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','Y','','Declarative ','Reproducible ','Rollback (even though I never use it, knowing I can is so liberating)','','','Y','','','','','','','','','','','direnv with nix-direnv-flakes\r\nVSCode nix environment plugin\r\ncachix\r\nnixpkgs-fmt ','nix-index\r\ncomma','Nix is amazing, and I could never go back, but the learning curve is so steep that I haven’t yet had the fortitude to introduce it at work (even though I have the influence)'),(626,'1980-01-01 00:00:00',5,'en','1345108549','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','Busybox/Linux :) (Openwrt)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was fascinated by the concept of IPFS. I imagined a package manager where decentralised builders would vote on a mapping between the inputs and outputs of a build. My package manager could then decide to trust the mapping and then trustlessly download the output via IPFS or any other method. I read about Nix somewhere and while it didn\'t quite fit this model, it was the closest thing yet and also had some other nice properties, so I installed it on my main macOS machine.\r\nNow that ca-derivations are being worked on, the dream of separating the cache from the trust by trusting only the mapping between input and output and then fetching the output without trust seems closer.','Y','','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','The ability to patch or otherwise customise packages without them silently breaking on the next update or having to recompile them manually','The ability to mix packages from the unstable and stable channels without breakage','','Some Nix packages with a GUI that run on macOS (e.g. kitty) are apps very similar to normal macOS apps. Unfortunately, installing them via nix-env for example doesn\'t make them appear in the Applications directory. They are just symlinked into ~/.nix-profile/Applications. It would be nice if Nix could also create a symlink in /Applications, so that such Nix packages are more similar to Homebrew Casks. This would not be an atomic operation but it would be worth it IMO.\r\nThe Nix evaluator uses an insane amount of memory. This makes it difficult to run NixOS on a Raspberry Pi or a small VM. It would be nice if Nix used less memory.','Pacman and Homebrew','','Y','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','After I gained some experience and confidence with Nix on macOS, the logical next step was to replace ArchLinux on my home server with NixOS and now I never want to go back again.','','','Y','','','','','The ability to automatically recompile the ZFS kernel module on updates and fail very explicitly if this fails, so that my server always remains bootable','The ability to declaratively configure the entire system','Rollbacks','It would be nice if I could somehow select a different generation to boot in the grub menu over the network, without attaching a keyboard and display.','Arch Linux','Y','','','','','','','','','','','','I tried using mobile NixOS on a PinePhone but I didn\'t manage to configure the filesystems mounted on boot for some reason. I plan to try this gain some time.','I don\'t like this survey website. When I took too long to fill out the survey the first time, my session expired and I had to start again. I almost didn\'t continue because of this. There is a \"Resume later\" button button but I need to manually press it and would have to create an account for that. It would not be hard to just store the progress using cookies or local storage. I also had a problem when I tried to type the character ~. On my machine, I have to press ctrl+alt+n to create this character but this survey website recognised the key combination as \"go to the next page\", maybe (ctrl+n).'),(627,'1980-01-01 00:00:00',5,'en','124567743','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I first heard about Nix because I really like functional programming and I saw quite a few people talking about it in that space.\r\nAs I was doing some DevOps and am a Linux enthusiast, Nix ideas immediately got me interested as it elegantly solves many frustration I had with my tools.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Reproducibility','nix-shell for project dependencies','Easily and safely playing around with new tools','Better documentation (even though it already got a lot better).','Bash scripts, Ansible and Docker.','','','','','','','','','Y','','','','','','None as I mainly work with Scala and support for the JVM ecosystem is not quite there yet','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Soon after I started using Nix I gave NixOS a try. As I was already managing all my machines using Ansible (on Gentoo), NixOS allowed me to greatly simplify my setup while also improving its reliability and keeping the flexibility. Moving all my machines to NixOS was therefore an obvious choice.','Y','Y','Y','Y','','','','Declarative configuration','Safe rollback','Up to date dependencies','Better documentation.','Archlinux and Gentoo as OS.\r\nAnsible as deployment tool.','','','','Y','','','','','','','xmonad','','','Thank you for all the work you do! Nix community is awesome!'),(628,NULL,2,'en','419062991','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','To try a new and unusual Linux distro. Also the way of rolling back and package management seems interesting.','','Y','','','','','','','Y','','','','','Y','','','','','','Generations','Package management','','','Arch linix','','','','','','','','','','','','','','','','','','','','N','Still learning the basics.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(629,NULL,1,'en','2005083419','A2','A3','fem','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(630,'1980-01-01 00:00:00',5,'en','2090984885','A2','A4','male','','','','','','','Y','','Y','','Y','','','Y','Y','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','controlling dependencies, reproducible build environments','','Y','','','','','Y','','Y','','','Y','','','Y','','','Y','','Declarative/reproducible development environments for my own projects (nix-shell).','Declarative/reproducible user environments (home-manager)','Build systems for embedded products (replacing Yocto or similar)','Flatten the learning curve.','Virtualenvs for project environments. Arch Linux for personal machines. Yocto or similar for building embedded products.','','','','Y','','','','','','','','','','home-grown CI running build jobs in a Slurm cluster','','Y','','','','N','I find it extremely hard to get a proper overview and comprehensive understand of the various parts of Nix and its ecosystem. I don\'t yet feel familiar and competent enough to contribute things back to the community.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Declarative and reproducible system definitions. I threw myself into NixOS to force myself to learn how Nix worked, so that I could help introduce/teach Nix at $dayjob to improve dev environments and speed up builds.','Y','','Y','','','Y','','Declarative system definitions.','Keep machine configurations colocated in one repo, instead of spread across machines.','','A common convention/organization for collecting multiple (physical) machine definitions inside a Git repo, and more easy deploy/setup onto those machines.','Arch Linux on personal boxes, CentOS or Debian on servers, probably.','Y','','','','','','','','Y','','','home-manager','lorri, direnv','I fear that the Nix community is too busy playing 4D chess with all the new/exciting stuff that is possible. Meanwhile the rest of the world is stuck playing tic-tac-toe, and it\'s very hard to cross the widening chasm between the two. We need more focus on building bridges, so that we can bring our colleagues (whose main focus is _not_ Nix itself) along for the ride, and make them _competent_ at Nix.\r\n\r\nCurrently, trying to introduce Nix at $dayjob is a recipe for burnout, as on one hand you\'re trying to explain and motivate concepts like reproducibility and functional/composable package definitions (along with a new and strange programming language) to a developer population (that naturally will take some time to convince), while on the other hand you\'re trying to keep track of the Nix community developments (e.g. flakes).'),(631,'1980-01-01 00:00:00',5,'en','304568168','A4','A2','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','i heard about it from hacker news and i thought the idea behind nix is very cool, next day i downloaded nixos and tried on my laptop, the initial reaction was good i loved that i have control over everything in a reproducible way that i can copy to any of my other machines and thought it would even be better for my servers, after a while though i got tired of fighting nix all the time and went to another linux distro, but i have missed the way i control the system in nixos and returned to it again and i am using it now for awhile, still think the idea is cool but the user experience and the way we configure the system and packages need much iprovemnents','','Y','','','','','Y','','Y','','','','','','Y','','Y','Y','','Declarative system configuration','consistent development environments with nix-shell','being a perfect playground for server configuration as i can do what ever i want and can revert to a previous configuration if something went wrong','the way we configure the system, the configuration file should at least have auto complete, so i don\'t always have to search for options and packages names','- Pop OS For my personal laptop\r\n- any lightweight linux os with good support for docker for my servers','','','','','Y','','','','Y','','Y','','','Azure Devops','node2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(632,'1980-01-01 00:00:00',5,'en','653733694','A2','A3','male','','Y','','','Y','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Declarative package management + reproducible development environments.','','','','','','','Y','','','','','','','','Y','Y','','','','Declarative package management ','Reproducible development environments','-','Improved documentation','Probably just arch Linux (pacman)','','','','','Y','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Declarative system configuration and dotfile management','Y','','','','','','','Declarative (and reproducible) system configuration','Declarative dotfile management (technically home-manager)','','Improved documentation','Arch linux','Y','','','','','','','','','','Bspwm + sxhkd','Home-manager','Any python environment wrappers (poetry2nix / mach-nix)',''),(633,NULL,1,'en','669841199','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(634,'1980-01-01 00:00:00',5,'en','723149675','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','','','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','','Y','','Ease of contributing to nixpkgs/NixOS','Distributed building and caching.','Ease of patching any software (including nixpkgs/NixOS)','Proper RPC protocol for remote builders, stores and caches. A responsive and well functioning core development team for Nix.','I don\'t know.','','','','Y','Y','','','','','','Y','','','','cabal2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','','Y','Y','Y','Y','','','','Simple to \"roll your own\" OS. Simple to take apart and research boot process etc.','NixOS module system','Rollbacks','','I don\'t know','Y','','','','','Y','','','','','Xmonad','nixbuild.net','Hydra, nixops',''),(635,'1980-01-01 00:00:00',5,'en','1986866051','A4','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','First I try to learn the Nix package manager and the Nix programming language and then I will install the Nix distribution ','','Y','','','','','','','','','','','Not yet I\'m trying to learn a package manager right now','Y','Y','','','','','Nix-env, Nix-shell','Nix configurations','simple language','Actually I liked Knicks a lot, but I found it some difficulty and not friendly-used to it like\r\nNix-shell, nix-build, nix-env,nix-channel,...\r\nSo it would be better if there were a few commands to manage the package manager like Guix','I\'m currently using Pacman but for me the best package manager is guix','','','','','','Not yet','','','','','','','','Not yet','Not yet','','','','Not yet','N','I haven\'t learned the Nix language yet','N','N','love of exploration',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nothing','Nothing','You better make nix simple enough'),(636,'1980-01-01 00:00:00',5,'en','1479207547','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','','','','Enable reuse of data in download from binary caches, that would be nice for everyone and especially for people on bad internet access.\r\n\r\nAt some point, stop being compatible with old Nix/Nixpkgs versions and solve all the relative issues.\r\n\r\nHave a decent stdlib in Nix (better than the current one in Nixpkgs, and in a separate repo).\r\n\r\nHave more purity. Don\'t use channels. Enable caching of pure evaluations (and that\'s comming :) ).\r\n\r\nFor nixpkgs: don\'t put mkDerivation\'s attributes into the build environment by default. This would allow to change things in mkDerivation (like rename buildInputs*, or huge changes) without triggering mass rebuilds.','','','','','Y','Y','','Y','','Y','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','Y','Y','Y','','Y','','','','','Better abstractions (like for systemd services)\r\n\r\nMore consistency\r\n\r\nLess opinionated configurations that are hard to change without a fork / More options to tweak configurations options.\r\n\r\nMore/Better profiles (minimal system, server, etc...)','Archlinux? Alpine?\r\n\r\nGuix ;)','Y','','','','','Y','','','','','herbstluftwm','','Nixops','Thanks!'),(637,'1980-01-01 00:00:00',5,'en','303831211','A5','A3','-oth-','non-binary','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted reproducible configured linux systems and this seemed to be the project closest to accomplishing that out of the box ','','','','Y','','','Y','','Y','','','','','','Y','','Y','Y','','Reproducibility','Functional data-oriented configuration','Easy rollbacks','I don\'t dislike the Nix language but I find that at least the way it\'s documented now can make it confusing for people to pick up, myself included ','Docker with some random configuration tool ','','','','Y','','','','','','','','','','','','Y','','','','N','Haven\'t had the time of day','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A2','Wanted reproducibly configured linux machines, this seemed to be the only tool that did it','','','Y','','','','','','','','Secret management is a must-have feature that requires either homebrew solutions or bolting on some poorly documented/maintained deployment tool which itself started as a homebrew solution','FreeBSD, which I\'d love to configure a la NixOS','','Y','','','','','','','','','','','NixOps','Much love to all who put their work into Nix and NixOS. While the tooling can at times feel like a confusing work in progress this project can go a really long way in fulfilling something the world of software deployment and system configuration has needed for a some time. Given how receptive the project on the whole seems to be to evolving and trying new things, I feel really optimistic for the future of this awesome software. Keep up the incredible work!'),(638,NULL,NULL,'en','1974736490',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(639,'1980-01-01 00:00:00',5,'en','1413730388','A1','A3','male','','','','','','','Y','','Y','Y','Y','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Because it was part of NixOS.','','','','Y','','','Y','','Y','','','Y','','','Y','Y','','Y','','Declarative, reproducible operating system configuration, including user stuff with home-manager.','Multiple versions of packages, system configurations, and other things like that, that can be pulled in on demand into different nix-shell environments or system configs.','','Make the Nix evaluation error messages more helpful - eg. the stack traces are sometimes really long, and it\'s not clear how my code caused the issue or where my code even is in the trace.','I\'d look into Fedora Silverblue, Gobo Linux, or still be on Arch Linux with a dotfiles repo and installation bootstrap scripts.','','','','Y','Y','','','','','','','','','','https://github.com/DavHau/mach-nix in https://github.com/mirrexagon/nixpkgs-esp-dev\r\n\r\nhttps://github.com/svanderburg/node2nix in packaging my Rust-JS hybrid application: https://github.com/mirrexagon/commboard/tree/299ed95d786966e13929ad4387140e8cfadcd9b4','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Having a declaratively-configured operating system seemed cool and useful as opposed to having to set up a system after reinstall manually or even with simple scripts to install things. Now I can\'t go back!','Y','','Y','','','Y','','Declarative, reproducible, easily kept in Git operating system configurations, including user stuff with home-manager.','Nice, easily composable module system with the imports and merging system that I can easily extend in my own configurations.','','Built-in easy remote system config deployment in eg. nixos-rebuild, without the full weight of NixOps. nixos-rebuild does have some capability for this but it is a bit limited - I wrote a bash script to do it.','I\'d look into Fedora Silverblue, Gobo Linux, or still be on Arch Linux with a dotfiles repo and installation bootstrap scripts. Maybe look into Ansible and the like.','Y','','','','','Y','','','','','Sway','home-manager','NixOps: it seemed too complex and too much to learn for my use case of managing and being able to remote deploy configurations to a home server, a laptop, desktop, and tablet.',''),(641,NULL,NULL,'en','1649073318',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(640,NULL,3,'en','35053218','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','for open-source projects','A2','Friends. I did try, install it and go back. Then I did it again and laster longer, maybe 3 months before giving up again. I did start using nixos in the end of last year but to be honest, I\'m still not sure the stark complexity is worth it.','','','','','','','Y','','','','','','','','Y','','','Y','loosing time having to package the world and its dog (steam-run doesn\'t cut it)','Config in a single place','Pain with prebuilt binaries (this is a cons, not an advantage)','Ability to mix versions on different places','I would make flakes/the new nix command use my system channel by default. And pin the system flake repository. Beside being really wasteful bandwidth-wise, I chose NixOS-21.11 for a reason.\r\n\r\nYes I can do it manually, but we should provide sane defaults. No, I don\'t believe pulling things straight from master by default is sane.\r\n\r\nOn another topic, I\'m uncomfortable with a (recently worsened?) tendency of pulling things straight from the internet, with the only safety being hoping github and github\'s https don\'t get compromised. Other distros do have signing keys and that kind of stuff. Nix, even on NixOS, doesn\'t check binaries, doesn\'t check definitions, doesn\'t check anything beside the https cert.\r\n\r\nOn a related issue, I have the impression way too many people have push or merge powers to (e.g.) nixpkgs. I\'m wondering if this isn\'t lacking some basic hygiene too.','Debian','','','','Y','Y','','','','Y','','','','','','','','','','I did package some piece of software','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(642,'1980-01-01 00:00:00',5,'en','1843217432','A2','A2','fem','','','','','','Y','','','','','Y','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','Y','','Y','Y','','Y','','','Y','','','Y','','','','','','Private: Arch/Alpine with Ansible\r\nWork: Debian/Alpine for server; Arch for personal workspace; Docker (-compose) for dev workspaces\r\n','','','','','','','','','','','','','','','','Y','','','','N','I have yet to come across a package that I want to use but is not available in nixpkgs.\r\nBut I do want to contribute in the future and I keep an eye on the repo ever now and then :)\r\n','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','','','','','ArchLinux or Alpine with Ansible as much as possible','Y','','','','','','','','','','i3','home-manager','','Thank you so much :)\r\nI am so glad I came across Nix!'),(643,NULL,1,'en','2056113287','A2','A4','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(645,NULL,1,'en','274914787','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(646,NULL,2,'en','1648600650','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I want to use linux, and I have tried ubuntu, arch... And for me,nixos is best because I can switch different generations\r\nWhen I broke my system,I can go to a former one','','Y','','','','','Y','','','','','','','','','','','Y','','Reproducible ','all my system can be configured using nix(dotfiles)','nixpkg provide newer packages,and has many pkgs other linux distros don\'t have ','','for os, maybe macos or archlinux\r\n\r\nfor others,maybe docker','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(647,'1980-01-01 00:00:00',5,'en','1956349054','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(648,'1980-01-01 00:00:00',5,'en','1305396363','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','Y','','Y','','Y','','','','','Y','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','cwm','','',''),(649,'1980-01-01 00:00:00',5,'en','226168082','A2','A2','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','having used both apt-get and pacman based distros, I wanted something with both the stability and the bleeding edge opportunity without applications breaking due to changes others needed','','Y','','','','','Y','','','','','Y','','','Y','','','Y','','Textual overview of system configuration ','System rollbacks','Version pinning per-application','Improve the error messages, Nix is complex enough for new people (especially as a statically typed language enthusiast) without confusing error messages for which I rely on the forums for help with','Suck it up and use plain Arch','','Y','','Y','','','','','','','','','','','','Y','','','','N','Opportunity hasnt arisen ','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','Due to hardware difficulties, I wanted a declarative way of configuring the system so I could easily maintain a working system.','Y','','','','','Y','','Declarative OS/kernel/hardware configuration ','Full system rollbacks','Easy kernel pinning','Improved kernel configuration, required a lot of reboots to finally get some kernel setting to be set that wasnt available through the typed/named approach (think it was kernel timing?)','Again suck it up and use Arch','','','','','','','','','','','Sway','The nix language server, as basic as it unfortunately is','','Please improve the gap between the basics of the language and the more complete examples, there\'s a weird gap between \"this is a function\" and \"this is how you make overlays\" for example '),(650,NULL,1,'en','1835144491','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(651,'1980-01-01 00:00:00',5,'en','790199022','A5','A2','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Crate2nix\r\nDream2nix\r\nPoetry2nix\r\nCrane\r\nNode2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','Y','','','','','','','','Y','','','Y','','','','','','','Xmonad','','',''),(652,'1980-01-01 00:00:00',5,'en','993732750','A2','A3','male','','Y','Y','','','','Y','Y','','','Y','','','','Y','','','Y','','','Y','','','Y','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Became tired of maintaining the same environment over different Debian machines, found Nix and haven\'t looked back since.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','software I build can be built reproducibly','I can trust that my colleagues use the same environment as I do, and so does the CI','reuse is as simple as adding another flake input','','Various language-specific build tools','','','Y','Y','Y','','','','','','Y','','','','mvn2nix\r\ncargo2nix\r\npoetry2nix','Y','Y','','','N','Mostly missing spare time to actually get around to doing it.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Became tired of keeping the config on my Debian machines in sync, found NixOS and haven\'t looked back since','Y','Y','Y','Y','','','','fully declarative description of the system, allowing easy reinstalls/rollbacks','I have the same environment across all my machines, without any hassle','packaging custom software is easy','','Likely guix, or still Debian','Y','','','','','Y','','','','','xmonad','sops-nix','',''),(653,'1980-01-01 00:00:00',5,'en','1999660911','A3','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','It all started with this article: https://medium.com/@MrJamesFisher/nix-by-example-a0063a1a4c55\r\nThen I installed nix on xubuntu and three days later after get the feeling i jumped into the rabbit hole. Code from that time is still available in https://github.com/lucasew/nixcfg','','Y','','','','','Y','Y','','','','','Google Colab','Y','Y','Y','','Y','Bundle whole environments as nar files for my colleagues to use without waiting a lot to download individual things ','Packages as functions and all its benefits and leverage ','Send whole environment artifacts over ssh or using big chungus nar files','A git repo as source of truth ','The main problem I have with nix is the mass rebuild/download thing, I know it\'s required to make it possible it\'s warranties but it is the main problem that sucks. Internationalization and noob friendly docs would be cool too. ','Custom scripts like asdf or things like that plus some praying for the long term ','','','','Y','Y','','','','','','Y','','','','I\'ve used node2nix already, I didn\'t jump too much in this rabbit hole ','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I started three days after I started using nix. The test of the story is on the nixcfg repo and the form for nix ','Y','','','','','','','All defined as code ','No update scripts slowing down boot/reboot ','I update things whenever I want and no one forces me, except discord ','Some software must be running in a more recent version like discord and sometimes that lucky day dialog appears and then you need to bump the flake or override that specific package\r\n\r\nThe rest is basically iteration time and the reason why I use home manager apart from nixos instead of a module of nixos ','I probably would still be distro hopping ','','','','','','Y','','','','Y','i3wm','lucasew/nix-on-colab\r\nlucasew/nixcfg\r\nhome-manager\r\nblender-bin\r\ncachix\r\nrust-overlay','nix-on-droid: proot makes things prohibitely slower\r\nImpermanence: I\'ve used in a vps and I nuked that vps because of unexpected costs, I had some permission issues for the created folders though ','We (me and my orientator) at utfpr Santa Helena are studying to apply nixos on the university fleet of computers. It will be my course conclusion monography. I do computer science there. '),(654,'1980-01-01 00:00:00',5,'en','918720001','A3','A2','male','','','','','','','','','','','','','','','','','','','','','','','','','civil engineer','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','At first, I installed GNU Guix, but realized the Nix Language and NixOS are better.','','','','','','','','','Y','','','','','','Y','','','Y','','Declarative configuration','Nix shell','Reproducible environment','A more integrated Home Manager alternative','GNU Guix or Gentoo','','','','Y','Y','','','','','','','','','','','','','','mkDerivation in a let .. in block','N','I only packaged one application, and it\'s not good enough for sending a PR','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Tried GNU Guix, found out Nix language and NixOS are more complete and easy to use','','','','','','','','Declarative configuration','Nix shell','Reproducible environment','More integrated home manager','GNU Guix or Gentoo','Y','','','','','','','','','','swaywm','','',''),(655,'1980-01-01 00:00:00',5,'en','452135555','A6','A4','male','','','','','','','Y','','','Y','','','','','','','','','','','','','','','Manager','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','First exposure was through reflex-platform (I think). Noticed it was also used for rhodecode. Started using it for haskell dev, then set up entire remote deployment system using it.','','Y','','','','','Y','','Y','Y','','Y','','Y','Y','Y','Y','Y','','repeatability','wide variety of software','composability (ie ability to modify and combine software)','Probably a static typing system','I was using salt, and i felt salty. I had to package to debian/ubuntu packages, I was constantly working around bugs and it didn\'t really do a great job','','','','','','','','','','','','','Y','','','Y','','','','N','Everything I need is typically there already - I have done in the past, but no need for a long time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Needed to deploy software to remote client hosted systems. Noticed rhodecode doing this really neatly and wondered if we could do the same. Rest is history. ended up with ~20 deployments around the world, most of them very remote and requiring flights and extensive travel to visit in the case of problems.','Y','','Y','Y','','Y','','repeatability','rollback','systemd','easier to managing pinning at top level','was using salt - it made me salty','Y','Y','','','','','','','','','xmonad','None','None','Nix/Nixos is awesome'),(656,'1980-01-01 00:00:00',5,'en','1730696497','A1','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','Y','','','','','Y','','Y','Y','Y','','','','Y','Y','','Y','','','','','Update nixpkgs documentation','','','','','Y','Y','','','Y','','','','','','','poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','Y','Y','','','','','','','','','Y','','','Y','','','','','','','Qtile','','',''),(657,'1980-01-01 00:00:00',5,'en','947159580','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Single source of truth in /etc/nixos makes an highly customised system viable','','Y','','','','','Y','Y','','','','','','','Y','Y','','Y','','Reproducibility ','Immutability ','Rollbacks','IPFS Support','Guix','','','','Y','Y','','Y','','','','','','','','crate2nix yarn2nix','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','Y','','','','','','','','','Fedora silverblue','Y','','','','','','','','','','i3','','',''),(658,'1980-01-01 00:00:00',5,'en','1747751110','A5','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I was looking for a package manager for Mac that would work on linux as well where with a single file I could install everything I want on a new system ','Y','Y','','Y','','','Y','','Y','','','','Personal Machine','','Y','','','','Home-manager','Cross platform ','Modularity (/the ability to change small parts of a package in a overlay how you want while still maintaining the rest of the functionality )','Reproducivity','Better support for Mac (especially m1)','Probably homebrew and a bunch of custom scripts ','','','','Y','Y','','Y','','','','','','','','','Y','','','','N','Lazyness tbh. I have a few things that I want to add but haven\'t gotten around to doing them. Requiring (or at least highly suggesting) to use real name in the contributers list also pursuades new a bit. ','N','N','I actualy want to and have it on my list of things I want to do. I just need to do it ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager \r\nnix-darwin','',''),(659,'1980-01-01 00:00:00',5,'en','138412684','A2','A4','male','','','Y','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking for declarative distributions.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Declarative paradigm','Isolated environments','Good and helping community','Support for much more software','Maybe Docker.','','','','','Y','','','','Y','Y','','','','','No one.','','Y','','','N','Lack of confidence of my skills.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Looking for reproducible environments (without Docker), and easy installation (nixos-install).','Y','','Y','','','','','','','','','Don\'t really know.','Y','Y','','','','','','Y','','','','','','Good idea to have a survey to improve NixOS. Keep up the good work.'),(660,NULL,2,'en','297826102','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Declarative package configuration that I can trust.','The ability to easily share my nixpkgs configuration with people. This is great when learning or trying to debug some odd problems.','Reproducibility','Reduce the learning curve of the nix language.\r\nI\'ve managed to get some basic understanding of the language to get to a point where I\'m confident reading others\' configurations and understand them but I\'m not confident enough with my understanding of the language to start using some of the features and/or write anything beyond a simple flake to build and test a small project I\'m working on.\r\nI don\'t know if the solution would be to improve the documentation and learning material or simplifying the language itself or both.','Use my system\'s package manager (most likely pacman) with some tools (GNU stow https://www.gnu.org/software/stow/, git) and a few home-made scripts','','Y','','','Y','','','','','','','','','','','Y','Y','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(661,NULL,1,'en','1881367507','A2','A3','-oth-','Attack Hellicopter','','','','','Y','Y','Y','Y','Y','Y','Y','','','','','','Y','','','','Y','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(662,'1980-01-01 00:00:00',5,'en','805492670','A2','A3','male','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Reproducible and declarative configuration saves time and patience in the long run. ','','Y','','Y','','','Y','','Y','','','','','Y','Y','Y','','Y','','Declarative configuration','Reproducibility','Simple access to otherwise complex software through predetermined nixos modules and configuration.','I would change the syntax of the Nix language to be more user-friendly. Or create an abstraction layer above Nix to reduce the significant boilerplate code.','Possibly Arch linux','','','','Y','Y','','','','','','Y','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I did not want to waste time creating an imperative configuration for a server and then lose all the work when something breaks and a reinstall is necessary. I wanted to declare once and reuse and refactor the declaration.','','','Y','','','','','Declarative configuration.','Easy access to otherwise complex software and services through nixos modules.','Reproducibility.','','Ansible','','','','','','','','','','','','Home-manager','',''),(663,'1980-01-01 00:00:00',5,'en','1655012382','A2','A3','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','','N','Y',NULL,'I had not enough time at my hand to complete the setup such that I have a fully working system with everything configured correctly.','More and better documentation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Same reasons as before.','Same reasons as before.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Please improve the documentation so that one does not need to read the source code for every feature that you want to activate.'),(664,'1980-01-01 00:00:00',5,'en','579965842','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','Infosec','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Used it to replace Homebrew on macOS after it caused me to lose work. Found `shell.nix` and `home-manager` to be very useful. Eventually graduated to using NixOS on personal computers too.','Y','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','Being able to specify dependencies for my projects, machines, and environments declaratively (nix-shell, home-manager, NixOS)','Being able to roll back changes (NixOS generations)','Making it easier to manage system state (\"erase your darlings\")','When I started learning there was a bit of emphasis on nix-env for imperative package management. I\'d probably relegate that to a sort of plumbing command rather than advertising it for general end-user use.','Perhaps Guix, but I have never tried it.','','','','Y','','','','','','','','','','','node2nix (https://github.com/svanderburg/node2nix)\r\ncargo2nix (https://github.com/cargo2nix/cargo2nix)','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I graduated from using Nix on macOS for work and my personal machine to obtaining a desktop purely to run NixOS on. This impressed me enough that I use it now on a personal server and some Raspberry Pis.','Y','','Y','','','','','Declarative configuration','Rollbacks','Wide range of packaged software','','','Y','','Y','','','','','','Y','','i3wm','home-manager, lorri','NixOps - tried it briefly and couldn\'t really get it to work, but this was a couple of years ago','Keep up the great work!'),(665,'1980-01-01 00:00:00',5,'en','445078921','A3','A2','male','','','','','','Y','Y','','','','Y','','','','','','Y','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I started with NixOS, so I was motivated to learn Nix so I could customize my configurations','','','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Convenient build reproducibility, for any language','Simple, yet very powerful language. Allowing for DRY and concise code.','Flakes, that provide great UX and composition of different projects.','I would magically stabilize and thoroughly document flakes. In my opinion, they are really the \"gold standard\" in project definition, locking, and CLI UX. \r\n\r\nIt\'d be awesome if it became the recommended standard, and if we had very detailed docs (the man page is great, but a cookbook of sorts would be nice for people starting out).','Probably guix, even though it\'s not as universally useful for projects.','','','','Y','Y','','','','Y','','Y','','','builds.sr.ht','cabal2nix, crate2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I will be honest: people flexing and preaching about it on linux subreddits.','Y','Y','Y','Y','','','','Easily manage different devices with a single config, keeping the common configuration DRY.','Being able to try out configurations without fear of being unable to work. Rollback!','Although more nix-related, I like how overlaying just works. It\'s very nice how you don\'t have to change anything else on your config. Nix really shines even brighter on NixOS.','I think the only thing that comes to mind is somehow making home-manager more integrated with it (usage and development wise). They make a lot of sense to use together.','Probably guix and/or Arch Linux.','Y','Y','','','','','','','','','sway','Does nix community count? home-manager, impermanence, nur, cachix.','','Nix truly is the greatest community I\'ve the pleasure of being part of. Thank you so much for making this project a reality!'),(666,'1980-01-01 00:00:00',5,'en','1256753404','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I kind of lost everything every time I moved to a new computer. My ex-colleague Jos showed me the light, and since then I\'ve grown to love NixOS.','','','','','','','Y','','','','','','','','Y','Y','','','','declarative configurations','','','I would remove the Nix language, it is hard to learn. Worthwhile, but hard.','arch','','','','','','','','','','','','','','','','Y','','','','N','Didn\'t spend enough time learning nix. I got my own configuration files working and I\'m proud of that, but I don\'t think I can really contribute without spending a lot of time learning the language and/or practicing with packaging stuff using nix.','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','','','','','','','','','','','','','','','','','','','','','','','','','lorri','',''),(667,'1980-01-01 00:00:00',5,'en','1387646153','A2','A5','male','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','N','N','I\'m moving to nixos, slowly because of lack of time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Home router','A1','','','','Y','','','','','System confusion in a file','up to date','Always clean system','','','Y','','','','','','','Y','','','','Home-manager','','Excited to discover more'),(668,NULL,NULL,'en','742481176',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(669,NULL,2,'en','1064701586','A1','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted to put Linux on a arm chromebook to use as a couch computer. Arch had a wiki page with manual installation instructions. I wanted to use something that would be less hacky. So I got a rock64 as a build server, made nixos go on that, and used it to iterate on an image for the chromebook. In the end I settled on an iPad, but it was an excellent way to learn nix.','Y','','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Reproducibility, perhaps not in the strictest sense, but at least CI builds don’t fail when upstream PPAs remove old versions','Cross platform builds. Develop in macOS, deploy on Linux/K8s, with the same versions.','','','Docker and K8s for production, FreeBSD jails with puppet for home servers. Homebrew for local packages.','','','','Y','Y','','Y','','','Y','','','','','Yarn2nix (iknow fork) — https://github.com/iknow/yarn2nix/tree/patched','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(670,NULL,2,'en','442369141','A1','A4','male','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','Y','','','Y','Y','','N','Y',NULL,'Missing daily driven applications','nix package manager',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(671,NULL,NULL,'en','1764044839',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(672,'1980-01-01 00:00:00',5,'en','1931017662','A2','A2','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I started using NixOS so I didn\'t have a choice.','','','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','reproductible','','','','pacman','','','','Y','Y','','','','Y','','','','','','poetry2nix','Y','Y','','','N','lack of confidence, so nothing','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Recommended by someone at school, saw the benefits of versionning system configuration and being able to rollback easily','Y','Y','Y','Y','','','','versionning','rollback','ease of enabling services','make it less of pain to use with language package managers, for example with Python. I use poetry2nix but it feels like a huge hack and building a devShell takes ages','Arch Linux','Y','','','Y','','','','','','','sway','nixos-hardware, nix cache, manuals and wiki','','Please make multi page versions of nixpkgs and NixOS manuals, the same way it\'s being done on nix3'),(673,'1980-01-01 00:00:00',5,'en','801582182','A2','A3','-oth-','NB','','','','','','','','','Y','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My friend and I shared a ton of out dotfiles via git, but that didn\'t work out the way we wanted. In the end we stumbled upon NixOS, which solved most of our issues right away.','','Y','','','Y','','Y','','Y','','','','','Y','Y','','Y','Y','','Reproducible packages','Declarative system configuration/management','Declarative environment management','The learning curve is way too steep, and I think most of that has to do with the language. The language docs are bad, a lot of what should be a stdlib or importable flakes is done in nixpkgs (also all without docs), it\'s slow (at least when using flakes), the error messages are bad, it\'s untyped and dynamic so you\'ll never have a good language server that can help with all of this.','I probably would\'ve stayed with Manjaro until I found Guix','','','','Y','Y','','','','','','','','','Drone','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same thing','Y','','','','','','','Reproducible package management','Reproducible system configurations','Automated ISO generation','There needs to be better secret management, home manager should perhaps be included by default, and the home-manager and NixOS options should be aligned (e.g. the systemd file declarations differ between the two, which is really annoying). Also better docs','Guix','','','','Y','','','','','','','Sway','https://github.com/divnix/digga','','Send love to everyone putting in the hard work :)'),(674,'1980-01-01 00:00:00',5,'en','1428299123','A2','A3','','','','','','','Y','Y','Y','Y','Y','Y','Y','Y','','','','','Y','','Y','','Y','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Reproducible environments and builds','','Y','','','','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','Reproducibility','Nixpkgs','Overriding','- Binary extensions so that the nix language can be extended with more complex features that are harder/more cumbersome/slower to implement in nix (without using IFD), like, for example, file parsing and other common utilities.\r\n- Content defined chunking and diffable copying of nix packages between machines, this would decrease bandwidth by a significant factor.\r\n- Fix nix search so that it\'s greppable again. ','Alcohol','','','','Y','Y','','','','Y','','Y','','','','https://github.com/nix-community/naersk','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','After having using multiple distros for over 20 years, and having switched to Ubuntu for the longest period (because of stability and freshenss of packages), I have nixos a try, and found it stable enough, easy enough to work with and most importantly reproducible that I was sold instantly.','Y','','Y','Y','Y','Y','','Reproducibility','Stability','Modules','- Improve nixos-containers to not completely restart on each change, and improve networking and routing.\r\n- Ability to instantiate modules multiple times (for example, running multiple nginx servers)\r\n- Not restart X because nvidia driver changed with doing a switch\r\n','Ubuntu and alcohol','','','','','','Y','','','','','i3','nixos-containers','','Thanks for nix!'),(675,'1980-01-01 00:00:00',5,'en','2122186350','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A4','My company, mercury, uses it','Y','','','','','','Y','Y','','Y','','','','','Y','Y','','Y','','Consistent developer environments','Easy rollbacks in prod','Caching of packages','Add better docs. I’d like to have a Haddock-esque website to see all configuration options well documented. Maybe some way to better support building Haskell packages for development, but not sure what that is.','Probably Docker','','','','','','','Y','','','','Y','','','','Cabal2nix\r\n','Y','','','','N','Too busy','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Nix is fairly controversial at our work. Some people say it’s the best thing and some say it’s the worst'),(676,'1980-01-01 00:00:00',5,'en','1953150814','A2','A4','-oth-','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(677,'1980-01-01 00:00:00',5,'en','1558007787','A6','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Just wanted a declarative way to install packages on my macOS machine.','Y','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','','Y','','nix-shell','easy packaging','nix-env to try things out','Simpler packaging for propriety stuff.','Builtin package manager and a few bash scripts','','','','Y','Y','','','','','','Y','','','','','Y','','','nur','Y',NULL,'N','Y',NULL,'Was not able to package a propriety software package I needed.','Maybe once I know enough about nix that I feel confident that I will be able to package anything that I will need.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager\r\nnur\r\ndirenv','lorri','Thanks for nix, has simplified quite a lot of stuff for me.'),(678,'1980-01-01 00:00:00',5,'en','18526445','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','Y','','','Y','','Y','','','','','','','','Y','Y','','','','','','','I would make the CLI syntax more understandable.','Debian','','','','','','','','','','','','','','','','','','','','Y',NULL,'N','N','Needing to reinstall the OS on my development machine.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(679,'1980-01-01 00:00:00',5,'en','442980683','A3','A5','male','','Y','','','','','','Y','','','','','','','Y','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','I was curious about the pure package management advertised.','','','','','','','Y','','','','','','','','Y','Y','','Y','','','','','Make the nix language statically typed with type inference.\r\nMake it feasible to easily install different versions of a package. Package version would be taken into account when installing packages.','guix','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','','Y','','','','','','','','','','','Guix\r\nGentoo Linux\r\nArchlinux','Y','','','','','','','Y','','Y','LXQt, Mate, Awsome, Enlightenment, Openbox','','',''),(680,NULL,1,'en','747262461','A5','A4','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','Industrial Automation','','Y','','Y','Y','9front',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(681,NULL,NULL,'en','1746390764',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(682,'1980-01-01 00:00:00',5,'en','746955766','A1','A3','male','','','','','','','Y','Y','Y','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Daily Driver','A3','I was on Arch Linux and wanted something that felt as flexible but more stable. I had heard about Nix multiple times from friends / online acquaintances. The claims of deterministic builds is what drew me in, and the declarative nature of Nix is what kept me. I feel far more comfortable experimenting with obscure/unstable tools and languages now that I know I can easily drop into a `nix shell`, and knowing that I can always just roll back a generation if something gets seriously messy :)','','Y','','','','','Y','Y','Y','Y','','','Personal Laptop','','Y','Y','','Y','','Deterministic and Declarative builds.','`nix shell` / `nix develop`','Flakes','`nix-env`\'s prioritisation throughout the manual. I wish that it declarative approaches were prioritized and emphasized more than they currently are, and that whenever `nix-env` is mentioned it should be with a *NOTE:* that mentions the caveats of imperative package management. Myself and two friends, totally independently, all ran into conflicts related to packages \"installed\" via `nix-env` that we\'d long forgotten about. In my case I had only used it once as I was following a guide somewhere on how to test local edits of nixpkgs - I wish I remember which tutorial it was so that I could recommend testing with `nix-shell` or flakes (`nix run .#pkg`, etc).','I\'d try Guix? Forgoing that, I\'d try to build something inspired by Nix\'s ideas out of some existing functional language like haskell or lisp.','','','','Y','Y','Curious about CA Derivations, but haven\'t had a chance to try them.','','','','','Y','','','','crate2nix - https://github.com/kolloch/crate2nix\r\n\r\nI\'d LOVE to see per-crate derivations working nicely, and potentially even per-build-artifact derivations for C, C++ builds.','','Y','','Contribute to nixos/nixpkgs','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Daily Driver, Gaming, Everything!','A3','See the story I gave for \"Nix\".','Y','Y','Y','Y','','','Art Installations, Personal Laptop','Declarative and Deterministic builds/config. The ability to share my entire system config between desktop and laptop using a git repo is unreal.','Trivial deployment / remote, native machine management.','Generations.','Fix the issue where your /boot/ partition can fill up without warning if you\'re not careful and require you to manually delete old kernels heh! Also `nix-env` from docs as previously mentioned.','Guix... or maybe Gentoo but where the only portage package is `nix` lol','Y','','Y','','','','Curious about `deploy-rs` and `colmena` for flake support, but just realised `nixos-rebuild` does most of what I need!','Y','','','','`home-manager`. I wish it were under the main `nixos` organisation, and part of the main documentation under a \"Declarative User Configuration\" or something along these lines. Perhaps with a better name than `home-manager`... maybe just `home` would feel more concise.\r\n`nixos-hardware` was absolutely *essential* for coordinating with other Nix users to get the new Dell XPS 9310 audio, wi-fi and bluetooth working. I worked with 5-10 other folks on working out what kernel patches we needed, what kernel config needed updating etc before eventually upstreaming everything. I probably would have returned my laptop and got something more Linux friendly without it.','`musnix` - it\'s aimed at managing pro-audio configuration, but I found it easier just to copy the few parts I really needed.','Thank you for reaching out to users and offering a channel for feedback! Nix is a life-changer in terms of thinking about computation and managing systems. Even though it\'s been around 20 yrs, it feels like we\'re still just getting started on the kind of impact it can make :)'),(683,NULL,1,'en','1368132052','A2','A3','male','','','','','','','Y','Y','','','','Y','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(684,NULL,1,'en','1767843387','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','Y','Y','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(685,NULL,NULL,'en','1992067262',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(686,'1980-01-01 00:00:00',5,'en','1370348404','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','Because some random guy told me to try out NixOS. So I installed it on my personal server :) I use nix whenever I need to make changes to the config, obviously. I also use nix for some package on my Arch linux (only when it\'s not available in official repo or it\'s broken for some reason (pgadmin))','','Y','','','','','','','Y','','','','','Y','','','','Y','','packages which always work','full system configuration which can be just copy pasted onto a different machine','','I\'d make it much faster.','docker containers','','','','','','','','','','','','','','','','Y','','','','N','I don\'t know how to test it locally. And I didn\'t find all that many bugs ;)','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','same as nix','','','Y','','','','','Declarative configuration which works as I\'d expect (for example, removing from config actually remove the thing from system unlike in ansible)','Can install packages from older NixOS version, so I can always upgrade most of the system and only leave some things on older versions.','','make it consume less HDD space (gaving 9 libc versions including locales adds up :/ )','Ubuntu server + docker containers','Y','','','','','','','','','','i3','The NixOS documentation and wiki. They\'d generally deserve more love, IMHO','',''),(687,'1980-01-01 00:00:00',5,'en','353747674','A2','A3','male','','','','','','','Y','','','','Y','','','Y','','','','Y','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','NixOS','Y','Y','Y','Y','','','','','Y','Y','Y','Y','Reproducible system tests','Declarative configuration','Reproducibility','Caching','Add 10-100x more funding so we could actually fix systemic issues caused by volunteers maintaining everything.','A lot more Xanax.','','','','','','','','','Y','','Y','Y','','','haskell.nix, poetry2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','Declarative configuration','Reproducibility','Caching','10-100x more users so issues get ironed out faster and there\'d be more money to fix issues that are caused by volunteers maintaining things.','Arch Linux','Y','Y','','','','','','','','','xmonad','nixpkgs-fmt','haskell.nix','Good job on the survey!'),(688,NULL,NULL,'en','214500788',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(689,NULL,1,'en','333436538','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(690,NULL,1,'en','1240615858','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Toolchain developer','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(691,'1980-01-01 00:00:00',5,'en','612144873','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','better than ansible.','Y','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','','','','','guix','','','','','Y','','','','','','','','','concourse ci','python2nix','Y','Y','','','N','bugs in golang','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','needed something bettern than ansible. also lots of packages.','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','',''),(692,'1980-01-01 00:00:00',5,'en','1240497481','A1','A4','male','','','','','','','','','','','Y','','','','','Y','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','local development environments and nixos servers for running kubernetes','Y','Y','','Y','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','local development environments - nix-shell, nix develop','declarative environment management - nixos, darwin-nix, home-manager','imperative package management - nix-env','Remove the esoteric syntax... it has no place when higher-level functional programming can be used to express things much more readable\r\n\r\nimprove documentation resources. Make looking up functions similar to readthedocs/mix and provide good examples for each func.\r\n\r\nFind some way of nix managing language dependencies/libraries declaratively without having to fork everything e.g pip. \r\nNix wants to control too much and working around this is painful with multiple tools like pip2nix, npm2nix all fracturing already built ecosystems.\r\n\r\nRemove laziness - it makes debugging so much harder','asdf and some fancy dir-env scripts\r\nlots of really terrible bash scripts\r\ndocker with multi-stage builds\r\nbazel','','','Y','','Y','','','','','','Y','','','','pip2nix\r\nmix2nix\r\nnpm2nix\r\n\r\nI try to avoid them where possible','Y','Y','','','N','Lack of time\r\nCompany restrictions','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A3','declarative everything\r\ntransactional kernel updates\r\ncolleagues convinced me','Y','Y','Y','Y','','','','declarative environments','declarative OS','declarative packaging','less esoteric syntax','debian with asdf and docker multi-stage builds','Y','Y','','','','','','Y','','','gala & pantheon','nix-darwin\r\nnix-home-manager\r\nlorri\r\nniv','a bunch of 2nix\'s, using the standard package manager has always been a better experience',''),(693,NULL,NULL,'en','1275289855',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(694,NULL,1,'en','121934533','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(695,NULL,2,'en','447979164','A2','A4','male','','Y','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I read about Nix in a Linux magazine. Then add my new job I was given a laptop and installed NixOS on it','Y','Y','','','Y','','Y','','Y','','','','','','Y','Y','','Y','','Independent development environments. ','Ability to easily integrate external resources (especially via flakes)','Declarative server configurations','I would add up to date and complete documentation','Ad-hoc solutions on a per-project basis','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','Lack of documentation ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(696,NULL,1,'en','197774579','A2','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(697,'1980-01-01 00:00:00',5,'en','1379688458','A2','A3','male','','','','Y','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Manage complexity, declarative configuration.','','Y','','','Y','','','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Declarative configuration','Reproductible environments','Reproductible environments','fix secrets','ansible + vagrant','','','','Y','Y','','','','Y','','','','','','stack2nix, python2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Compositionality of the NixOS module system.','Y','Y','Y','Y','Y','','','The NixOS module system','I can render a nixos system to a containers or bare metal.','I can easily experiment different component integrations.','Reusable modules: I would like to have multiple instances of the same module and be able to override modules as I override derivations.','Debian, Propellor, OpenShift.','Y','','','Y','','','','Y','','','sway','','nixfmt, nix-env','Keep up the great work!'),(698,NULL,NULL,'en','36203489',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(699,'1980-01-01 00:00:00',5,'en','2076362467','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was tired with the growing complexity of my bespoke dotfile scripts, migrating to NixOS was a lot of work but reproducibility of my config is much better now.\r\nAt work I use nix to install my env/config on the company ubuntu and mac laptops - same reason, want to keep my settings and programs in sync.\r\n\r\nLater I discovered the isolated shell env feature, started using it for some projects.\r\n\r\n','Y','Y','','','','','Y','Y','Y','','','','','','Y','','','Y','','Ability to configure whole system (system level and user level [home manager is very important])','Isolated per-project environments','','I would really like to see:\r\n* documentation with good, real life examples, esp for debugging problems in large system configs\r\n* good error messages\r\n* ','* guix ?\r\n','','','','Y','Y','','','','','','','','','sr.ht','','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Really wanted to have reproducible settings across all my machines, ability to restore after a fault as well','Y','Y','Y','','','','','Preproduceable config across machines ( home manager is important )','','','* better integration of home manager, esp with flake configs* guix ','* guix ?','Y','','','','','','','','','','i3','home manager\r\nnixpkgs-fmt\r\n','nixops - nixos-rebuild supports flakes and remote deployments, it\'s easier to use and also same tool I use to configure local machines','* the ideas in nix and nixos are great\r\n* nixpkgs as a collection of packages is great\r\n* it\'s not easy to push PR through review, different reviewers have different opinions, hard to satisfy all. Using and checking standard formatting and linting on CI could help here, as a lot of comments I got were about formatting\r\n* I have 15 years of experience with both procedural and functional programming and find nix & nixos configs basically the hardest to debug and achieve good flow in across all lagnuages and their ecosystems I know. Good docs, tools could help\r\n* community does not feel very well integrated - on one hand there\'s a lot of volunteers that need direction, on the other hand there\'s a couple of companies that seem to be doing their own thing, code of conduct does not seem to be very well respected in some places, forums seem okay, but e.g. pr reviews or some irc conversations I\'ve seen been hostile\r\n'),(700,NULL,3,'en','1346606513','A2','A4','male','','','','','','Y','Y','','','Y','','','','','','','','Y','','','','','','','','Y','','','Y','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(701,'1980-01-01 00:00:00',5,'en','75857375','A2','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Long story short \r\nI wanted a reproducible, deterministic and practical way to manage all of my machines','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','Y','','','','','','','sway','','',''),(702,'1980-01-01 00:00:00',5,'en','1344764940','A5','A3','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Needed a good package manager on MacOS for an old job. Brew wasn\'t pleasing me so I looked for alternates','','Y','','','','','Y','Y','Y','','','','','Y','Y','','Y','Y','','Cross language reproducibility. C applications + programming libraries in same development environment','Declarative configuration of development environments','A good package selection','I would redo and unify the commands for interacting with it. Nix-env vs nix shell vs nix-collect-garbage.\r\n\r\nIt presents a lot of very confusing disjointed commands. This has made adoption at $WORK very very difficult','In personal life probably gentoo. Professionally it would be Ubuntu/apt with an extremely rigorous infrastructure as code approach to packages','','','','Y','Y','','','','Y','','','','','','Bundix for ruby','','','','custom definitions within projects nix-shell','N','Lack of time and bad past experiences.\r\n\r\nI have frequently opened an MR with enthusiasism and joy only to wait 3 weeks and then have minor details nitpicked and given vague messages to do x better without explanation','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Declarative configurations sounded like a cool way to manage my desktop customizations & vim config','Y','','Y','','','','','Rollbacks','Enables usage of deployment tools','Easy installation of software','More focus on desktop usage experience. There are a lot of papercuts compared to say ubuntu. ','Gentoo','Y','','Y','','','','','','Y','','','None','Nixops.\r\n\r\nIt\'s kind of a mess for anyone but the most dedicated professional user. Even then secret/state management is a mess. Tool from a different age','As an american I often find myself wishing for more US based conferences/jobs. The entire NixOS community seems tightly coupled to being in Europe sometimes'),(703,'1980-01-01 00:00:00',5,'en','1262943220','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A2','I started as a consequence of using NixOS','','Y','','','','','Y','','','','','','','','Y','','','Y','','Templating','Reproducible','Functional','Better documentation, because it\'s always a good thing.','Containers.','','','','','','','','','','','','','','','','','','Y','','N','Missing experience','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','I like experimenting in general. I was attracted by configuring an entire os in a couple of files.','Y','','','','','','','Separation of system/user config','Declarative user management','All the configuration at a glance','Better FHS integration: i\'ve had some problems with wine emulation.','ArchLinux with custom scripts for easier reinstallation.','','','','','','','','','','','AwesomeWM, qtile, xmonad','','',''),(704,NULL,1,'en','1029483807','A2','A3','fem','','','','','','','Y','Y','','','Y','','','','','','','Y','','','Y','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(705,'1980-01-01 00:00:00',5,'en','787811118','A5','A5','male','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Declarative configuration\r\nAtomic updates/rollback\r\nSide-by-side binaries ','Y','Y','','','','','Y','','Y','','Y','','','','','','','Y','','Atomic updates/rollback ','Declarative configuration ','Side-by-side binaries','I would make /etc immutable by default\r\nIt would be nice if /etc were also versioned\r\nOverlay then, and now Flakes, are confusing ','Arch Linux because it has the best documentation, including detail on the reasons for certain options et cetera. ','','','','Y','','','','','','','','','','','https://github.com/awakesecurity/hocker/tree/master/docker2nix','','','','','N','The process is not conducive. Indeed, it seems unnecessarily obscure. I cannot find complete, concise examples that walk me through how to contribute and videos are loosely structured and overlong. ','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','I prefer MacOS. I started using NixOS because it is the Linux experience that comes “closest” to MacOS in providing a simplified facade over a vast subsystem of packages and sensible configuration. ','Y','','Y','','Y','','','Atomic updates/rollback ','Declarative configuration ','Side-by-side binaries','Immutable /etc\r\nVersioned /etc\r\nEasier flakes','Arch Linux ','Y','','','','','','','Y','Y','','','','honggfuzz is not available for Apple silicon','Documentation is good. More practical examples of doing things the Nix(OS) way would be better. Videos are overrated. '),(706,NULL,2,'en','1533882439','A1','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','Y','Y','','','','','','Y','','Y','Y','','Reliably repeatable development and CI environments','Easier new dev on boarding','Really easy home server service config and deployment','I might accelerate Flakes adoption somehow.','Oof, probably some hackery including Brewfiles, Docker and ASDF.','','','','Y','Y','','','','','','','','Y','','cabal2nix','Y','','','','N','Nothing’s come up yet I guess',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(707,NULL,2,'en','2087448616','A6','A2','male','','','','','','Y','Y','Y','','Y','Y','','Y','','','','','Y','','','','','Y','Y','','Y','','','Y','','','N','Y',NULL,'* Felt not too different from other distributions.\r\n* Complex syntax of nix\r\n* Complexity might affect performance ','* Unique \r\n* Facilities it provides',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(708,NULL,1,'en','1312942806','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(709,'1980-01-01 00:00:00',5,'en','67884528','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was on centos 7 and installed an update to date version of firefox rather than the LTS version that came with the system. since I no longer needed the old version, I did `yum uninstall firefox` and hit `y` without really looking at the (shockingly long) list of other packages that would be deleted. I let it run for awhile on a secondary monitor, and happened to glance over as it said\r\n> deleting glibc\r\n> deleted glibc\r\n\r\nI selected the terminal window and hit Ctrl C as fast as I could, but it was too late, the machine was toast. That was the day I realized that the blast radius of a typical package manager (yum, apt, etc) is too high and we needed something where the blast radius of a bad package or a bug in the package manager was the size of one package, not the whole system. that brought me to nix, and then I fell in love with using Home Manager for managing my dotfiles','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Home Manager','Declarative Environment Management','nixpkgs-unstable has extremely up-to-date software','`nix-env`. I know it\'s an important tool that can\'t actually be removed from nix, but I wish we didn\'t emphasize using it to new members of our community.','Ubuntu','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I was using nix on another Linux distro and decided that the other Linux distro was just getting in the way and going all in nix would be easier. that turned out to be the case','Y','','Y','','','','','Declarative enviroment management','up-to-date packages on nixos-unstable','','','Ubuntu','Y','','','Y','','','','Y','','','i3','Home Manager','I tried nixops and morph before using deploy-rs.',''),(710,'1980-01-01 00:00:00',5,'en','72202966','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I used to use macOS and was looking for a way to get a few packages and keep them up to date, nix seemed like the best option and as I learned more about it I decided to switch to nixOS as the primary OS on my laptop','Y','','','','','','Y','','Y','','','','','','Y','','','Y','','Reproducibility','The ability to use different versions of package on nixOS','Easy rollbacks','','Guix','','','','','','','','','','','','','','','','Y','','','','N','I haven\'t seen a need to, and I don\'t think I know enough about nix','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I switched to it from macOS after using nix for a month or so and learning more about it and nixOS','Y','','Y','','','','','Reproducibility','Functional package management features eg. Having multiple versions of a dependency to enable running bleeding edge software in an otherwise stable environment','Rollbacks','A GUI tool for searching nixOS options and packages preferably without the need for an internet connection','GuixSD','','','','','','','','','Y','','','','',''),(711,NULL,4,'en','1452917685','A1','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','','N','Y',NULL,'Lack of time','It\'s the feature',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(712,NULL,NULL,'en','1463967610',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(713,'1980-01-01 00:00:00',5,'en','1020634034','A5','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','','','','','','','','','Y','Y','','Y','','','','Y','Y','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','Y','Y','Y','','','','','','','','','Y','Y','','','','','','Y','Y','Y','','','',''),(714,'1980-01-01 00:00:00',5,'en','797563889','A2','A3','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Used Archlinux back in the day but it updated to broken state. Discovered NixOS via a talk at a conference, tried it and never looked back since, although I even used a wide range of linux distros professionally (at my previous job).','','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','Declarative package/system management','Mixing a stable distro with unstable packages where needed','Reliability','Improve Documentation, including bringing back the Wiki. \"Lets kill the Wiki\" at NixCON 2015 in Berlin was a BIG mistake, I hope Rok knows that by now. Let\'s make nixos.wiki official','I heard that Gentoo is nice, also maybe I would go back to Archlinux.\r\nNot because those are good, but because apt, yum or any of the other package managers fuckin suck as hell (pardon my french)! This applies even more to these bullshit \"snap\"s and \"flatpak\"s and what these things are called out there...','','','','','','','','','','','Y','','','','','Y','','','PRs to nixpkgs itself','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same as with nix itself: Archlinux broke my stuff.','Y','','Y','','','Y','','','','','Same as with Nix','Same as with Nix','','','','','','','krops','','Y','','','krops','nixos-rebuild','All package managers suck, nix just sucks less.\r\nThe community is mostly welcoming and productive to work with, but sometimes things are just not streamlined enough. Why are there hundreds or thousands of PRs with one package update every week and month? Why not accumulate these patches on a dedicated branch and merge them every 2/3 days (at least for trivial package updates)?\r\nThe community does still scale, but IMO not much longer. Evergreen master should be a goal.'),(715,NULL,2,'en','1190202457','A2','A3','male','','','','','','','','','Y','','','','','','','Y','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','System wide configuration, robustness, configuration versioning.','','Y','','','','','Y','','','','','','','Y','','','','Y','','system-wide configuration','versioning (rollback)','nix repository size','improve documentation (examples), add LSP for configuration.nix (complete options, packages), speed up \'nix search\'','GNU Guix or Fedora Silverblue','','','','Y','Y','','','','','','','','','','','','Y','Y','','N','Knowledge',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(716,NULL,1,'en','1224901510','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(717,NULL,NULL,'en','2032206826',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(718,'1980-01-01 00:00:00',5,'en','1096072740','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Interested in reproducible builds, cross-platform compatibility (I use Darwin-nix as well as NixOS).','Y','','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Reproducible builds','Cross-Compilation','Reliable reproducible System configuration & Cross platform configuration (NixOS / nix-darwin)','I would add better support for cross compilation build targets to nix flakes.','A mix of tools most likely something home spun. Plan git repo for dot file / configuration management, Gradle for builds, etc.','Y','','','Y','Y','','','','','','Y','','','','https://github.com/cargo2nix/cargo2nix\r\n','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Wanted to have a single way to manage my development environment and share that across platforms and machines.','Y','Y','Y','','','','','Can share my configuration across platforms','Being able to rollback when mistakes are made','Being able to easily override packages / create custom derivations','Probably something a bit better / definitive for secret management, when using flakes to configure NixOS. ','Probably Ubuntu','Y','','','','','','','','','','i3','I use home-manager everywhere, darwin-nix, oxalica/rust-overlay, nix-community/comma, numtide/devshell. ','',''),(719,'1980-01-01 00:00:00',5,'en','536003812','A2','A3','male','','','','','','','','','Y','','','','','Y','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Interested in declarative systems configuration and recommended Nix(OS) by a friend.\r\nAdditionally to clean up/make dev environments declarative','','Y','','','','','Y','','','','','','','','Y','','','Y','','Declarative project environments and dependency management (nix-shell, nix-dev)','Ease of running packages/tooling to test with (nix-shell -p, nix shell)','','Iron out/simplify/update many of the UX components (nix/nix-shell/nix-*)','Ansible/Salt or maybe GNU Guix','','','','Y','Y','','','','','','','','','','','','Y','','','N','Not enough experience Nix experience yet','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Interest in declarative system management, recommended by a friend','Y','','Y','','','','','Declarative system management (single source of truth)','Reproducible system deployments','','Better flake integration, lock nix flake registry to system flake inputs. Tooling to interact with current system flake configuration (like nixos-option) or nix repl getSystemFlake','Ansible/Salt or maybe GNU Guix','Y','','','Y','','','','','','','sway','','',''),(720,'1980-01-01 00:00:00',5,'en','178304063','A1','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','','flakes','declarative config','nixos modules','debugging flakes','guix','','','','Y','','','','','','','Y','','','','cabal2nix','Y','Y','','','N','dont know how','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','after using nix package manager on mac','Y','','Y','','','','','modules','home manager','','more modules','guix','Y','','','Y','','','','','','','headless','devos flake templates\r\nemacs overlay','',''),(722,'1980-01-01 00:00:00',5,'en','441822862','A2','A2','-oth-','Non-binary','','Y','','','Y','Y','','','Y','Y','Y','','','','','Y','Y','','','','','','Y','','','Y','Y','Y','Y','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I originally heard about Nix via NixOS in 2014 and played around with it. I didn’t understand it at the time (i only thought of it as a package manager which allows installation of packages as a non-root user and annoyingly ask you to restart to “refresh your environment”) so my first impression wasn’t great.\r\n\r\nRecently, in 2020, I met someone who maintains nixpkgs. He keeps bragging about how good it is and it sparked my interest in Nix/NixOS again. He led me to Eelco’s PhD thesis which made everything clicked for me and pretty much made me understand the deal with Nix and how it compares to other software deployment solutions.\r\n\r\nSo now I’m daily driving Nix at work along with my personal stuff.\r\n\r\nSeriously though, y’all need to improve your documentation.','','Y','','Y','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Building software in a declarative and reproducible manner','Declarative environment management ','','I’d kill nix-env and nix-channels. nix-env is a terrible tool that make people fall into a false sense of “security”.\r\n\r\nI understand why it’s there but introducing nix by telling them they can manipulate their nix profiles in an imperative manner isn’t really a good idea.\r\n\r\nI think home-manager should be the go to default since it teaches people the magical nature of declarative environments.\r\n\r\nNix on OpenBSD would be lovely but sadly OpenBSD isn’t really a good subject (no ABI guarantees, no stable cross system build architecture) but it seems NetBSD is on its way.','Honestly, BSD-style ports or Gentoo emerge. I’d still use Gentoo/Slackware for my personal Linux needs and curse every time emerge -auDN fails overnight.\r\n\r\nThank you Nix for providing a solution which solves the overall issue of software deployment nicely.','','','','Y','Y','','','','Y','','','','','','poetry2nix','Y','Y','','','Y',NULL,'N','Y',NULL,'I need to run non free software and I’ve tried making it work but it’s not worth it.\r\n\r\nHonestly, I don’t get the big deal with NixOS. Nix and Nixpkgs is enough for me and a lot of other people too and the fact that I can use it on any Linux distribution and even macOS is a really huge selling point for me.\r\n\r\nNot to mention, as a system administrator, the limited reach of NixOS modules really frustrates me (ex. Setting up FreeIPA, SSSD, etc) and having to change it when I know what exact files I need to change is really annoying.','I don’t think there is and that’s fine, honestly. \r\n\r\nLike I said, the fact that Nix/nixpkgs works on pretty much any Linux distribution and macOS is the killer feature for me and frankly, I believe it should be the prime target.\r\n\r\nNixOS itself always feel like a piece of curiosity for me rather than something I’d use daily.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','IOHK haskell.nix',''),(723,NULL,2,'en','1226769268','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Liked the idea of a system 100% defined by code, saw a lot of traction around NixOS e.g. on Github and Gopher slack.','','','','','','','','','Y','','','','','','','','','Y','','Declarative','Reproducable','','','','','','','','','','Y','','','','Y','','','','','','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(724,NULL,1,'en','1507805461','A5','A4','male','','','','','','Y','Y','','','','','','','','','Y','Y','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(725,'1980-01-01 00:00:00',5,'en','848326899','A2','A3','-oth-','Neither','','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','','','','','','Y','Y','','','','','','','','','Y','','Reproducibility ','Reliability ','','Better errors and types','Archlinux/Pacman','','','','','','','','','','','Y','','','','','Y','','','','N','Difficult to test package changes','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),(726,'1980-01-01 00:00:00',5,'en','746402156','A5','','','','','','','','','Y','','','','Y','','','','','Y','','','','','','','','','','Y','Y','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','Y','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Sway','','',''),(727,NULL,3,'en','1261803191','A3','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Okay, so apprently this about nix in particular.\r\n\r\nWhen I first started using nixos, I was a bit wary on how get stuff added to nixpkgs. I knew I didnt have the knowledge to do it myself and instead tried asking on the matrix channel. Soon, someone suggested that I could just create the derivation myself. I initially thought that was a mean response, but after trying, I loved its simplicity and ease of use.\r\n','','','','','','','Y','','','','','','','','Y','Y','','Y','','Easily managing everything from a config and knowing that my system state is relatively clean. I\'ve rarely had to rollback my system.','Being able to run stuff easily (even if I have to use a fhs wrapper). Ive recently been helping out with a website and apparently other people were failing to build it because of node16. However, I had not yet updated by flake.lock and hence had been using stuff which I knew worked. ','Being able to build stuff easily. I no longer need to worry about leftovers from a previous build nor any dependencies on my system.','Add the ability to split the flake file up, use non-literals as flake inputs and relative path inputs.\r\n\r\nFor example If i had subdirectoy `cool`. I want to be able to able to merge it with the top level flake and/or easily reference it without having to specify the path of the project. \r\n\r\nWith regards to non-literals: Sometimes I want to simplify the inputs part of my flake using functions. However, currently, everything needs to be manually specified','manual suffering','','','','Y','Y','','','','','','','','','','node2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I was looking to move away from kubuntu and was attempting to move to arch instead.\r\n\r\nThen I saw a meme on reddit about nixos (I dont remember if it was a post or a comment). It was either about the declarative nature of it or it being stable (stable as in, it wont bork or I wont accidentally bork it). At this point, I was almost ready to migrate to arch but I quickly tried it in a vm but I soon realized I was way over my head (i didnt even actually install it, I just had the live media running). I then went back to learning about arch.\r\n\r\nDuring this time was exams and I didnt really want to accidentally ruin my setup, so I stayed on kubuntu and was ready to migrate to arch when I had a chance. However, I was still worried about the stability of arch. A few days before I was about perform the switch, I tried nixos again and actually decided to get it running this time. I soon fell in love and installed it instead. \r\n\r\nI\'ve been happy ever since','','','','','','','Personal machine','Knowing that my system state is (relatively) clean and doesnt have any leftovers from previous packages','Being assured that my system would not just bork itself because of conflicting packages. The nix build would just fail instead','The module system. Its just like flicking a switch','Being able to magicly manage kde options in a way that doesnt break plasma when options change. (this is infeasible I believe)','Arch/opensuse and suffering','Y','','','','','','','','Y','','',NULL,NULL,NULL),(728,NULL,2,'en','76823745','A2','A3','male','','','Y','','','','','','','','Y','','','','Y','','','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted to describe (and cache) my software dependencies.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducible, cacheable builds','Declarative configuration','Functional language','Add typing safety','Docker','','','','','','','','','','','Y','','','','','Y','','','','N','No need at the moment','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(729,NULL,1,'en','863336512','A2','A3','male','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(730,'1980-01-01 00:00:00',5,'en','995299373','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','Y','','','','Y','','Y','','Y','','','','','','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(731,'1980-01-01 00:00:00',5,'en','1440645984','A2','A2','male','','Y','','','','','','','','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','Y','','Y','','','Y','','Y','','Y','','','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Coming from Arch Linux, I really like the idea of reproducibility that Nixos offer','Y','','Y','Y','','','','Reproducibility','Reliability','Easy to use','Nothing','Arch linux with containers','Y','','','','','','','','','','I3 Sway Xmonad','emacs-overlay','Nothing',''),(732,'1980-01-01 00:00:00',5,'en','775180262','A2','A2','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Becuase I thought it looked interesting and I really liked the value proposition.','','','','','','','Y','','','','','','','','Y','Y','','Y','','Reproducible development environments','Declarative and reproducible system management','Lower barrier to entry for packaging simplish packages through nixpkgs build helpers','','Maybe GUIX and docker','','','Y','Y','Y','','','','','','Y','','','','cabal2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted a reproducible and portable system configuration','Y','','','','','','','Declarative system configuration','Reproducible system configuration','','Stabilise all the experimental features and make nix flakes de-facto.','GUIX possibly','Y','','','','','','','','','','i3-gaps','None','None',''),(733,NULL,1,'en','1183272182','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(734,NULL,3,'en','592717975','A5','A4','male','','','Y','Y','','','Y','Y','','Y','Y','','','','','Y','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Needed to maintain several isolated postgres servers (of differing versions) on macos. (not a fan of docker/vm\'s overhead for running cluster of local dev pg instances for development.) nix-shell does this really well. (My approach is perhaps not the \"correct\" way)\r\n\r\nThen starting using nix-env as a better pkg manager than much of homebrew.','Y','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','','','package management','builds and packaging','','Simplify tools for the common use cases. ','depends on the project.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','time and lack of confidence with the nix language.','N','Y',NULL,'not enough time to research and learn nix lang and tooling.','just waiting for the free time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(735,'1980-01-01 00:00:00',5,'en','631455243','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','N','Language simplification or using a normal language for definitions. Don\'t say that beta features not enabled by default are the way to do things. More examples and documentation for people not in the tribe that just sporadically need to do something with nix. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I\'ve tried guix and have avoid nix so far. Guix makes sense in a theorical way for me and nix doesn\'t. Nix is scarier. '),(736,NULL,1,'en','611537316','A2','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(737,'1980-01-01 00:00:00',5,'en','1429307410','A1','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','','','','','Y','','','','','','','Y','Y','','','','','','','','','','','','','Y','','','','','','','Y','','','','cabal2nix','Y','','','','N','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(738,'1980-01-01 00:00:00',5,'en','450380159','A2','A4','-oth-','Agender','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Perfect reproducibility is a very convincing paradigm shift','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Declarative and reproducible dependencies','Single-source OS config','Nix language used for all aspects of the environment','Add types','?','','','','Y','Y','','','','','Y','Y','','','','cabal2nix','Y','Y','','','N','aggressive right-wing contributors','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','','','','','','Y','','','','','','','','Y','','','Cachix\r\n','',''),(739,NULL,1,'en','1936159537','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(740,'1980-01-01 00:00:00',5,'en','1210234068','A5','A3','male','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','Bioinformatician','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','My friends in the doom Emacs community started using it and raving about it. I\'d tried it on an old laptop, but the high learning curve was scary, and I wanted to get work done. Then I took a day off from work because we went to put my childhood dog down, and I decided life was too short to be afraid of a learning curve, so I switched my laptop over from Ubuntu to NixOS, and never looked back.','','','','','','','Y','','Y','','','Y','','Y','Y','','','Y','','Declarative environment management','Declarative system or server configuration/management','home-manager?','A better cli','guix, maybe docker images','','','','','Y','','','','','','Y','','','','poetry','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Same as above','Y','','Y','','','','','','','','','POP! or manjaro probably.','','','','','','Y','','','','','bspwm','direnv with use flake, agenix, nixos-hardware, home-manager','',''),(741,NULL,2,'en','336715854','A5','A3','male','','','','','','','Y','Y','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','The package philosophy made a lot of sense. Really wanted a declarative way of describing my laptop setup.','','Y','','','','','Y','','','','','','','','Y','','','Y','','Declarative package management','Isolation of packages per directory','Trivial rollback','An easier way to understand package options','ArchLinux + Pacman','','','','','','','','','','','','','','','','','','','','N','Haven’t had a need yet',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(742,NULL,2,'en','1034398594','A6','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','','','','','','Y','','','','Y','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(743,'1980-01-01 00:00:00',5,'en','1519832231','A2','A3','male','','Y','','','','','','','','','Y','','','','Y','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Reproducible environments for builds and development','Configuration/Knowledge sharing','Declarative system config','Add static typing\r\nDecouple language, derivation creation and build-daemon','I‘d probably still be stuck with arch linux. Maybe a bit of docker.','','','','Y','Y','','Y','','','','Y','','','Laminar','https://github.com/NixOS/cabal2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','Declarative system config','Configuration/Knowledge sharing','Easy packaging and installation of any program','Much better testing infrastructure: Always green master, a lot of automatically checked stability guarantees, less waiting for hydra.\r\nI know faster building on hydra is hard to achieve, but slow roundtrip times are the biggest resource drain on me as a maintainer.','Arch','Y','','','','','Y','','Y','','','','nix-output-monitor','nixos-containers',''),(744,'1980-01-01 00:00:00',5,'en','1612092098','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','Y','','','','','','','','Y','','','','','Reproducibility ','Declarative envs','Central repo for all my pkgs','Fix error messaging, remove the Nix language for something cleaner. ','','','','','','Y','','','','','','','','','','Mix2nix, node2nix','','','','','N','Nix knowledge ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Daily machine ','Declarative management ','Home manager is nice ','Rollback','','Debian','Y','Y','','','','','','Y','','','','','Tried setting up Trustix and ran into some build issues, must revisit. Agenix also but never got into the workflow. ','Thanks for doing this!'),(745,NULL,NULL,'en','1884843092',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(746,NULL,1,'en','1697215381','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(747,'1980-01-01 00:00:00',5,'en','1109148328','A5','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','Robotics','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Exploring it for replacing a jenkins based build system.','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','determinism','reproducibility','isolation','Rebuild only if derivation artifacts actually changed, instead of everything downstream (content addressed storage, I think it\'s called)','Jenkins.','','','','Y','Y','','Y','','','Y','','','','','https://github.com/nix-community/pip2nix','','Y','','','N','I don\'t, coworker does.','N','N','Necessity.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://github.com/guibou/nixGL absolutely essential on non nixOS systems.','',''),(748,NULL,3,'en','1166800173','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(749,'1980-01-01 00:00:00',5,'en','286738555','A2','A5','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Already in place for a work project I joined','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','Reproducible build','Foolproof development environment','Pain and obscurity','Finalize the \"nix\" commands *quickly* and making sure they cover all COMMON use cases the old commands covered. Simplify them if needed (should not need to add weird \'-A\' arguments and determining the \"nixpkgs\" to use should have be a clearly-defined automatic process that rarely needs to be overridden. (The latter should also work for xxx.nix files.)\r\n\r\nAs for the fate of the old nix-xxx commands, please take this page as an inspiration:\r\n\r\nhttps://git-scm.com/book/en/v2/Git-Internals-Plumbing-and-Porcelain\r\n\r\nCurrently using nix commands feels like I imagine using git was before the \"porcelain\" layer was well-developed. Nowadays 99% of use cases are covered by porcelain and rarely does one need to descend to the older layers.\r\n','Yocto if building a linux distribution, otherwise maybe docker images','','','','Y','','','','','','','Y','Y','','','haskell.nix\r\n','Y','','','','N','Haven\'t had the need (everything I\'ve needed is found there, or can be with upgrading).','N','N','Spare time to try it in Linux. (My daily driver machine is MacOS.)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'haskell.nix','cabal2nix','Dependency management is hard. I think more needs to be done from the \"system\" to make maintaining a package repository including binary caches thereof easier. People run into broken dependencies, super-long build times, giant dependency trees, and the like, and this can be quite off-putting for using Nix.'),(750,'1980-01-01 00:00:00',5,'en','919283295','A2','A4','','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','it infra security specialist','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','windows failed on me after a journey of insider previews. NixOS came along my news reader and brought new excitement to return to a linux only laptop setup. The declarative/ functional approach is exactly what I am seeking for in terms of creating long-term stable systems that dont decrade through daily usage.','','','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Flakes','','','Better documentation, especially around Nix expressions and how/ why they work. The learning curve currently includes (for most people) to mentally switch to the concept of functional programming and understand nix vast universe of expressions.\r\n\r\nA best practice guide that is maintained over time, a lot of advice from the web works but turns out to have nasty side effects (e.g. nix-env for installing packages) but is nevertheless frequently advised, even in official documentation.','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','Y','','','','','','','','','Y','','','','','Y','','','','','enlightenment','','',''),(751,'1980-01-01 00:00:00',5,'en','1194500569','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I had an interest in functional programming from Haskell, which lead me to NixOS','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Purity (for evaluation, building and runtime)','String context (automatic dependency discovery)','Runtime dependency discovery','- Remove and rework flakes, ideally introducing individual features over time with community consensus\r\n- Rewrite Nix in a better language than C++, such as Rust or Haskell, in order to make contributions easier\r\n- Redesign nixpkgs from the ground up','','','','','','','','','','','','Y','','','','cabal2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I had an interest in functional programming through Haskell, from which I found NixOS, which caught my interest and I started using it','Y','','Y','','','','','module system','Good maintenance','Stability','- Add more abstractions in order to improve interaction between different modules. For example an abstraction for web servers and web apps, or an abstraction for ssl certificate providers and consumers, or an abstraction for color themes.\r\n- Improve the evaluation speed to not be proportional to the number of modules','Probably I\'d still be using macOS','','','','','','','nixus','','','','xmonad','','nixops',''),(752,'1980-01-01 00:00:00',5,'en','1316791415','A2','A3','male','','','','','Y','','Y','','','','','','','','','Y','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A1','','','Y','','Y','','','Y','Y','','','','','','','Y','Y','','','','Reproducibility','Language agnostic','Development environments','- Exhaustive documentation of functions and attributes\r\n- Make it as simple as possible\r\n- Have all possible questions & answers one can think of on StackOverflow\r\n','- Docker for application packaging\r\n- Language-specific package managers (Python\'s Poetry, Rust\'s Cargo) \r\n- Language-specific package repositories instead of Nixpkgs (PyPi, Crates.io)','','','','Y','Y','','','','','','Y','','','','- Poetry2Nix\r\n- Crate2Nix\r\n- Bundix\r\n- Julia2Nix','Y','Y','','Submitting PR to Nixpkgs directly','Y',NULL,'N','N','Having a friction-less experience with Nix first (either by it becoming easier to use, or by myself becoming experienced enough)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- JupyterWith - https://github.com/tweag/jupyterWith','',''),(753,'1980-01-01 00:00:00',5,'en','879872945','A5','A3','-oth-','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','For life','A5','I started using Nix via NixOS, so I\'ll answer on the next page.','','Y','','','','','Y','Y','Y','Y','','','Personal computer','','Y','Y','','Y','','Statelessness that gives me peace of mind','reproducible builds','','- Better UX for flakes\r\n- Better documentation','- Cry a lot\r\n- Not self-host as much\r\n- Docker\r\n- other various package managers','','','','Y','Y','','','','Y','','','','','','clj2nix https://github.com/hlolli/clj2nix\r\nnpmlock2nix https://github.com/nix-community/npmlock2nix\r\ncabal2nix https://github.com/NixOS/cabal2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','For life','A5','Until that point I\'d used entirely Mac computers, but I spent a lot of time doing janky customizations and using the terminal, and it became clear that Linux would be a better fit. I tried Arch linux a few times without success, and my friend started using Nix(OS), and convinced me to check it out. I think I liked that it was principled, had a reason to exist. Other linuxes like Ubuntu / Mint / etc all kind of blur together.\r\n\r\nI put it on a VM and gradually shifted all of my workflow over to the VM, until I was doing everything through it, then I installed it directly on the machine.','Y','Y','Y','Y','','','Personal computers','Easy installation and configuration of supported services','Minimal state','','Nice GUI configuration. I wouldn\'t use it myself, but I think NixOS could be made available to much less tech-savvy people.','maybe arch linux? Maybe I\'d still be on mac.','Y','','Y','Y','','','','','','','XMonad, i3','- search.nixos.org\r\n- home-manager','- https://github.com/nix-community/comma\r\n - it couldn\'t reliably find the right package.',''),(754,NULL,2,'en','238002473','A5','A4','male','','','','','','Y','Y','','','','','','','Y','','','Y','','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Needed a deterministic packaging solution to replace a previous Ubuntu based omni-package approach that contained a lot of hacky, handrolled logic. Had seen Nix evangelized a number of times on Hacker News and gave it a shot— initially just as a package manager on top of Ubuntu, but eventually with NixOS as well (due to needing Hydra). It\'s been a rough road, particularly at the beginning, but I\'m really pleased overall with how it\'s worked out and how much simpler and more maintainable it is than our legacy setup.','','Y','','','Y','','Y','Y','','','','','','','Y','Y','','Y','','Hermetic, deterministic builds, with automatic caching.','The ability to trivially and locally override packages with a different source version, additional patches, even local source.','The selection available in nixpkgs, especially including precooked solutions for nasty packages like Tensorflow, and the ability to lock this using flakes.','It would be really great to have searchable, extracted docs for all the nixpkgs helper functions. Discovery for these functions is horrible right now.','Maybe guix or Spack, but likely Bazel.','','','','Y','','','Y','','','','','','','','pip2nix\r\n\r\ninterested in poetry2nix, haven\'t made it there yet\r\n\r\ntried several or the node/npm/yarn ones, but the IFD stuff was a dealbreaker.','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(755,NULL,3,'en','257261098','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(756,'1980-01-01 00:00:00',5,'en','817222538','A2','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','','','Y','','','','','Y','','','','','','','','Y','Y','','','','','','','I think a straightforward way to view dependencies would be useful. Also,, I understand why the file paths are the way they are but they\'re so confusing to navigate qwq','','','','','','','','','','','','','','','','','Y','','','','N','','N','Y',NULL,'I was having too many issues, most of which were due to NixOS not being FHS compliant I think (or maybe I\'m just an idiot). buildFHSUserEnv is cool, but it\'s too complicated to work out which packages are needed..','see above!!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','The Nix ecosystem is really cool! I love how organized the configuration in NixOS is'),(757,'1980-01-01 00:00:00',5,'en','1095823281','A5','A2','-oth-','Non-binary','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Because I wanted to experiment, and it\'s just way better than what I was doing before.','','Y','','','','','Y','','','','','','','','Y','','','Y','','Easy config of many things','Declarative package management','','I would add ','I\'d probably be using Arch linux and non-declarative package management.','','','','Y','Y','','Y','','','','','','','','Naersk: https://github.com/nix-community/naersk','Y','Y','','','N','I don\'t have the time, the Nix language can be confusing at times, no good guides to creating packages.','N','Y',NULL,'Because I just got tired of copying config between the NixOS vm and the host','If I had the time for it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'I use many projects from the nix-community org on github.\r\nI use https://github.com/kamadorueda/alejandra as my nix code formatter\r\n','I have tried many of the flake-based deployment tools, such as deploy-rs, nixops, etc. I haven\'t needed them since at this point, I only manage my laptop. They may be useful in the future, though.',''),(758,'1980-01-01 00:00:00',5,'en','751157327','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','Hoped to get a reproducible system (version controlled)\r\nAnd then use it to deploy stuff too.','Y','','','','','','Y','','','','','','','','Y','Y','','','','Declarative, reproducible system','build and deploy','','add more tutorials to get started (specific for one use case, e.g. creating a reproducible declarative system)\r\nFrom scratch:\r\n- installing nix (+ troubleshooting)\r\n- writing a minimal system (boostraping nix + installing basic cli tools)\r\n- more nix syntax\r\n- use the syntax to write more complicated systems (configs, system files, GUI tools, ...)\r\n- package third-party software yourself\r\n','Homebrew','Y','','','','Y','','','','','','','','','','','','Y','','','N','not enough experience / knowledge, also not a lot of time\r\nNix is complicated, I\'m still bad at using pretty basic features\r\n','N','Y',NULL,'Nix is complicated: you need to understand a lot about how it works inside\r\n+ new syntax to learn to do anything\r\n==> Nix code is hard to debug, it\'s not clear at all how to debug anything from any tutorial I\'ve read so far. Maybe there\'s a way\r\n+ not being able to debug also slows down learning by a great deal.\r\n\r\nHard to get colleagues to use it when:\r\n- it takes time to learn\r\n- I can\'t even showcase it great because I\'m still not great at it\r\n===> I can\'t really use it at work','More tutorials about how to create a declarative system (on Mac / Normal Linux / NixOS)\r\n\r\nA lot of content is NixOS centric and commands / code doesn\'t seem to apply to me (on MacOS / Other Linux)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(759,'1980-01-01 00:00:00',5,'en','534017262','A5','A2','-oth-','problem','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','i switched from arch linux to nixos in 2017 because i got sick of feeling like i had no way to keep track of all the tiny changes to config files around my system. i fell in love with nix\'s ease of packaging things myself and not having to deal with the slow iteration of building, compressing, installing on arch just to have it be broken and have to figure it out from there. i\'ve never gone back.','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','easily develop and test packages locally','reproducible builds (dependency hell is the worst!)','declarative package management','i would remove flakes and stabilize the experimental nix command. i have no real opinion on flakes themselves, but i\'m frustrated that the manner they\'re being developed is interfering with regular users that don\'t care, and there are not enough warning signs treating them as an experimental feature for anyone to seem to care.\r\n\r\ni would also remove nix-env and maybe channels because while they\'re a great way to let new users from other distros *think* they understand what they\'re doing, in practice they turn out to be fantastic footguns.\r\n\r\ni would really like if \"2nix\" tools were more integrated and had more consistent interfaces. as it stands, it tends to take a lot of manual work to use them.','i would probably be using alpine and apk, as i\'ve heard some decent things about how it declaratively resolves your system state from a list of packages (although its cli interface is imperative, it seems possible to use it declaratively)','','','','Y','','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','switched from arch linux in 2017 when i got sick of feeling like i couldn\'t possibly keep track of all the tiny changes i\'d made to configs around my system. now i have a nixos-config repo that i can just point at as an example when helping my friends. never went back.','Y','','Y','','','','','declarative system config','deployment tools (i use nixus, a couple friends use morph or nixops)','easy rollbacks','i would add an easy way to run programs in an isolated environment, with either ephemeral or permanent storage. this would be particularly useful for running untrusted programs from the internet, but also for trying out programs i don\'t want to spew their configs and state in my home directory before i\'ve decided i want to keep them.\r\n\r\ni\'d also change the module system so that modules can be instantiated multiple times if you wanted to have more than one of a service, without having to use containers.','alpine for its package manager, or maybe arch linux.','','','','','','','nixus','','','','sway','nixus (https://github.com/Infinisil/nixus)\r\nhome-manager (https://github.com/nix-community/home-manager)\r\nsimple-nixos-mailserver (https://gitlab.com/simple-nixos-mailserver/nixos-mailserver)','','i would have liked to see questions about culture and experiences with the nixos community'),(760,NULL,NULL,'en','1626904593',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(762,NULL,2,'en','923690410','A3','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','Y','','','Y','','Y','','','','','','Y','','','Y','','Easy software installation.','Easy software modification.','Easy software distribution.','','Fedora','','Y','','Y','Y','','','','','','','','','','poetry2nix','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(763,'1980-01-01 00:00:00',5,'en','1942485019','A5','A2','male','','','','','','','','','','Y','Y','','Y','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Declarative, Reproducible builds seemed like a killer feature','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Declarative Environment Management','Large, Community-Driven Repo','Reproducible Builds','1. Diagnostic/Debug messages are not very clear\r\n2. Better ways to discover builtin & library functions, especially derivation builders and fetchers\r\n3. A feature-complete LSP','More conventional tools. apt, cmake, apache, ninja, etc.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','Time. I\'m not confident I have the knowledge to make useful contributions ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','The idea of having one file define an entire system was very intriguing','Y','','','','','','','Declarative way to define a system','Generations / Easy Rollbacks','Lots of available options ','','A more conventional linux distro. Likely something based on Debian','Y','','','','','','','','','','bspwm','Home-manager \r\nNur\r\n','',''),(764,NULL,1,'en','1239785402','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','Y','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(765,'1980-01-01 00:00:00',5,'en','1350167465','A2','A3','male','','','','','','Y','','','Y','','Y','','','','','','','Y','','Y','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I always used a fully dockerized infrastructure so I was researching ways to make the OS I ran docker on more lean and declarative. Nixos felt insanely more advanced than any of the other hack jobs that people use such as ansible.','','Y','','','Y','','Y','','Y','Y','','','','','Y','','Y','Y','','Making nixos exist','Development shell.nix','Deployment with nixops and others','Should have more examples because things only click once you\'ve seen them working, don\'t assume people can just write nix expressions. \r\n\r\nMost of my colleagues only use nix to write configuration.nix as a series of enables, no nix language functionality whatsoever. Same with shell.nix.','Keep using pip and pain','','','','Y','','','','','Y','','','','','','I\'m trying to move to poetry2nix from machnix','Y','','','','N','Nix needs better tooling to bump the version of a derivation. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Set aside a weekend to move my server from arch to Nixos, took 3hrs. Then moved 10+ servers the following week, and my friends did too.','Y','Y','Y','Y','','Y','','configuration.nix','Automatic updates','Ability to rollback','Better configuration.nix with home manager, flaked etc ootb.','Arch for everything, and some kind of kubernetes microdistro that barely gets dhcp','Y','Y','Y','','','','','','','','Sway','','machnix',''),(766,NULL,1,'en','1906237792','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(767,'1980-01-01 00:00:00',5,'en','1377283878','A5','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','','','','','','','','','','','','','','','','sway','','',''),(768,'1980-01-01 00:00:00',5,'en','641421060','A2','A5','male','','','Y','','','Y','Y','','','','Y','','','Y','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I have grown an unsatisfaction when using Debian based systems and Ansible ','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Reproducibility','Testability','Nice community','Complete the switch from `nix-*` to nix (2.4+) subcommands\r\nMerge together NixOS, NixPkgs and Nix documentations, while ad the same time provide less long documents, and more discoverabilty via a better TOC and search.\r\ndeprecate nix-env while provide and document an alternative way using the new Nix 2.4+ tooling.\r\n','Bazel','','','','Y','Y','','','','Y','','Y','','','','node2nix\r\nmach-nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Wanted a more manageable way of installing packages and customizing distro behavior. I really tested GUIX before NixOS and and I\'ve found it .... esoteric (with its opinionated choices for init management and configuration language). I wanted something more resonating with my knowledge an that it\'s also more \"sellable\" to clients and fellow technicians. ','Y','Y','Y','Y','','','','Reproducibility','Testability','Serenity','','','Y','Y','','','','Y','','','','','sway','home-manager','','Document Hydra a bit more please!'),(769,'1980-01-01 00:00:00',5,'en','439643104','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted a Linux that doesn\'t get messed up after upgrades. Ubuntu just fills up with garbage over time, and upgrades are sometimes just broken. Switched to Gentoo, but if you forget to upgrade for couple months, it can just not build new versions of everything, because of lack of hermeticity and all that. Thought about making a system with Gentoo on top of ZFS with snapshots and rebuilding \"world\" each time I install a package. Ran into NixOS that basically achieves the same and more, with way less hassle.\r\n\r\nEven when I got fed up with Linux on desktop and switched to macOS, I just couldn\'t start using Brew with its fetching random scripts from the Internet approach. So I used the same Nix and home-manager and after some issues got fixed for Darwin, I\'m back with Nix!','Y','Y','','','','','Y','Y','Y','','','Y','','','Y','Y','Y','Y','declarative package management with home-manager','declarative dependencies, environments and all that','hermetic builds, sandboxed from the rest of the system','reproducible environments for my desktop, builds and servers','- make CAS the default mode of operation\r\n- allow to host binary cache on IPFS\r\n- allow to somehow trust different compilers to produce the same output without recompiling (e.g. \"go\" of the same version will produce the same output for the same code, even if run on different platforms)','I would suffer with symlinked dotfiles and brew, I guess.','','','','Y','Y','','Y','','','','Y','','','','','Y','Y','','','Y',NULL,'N','Y',NULL,'The state of Linux on Desktop was abominable. I\'ve immersed myself in Apple ecosystem now.','Linux ecosystem should get on par with Apple one :)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','niv - I tried it, but it wasn\'t very convenient, and now flakes are way better',''),(770,NULL,1,'en','38369466','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(771,'1980-01-01 00:00:00',5,'en','1057087166','A2','A4','male','','','','','','Y','','','','','Y','','','','','','Y','Y','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','','Y','','Y','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','N','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Want to replace brew'),(772,NULL,NULL,'en','1525292509',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(773,NULL,-1,'en','1552361888','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(774,NULL,NULL,'en','209809666',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(775,'1980-01-01 00:00:00',5,'en','701755655','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Discovered NixOS and then the combination of nix-shell + direnv for work setup. I also needed to package some of my own binaries for use with NixOS.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','nix-shell','packaging','','A better language','asdf or similar','','','','Y','','','','','','','','','','','','Y','','','','N','Nothing','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Had a full setup of my systems with Ansible, and discovered the declarative setup in NixOS, and it was just a perfect fit for me.','Y','','Y','','','','','Declarative','Portability of system for new hardware','','A better explanation of flake usage. A less complex language.','Arch + Ansible','Y','','','','','Y','','','','','sway','None','None',''),(776,'1980-01-01 00:00:00',5,'en','1452994457','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','','','','Add: Faster nix language evaluation\r\nAdd: Modules built into the language, less verbose option declarations\r\nAdd: https://github.com/NixOS/nix/issues/3121\r\n\r\nRemove: nix-env','Docker\r\nAnsible','','','','Y','Y','','','','','','','','','','node2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','','','','','','','','','','','Y','','','','','','','',''),(777,NULL,1,'en','1436768105','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(778,NULL,1,'en','254508899','A2','A2','male','','','','','','','','Y','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','N','Y',NULL,'I tried NixOS and the problem that I was having was that I couldn\'t grab a binary from the internet and expect it to work. I could have used nix-shell for this but software is not always in the latest version or does not exist. I also like to compile software that I use to be on latest versions, this meant that I had to write nix expressions to build those programs which was not the best experience.','A clearer/easier way to write nix package definitions. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(779,'1980-01-01 00:00:00',5,'en','695927260','A2','A3','male','','','','','','','Y','','Y','','','','','','','','Y','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','Y','Y','','','Y','','','Y','Y','','Y','','','','','','','','Y','','Y','','','','','','','','','','Buildbot','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','Y','','','Y','','','','','','','','','','','Y','','','','','','i3','','',''),(780,NULL,1,'en','2112263374','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(781,NULL,1,'en','86056443','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(782,'1980-01-01 00:00:00',5,'en','576938946','A2','A4','male','','','','','','Y','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','','','','NixOS :)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'ve got a job a bank where my beloved friends were using nix/nixos. That\'s how it all got started. Yes... a bank building SW from sources :D','','','','','','','Y','','','','','','','','Y','Y','','Y','','reproducibility','functional language','configuration as a code','','','','','','','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','reproducibility','immutability','configuration as a code','','','','','','','','','','','','','i3','home-manager','','There are no words how I could express the job you\'ve done. Thank you so much!\r\nKarol'),(783,'1980-01-01 00:00:00',5,'en','19560453','A2','A2','-oth-','Non-binary','','','','','','','','','','Y','','Y','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','Y','','A1','Heard of it on lobste.rs and played around with it for a bit.','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','nix-shell','nix-build','nix-env','-','Makefiles','','','','','Y','','','','Y','','','','','','','Y','','','','N','Nothing?','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','Heard of it on Reddit and wanted to try it out. How you can have some configuration files and build your entire system from that seemed really interesting.','Y','','','','','','','Defining the system using nix.','home-manager','','-','Arch Linux','Y','','','','','','','','','','DWM','home-manager','-',''),(784,NULL,NULL,'en','2041327478',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(785,NULL,1,'en','2116954028','A2','A3','male','','','Y','','','Y','','','','','','','','','','','','','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(786,NULL,NULL,'en','374150606',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(787,'1980-01-01 00:00:00',5,'en','1794088190','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','','','','','','','','','','','','','','','','Y','','','','composer2nix\r\ncabal2nix\r\nnpm2nix\r\n','Y','','','','N','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(788,'1980-01-01 00:00:00',5,'en','861227775','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','Volunteer projects','A3','','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','','','','Make the Nix codebase more approachable for non C++ experts','','','','','','','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','Volunteer projects','A3','','Y','','Y','Y','','','','','','','- Switch from scripted network implementation to systemd-networkd\r\n- Speedup nixos-rebuild','','Y','','','','','Y','','Y','','','','mach-nix','NixOps',''),(789,NULL,1,'en','921136124','A5','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(790,'1980-01-01 00:00:00',5,'en','822306716','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','it came with nixos. i staerted to use direnv and lorri so i woudnt have to add all dev pacakges to my gloval system configuration','','','','','','','Y','','','','','','','','Y','','','Y','','nix-shell gives me a deterministic and reproducible dev environment per project on all my machines','','','','havent looked for alternatives, provably global system packages/configuration','','','','','','','','','','','','','','','','Y','','','','N','so far i had no software that wasn\'t in nix and if software was too old in stable, unstable was enough for me. somethimes i look at the hydra status before a new nixos release to help with zero hydra features but all the software i use already works and it is a bit tedious to find a software package that is broken by itself and not by a dependency','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','i read about it a long time ago and when i had to reinstall linux on one of my machines i thought i\'d give nixos a try. if it wouldn\'t work out i could install arch by hand in 2 hours. i never needed to install arch again :)','Y','','Y','Y','','','','one central config for my operating system','i can copy/reuse configurations from toher machines','full system configuration history in git','full secret management so i can have all my secrets in a central location and commit everything else without a second thought to a public git','maybe i would give guix a try or would have stayed with arch','Y','','','','','','','','','','awesome wm','lorri/direnv','home manager. i have too little static configuration. most stuff in my homedir is rw and is better handled with syncthing to be synced between my machines.','i find nix(language) and lib function documentation severley lacking. looking at other packages in nixpakages and copy/pasting often helps but i cant say i have a deep understanding of what i am doing. maybe more examples or in-depth explained complex package expressions would help.'),(791,NULL,NULL,'en','412820133',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(792,'1980-01-01 00:00:00',5,'en','1473595329','A5','A5','male','','','','','','','Y','','','','Y','','Y','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','Y','','','','A3','I am an consultant and as such have many client, many with older text stacks. I was searching for a way to keep the various dev environments separate and working as my dev machine evolved around them.','Y','Y','','','','','Y','','','','','','','','Y','','','','','Isolated, repeatable environments','pure envs in order to know what my projects really depend on','being able to recreate an older build environment','Consolidate the various projects into a coherent whole. Flakes? Niv? Channels? env vs pkgs vs nixos? I want to have to know less about the internals of nix.\r\n\r\nI would like it to be easier to assemble an older dev environment after the fact. It\'s possible now, but sometimes more painful than I think it should be.','asdf and docker','','','','','Y','','','','','','','','','','I don\'t know what those are even. like bundix? If so, bundix and I think I use a similar one for Elixir development.','','','','','N','','N','N','It feels like nix as a whole is still finding it\'s way. I feel like too much is flux right now for me to try NixOS. When I was younger I liked configuring my Gentoo machine, but now I\'m old and I just want the defaults out of the box so I use Ubuntu. That said NixOS is top of my list of distros to try. I believe it the power of NixOS, but I\'m not ready to take on the relearning it will incur.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None','There\'s nothing else like Nix out there. I\'m cranky about some of the sharper edges but I think it\'s a fantastic project and I thank you all very much.'),(793,'1980-01-01 00:00:00',5,'en','1918214908','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I started using Nix when I started using NixOS. Here is the story of how I ended up using NixOS :\r\n\r\nFirst, I switched to Linux. I\'ve always been interested by programming, first starting with Scratch, then went on using python. I was in the future interested in Linux and FOSS, so, about a year after I had my first personal computer (that I used for school, due to having trouble with handwritting), I installed Linux on it (it was governement-founded computer). (should have had around 15 at this time). It was Ubuntu, but I soon switch, after a failed install of base Arch, to Antergos. I liked AUR a lot, but didn\'t found how to automate the re-building of AUR package. I eventually switched to Gentoo, for the interested of customazibility. I eventually learned about NixOS (don\'t remember where, but it may be from LinuxFR). I was particularly interested in reproductible and declarative system configuration, in particular due to how fast I could reinstall a computer with diverse things (but never had to install my main PC configuration on things other than x86-64 machines). So, I read the manual on my ebook while doing camping with my family, and while it was still school vacation, installed NixOS on the PC. It should have been around 2018-2019. Oldest commit I find are from february 2019, but that is the repo I used for home-manager, where I remember that I used nixos for some time before using home-manager (and eventually moved all the configuration in this repo). ','','','','','','','Y','Y','Y','','','','','Y','Y','Y','','Y','','Build/work once, likely build/work everywhere','','','A feature making it trivial to build/run any software that work on Linux (for example, when the software is already packaged in another package repository, or when there are simple and easy build instruction for some random complex GUI app for Debian, but there are missing dependancies in nixpkgs. Or the most common assuming that the distro respect the FHS. As in \"if it can be installed easily on another (Linux) computer, it can be installed easily on my system\"). It would also need not to add too much impurity.','Guix','','','','Y','Y','','','','','','Y','','','','naersk, mach-nix','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Started using Nix when I started using NixOS, so the same answer as for when I started using Nix (copy-pasted here):\r\n\r\n\r\nFirst, I switched to Linux. I\'ve always been interested by programming, first starting with Scratch, then went on using python. I was in the future interested in Linux and FOSS, so, about a year after I had my first personal computer (that I used for school, due to having trouble with handwritting), I installed Linux on it (it was governement-founded computer). (should have had around 15 at this time). It was Ubuntu, but I soon switch, after a failed install of base Arch, to Antergos. I liked AUR a lot, but didn\'t found how to automate the re-building of AUR package. I eventually switched to Gentoo, for the interested of customazibility. I eventually learned about NixOS (don\'t remember where, but it may be from LinuxFR). I was particularly interested in reproductible and declarative system configuration, in particular due to how fast I could reinstall a computer with diverse things (but never had to install my main PC configuration on things other than x86-64 machines). So, I read the manual on my ebook while doing camping with my family, and while it was still school vacation, installed NixOS on the PC. It should have been around 2018-2019. Oldest commit I find are from february 2019, but that is the repo I used for home-manager, where I remember that I used nixos for some time before using home-manager (and eventually moved all the configuration in this repo). ','Y','Y','Y','','','','','Declarative system management','Easiness to add a new service (most of the time) : just set a couple option, and installed tor/pipewire/a complete mailserver (with nixos-simple-mailserver, DNS excluded).','The ability to rollback and to have atomic update make it easier for me to toy around. Althought I didn\'t ended up using rollback much, as nixos configuration make it work most of the time once the system build.','Better integration between run-time (set with various tools) and declarative (set with nix) option.\r\n\r\nI like to set up a bunch of the configuration I use with declarative tools. I ended up making some setting I would like to handle with nix (for example, wifi configuration for my home network) not configured with nix (but the amount of trouble this caused dimished over time, probably as I had more experience, and ended up making some cool declarative configuration with this (for example, having the default theme of KDE set up to what I want with XDG_DATA_DIRS, while being able to set it to something else). But another problem that may arrive is that the configuration used differ from what is defined in the declarative configuration, while not expecting it. It should be interesting to see what changed from the nix setting to what is currently used.','GuixSD, Gentoo is GuixSD didn\'t exist','Y','','','','','','','','Y','','','home-manager, nixos-hardware.\r\n\r\nI often read information on nixos-weekly (which inspired me in creating a (truly) weekly newsletter for a community project) and the discourse forum.\r\n\r\nsearch.nixos.org to search for package and option (would love to be able to easily search on all flake and other nix repository).\r\n\r\nflake-utils, in particular the part of it allowing to iterate over all the architecture. I would like to not use it, and just writing package declaration with no care to architecture like with a default.nix','Hydra (due to not having a permanently-running server that good fullfill this need, thought I toyed with it on my laptop).\r\n\r\nNixOps (Just ended up running nixos-rebuild --target-host ..., which is good enought when I just have to deploy on a rasbberry-pi 3 or the low-end VPS I\'m now using, without providing the interesting kubernetes-like number of running instance abstraction -- which would have interested my in having more server (althought kubernetes doesn\'t seems to like to mix CPU architecture). Haven\'t yet tested KubeNix. Overall, the far difference on how Nixos and kubernete is configured is something that make me wonder how I could take the best of both world).\r\n','Something worrying me with nix flake is ending up with outdated dependancies, as there is no simple way to ensure the flake.lock in the git repo is upstream is kept fresh (outside of downloading and rebuilding it, of course).'),(794,NULL,2,'en','1789283109','A2','A4','male','','','','','','Y','Y','Y','Y','','Y','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Config management and reproducibility of NixOS seemed very interesting.','','Y','','','','','Y','Y','','Y','','Y','','','Y','Y','Y','Y','','Deterministic builds','Declarative configuration','Reproducibility','Improved documentation.','Maybe more containers as a way to handle state','','','','Y','','','','','Y','','','','','','','Y','','Y','','N','Nothing really.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(795,'1980-01-01 00:00:00',5,'en','1136294263','A2','A2','fem','','Y','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','','','','','','','Personal computer','','Y','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','N','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(796,NULL,1,'en','1691256799','A2','A3','fem','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(797,NULL,NULL,'en','845754',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(798,'1980-01-01 00:00:00',5,'en','350179780','A2','A4','male','','','Y','','','Y','','','','','Y','','','','Y','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I\'m using Nix because I\'m using NixOS.\r\nRe NixOS: I needed a i686 (32bit) supporting distro. A colleague told me about NixOS. It took me some hours to comprehend its internal workings, then I decided that it\'s the most promising alternative.','','Y','','','','','Y','','','Y','','','','','Y','Y','','Y','','repeatable builds','clean (sandboxed) environment','','I\'m still having trouble debugging failed build. If a build fails, I would like to \"enter the build environment\" somehow. I know there are tools, but I had problems using them.','Maybe openSUSE\'s build farm.','','','','Y','','','','','','','','','','','node2nix (occasionally)','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I needed a i686 (32bit) supporting distro. A colleague told me about NixOS. It took me some hours to comprehend its internal workings, then I decided that it\'s the most promising alternative.','Y','','','Y','','','','Reproducible system','VM tests','','Some areas in nixpkgs/nixos might need consolidation.','Maybe ArchLinux','Y','','','','','Y','','','Y','Y','','','',''),(799,'1980-01-01 00:00:00',5,'en','180761578','A2','A4','male','','','','Y','Y','','','','','','Y','','','Y','','','','Y','Y','Y','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','Y','','Y','','','','','','','Y','Y','','Y','','','','','','Maintainer which are not helpful at all','','','','','Y','Y','','','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','python and R \r\n- nothing is moving forward since years',''),(800,'1980-01-01 00:00:00',5,'en','1875769446','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A declarative desktop (NixOS) seemed interesting to move to from my former ansible managed desktop.','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','','','Reproducible','','','','','','','','Y','Y','','','','','','','','','','','','Y','','','N','Most packages are already updated','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A declarative desktop to replace an ansible managed one.','Y','','Y','','','','','Declarative','','','Declarative partitioning','Fedora with Ansible','Y','','','Y','','','','','','','river','','',''),(801,NULL,NULL,'en','1266935778',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(802,'1980-01-01 00:00:00',5,'en','148546404','A5','A3','male','','Y','','','Y','','Y','','','','','','','','Y','Y','','Y','','','Y','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','The video of a docker container being smaller than alpine 🤯\r\n\r\nBut declarative systems are also a very compelling sell','','Y','','Y','Y','','Y','','Y','','','','','','','Y','Y','Y','','','','Development environment. I have found it\'s actually harder to just start hacking around in NixOS. Declarative projects require some thought, which can stifle creativity.','I think modules are overly paternalistic. Why should my grub.cfg be set up a particular way just because some pkgs maintainer likes it that way? Or my vimrc etc...\r\n\r\nAlso, the PR system is unsustainable. Within hours a contribution can become buried. 3k outstanding PRs is not a good look. Contributing seems to be more of a political game than a merit based one.','Probably just more docker','','','','Y','Y','','','','','','Y','','','','node2nix: https://github.com/CarolinaIgnites/editFrame/blob/55f113b5ec1ddfbcfe5f13a94924a7869475b1e4/flake.nix#L14','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'','Y','Y','Y','','A1','I tried standalone Nix, but thought having multiple package managers (on a system where I was root) was dumb. So I waited until I had a reason for a fresh install and decided to go all in with NixOS','Y','','Y','','','Y','','flakes','home-manager','hot switching (nix-rebuild switch)','Rewrite bootable iso files. I think it\'s a bit of a mess? Also allow for a luks partition. But this is something I can do, and merge upstream. Ideally, I\'d like to be able to run a live usb for my Nix systems as well.','Arch','Y','','','','','','','','','','Xmonad, i3, sway','Tweag\'s nix_rules for bazel','',''),(803,'1980-01-01 00:00:00',5,'en','2120422066','A2','A3','male','','','','','','','','','','Y','Y','','Y','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','','','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','Y','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(804,'1980-01-01 00:00:00',5,'en','499543154','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','A couple of weeks back. Was looking for an alternative to Homebrew and have been interesting in nix and nixos for quite some time, so decided to give nix-darwin and home-manager a go. Has been an interesting experience (but far from easy/smooth) -- mostly due to broken or unavailable packages for aarch_darwin. I think things would have been smoother on Linux.','Y','','','','','','Y','','','','','','','','Y','','','','home-manager','A declarative approach to managing my development machine and project environments.','','','Better Darwin support, a more hands on guide for beginners.','Homebrew and a lot of shell scripts that tried to automate as much of my setup as possible','','','','','Y','','','','','','','','','','sbtix, hex2nix, npm2nix','Y','Y','','','N','Still getting into it. Will probably do it once I\'m more comfortable with what I\'m doing.','N','N','Having appropriate hardware at work.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','',''),(805,NULL,NULL,'en','205076313',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(806,'1980-01-01 00:00:00',5,'en','1401885201','A2','A4','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I\'d known about nix from way back, and I\'d tried to run in on my laptop a couple times, in 2015 and 2018 at least.\r\nThere was always something off about the main os experience, but I loved nix pkgs.\r\n\r\nAt work last year, a colleague was tasked with getting the dev env setup working smoothly for new hires and I told him to look into nix. He really got into it and we\'ve been using nix for application develoment now for about a year. This is the second company where we\'re doing it.\r\n','','Y','','','','','Y','','','','','','','','Y','','','','','Reproducible builds','Easy onboarding of new devs','Rapid switching between projects with direnv-nix','The nix expression language. It\'s a major barrier to adoption among \'working programmers\'.','a combination of Makefile, os-detection switches, and Brew/apt/whatever. Plus docker. ','','','','','','','','','','','','','','','','','','','','N','Haven\'t needed to so far, I only use standard packages.','N','Y',NULL,'Bad hardware support, hard to run closed-source software needed for work.\r\nI also dislike systemd and want to run a distro without it.','- A database of known working hardware configurations that I could pull in\r\n- Option to not have systemd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','You are doing a great job, please keep up the excellent work.'),(807,NULL,1,'en','123564480','A5','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(808,'1980-01-01 00:00:00',5,'en','983203654','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was looking for a dotfile manager, and the fact that nix bundled config + software made me check it out. The ZFS support and the ease of adding custom packages & tweaks made me completely switch to NixOS.','Y','Y','','','','','Y','','Y','','','','','','Y','','Y','Y','','Configuration management','Reproducibility','Programmability','- Better devtooling: better documentation, better language server, typing\r\n- More (opinionated) templates\r\n- Better integration with third-party package managers/repositories, insted of having to combine yarn2nix, carnix, bundix, ...','asdf, GNU Stow, Ruby scripts, Docker, ansible','','','','Y','Y','','','','','','','','','','cabal2nix\r\nyarn2nix\r\nbundix\r\ncarnix\r\nsbtix (https://gitlab.com/teozkr/Sbtix/)\r\n','Y','Y','','','N','Time','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','I was looking for a dotfile manager, and the fact that nix bundled config + software made me check it out. The ZFS support and the ease of adding custom packages & tweaks made me completely switch to NixOS.','Y','','Y','','','','','Reproducability','Rollbacks','ZFS','- Declarative ZFS filesystems\r\n- Built-in rootless/wipe on boot\r\n- rEFInd support','Arch linux, Guix','','','','','','Y','terranix','','','','sway','rnix-lsp','nixops',''),(809,NULL,1,'en','1428088716','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','OpenBSD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(810,NULL,1,'en','2055214881','A5','A3','male','','','','','Y','','Y','Y','','','','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(811,'1980-01-01 00:00:00',5,'en','1735826318','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Security Engineer','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','reproducible builds','if it builds, it very likely runs','declarative build configuration','','','','','','Y','Y','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','Y','','','','declarative configuration','reproducible configuration','','','Probably another Linux distribution managed via ansible, or other alternatives (saltstack).','Y','Y','','','','','','','','Y','','','',''),(812,'1980-01-01 00:00:00',5,'en','2043009854','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','We started using it at my company.','','Y','','','Y','','Y','','Y','Y','','Y','','Y','Y','Y','Y','Y','','Declarative environment management','Reproducibility','','Static typing!','Plain Arch Linux, Makefiles, bash scripts, tissues to wipe away my tears','','','','','','','','','','','Y','','','','cabal2nix, haskell.nix','Y','','','','N','Not having had the chance yet, maybe soon','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','When we started using Nix at our company.','Y','','Y','Y','','Y','','See Nix','','','Currently, support for user files and multiple hosts are provided by the community (home-manager, devos). It would be nice to build them into NixOS.','Arch Linux and GNU Stow','Y','','','','','','','','','','XMonad','home-manager, haskell.nix, niv','',''),(813,'1980-01-01 00:00:00',5,'en','1490020455','A5','A4','male','','','Y','','','Y','Y','Y','','','Y','','','','','','Y','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','While suffering from the dreaded \'Distro-Hopping\' disease. I came across something new, something different, NixOS. Since first install it has been my go-to for all devices, desktop, laptop, servers, IOT with rpi3/4. ','','Y','','','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','Declarative Config','Reproducible System Flakes','Reproducible Dev Environments','Service Management Agnostic support. Would be beautiful to be able to leverage runit or GNU shepherd if I chose to.\r\n\r\nAlso, I would by default NOT include the NixOS documentation, except when installed from live environment. Having to include option to \'remove\' this from my server systems is annoying and goes against my ideal Minimal start deployments.','Before Nix I used minimal distros such as Voidlinux or Alpine mostly. Having only the bare minimum installed and building your own systems up rather than ripping and removing to slim down what others \'think\' I need.','Y','','','Y','Y','','Y','','','','','','','','','Y','Y','','','N','Nerves. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Distro-hopper.. NixOS seemed better, smarter.','Y','Y','Y','Y','','Y','','Declarative Config','Reproducible System Builds','Reproducible Dev environments','','','','','','','Y','','','Y','','','bspwm','You brought up Colmena earlier, but its really fantastic and I wish some more folks would jump on and work on it. Have also Agenix and Homeage sparingly. Would love to see it merged into normal NixOS usage in future.','NixOps just did not work for me. Also seems most development has stalled recently. Would love to see it improved.\r\n\r\nMobileNixOS would be awesome to see happen, at least on the PinePhone. Understanding that more folks need to get devices and work on it though. I do hope to assist in this area in the future.','Doing good guys. Really enjoy everyone in the forums, on twitter and youtube that discuss Nixos. Really great community.\r\n\r\n'),(814,'1980-01-01 00:00:00',5,'en','662812964','A5','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A1','Our projects leverage nix shell for local dev. We also use nix in our CI pipelines to build containers.','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','','','','','','','','','','','','','Y','','Y','','','','','Y','','','','N','','N','Y',NULL,'Difficulty / time','A good book that takes the pills and expands on them to show how to build and manage the lifecycle of a full system with lots of examples and suggested patterns.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(815,'1980-01-01 00:00:00',5,'en','1963243067','A2','A4','male','','Y','','','','','','Y','','','','','','','','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','I was tired of my system getting slowly corrupted between OS updates.','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','Declarative package management','Mix and match builds','Image creation','','Probably pacman and all the various language specific dependency managers (e.g. pip, npm, conan)','','','','Y','Y','','','','','','','','','Azure Pipeline','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I got tired to distro updates breaking my system.','Y','','Y','','','','','Declarative configuration','Image creation','Service configuration','','','','','','','','','','','','','sway','home-manager','',''),(816,NULL,NULL,'en','2017578039',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(817,NULL,NULL,'en','1233903917',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(818,NULL,2,'en','1048672558','A1','A4','male','','','','','Y','Y','Y','','','','Y','','','','','','Y','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','To develop hasktorch, it depends on c++-library. It has complex dependencies and needs custom packages.\r\nIt is easy for nix to manage the dependencies.\r\n','Y','Y','','Y','','','Y','','','','','','','Y','Y','Y','','','','High learning cost','Immutable packages. ','Cache','Add static type and type class, and remove dynamic type.','Use docker.','','','','Y','Y','','','','','','Y','','','','cabal2nix\r\nyarn2nix\r\nbundix\r\nmachnix\r\n','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(819,NULL,NULL,'en','353736637',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(820,'1980-01-01 00:00:00',5,'en','1529874148','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','','','Y','','','','','','Y','','','Y','','Determinism','NixOS','','DHT or site with a list of 1. Binary caches 2. Signed (maybe even TPM/Secure enclave signed?) mappings between input hash and content hash 3. Maybe content hash to IPFS?\r\n\r\nBetter docs and more info in tools. I’ve had to read a lot of source code to understand.\r\n\r\nA |> to compose functions please. It’s impossible to read nested parentheses with multiline lambdas. It’d also help wi th the weird problem of “pre composed” functions in lib (e.g mapConcat instead of map x |> concat)\r\n\r\nIncremental builds','','','','','Y','Y','','','','','','','','','','','','Y','','','N','Personal issues','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','Y','','','','Personal machine','','','',' secret aware NixOS (e.g. whatever.secretEnv.”a” = someSecret instead of whatever.environmentFile = “/run/agenix/aaa”)\r\n\r\nMore non primitive option types (E.g. service.whatever.db = service.pgsql.out would be nice)','','Y','','','','','','','','','','Sway','nixos-container','',''),(821,'1980-01-01 00:00:00',5,'en','286774993','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','','','','','','Y','','Y','Y','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','It started with configurations of servers and a replacement of Ansible/SaltStack, which have their weaknesses. In nixpkgs, I get a huge amount of working and peer reviewed configurations that I would otherwise would need to build myself.','Y','','Y','Y','','','','Declarative Package Management and Configuration','Low level contribution to nixpkgs','Use of latest packages if needed','Something like USE-Flags to enable/disable functions on all packages, instead of using overrides.','ArchLinux','Y','','','','','','','','','','i3/sway','','','We need to go away from Github, which is only reachable via IPv4. Maybe if gitea got federation, this would be a good alternative.'),(822,NULL,1,'en','129619457','A2','A4','male','','','','','','Y','Y','','','','Y','Y','','','','','','Y','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(824,'1980-01-01 00:00:00',5,'en','769762331','A5','A4','male','','','Y','Y','Y','Y','Y','Y','','','Y','','','Y','','Y','Y','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','Nix enthusiasts at work introduced me to the tooling.','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','reproducibility','quality of packages','ease of use','improve the command line experience ease of use','software released as flatpak and/or container images','','','','','','','','','Y','','Y','','','','','Y','','','','N','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(825,'1980-01-01 00:00:00',5,'en','1867275298','A5','A3','male','','Y','','','','Y','Y','','','','','','','','Y','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I started learning nix as a reproducible alternative to arch Linux and as an alternative haskell build tool to cabal and. stack.','','Y','','','Y','','Y','Y','','Y','','','','','Y','Y','','Y','','Declarative project/infrastructure configuration.','Reproducible builds.','Extensible (via overrides) recipes for builds.','There needs to be clearer community guidelines. The manual is already extensive so I guess we need fewer patterns, not more documentation.','Arch Linux, shellscripts, terraform, stack.','','','','Y','Y','','','','','','Y','','','','','Y','Y','Y','','N','Nobody responded to my pull requests.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Alternative to arch Linux. Reproducible configurations.','Y','Y','','Y','','','','Declarative configurations/infrastructure.','Reproducible builds/infrastructure.','Extensible recipies (via overrides) for builds/packages.','Many modules are minimal. I wish there was a little more organizing beyond the manual and IRC to communicate with people about them. I wonder if there are just too few maintainers.','Arch Linux, terraform, shell scripts.','','Y','','','','','','','','','Ratpoison','','','Nix is great! Let\'s try to make our relationship with guix collaborative. Maybe build some kind of interop? Let\'s also try to make nix simpler; there\'s too many ways to do things and so it\'s impossible to document them and evaluate them without spending years to learn trade offs.'),(826,'1980-01-01 00:00:00',5,'en','224155366','A5','A3','male','','','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I read about Flakes from Tweag\'s blog posts and decided that Nix would be a good way to lower my blood pressure (barring the initial learning curve -- which is understandably steep given how complex package management is and how much other tools get wrong or hide).','Y','','','Y','','','Y','','Y','','','','','Y','','Y','','','','Flakes','Though a high-tier platform, it runs on aarch64-darwin','Works on Linux/WSL','I\'m still early on my journey so I suspect many of the sharp edges are still behind several hills I have yet to climb.\r\n\r\nA better configuration language, or one with explicit types, would be helpful (nickel?).','Package managers provided by different operating systems or brew. And a stress ball. And baby aspirin.','','','','Y','Y','','','','','','','','','','','','Y','','','Y',NULL,'N','Y',NULL,'Weird use case -- I use EC2 instances which have essentially no storage, but large amounts of RAM. If I use a different distribution and instead install nix, I can create /nix ahead of time and make it a RAM disk.\r\n\r\nI\'ve run into problems trying to use a different store so it was easier for me to switch to Amazon Linux 2022\'s minimal image and just use that (no SELinux and I think it starts faster than NixOS).','The ability to easily move the store location without the need for a reboot, since a reboot isn\'t feasible when you\'re trying to move it to a RAM disk.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(827,NULL,1,'en','1476905277','A2','A3','male','','Y','','','','','Y','','','','','Y','','','','','','Y','','','Y','','','Y','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(828,NULL,NULL,'en','1822301288',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(829,'1980-01-01 00:00:00',5,'en','2092060313','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A5','Needed to work on multiple php projects all with different versions and not comfortable with working with VMs. Also had issues with upgrade breakage on Archlinux.','','','','Y','','','Y','','Y','','','','','Y','Y','','','Y','','anxiety free upgrades and installs','easy, copyable machine configuration','per-project dev environments','The channel feature doesn\'t feel 100% right, but i\'m not sure what i want instead.','archlinux for desktop and maybe debian or something elsewhere. Or perhaps try out Guix if that\'s not cheating.','','','','','','','','','','','','','','','https://github.com/NixOS/cabal2nix','','','Y','','N','Lazyiness, knowledge','Y',NULL,NULL,NULL,NULL,'A1','','Y','','Desktop','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Sway, Xmonad','','',''),(830,'1980-01-01 00:00:00',5,'en','1012426452','A2','A1','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I installed NixOS','','','','','','','Y','','','','','','','','Y','Y','','Y','','Declarativity','Nix shell','Flakes','Add a cli tool to run dynamically-linked binaries without creating a derivation with patchelf','','','','','Y','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','','I found the idea of declarative config appealing','Y','','','','','','','Declarative config','Nixpkgs','Rollbacks','','Arch or Fedora Silverblue','Y','','','','','','','','Y','','','','',''),(831,'1980-01-01 00:00:00',5,'en','781515579','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','yarn2nix','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','','','','','','','','','Y','','','','','','','','','','i3','','',''),(832,'1980-01-01 00:00:00',5,'en','2064427832','A2','A4','male','','','','','','Y','Y','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I started using NixOS first, Nix came as part of the bargain.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Declarative shell configuration (i.e. a shell for developing a particular package including my editor configurations)','Lock files for everything with flakes','Having a desktop environment synchronised across machines','Remove the multiple commands and settle on a single command format','I would probably lean on docker / flatpak.','','','','','Y','','','','','','','','','','','Y','Y','','','N','Time. Although I intend to change that.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Tried Puppet then Ansible to produce machine configurations and was unsatisfied. I started searching for a system that updates atomically from a configuration, found NixOS and haven\'t looked back.','Y','Y','Y','Y','','','','Declarative system configuration','NixOps','nixos-rebuild build-vm','Improve documentation of NixOps (I still don\'t follow the story of managing multiple sites, e.g. KVM & EC2, with it) and flakes.','Fedora Silverblue','Y','Y','','','','','','','','','sway','None that are nix-specific really. I specifically use mach-nix for python development and sops for secrets handling within NixOps.','I\'m still using NixOps, but I\'m looking for alternatives as the upgrade to nixops 2.0 has made managing multiple sites confusing.','I\'m very happy with NixOS and would love to contribute more, will do so when time allows!'),(833,'1980-01-01 00:00:00',5,'en','1718187411','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y','','','N','Y',NULL,'Time commitment; I was in the middle of porting my macOS Homebrew + dotfiles setup but couldn\'t continue because of lack of time, investment, and need to be productive in the moment.','If Nix/NixOS had official migration guides for these baseline-workflow oriented things (instead of relying on the community), it would be truly helpful.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Initial setup was immense','Probably when I get a new laptop and need to setup Linux on it',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','home-manager!',''),(834,NULL,2,'en','148460011','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','Y','General Software Developer','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was annoyed at how sometimes, things would just break back when I ran Arch Linux, but I liked the binary-backed from-source model.\r\n\r\nI\'d heard whisperings of NixOS in various online communities, and finally gave it a shot back in early 2020.\r\n\r\nI love it.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Easy rollbacks (not that I\'ve had to use them)','Ease of contained building','The community','I\'d make the unstable Nix Flakes actually good.','I\'d probably still be using Arch Linux, for better or worse.','','','','Y','Y','','Y','','','','Y','','Y','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(835,NULL,NULL,'en','361447353',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(836,'1980-01-01 00:00:00',5,'en','940561343','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I wanted to try something new and nixos seemed interesting. Also, home-manager looked useful ','','','','','','','','','Y','','','','','','','','','Y','Declarative home config through home-manager','Updates just work','Declarative config','Can run programs temporarily through nix-shell','Documentation, support for vmware workstation ','For managing configs, yadm','','','','','','','','','','','','','','','','','','','','N','I still need to finish going through nix pills','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I wanted to try having a declaratively configured system ','Y','','Y','','','','','Everything is configured in one place ','Large selection of software ','Package installation and updates are atomic','Some native steam games don\'t work.\r\nI can\'t get dcss trunk to build (probably need to go through nix pills for that)\r\nVMware workstation support (as a host) ','Arch linux ','','','','','','','','','','','i3','home-manager ','','Keep up the good work '),(837,'1980-01-01 00:00:00',5,'en','1399490182','A2','A3','male','','','','','','Y','','','','','','','','Y','','','Y','Y','','','','','','Y','','','Y','','Y','','OpenBSD','N','N','I haven\'t really tried and feel intimidated to, both from the ways I see the community religiously pitch it and from the way the workings are perceived.\r\nFrom the outside in, it looks like nix* is an entire different style of workflow and day2day usage which after 20odd years with more traditional systems make it hard to allocate the required time to figure out how and were to start through to get an understanding and a general feel for it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I haven\'t really tried and feel intimidated to, both from the ways I see the community religiously pitch it and from the way the workings are perceived.\r\nFrom the outside in, it looks like nix* is an entire different style of workflow and day2day usage which after 20odd years with more traditional systems make it hard to allocate the required time to figure out how and were to start through to get an understanding and a general feel for it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(838,'1980-01-01 00:00:00',5,'en','1235925224','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','SmartOS (illumos)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Declarative OS config with NixOS sounded tempting - tried out some NixOS config together with a friend, that we found on GitHub. Then stumbled across https://github.com/divnix/digga/tree/main/examples/devos and adapted our config to that. Been using NixOS ever since! Never going back to non-declarative!','Y','','','','Y','','Y','Y','Y','','','','','','Y','Y','','Y','','flakes','nix-shell','nix experimental-features','discoverability / docs / more easy starter examples','pacman','','','','Y','Y','','','','','','','','','drone CI','yarn2nix https://github.com/nix-community/pip2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Declarative OS config with NixOS sounded tempting - tried out some NixOS config together with a friend, that we found on GitHub. Then stumbled across https://github.com/divnix/digga/tree/main/examples/devos and adapted our config to that. Been using NixOS ever since! Never going back to non-declarative!','Y','Y','Y','','','','','maintaining declarative OS configs for all my machines','nixos-rebuild --rollback','switching between generations','discoverability / docs / more easy starter examples','manjaro Linux or GUIX','Y','','','Y','','','','','','','sway','https://github.com/divnix/digga\r\nhttps://github.com/ryantm/agenix\r\nhttps://github.com/nix-community/home-manager\r\nhttps://github.com/numtide/devshell\r\n\r\n','','Thank you!'),(839,'1980-01-01 00:00:00',5,'en','1607813212','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Friends told me it was awesome','','Y','','Y','','','','','','','','','Laptop','Y','Y','','','','','Having a defined system state','Sharing system over multiple systems','','Add Working NodeJS packaging','Arch','','','','','','','','','','','','','','','','','','','','N','No real introduction guide to the nix language. Struggling with my own packages','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','same as nix','','','','','Y','','','same','as','previous','same as previous','same as previous','','','','','','','','','','','sway even if it sucks a lot','','',''),(840,NULL,NULL,'en','1925773173',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(841,NULL,1,'en','1835250113','A5','A5','male','','','','','','','Y','Y','Y','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(842,'1980-01-01 00:00:00',5,'en','1903103541','A2','A2','male','','Y','Y','','','','Y','','','Y','Y','','','','','','','Y','','','Y','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Declarative system configuration\r\nNever again forget how a system came about','','','','','','','Y','','','','','','','','','','','Y','','Declarative Configuration','Nix shell dev environments','Rollbacks','Improve introspectability and docs for the nix language\r\nIt\'s quite difficult to understand all that goes on in nixpkgs','Guix XD\r\nProbably ansible if I\'m honest\r\nI think it\'s what gets closest otherwise to having a reproducible system','','','','Y','Y','','','','','','','','','','','','Y','','','N','Even after close to 2 years configuring something non-trivial with the nix lang is still more arcane magic to me than anything else','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Declarative configuration with rollbacks \\(*.*)/','Y','','','','','','','Declarative configuration','Rollbacks','','I don\'t know how NixOS could be better without it concerning nix. My main complaints are about the difficulty of understanding nixpkgs. NixOS + home-manager is pretty much ideal in my mind.','Good question\r\nI really don\'t know\r\nI don\'t want to go back','Y','','','','','','bud','','','','xmonad','Devos for config\r\n','','Thank you for maintaining and improving Nix/NixOS!\r\n\r\nI am currently working through https://ianthehenry.com/posts/how-to-learn-nix/ so maybe I will be able to give something back in the future^^'),(843,NULL,2,'en','907361854','A5','A5','male','','Y','','','','Y','Y','','','','Y','','','Y','','','Y','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','We were struggling with being able to build new cloud-based shared developer workstations on a regular basis. We transitioned from Ubuntu to NixOS in the hopes this would alleviate some of the issues. Some aspects got better (reproducibility, less collision between multiple users managing the system) but many things also got worse: general develop experience, ability of developers to diagnose and solve their own issues with the system, documentation of the system (local and web), the sheer number of little but constant paper-cuts and annoyances, etc. ','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','Y','','Declarative system definition with ability.','Roll-back to previous state','','* Rather than trying to work against decades of UNIX design, extend the ld.so/ldconfig system to do library pathing into the nix store rather than using the symlink system that requires packages to be recompiled to point to the right libraries.\r\n* Make the documentation comprehensive and well maintained. For example, when Gentoo was younger than NixOS is now, the documentation was FAR better and more comprehensive.\r\n* Fix the multitude of assumptions around users being defined in /etc/passwd. I constantly run into issues where NixOS configuration assumes that users are defined in /etc/passwd rather than the possibility of them being network defined (LDAP, etc). This is challenging because of NixOS desire to have user configuration be part of the declarative definition of the system. For example, rootless podman doesn\'t work correctly for network defined users because subuid mappings are only configured for local users.\r\n','Ubuntu','','','','','','','','','','','','','','','','','Y','Y','','N','Some fundamental design decisions mean that there are just so many pain points and edge conditions that I don\'t have motivation to make contributions right now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(844,NULL,1,'en','1314666728','A5','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(845,'1980-01-01 00:00:00',5,'en','243266795','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','','node2nix\r\nyarn2nix\r\npoetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','','','','','','Y','Y','','','','Y','','','','','','','',''),(846,NULL,NULL,'en','1174698280',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(847,NULL,1,'en','1772439220','A5','A3','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(848,'1980-01-01 00:00:00',5,'en','1927731738','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend of mine used it, tried some nix-shells, tested NixOS and dove deeply into the nixpkgs collection and contributed a lot, the more I learned the more I liked it. Used nixops to deploy on my NixOS VPS, now using NixOS and home-manager mainly.','Y','Y','','Y','','Android (see nix-on-droid)','Y','','Y','','Y','Y','','','Y','Y','','Y','','reproducibility','powerful language and ecosystem','portability ','Type checks, static types and more official IDE support. e.g. Intellij, vim, atom.\r\n\r\nBetter java (maven, gradle) build support.','before I used nix, I had handcrafted shell scripts to set up my dotfiles and stuff. Started using nix early in my career so never thought about it.','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Started with Ubuntu but wanted more control and learn more about linux, used gentoo for a while but that was just too time consuming. In the meantime I found nix and tried NixOS. In the first months, I was mainly focused on adding packages to nixpkgs that I needed. Now it is my go to OS for everything except gaming (Windows) and work (ubuntu there because sometimes i need to install so tools that may be propietary or not yet available in nixpkgs).','Y','','Y','','','Y','','reproducibility ','composability of different modules for different environments','clean system, no dangling files etc. your system is always clean (if you don\'t do any impure stuff)','Reduce build times, evaluation takes a lot of time','I would try ArchLinux.','Y','Y','','','','','','','','','dwm','home-manager, nix-on-droid, statix, nixpkgs-fmt, cachix github actions, cachix','NUR','Awesome project, thank you very much! Looking forward to each release and to stabilizing flakes :)'),(849,'1980-01-01 00:00:00',5,'en','1460508026','A5','A2','male','','Y','','','','','','','Y','','Y','','','','','','','Y','','','','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I wanted a declarative environment, and nix was the best choice. ','','Y','','Y','','','Y','Y','Y','','','','','Y','Y','Y','','Y','','Declarative environments\r\n','Reproducible environments','Most number of up-to-date packages','A much more selective / detailed upgrade process, allowing us to prioritize cached builds over newer builds via an option or user input. ','Ansible, Docker, and Fedora','','Y','','Y','','','Y','','','Y','Y','','','','node2nix and pypi2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I needed a declarative and reproducible environment and nixOS fits the criteria best. ','Y','Y','Y','','','','','Declarative environments\r\n','Reproducible environments\r\n','Most number of up-to-date packages','A much more selective / detailed upgrade process, allowing us to prioritize cached builds over newer builds via an option or user input. An official way to manage user environments (home-manager).','Ansible, Docker, and Fedora. ','Y','','','','','','','','','','i3','home-manager','None',''),(850,'1980-01-01 00:00:00',5,'en','1976501987','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','','','','','Y','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','','Y','Y','','','','','','','','','Y','','','','','','','Y','','','','','',''),(851,'1980-01-01 00:00:00',5,'en','1563816874','A5','A3','male','','','','','','','','','','','Y','','','','Y','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I found it confusing, I like figuring out confusing things, found that it was complicated for useful reasons (declarative systems) and nothing else has provided those features so I stick with Nix.','','Y','','Y','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','Comprehensive packaging combined with ease of contributing new packages.','Stability ','Declarative systems','','Maybe guix? Probably Arch.','','','','','Y','','','','Y','','Y','','','','node2nix','','Y','Y','','N','Social anxiety lmao','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','','','','','','Y','','','','','','','','','','i3 and sway','','','It would be excellent if people had a place where they could conveniently share up to date flakes and configs and rate them for popularity. Something like a flake community sharing mechanism?'),(852,'1980-01-01 00:00:00',5,'en','268396200','A2','A2','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','','','Y','','','','','Y','','Y','','','','','','','','','Y','','','','','Complete declarative Desktop management: User Home, KDE Plasma settings, all Accounts, Backup etc...','','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','Home-Manager','',''),(853,'1980-01-01 00:00:00',5,'en','774657026','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I wanted to have a record of all of the configuration changes I made to my OS and the software I use. I was tired of making changes via tons of different files scattered all over the place. I would forget what settings were needed and why. I wanted to be able to cleanly remove software that I was no longer using.','','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Centralizing configuration in one place','Configuring software in a declarative, not imperative manner.','Being able to temporarily set up a development environment for a particular project using nix-shell.','I would add better documentation.','Configuration management software such as Puppet or Ansible.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','Being unsure as to the best practices for packaging software.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','A desire to make the configuration of my operating system and services more declarative, centralized, and legibile.','Y','','Y','','','','','The ease of configuring and running system services.','The ability to roll back to previous configurations if updates cause issues.','The integration with Nix and nixpkgs','The extra storage space used during updates.','Archlinux','Y','','','','','','','','','','i3','home-manager','Nix flakes',''),(854,'1980-01-01 00:00:00',5,'en','1546900757','A5','A4','male','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Wanted to make sure my development environments (e.g., dependencies) are reproducible (for my future self), and Nix fits the bill, in addition to being a great package manager.','Y','','','','','','Y','Y','','','','','','','Y','','Y','Y','','Reproducible/Robust (future-proofing development environments, and relatedly supporting easy rollback in case things go wrong, giving me peace of mind when experimenting and prototyping).','Local/Modular (can produce ad-hoc nix-shells for development, or to test packages “without actually installing them system-wide”).','Functional (aka the Nix language), and hence Customizable (I can create packages if they are not available elsewhere).','Make the DevOps/update experience much better (especially after the arrival of content-addressable Nix), so that we get the `guix refresh` experience when updating dependencies.','Guix (probably, but Guix wouldn’t exist without Nix).','','Y','','','Y','','','','','','','','','','cabal2nix (callCabal2nix).','Y','','','','N','I am not a frequent/an active user of github yet (so this is me but not Nix/Nixpkgs), but will change soon.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Have been using Nix (the package manager) on Ubuntu before, and later I bought a new laptop, so why not.','Y','','','','','','','Reproducible (can set up a new laptop exactly like the last laptop modulo lower level hardware differences, thereby future-proofing my customization).','Robust (just roll-back when things go wrong, making me more willing to experiment with customization, and gone were the days fixing inconsistent system states due to conflicting packages).','Understandable (the whole system is configured in the domain-specific language of Nix in a small git repo, giving me a sense of control over my laptop, and I know well how to extend the system when the needs arrive).','','Ubuntu (last 4-10 years), or Debian (more than 10 years ago).','Y','','','','','','','Y','','','','direnv, home-manager, haskell-nix','','Great work! Thanks!'),(855,'1980-01-01 00:00:00',5,'en','1855588559','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','N','Y',NULL,'Difficulty of getting set up, no clear quick start or \"try these things\"','some good use cases as examples.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none at the moment','nix-darwin, home manager. ','I love the idea of Nix, and while there is a lot of high level documentation, there doesn\'t seem to be much in the way of entry level information. '),(856,'1980-01-01 00:00:00',5,'en','85870198','A5','A4','male','','','','','Y','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend tried to get me to try it in 2015, but I wasn\'t interested at that time. Later I saw it on the internet and experimented.','','Y','','','','','Y','','Y','','','','','','Y','','','Y','home-manager','easy portable configuration (both packages & dotfiles) between machines','aspirationally, declarative servers for home projects','','Improved docs. I want the language to be typed--as someone getting started, figuring out what I should configure where is hard. Similarly, I often need to configure things by writing snippets and functions (e.g. modules) and I find it hard to understand what the context is when they\'re evaluated. I want more versions of packages available in nixpkgs (I know I can do interesting overlay stuff, but I haven\'t really tried yet).','apt-get + my personal config repo, maybe guix?','','','','','','','','','','','','','','','','','','','','N','I don\'t have much time, and also it\'s big.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','Y','','','','','configuration tracked in source control','','','','ubuntu','','Y','','','','','','','Y','','tiling WM','home-manager','','I appreciate all the good work. Thanks!'),(857,'1980-01-01 00:00:00',5,'en','1466992170','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Software Engineer','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','After using Ansible for a few years to deploy the hosts on my home network, I grew tired of the issues with it (e.g. the fact that when you remove a piece of software from a playbook doesn\'t mean the software will be uninstalled). Nix and NixOS solve a lot of those issues for me. The fact that it\'s backed by a pure functional programming language is also a huge plus for me, given I use functional programming on a daily basis on my day job.','Y','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','','','','I would add static type checking and I would improve error messages.','Ansible','','','','Y','Y','','','','','','','','','','poetry2nix, npm2nix, crate2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I grew tired of Ansible and its quirks.','Y','Y','Y','Y','','Y','','','','','Certain upgrades leave a machine inaccessible over ssh for a few minutes, depending on how many systemd services are being restarted. It would be ideal if NixOS picked an order of systemd services to restart that would leave the host inaccessible for the least amount of time. This generally happens when the network services have to be restarted. The reason this is important is because I generally do deployments of new NixOS profiles over network.','Ansible','Y','','','Y','','','','','','','None','sops-nix','',''),(858,'1980-01-01 00:00:00',5,'en','1665564028','A5','A5','male','','','','','','','Y','Y','Y','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','declarative configuration, simultaneous versions of software, dev environments, easier package management, etc. was enthusiastically interested in functional languages at the time. ','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','declarative configuration','nixpkgs','\"nix-shell\" & \"nix shell\"','more intuitive docs. I\'d like to see a reference where its easy to look up functions and so forth, where each has its own page rather than being bookmarks on a single giant page. I don\'t care if a function is in the dev guide, nixpkgs guide, or whatever, just look it up!','arch or debian I guess? those were the ones I was using before. plus more docker, probably.','','','','Y','Y','','','','','','','','','','naersk, elm2nix are the main ones.','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','I don\'t really remember but probably because I was really into functional languages at the time. ','Y','','Y','Y','','','','configuration.nix','nixpkgs','nix-shell, nix shell','intuitive docs, more easily searchable and linkable. with the current giant monolith documents its hard to flip back and forth between topics of interest, and searching through them is bad. some kind of sandbox for developing proficiency at the nix language would be good too, I think its not very intuitive for people and its hard to get practice because how often do you write packages? getting proficient with the syntax at least would be helpful for people. ','arch or debian probably.','Y','','','','','Y','nix-copy-closure','','','','xmonad + xfce tools','','nix-env for software management. now I just use configuration.nix and nix-shell. I only use nix-env for deploying my web server. \r\n\r\nthere\'s an audio overlay for realtime audio, which I tried but couldn\'t really get to work. I also tried building nixos for pinephone but couldn\'t get it to boot. ',''),(859,'1980-01-01 00:00:00',5,'en','1190494249','A2','A4','male','','','','','','Y','Y','Y','','Y','Y','','','','','','Y','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Switched to nixos, did not look back :)','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Consistent dependency management','Declarative configuration ','Reproducible builds','Make flakes ubiquitous, migrate everything nix to flakes everywhere. Start using them already','Not really sure','','','','Y','Y','','','','Y','','','','','','Node2nix\r\nPypi2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Curiosity really ','Y','Y','Y','Y','','','','Declarative configuration ','Curated list of packages','Functional programming niceness','Rolling release, but in a way it works and nothing breaks. It is magic after all','Idk really... Arch?','Y','Y','','','','','','','','','Xmonad','','',''),(861,'1980-01-01 00:00:00',5,'en','1339022099','A2','A3','male','','Y','','','Y','','Y','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was dissatisfied with Gentoo and like functional programming a lot','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','Reproduceability','Very fine-grained control over versions, build flags etc. through a powerful programming language','nixpkgs & the community around it','Improve & strictify syntax\r\nIntroduce type system for nix','Maybe Guix? Gentoo?','','','','Y','','','','','Y','','Y','','','','https://github.com/NixOS/cabal2nix\r\nhackage2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Moved away from Gentoo and looked for a distribution that was less ad-hoc and as customisable as Gentoo','Y','','Y','','','','','Customizability of packages','Control over whole configuration in one file/git repo','Reproduceability','Split Nixpkgs & Nixos\r\nSplit off programming language package sets','Gentoo or Debian','Y','','','','','','','','Y','','','Cachix\r\nNiv\r\nhttps://github.com/oxalica/rust-overlay/','https://github.com/input-output-hk/haskell.nix','You didn\'t ask about how steep learning curves are and how documentation & beginner friendliness is. This is an important topic IMHO.'),(862,'1980-01-01 00:00:00',5,'en','721764869','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I am glad you asked :) \r\nFirst of all, I believe that reproducibility is very important. I always strived to achieve that in my projects. Building an application from the same commit should always yield the same result. I also tried applying that approach to my system. You see, I often break stuff, so I end up reinstalling the whole system more often than the majority of the population. I spend a lot of time in the terminal, which I adjusted to my needs. Thanks to the zsh and its plugin manager zplug I was able to put my configuration to a VCS and have it reproducible (pining commit hashes). Unfortunately, I could only manage a certain amount of stuff using that approach as it wasn\'t really popular. I also suffered from the fact that everything was installed globally. Then I discovered nix. Everything is versionable, reproducible, no more global packages. Since then my custom configuration grew largely as I can configure much more stuff using nix and I know that my configuration, my work, will survive full wipe of the system.','','Y','','','','','Y','Y','Y','','','','','','Y','','','','home-manager','declarative approach','reproducible','huge availability of package','','Probably I would stick to my zsh+zplug configuration which wasn\'t ideal but was better than nothing. For other things I would use docker.','','','','','Y','','','','','','Y','','Y','','https://github.com/NixOS/mvn2nix-maven-plugin','Y','Y','','','Y',NULL,'N','N','I have been an ubuntu user for the last 12 years. Apart from programming which is both my job and my passion I like to play games from time to time. Ubuntu is officially supported by steam. In programming everything is possible, so should be installing steam on nix os, but I am not sure if I want to go into that rabbit hole :)\r\n\r\nThanks god there is home-manager which brings benefits of using nix to non-nix systems. Although I would like it to be more comprehensive - like nix-darwin.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://github.com/nix-community/home-manager\r\nhttps://github.com/guibou/nixGL\r\n','','Thank you, this changed soo much in the way I configure my system!'),(863,NULL,3,'en','62192885','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','','Y','Y','','Y','','','Y','Y','Y','Y','','','','','','','','','Y','Y','Y','','Y','','','','Y','','','','','Y','Y','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','Y','','','','','','','','','Y','','','','','Y','','Y','','','',NULL,NULL,NULL),(864,'1980-01-01 00:00:00',5,'en','352263842','A3','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Looking for reproducible, native, cross-platform project dependencies after asdf turned out to be unreliable in a real project.','Y','Y','','','Y','','Y','Y','','','','','','','Y','Y','','Y','','Functional approach to system config','Reproducible','Dependable','I\'d add a type system to Nix the language. Maybe gradual typing? Would for sure include row-type polymorphism.','asdf, Podman, Ansible, more bash.','','','','','Y','','','','','','Y','','','','','Y','Y','','','N','Fear of PRs being stuck in review hell, as so many of them are.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Automated and reproducible personal OS config. Coming from Arch, I didn\'t like how complicated my Ansible set-up was to half-ass what NixOS currently does for me.','Y','','Y','','','','','cd /etc/nixos && git clone dotfiles && ln -sf \"dotfiles/nixos/configuration.${HOST}.nix\" configuration.nix && sudo nixos-rebuild boot --upgrade && reboot\r\nAnd a fresh install is pretty much ready to work','Rolling release with fresh-ish packages','System rollbacks without snapshots','Make it easier to deal with Hydra failures when running nixos-unstable. Some tool that will automatically bisect and pick the latest working commit for me when instructed to.','Arch Linux','Y','','','','','','','','','','Sway','','',''),(865,'1980-01-01 00:00:00',5,'en','1329817066','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I wanted a way of managing all the configuration and package installation I have set up on my laptop in one place, and in a repeatable way.','Y','Y','','','','','Y','','Y','','','','','Y','','','','Y','','Community that is very vocal about how to do things, which means the steep learning curve isn\'t as frightening.','nix-darwin/home-manager as a way of handling my system configuration.','Declarative system configuration and imperative package management.','An \"official\" way of handling secrets where I can specify, e.g. an encrypted file that I can (relatively) easily edit, from which to pull environment variables into my environment.','Homebrew, bash scripts, and eventually write something in rust myself to get rid of the bash.','','','','','','','','','','','','','','','','Y','','','','N','I wouldn\'t know where to begin, nor to have (much) useful to contribute.','N','Y',NULL,'I set up a VM on my machine to see what the fuss was about a few weeks ago, and then haven\'t had time to check on it more. I want to try it on my personal machine, which may mean using the VM on my work machine more frequently as I could share configuration.','Having time to set it up in the first place on \"bare metal\".',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Should I be using Flakes to manage my laptop configuration? I feel like the combo of nix-darwin/home-manager etc feels tenuous at best, and in some ways Flakes look more useful to define sets of packages and associated configuration. But I see it more in context of development environment automation, rather than wider system config.'),(866,'1980-01-01 00:00:00',5,'en','1705070960','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','','Y','Y','','','','Y','Y','Y','','','','','','','','','','','','Y','Y','','Y','','','','','Y','','','','Y','Y','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),(867,'1980-01-01 00:00:00',5,'en','75156088','A2','A2','male','','Y','Y','','Y','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','Declarative/reproducible system/package management','Declarative/reproducible environment management and software builder','Remote builds','Make it Haskell compatible. I.e. being able to use Haskell for creating derivations and etc.','Guix (lol)','','Y','','Y','Y','','','','','','','','','git-xmpp','node2nix, cabal2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','Declarative/reproducible system/package management','Declarative/reproducible environment management and software builder','Remote builds','Refurbish configuration.nix options into a more concise form','Arch','Y','','','','','','','','','','xmonad','https://github.com/nix-community/impermanence','',''),(868,'1980-01-01 00:00:00',5,'en','1138939651','A5','A1','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','','','','','GNU Guix.','','','','Y','Y','','Y','','','','','','','','','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','Y','','','','','','GNU Guix System.','Y','','','','','','','','','','Sway, XMonad','','',''),(869,'1980-01-01 00:00:00',5,'en','790388635','A3','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y','','','N','N','idk\r\n\r\nit seems good in theory, but I already have adhoc alternatives for most of my needs. Moving away to something else that does the same requires a strong incentive ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','idk\r\n\r\nI like arch ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None','Cool project\r\n'),(870,NULL,1,'en','562084244','A5','A3','male','','','Y','','','Y','Y','Y','','Y','Y','','','Y','','','','Y','','','','Y','','Y','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(872,'1980-01-01 00:00:00',5,'en','256032772','A1','A5','male','','','Y','','','Y','Y','','Y','','Y','','','','','','Y','Y','','','','Y','','Y','','Y','','','Y','','ChromeOS','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I had been moving towards configuration management solutions for a long time and Nix seemed like it solved a lot of shortcomings others had presented.','Y','','','','','','Y','','Y','','Y','Y','','','Y','Y','','Y','','Easy upgrades by putting in the time upfront.','I actually find the documentation and community good if you are willing to invest time.','It gives me a modern view that I can apply elsewhere.','NixOps and Flakes are obviously the preferred new solution, and flakes are in wise use.. but are still considered unfinished. Harder dates for migration/v1 type release would be great. NixOps is particularly frustrating. The darwin M1 support is pretty bad and I would love to help one day. Longer package backports (especially security) for older versions--some upgrades take a while when it is a weekend project. Docker container integration just doesn\'t work well. I know Arion is good and is a result of hard work, but I have complex docker-compose files that would take forever to integrate and I\'ve been struggling on how to solve that. Home-manager should be a first class citizen. A lot of lead developers configs they share don\'t use it, but I don\'t want everything in a system-wide config I may be adapting for different use cases. The discourse site is awkward for me to keep up with--I much prefer email lists. It is awkward to automatically apply per-host configurations because finding identifiers to key off and integrate them into configuration.nix is awkward in every case I\'ve seen.','Debian/Armbian with puppet and extensive use of docker and notes.','','','','Y','','','','','','','','','','','','Y','','','','N','Lack of confidence so far. I\'m getting there slowly. You can see sort of an evolution of styles over time in how things are done, and sometimes I\'m not sure what is the correct or current way. A style guide would be useful. But, I also know the community would be welcoming and help me.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Configuration management, a new challenge, frustration with other distributions. A correctness I appreciate--re: ARM image integration.','Y','','Y','Y','Y','Y','','I think for me Nix and Nixos are basically the same thing, so refer to Nix answers.','','','Refer to Nix answers, sort of mixed things up. ','Refer to Nix answers, sort of mixed things up.','Y','','Y','','','','','','','','i3','Home-manager. Mobile-nixos.','NixOps. I totally bailed on nodejs/npm and use it in a debian VM. And node/npm are also a huge mess, for sure. Nix darwin is something I can\'t daily drive right now, I run a full NixOS in UTM instead.','Keep up the good work! I appreciate it. Really, please consider mailing lists... I barely look at Matrix and 95% of my web is RSS reader-based. I want to be less connected overall, and dedicating time to a website with a discussion platform I am not very fond of is prohibitive. Reading up in Matrix is painfully slow. The learning curve is steep, but I\'m working through it steadily.'),(871,NULL,1,'en','289687488','A2','A4','male','','','','Y','Y','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(873,NULL,1,'en','665664895','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','Vulnerability Researcher ','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(874,NULL,1,'en','579215037','A5','A2','male','','Y','','','','','Y','','','Y','Y','','','','Y','','','','','','Y','','Y','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(875,'1980-01-01 00:00:00',5,'en','907389538','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','','','','','','desktop','Y','Y','','','','','Used packages do not interact with the rest of the system and can be activated/deactivated at will','','','Nixpkgs abstractions are extremely leaky when your nix expression breaks, which makes debugging hard\r\nReplacing a dependency is almost impossible without rebuilds. Grafting exists but it is limited and complicated','','','','','Y','Y','','','','','','','','','','Mach-nix','Y','','','','N','Time','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Direnv and nix-direnv','',''),(876,'1980-01-01 00:00:00',5,'en','1905767594','A2','A4','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','This was the package manager used to distribute Stratego/XT.\r\nMy Gentoo laptop decided to fail after 9 months without any updates.\r\nDebian was strangely way to complex to install when I tried it.\r\n','','','','','','','Y','','Y','','','Y','','Y','Y','Y','','Y','','Garbage Collected packages.','Distributed builds.','Nixpkgs & NixOS.','Experimental features should not brake non-experimental use cases! Usage of Nix without any experimental features is impossible today.\r\n\r\nImperative (nix-env) is not bad, it is just has a bad interface.\r\n','','','','','','','Nix 2.3.16, with no experimental feature.','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','Gentoo died … Debian was too hard …','Y','','Y','','','Y','','Extensible.','Customizable.','Easy.','Provide more integrations, a service which provide a web service interface should register itself in nginx/apache.\r\n\r\nProvide more default values. Setting up XXXXX should not require reading a book or a tens of blog posts.','','Y','','','','','','','Y','','','AwesomeWM','','',''),(877,'1980-01-01 00:00:00',5,'en','360581834','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','Y','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','',''),(878,NULL,NULL,'en','193206454',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(879,'1980-01-01 00:00:00',5,'en','1757924130','A2','A6','male','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because I needed 2 different versions of BOOST installed','Y','Y','','','','','Y','','','','','','','','Y','','','','','A per project environment that is tailored to that project','Not having things break because something got upgraded somewhere','Reproducibility','A book that explained how to use nix but I guess I will have to write my own book','Home-brew','','','','','','','','','','','','Y','','','cabal2nix','Y','','Y','','Y',NULL,'N','N','Nothing - I need excel and other data analysis tools',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'rPackages, haskellPackages','Julia really doesn\'t work - I tried to get it to work with nix but gave up','Oh yes - can\'t the language be given types and better error messages - it\'s often impossible to find out why something breaks'),(880,'1980-01-01 00:00:00',5,'en','68466763','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I was tired of my system breaking (Manjaro) and I was looking for a stable system with a good package availability. I used emacs before so I was familiar with this kind of configuration.','','Y','','','','','Y','','','','','','','','Y','','','Y','','Declarative package management','Nix shell to quickly run programs that get garbage collected later','Nix shell for development environments','The language, I know this is mentioned a lot, but it\'s not at all beginner friendly. After six months of using it I will struggle with it a lot. ','An arch based distro with deployment scripts ','','','','','','','','','','','','','','','cabal2nix\r\nmach-nix','Y','','','','N','My limited understanding of what I\'m doing','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','','','','','','Rollbacks','','','','','Y','','','','','','','','Y','','','Comma (nix run enhancement)\r\nLorri\r\n\r\n','cabal2nix\r\npoetry2nix','I love Nix! 👍'),(881,'1980-01-01 00:00:00',5,'en','861260547','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','Y','','','Y','','Y','','','Y','Y','Y','Y','','One config to rule all machines','','','Python 2','ArchLinux','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','N','Preparing my first PR atm','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','Y','','Y','','One config to rule all machines','','','','ArchLinux','Y','','','','','','','','','Y','','armv7 builds','','How on earth could I\'ve missed Nix(OS) for so long?\r\nThough, it\'s hard! I\'m using Linux since ~20 years (Linux from scratch, Gentoo, Arch). Starting with NixOS is like starting from zero. But, my experience helps.\r\n\r\nKeep going. It\'s epic!'),(882,'1980-01-01 00:00:00',5,'en','520852353','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Give me a job at adrian@adrianserbanescu.com','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','It came with nixos','','','','','','Nixos','Y','','','','','','','Y','Y','','','Y','','Imperative package management ','Nix-shell','Idk','Better docs','idk','','','','','','Idk','','','','','','','','None','None','','','','None','N','Am noob','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I kept on bricking arch','Y','','','','','','','Imperative config/packages','Nix-shell','Idk','better docs','Ubuntu','Y','','','','','','','','Y','','','None','None','I love your project. Please make it so that it doesn\'t die'),(883,NULL,NULL,'en','1028137633',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(884,'1980-01-01 00:00:00',5,'en','1228098243','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I had experimented with nix for a while, but at one point at work, our project required an older version of LLVM, and I was running arch linux, and therefore had the latest version. To solve the problem, I wrote a bit of nix to get a shell for the project with correct LLVM, and it all worked great. Now I use NixOS.','','Y','','','','','Y','','','','','','','','Y','Y','Y','Y','','Reproducible development environments','Reproducible builds','Binary caching','','','','','','Y','Y','','','','','','','','','','','','Y','','','N','Haven\'t yet felt the need, since everything I find myself needing is already packaged','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','','','','','Arch Linux','Y','','','','','','','','','','xmonad','home-manager, haskell.nix','',''),(885,NULL,1,'en','905960188','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(886,NULL,1,'en','6014650','A2','A2','male','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(888,'1980-01-01 00:00:00',5,'en','1576184366','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','Y','','Reproducible development shells (with flakes and direnv)','Binary caches in GitHub actions builds','Distributed builds','Improve the documentation, specially around flakes.','asdf','','','','','Y','','','','','','Y','','','','https://github.com/DavHau/mach-nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I had been using Fedora silverblue for a while. Looking around for similar distros, I found NixOS and tried it. After trying it for a couple of months in a spare computer and overcoming the initial learning curve, I made the jump and started using nix for all my development projects, and finally I changed my main machine to NixOS.','Y','','','','','','','Quick and fearless configuration changes, knowing that if I mess up I can roll back easily.','Shared configurations between all my machines.','The wide variety of packages in nixpkgs and how I can package anything that is missing and contribute back to the community.','Override modules without needing to create a whole new module.','Arch / Fedora silverblue','Y','','','','','','','','','','awesomewm','home-manager','poetry2nix',''),(889,'1980-01-01 00:00:00',5,'en','1916006279','A6','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','Y','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Because it\'s the pre-requisite of NixOS :)','Y','Y','Y','','','','Y','','','','','','','','Y','Y','','Y','','Nix flakes','Nix binary cache','','Stabilize content addressed nix support','FreeBSD ports for packaging\r\nAnsible et al. software configuration management systems','','','','Y','Y','','','','','','','','','','','Y','Y','','Applying patches on top of nixpkgs using flake-utils-plus when overlay is too much work','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','To be able to declare/provision the configuration of my host all in one place','Y','','Y','','','','','Modules','Modules','Modules','Add module for weechat :)','FreeBSD','Y','','','Y','','','','','','','Sway WM','home-manager','',''),(890,NULL,NULL,'en','883706992',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(891,NULL,NULL,'en','2012926977',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(892,NULL,1,'en','1563494625','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(893,NULL,1,'en','251848897','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(894,'1980-01-01 00:00:00',5,'en','537321412','A2','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I have been recommended Nix due to it\'s ability to reproducibly build packages and codify OS config. I wrote the NixOS configuration of my workstation and an Emacs + MELPA Nix package. I have kept using it because I didn\'t want to go back to divergent configuration and lose the ability to know what\'s really a part of a system, keep the full history of a system, roll back easily, save built programs in my own binary cache etc. Also I know of no other way to have custom builds of forked/patched programs as easily as with Nix. Since then I see no reason to wrangle with the unreliability/centralisation/non-extensibility of conventional build tools and library managers, unless there is legacy usage of it already in a project or a client requires - even if their documentation is better.','','Y','','Y','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','Reproducibility','Programmability','Binary caching','1. Replace Nix language with Haskell\r\n2. Expose a C API for store operations\r\n3. Add Windows port','1. Ansible+defensive copy+atomic symlinks for OS stuff\r\n2. Docker for development environments (pinning digest)\r\n3. Trying to pin hashes of dependencies in other ways (like manually doing `sha256sum -c`) wherever possible\r\n','','','','Y','Y','','','','Y','Y','Y','','','','Maven, NPM: Tried using npm2nix and maven2nix but couldn\'t get them to work\r\nQuicklisp: https://github.com/Uthar/nix-cl','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Pretty much same answer as the one about Nix','Y','Y','Y','Y','','','','Reproducibility','Rollbacks','Programmability','1. /etc files editable in-place, but replaced back on nixos-rebuild switch\r\n2. offline installation ISO','Ubuntu','Y','Y','','','','','','','','Y','i3','','home-manager','Thanks for making Nix! :-)'),(895,'1980-01-01 00:00:00',5,'en','372501948','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started using NixOS (see there).','','Y','','','Y','','Y','','Y','Y','','','','','Y','Y','Y','Y','','Declarative Configuration (NixOS, home-manager)','Reproducable Packaging (flakes)','Shell Environments','add types','Guix (or Docker or Ansible or Chef or...)','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','the sense of being responsible for the package after contributing it','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was tired of being afraid of updating Arch Linux and wanted to have a more stable distribution for my job. Ironically I don\'t use the rollback feature at all, but the declarative system and project configuration turned out to be the killer feature.','Y','','Y','','','','private Laptop','Declarative configuration','Rollbacks','','','Guix','Y','','','','','','','','','','xmonad','home-manager, nix-du, nix-tree, nix-direnv','lorri ',''),(896,NULL,1,'en','1309267295','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','','','','','','','','','','','','Y','Y','','','Y','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','','','','','','','','','','','','','','','','','','','','','bspwm','','',''),(897,NULL,1,'en','713003133','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(898,'1980-01-01 00:00:00',5,'en','73340046','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because of NixOS','','Y','','','','','Y','','Y','','','','General purpose','Y','Y','Y','','Y','','Reproducibility','Declarative configuration','Nix store','One \'nix\' command to rule them all (also replacing the nixos-* commands)','Ansible, apt','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Always want to have my stuff reproducible and under version control. Before I used Ubuntu, everything set up with Ansible. Then I read about NixOS and felt in love immediately.','Y','','Y','','','','General purpose','Reproducibility','Declarative configuration','Customizability','One \'nix\' command to rule them all (also replacing the nixos-* commands)','Ubuntu configured with Ansiblee','Y','','','','','Y','','Y','','','','niv','','The structure of the survey is confusing. The logo on the left corner implies the survey is about NixOS, but you are first asked about the nix package manager. I noticed after I was done and got the NixOS questions. So had to go back and do it again.'),(899,'1980-01-01 00:00:00',5,'en','89775957','A2','A2','male','','','','','','','Y','','Y','Y','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','Add a documentation more user friendly that go into more details on how to setup more tools like nixOS.wiki does. ','','','','','','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','I3','','',''),(900,NULL,1,'en','389959636','A2','A4','male','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(901,'1980-01-01 00:00:00',5,'en','558278670','A2','A2','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','Y','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','To better manage my dotfiles accross my machines. It grew to being used as a general tool for managing my scripts and environments in projects.','','Y','','','Y','','Y','','Y','','','','','','Y','Y','Y','Y','','Declarative configuration managment','Powerful build system that gives high confidence of reproducible builds','A large collection of packages and very easy way to modify existing packages or add new ones.','- Remove imperative package management\r\n- Make the community use nix flakes more\r\n- Add a lot of better documentation\r\n- Better error messages for nix lang (comparable quality to Elm or Rust)','Ansible or custom homegrown scripts','','','','Y','Y','','','','Y','','Y','','','','','Y','Y','','','N','Did not have a need fo now, also hard to find an easy-to-follow contribution guide that outlines how the nixpkgs is governed. It seems compilated at first glance (esp. the branching model, still can\'t grok it)','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','To manage my dotfiles and configuration','Y','','','','','','','System-wide declarative configuration management','Great modules that make installing compilacted services very easy','Bleeding edge packages','A better way to declaratively manage the installation process (esp. disk partitioning)\r\nMake home-manager a first-class citizen, with better thought out distictions between home configuration and system configuration.','Ansible or docker\r\nArch for development machines','Y','','','','','','','','','','swaywm','home-manager','','Great work on the Nix ecosystem, keep it up <3'),(902,'1980-01-01 00:00:00',5,'en','387367997','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','','','','','Y','','Y','','','','','Y','Y','','','Y','','Declarative system configuration/management','Declarative environment management','','','pacman','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Came from using Archlinux for many years. I wanted a fully declarative setup for my operating system with similar concepts as Archlinux.','Y','','Y','','','','','Declarative system configuration/management','Declarative environment configuration/management','','There should be a level of abstraction to simplify the onboarding and day-to-day use of NixOS. For example, simply upgrading or adding a new package to NixOS can be overly complicated (derivation, overlays, etc). Whereas other operating systems are much easier to understand such as Archlinux PKGBUILDs. Flakes are also confusing even though they are intended to solve some of this.','Archlinux','','','','','','','','','','','bspwm','','',''),(903,'1980-01-01 00:00:00',5,'en','2090721320','A5','A4','fem','','','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I read the original paper years ago, and toyed around with nix, but didn\'t start using it seriously until a few years ago. I started using it in earnest when I started a job and the team I was working with was using it for all their development work.','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','Y','','Overlays. The ease with which I can customize my dependencies is far and away the most powerful part of nix for me. Before I went all-in on nix, the friction to contributing changes upstream or fixing open source libraries was far too high. It was hard to get the system to use my changes, and hard to switch everything back to upstream when my changes were merged. The ease with which I can rebuild the system to use a patched version of the software is the most amazing part of nix for me.','It\'s a real language. The nix language is certainly warty and I think we all have things we\'d like to change or improve, but it\'s not yaml, and it\'s not a pile of shell scripts (on the surface at least). That\'s a huge win.','Declarative. Being able to have a declarative environment is great for portability across the devices and environments I work in. It\'s especially important for helping ease the process of onboarding new contributors to projects.','I would add a significantly expanded repl that enhanced discoverability. Even just the ability to view the nix source for a derivation would be a good starting point, but I\'d love the ability to navigate nixpkgs and discover how to do things without having the read the source on github.','Before nix I used a mixture of language specific tooling for development work (cabal sandboxes, cargo, GOPATH/go modules, python virtual environments), system package managers (generally apt), and sometimes containers. I guess I\'d, unhappily, go back to that. In theory tools like ansible can give you some of the declarative power that nix gives you, but they are so painful to use that it\'s just not worth it for local work.','','','','Y','Y','','Y','','','','Y','','','','cabal2nix: https://github.com/NixOS/cabal2nix\r\ncargo2nix: https://github.com/cargo2nix/cargo2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I had been using nix on macOS and popOS for a while, and it was okay, but I really felt like I\'d learn nix better if I installed nixOS in a VM. I liked it so much I wiped my laptop and started using it as my daily driver right away.','Y','Y','','Y','','','','Declarative environments that I can share across different machines','Easily rolling back to a previous state','Extremely easy configuration for most basic things (e.g. iptables configuration is super easy)','I\'d love an easier path for supporting some smaller devices. I still use debian on some of my small arm devices, because setting up the infrastructure for remote builds is a bit of work, and there\'s not really a happy path for managing the installation on those devices yet.','Some debian or arch derivative.','Y','Y','','','','Y','','','Y','','xmonad','','',''),(904,'1980-01-01 00:00:00',5,'en','1498807185','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','Daily driver','A1','Thought the concept of doing things declaratively was interesting. Thus I decided to give it a shot.','','','','','','','','','Y','','','','Desktop and laptop','Y','Y','','','Y','','Declarative configuration','Rollbacks','Temporary environments','Documentation. Compared to something like Arch or Gentoo, the documentation is far behind. Thanks to the unique nature of Nix, a lot of the information in these wikis is also not applicable. There aren\'t as many pages for specific things and the documentation tends to expect a good understanding of Nix rather than being throughout. \r\n\r\nI\'m not in this to learn a specific-use programming language, but to have a good package manager, so having documentation that would cover how to make stuff work would be great. The community NixOS Wiki project does help with this as it has some pages for certain packages and whatnot, but it\'s still nowhere near as mature as many other Wikis and still expects too much knowledge in my opinion.','I would probably stick with Gentoo\'s portage as that\'s what I used before. ','','','','','','','','','','','','','','','','Y','','','','N','I have not contributed to any repository so far. I have not figured out making packages yet and haven\'t needed to make any. I might delve into it, but it looks complicated.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','Daily driver','A1','It\'s what introduced me to Nix, so same as with Nix, because it seemed interesting and I like trying out interesting things.','','','Y','','','','Desktop, laptop','Declarative configuration','Rollbacks','Temporary environments','Same as with Nix, the documentation. NixOS is implemented very well in my experience, but the documentation as a whole ends up being even more lacking than Nix since it suffers from everything that Nix does along with the added elements.','Gentoo as that\'s what I used before.','Y','','','','','','','','','','Sway right now','','',''),(905,'1980-01-01 00:00:00',5,'en','756629771','A2','A4','fem','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Haskell (cabal2nix) back when cabal-install had actual issues and other people were flocking to stack.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','FP','Purity','Reproducibility','I would remove flakes, or at least the current notion of flakes that appears to diverge from Nix\' ideals of purity and reproducible builds (lockfiles mutating underneath me without my approval, etc.)','I\'d probably go live off the land somewhere. IT has become intolerable to me without Nix (or something very similar, perhaps I could live with guix)','Y','','','Y','Y','','','','Y','','Y','','','','cabal2nix, crate2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was a poor student with an SSD that kept killing data horribly and eating my entire system. I had a setup on Arch that could more or less reproduce my system quickly when it happened (which was extremely often, once every 14d or so) instead of doing something sensible like running my OS off a USB. I learned about nixos in #haskell on freenode (I think) and it was the perfect fit for doing this reliably and sanely.','Y','Y','Y','Y','','','','Declarative','Functional','Reproducible','More declarative init, (systemd as stage 1?) more declarative network conf, better secret management ','GuixSD perhaps. Anything that is essentiall NixOS. To a lesser degree, maybe one of the ostree-alikes, but I really think mutating things to try and approximate NixOS is pretty bad. Probably go live off the land instead.','Y','','Y','Y','','Y','','','','','xmonad','home-manager, nix-diff (oh my good, so good), niv','','The marketing dept\'s lack of obvious \"listening to users\" has me worried, especially because it feels like you\'re diverging strongly from focusing on NixOS, and the corners cut in flake design etc which are being touted as boons (let\'s do toml instead of nix, etc.) are game-breaking to me. It is comforting to see this survey as it feels like an attempt to try and listen to users a lot. This has me slightly less worried for the future of Nix, which I have been quite a lot recently. Please keep FP, please keep a focus on reproducibility (_stop_ mutating my sources in secret!) please don\'t try and make some schematized non-FP worse-nix. Thank you for everything. :)'),(906,'1980-01-01 00:00:00',5,'en','599058671','A5','A2','fem','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','Y','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend recommended it to me and wanted to use it in a joint project.','','','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Declarative package management','Declarative package building for mentioned dev environment','Nix-shell, dev environments','Add static types, language integrations, a good stdlib and serde, a good PEG library, removal of reliance on bash, C/Rust-like arg syntax, rustdoc documentation. Capability based access to the nix store, for storing secrets. ','I would probably be attempting to build something similar. Declarative package management fills too important of a niche to not exist.','','','','Y','Y','','','','','','','','','Drone','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend recommended it to me. ','Y','Y','Y','','','','','Declarative environment management','Rollbacks, magic rollbacks, and remote configuration','','Remove the module system and replace it with functions, so you can have multiple instances of a module active at once. Better, strongly typed modules and a better wrapper around tmpfiles.','Probably trying to build something similar.','Y','','','Y','','','','','','','Sway','buildRustPackage, npmlock2nix','npmlock2nix because it stopped working recently, morph because it doesn\'t support flakes',''),(907,NULL,2,'en','2143350569','A5','A4','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','','Y','Y','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(908,'1980-01-01 00:00:00',5,'en','1633372378','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started using nixos, wanted to use nix shells/add packages. Wanted to try something that would keep clear state better- more declarative/consistent between machines/installs than debian; more control ','','','','','Y','','Y','','Y','','','','','','Y','Y','Y','Y','','Declarative system/environment definition','Lots of packages','Flakes','Clean up flakes/nix language. Have contributed packages, and I still struggle, especially finding what I should do/write.\r\n\r\nWould like to see ipfs, bazel integration?\r\n','Apt? Language specific dev tools ','','','','Y','Y','','Y','','','Y','Y','','','','Naersk,\r\nGo/python/node to nix (forget which ones)','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Decorative machine management','Home manager','Erase my darlings','Better install experience/prebaking of disks ','Guix/debian ','Y','','','Y','','','','','','','sway','Home manager?\r\nDocs?\r\nNixery?','Nixops','Nixos is hard, but rocks'),(909,NULL,2,'en','452544901','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','kernel developer','','','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','Y','','','','','','','Y','','','','Desktop/Notebook','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(910,NULL,1,'en','1686484880','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(911,'1980-01-01 00:00:00',5,'en','826764258','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','For sharing configuration between machines (home manager/nix Darwin)','Y','Y','','Y','','','Y','','Y','','','','','','Y','','','Y','','Reproducible','Reversible ','Ability to reason about changes','Imperative management, channels','Dot files and git. And nowhere nearly as effective. ','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(912,NULL,4,'en','125843390','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Electronic musician','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was seduced by the immutable possibilities, and by the declarative configuration : to elaborate the project design directly from inside the work in progress, in a declarative manner, like the landscape of a process, far from what I too often consider as a pointless IO exchange with bare metal ','Y','Y','','','','','Y','','Y','Y','','','','','Y','','Y','Y','','Declarative ','Reproducible','Adaptability ','','Guix or Fedora Silverblue','','','','Y','Y','','','','','','Y','','','','','','Y','','','N','I\'m too new, clumsy and messy','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','','','','','','','','','','','','','','','','','','','','','','','',''),(913,'1980-01-01 00:00:00',5,'en','1050090378','A5','A2','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I started using Nix after recommendations from friends and blogs. I was looking for a way to build packages that could be run across systems with little effort.','','','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','Declarative Configuration','Tracking with Git (Flakes)','','Better documentation and stable flakes.','Probably still Arch Linux','','','','Y','Y','','','','','','','','','Drone','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','dwm','','',''),(914,NULL,1,'en','1211884918','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(915,NULL,1,'en','218344946','A2','A2','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(916,'1980-01-01 00:00:00',5,'en','427981993','A5','A4','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I got burned by arch one to many times and wanted a system that I could do rollbacks on.','','Y','','','','','','','Y','','','','','Y','Y','','','Y','','Reproducibility ','Lots of packages compared to the alternatives ','System configuration as code','*Namespace confusion. Which nix the language, package manager, or OS.','Debian or maybe gnuix ','','','','','','','','','','','','','','','','Y','','','','N','Not sure how to start.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was running arch with a btrfs storage and there was a bug in btrfs that caused kernel panics. And with arch there was no way to downgrade.','','','Y','','','','','','','','','','','','','','','','','','','','','','',''),(917,NULL,NULL,'en','299620066',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(918,'1980-01-01 00:00:00',5,'en','511228564','A5','A3','male','','','','','','','','','','Y','Y','','','','','','','Y','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','It was recommended by another attendee at StrangeLoop 2019. At first I used it as a cross-platform package manager between macOS and my Ubuntu Server VM. I migrated more of my dotfiles into Nix and got started with the Nix language by writing Neovim wrappers. In spring of 2021 I migrated wholly to NixOS on a Thinkpad P1. It wasn\'t until NixOS that I fully understood the potential. I bought in. Now I\'m using NixOS on the same laptop, using NixOps as an Ansible replacement to manage my home lab (5 Pis, 2 PowerEdges, an old desktop), and nix-darwin for my work computer. Nix is my hammer and I won\'t stop until everything is a nail.','Y','Y','','','Y','','Y','Y','Y','','','Y','','','Y','Y','Y','Y','','The same packages are supported across multiple machines (macOS, linux amd64/aarch64)','One-off nix shells','Reproducible development environments (nix develop)','I would add a way to display metadata about a specific package (package name, description, website). I am extraordinarily pleased with every behavior of Nix, and I am loving the direction of the standalone Nix 3.','Ubuntu Server, elaborate bash scripts, Ansible, and antidepressants.','','','','Y','Y','','','','','','Y','','','','buildVimPluginFrom2Nix\r\n- https://github.com/PsychoLlama/dotfiles/blob/8516977277300bd96071cc5f57d2d0a4e48ec096/modules/editor.nix#L73\r\n- https://github.com/PsychoLlama/vim-plugin-nursery/blob/c0ebf52884560c879b14e26bc63e0673a857c39c/flake.nix#L50','Y','Y','','','N','I haven\'t read the documentation on how to contribute yet. I am ashamed.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','It is my main machine.','A3','(story is included in the same question about Nix)','Y','','Y','','','Y','','Declarative OS management that doesn\'t leave artifacts of older versions. I don\'t have to remember to uninstall packages or delete files.','Generation rollbacks are *huge*.','nixosTest','- I would add a feature under `users.users` to provision files under `~/.config` similar to `environment.etc`.\r\n- Last time I tried, `nixos-version` didn\'t print `system.configurationRevision`. I was probably doing something wrong.','macOS. Reliability is critical and only NixOS can provide that.','Y','Y','','','','','','','','','Sway WM','NixOps, remote builds (raspi), and nixosTest. If Santa asked me what I wanted for Christmas, I would say:\r\n- https://github.com/NixOS/nixops/issues/1494\r\n- A utility to group NixOS tests into test suites (maybe it already exists)\r\n- A hoverboard','deploy-rs. NixOps is superior. Also support for RasPi 2 is pretty sketchy.','Nix/NixOS is the most exciting technology I have ever encountered. This is not hype. I keep an actual list. I go out of my way to recommend it to everyone I see. The grocer has asked me to stop repeatedly and I have 3 restraining orders from my neighborhood. I will not yield. NixOS is life.'),(920,'1980-01-01 00:00:00',5,'en','807240634','A2','A2','male','','','Y','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I was an archlinux user (server, and a laptop for experimenting) and I found it annoying to not have packages and other configuration in sync. WIth github and flakes I now have an okay system for that','','Y','','','','','Y','Y','Y','','','','','','Y','','','Y','','flakes, defining all my machines\'s configuration in a few files','','','get rid of channels and have a flakes based system designed, and finished completely','archlinux','','','','','Y','','','','','','Y','','','','https://github.com/kolloch/crate2nix but it needs more work. It needs to get to a state where you don\'t have to know nix to use it. Currently it\'s beyond my abilities to fix it when it doesn\'t want to build my rust crate, and it happens often','','Y','','','N','I haven\'t needed a package that wasn\'t included','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I was an archlinux user (server, and a laptop for experimenting) and I found it annoying to not have packages and other configuration in sync. WIth github and flakes I now have an okay system for that','Y','','Y','','','','','declarative configuration','easy rolbacks','configuration sync with git','being able to declaratively configure kvm/qemu VMs would be nice','archlinux','Y','','','','','','','','Y','','','','hydra, needed too much manual configuration',''),(921,'1980-01-01 00:00:00',5,'en','1046620704','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I wanted to try a functional OS because Arch Linux is great but I can never remember what files I edited in /etc.','','Y','','Y','','','Y','','Y','','','','','','Y','Y','Y','Y','','Flakes','dev shells','configuration files in version control','Hydra builds at 100% green.\r\nAdd and maintain language-specific tutorials and templates to codify best practices.\r\nMerge home-manager.','PKGBUILD','','','','Y','Y','','','','','','','','','','cabal2nix\r\nnpmlock2nix','Y','Y','Y','','Y',NULL,'N','Y',NULL,'Outgrew VM, but didn\'t replace any of my existing machines\' OSes.','First-class Proton support',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager\r\nnixos-generators','nixos-wsl','jonringer is super helpful'),(922,NULL,NULL,'en','444778674',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(923,'1980-01-01 00:00:00',5,'en','1784947698','A5','A3','male','','Y','','','','','','Y','','','','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I was bothered by the way Arch packages haskell stuff, so I wanted to move towards a more source-based distribution. I use Gentoo on another machine and I thought it would be neat to try out Nix/NixOS to compare. ','','Y','','','','','Y','Y','','','','','','','Y','','','Y','','Nix-shell','Version-controllable configuration','Portability ','Improve documentation, streamline package configuration (ie overrides) ','Portage ','','','','','','','','','Y','','','','','Buddy','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I wanted to move towards a more source-based distribution for my laptop ','Y','','','','','','','Declarative configuration','Easy setup','The community','Improve documentation','Gentoo or Arch','Y','','','','','','','','','','Xmonad','','',''),(924,'1980-01-01 00:00:00',5,'en','1763632536','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Took a class on functional programming. Found NixOS when I googled \"functional operating system\". Started using it and was really impressed by the potential this project has.','','','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','Easy configuration','Rollbacks','Declarative package management','Add better integration with AppStream and PackageKit','Most likely I would still be on Arch Linux using pacman','','','','','Y','','','','','','','','','','None yet, but once I finish a rust project, I plan on trying cargo2nix: https://github.com/cargo2nix/cargo2nix','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Took a class on functional programming. Found NixOS when I googled \"functional operating system\". Started using it and was really impressed by the potential this project has.','Y','','Y','','','','','Declarative configuration','Easy rollbacks and downgrades','Stability','Add more GUI tools for managing NixOS. I don\'t have a wand though, so working on some myself, starting with an installer and plan to continue developing more tool. See: https://github.com/NixOS/nixpkgs/pull/161788','I would probably still use Arch Linux','Y','','','','','','','Y','','','','Home-manager','I tried nix-gui when I started using NixOS, but it was buggy, crashed a lot, and was unintuitive. I\'m currently developing an alternative using gtk4 with a focus on stability that uses rnix-parser as a backend.','Thanks for making a great operating system!'),(925,NULL,NULL,'en','11928647',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(926,NULL,2,'en','1223604111','A5','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Wanted to switch from WSL to a full Linux environment and the idea of a nix store with reproducibility seemed really interesting. So chose it as my distribution and have been happy sense.','','','','','','','Y','','','','','','Personal desktop/laptop','','Y','Y','','Y','','Declarative configuration (with flakes/home-manager)','Reproducible developer environments and packaging.','System Rollbacks','I would add a comprehensive best practices wiki as there are so many ways to do a single thing (eg packaging).','Not sure, only ever used NixOS/Nix on Linux.','','','','Y','Y','','','','','','Y','','','','crate2nix (rust)','Y','Y','Y','','N','I made a PR but they just sat there for weeks with no response or idea of how to get a review. I was tired of rebasing it so just closed it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(927,'1980-01-01 00:00:00',5,'en','1113488770','A3','A2','fem','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Because I wanted to use NixOS.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Declarative system configuration','Tons of packages','Declarative environment management','- Improve documentation. There\'s a ton of stuff in packaging and packaging patterns that\'s totally undocumented, that is super frustrating. Document flakes on nixos.org.\r\n- Better support for languages/frameworks like Java and its ecosystem. \r\n- Types? Guess Nickel will do it.\r\n- Improved and more official support for the 2nix tools.\r\n- Automate packaging please... there\'s nix-template, but it often fails and is not smart enough. It is so fucking boring packaging, and in Nix that\'s specially frustrating...\r\n- It is a pain in the ass getting/declaring older versions of packages from nixpkgs. I didn\'t figure out... there should be an easier way to get a state from the repository, or i am missing something.\r\n- A proper LSP to integrate with editors like emacs. One that would also be able to infer options, packages. rnix-lsp is pretty bad.','I also use Docker, Podman.','','','','Y','Y','','','','','','','','','','mvn2nix, dream2nix, node2nix, poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I used Linux for 5+ years already. I got sick of the traditional, imperative (non-declarative) distributions. NixOS was the perfect solution to that, in having a system configurable in a single language in a single file that I can modularize. The added benefits came as a plus. Also, I\'ve came to known NixOS from watching a video on Fedora Silverblue by baby woge on YouTube in which someone mentioned NixOS in the comments.','Y','','Y','','','','','Declarative system configuration','huge nixpkgs that provides both packages and modules','','Official support for Home-Manager.','I was using Arch Linux before. Not sure if GNU Guix counts?','','','','','','','','','','','Xmonad, Wayland, LXQt','home-manager, flakes, stuff from nix-community like emacs-overlay, nix-template, nixfmt, manix, nix-tree, nix-index, hydra-cli, cachix.','rnix-lsp, which would be very useful if it was actually good.','you need better tutorials for people who want to migrate to NixOS, in a way that show creating your own modularized config using flakes, home-manager, and building a desktop configuration. Will T is the closest in that regard, but unfortunately it\'s pretty hard to understand what he is saying because of bad audio quality, too fast talking / bad diction.'),(928,NULL,1,'en','1390307051','A6','A5','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(929,NULL,1,'en','1930881197','A6','A2','male','','','','','','Y','','','','','','','','','','','','Y','','','','','Y','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(930,NULL,NULL,'en','1017482031',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(931,NULL,0,'en','1601274602','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(932,'1980-01-01 00:00:00',5,'en','219036289','A5','A3','male','','','','','','Y','Y','','Y','','','','','','','','Y','Y','','','','Y','','Y','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Software reproducibility is a unsolved problem and at the heart of many of the daily challenges that teams struggle with in their daily work. Nix feels like the approach that resonates the most with me and my team for solving this long standing issue.\r\n\r\nThe package managers and config management were great for their day but it leaves the industry with many things that it needs.\r\n\r\nAlso Im a big fan of the ports tree in freebsd and I think nixpkgs is the portstree on steroids.','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Reproducible Builds','software packaging composability ','nix-shell','Add - ','Freebsd and ports for sane system management.\r\n\r\nGuix potentially but never used it for any extended period of time.\r\n\r\nHonestly, I dont know how much longer Id be interested in software development with the state of the community and whats coming out of entities like the CNCF. Its all hype vs actual outcomes that solve common, real world problems.','','','','','','','','','Y','','Y','','','','poetry2nix\r\nbundix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','https://grahamc.com/blog/erase-your-darlings','Y','Y','Y','','','','','Reproducibility','Composability','Simplicity','Add - Id like to see a better story around bootstrapping nixos from a nix config. I have seen many custom bootstrap scripts, etc. which is fine but some call outs to best practices from starting with fresh hardware.','FreeBSD','Y','','','','','','','','','','i3','https://mobile.nixos.org/ - Really excited to see this continuing to move along!','pip2nix','Huge fan! And you guys are awesome! What your doing is extremely challenging but necessary for where we need to go as an industry!'),(933,NULL,1,'en','252331397','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(934,'1980-01-01 00:00:00',5,'en','1881898045','A5','A3','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','Declarative server configuration of my personal host for small projects (telegram bot, vaultwarden, etc) and experimentation.','','Y','','','','','','','Y','','','','','','Y','','Y','Y','','Declarative syntax','Tons of existing ','','Hire technical writers to improve the quality of documentation around the language and ecosystem. As a comparison, Rust tends to be described as having a difficult learning curve, and that difficulty is cut by how much energy and care has gone into making The Book an awesome learning tool.','containers','','','','','','','','','','','','','','','','','','','','N','Hasn\'t been necessary','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','see previous','','','Y','','','','','','','','','k3OS','','','','','','Y','','','','','','','almost no tools work on MacOS, due to dependencies that expect linux.','Awesome project, love it.'),(935,NULL,NULL,'en','1248771236',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(936,'1980-01-01 00:00:00',5,'en','714312952','A5','A4','male','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I liked the idea of system and project reproducibility.','','Y','','','','','Y','','','','','','','','Y','','','Y','','Package management','Declarative system config management','Reproducible development environments','Make flakes easier to use, and make them first-class citizens in Nix/NixOS','Arch Linux or Ubuntu','','','','Y','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','','','','','','','','','','','Y','','','','','','','','','','','home-manager','',''),(937,NULL,1,'en','935481977','A5','A4','male','','','','','Y','','Y','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(938,'1980-01-01 00:00:00',5,'en','1416727743','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A3','I only started using Nix when I installed NixOS on my machines. Back then I didn\'t really know what to do with Nix, as I thought Nix as a way to facilitate NixOS deployments, but as time goes by, and with the introduction of Nix Flakes, I slowly got interested in using Nix in building applications, creating devshells and source aggregators. I\'m very excited that Nix is improving with each release.','','Y','','Y','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','Reproducible builds','Straightforward cross compiling builds','Content addressable derivations','Better developer toolings and wide spread documentation visibility.','Probably Docker, but then I have to maintain Dockerfile :(','Y','Y','','Y','Y','','','','','','Y','','','','https://github.com/nix-community/npmlock2nix','Y','Y','','','N','Laziness ;( Nixpkgs is a fast moving project, so I really don\'t want to spend time pulling Nixpkgs and rebase my branch manually.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I needed a way to manage my dotfiles after distro hopping too much ;) and having spend less time debugging a misconfigured setting is a bless.','Y','','Y','Y','','Y','','Infrastructure as Code','Configuration rollback','','Revamped NixOS search page with support for other community flakes, ideally self hostable. All in all, it\'s all about friendly UIs and/or native desktop applications that integrate tightly with Nix/NixOS.','Probably Guix or GoboLinux, but then I wouldn\'t be able to use Nixpkgs\' 30000+ packages ;)','Y','','','Y','','','','','','','SwayWM','DivNix\'s Digga and DevOS. See https://github.com/divnix/digga and devos.divnix.com','Projects that were on the early days of Nix Flakes and didn\'t use a proper framework like Digga or Standard (https://github.com/divnix/std)',''),(939,NULL,1,'en','2110180297','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','Y','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(940,NULL,0,'en','1281560304','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(941,'1980-01-01 00:00:00',5,'en','947557497','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','Y','','','Y','','','','','','','Y','Y','Y','','','','reproducibility','declarative','binary caching','Either static types are gradual typing.','macOS with homebrew','','','','Y','Y','','','','','','','','','','cabal2nix','Y','Y','','','N','Lack of expertise','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','','','','','','','','','','','','','','','','xmonad','home-manager','',''),(942,'1980-01-01 00:00:00',5,'en','1782816445','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','','','','','','','','','','','Y','','','Y','','','','',''),(943,NULL,1,'en','1391885063','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(944,'1980-01-01 00:00:00',5,'en','1957318557','A2','A3','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A fully declaratively configurable system appeals to me. Also the software selection is pretty good.','','Y','','','Y','','Y','','Y','Y','','Y','','','Y','','Y','Y','','Declarative Configuration Management','Fairly Up-to-Date Software','Rollbacks','+ faster evaluation\r\n+ a configuration language that is more approachable (a cookie cutting approach works nicely for most things, the jump to do more advanced things is very hard)\r\n+ better remote builder support\r\n+ a better manual on how to do common tasks which does provide a canonical way to do stuff and not three ways, none of which is quite good.','Guix or a conventional distro+puppet','','','','Y','Y','','','','Y','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','Y','','Y','','','','','','','Y','','','','','Y','','','','','sway','','- nixops\r\n- morph',''),(945,'1980-01-01 00:00:00',5,'en','764499145','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','far easier than gentoo or yocto','','Y','','Y','','','Y','Y','Y','Y','','','','','','Y','','Y','','Hermetic reproducibility','Declarative','Rollbacks','A stable and good command-line interface','Debian stable and containers','','','','Y','Y','','','','Y','','','','','','cabal2nix','Y','Y','Y','','N','no need so far','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','setting up servers is hard. reducing all those manual steps to a declarative text file is a godsend.','','','Y','','','','','Rollbacks','Declarative','Hermetic reproducibility','An easier installer. Make it easier to format the disks for ZFS root, tmpfs root, and other unique situations which only NixOS can easily achieve.','Debian stable + containers','Y','','','Y','','','','','Y','','','nix-tree','',''),(946,NULL,1,'en','1559880805','A2','A2','male','','','','','','Y','Y','','','Y','Y','','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(947,'1980-01-01 00:00:00',5,'en','2116345861','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Up-to-date packages and reproducible dev environments ','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','Y','','Reproducible Development Environments','Declarative Package management','Declarative Docker Images','Simpler flakes. I think there is a discussion about a flake.toml\r\nI really like the cli of poetry. Packages are declared in the pyproject.toml but can be added imperatively.','Docker for Development Environments\r\nConda for packagemangement','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','I used Nix + home-manager on elementary OS for a while and than went all in on Nix','Y','','','','','','','Declarative Systemmanagement','Modules','Graphical Applications work better than on non- NixOS Linux distros.','Even Better Support for Pantheon DE','elementary OS or Fedora Silverblue','','','','','','','','','','','Pantheon','home-manager\r\nnix-locate\r\nnixGL\r\nNix VS Code extension\r\ndirenv & nix-direnv\r\nflake-utils','',''),(948,NULL,1,'en','2012697458','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(949,'1980-01-01 00:00:00',5,'en','1722285931','A2','A3','male','','','','','','','Y','Y','','','','','','','Y','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I started with NixOS, then I moved onto using nix standalone to bring tools into MacOS environments imperatively and now I\'m starting to add development environments in all the projects I touch at work','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','','Transparent source/binary deployment','Optional and effective sandboxing','nix why-depends','My magic wand enabled wishlist is:\r\n* only one set of commands, no problem if it\'s one single executable or many\r\n* the ability to write secrets in the store (probably with some controlled impurity)\r\n* builtin ability to fetch from private repositories (or if it is already possible, clear documentation about it)','many tools depending on the usecase, probably saltstack to configure the OS, a lot of Dockerfiles to prepare for the delivery, chezmoi to manage the dotfiles','','','','','Y','','','','','','','','','','bundix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','It got mentioned by a NixOS user on a unrelated IRC channel, I heard the name already and so I asked for more information to check if I understood correctly the term \"purely functional linux distribution\".\r\nI gave it a try and was surprised to see that I could explain the whole raid + lvm + luks setup declaratively and options for everything were already there, so I kept it and I started liking it more with the time. At the time I had another computer to do my day job so I could learn everything with my pace.','Y','','Y','','','','','fully versioned configuration','assertable/testable configuration','AMAZING support for a lot of services and ready made options','I would like to have notifications that I need to reboot after nixos-rebuild or activation of a profile if there is the need to and an optional friendly reminder that a channel (or the flake inputs) have advanced and contain security updates','Arch Linux','Y','','Y','','','','','','Y','Y','','nixos-hardware, nixos-shell','nixops, At some point I was unable to find the documentation or even a working tutorial so I stopped trying\r\nhome-manager, I\'m trying it again now that I\'m more confident with the rest of the ecosystem but at first I couldn\'t wrap my head about the overlap with some nixos options\r\n',''),(950,'1980-01-01 00:00:00',5,'en','1090936030','A5','A3','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','Y','','Y','','','','','','Y','Y','','Y','','declarative system','easy to check out new software (\"nix run ...\")','good developer experience (nix build, nixos-container)','Typed Nix language','Fedora','','','','','Y','','Y','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','Y','','','','','','','Y','','','','','','','Y','','','cinnamon','','',''),(951,'1980-01-01 00:00:00',5,'en','779659682','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I have a terrible memory, and while running various other flavors of Linux (most recently Arch) I would constantly forget how I set things up when it came time to move to/set up a new machine, and would constantly cause things to break and have to do serious surgery to repair my broken machine setup.\r\n\r\nWith NixOS, I could both live on the relative bleeding edge (thanks to `nixos-unstable` channel) _and_ have confidence I wasn\'t going to semi-permanently bork my machine after upgrading it, while being able to write down _all_ the modifications I\'d made to the base system and apply them elsewhere/see how they change over time in source control.','','','','','','','Y','','Y','','','','','','Y','','','Y','','Ability to temporarily install packages for use with `nix-shell` without changing the system configuration','Searching for available packages','','Better package search/interface (it would be nice not to have to delve into the nixpkgs repository to figure things out as often), fully `nix`-ize the tool (i.e. drop `nix-shell` and replace with `nix shell`, etc.).','Probably something like chef or puppet, but in practice I simply used Arch Linux and threw up my hands with \"oh well I guess things won\'t be easy to manage and will break sometimes!\".','','','','Y','','','','','','','','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Same as I started using `nix`; I want to be able to reproduce and roll back my system configuration in a way that I can remember, i.e. not doing one-off tweaks that I then forget after a while.','Y','','Y','','','','','Declarative system configuration','Ability to roll back to previous boot environments if something goes wrong','Nice default declarative configurations for packages, centralized in one place (nixpkgs repo)','Making it simpler to write/package existing software via guides, tutorials, etc. that go beyond the absolute basics. Mostly, better documentation! Creating overlays and new packages sometimes feels like a black art where I get to try to find a somewhat-similar package in `nixpkgs` and then copy/change/alter the parts I need and hope for the best. This would be easier if the internal \"best practices\" were documented _somewhere_, but I have literally never found any documentation about the \"right\" way to package/overlay things, and none of the internal-to-nixpkgs things have meaningful documentation that would help me help myself.','Likely nothing, I would just use Arch Linux and hope for the best w.r.t. upgrades/customization.','','','','','','Y','','','Y','','i3, startx','','','Thank you for making a wonderful tool/OS!'),(952,'1980-01-01 00:00:00',5,'en','2118826803','A5','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted a Linux OS that had all it\'s configuration in one consistent system that made rollbacks and re-installs easy. ','Y','Y','','','Y','Android','Y','','Y','','Y','Y','','','Y','Y','Y','Y','','Extensible and extensive package management solution ','System understanding and transparency ','\r\nConsistent configs across operating systems','Home-manager as a primary component instead of a add-on feature. ','A bunch of janky bash scripts','Y','','','Y','Y','','','','Y','','','','','','','Y','Y','','','N','I just recently understood how to build new derivations that would conform to nixpkgs. I\'ll be making a contribution soon. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted a Linux OS that had all it\'s configuration in one consistent system that made rollbacks and re-installs easy. ','Y','','Y','','Y','','','Consistent system configuration across hardware ','Greater control over specific package installations (versions)','Performance was much better than Arch','NixOS on mobile (not just Android support, but actual nixos mobile install)','Arch Linux and a bunch of bash scripts','Y','','','','','','','Y','','','','','sops-nix and nixOps. I just didn\'t need what they offered.','NixOS has been some of the most fun Linux configurating I\'ve had in recent years. Thanks!'),(953,NULL,NULL,'en','1736465409',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(955,NULL,1,'en','918079778','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Designer','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(956,NULL,1,'en','1445833375','A5','A3','fem','','','','','','','','','','','','','','','','','','','','','','','','','Author','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(957,'1980-01-01 00:00:00',5,'en','809576318','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I read about it and was interested in the declarative system configuration and generation rollback.','','','','','','','Y','','','','','','','','','','','Y','','declarative configuration','generations','relatively recent software versions','I would add/change the documentation. It\'s not as easy to pick up Nix as it should be.','Probably apt/Debian','','','','','','','','','','','','','','','','','','','','N','I haven\'t run into the case where I\'ve needed to yet. Also, I\'m still quite new and haven\'t had the time to learn the language, which I find to be quite strange and not well-documented.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted to try a Linux distribution with the features of Nix -- declarative configuration and generation rollback.','Y','','','','','','','declarative configuration','generation rollback','relatively recent software versions','Add/change documentation to make it easier for beginners to pick up.','Probably Debian. I moved from Ubuntu, but can no longer tolerate things getting worse over time.','Y','','','','','','','','','','qtile','','',''),(958,'1980-01-01 00:00:00',5,'en','210808686','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','Y','','','','','','','','','Y','','','','','','','','','','awesome','','',''),(959,'1980-01-01 00:00:00',5,'en','307569987','A5','A4','male','','','','','','Y','','','Y','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','Y','','Y','','Y','','','','','Y','Y','Y','Y','Y','','Use of nixpkgs -- i.e. a huge, maintained database of build instructions for virtually every package of significance','Nix the language -- reasonable (albeit somewhat ugly) representation to describe my own derivations when not suitable for inclusion in nixpkgs','NixOS modules -- The more basic set of system modules are quite nice for a barebone system setup, but admittedly, I\'m loath to rely on more complex service ones in lieu of rolling my own centered around my use case (often being rather dumb wrappers around literal conf files). In my opinion, there\'s a practical limit to what *should* be done in the language, despite others\' willingness to push on for anything one *can* do in it.','I\'d like to see the completion of the new nix command and deprecation of the original, \"organically grown\" tooling.','Probably my long-time standby of Debian as a base distro, perhaps with the addition of Guix as a package manager on top.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','The things I consume which belong in nixpkgs seem to be largely well-maintained already.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','Debian','Y','','','','','Y','','','','','sway','','',''),(960,'1980-01-01 00:00:00',5,'en','958530885','A5','A3','male','','','Y','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I did a Google search for a different distro with a novel FHS that I\'d heard about previously and ended up finding Nix by accident. Was super interested, and at the time I was using Ansible a lot, so I tried to integrate the Nix package manager with Ansible. After some frustration there, I realized that just using NixOS might be a lot simpler; turns out I was correct, and I\'ve been using it ever since.','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Some sanity. Nix isn\'t always the simplest to work with, and can even sometimes be more of a headache than other solutions, but there is definitely something interesting about being absolutely confident once I\'ve managed to develop a working package or service. I know that if it works now, it\'ll work later and I can just move on to other things.','Nix shell/develop is a fantastic resource. Defining per project shells is basically how I do development nowadays, and I don\'t really regret anything about it. I only ever have to bootstrap once, and from then on I can focus on being productive with the actual project. Pulling in packages for quick ad hoc usage via a transient shell without having to install anything globally is also quite refreshing.','Nixpkgs is a fantastic resource as it quickly becomes one of, if not the largest software repository in the world today. It is incredible to have almost anything I think to use readily available, and in the rare event something has yet to be packaged, once you are familiar with Nix, a lot of (but not all) software is super trivial to package quickly and easily.','I think Nix really needs to focus on optimizing itself for the distributed world of today. Efforts like Flox are a great start, but ultimately I think it should be on Nix itself to improve it\'s design rather than fracturing the community into disperate projects. The client server split is definitely nice, but feels more like an afterthought (and indeed it was). The server\'s API is still highly obtuse and non-obvious. I think the server side of Nix should work toward being totally agnostic, and even provide a secure web facing API from which to take requests. The cli could then speak this API to work locally, or one could send derivation build requests from their own preferred language.\r\n\r\nAlso, the distributed Nix store would be an amazing addition. Not sure what Flox\'s future plans are in terms of opening up their own work, but it would be amazing to see something like this eventually hit Nix proper. In a similar vein, maybe some popular protocol like gossip could be integrated with Nix so that build machines can stay up to date on each other\'s health and workloads can be more effectively distributed or rescheduled in the case of a failure.\r\n\r\nI\'ve had a lot of people disagree with me on this one, since it is just a config language at heart, but I feel strongly that Nix, the language, could make good use of more traditional moduling mechanisms common in many other languages. The way Rust does it is quite nice, but I\'m not sure if it would translate perfectly to Nix. I like flakes, but they seem to be serving sort of a different purpose than in repo code modularization. Maybe this isn\'t a major concern for more local projects, but for huge mono-repos like nixpkgs, it could go a hell of a long way to bringing the insanity a bit more under control.\r\n\r\nFinally, I\'m not sure if there even is a good solution for this one, but it\'d be nice if we didn\'t need to have nix installed at the system root. Right now just installing Nix and getting bootsrapped is a huge turn off for new comers, and understandably so. It\'d be much more in line with Nix\'s own core philosophy, I feel, if it could be reasonably bootstrapped in an unpriviledged context. I know that the hashing of derivation paths makes this totally not trivial, unless we agree to move `/nix` to somewhere that is more accessible and canonically available on other Unix systems, but even then we\'d be looking at a completely rebuild of all of nixpkgs. \\\r\n\r\nI know this is all just one huge wish list, but you asked :)','I would probably be using Alpine containers running under podman. Kata containers are also fairly interesting conceptually, but I don\'t have much personally experience with them. For development systems, due to ease of package management there, I\'d probably still be using Arch, and for deployments, I\'d probably still be using some combination of Terraform and Ansible. I still use Terraform in conjuction with NixOS at work actually.','','','','Y','Y','','Y','','','','Y','','Y','We are currently building our own Nix focused CI system at IOG called Cicero','Try to avoid the hassle as often as possible and just rely on what\'s in nixpkgs if possible. That said we do have to use haskell.nix for work, and every once in a while I have to mess with yarn2nix or npm2nix.\r\n\r\nCurrently I\'m looking at developing a Scala SBT 2nix type tool, but I\'d like to ideally include it as an addition to the dream2nix tool if possible. SBT isn\'t really designed with a locking mechanism in mind so it\'s a bit of a headache, but we need it for several projects at work, so I\'ll have to tackle this at some point.','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Pretty much the same story as Nix if you want to refer to that answer. I started using NixOS very shortly after being introduced to Nix.','Y','Y','Y','Y','','','','Having an entire operating system as a cryptographically verifiable, and atomically upgradable system is fantastic.','The module system provides a nice layer of abstraction to simplify what is usually a painful process of manually defining systemd services by hand. It\'s also fairly useful for composing systems of various complexity if you simply intelligently define and declare your services in well organized files.','This may be the same point as #1 but it is worth repeating regardless. The amazing stability of a NixOS system once it gets into a working state is just unlike any other system I\'ve experienced. It\'s quite amazing to be able to rest assured that my system isn\'t just going to magically break out from under me right in the middle of important work.','I think the module system is amazing, but under the hood it definitely needs to be adjusted for performance and ergonomic considerations. I\'m not sure this would be entirely pheasible without some additions to the Nix language, but hopefully something will be done. There are some potentially interesting RFCs IIRC, but even if a new contender catches on, it will be quite the task to convert all the existing modules.\r\n\r\nI, for one, would love something that raise the level of abstraction up just a bit, and allow for defining services for various underlying job schedulers instead of being locked in to systemd, but that\'s seems to have been on a lot of folks wishlist for quite some time, so who knows if it will ever happen.','Basically same as my answer to this question for Nix again.','Y','','','Y','','Y','At work we are developing a tool called bitte, which uses deploy-rs as a rust package, but extends its functionality in consideration of more cluster oriented workloads','','','','I used XMonad for a long time, and sometimes still switch to it if Wayland becomes an issue. Otherwise I am usually running Sway if possible.','A lot of the stuff we are developing in house at IOG. For example, Bitte and Cicero. My personal systems also run on DevOS.','NixOps was great for a while, but the local database was kind of a turn off for me. I know there isn\'t really a good way to avoid that, as the nature of cloud deployments is inherently stateful, but I just think Terraform has already done a better job of solving that problem, at least the way we are using it at work (we use a plugin that stores TF state in a secure Vault instance). Also, it is just much more well supported.\r\n\r\nThat said, we are deploying NixOS AMIs with Terraform, and so we are still heavily invested in Nix tooling otherwise. Our deployment tool is a bit of a fork and extension of deploy-rs with additional non-deployment related functionality, for example.','Just that Nix is incredible and that I really hope it becomes the future of systems deployments :)'),(962,NULL,NULL,'en','816165883',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(963,NULL,NULL,'en','1301988361',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(964,'1980-01-01 00:00:00',5,'en','1571493881','A2','A2','male','','','','','','','Y','','','Y','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Wanted stability ','','','','','','','','','','','','','Personal computing ','Y','','','','Y','','Stability','Reproducibility ','','Make documentation more easily accessible, add subsystem support for applications that depend on a standard linux environment i.e: docker lite','Ansible','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Wanted stability for my system.','Y','','','','','','','Stability ','Documentation ','Reproducibility','Support for using nixos as a more normal linux installation. Having to constantly open the os config file and rebuild to change one thing is a pain in the ass','Debian','Y','','','','','','','Y','','','','','',''),(965,'1980-01-01 00:00:00',5,'en','791281376','A2','A3','-oth-','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Development environments for projects','Configuration of machines','Building software products for distribution','Improve error messages','','','','','Y','Y','','','','','','Y','','','','cabal2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','Managing my machine through a single source of truth','Ability to revert easily in case of a mistake','search.nixos.org to help figure out how to run some new piece of software','','Arch Linux','Y','','','','','Y','','','','','Sway','home-manager','nixops',''),(966,NULL,1,'en','1224688541','A5','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(972,'1980-01-01 00:00:00',5,'en','2052368838','A5','A3','-oth-','','','Y','','','Y','Y','Y','Y','Y','Y','Y','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I\'ve seen programmatic configuration of devops resources before (e.g. Terraform with AWS) and NixOS seemed like a useful elaboration of that concept. Also some software packages I use use Nix. ','','Y','','','','','','','Y','','','','','','','','','Y','','Declarative system configuration','','','Better documentation','Maybe terraform, but its not good at configuring Unix systems themselves','','','','Y','','','','','','','','','','','','Y','','','','N','Not sure how to create derivations for software I want to use','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','Y','','','','','','','','','','Y','Y','Y','','Y','','','','','','','','',''),(967,'1980-01-01 00:00:00',5,'en','1103175009','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','','','make compiler errors easier to read','','','','','','Y','','Y','','','','','','','','node2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','','',''),(968,'1980-01-01 00:00:00',5,'en','1999392077','A4','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I started with nix/nixos when a friend of mine told me about the declarative configuration.nix. I was instantly hooked to the idea of declaring to my system what I want it to be like.','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','FLAKES!!!','Reproducibility ','Declarative','Anything related to nix flakes','I would put more effort into `nix profile` so we can more easily get rid of the horrible `nix-env` tool. In addition to that I would suggest new users to use home-manager considering it gets more contribution. Perhaps even making home-manager official, more than just another community project.','I ask myself this exact question every time I execute a Nix command :^)','','','','Y','Y','','','Y','','','Y','','','','Java - https://github.com/tadfisher/gradle2nix\r\nPython - https://github.com/nix-community/poetry2nix\r\nRust - https://github.com/nix-community/naersk\r\nJavascript - https://github.com/nix-community/yarn2nix','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was getting a new home server and was not sure which OS to run on it, a friend quickly recommended NixOS for it\'s flexibility and reliability.','Y','Y','Y','','','','','Declarative system management ','Reproducible OS ','','Maybe add an official installer and a GUI tool for \"user-friendliness\" like Nix-GUI https://github.com/nix-gui/nix-gui','Red Hat Enterprise Linux','Y','','','','','','Nixinate ','','','','BSPWM','Robotnix (https://github.com/danielfullmer/robotnix) is in my top 3 best Nix projects. I use robotnix very regularly to build custom AOSP ROMs for my phones.\r\nCachix is also a program which I use a ton to cache the build artifacts of many of my personal projects. I also use Hercules-CI as a CI/CD tool with Cachix.','','Thanks you for making this survey <3'),(969,'1980-01-01 00:00:00',5,'en','323412458','A2','A2','-oth-','nonbinary','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','','','','','','','','','','','','','','','','Y','Y','','Y','','','','','I\'d change the language Nix. I feel like it\'s pretty good for writing a quick derivation but when coding in Nix or doing configuration I\'ve often found myself really really wanting more of a type system.\r\nRolling your own language also means that online resources are just a bit few and far between.\r\nDocumentation will suffer, the standard library will be limited, tooling is limited.\r\nI\'ve seen real progress and coding in Nix is now much more pleasant than before, but I still feel like Nix is much more suited to writing simple derivations than configurations (which is where I actually spend my time).\r\n\r\nUnfortunately I\'m convinced a move away from Nix as a language will do more harm than good.\r\nI think eventually Nix will become a much more pleasant experience as it has already improved by leaps and bounds and I\'m excited to find out.','Probably makefiles and maybe some bash scripts.','','','','Y','Y','','','','','','','','','','','Y','','','Nix User Repository','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','As a daily driver','A3','I was introduced by a friend and became fascinated with its guarantees of reproducible configuration.\r\nI\'ve tried out and kept using NixOS as a daily driver because of the learning experiences it gives me but mostly because it allows me to share a config between my desktop and laptop.\r\nHaving the same config on multiple machines (lightly tweaked of course) is just so incredibly convenient.','','','','','','','Daily driver','Shareability, configurations between machines, packaging work between friends or reusing some tooling built in Nix between projects.','Version control of configuration, I often look back and say \"how did I solve this problem the last time I encountered it?\" then go look it up in my commit history.','Rollbacks, the fearlessness that comes with rollbacks (and also version control + reproducibility) allows me to try out much more things than I otherwise would have.','I\'d like some tooling to more efficiently and interactively explore the tree of options and the tree of my current configuration.','Through Nix I\'ve heard about Ansible, so maybe I\'d have eventually tried that out but probably I\'d end up with some dotfiles and a collection of bash scripts.','','','','','','','','','','','XMonad','home-manager','',''),(970,'1980-01-01 00:00:00',5,'en','1103563204','A2','A3','male','','Y','','Y','Y','Y','Y','Y','Y','','','','','','','','','Y','','','Y','','','Y','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','Y','Y','','','Y','','Y','Y','Y','','Y','','','','','Support bootstrappability ','Guix','','','','','Y','','Y','','Y','','','','','','','','Y','','','N','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','Y','','Y','','','','','','Guix','Y','Y','','','','','','','','','sway','','',''),(971,'1980-01-01 00:00:00',5,'en','1697695397','A2','A4','male','','','Y','Y','','','','','','','Y','','','','','','','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','','','Y','','','','','','','Y','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A3','','','','','A1','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(973,'1980-01-01 00:00:00',5,'en','934365920','A2','A6','male','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','N','N','High levels of security with easy-to-use configuration, strong Posix/Linux compatibility for applications (at the API/source code level, not necessarily binary compatibility)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Just answered this question, no?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None',''),(974,'1980-01-01 00:00:00',5,'en','44854134','A7','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','When I started using NixOS','','','','','','','Y','','','','','','','','Y','Y','','Y','','Has large package repository (nixpkgs), including non-free behind a flag.','Reproducibility','Declarative package management','I would want to add an interactive debugger with REPL.','Guix with non-free extensions or arch with AUR.','','','','Y','Y','','','','','','','','','','poetry2nix, mach-nix, cabal2nix','Y','Y','','','N','I haven\'t got the hang of packaging enough to feel confident enough to do so.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I had known about Nix for a while and had intended to try it for a while until I eventually set NixOS up on a virtual machine. I was familiar with Haskell at the time so the functional programming aspect wasn\'t new to me. Arch had been my daily driver for around 4 years at this point. I now use nixos with flakes and the home-manager module as my daily driver.','Y','','','','','','','Benefits inherited from using Nix','Generations with easy rollback','Module system ','Shower thought: have a more official solution than home-manager.','Guix or arch','Y','','','','','','','','','','Sway','home-manager\r\nnix-doom-emacs\r\ndirenv','nix-alien, nix-autobahn',''),(975,'1980-01-01 00:00:00',5,'en','358515604','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Wanted to test declarative configuration ','','Y','','','','','','','Y','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','','sway','','',''),(976,'1980-01-01 00:00:00',5,'en','1323400280','A2','A2','male','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','Y','','','Y','Y','Y','','Y','Y','','Y','Y','Politician','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','To help others','A3','Someone told me something weird was an interesting software (Nix) because it did this, that and this and that.\r\nI often doubt shiny stuff (k8s, etc.) so I doubted the claim and wanted to verify and grasp what is the idea behind it.\r\nTried once and got addicted, I saw so much potential and moved away gradually from Archlinux/Pacman to Archlinux/Nix to NixOS. Now, I try to convert everything to a Nix expression.','','Y','','','','','Y','Y','Y','Y','','Y','Routers, networking gear, etc.','','Y','Y','Y','Y','','Lazy functional \"almost pure\" language to describe the world','Self-contained and well understood primitives: derivations','Discipline to force disrespectful software to behave (i.e. control)','(1) Change: More evaluation performance, an even more snappy experience with nixpkgs\r\n(2) Change/Removal: pre-Nix 2.4 commands and backward compatibility\r\n(3) Change: Better support for recursive Nix & IFDs\r\n(4) Add: More builtins (parsers tooling) to support lang2nix\r\n(5) Add: secrets support for Nix store\r\n(6) Change: better UX for binary caches\r\n(7) Remove: Nix channels (but the Flakes feature was pushed… in the wrong way alas.)','In order:\r\nGuix, then Spack, then Alpine, then Archlinux/Gentoo. But I cannot imagine the world without Nix and those are really not enough for my use cases.','Y','Y','','Y','','','Y','Y','Y','','Y','Y','','self-hosted drone.io','Almost all of them, but:\r\n\r\n- https://github.com/nix-community/poetry2nix\r\n- https://github.com/nix-community/npmlock2nix\r\n\r\nAre the two I use the most (like: daily to weekly depending on what I do).','Y','Y','Y','Nix User Repository','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','After some pacman -Syu, some software was really super broken (iirc chromium segfaulted somewhere in the JIT executable pages...) and I was tired of dealing with all the cruft accumulating on my machine. I knew NixOS could mitigate most of my issues. So between chasing through everything that goes on my machine using kernel debuggers & al (which are not super power user friendly on Arch BTW contrary to NixOS), I preferred to spend 24 hours to migrate my live machine to NixOS with minimal changes to the filesystem layout and some improvements, I hate it that I did not encounter major difficulties to do it and the ride was pleasant.','Y','Y','Y','Y','','Y','','Expert system through NixOS modules and nixpkgs repo','Trivial cloning/reconstruction with SyncThing/whatever of my system with the state','Runtime metadata of the running system through Nix exprs (enable me to tame the complexity of servers, rollbacks, etc.)','(0) Add: Declarative partitioning with live reconfiguration of layouts when possible (e.g. nixpart)\r\n(1) Add: (Secure,Verified,Trusted) Boot + fs-verity on Nix store\r\n(2) Add: Being able to bake software sandboxing in the Nix exprs, e.g. firejail/AppArmor/etc. to get a QubesOS feeling without full blown VMs or containers\r\n(3) Change: remove systemd hard dependency as much as possible (i.e. start for high level services, then devise a strategy for boot etc.) and open up for static ordering at eval time, etc.\r\n(4) Change: switch-to-configuration.pl :>\r\n(5) Add: better inspection abilities à la nixos-option\r\n(6) Add: more documentation of /run/current-system/*','Terraform, Kubernetes, Ansible associated with a functional DSL à la Dhall or Pulumi in a relevant language.\r\n(all those are unfortunately terrible for my use-cases compared to NixOS :>.)','Y','Y','Y','Y','','Y','krops','','','','i3/sway','rnix-lsp, rnix, home-manager, niv, nix-output-monitor, nix-locate, man *.nix, search.nixos.org, https://lazamar.co.uk/nix-versions/, docs on packaging in certain ecosystem (Python, Rust, Go, etc.), https://discourse.nixos.org/t/nvd-simple-nix-nixos-version-diff-tool/12397 and many more I forgot about, it has become so normal.','flakes, nixpart, hnix, some lang2nix','While a survey is nice, please, please, do not forget: https://discourse.nixos.org/t/nix-2-4-and-what-s-next/16257 which speaks a lot about of our concerns and might be as much as important as this survey.\r\nHopefully, you will be able to communicate something regarding the subject.'),(977,'1980-01-01 00:00:00',5,'en','1055506384','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','To have a repoducible development environment between various linux distributions.','','Y','','','','','','','','','','','','Y','Y','','','','','Consistent packages between different computers and distributions.','','','I would change the language. Something like guix with scheme perhaps?','','','','','','Y','','','','','','','','','','poetry2nix https://github.com/nix-community/poetry2nix','','Y','','','N','I have all the software that i need on nixpkgs','N','N','Nothing I am happy using my current ubuntu or arch system. \r\nI think nix is a great idea for some packages or a dev environment, even for servers, but not so much for my home computer, as I need some software that is difficult to build in something that is not ubuntu (for example vivado or matlab)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nix direnv as a quick way to change between dev environments','Lorry as I changed to nix-direnv',''); -INSERT INTO `limesurvey_survey_2022` VALUES (978,'1980-01-01 00:00:00',5,'en','1218509526','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A co-worker told me about atomic updates and the built-in roll-back mechanism after i bricked my Ubuntu machine the second time while updating the OS. And after I tried nix as an alternative package manager on Ubuntu (since the Vagrant package from the apt replsitory was broken), I was unrecoverably infected by nix\'s superior awesomeness.','','Y','','','Y','','Y','','','','','','Private everyday and gaming computer','','Y','','','Y','','Reproducability (to a very high degree at least!)','Great collection of up-to-date packages','Growing and friendly community','The docs are very broad but for really getting deeply into it those are to shallow. I would love to be able to get a detailed understanding of the concepts and the api without digging in the source code of other guys (it\'s awesome to have that!) or spending hours on reddit or on personal blogs until finding out how to achieve some \"simple\" tasks. I personally like api docs of libs for instance!','Ansible, but achieving idempotence in self-scripted roles is a nightmare. And supporting multiple different distros is also not very pleasing with it in less heterogenous environments.','','','','','Y','','Y','','Y','','Y','','','','The one for ruby gems, it\'s called bundix afair. Might not be a really appropriate answer, apologies for that.','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I may refer to the same question at the nix part of this survey?','Y','','','','','','Personal everyday and gaming computer','Atomic updates (no fear anymore!)','One system config for all my machines!','Even my home directory is getting a declarative configuration with home-manager!','I would re-add the nixos-option CLI tool for debugging my system config after rebuilding. It somehow disappeared after upgrading to 21.11...','Ubuntu or Arch meanwhile or some other overrated/hyped GNU/Linux distro','Y','','','','','','','','','','Xmonad','Home-manager and nix dev-shells together with nix-direnv for reproducible environments (not only for development!)','Nixpkgs channels, now using flakes only as nixpkgs registry for better reproduability.','I really love what you do with Nix. You kind of made the world a better place (at least for me).\r\nI only wish that the nix expression language would not require such a steep learning curve for fp newbies and there where even more or more complete examples for teaching good practices. This is leading me to the idea that a configuration or derivation code genrator would be great... Might be a good side project for when my kids are asleep!'),(979,'1980-01-01 00:00:00',5,'en','683750680','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Getting any app easily on any OS','','','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','Reproducible builds','Easy dev environments','Patching software','Better documentation','Docker','','','','Y','Y','','','','','','Y','','','Podman','poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','After using nix on non-nixos, and wanted hardware acceleration','Y','','Y','','','','','Declarative config using a programming language','Pre-configured modules','Patching system packages','Better default configuration for newcomers (nixos-generate-config)','Gentoo','Y','','','Y','','','','Y','Y','','Sway','search.nixos.org','',''),(980,'1980-01-01 00:00:00',5,'en','656165533','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Didn\'t want to install all pandoc dependencies on my Arch machine with pacman; Nix was more suitable for it and Haskell in general, which I wanted to learn','','Y','','','','','Y','','','','','','','','Y','','','Y','','Possible single config file for the entire system (NixOS) + user (Nix; Home-manager)','Rollbacks','nix-shell for temporary environments','Include simpler package search options','Use the language specific package managers and Arch Linux\' package utilities (PKGBUILD; ABS)','','','','Y','Y','','','','','','','','','','','','','Y','','N','Time constraints for the learning curve of Nix packaging','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Dotfile repo was a nightmare to maintain on two systems simultaneously. NixOS solved this problem and also included tempting features.','Y','','','','','','','Organized dotfiles with NixOS and home-manager','Rollbacks','Easy and safe upgrades via channel switching or flakes','(More) Integrated package and option search with CLI','Arch Linux','Y','','','','','','','','','','bspwm + home-manager options','','','NixOS helped my debloat addiction'),(981,NULL,3,'en','1486504749','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(982,'1980-01-01 00:00:00',5,'en','1607875817','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to use home manager to make bootstrapping news systems easier. Also I wanted reliability and checking configuration into got.','Y','','','Y','','','Y','','Y','','','','','','Y','','','Y','','Repo specific developer flake files.','Home manager (maybe not core to nix).','Nix shell to just try stuff out.','I would make the docs and tooling better. I dislike how hard it is to write flake files as I\'m a nix noob. I wish i didn\'t have to refer to the nixpkgs source code so often. I wish I could more easily search for things and bootstrap python and rust projects.','Dev containers ','','','','','Y','','','','','','','','','','Poetry2nix and the oaxilica rust overlay','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I have an old Linux laptop that is basically my Zen garden. I liked nixpkgs so I wanted to see what NixOS was like.','Y','','','','','','','Rollbacks','Easily swapping desktop environments.','','I wish Nvidia stuff worked more seamlessly. I do machine learning and don\'t run NixOS on them for this reason.','Manjaro or Arch. Maybe PopOS.','Y','','','','','','','Y','','','Sway','','',''),(984,'1980-01-01 00:00:00',5,'en','1699172157','A2','A3','male','','Y','','','Y','Y','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','Y','','Isolated development environments','Docker image building','Distribution rollbacks (on NixOS)','Documentation, official tutorials and proper, helpful, contextual error messages','Language specific build environment solutions and docker','','','','Y','Y','','','','Y','','','','','','elm2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','','Declarative system configuration','Rollbacks','Rolling releases','Documentation, tutorials, examples, and a graphical installer. Maybe a graphical configuration tool even.','Gentoo','Y','','','','','','','','','','exwm','','mach-nix, pypi2nix, node2nix, yarn2nix',''),(983,'1980-01-01 00:00:00',5,'en','2026622684','A2','A4','male','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','Home brew was frustrating me. Every time I upgraded Emacs, it would get in a fit. \r\n\r\nAlso Python virtual environments, and nodejs projects. ','Y','','','','','','Y','','','','','','','','Y','','','','Darwin-nix','Shell.nix','Configuring launchd agents','','I would love a more verbose/readable language. \r\n\r\nI’d also love to be able to get Emacs package installation to work. ','Home brew, and swearing at various other package managers (for Python, Java, Node, etc)','','','','','','','','','','','','','','','','','','','','Y',NULL,'N','N','If I had to use Linux on my computer. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Darwin-nix','',''),(985,'1980-01-01 00:00:00',5,'en','212005784','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','N','Y',NULL,'Lack of fundamental understanding','My own digestion of the language and guides',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A2','I really like the idea of OS configuration as code','Y','','','','','','','configuration.nix','Nix-env','Nixpkgs','Better support for Linux software, recently I tried to install table plus but it is not in nixpkgs','Ubuntu or arch','Y','','','','','','','Y','','Y','','','',''),(986,'1980-01-01 00:00:00',5,'en','1559015213','A4','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','Y','','A3','Nothing beats reproducibility and declarative configuration.','','Y','Y','Y','Y','','Y','','Y','','Y','','','','Y','Y','Y','Y','','Reproducibility','FLAKES!','Declarative','Usage nickel-lang (tweag/nickel) instead of nix-lang once its ready for production.','If guix would\'ve existed then guix, otherwise just old horrible package managers.','','','','Y','Y','','Y','Y','','','','','','','','Y','Y','','','N','Nothing, haven\'t see a package missing :)','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','','','','Reproducibilty','Flakes','Declarative','Ready nickel-lang instead of nix-lang','Guix\r\nOtherwise Arch or fedora probably.','','','','','','','','','','','sway','','','Awesome project thanks!'),(987,'1980-01-01 00:00:00',5,'en','1186255629','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','Y','','Y','','','','','','','Y','Y','','','','','Reproducable system state','System defined as a config file in VCS','huge package library','add an installer to make it easier for people to install nix','some sort of Container OS','','','','','','','','','','','','','','','','','','','','N','creating a nix derivation looks hard','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','i wanted a machine that would reset to the same state after I rebooted it','Y','','','','','','','did i not just answer these questions previously?','','','','','','','','','','','','','','','sway','home-manager','','Hire people to work full-time on the documentation'),(988,NULL,2,'en','998640909','A1','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Reproducibility','Declarative system management','Flakes','Instead of using the experimental-features option for flakes, I would put all the functionality under a new binary like nix3. This would make it significantly easier to run flake commands on other people\'s computers who haven\'t set up the experimental-features option.\r\n\r\nI would change some of the Nix language syntax to make it easier to understand without context. It took me a long time to learn the syntax, and some parts of the syntax I still can\'t even look up online. Using keywords like function make obvious signposts for beginners.','I wouldn\'t be writing packages, just consuming the Arch repos and AUR.\r\n','','','','Y','Y','','','','','','Y','','','','https://github.com/nix-community/poetry2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I found a link to the website through Hacker News and I read the homepage which sounded so intriguing and the properties sounded desirable, especially after getting into a few sticky situations with the package manager on Arch. For the next few months I was thinking about setting it up and then I finally got around to it and have been using NixOS since.','Y','','','','','','','Declarative system management','nixos-vm','','','Arch with imperative system management.','Y','','','','','','','Y','','','i3',NULL,NULL,NULL),(989,'1980-01-01 00:00:00',5,'en','1071252837','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','storing config in one spot, easily maintainable','','','','debian','Y','','','','','','','','','','dwm','','',''),(990,NULL,3,'en','680673150','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','N','Y',NULL,'too many ways to do one thing','updated docs with best current implementations',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(991,'1980-01-01 00:00:00',5,'en','373419553','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(992,'1980-01-01 00:00:00',5,'en','1459608538','A5','A3','fem','','','','','','','','','','','','','','','','','','','','','','','','','Author','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I got really into functional programming and then heard a rumor one could declaratively manage one\'s entire system. Never looked back (though using nix itself not NixOS just followed later).','','','','','','','Y','','','','','','','','Y','Y','','Y','','Never forgetting what weird packages or config options one had to use to get something to actually WORK, because it is all explicit.','Escape from dependency/versioning hell.','Reproducible builds.','The nix language is frankly really, really bad, and I find it basically impossible to comprehend or debug. I would have Nix the \"concept\" rewritten from scratch using a more sensible language like Dhall.\r\n\r\nAs far as more achievable things go, can flakes please be either dropped entirely or standardized already? They are fracturing the ecosystem something awful.','Honestly, nothing. I would just have terrible, dysfunctional workflows.','','','','','','','','','','','Y','','','','elm2nix (https://github.com/cachix/elm2nix)\r\n\r\n(if it counts) haskell.nix (https://github.com/input-output-hk/haskell.nix)\r\n\r\nAll other ones I use are built-in to nixpkgs at this point (cabal2nix, yarn2nix, etc)','','','','Niv + importing a source specifically. Flakes are still experimental and overlays are annoying.','N','As above, the nix language itself is awful and I am nowhere near proficient enough in it to contribute to nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I got really into functional programming and then heard that one could declaractively manage an entire system. Needless to say, I jumped on that immediately for my daily driver.','Y','','','','','','','Never forgetting how you fixed/configured something. Once you solve a problem, it never comes back, and you have a record of what you did, since it has to be explicit.','(Via home-manager) having all of one\'s dotfiles/configurations in one place, with version control and synchronizing them across several computers.','Keeping a very lean install that I can easily add/remove software from/to.','Full \"native\" integration of home-manager (or similar) into NixOS. I just want everything to be configurable from a single place.','Fedora was my daily driver prior to discovering NixOS, so I would likely go back to that.','Y','','','','','','','','','','Xmonad','home-manager, though I discussed that in the NixOS section.','Any time I have to actually touch the nix language itself it\'s a 50-50 whether or not I just give up, since I am unable to do more than copy-paste examples and pray the work. I would love love love the language itself to get some love (or be replaced entirely e.g. by Dhall).','Thanks for the awesomeness that is NixOS!'),(993,'1980-01-01 00:00:00',5,'en','436562789','A2','A3','male','','Y','','','','','Y','','','Y','','','','','','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','','','Y','','','Y','Y','','Y','','Flakes','Reproductabiliy','Declarativity','','','','','','Y','Y','','Y','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','','','Y','','','','','','','Y','','','','','','','','','','i3','','',''),(994,NULL,1,'en','1735253637','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(995,'1980-01-01 00:00:00',5,'en','2073039865','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','','','','','','','Y','Y','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','Y','Y','','','','','','','','','','','','','','','','Y','','','','','',''),(996,'1980-01-01 00:00:00',5,'en','1863451461','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','N','Y',NULL,'Nix language is weird and hard to understand. At least for me.','The idea behind it is great.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Probably nothing. I\'m mainly using Linux on servers where we expect enterprise support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(997,'1980-01-01 00:00:00',5,'en','452647322','A2','A3','male','','','','','','','','','Y','','Y','Y','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','dconf2nix','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','','','','','','','','Y','','','','Home manager','',''),(998,NULL,1,'en','9229691','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(999,'1980-01-01 00:00:00',5,'en','1418736688','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','Y','','','','','Y','','','','','','','','Y','','','Y','','Package availability','Declarative environment ','Network aspect of flakes','Make flakes stable','Guix (but that wouldn’t exist without Nix ;) )','','','','Y','Y','','','','','','','','','','Dconf2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Was using guix, needed better hardware support ','Y','','Y','','','','','Declarative system','Cool modules like kmonad','','','Guix systematic ','Y','','','','','','','Y','','','','','',''),(1000,NULL,NULL,'en','1088608864',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1001,'1980-01-01 00:00:00',5,'en','1679519316','A5','A3','male','','','','','Y','Y','','','','','Y','Y','','','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Curiosity, started using it in like 2015, gave it up for a bit, then came back in 2019, running it on my laptop since then.','','Y','','','','','Y','Y','Y','','','','','Y','Y','','Y','','','reproducible builds','os management','home manager','add language-server for nix','arch linux','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Curiosity, gave it a couple of tries, eventually switched to it fully.','Y','Y','Y','','','','','os builds/generations','ability to switch to previous generation','','nix language-server','arh linux','Y','','','','','','','','Y','','xmonad','nix-review-tools','nixos docker image has visible issues with stability, had to switch away from it not so long ago','Keep at it guys, you are amazing!'),(1002,NULL,NULL,'en','1666087680',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1003,'1980-01-01 00:00:00',5,'en','883322231','A2','A2','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','My thesis advisor advertises nix a lot. ','','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','nix flake','','','better flakes for home-manager','archlinux','','','','','Y','','','','','','','','','','','Y','Y','','Nix User Repository','N','Nix User Repository','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1004,'1980-01-01 00:00:00',5,'en','717310059','A1','A3','male','','','','','','Y','Y','','','Y','Y','','','','','','Y','Y','','Y','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because how easy it is to carry the same configuration to another machine','','Y','','','','','','','','','','','','','Y','','','Y','','Reproducibility','Configuration management','Declarative configuration','Add great documentation especially for all levels, eg. No clear path from beginner through intermediate to advanced usage','Oh God!','','','','Y','Y','','','','','','','','','','','','Y','','','N','No clear and easy documentation of where to begin','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as for nix','Y','','','','','','','Same as for nix','Same as for nix','Same as for nix','Same as for nix','Oh God!','Y','','','','','','','Y','','','I3, sway','','','Even though there have been recent efforts to make documentation and tutorials available, there isn\'t a canonical book or documentation promises to take you from beginner to advanced nix contributor. That is for some like me a huge time investment especially considering work pressure.'),(1005,NULL,1,'en','1682984553','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1006,NULL,3,'en','2011020921','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','N','N','Quality quickstart examples',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1007,NULL,1,'en','720997650','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1008,'1980-01-01 00:00:00',5,'en','31985330','A5','','','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','Y',NULL,'- Package availability + freshness\r\n- Configuration complexity','More common packages available and quicker package updates',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'See Nix section','See Nix section',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I think NixOS is great and has a lot of potential, but it\'s super unapproachable. \r\nWould also love more security/privacy features like Qubes OS.'),(1009,NULL,1,'en','548616510','A3','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1010,NULL,3,'en','1956074708','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Repeatable builds','Cacheable, transferrable build results','','More consistency and reliability in commands, more easily understood language','','','','','','Y','','Y','','','','','','','','','Y','Y','','','N','Huge size','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Repeatable configuration','Y','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1011,NULL,NULL,'en','704537858',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1012,NULL,1,'en','1246891172','A1','A3','male','','','','','','','','','Y','','','','Y','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1013,'1980-01-01 00:00:00',5,'en','1523164327','A5','A4','male','','','','','Y','','Y','','','','','','','','','','','','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','For building reproducible docker images and building software to share on an NFS server.','','Y','','','','','Y','','','Y','','','','','Y','Y','Y','','','reproducible build environment','reproducible docker images','building software that can be shared on an NFS server','stabilize flakes, make building node.js software easier','Docker and k8s','','','','','','','','','Y','','','','','','poetry2nix\r\nyarn2nix','Y','Y','','','N','I wish there was an untrusted repository like the archlinux AUR that I could submit software to without waiting for a pull request. Maybe just a searchable index page of github repositories that any user can add to. The NUR still requires waiting for a pull request to be approved.','N','Y',NULL,'Some software I use wasn\'t packaged for nix: headset, jxplorer, android messages for web. I could write my own nix flakes but there\'s no easy way to put them into nixpkgs or NUR without digging through lots of nix files and waiting for a pull request to be approved. There should be an easy way to submit nix flake repositories to a searchable index page that anyone can submit to, like archlinux\'s AUR.\r\n\r\nAlso, there were some glaring bugs with gnome where after installing software, the icon wouldn\'t appear until you log out and log back in. This has been fixed but it was broken for years. It led me to believe that the NixOS developer base is still too small to fix glaringly obvious paper cuts like this. Using linux for a desktop is difficult enough as is because of the small user base, I felt that the NixOS community\'s ability to provide a trouble-free desktop experience isn\'t there yet.','Maybe in a few years once all the packages I need are in nixpkgs and the desktop experience has had more time to stabilize.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-direnv','yarn2nix - Wasn\'t robust enough to package some JS software I needed. I ended up using Docker instead.',''),(1014,'1980-01-01 00:00:00',5,'en','1994364906','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Started using NixOs.','','','','','','','Y','','Y','','','','Desktop','','Y','','','Y','','Power of a programming language instead of some static configuration format','Declarative/Functional','Reliability','Change nix(the language):\r\n records and enums (not attribute sets)\r\n static types \r\n ','Guix','','','','Y','Y','','','','','','','','','','','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','Desktop','A3','I liked the configurability of Gentoo, which I was prior using, but it was often unstable, and managing packages/flags got complex.\r\nThe declarative configuration of NixOs and its module system, and home-manager allowed for much greater stability, configurability\r\nwith a powerful language.','Y','','Y','','','','Desktop','Programmatic configuration','Reliability','Declarative','Add ability for better secret management\r\nOtherwise: only novel things such as Plymouth w/ root encryption\r\n\r\nPipe dream: Non-linux kernels, eg: XNU/Darwin, kFreeBSD ...','Guix','Y','','','','','','','','Y','Y','bspwm,xmonad','home-manager NUR','',''),(1015,'1980-01-01 00:00:00',5,'en','1034847132','A2','A4','male','','','','','','','','','','','Y','','Y','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The idea of \"system config like Git\"','','','','','','','Y','','Y','','','','','Y','Y','','','Y','','Easy package contributing','Deterministic system config','build OS from minimal config, no bloat','better language as Nix-lang (too many surprises IMO)\r\nbetter documentation, esp for packages\r\noverlays are stupid, make custom git nixpkgs trees a first level citizen.\r\ndrop macos support, it is annoying and macs are proprietary crap','Ubuntu/Debian or maybe Guix (didnt try)','','','','','','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','I don\'t care about Nix, only NixOS. All my answers were about NixOS but it looks like I did not get the survey structure, was too lazy to type stuff again.'),(1016,'1980-01-01 00:00:00',5,'en','1593622301','A2','A4','male','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My company uses Nix heavily, so I got kind of mandatory exposure. But I relatively quickly realized how useful Nix is and started using it independently.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','Reproducible development environments via nix-shell','Easy building of Docker images','Effortless rollback of system configurations','Add better documentation for beginners / non-expert users, more informative error messages with hints for how to resolve the problem, better support for installations without superuser privileges and Nix store paths other than /nix.','Probably conda, Python virtual environments, docker files.','','','','','','','','','','','Y','','','','poetry2nix, bundix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Got convinced to try it out by a colleague ','Y','','','','','','','Easy rollback of system configurations','','','','Ubuntu','Y','','','','','','','Y','','','','','',''),(1017,NULL,1,'en','938823646','A5','A3','fem','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1018,'1980-01-01 00:00:00',5,'en','1424986061','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Because of all the euphoria from my ex-colleagues at Mayflower GmbH','','','','','','','Y','','Y','','','','','','Y','','','Y','','Reliable, declarative and reproducible dev environments','The possibilities of build caching (for builds and deployments of my personal web service projects)','','Documentation and, maybe even more importantly, high quality blog posts by experienced users and advocates. I\'m very much a newbie and it\'s hard to find intuitive material that explains how certain things are working under the hood, amidst the seeming change to flakes. ','Ubuntu or Arch, but looking into guix as well','','','','','','','','','','','','','','','','','','','','N','Haven\'t found anything non trivial package that I\'m missing to try it out myself. Looking at most package definitions, I don\'t think I understand most of what is happening under the hood to know what to do.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Because of all the euphoria of my ex-colleagues at Mayflower GmbH','Y','','Y','','','','','Declarative system configuration ','','','','','Y','','','','','','','','','','i3','home-manager','','Thank you for this already great ecosystem!'),(1019,NULL,NULL,'en','742447747',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1020,'1980-01-01 00:00:00',5,'en','1929335529','A2','A4','male','','','Y','','','','Y','','','','','','Y','','','','','','','','','','','','','','Y','','Y','','','N','N','Today was my first try. So I don\'t use it regularly (yet). But I didn\'t stop yet either.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Today was my first try. So I don\'t use it regularly (yet). But I didn\'t stop yet either.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I\'m quite amazed by NixOS. Going to use it more and maybe even switch to it!'),(1021,'1980-01-01 00:00:00',5,'en','437800557','A2','A2','fem','','','','','','','Y','','','','Y','','','','','','','Y','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Short version: I heard of Nix, thought it sounded cool & decided to switch over to it as my daily driver. \r\n\r\nLonger version: I heard of it from this video: https://www.youtube.com/watch?v=QKoQ1gKJY5A, looked on the website and saw the introduction where you mentioned some of the things Nix could do (building very small docker containers easily piqued my interest). I have regularly distrohopped for a few years now, and at the time I was on bedrock linux but wasn\'t really using the main selling point much. I decided it might be time for a do-over, and although I couldn\'t install nix as a brl stratum as I had originally hoped, I was able to quickly set up a nix install and get to grips with stuff needed to use my system effectively (nix-shell, editing the config & rebuilding, setting up home-manager to manage a user environment etc.). Despite some of the shortcomings, particularly in documentation/intuitiveness, I have been able to use nix successfully. I am still learning about it at the moment, trying to switch over to the single \'nix\' binary rather than the convoluted \'nix-env, nix-shell, nix-store etc.\'. I\'ve enjoyed what I\'ve read of the \'how to learn nix\' series of blog posts (https://ianthehenry.com/posts/how-to-learn-nix/) and they\'ve helped me overcome some confusions. ','','Y','','','','','Y','','','Y','','Y','My personal laptop','','Y','Y','Y','Y','','Declarative system management','Declarative environment management','Building containers','- Functions being in builtins vs lib (I don\'t remember which is which; that sucks)\r\n\r\n+ Better support for the single nix binary. Even though I\'m using it everything still refers to the old binaries. Commands which fail still tell me to run nix-shell (or they did until this morning when I wrote this regex to include in a command_not_found_handler: \"sed -r \'s/nix-shell -p (\\S+)/nix shell nixpkgs#\\1/g\'\"), the documentation still pushes me towards running the more confusing older versions of the commands etc., and as far as I can tell the online documentation has no content on how to use the new binary\r\n+ Better documentation on how to set some of this stuff up and why things are the way they are. It\'s really confusing as a new user sometimes.\r\n+ More ways of inputting stuff to a flake. I still haven\'t discovered a way to use just URLs as flake inputs \r\n+ More information about what\'s going on. As an example \'nix store gc --dry-run\' outputs nothing on my system. I presume that\'s because it wouldn\'t delete anything, but it would be nice to have something saying \'x number of things would be deleted; x amount of space would be freed\'. There are similar examples where some cases output nothing and it\'d be nice to give some reassurance that that means what I think it means.','Either the package manager used in Guix, or pmm with yay as I was using before','','','','Y','Y','','','','','','','','','','None','Y','Y','','','N','I do not feel that I am experienced enough with nix yet to contribute usefully to nixpkgs. I still feel like I\'m in relatively early stages of learning and experimenting.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','It\'s the same as the story for Nix; I\'ll copy and paste it here for completeness.\r\n\r\nShort version: I heard of Nix, thought it sounded cool & decided to switch over to it as my daily driver. \r\n\r\nLonger version: I heard of it from this video: https://www.youtube.com/watch?v=QKoQ1gKJY5A, looked on the website and saw the introduction where you mentioned some of the things Nix could do (building very small docker containers easily piqued my interest). I have regularly distrohopped for a few years now, and at the time I was on bedrock linux but wasn\'t really using the main selling point much. I decided it might be time for a do-over, and although I couldn\'t install nix as a brl stratum as I had originally hoped, I was able to quickly set up a nix install and get to grips with stuff needed to use my system effectively (nix-shell, editing the config & rebuilding, setting up home-manager to manage a user environment etc.). Despite some of the shortcomings, particularly in documentation/intuitiveness, I have been able to use nix successfully. I am still learning about it at the moment, trying to switch over to the single \'nix\' binary rather than the convoluted \'nix-env, nix-shell, nix-store etc.\'. I\'ve enjoyed what I\'ve read of the \'how to learn nix\' series of blog posts (https://ianthehenry.com/posts/how-to-learn-nix/) and they\'ve helped me overcome some confusions. ','Y','','','Y','','','My personal laptop','Declarative system management','Declarative user profile management through tools like home-manager','Easy access to the nix package manager','I have had major major issues installing NixOS on my raspberry pi zero w 2. I wish there were better support there.','Either bedrock linux, gnu guix (through this video which I watched slightly after the nix one https://www.youtube.com/watch?v=iBaqOK75cho), or something else entirely. Probably guix.','Y','','','','','Y','','','','','SwayWM','None','None','I really love nix. I apologize if my answers are sometimes a little incomprehensible as I don\'t quite understand my way around yet, but from what I\'ve seen this is awesome. I would love to help improve nix, but I\'m not quite sure where to start. For now I shall probably keep playing around and gaining intuition until I make something that\'s cool enough to help people with nix.\r\n\r\nAlso I refer to all of NixOS and Nix (the package manager) and Nixlang and Nixpkgs using the word \'nix\'. This means that when I say nix you don\'t quite know what I\'m talking about. My apologies if this gets confusing.'),(1022,'1980-01-01 00:00:00',5,'en','105641352','A2','A3','male','','Y','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','At some point I just stumbled over the NixOS project and Eelco\'s thesis, in my year-long survey of operating system paradigms and tools/concepts for managing software complexity. It felt like the obviously correct and superior approach to package and system management. Once I found time, I set up a spare machine to be fully reproducible from scratch based on one USB stick with secrets and one shell command, just to prove my assumption correct that it should be possible with Nix. Since then it is my daily driver in all aspects of computing.','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','declarative and reproducible systems and user environments','highly available collection of almost all the open source software in existence','software that I build with Nix underneath will still work when I come back a year later','- remove all the flakes; this is another python2/3 disaster in the making\r\n- remove all references to imperative/impure interaction with Nix (NIX_PATH, nix-env, <.> expressions); it misleads people into wrong assumptions and unsustainable practices\r\n- create a consistent narrative in the documentation\r\n- provide a way to interact with evaluated state, such as an incremental compiler','actually I may have given up on Linux or computers entirely. or maybe use Jupyter and the Apple App Store for private tinkering, and self-contained language ecosystems such as Go for professional programming.','','','','','','','','','','','','','','','pip2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','NixOS sounded like an obviously correct and superior way to manage a system, and make it reproducible. Also obviously better than containers for creating runtime environments. I had Gentoo on personal servers before that and it turned out to be practically not upgradeable. I worked with Debian/Ubuntu for a while, but it was always a hack: highly limited availability and interoperability of software packages, flaky configuration of edge cases full of workarounds that had to be somehow memorized or given up on. When I started with NixOS, something that worked once would work forever on every system using that configuration (finally portable!), and upgrades would be deliberate, with incremental changes in the (unavoidable) workarounds.\r\n\r\nNixOS killer feature is that it really is a Linux distribution development toolkit (modulo some hard-coded assumptions).','Y','','Y','','','','','Build your own Linux distribution','Linux hacks: write once, use everywhere, forever*\r\n\r\n*at least until next major upgrade','Remote deployment','- make it the fully general Linux distro factory it could be\r\n- make remote deployment (with secrets management) a no-brainer\r\n- graphical system configuration at runtime, with version control','macOS, and cry on every new release','Y','Y','','','','','','','Y','','xmonad','home-manager, nix-darwin, nixos-hardware','','Nix/OS is the next seminal paradigm shift in computing after GNU/Linux and distributed version control (git). This is just the beginning. Please use your responsibility wisely and think of future generations.'),(1023,NULL,1,'en','2037303945','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','Read the original paper and was very impressed.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','complete and reproducable build description','transparency','rollbacks','some redhat-like org that could cover enough ass for use in med/big corp\r\n\r\nadd security team\r\n\r\nadd static types and checker\r\n\r\nadd more repl-visible docs\r\n\r\nrework nix pills into manual\r\n\r\nmaybe change syntax to lisp, incl. macros','guix','','','','','Y','','','','','','','','','','cabal2nix','Y','Y','Y','','Y',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1024,'1980-01-01 00:00:00',5,'en','986123915','A5','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Technically I started 10+ years ago, but it was awful. I\'ve recently gotten back into it and I feel like the experience is a lot better (though, documentation and the ecosystem could still be improved). I just like the idea of reproducible builds and how nix works. A big factor in me getting back into it is wanting to manage a number of machines declaratively... I have to many computers, and it\'s annoying to manage them all.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','Declarative configuration / management','Reproducible builds','Hopefully a better dev environment with different versions of things','Tooling would be a lot better. I still don\'t actually know how to search for packages on the command line well (especially with flakes?).\r\n\r\nAlso error messages in the nix language could be improved.\r\n\r\nI kind of want incremental builds too. Like ccache but with nix and better.\r\n\r\nI think the documentation is... Kind of okay, and kind of not? I think the information is there, but getting to what\'s important and what people care about is slow and painful. For instance the nix pills are really good, but there\'s a lot of them and they move at a pretty slow pace. Having a summary / cheatsheet might help people get the gist of how nix works faster, and then they can dive into the more in-depth manuals if need be?','For package management? I guess I really like gentoo ebuilds. In general I have suffered with language-specific package management, but I\'m hoping to reap benefits from nix.','','','','Y','Y','','','','','','','','','','cabal2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Hoping to make it my main driver, but currently using it for a server.','A1','','','','Y','','','','','Declarative configuration','','','Managing secrets?','Gentoo','Y','','','','','','','','','','xmonad','','',''),(1025,NULL,1,'en','522577342','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','','','','','Y','','','','','','','','Y','Y','','Y','','Declarative Package Management','Centralized Configuration','','Documentation! The getting started flow is excellent, however, more complex patterns are less so. I often found myself reading through several of the community wiki pages to learn what idiomatic nix looks like before I was really comfortable using nix.','Old fashioned manual config files and pacman :P','','','','Y','','','','','','','','','','','','Y','','','','N','Still learning the tool/language.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I recently got a new SSD and wanted to reinstall linux on it. Instead of following a standard Arch install, I decided to try NixOS.','Y','','','','','','','','','','','','','','','','','','','','','','None','Home-Manager','',''),(1026,'1980-01-01 00:00:00',5,'en','994046476','A2','A3','male','','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','','Y','Y','','','','','Y','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','yarn2nix','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','Declarative OS management','','','Fix the rough edges when starting with NixOS. E.g. getting svg icons working (install librsvg), get gtk and qt themes working, setting environment variables correctly when using fish, etc., etc.. There’s loads of things everyone has in their configs to fix these, it’s just hard when one gets started.','Saltstack','Y','','','Y','','','','','','','Sway','home-manager','','Thanks! 😊'),(1027,'1980-01-01 00:00:00',5,'en','164611041','A2','A4','male','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Because it comes from the future. Used Debian SID for 10 years, after that Arch Linux for about 2 years. Grew tired of it and wanted to play with. sth. different. Also transitioned to Infrastructure as Code in my working space and saw the light: Declarative OS it is.','','Y','','','','','Y','Y','','Y','','','','','Y','','Y','Y','','Declarative system config (shared among multiple machines)','nix-shell (use it a lot to setup dev environments for different projects/languages)','easy way to build docker container','- change: Replace nix with a more common language (e.g. lisp)\r\n- add: snap packages support as an escape hedge','- docker\r\n- ansible','','','','Y','Y','','','','Y','','Y','','','','https://github.com/nix-community/poetry2nix','Y','Y','','','N','- Time restrictions\r\n- So far all packages I need are already available','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','Y','','','','','','','','','','','','','','','','Y','','','swaywm','','nixops',''),(1028,'1980-01-01 00:00:00',5,'en','1520687531','A3','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','Y','','N','Y',NULL,'I tried to set NixOS on my new laptop, but it has a wifi card that requires kernel > 5.12. When I tried recently to install, the image had kernel 5.10. I did not had access to wired ethernet.\r\n\r\nAlso, at work, we have a hard lock-in to Canonical stuff. The only way to run all those things is with their snaps. That is a constant cause of problems for us and NixOS would be heaven, but we still do not know how to run all of that outside snap. And we asked many times for docs :shrug:','Time. I really want to give it another try.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I have a thing for docs. My suggestion: have a wiki that people can write detailed instructions for packages, and have that wiki page linked automagically in each package entry https://search.nixos.org/ \r\n\r\nHaving a way to find out more details and gotchas about each package would be awesome.'),(1029,'1980-01-01 00:00:00',5,'en','1290666251','A1','A3','male','','','','','','','Y','Y','Y','','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I tried out NixOS a few years ago, and then discovered `lorri` and `nix-darwin`, so I could use Nix for all my personal projects.','Y','Y','','','Y','','Y','Y','Y','','','Y','','','Y','Y','','Y','','Declarative dependency management (through nixpkgs)','nix-shell and nix-direnv','Reproducible and isolated builds using the nix store','- Make flakes official!\r\n- Clearly document which parts of nix are language builtins, and which are from nixpkgs','I used to put all my software in \"small\" Docker containers and try to expose only the data that changed.','','','','Y','Y','','Y','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I tried it out for fun one day when I ran into issues with graphical tools on Nix with Ubuntu. After dual-booting for a while, I found that I no longer needed the Ubuntu installation, and switched to NixOS full time.','Y','','Y','','','Y','','Version-controllable declarative system configuration and rollbacks','Stable configuration base (with stable releases)','Nix built-in','A nicer way to spin up FHSUserEnv or run non-Nix-aware software that doesn\'t require intimate knowledge of Nix, perhaps?','I\'d either use Nix on Linux, or I\'d go back to Arch Linux or Debian.','Y','','','','','','','','','','i3, bspwm, tty','I use cachix with Github Actions for sharing personal packages.','','Thanks to all the nixpkgs and nixos maintainers!'),(1030,'1980-01-01 00:00:00',5,'en','387157067','A5','','male','','','Y','','','Y','Y','Y','','Y','Y','','','Y','','','','Y','','','','Y','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','Y','','','','A1','We were using apt and ansible for developer machine tool management. It was a nightmare. nix solved the problems well with a simple: nix-env -f -i\r\n\r\nWe\'ve been experimenting with it for our build environment with a nix-shell (prob using nix-dir-env). This has been more slow going. We have some complicated dependencies.','Y','Y','','','','','Y','','','','','','','Y','Y','','','','','nix-env','nixpkgs','nix-shell','Add documentation','apt, ansible, and bazel','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,'N','N','My company is a federally regulated entity. We need companies like Canonical or RedHat to point fingers at if things go wrong. Honestly, we need a more reliable ecosystem of sponsoring and consulting companies that officially support NixOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Flakes. I tried it, and it was kinda tricky for me to figure out. I imagine I could figure it out, but the documentation and stuff isn\'t really there.',''),(1031,NULL,-1,'en','2059430261','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1032,NULL,3,'en','1509795106','A5','A4','male','','','Y','Y','','Y','Y','Y','Y','Y','Y','','Y','Y','','Y','Y','Y','','Y','','Y','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'ve spent _thousands_ of hours getting lightly-patched open source packages to build + run on various \"unsupported\" hosts in the last ~20 years. Nix is the first tool I\'ve worked with that lets you solve that problem once and then reuse the result anywhere Nix is available.','Y','Y','','Y','Y','','Y','Y','Y','','','Y','','','Y','','Y','Y','','Portable build definitions','First-class dev shells (_so_ much nicer than building everything in a random Docker container)','Configuration','Type declarations. `mkOption` et. al. are okay for NixOS + Nixpkgs core stuff, but a pretty nasty/steep climb for doing standalone development.','In all likelihood, continue with a bunch of Python scripts and Makefiles like I did for 20+ years before I started using Nix.','','','','Y','Y','','Y','','','','','','','','None. They\'ve all fallen over hard when I start trying them out with a non-trivial project (mix of Github and private sources, managing recursive dependency sets, etc.)','Y','Y','','','N','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I came for Nixops but never really got around to that part. Might go back that way now that I\'m finally somewhat comfortable with \"standard\" NixOS administration.','Y','Y','Y','Y','','Y','','Global configuration w/o remembering 30+ different individual config formats','Declarative VMs and containers','Hardware detection and kernel defaults are both quite good! I have fewer issues running NixOS on my machines -- incl. laptops -- than I do with literally any other distro. (I\'ve tried at least 30 of them and counting.)','','Arch (for source code/recent packages) or Debian/Ubuntu (because big, popular OSS packages more or less assume Linux == Debian-alike)','','','','','','Y','','','Y','','',NULL,NULL,NULL),(1033,'1980-01-01 00:00:00',5,'en','1588329234','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I am developing quantum chemistry simulation software. The quantum chemistry ecosystem is a wild mix of Fortran, Python, C++ and usually with pretty wild custom build systems. Often it\'s hard to install a package at all, and unfortunately many packages require extreme care with respect to compiler flags and dependencies to get numerically correct results. My own software is mainly written in Haskell and has a huge dependency graph. Nix provides integration of all this languages and ensures that is actually usable by someone else.','','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Reproducible builds','Mutli-Language build system','Container building','I would like to have the ability to have a second mode, which allows data management instead of software management without the sandbox and outside of the store. Basically having simulations/data depending on each other and having their outputs stored in a content addressable storage.','Guix probably. Or going down athe entire rabbit hole and learn cmake 😬','','','','Y','Y','','Y','','Y','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Formerly I used Debian extensively. However, managing configuration on multiple machines (work, personal, laptops, server) and a scientific cluster is tedious without declarative tools. Also, while loving how robust Debian is, I found nixos surprisingly stable while much more up to date. And it\'s so much easier to contribute packages. ','Y','Y','Y','Y','','Y','','Consistent configurations on different machines','Good ZFS support','Rollbacks','It would be so neat to have a BSD based NixOS','Debian or OpenSuse','Y','Y','','','','','','Y','Y','','','Niv\r\nHaskell.nix overlay','Flakes. Thir ergonomy is terrible right now\r\n\r\n',''),(1034,'1980-01-01 00:00:00',5,'en','1681257103','A5','A3','male','','Y','','','Y','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','I wanted to switch from my half decade old Arch Linux to NixOS because the idea of \"reconstructable OS from configuration\" appealed to me.','','Y','','','','','Y','','','','','','','','Y','','','Y','','packages','interactive shell','flakes','Add CUDA/MKL/GTK/... enabled builds for pytorch/tensorflow/opencv to NixOS binary cache so that they don\'t need to be rebuilt from scratch for an entire day\'s worth of compilation every time there\'s an update.\r\n\r\nAdd easier way to work with existing binary software... nix-alien seems to work nicely so far, but something more built in would be nice...','Arch Linux (OS)','','','','','Y','','','','','','','','','','https://github.com/nix-community/poetry2nix','Y','','','I just define my custom packages in separate files and import them because that seemed the easiest way and doesn\'t involve forking a massive repo.','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','main PC: browsing, watching videos, ...','A2','Originally Arch Linux user of 5 years. Liked the idea of an OS that could be rebuilt via a configuration file.','Y','','','','','','','built from configuration','nixpkgs (unfortunately missing less popular or recent packages compared to AUR, but still better than some other distros)','','Add CUDA/MKL/GTK/... enabled builds for pytorch/tensorflow/opencv to NixOS binary cache so that they don\'t need to be rebuilt from scratch for an entire day\'s worth of compilation every time there\'s an update.\r\n\r\nAdd easier way to work with existing binary software... nix-alien seems to work nicely so far, but something more built in would be nice...\r\nAdd /bin/bash symlink so 99% of scripts don\'t break. I use https://github.com/balsoft/nixos-fhs-compat to get around this and also symlink other binaries to /usr/bin.\r\nAdd symlinks for /usr/lib and so on so that binary packages run and so we can build software easily.\r\nOf course, these can be turned off when building packages in isolation for nixpkgs to ensure reproducibility.\r\n\r\nAdd support for pip install --user. It\'s not clear why python mutable packages can\'t just install to $HOME/.local/share/...\r\nAdd support for ALL python packages so that I don\'t have to package each one individually. I have dozens of custom python packages which weren\'t in nixpkgs! Dozens! I had to do similar for system-wide Arch python packages via PKGBUILDs, but at least I could either install via pip install --user or automate the PKGBUILD process via pypi2pkgbuild or pip2pkgbuild. Also, the AUR more often than not had python-* packages anyways.','Arch Linux.','Y','','','','','','','','','','i3','','',''),(1035,'1980-01-01 00:00:00',5,'en','1168882138','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Friends used it for a year and said it does all the things we did before, but better','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','reproducibility','sharing environment for development','building containers','','shell scripts, maybe ansible','','','Y','Y','','','','','','Y','','','','','poetry2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','friends used it before and said it does all the things, but better. i followed','Y','Y','Y','','','','','exact same configuration on CI/CD and Dev machine','sharing configuration between systems','CI/CD via configuration files','','debian for work, arch for home','Y','','','','','','nix-copy-closure + nix-env ','','','','awesomewm','','hydra','keep on rocking!'),(1036,NULL,2,'en','2025192032','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','Key industry leaders were speaking of it.','','Y','','','Y','','Y','Y','Y','','Y','','','Y','','','Y','Y','','Inmmutable changes that can be rolled back','Container optimisation features','Scriptability','A more stable vagrant setup, with pre canned roles to provide folks with a like for like example against the likes of ansible/puppet/chef/salt or any other provisioner.\r\n\r\nMore out of the box configs that are maintained by vendors. E.g. spring, Apache, ...','Ansible','','','','Y','Y','','Y','','Y','','','','','','','Y','Y','','','N','Time and experience',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1037,NULL,2,'en','2064801976','A2','A2','male','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','','Y','Y','','','','Y','','Y','','','Y','Y','Y','Y','Y','','','','','','','','','','','Y','','Y','','Y','Y','','','','','','','Y','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1038,NULL,1,'en','1857596221','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Warehouse associate','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1039,'1980-01-01 00:00:00',5,'en','1149886940','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','curiosity','','Y','','','','','Y','','','','','Y','','','Y','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','Y','','','','','','','','','Y','','','','','','','','','','i3','','',''),(1040,'1980-01-01 00:00:00',5,'en','1810085492','A2','A3','fem','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I saw nixos website from reddit and I was really curious to try it out.\r\n\r\nThe package manager and the central configuration with a real language integrated in the os hyped me af.\r\n\r\nI am working on it daily to work to try its potential as a desktop for now. I plan to make a full case study to submit to my company.','','Y','','','','In a VM for now','Y','','Y','','','','','Y','Y','Y','','Y','','Declarative configuration for package management and os configuration (in the case of nixos)','Shells for managing dev environment.','Build reproductibility','Maybe a simpler way to pin packages to a specific version (i\'m still learning, I may have not figured it out yet)\r\n\r\nOtherwise, an easy way to install package not in nix package manager.','I tried to use ansible in the past to pass os configuration from one machine to another (on a desktop level, it\'s impossible).','','','','','','','','','','','','','','','','','','','','N','Still learning for now, I didn\'t tried to package anything yet.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I wanted to try for the configuration management that is awesome.\r\n\r\nI\'m sick of ansible and external tools. I really think that centralised configuration and package management integrated in the os is the future.','Y','','Y','','','','','Configuration','Package manager','Easy rollback','Simpler way to install non-nix packages\r\n\r\nBetter documentation','I guess ansible on another distro, or Guix ?','Y','','','','','','','','Y','','i3wm','','',''),(1041,'1980-01-01 00:00:00',5,'en','1598075092','A2','A2','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','NixOS about 2 days ago on my main desktop, and a few months ago on my MacBook, but I\'ve barely used my MacBook at all for about as long.','Y','','','','','','Y','','','','','','','Y','Y','','','Y','','','','','','Probably Arch','','','','','Y','home-manager','','','','','','','','','None at the moment, but I\'ll be looking into gradle2mix and elm2nix in the future','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','About 2 days ago','Y','','','','','','','','','','','','Y','','','','','','','','','Y','I want to switch to Hikari or Sway','','',''),(1042,NULL,1,'en','982490231','A2','A3','male','','','','','','','','','','Y','','','','','','','','Y','','','','','','','','Y','Y','','','','Chrome OS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1043,'1980-01-01 00:00:00',5,'en','1634878105','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','laborer','','','','Y','','android','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I came across the name, looked it up, liked the sound of it, and after a couple months of research installed it on my laptop.','','','','','','','Y','','Y','','','','personal computer, and home theatre system','','','','','Y','','Declarative system management','Atomic updates','Basic linux functionality','Gui for user environment package management. Certain packages, like java, dont seem to be recognized by other packages that depend on them (like some minecraft launchers). certain packages, like Etcher, don\'t seem to work at all.','I have used ubuntu forever, but i was feeling the itch for more technical control when i switched. If not nix, i would have been trying Arch or the others until i found something good enough (or gave up)','','','','','','','','','','','','','','','','','','','','N','Have to learn how first. I fiddled with it some, but i haven\'t had time.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Heard about it, tried it, liked it.','','','Y','','','','laptop, home theatre','Declarative configuration','Atomic updates','','User package gui, smoothing out rough spots with package compatibility','probably arch','Y','','','','','','','','Y','','','','','Nix\'s way of doing things will be the future, it boggles the mind it took as long as it did for someone to try it your way, and it surpises me that the nix package manager hasn\'t been more widely adopted.'),(1044,'1980-01-01 00:00:00',5,'en','540110602','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','Merge requests','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started using Linux on a VPS with a single instance. As I was already used to from the Desktop, I chose Arch, mainly because of the fresh packages. Over the time, the system became more and more cluttered with setting up services and over time forgetting which configuration I changed to what. Because I recently discovered it, I read into Ansible and started to write playbooks for using together with systemd-nspawn. This initially gave me the flexibility to move those containers around when the inevitable second instance came around, but had some flaws like needing to store lots of system files over and over and making sure their configuration stays consistent, for example Redis on Arch had its configuration in /etc/redis.conf but at some point switched to /etc/redis/redis.conf which broke some services. So far, Nix has shown to be very consistent with minimal changes being needed over time. ','','','Y','Y','','','','','','','+ Consistent UIDs for services (for example nextcloud should by default get UID X, some other service Y. Right now it seems to be dependent on the order of activation) \r\n+ Being able to do imports after checking for the hostname\r\n+ Better documentation outside of reading someone else\'s code\r\n+ automatically have the latest version of every software, also more packages and options\r\n+ some easy and elegant way to manage keyfiles','','Y','','','','','','','','','','i3','','','You rock, keep up the good work! '),(1045,NULL,1,'en','1132310193','A5','A4','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1046,NULL,NULL,'en','1716525555',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1047,'1980-01-01 00:00:00',5,'en','1706310908','A2','A4','male','','','','Y','','Y','Y','','','','Y','','','','','Y','Y','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Mainly wanted an operating system I could reason about. A simpler, principled way to configure an operating system. Better, more composable dev environments than docker.','','Y','','Y','Y','','Y','Y','Y','','','Y','','','Y','Y','Y','Y','','Programmability','Reproducibility','','Improve UI and documentation.\r\nStabilize UI.\r\nStandardize packages in nixpkgs.\r\n\r\n','Docker','','','','Y','Y','','','','','','Y','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as described before','Y','','Y','','','Y','','Programmability','Reproducibility','Ability to version control easily','Deeper integration with subsystems to make the UI more homogeneous','Ubuntu','','','','','','','','','','','I3wm','https://lazamar.co.uk/nix-versions/','','Put more resources towards stabilizing and documenting the nix UI asap.\r\nImprove error messages in command line and language.\r\nImprove language tooling.\r\nThe current state of things makes it very hard for me to recommend nix widely.\r\n'),(1048,NULL,1,'en','1441062758','A1','A3','-oth-','','','','','','','Y','','','','Y','','','','','','Y','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1049,'1980-01-01 00:00:00',5,'en','104792017','A6','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got to know about it when I was looking into installing haskell ide engine. Thought it was interesting so researched more about it. Eventually decided to give nix package manager a shot on mac. Then I went ahead and installed nixos on the PC that I built, this PC is the main machine I develop on.','Y','','','','','','Y','','','','','','','','Y','','','Y','','Declarative configuration of my system','Same configuration (more or less) works on NixOS and MacOS','Isolated development environments (nix-shell + direnv)','add \r\n- make nix a fully-fledged language with a solid community\r\n- add static types to it (IMO types help me understand the code much easily)\r\n\r\nremove\r\n- all the bash stuff and replace it with a statically typed language','MacOS','','','','','Y','','','','','','','','','','cabal2nix\r\npoetry2nix\r\ncargo2nix','Y','Y','','','N','Tried to give a PR once (adding a very small package), it saw no activity for ages (1 year or so). Lost interest afterwards.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Was looking into installing HIE (haskell IDE engine), was introduced to nix. Liked the philosophy behind it. Eventually decided to give it a shot with nix package manager on mac. Then I was making a PC for work and some casual gaming, decided to install NixOS on it. ','Y','','','','','','','Declarative configuration','The same configuration can be used across NixOS and MacOS','Isolated dev environments (nix-shell + direnv)','change\r\n- nix language to have static types\r\n- nix language to have a proper standard library\r\n\r\nremove\r\n- all the bash stuff from nix pakages\r\n','MacOS for most work and windows for gaming','','','','','','','not applicable','','','','Xmonad','home-manager, rnix (this requires improvement), nix-shell + direnv + nix-direnv,','-','I love the nix philosophy.'),(1050,'1980-01-01 00:00:00',5,'en','1445186340','A2','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','First contact at a meetup, then full time requirement for work.','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Pinning inputs','Reproducability','Somewhat sane configuration language','Add better docs\r\nAdd proper diff between derivations\r\nSpeedup nix\r\n','Ansible','','','','Y','Y','','','','Y','','','','','','https://github.com/nix-community/bundix\r\nhttps://github.com/nix-community/npmlock2nix\r\nhttps://github.com/nix-community/poetry2nix','Y','Y','','','N','Didn\'t find the time, didn\'t have the right scope of project to contribute. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','','Pinning of inputs','Reproducability','Shared configs','Better docs\r\nDiff between derivations\r\nRemove nix-env','Arch on Dev machine, Debian on servers','Y','','Y','Y','','','','Y','','','i3, sway','Agenix','','Thank you for your efforts. You rule :)'),(1051,NULL,1,'en','349781271','A3','A2','-oth-','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1052,'1980-01-01 00:00:00',5,'en','255194382','A3','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','Y','','','Y','','Y','','','','','','Y','','','Y','','Easy software installation','Easy software modification','Easy software distribution','','dnf, pipx, flatpak','','Y','','Y','Y','','','','','','','','','','poetry2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Desktop','A3','','Y','','Y','','','','','Declarative/programmable configuration system','Resilience','Easy to setup services','','Fedora','Y','','','','','','','','','','sway','home-manager, nixos-hardware, nixos-generators, nix-environments, lorri','nixops',''),(1053,'1980-01-01 00:00:00',5,'en','1381423536','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','','Y','','','','','Y','Y','','','Y','','','','','','','','','','Y','Y','','','','','Y','Y','','Y','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','Sway','','',''),(1054,'1980-01-01 00:00:00',5,'en','1396697839','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Users on sites like lobste.rs made very strong arguments for adopting Nix. I was already using docker out of frustration with python and nodejs dependency-hell. Nix is a natural progression for me. I use both Nix and docker.','','Y','','','Y','','Y','','','','','','','','','Y','Y','','','Reproducibilty','Ease if installing software','Future disruptive use cases','Better documentation or change in configuration language.','guix','','','','','','','','','','','','','','','','','','','','N','Nix language learning curve','N','N','Nix Lang: the idea of patching binaries or packages that aren’t in nixpkgs is daunting',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Keep it up!'),(1055,'1980-01-01 00:00:00',5,'en','979176949','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','Musician','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Functional programming is better than imperative - and sadly, UNIX is imperative. Any step towards immutability is a win, and desired by me. ','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative systems management','Declarative systems management is the most important','Declarative systems management is the most important','Add simple LUKS and partitioning - I am using Ubuntu on my laptop for this reason - can\'t get it right on NixOS. Maybe I\'m too much of a n00b :(. \r\n\r\nRemove the imperative stuff, make it 100% declarative. Love Nix! ','I\'d try to use Docker to be able to have declarative everything, but it\'d be awful. ','','','','','','','','','','','','','','','','','','','','N','Haven\'t had the need to','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I am too tired of having \"dirty\" states on my Linux machines, and the declarative nature of NixOS solves this. ','Y','','Y','','','','','Declarative','','','Some tutorial or easy way to setup partitions and LUKS on a laptop. I can\'t get it to work, and am sadly using Ubuntu with Nix package manager. ','','Y','','','','','','','Y','','','','','',''),(1056,'1980-01-01 00:00:00',5,'en','1020874823','A5','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted a package manager that would release me from cabal hell.','','Y','','','','','Y','','','','Y','','','Y','Y','','','Y','','A large repository of packages (nixpkgs)','Declarative package management','nix-shell, being able to quickly set up an environment with exactly what I need','Currently nix-env is broken for me and people on IRC told me it\'s basically deprecated and I need to learn about nix flakes... Also nix-env uses way too much memory when doing anything, and the command line options are obscure and hard to learn. The documentation also needs work. The \"options search\" on nixos.org is great, but now it\'s hidden in the footer?! (Who thought that was a great idea?)','Not sure. Void, Fedora? (I\'d say Guix, but Guix wouldn\'t exist if Nix didn\'t.)','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same as Nix...','Y','','','','Y','','Personal laptop','','','','','','Y','','','','','','','','','Y','xmonad','','',''),(1057,'1980-01-01 00:00:00',5,'en','1174905768','A1','A4','male','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','To have reproducibility for our toolchain, and have the guarantee that our build system will run the same across machines, wether they are developer workstations, on prem servers or cloud infrastructure.','','Y','','','Y','','Y','Y','','Y','','','','','Y','','Y','','','Reproducible environments','Extensive package collection ','Versatility ','Make the Nix language cleaner/more accessible, and allow Nix to replace Make.','I would use Guix, or if that didn\'t exist I would compile dependencies from source, and rely for distribution for base packages and libs.','','','','Y','','','','','','','Y','','','','','','','','','N','No use case for that','N','N','If I wanted to work with VM or servers, but I work at the container level.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The docker image production tool.','None','Keep on working on this great project!'),(1058,'1980-01-01 00:00:00',5,'en','1126102418','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','Y','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(1059,'1980-01-01 00:00:00',5,'en','303384301','A5','A4','male','','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','cabal2nix','Y','','','','N','I don\'t have a nixpkgs branch checked out and I don\'t know the process for contributing.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','','','','','','Y','','','','','','','','','','xmonad','','',''),(1060,NULL,1,'en','1953984124','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1061,NULL,1,'en','1071254577','A1','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1062,'1980-01-01 00:00:00',5,'en','470679796','A5','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','','Y','','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(1063,'1980-01-01 00:00:00',5,'en','1689110991','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I\'ve learned of Nix & NixOS a long time ago and right away I wanted to give it a try. Unfortunately, time is scarce and there was always something else getting in the way. Finally, at my new company we use Nix to setup reproducible environments for everyone and I finally got to try it. Now I use it not only for work, but I started using it for University, and now I\'m learning more so I can build my own projects with it.','','Y','','','','','','','Y','','','','','Y','Y','Y','','','','Peace of mind','Ease of installation','Reproducibility','','Good old APT, Cargo, chicken-install, etc','','','','','','','','','Y','','','','','','','','','','','N','I still don\'t know enough. I\'m just now in the process of learning how to write my own derivations to build projects.','N','N','Reproducible system configuration, of course! I\'m just waiting for the time I know enough to be able to confidently make the switch.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1064,NULL,1,'en','1889733503','A5','A3','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1065,'1980-01-01 00:00:00',5,'en','1080864008','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted to write a script for my old Void system which would automatically install and configure my system. While researching ways to do it, I came across Nix and NixOS\'s ability do to just what I wanted. I have in instantly and never looked back.','','','','','','','','','Y','','','','','','Y','Y','','Y','','Immutability','Declarative nature','Flakes :)','Improve the fetching mechanism, like the number of parallel fetches and smarter lookup (maybe provide a list of available NARs as a top-level NARInfo file, though I\'m still questioning the security of that).','Probably xpbs or pacman still.','','Y','Y','Y','Y','','','','','','','','','','dream2nix, yarn2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Same as the Nix story.','','','Y','','','','','Declarative nature','Easy testing of configs','Fast setup','Automatic inputs passing to _module.args.','Probably Void or Arch.','Y','','','','','','','Y','','','Also sway for gaming and testing wayfire.','Home manager. ','Flake-utils-plus. It\'s great at what it does but there\'s too much abstraction for my taste.\r\nKind of same story with flake-utils, but I still use it in some devshells.','Great work bringing Nix to its current state! Seeing more and more companies adopt it brings me hope that I can one day work full-time using Nix.'),(1066,NULL,2,'en','1907003576','A5','A2','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I\'m a web developer by day and a university student by night, so my development workflow involves jumping between several competing interpreters/compilers/tools when working on different projects or services. Most tools to manage multiple conflicting PHP versions, for example, are incredibly clunky and end up causing more trouble than giving up and doing things in super quick \'n\' dirty or inefficient ways (like running a separate Docker container for each tool). At work this has led to serious configuration drift, where everyone on my team has their own unique little workarounds and nobody can actually help a new dev get an environment set up because of how bespoke everyone\'s package management solutions are.\r\n\r\nI discovered Nix when I heard it advertised as a solution to these exact problems. I first started using it as a way to run one-off commands with `nix-shell` for packages I couldn\'t (or didn\'t care to) install, but then dipped my toe into using it more for dev environments and package management. This has worked out wonderfully, and I\'ve even started using NixOS on my personal desktop and homelab to make sure all the machines I depend on are reproducible with declarative configuration.','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducible/isolated package management - no more glibc linker errors!','Declarative configuration - having everything in /etc/nixos/configuration.nix rather than a million different config files spread across the root partition is immensely useful','The Nix Language - far more powerful than anything bolted on to YAML/JSON','The ecosystem\'s movement towards flakes and the experimental nix command is (in my opinion) a big step forward, but has definitely fractured the community a la Python 2/3. There\'s now Two Ways to do everything and despite most people on r/nixos or in the general community encouraging people to switch to flakes, most of the documentation for Nix I see only mentions the older `nix-shell` and `nix-build` commands with no mention of flakes whatsoever.\r\n\r\nIt would also be nice to make nixpkgs.lib an actual documented standard library for the language. It\'s always annoying to find some function performing some pretty core functionality to the language (mkIf for example), but not be able to find it documented anywhere other than the nixpkgs source - good luck getting any Google results for most of them, either. This would also be handy if you want to make a flake that\'s not dependent on nixpkgs, but still want all the handy lib functions.\r\n\r\nFinally, static typing in the Nix language would be pretty tight. But that would have to be a pretty big magic wand. ','Before Nix, I used Arch Linux and its built-in package management via the AUR/pacman. That worked out well enough for just installing/upgrading packages and didn\'t break as often as people like to joke about, but I would still dearly miss all the features that Nix has spoiled me with.','','','','Y','Y','','','','','','','','','','','','Y','','','N','Someone else always manages to beat me to it! Most software I\'m experienced enough with to try packaging is already in Nixpkgs, and anytime there\'s an update someone gets a PR merged within a day or two.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1067,'1980-01-01 00:00:00',5,'en','817785519','A5','A4','-oth-','','','','','','Y','','','','','','Y','Y','','','','','Y','','','','','','','','Y','Y','Y','Y','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1068,NULL,NULL,'en','1493820784',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1069,'1980-01-01 00:00:00',5,'en','1151870939','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Accidentally stumbled upon NixOS when searching for Gentoo content. It was a long time ago.','','','','Y','','','Y','','Y','','Y','','','','Y','Y','','Y','','Flakes','Reproducible environments down to last bit thanks to fixed-output derivations','Overlays','I wish Nix had more APIs to integrate its system into whatever I want, like Hydra does with Perl','Docker and a lot of pain. Eventually I might\'ve tried to reinvent Nix on my own, but far less detailed.','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','For fun','A3','Ah, finally, an operating system that can be reinstalled without spending MONTHS restoring configs.','Y','','Y','','','Y','Personal laptop','Reproducible configuration','Module system that allows to share reusable snippets','The ability to directly compare systems to each other with nix-repl (used several times in my PRs to nixpkgs to prove that some changes are backwards compatible)','Not much comes to mind right now.','Gentoo. I use patched software on my systems and only Gentoo would allow me to mix-and-match software that skillfully, and even then it would need some patches to Portage.','Y','','','','','','','','','','sway','naersk','NixOps - too clunky and treats machines like pets instead of cattle','NixOS is awesome and I\'m glad to be a contributor to this. Thank y\'all for existing'),(1070,'1980-01-01 00:00:00',5,'en','1222954893','A3','A4','male','','','','','','','Y','','','Y','Y','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Tired of Debian unstability on updates','Y','Y','','','','','Y','','Y','','','','','Y','','','','Y','','','','','','APT','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Tired of Debian updates unstability','Y','','Y','','','','','','','','','','Y','','','','','','','','','','No DE','','',''),(1071,NULL,NULL,'en','701773234',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1072,'1980-01-01 00:00:00',5,'en','1769620011','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I heard about nix from the Haskell community, and I like declarative, deterministic build systems.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','cross-language dependency management','reproduceable builds','easy rollbacks','I dunno, maybe more integration with dhall?','Probably some horrible containerization. I barely know docker.','','','','','Y','','','','','','Y','','','','cabal2nix, yarn2nix','','Y','','','N','At this point, I almost never encounter software I want to use that\'s not already in nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Because I liked the idea of a distro built on nix','Y','','','','','','','','','','','','Y','','','','','','','','','','xmonad','cachix','',''),(1073,'1980-01-01 00:00:00',5,'en','1573287922','A5','A5','male','','','Y','Y','','','Y','','','','Y','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','As a strategy for reproducible build / runtime environments for a bunch of legacy apps, running on a set of similar but different Linux distros & versions.','','Y','','','','','Y','','','Y','','','','','Y','','','Y','','reproducible runtime environments, in general','NixOS as a daily-driver dev platform','playground for CI/CD, containerization of apps','Make flakes non-experimental already!\r\n\r\nMore consistent / uniform support for \"2nix\" tools and build environments. Moving from one language to another is a jarring experience.','don\'t know','','','','Y','Y','','','','Y','','','','','','mach-nix \r\nopam2nix \r\n','','Y','','','N','I tried once... it got bogged down in a bit of red tape, and I never went back. (https://github.com/NixOS/nixpkgs/pull/134605). Mostly I just got busy on other projects though, I\'m not blaming any of the maintainers.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted a dev machine that was (1) easy to keep up-to-date, and (2) let me have usable environments for both legacy & new app development. Moved from Arch, which met first need, but not second one.','Y','','','','','','','reproducible build and runtime environments.','','','flakes everywhere. let\'s move on past experimental already!','Arch Linux, probably','Y','','','','','','','','Y','','','','hydra -- it\'s very nice, but I wanted something with good Gitlab CI integration, so I am using gitlab-runner instead.','you are awesome! thank you for Nixpkgs & NixOS!'),(1074,NULL,1,'en','2066742468','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1075,'1980-01-01 00:00:00',5,'en','1154515067','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Nerd','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','People on Twitter thought it was neat.','Y','','','','','','Y','','Y','','','','','','Y','','','Y','','Single configuration site','Rollbacks','Avoiding dependency hell','Better documentation for writing packages','Brew on macs. Arch elsewhere, with a pile of bash scripts to deploy. ','','','','','','','','','','','','','','','','Y','','','','N','The documentation for writing packages makes me unsure of what I’ve written is good enough.\r\n','Y',NULL,NULL,NULL,NULL,'A2','','Y','','Home Server','A3','I tried it on macos and it seemed cool, but packages available were limiting. I have a knack for destroying linux installs on my desktop. ','Y','','Y','','','','','Stability','Rollbacks','Single point of configuration for services','A lot of home-manager should be integrated. The nix language is needlessly weird.\r\nFlakes needs to be better documented as it’s mentioned _everywhere_ if you look for help online. ','Arch on the desktop since it’s basically for tinkering. \r\n\r\nI’ve used Debian stable before as a home server because it’s typically solid. ','Y','','','','','','','','Y','','','Home-manager\r\n\r\nI’ve tried to use Darwin-nix but it’s a bit broken. ','I stopped using it on macos until recently because of the lack of packages. ','Nix is clearly a great idea, but it’s rough around the edges and has been for years. I almost expect someone to come in and eat your lunch. '),(1076,'1980-01-01 00:00:00',5,'en','1475511756','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I wanted a reproducible dev environment.','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','declarative configuration ','nixpkgs','reproducibility ','add features from Flox (in particular, shared store/profiles)\r\n\r\n','Guix, probably ','','','','Y','','','','','','','','','','','poetry2nix','Y','','','','N','I don\'t have enough free time after work :)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I wanted an OS that\'s reproducible and easy to manage','','','Y','','','','','declarative configuration ','reproducibility ','nixpkgs ','add a beginner-friendly UI to make it easier to recommend to others','Ubuntu, probably ','Y','','','','','','','Y','Y','','xmonad','Niv\r\npoetry2nix\r\nnixfmt\r\njupyterWith','',''),(1077,NULL,4,'en','208859512','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','reproducible builds','declarative sys/home config','cli package manager','for the love of all that’s holy, add documentation','pacman, docker, cabal/stack (directly)','','','','Y','Y','','','','','','','','','','cabal2nix\r\nstack2nix','Y','Y','Y','','N','undocumented conventions of nixpkgs','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','declarative sys/home config','Y','','Y','','','','','declarative system config','declarative user config','','documentation ','arch','Y','','','','','','','Y','','','i3','','',NULL),(1078,NULL,NULL,'en','559416249',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1079,'1980-01-01 00:00:00',5,'en','1894458505','A4','A2','fem','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','work wants reproducible dev envs','Y','Y','','','','','Y','Y','','Y','','','','','Y','','','','home manager','','','','add static types to the nix language\r\nmore youtube tutorials / better documentation','','','','','','Y','','Y','','','','','','','','haskell, node, purescript 2 nix','','Y','','','N','knowledge','N','N','youtube video tutorials',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home manager','nix-env','Nix is still too hard and a time sink but I hope this will change.\r\nNix is a game changer and I don\'t want to go back to apt, npm and all that. But often I have to because I get stuck.\r\nI hope the nix community will continue to grow. Thank you all for your work!\r\nNo static types is really bad. If you know the benefits of modern type systems (like typescript, scala, haskell, purescript) programming in nix language is a pain.'),(1080,NULL,1,'en','359435172','A2','A5','-oth-','','','','','','','','Y','','','','','','','Y','','','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1081,'1980-01-01 00:00:00',5,'en','543790094','A5','A3','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Personally: I was previously using Arch Linux with an elaborate series of Bash scripts that I wrote to build system packages and manage my three computers that way. I eventually came to the light of Nix as a better solution.\r\n\r\nProfessionally: It solved pain points that my SRE team was dealing with regarding consistent tooling across local environments (Linux and Mac) plus CI/CD pipelines on GitLab. Building Docker images with a Dockerfile more or less worked well enough for CI/CD, minus obvious reproducibility concerns regarding OS package managers and so on. However there was a big gap for local development, e.g. ensuring that all of us were using the same version of terraform and kubectl. Nix filled the gap in my teams toolset nicely, but the learning curve introducing it has been the biggest detriment. Nix is great, but the documentation and learning path need a lot of polish.','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','Y','','Flakes (e.g. input declarations, lock files, consistent flake.nix schema, and certain use cases like needing an old revision of nixpkgs to build an older kubectl)','Docker image building','Local development tooling and parity with Docker images built via CI/CD','1. Add: LOTS of polish around documentation, learning, and stability. Using Nix professionally is a HUGE gamble due to this, which is frustrating because minus the complexity and learning curve it solves some huge pain points that every SRE style team faces.\r\n2. Add: some missing use cases that Flakes overlooks, such as using a parent flake and sub-flakes in a monorepo (which behaves unexpectedly/borderline broken) \r\n3. Remove: imperative environment management such as nix-env\r\n4. Improve: better nixpkgs PR and issue triaging. I\'ve had a few PRs linger for ages without attention despite being well polished and mergeable. Obviously this is going to need a wand with a power level of over 9,000 to fix.','Dockerfiles and various project-local-env style tooling such as nvm','','','','Y','Y','','','','Y','','','','','','None currently, because my SRE team deals more with existing tools (e.g. terraform, kubectl, jq, and so on) as opposed to building our code. But I think 2nix tools are hugely important and deserve more attention.','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','To replace my homegrown automation built on top of Arch Linux. Basically I wrote some scripts to package my config into Arch Linux system packages and push them to an S3 repo from GitLab CI, then I would do \"pacman -Syu\" to apply my config to each of my computers. This actually worked pretty well, but once I got over the learning curve of Nix I decided Nix was a better solution than my not-invented-here approach.','Y','','','','','','','Infrastructure-as-code style reproducibility across machines','','','','','Y','','','','','','','','','','Emacs (EXWM), the one true OS','','','Please focus on polishing and improve the learning curve, documentation, and general onboarding experience for professional DevOps, SRE, and app development use cases before worrying about shiny new features. It\'s hard to introduce Nix at work and convince teams to adopt it because of this. Nix is going to be introducing several new paradigms at once to a lot of people (e.g. functional programming and reproducible builds), so the learning curve is inherently high even in the best cases. The speed that Nix is evolving at (e.g. Flakes vs pre-Flakes) and the non-obviousness of how to do things coupled with lacking learning resources is a big hurdle to overcome. If you get more professionals to use Nix, they\'ll contribute back to the community and advocate for Nix to coworkers, new employers, and so on.\r\n\r\nI\'m really looking forward to content-addressable derivations, but I really think the above needs to be dealt with and Flakes need to have some rough edges and missing use cases addressed before you add even more shiny new things into the mix. Please get Flakes into a completely polished state so that they can be the \"one true way\" to do things moving forward with. I don\'t want Nix to end up in a Python 3 situation and shoot itself in the foot.'),(1082,NULL,1,'en','1270394159','A5','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I started using NixOS initially just for fun. It now runs my home server (just a few basic services, nothing complicated), and I use nix flakes for any projects I can. Flakes have been super useful for getting complicated latex documents to compile properly across systems.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','reproducible build environments','nixpkgs is huge','declarative system config','have all documentation updated to the new nix command, and make the new nix command the default, and generally just get everything in sync with that','guix package manager on a fedora system','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','Anything I\'ve wanted done is super hard to do in a way that\'s good enough, and super easy to do to make work on only one system. I think most low hanging fruit around the things I use has been picked. Also, I\'m still pretty new to everything and have only felt like I really understand what\'s going on in a derivation for the past month or so. I also expect that later I\'ll discover I didn\'t actually know what was going on yet and reset that counter.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I mentioned NixOS already in my Nix story (whoops), but I started using NixOS because it looked fun. Turns out I love it and it now runs on my home server and my work laptop.','Y','','Y','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1083,NULL,NULL,'en','1457315874',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1084,'1980-01-01 00:00:00',5,'en','1798260829','A2','A3','male','','Y','','','Y','Y','','','','','Y','','','','','','','Y','','','Y','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I got tired of system configuration being scattered all around / and having to dip in dozens of configuration files while keeping them coherent to set up computers. ','Y','Y','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','Determinist','Centralized & versionable configuration','Reproductible','(I) The whole CLI; (ii) maybe using an anneau existing language instead of Nix’s “JSON-Haskell”. ','Guix I guess?','','','','Y','','','','','','','','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','','','','','','Y','','','','','i3','home-manager','',''),(1085,'1980-01-01 00:00:00',5,'en','1863658196','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','After switching to NixOS and having write some missing packages I needed','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','building documents: articles, slideshows etc.','declarative configuration','reproducible environments','package customisability','Make Nix strongly typed and speed up the evaluation even more.','pacman and PKGBUILD','','','','Y','','','','','','','','','','','cabal2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A5','Two words: NixOS options. A friend told be about NixOS, I opened the project website and was blown away: there\'s an option for everything! With documentation embedded! I can rollbacks and it\'s systemd, so I can carry over my services too. One night we sat in front of a PC and went though the installation: very smooth compared to the Gentoo night. I moved my configuration from Arch to NixOS some time later and never even bothered to try other distro ever since.','Y','','Y','','','','','declarative configuration','more declarative configuration','rollbacks','Make nixos-rebuild output for humans: diff package versions, show an ETA and progress bar.\r\nMake evaluation go faaaasteeer.','A bunch of crazy idempotent shell scripts to automatically build my system','Y','','','','','','','','','','none+bspwm','','',''),(1086,NULL,1,'en','2093200601','A5','A4','male','','','','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1087,'1980-01-01 00:00:00',5,'en','1636470944','A2','A4','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Was looking to migrate away from Homebrew, to something more reliable.','Y','','','','','','Y','','Y','','','','','Y','Y','Y','','','','Isolation & replication','rollbacks','extendability (yet it\'s a bit complex)','Maybe the syntax/language, the learning curve is very steep. Also, it\'s very hard to find top-quality content for nix, especially for beginners. Docs although great, but it\'s a massive wall of text, some guides, how-tos, etc… can be useful too.\r\n\r\nAlso, extending packages is not that easy there are multiple ways to do it & again not easy to figure out because there is no enough learning content on these things.','','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'N','Y',NULL,'I tried to install it on an old Macbook Air that I have, too many issues with setting up Bluetooth, Wifi, sound, etc… ','Maybe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager, nix-darwin','',''),(1088,'1980-01-01 00:00:00',5,'en','1798067801','A3','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Customer Service Agent','','Y','','Y','','','N','Y',NULL,'It\'s a little bit hard, documentation can improve. ','Curiosity, Nix and NixOS seem to be the coolest package manager/distro out there.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'The first time I got NixOs setup, it just stopped working on me for no reason and had no way of figuring out why it happend or how to solve it. The problem was that after some time of having a GUI open, it would just stop working, black screen, no tty and the only way to fix it was to reboot the computer, switched to Void after that, but it\'d be cool to use NixOs.','Better documentation, more yt content on it. Generally, more people using it and better documentation like an official NixOS wiki',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Your project is awesome! It\'s definately not for everyone, but it really is great!'),(1089,'1980-01-01 00:00:00',5,'en','1044899746','A3','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','Y','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I heard about Nix/NixOS on the Haskell subreddit. I started using it to create reproducible development environments (initially switching from Python\'s venv).','Y','','','','','','Y','Y','','','','','','','Y','','','Y','','nix-shell','','','','Docker','','','','','Y','','','','','','Y','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I heard about Nix/NixOS on the Haskell subreddit. I started using it because of the possibility of using the same configuration across different computers easily. Today I have no fear of formatting my computers and rebuild them from the ground up and have the exact same setup in a few hours.','Y','','Y','','','','','quick generation switching','','','','FreeBSD','Y','Y','','','','','','','','','xmonad','home-manager','',''),(1090,'1980-01-01 00:00:00',5,'en','727119943','A5','A3','male','','','Y','','','Y','','','','','Y','','','Y','','','Y','Y','','','','','','Y','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The idea of completely reproduceable environments + builds was an instant sell. In particular, completely reproduceable development environments.','Y','','','','','','Y','Y','Y','','','Y','','','Y','Y','Y','Y','','Reproduceable builds, including high-trust caching of these','Output closures (that way all dependencies are accounted for)','Reproduceable environments','I\'d make the Nix language easier to use. Too many seemingly magical things, terrible error messages / stack traces, no types(!) and therefore not much confidence when it comes to e.g. refactoring.','For reproduceable builds, there\'s not much else out there (docker is *not* reproduceable, but it does provide an equivalent to output closures). For reproduceable environments, I guess a very carefully-crafted readme with instructions(?)','','','','Y','Y','','','','','Y','Y','','','','https://github.com/NixOS/cabal2nix\r\nhttps://github.com/nix-community/poetry2nix\r\nhttps://github.com/nix-community/bundix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Ansible works but isn\'t reproduceable or provide an easy way to back out changes. NixOS on the other hand... *chef\'s kiss*','Y','Y','Y','','','Y','','Reproduceable system configuration, including building + copying entire system closures','Rollbacks!','Easy configuration despite having to use the Nix language, including ease of writing your own modules','Ability to swap out the process orchestration system (systemd). I actually really like systemd but I can\'t experiment with other software like it while still using NixOS.','For system configuration I\'d use Ansible to configure Debian or some other small-ish distro - it\'s not necessarily reproduceable but it\'s kind of declarative (sort of). ','Y','','','','','','agenix','','','','kodi','agenix, flake-utils, comma, home-manager, nix-direnv, nixos-generators, nixpkgs-fmt, nix-darwin, niv (though I prefer to use flakes where reasonable)','mach-nix (dropped for poetry2nix)','Keep up the good work - Nix truly feels like a tool from the future that we mere mortals were blessed with using today. I really don\'t see any other viable alternative that fills all of my use-cases. Flakes was a wonderful decision by the way - way better than channels.'),(1091,'1980-01-01 00:00:00',5,'en','196021805','A5','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','Engineer, Silicon','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','It did a better job of multiple software installs than my bespoke shell scripts from hell + GNU stow did. ','','Y','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','','Y','Building Chips. ','reproducibility (by measuring inputs)','robustness (hard to break, easy to fix)','abstraction (allows using fixed points to piece together a variety of toolchains and build the same thing with them)','Add better profiling, refactoring and debug tools. ','Docker images and terrible makefiles. ','','','','Y','Y','Import from derivation','Y','','Y','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','','Y','Y','Y','Y','','Y','','Declarative configuration','Configuration (like user) information across machines','','Remove systemd. Add qubes-like containerization of applications. ','LFS? Arch? ','Y','','','','','Y','','','','','xmonad','Simple NixOS mailer','',''),(1092,'1980-01-01 00:00:00',5,'en','1059183919','A2','A2','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I started out with GNU/Linux back in 2016 while studying my undergraduate computer science degree. Within a year I had settled into Arch Linux. Which was fantastic for me. I had enough control which Mint and Fedora did not afford me.\r\n\r\nAs much as I like Arch and the AUR, I found that packaging software for the distro was rather cumbersome. Alongside this, it felt wasteful to have to add a package to the AUR which was customised to my liking. Alongside this I started to need different versions of software to complete my work.\r\n\r\nAt this point I considered NixOS but decided it was too far removed from what I knew. At the start of 2021 this led me to Gentoo. I liked gentoo a lot. So much configuration was great. When it came to synchronising my systems, it was a nightmare! Lots of the software I was packaging myself and it became too cumbersome. This led me to Nix, which despite the learning curve seems to have solved lots of these problems. I did have a hard choice between Nix and Guix ','','Y','','Y','Y','','Y','','Y','','','Y','','Y','Y','Y','Y','Y','','Declarative systems ','Flexibility and modularity of packages: I can modify what is compiled in easily enough ','User friendly packaging system ','Stabilise the new nix command! As well as document how to do the same things with the old commands. More importantly, improve the documentation and the wiki. I find lots of information comes from reading peoples blogs and the package source. For me this isn\'t huge but I would struggle to recommend others did it ','Guix','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','As before ','Y','','Y','','','Y','','','','','','','Y','','','','','','','','','','I3wm','-','-','Thanks for the great project. Loads of cool features. There is always a way of doing something really neat. Sometimes it takes a day or so to find that because of lack of documentations. So that would fix a large time sink! '),(1093,NULL,1,'en','1297310102','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1094,NULL,NULL,'en','1103912264',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1095,NULL,1,'en','347445606','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1096,'1980-01-01 00:00:00',5,'en','31991509','A5','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I distro-hop a lot and have converted several shell scripts to nix-shell scripts that include all dependencies and code. I’ve also played a lot with a nixos configuration.yaml that can easily switch between different desktop environments and install the appropriate packages automatically for them. Next will play with nixos on my servers. ','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Self contained dependencies with nix-shell scripts','Repeatability ','Easily configuration of multiple machines ','As a moderately experienced developer I found the nix language unintuitive and difficult to learn. Also documentation on how to work in nixpkgs is hard to find. ','Shell scripts and configuration management tools like ansible','','','','','','','','','','','','','','','','','','','','N','Documentation ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Just wanted to use a flexible configuration yaml that I could switch between desktop environments easily by changing a single variable ','Y','','Y','','','','','','','','','','Y','','','','','','','Y','Y','Y','','','',''),(1097,NULL,NULL,'en','369582908',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1098,'1980-01-01 00:00:00',5,'en','1273721942','A5','A3','male','','','','','','','','','Y','','','Y','','Y','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Needed to do development on my nixos machine outside of docker containers. It is a really nice build tool.','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','A universal build tool for any programming language','Declarative and pure build recipe','Inputs are pinned','I would change the Nix DSL to another functional language. One that is more popular, easier to learn and has more documentation like haskell.','Language-specific build tool and docker containers','','','','','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was looking for a next-generation OS in 2018. I was sick of traditional distros breaking from updates.','Y','','','','Y','Y','','A GNU/Linux distro that doesn\'t break from updates i.e. reliability','The ability to declaratively customize my distro installation without state i.e. clean configuration','The ability to mix multiple versions of software at once e.g. distro base is based on nixos-21.11 but discord is pulled from nixos-unstable','I would change the Nix DSL to another functional language. One that is more popular, easier to learn and has more documentation like haskell','Fedora Silverblue','','','','','','','','','','','i3','* flake-utils-plus\r\n* home-manager\r\n* impermanence\r\n* nur','',''),(1099,'1980-01-01 00:00:00',5,'en','1147356447','A3','A3','male','','','','','','','','','','','Y','','','Y','Y','','','Y','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Closeness to haskell, fp, and reproducibility','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','Y','','Reproducibility','Environments to go','Deployment','More support for nixops with flakes','Guix','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','N','Something to contribute','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because I wanted to use nixops','Y','Y','','Y','','','','','','','','Gui','Y','Y','','','','','','Y','','','','haskell.nix','Llvmhs (has some nix)\r\nNiv','Thanks!'),(1100,'1980-01-01 00:00:00',5,'en','2105820915','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','Y','','','','','','','','sway','','',''),(1101,'1980-01-01 00:00:00',5,'en','247254570','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Reproducible builds, requirements management, reproducible system, easy rollback to prior generation, easy to get started with, powerful as I learn more.','','Y','','','','','Y','Y','','','','','','','Y','','','Y','','Reproducible System','Reproducible Builds','Requirements Management','Add more people merging pull requests to nixpkgs.\r\nChange - make it easier to learn everything (magic wand, remember?)\r\nRemove imperative nix-env usage.','LFS with build scripts, I guess, but I don\'t feel comfortable enough to be using LFS yet, so I would still be on Ubuntu.','','','','','','','','','','','','','','I rolled my own once, haven\'t made this a big thing with NixOS because this is only personal projects.','','Y','','','','N','I need to get better at knowing how Nixpkgs works because I don\'t want to waste reviewer\'s time with crap PRs.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Reproducible builds. I thought we covered this.','Y','Y','','','','','','Reproducible System','Easy system rollbacks','Clean compute environment','Add more user support.\r\nChange: make it easy to learn.\r\nRemove: again, nix-env imperative usage','Ubuntu or LFS','','','','','','','manual deployment','','','','i3, parents have KDE Plasma though','nixpkgs','','Slava Ukraini!'),(1102,'1980-01-01 00:00:00',5,'en','1455994279','A1','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A3','I\'m using NixOS, so Nix it is.','','','','','','','Y','','','','','','','','Y','','','Y','','environment management (nix-shell)','','','','','','','','','','','','','','','','','','','','Y','','','','N','The process of making a valid PR to Nixpkgs seems just so complex, and all my overlay changes are just version bump','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','I want to give Linux desktop a try (from local Windows + remote Linux setup). Yet my experience with Arch/Ubuntu was that overtime the configuration/library tend to rot due to updates, especially if you manually install/uninstall some cut-edge libraries from time to time. The reproducibility/immutable/declarative config of NixOS seems a potential solution to this.','Y','','','','','','','OS management','Home management (home-manager)','','1. Document sits in between class 101 and reference.\r\n2. OS configurations so that I can sacrifice reproducibility/immutability in exchange of certain software that will download binary \"just work\", especially those binarys compiled with the assumptions that certain \"basic\" .so is available under /lib or /lib64.','Arch or Ubuntu','','','','','','','','','Y','','','home-manager','','I hope NixOS developers could consider the options to expose mutable /lib and /lib64 so that binary downloaded through software just works™ (for example, some java dependency, npm dependency, extensions of vscode and/or remote UI function of JetBrains\'s IDE family)'),(1103,'1980-01-01 00:00:00',5,'en','247694425','A5','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','','','','','','Y','','','Y','','','','','','','','','','','','','','','','Y','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','','','','','','','','','','','','','','','','','Y','Y','','','','',''),(1104,NULL,1,'en','991723259','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1105,NULL,2,'en','499212944','A6','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I was looking for a better way to manage os config and found nix and nixos interesting','','Y','','','','','Y','','','','','','','','Y','','','','','Different versions of package ','Declarative config file ','Ability to rollback ','FHS support ','Debian, asdf etc','','','','','','','','','','','','','','','Mach-nix','','','','overrideargs','N','Lack of time ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1106,'1980-01-01 00:00:00',5,'en','180603944','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','was interested in reproducible configs, used home-manager on WSL for a long time','','Y','','Y','Y','','Y','Y','Y','Y','Y','Y','Router','','Y','Y','Y','Y','','nixos module system','reproducible shell environments','','faster eval, rust implementation, more expressive type system, nix on windows','perish the thought','','','','Y','','','','','','Y','','','','','https://github.com/Fuuzetsu/jenkinsPlugins2nix','Y','','','applyPatches','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','had used home-manager on WSL for a while and wanted more','Y','Y','Y','Y','','Y','Router','modular and portable configuration','reproducible, immutable system profiles','mono-repo for the entire OS','basically the vision of SpectrumOS, maybe built on Genode','I don\'t know - NixOS has it\'s rough edges but nothing else comes close to being as good','','','','','','Y','','','','','Wayland/Gnome/Pop-Cosmic','home-manager, nixpkgs-fmt, rnix-lsp, niv, direnv, lorri','flakes, nixops',''),(1107,'1980-01-01 00:00:00',5,'en','1135669045','A5','A3','male','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','','N','Y',NULL,'i didn’t feel comfortable with the language ','better understanding of the language ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'i didn’t feel comfortable with the language. too non-standard from the rest of the linux ecosystem. hard to introduce to others. ','mainstream adoption ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1108,NULL,1,'en','1081239328','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1109,'1980-01-01 00:00:00',5,'en','1087865759','A5','A3','male','','','Y','','','Y','Y','','Y','','Y','Y','','','','','','Y','','','','','','Y','','','','','Y','','','N','Y',NULL,'Couldn\'t figure out how to get certain things to work, specifically, setting up a build environment for a python package with multiple internal (private) dependencies.','Better documentation? Pretty subjective, I know, but I found learning nix\'s internals to be difficult due to the unfamiliar vocabulary.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'See my issues with nix.','If I became relatively proficient with nix.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','NixOS on ARM maybe?','I love the concept behind nix and the idea behind it. I don\'t think it needs to be as hard to introduce and approach as it seems to be today.'),(1110,'1980-01-01 00:00:00',5,'en','650124625','A5','A2','male','','','Y','','','Y','Y','Y','','Y','Y','','','','','','Y','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','','','','','Y','','','','','','','','Y','','','','','Isolation','Reproducibility','Declarativeness','Better documentation. Easy way to install old package versions','Language specific tools','','','','Y','','','','','','','','','','','','','','','none yet','N','Haven\'t needed to yet','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Liked nix package manager. Fed up with having unneeded packages on my system. Fed up with being unable to install packages because other packages required different versions of dependencies','Y','','','','','','','','','','','Debian','Y','','','','','','','Y','','','','','',''),(1111,NULL,1,'en','2016218151','A1','A4','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1112,NULL,3,'en','1441665234','A5','A3','male','','Y','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted better package management. In particular I wanted a package manager that used symlink-based installs, didn\'t have install scripts run as root, didn\'t have install scripts that then tend to have missing or mismatched uninstall scripts, unbrickable updates, rollback, etc. NixOS provides the best package management available.','','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','symlink-forest package management','declarative and (at least semi-) reproducible package environments (including the system environment)','whole-OS configuration','I would use a better language instead of the Nix language. Frankly, I think Guix is way better in that regard, but there are various reasons I use NixOS instead.\r\n\r\nWithout magically switching to a better language (especially a lisp!), I would at least magically add good, thorough, and thoroughly hyperlinked and searchable documentation for the language, standard library, etc.\r\n\r\nNext, I think Nix is too static. Often this is good, eg. packages statically resolving all dependencies. But often it would be better to allow more dynamism. It would be great if there were an option on packages for them to resolve everything statically in the nix store OR to dynamically resolve dependencies in their current environment (eg. a nix shell, a user environment, or the global system environment). This would especially be helpful for dynamic systems, eg. many packages require extra configuration up front to say which libraries are available, when sometimes it would be nice to load new packages dynamically. There are some packages where even configuration that is static from the point of view of running a program is included in a derivation\'s dependencies, such that minor configuration changes would require rebuilding many packages (eg. certain configuration of X11 come to mind, such as including non-standard keyboards requiring recompilation of all gui packages, including web browsers, office suites, etc).','I used to use Arch Linux on laptops and Debian on servers. I suppose I would likely still do that.','','','','','','','','','','','','','','','I want racket2nix, but don\'t have time to contribute to it.','Y','','Y','I have a number of local packages, some of which I\'m considering upstreaming. I\'m just not sure I want to commit to maintain them going forward. Also I plan to use Flakes as soon as they are non-experimental.','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same as with Nix. I tried Nix stand-alone briefly, but quickly switched to NixOS.','Y','','Y','','','Y','','Oops, I should have paid attention to the instructions better. See my responses for Nix. #3 (whole-OS configuration) is really a NixOS feature rather than a Nix feature.','','','See response for Nix. I want a better language, better language docs, and more optional dynamicism in packages.','Arch Linux and Debian probably.','Y','','','','','Y','','Y','','','Awesomewm',NULL,NULL,NULL),(1113,NULL,1,'en','1629925489','A5','A2','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1114,'1980-01-01 00:00:00',5,'en','1918581245','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was fustrasted with the fact that I had years of configuration managed on Ubuntu but I couldnt track its changes or where half of the config files are. ','','','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','Convienient Dev shells','Functional by design','Declarative configuration','Better documentation with more examples. Especially functions.','OS:Arch ','','','','','Y','','','','','','Y','','','','','Y','Y','','','N','Im scared I will get yelled at for sloppy implementation.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','sway','','',''),(1115,NULL,1,'en','1191031675','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1116,'1980-01-01 00:00:00',5,'en','1322208416','A5','A2','','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I saw the logo a few years ago, then read about the project and really liked the idea of declarative system management. Then I banged my head against the Nix language for a bit and after a lot of fighting there found it was way easier to bump package numbers. Also, I could manage ML stuff somewhat easier before I ended up like everyone else using CoLab.','Y','Y','','','','','Y','','Y','','','','Daily driver','Y','Y','Y','Y','Y','','Declarative system management','`nix-shell`s as a development shell','`nixos-containers`','I would make `nixos-containers` work really, really well. Writing docker stuff annoys me in a way that nix doesn\'t.','I\'d probably do most of my development in containers, and then use Ubuntu or Arch as a daily driver.','','','','Y','Y','','','','','','','','','','cabal2nix','Y','','Y','','N','I don\'t have very many packages where all 3 of these apply:\r\n\r\n* I care about this package a lot\r\n* This package is not in nixpkgs and actively maintained\r\n* I have time to maintain this package','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was on Ubuntu and my computer died. I wanted to switch distros since Ubuntu major version changes are nightmarish. NixOS did that. After a few bumpy months things got really easy.\r\n\r\nI stuck with NixOS in part because of how easy and painless upgrades/updates are compared to Ubuntu\'s nightmare mode update process.','Y','','Y','','','','','Declarative system management','Rollback','Easy update process','I would make flakes the default and update every system config to flakes. The update process is good, but it could be better, changing out channels feels awkward and imperative compared to just changing a version number and a hash.','Probably Ubuntu.','Y','','','','','','','','','Y','herbstulftwm','','`nixos-container`',''),(1117,'1980-01-01 00:00:00',5,'en','1954354429','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Got fed up with reinstalling macOS every year and losing my settings.','','Y','','','','','Y','','Y','','Y','','','','Y','Y','Y','Y','','Declarative system configuration ','Rollbacks','Development isolation','Make the language strong+static typed. Or even use Haskell or PureScript.','Don\'t know.','','','','Y','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','Y','','','','','','','','Y','','','','','','','Y','','','','','',''),(1118,NULL,1,'en','1714973985','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Technician','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1119,NULL,3,'en','288248156','A5','A4','-oth-','Non-binary','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was introduced to the ecosystem in 2015-2016 and started using NixOS as my daily driver some time after that, I don\'t quite remember, it was sometime after 2017. I enjoyed using the language to create packages so much that now I only use Nix to package and deploy my personal projects.','','','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','Declarative semantics','Nix Store','reproducibility','I would love to see the .drv file format standardized so that outside tooling can integrate more easily with Nix. For example, what if pip could create a derivation directly? That would be just amazing.','Flatpak or AppImage I guess?','','','','Y','Y','','','','','','','','','','mach-nix\r\nyarn2nix\r\ncabal2nix\r\ncomposer2nix','Y','Y','','','N','There are things in nixpkgs that I believe could be useful, but I either fail to package them, or someone does it before I can. So, it\'s not through lack of trying, it\'s more of lack of success','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was introduced to the technology in 2015-2016, and sometime after 2017 I tried out NixOS on my laptop and I haven\'t given it up since. There have been some bruises on the road but that\'s been my experience with every technology. ','Y','','Y','Y','','','','Declarative semantics','Atomic upgrades/downgrades','reproducibility ','GUIs! An \"app store\" for nix-env and one for managing configuration.nix. There are so many people that cannot use this ecosystem because it is bound to terminals and text editors, even though it\'s a superior technology.','Arch/Manjaro probably.','Y','','','Y','','','','Y','','','SwayWM',NULL,NULL,NULL),(1120,NULL,1,'en','1056373713','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1121,NULL,NULL,'en','1129268616',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1122,'1980-01-01 00:00:00',5,'en','1097026662','A1','A2','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','Y','Y','','','Y','','Y','','','N','N','I was trying to do personal chromium builds, but was taken back by its unholy amount of library dependencies. Very often it would break because I am using a rolling release distro, which has little care for this situation because it assumes everything is upstream. And I just randomly encountered Nix on reddit and was shocked because this was such an amazing novel approach but I have just never heard of it. So now I am mostly learning how to do things in the \"Nix\" way and hopefully some day to fully switch over.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','The idea of a declarative system configuration is very appealing and NixOS has very promising features, like a system that can be set up from just several files, or system wide rollbacks if an update broke. This is like portable dotfiles, but on steroids. Nix\'s potential also blends into NixOS really well: Nix makes software free from dependency hell possible and ensures replicable builds, which also fits really well in my use cases.','Y','','Y','Y','','Y','','Nixpkgs, a library of declarative packages','System rollbacks/generations','Flakes','A complete user-friendly guide to NixOS and a tree or collection of NixOS options. It is difficult to navigate around and explore what NixOS has to offer from a newbie perspective.','I would cry. But probably right now what I am using, Arch Linux or maybe Gentoo.','Y','','','','','Y','','','Y','','','Maybe flakes. This is a really good concept and I can\'t wait to see it getting merged to stable Nix.','I am way too amateur to answer this :D','I have faith in that quote from the thesis stating that NixOS will surely conquer the world. I am absolutely staying around for upcoming features and am excited to see what new directions you guys will lead this project, while I slowly progress myself away from the newbie catagory :D'),(1123,NULL,1,'en','57542316','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1124,NULL,NULL,'en','1635213343',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1125,'1980-01-01 00:00:00',5,'en','1938965098','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','I have some flake.nix files in work replated repos','A2','I saw it popular among Haskell coolkids for quite a while. Then, Ubuntu on ZFS failed to rollback for me and I switched.','Y','Y','','Y','','','Y','','','','','','','','Y','','','Y','','flakes','nix shell','the language being declarative and functional','Static typing. I really wish for Hindley-Milner types.','A git repo to assemble a bundle of config files and develop my own dotfiles management tool','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Answered to why I use Nix','Y','','','','','','','reproducible config across devices','rollback','`nix-shell -p` for me to try stuff and forget','The ability to manage credentials','Gentoo on desktop, Arch Linux on laptops','Y','','','','','','','','','','Wayfire','home-manager','','The community is a vital part of the ecosystem but is not asked about in this survey. From my perspective, it is more important than technology as the community seriously lacks contributors and media. Specifically, documentation, blogs, videos for the young generation, code reviewers, and evangelists.'),(1126,'1980-01-01 00:00:00',5,'en','158115229','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted Package manager to replace brew and have consistency with Linux dev env. Building containers. ','Y','Y','','','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','','','Reproducible','Wide selection','Fast installs','More explicitly stateless e.g. built in “erase your darlings”','Pkgsrc','','','','','Y','','','','Y','','Y','','','','','','Y','','','N','No need yet. I do have some things to push up eventually ','N','Y',NULL,'Complex install process','I just want a machine to start being nixos with no cruft and with automatic stateless design. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Love nix. Will eventually be moving my servers. '),(1127,'1980-01-01 00:00:00',5,'en','511491445','A5','A3','male','','Y','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted better package management. I wanted something that would do symlink forest installation, didn\'t run scripts as root, didn\'t have install scripts that would get out of sync with uninstall scripts, etc. And Nix had all of that and more.','','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','Symlink forest package management','(at least semi-) reproducible environments','package overrides','(1) I would magically change to a better language. IE basically a DSL within a more mature, documented language. And I would love for it to be a Lisp. I think Guix is a major improvement over Nix here, though Guix has its own problems, as well as much less momentum and a smaller community, so I\'m sticking with Nix for now.\r\n\r\n(2) Since the language isn\'t going to change, the next thing I would do is magically add thorough, thoroughly hyperlinked, and thoroughly searchable documentation on the Nix language, standard library, etc. Right now it\'s very difficult to discover language or library features, or even look up common features. What are all the options for stdenv.makeDerivation? It\'s really hard to find. I would like thorough reference material as well as better tutorials.\r\n\r\n(3) I would like more dynamic behavior as an option. Sometimes it\'s great that everything is statically resolved in the nix store, but there are often situations where it would be better to dynamically resolve things in the current environment (eg. nix shell, user environment, or the global system environment). Static is probably the right default, but it would be powerful to have options to install dynamic versions of packages. This would be particularly useful for programs that can dynamically load extra features, and especially for programs based around programming an interpreter (eg. emacs, awesomewm, etc).\r\n\r\n(3b) Somewhat different, but related, many packages essentially contain static configuration at build-time, which you can\'t reasonably configure if you don\'t want to build all dependent packages. A big example is xkeyboard-config, which I want to modify to include custom keyboard definitions. Eg. `setxkbmap` and other tools will only set keymaps defined in that package (when really it should be a runtime configuration option). There are workarounds (eg. `xkbcomp`), but they have downsides. But if I want to customize the xkeyboard-config package I have to recompile all gui programs, including web browsers, office suites, etc. That\'s not really feasible. This is a particular example that matters to me personally, but it\'s also an example of a broader issue. More dynamic behaviors are needed for many valuable use cases.','I would possibly rely on Docker more for development environments, as disgusting as that sounds. I would probably use a mix of Arch Linux on daily driver machines and machines that need fresh packages and Debian on most servers without NixOS.','','','','','','','','','','','','','','','I hope racket2nix gets better. I want to use it, but don\'t have time to contribute to it.','Y','','Y','I have several custom packages. Some are relevant to Nixpkgs and I have considered adding them, but I\'m not certain I want to commit to maintaining the packages over time.','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I tried Nix on Arch Linux for a while and quit largely because X11 programs from Nix wouldn\'t work with my Arch Linux xserver and vice-versa. I tried NixOS a bit at that point but had too much custom configuration that was difficult to get working on NixOS. At some point when it was convenient I took time to port my extensive custom configurations to a state that would work on NixOS. Taking time to port my various machine configurations to NixOS gave me time to improve some of my configuration infrastructure and share more, and doing it all in NixOS was very helpful in making more, as well as more audacious configuration libraries. I\'ve been very happy with NixOS compared to any other OS. That said, I think NixOS could improve in many ways, both fundamentally and superficially.','Y','','Y','','','Y','','The package management and environment features that I already listed about Nix generally.','Whole-system configuration within a programming language (even if it\'s a very poorly documented wonky language).','','See comments about Nix changes.','Probably Arch Linux on daily driver laptop and any machines that really need fresh packages, Debian on servers and other things.\r\n\r\nNixOS is a huge improvement vs Debian. NixOS on my main laptop is largely better but is not universally an improvement over Arch Linux, especially when it comes to NixOS lacking options for dynamic behavior.','Y','','','','','Y','','Y','','','Awesomewm','','Racket2nix, because I love and use Racket. When I tried it it made it part way, but wasn\'t something I could include in my system configuration.nix or nix-shell environments. I really want it to mature (or for a similar tool to be written) and provide a path for Nixpkgs to include the Racket package repository. If I had the time to contribute more seriously to NixOS, this project would be a priority for me.','Sorry if you get a duplicate of this. I had to quit near the end on my first attempt, and it timed out. I don\'t think it submitted anything, though.\r\n\r\nThanks to everybody who works on Nix/NixOS. It\'s really great, and clearly the best operating system that exists right now. It has many deficiencies, as all software does, which I often complain about because I want everything to be perfect. But it is an amazing, beautiful project.'),(1128,NULL,NULL,'en','1886329324',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1129,'1980-01-01 00:00:00',5,'en','1562867771','A1','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I can\'t remember! It was years ago and I\'ve forgotten everything from my life before Nix.','','','','','','','Y','','Y','','Y','','','','Y','Y','','Y','','Reproducible builds','Declarative system configuration','Large collection of packages','Static types (possibly gradual typing similar to Typescript?) and a language server implementation.','Guix, if that exists. Otherwise more containers, I guess.','','','','Y','Y','','','','','','','','','','I\'ve used node2nix in the past but haven\'t been super satisfied.','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I can\'t remember! It was years ago and I\'ve forgotten everything from my life before Nix.','Y','','Y','','Y','','','Declarative system configuration','Shared configuration between machines','Full history of running systems','Maybe more modular structure for building images for netboot and SD cards for servers and embedded devices? My current attempts are quite hacky.','Guix, if it existed. Otherwise Arch or Debian.','Y','','','','','Y','','','','','sway','I use home-manager to manage my user environment.','','Thank you for the great work on Nix! I can\'t imagine going back to anything less declarative or less reproducible'),(1130,'1980-01-01 00:00:00',5,'en','1136075699','A1','A5','male','','','','','','Y','Y','','','','','','','','','Y','Y','Y','','','','Y','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Curious was using Gentoo and Arch before and Nix was very different I like it a lot ','Y','','','','','','Y','','Y','','','','','Y','Y','','','','','declarative','reproducible','','better documentation and more examples','Arch with Ansible terraform','','','','Y','Y','','','','','','Y','','','','not yet','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','was very different ','Y','','Y','','','','','reproducibility','declarative','','more clear rolling updates','NA','Y','','','','','','','','','','i3','poetry2nix, home-manager','',''),(1131,'1980-01-01 00:00:00',5,'en','2065475032','A5','A4','male','','','Y','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','I run a personal VPS with an extremely wide variety of different self-hosted projects on it, and I am very particular about ensuring that they stay online. Some of the configuration to keep the older projects up is rather involved, and I have traditionally been terrible at documenting all of it. My server would quickly get into a state where I didn\'t remember what had been done to it and didn\'t have any way of finding out, resulting in painful amounts of downtime and configuration-by-trial-and-error any time I needed to do a significant upgrade or migration.\r\n\r\nWith NixOS I changed that pattern completely - I\'m able to define _everything_ in Nix and bring it all up on a local VM to ensure everything still runs before I deploy to my live server. It took a couple of weeks to get everything set up initially, but it gives me incredible peace of mind.','','Y','','','','','','','Y','','','','','','Y','Y','','Y','','Completely capturing my system\'s customization in one, auditable, readable place','The ability to deploy to a test VM to ensure my configuration is correct and working before it goes live','The ability to roll back a deployment if something goes wrong','DOCUMENTATION. MORE. BETTER. I wish I didn\'t so often have to resort to reading nixpkgs source code to understand what was going on.\r\n\r\nSmoother integration with language package managers (npm etc). The tools that exist are confusing and getting a new program\'s build up and running is often much too hard.\r\n\r\nI haven\'t figured out how to enable unattended upgrades from a nixops-managed server yet - that should be much easier than it currently is.\r\n\r\nNitpick: nixops deployments should be entirely configured via text files that can be stored in git - it\'s madness that I have to run a nixops command that changes binary files in ~/.nixops/ to do things like \"point nixpkgs at the newest release of nixos\".','There is no other solution (besides guix) that solves my particular problems in a way I can live with.','','','','','','','','','','','','','','','I don\'t even know what that means','Y','','','','N','shrug emoji','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','I answered all this stuff in the Nix section, the two are pretty much inseparable for me','','','Y','','','','','','','','','','','Y','','','','','','','','','','','',''),(1132,NULL,1,'en','1541997035','A2','A2','male','','','','','','','','Y','Y','Y','','Y','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1133,'1980-01-01 00:00:00',5,'en','1541833873','A5','A3','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I switched from Arch Linux because NixOS + Home Manager allowed declarative configuration for all my systems.','','','','','','','Y','','Y','','','','','','','','','Y','','Plaintext configuration files','System and and user environment configuration','Package and service availability','Documentation for all options in the NixOS manual or wiki.','Guix','','','','','Y','','','','','','','','','','','','','','','N','I do not use Nix except for system and user environment configuration on NixOS.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I switched from Arch Linux because NixOS + Home Manager allowed declarative configuration for all my systems.','Y','','Y','','','','','Plaintext configuration files','System and user environment configuration ','Package and service availability','Documentation for all options in the NixOS manual or wiki.','Guix','Y','','','','','','','','','','EXWM','Home Manager','Nix channels','Thank you!!'),(1134,NULL,1,'en','373597736','A5','A2','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1136,'1980-01-01 00:00:00',5,'en','364734949','A2','A5','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Haskell project that are not updated often rot way too fast. nix gave the promise of the ultimate antirot. \r\n\r\nI then used as brew replacement and sync my home dir with home manager ','Y','','','','','','Y','','','','','','','','Y','','','','','reproductibilty','easy tool testing','','use a lisp instead of nix language. ','docker/VM','','','','Y','Y','','','','','','','','','','cabal2nix','Y','','','','Y',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- niv\r\n-home manager \r\n','',''),(1137,'1980-01-01 00:00:00',5,'en','1421665022','A5','A5','fem','','','','','','Y','Y','','','','Y','','Y','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Stumbled upon it. I had always wanted to be able to configure mu entire OS declaratively but couldn\'t articulate that well enough to find it via a search engine..but as soon as I did find it, I knew it was for me.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','Be able to buy a Mastering Nix book\r\nToo shelf dev tools, goto definition, hover, etc... ','Guix?','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','','','','Y','','','','','','','sway','Direnv','Switched from Niv to flakes recently','I love the nix community.'),(1138,'1980-01-01 00:00:00',5,'en','516731382','A4','A3','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I can get the env I want more robust than dockers (ofc once you know what you are doing)','','Y','','','','','Y','','','','','','','','Y','','','Y','','nix-shell and buildFHSUserEnv','nixos configuration using nix','stability','- add: more DOCUMENTATIONS\r\n- add: better vscode nix support (including better nix-shell and buildFSHUserEnv)\r\n- remove: disable `hardening` flags by default in shells\r\n- change: adapt some of clear linux optimizations to nix','dockers','','','','','','','','','','','','','','','','Y','','','','N','nix echo system for converting a package to work into nix is complicated','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','','','','','','','','','','','','','','','Y','','','','',''),(1139,'1980-01-01 00:00:00',5,'en','1874563847','A5','A3','fem','','','','','','Y','','','','','Y','','','','','','Y','Y','','','Y','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was forced into it. I had been full-stack/devops/SRE for well over a decade and joined a company as an automation engineer under the employment of a friend, who was staunch on using Haskell/Nix. I was extremely resistant at first, but eventually dove in and found out that it\'s actually completely brilliant. It is now my daily driver for all of my personal systems and (almost) all of my servers.','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Statelessness','Reproducibility','The ability to define multiple configuration languages (e.g. YAML, INI) in Nix','Better error messages\r\nComposition operator\r\nAn operator to help remove further parentheses, like Haskell\'s $\r\nOperators as functions (e.g. foldl\' (+) 0 [ 1 2 3 ])\r\nSome form of introspect to generate better error messages','Either pacman or aptitude','','','','Y','Y','','','','Y','Y','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I had been using Mac as my daily driver, and was getting towards the tipping point of using Linux as Macs were getting too expensive and added too many silly features. I had already been using Nix and some NixOS for production servers, so I decided to dive in head-first into the NixOS experience.','Y','Y','Y','Y','','Y','','Statelessness to the extent Nix can reach','Reproducibility of machines','Ease of service setup','','Likely arch or some debian derivative, and severe alcoholism','Y','Y','','','','Y','','','','','i3','home-manager','Soon I will be moving away from nixops.','Keep up the good work'),(1140,NULL,NULL,'en','318487521',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1141,'1980-01-01 00:00:00',5,'en','1613200288','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Logistics','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','More packages than Guix','Y','','','','','','Y','','','','','','','','Y','Y','','Y','','reproducible build environments','declarative system management','','better documentation','Guix','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'N','Y',NULL,'I switched to macOS, though I will prob switch back to some Linux distro','When I have enough money to purchase a new non-Mac computer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1142,NULL,2,'en','893750310','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Declarative configuration, supposed reliability, coolness factor','Y','','','','','','Y','','','','','','','Y','','','','','','Declarative OS management','Reliable rollbacks','Having multiple versions of packages present in one system ','Nix language error messages, support for debugging and better documentation for functions used to build packages','Arch Linux','','','','','','','','','','','','','','','','','','','','N','Don\'t have time for that now, nor for learning Nix beyond simple changes to packages / using them.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1143,NULL,1,'en','296462248','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1144,'1980-01-01 00:00:00',5,'en','588747301','A2','A4','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I read about Nix about 8 years ago and I thought it looked very promising but quite complex. I had been using Debian for about 20 years and I got frustrated of having to choose between outdated packages or and unstable system, and 2 years ago sameone mentioned Nix at a meetup so I checked it again and decided to give NixOS a try for real by completely switching to it and evaluating after a few months if it was usable. I’m still using it today and really happy with it.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Reproducibility','Declarativeness','Composability','- A more beginner-friendly manual with an improved structure that uses the Diataxis framework for technical writing (https://diataxis.fr/)\r\n- Better error messages and traces\r\n- Debugging tools\r\n- Better/official support for *2nix tools (which regularly break with upstream packages)','I guess I would go back to Debian, but I would be very sad.','','','','Y','Y','','','','','','','','','','node2nix, poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','See my previous point in the Nix part (I started using Nix when I switched to NixOS so the 2 stories are the same).','Y','','Y','Y','','','','Reproducibility','Declarativeness','Composability','','','Y','','','','','','','','','','i3','home-manager','lorri','Thank you!'),(1146,'1980-01-01 00:00:00',5,'en','900202269','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','It allows me to adjust software before installing, e.g. applying patches.\r\nIt allows me to define the system via configuration.\r\nIt isolates enviroents and allows to setup project specific engironments.','','Y','','','','','Y','','','','','','','','Y','','','Y','','nix, nixpkgs','home-manager','','','Probably gentoo/portage.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','I still feel too new to nix.','N','N','I plan to switch from Ubuntu to NixOS in the near future.\r\n\r\nAlready migrated to home-manager.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','',''),(1149,'1980-01-01 00:00:00',5,'en','1615068794','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I began using Nix for development environments after having used NixOS for a while and becoming familiar with it.','','','','','','','Y','','Y','','','','','Y','Y','','','Y','','Per-project environment (particularly being able to specify exact dependencies e.g. node v14)','Reproducible builds','','More docs for things like: how do I take a package from nixpkgs and build it, outside of the repo, or outside my nixOS config. I did it before but I find it all so confusing! Also the errors are often (not always but quite often) really confusing, so clearer error messages.','For dev environments, maybe asdf, I haven\'t tried any of the alternatives. ','','','','','Y','','','','','','','','','','','','Y','','','N','The most recent software I wanted to package, I couldn\'t figure out how to package it with Nix. So, lack of knowledge of nix language I guess','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','At the time I had been using Arch for about 8 years, and NixOS\'s declarative configuration method appealed to me as a sort of \'dotfiles on steroids\'. After trying it for a few months I started to understand the other benefits of NixOS & Nix (system rollback, wrapped dependencies, per-project environments).','Y','','Y','','','','','Declarative configuration','System rollback','','Maybe make config options easier to discover, I mainly use the man page, I think there\'s a webpage somewhere with a search box but I always default to going for the man page','Arch or maybe Guix','Y','','','','','','','','','','Sway','umm nix-locate is good, I guess? can\'t think of anything else sorry','I wanted to use a devops tool like nixops or morph but couldn\'t figure them out','Thank you so much for your work on Nix! It\'s wonderful'),(1147,NULL,1,'en','1093519967','A2','','male','','Y','','','','','','','','','','','','','Y','','','','','','Y','','Y','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I were testing Arch with the intent of switching to it from Windows, but as my install was getting more complicated, I realized I would need to remember all the different changes I made to configuration as well as why I had installed every package so that I wouldn\'t break some script by uninstalling it.\r\nI then found NixOS and saw that I could specify configuration, packages, and create scripts which reference all its dependencies, all in one file (-hierarchy) with comments.\r\nAfter testing in a VM, I therefore ended up switching to NixOS instead.','','','','','','','Y','','','','','','','','Y','Y','','Y','','','','','Add and improve documentation.\r\nAdd and improve error messages and debugging capabilities of nix expressions.\r\nAdd arguments to flakes (e.g. https://github.com/NixOS/nix/issues/5663) (example: specify unfree to nixpkgs).\r\nSimplify debugging building (nix develop and each phase) and the final binary.\r\nMinimize the amount of downloading and writing to disk (e.g. using reflinks) of almost similar packages (though CA will help).','Use a dotfile manager.\r\nInstall packages needed for development globally, write down why I installed each package.','','','','','Y','','','','','','','','','','','Y','Y','','','N','Reluctance to interact with people online.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1148,'1980-01-01 00:00:00',5,'en','150433208','A4','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I liked the idea of reproducibility and immutability of the system, so I gave NixOS a try and it is awesome so far and it worked like magic, and now I don’t have to worry about breaking my system when I do changes or experiment with it.','','','','','','','Y','','Y','','','','','','','','','Y','','Being able to configure my system using config files.','Being able to rollback when something happened.','The ecosystem of packages “NixPkgs”.','','','','','','','Y','','','','','','','','','','','','','','','N','I’m still new and learning Nix and the ecosystem, but definitely going to contribute in the future.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','My daily driver desktop distribution.','A1','I liked the idea of reproducible and immutable system, and that I can manage my whole system with configuration and be able to rollback.','Y','','Y','','','','','Reproducibility and Immutability','Being able to use txt files to config everything.','NixPkgs','','I would consider Guix but they don’t have as much packages as NixPkgs, so I might just stay with Arch Linux.','Y','','','','','','','','','','Qtile','','','Thank you all for these amazing projects and I hope you you all the success.'),(1150,'1980-01-01 00:00:00',5,'en','830990340','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','network engineer','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','A friend introduced me to the concept of having the linux system described in a set of config files that will keep all pertinent configuration data. Previously every time I switched laptops, I had to figure out what tools were removed/added etc. to make things work, with nix it\'s a do it once and forget. The only thing I need to worry now is the hardware specs if they needs special consideration. Being flaked it also gives me comfort that I can easily reproduce this.','','Y','','Y','','','','','','','','','work laptop','','','','','Y','','.nix files to manage all my configuration needs ','patching/compiling my own versions if needed for packages','fast merging of new packages (in unstable)','the nix language isn\'t particularly hard to understand or grasp the basic concepts of it, but maybe some additional documentation on ','not sure, probably some amalgamation of git repository for config files and a lot of pain trying to get things to play along with it','','','','','Y','','Y','','','','','','','','none, I\'m not a power user, just trying to get my desktop/laptop setup portable','Y','Y','','','N','I\'m not really a power user, have not much to contribute and wouldn\'t know how anyways.','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','so i can easily switch laptops without having to worry about getting my configs replicated exactly.','','','Y','','','','work laptop','configuration/package mgmt bundling','ability to patch things if they are broken for me and still be managed by the nix','speed of new package incorporation','Some guide similar to nixpills for the OS and module overrides in general, I still find it hard to grasp, what\'s going on','some amalgamation of git and config files that\'s held together with spit, grit and sticktuitiveness','Y','','','','','','','','','','sway','none','none','keep up the good work, and thank you for bringing this project into existence.'),(1151,NULL,2,'en','1272968520','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I started using Nix primarily because of NixOS. The declarable nature of the configuration was very intriguing to me, as it seemed less prone to breaking. I have also been fascinated by functional programming, and Nix has helped me learn some of the fundamentals.','','','','','','I only use with NixOS at the moment','Y','','','','','','Personal computer','','','','','Y','','Declarative system configuration, which can support multiple machines','Nix-shell, I have yet to start using this a lot, but it seems perfect for someone who is learning to code, as it does not clutter up the normal environment','Flakes seem very promising, not just for configuration, but for developing too, but I am still learning about these','Better documentation, specially aimed at beginners. It is clear to me that Nix has some amazing functionality, but it can be tricky to figure out, even more so when you are just learning programming.','Arch mainly, as it is what I am familiar with, however I am also curious about Guix','','','','','Y','','','','','','','','','none of the above, I mainly use Nix for my own purposes','I am not familiar with 2nix, but it sounds interesting','Y','Y','','','N','Lack of knowledge on my part',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1152,'1980-01-01 00:00:00',5,'en','1768363498','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started using Nixpkgs Haskell infrastructure to build my Haskell projects, it snowballed from there.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','The Nixpkgs package set.','nix-shell','','Decrease the bus factor on the NixOS/Nix project.','Guix','','','','Y','','','','','','','','','Y','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','','','','','','','','Y','','','Y','','','','','I3 and Sway','','',''),(1153,'1980-01-01 00:00:00',5,'en','201302159','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','argo-workflow, argo-events, argo-cd','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','Y','','','','','','','','','','','','','','','','','Y','','','','lorri, niv',''),(1154,'1980-01-01 00:00:00',5,'en','2098880123','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','It came with NixOS, but now I like it','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Declarative specification of larger software systems','Source/binary hybrid: Everything\'s change-able/overrideable, with enough pain, and the rest just transparently rebuilds when necessary','Isolation/reproducibility','Cached JIT compilation, it will never be fast enough. Maybe a re-do of nixpkgs with all the lessons learned, while we\'re doing magic...','For development: Guix wouldn\'t exist, so... Docker, I guess? :(','','','','Y','Y','','Y','','','','','','','agola','kolloch/crate2nix, one of the various node2nix tools whenever necessary','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Arch was getting messy, any customization felt like a liability due to having to document how to reproduce it (and usually failing to do that).','Y','Y','Y','Y','','','','Declarative configuration with modules','Easy service configuration','Isolated system generations, can keep multiple versions around simultaneously and select at boot time.','Fix the giant module list!\r\n\r\nService builders instead of singleton service options. Currently, running two instances of a singleton service is unreasonably hard.\r\nBetter service isolation by default.','Maybe one of the immutable distros instead of NixOS (silverblue, if that still exists).','','','','','','Y','','','','','i3, sway','nix-diff, direnv (currently with flakes integration), nix-locate','lorri (direnv offered a daemon-less approach),\r\nhome-manager (makes rebuilds too slow, if integrated into the NixOS system configuration)','<3'),(1155,NULL,NULL,'en','874023347',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1157,NULL,1,'en','915869780','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1158,NULL,1,'en','1499045012','A2','A2','male','','Y','','','','','','','','','','','','','Y','','','','','','Y','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1159,'1980-01-01 00:00:00',5,'en','1018059445','A2','A3','male','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using Nix after migrating to NixOS and it just... made sense.','','','','','','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','Reproducibility/consistency','sandbox','distributed builds','One area where the project is lacking is in documentation. There is some great material in the docs if you know how to find it, but it is especially hard for newcomers to navigate when it is unclear whether a feature comes from nix, nixpkgs, or NixOS, or whether the answer is on github, the wiki, or in the manuals.\r\n\r\nWhat is also missing is examples of the \"gold standard\" way of doing things. Yes, it is possible to find this in the nixpkgs code however I think the docs would benefit greatly by being explicit about topics such as \"this is the way to package a Gnome application\" (provided of course the docs are maintained at the same pace that the codebase changes).','Maybe guix, probably continue using my old bodge of ansible and Arch.','','','','Y','Y','','Y','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was dissatisfied with the tooling for reproducing configuration across machines, ended up with Ansible + Arch, found that too brittle. NixOS appeared to have a higher barrier to entry but was more usable than guix.','Y','Y','Y','Y','','','','','','','Documentation!','Arch + Ansible, maybe guix','Y','','','','','','','','','','i3','Hydra, node2nix (and general integration between nix and node)','\"Just when I thought I was out, they pull me back in.\"','No project is perfect, but Nix is close. Since starting to use it I\'ve haven\'t found anything better. I love Nix! Anything that we can do to lower the barrier of entry to new users would be incredibly helpful - possibly an optional \"batteries included\" installer that has a working configuration with a popular DE - rather than asking users to configure a system from scratch.'),(1160,'1980-01-01 00:00:00',5,'en','19746890','A2','A4','male','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','','','','','Y','Y','Y','Y','Y','','','','','','','Y','','','','','','Copious amounts of stress-relieving efforts.','','','','','','','','','','','','','','TeamCity','','Y','','','','N','Still building experience.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','The promise of a centralized system configuration facilitating easy review and management while not building invisible cruft over time.','Y','Y','Y','Y','Y','','','I can review and manage a system install in an easily formatted single file.','Proper atomic and easily reversible system updates.','A solid package & config foundation to work from.','','Fedora Silverblue.','Y','','','','','','','Y','Y','','','','',''),(1161,NULL,1,'en','1935335159','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1162,'1980-01-01 00:00:00',5,'en','2117437341','A2','A3','male','','Y','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Got to find a better way than using ssh+Perl to administrate 2k+ VoIP servers on client premises.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','','Y','','','','','','Alternatives like debconf/debhelper and https://build.opensuse.org/','','Y','','Y','Y','','','','','Y','Y','','','','poetry','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','','','','','','','','','','Y','','','','','','system.autoUpgrade','','','','sway','home-manager','niv',''),(1163,'1980-01-01 00:00:00',5,'en','1342933325','A1','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I used to use Homebrew to manage packages on my macOS machine. I was fed up with the extremly slow commands (I\'m presuming due to Homebrew being written in Ruby) and I heard about Nix. I was interested in the idea of reproducible builds and having programs installed in an isolated location (/nix) rather than dumping files in /usr/local/bin etc. It was a bit of a steep learning curve. Terminology and lack of macOS documentation didn\'t help either.\r\n\r\nI researched a little more and discovered home-manager. Finally, one location to manage user config and easily rollback when you fuck up your neovim configuration! My love for nix grew and I\'m now comfortable writing my own simple derivations.\r\n\r\nI currently have a nix-darwin + home-manager setup and still use home-manager\'s Homebrew feature to install some packages that are outdated/don\'t work on nixpkgs (I\'ll get around to fixing them some day!) and \'casks\' (desktop apps) because nix doesn\'t put them in ~/Applications (there\'s a GitHub issue for this somewhere).\r\n\r\nCurrently trying to learn about flakes.','Y','','','','','','Y','','','','','','','','','','','Y','','Reproducible builds','Packages installed to isolated location','Easily rollback to previous generations (nix-darwin)','My number one thing:\r\nDocs, docs, docs. First, the naming of Nix (the language), Nix (the package manager), NixOS, and Nixpkgs are very confusing. There needs to be some better user guide than Nix Pills. I found that didn\'t spend nearly enough time explaining nixpkgs and derivations, and instead waffled on about the language which I found extremely easy to grasp (but I understand why others wouldn\'t because I\'m a Haskell programmer used to FP ideas and the syntax).\r\n\r\nThe docs need to be more easy to grasp for new users. The Rust book is a good example.\r\n\r\nMore specifically:\r\n- Better documentation for some of the nixpkgs functions. Some of the functions provided by `import {}.lib` appear to be the same as the ones builtin to the Nix language and there doesn’t seem to be any clear guidance on when to use which version. I’ve also had to look at the source code to find out the difference between writeTextFile, `writeText`, `writeTextDir`, `writeScript`, and `writeScriptBin`.\r\n- Split the nixpkgs docs into multiple web pages. The current gigantic web page that documents so many different things (the `lib` functions, how to make a derivation, specific details for building packages in certain languages, how to contribute to nixpkgs, overriding packages/overlays etc) is quite slow to load and even slower to search for things in.\r\n- More clear docs on hashes. It took me *forever* to find out that the numbers after `sha256:` in `sha256:000…` is different from the numbers after the `sha256-` in the new SRI hashes `sha256-000…`. It\'s improved now, but please improve docs on hashes and explain the differences between them.\r\n- Better error messages\r\n- Prettier coloured output\r\n- More docs for macOS. For example, the instructions here https://nixos.wiki/wiki/Flakes tell you to do `nix-env -iA nixpkgs.nixFlakes` for ‘non-nixos systems’. I installed this package on my machine and it took me a few hours to figure out I shouldn’t have done this as I use nix-darwin and instead should have mostly followed the NixOS instructions. I understand nix-darwin is a community project, but this was very confusing for a new user.','Continue suffering with the horrible speed of Homebrew','','','','Y','Y','','','','','','','','','','','Y','','','','Y',NULL,'N','N','More time and getting enough money for a new device. Currently have a MacBook for school. I\'ve always wanted to try Linux. I\'m not sure whether to use NixOS or Arch first though… definitely want to try both some day but once I finish school (ahh final year of school is so stressful)\r\n\r\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-darwin, home-manager, comma, nix-tree, update-nix-fetchgit','','Thanks for giving us the opportunity to voice our opinions!'),(1164,NULL,1,'en','165263019','A2','A4','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1165,NULL,2,'en','1211006439','A2','A2','male','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Friend recommended it, said I\'d like it. So i tried it and i loved it.','','Y','','','Y','Android','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','Nixos','Flakes','Container image building','Nickel','Probably ostree or just imperative package managers, Arch Linux or Void','','','','Y','Y','','Y','','','','','','','','','Y','Y','','','N','Laziness',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1166,'1980-01-01 00:00:00',5,'en','1511358048','A2','A4','male','','Y','','','','','','','Y','','','','','','Y','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I don\'t have to fight with dependencies.','','Y','','','','','Y','Y','Y','','','Y','','','Y','','','Y','','Use of arbitrary package versions + ability to override build features','Works reproducibly on all Linux distribution1','Remote builds','Nix language server (LSP) which offers reliable completions, templates, etc.','Debian + local builds in a home directory, maybe Docker','','','','Y','Y','','','','','','Y','','','','','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','When I started using Nix on Debian, there was soon no need to keep Debian around.','Y','Y','Y','','','Y','','GUI apps (OpenGL) work without things like nixGL','','','','Debian','Y','','','','','Y','','','','','i3 and sway','lorri\r\ndirenv\r\nnix-tree\r\nnix-ld','',''),(1167,NULL,1,'en','673545267','A2','A5','male','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1168,'1980-01-01 00:00:00',5,'en','1004682423','A2','A5','male','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because I don\'t like rpm and deb packages.','','Y','','','','','Y','','','','','','','','Y','','','Y','','Reproducible','Cannot break other packages','Easy sharing of build environment','I would remove the steep learning curve. It is pretty challenging to discover how to do things in nix. I am always amazed by how simple and elegant the solution is for every problem, but I find it really hard to find it. ','','','','','','','','','','','','','','','','','','','Y','','N','I do not feel competent enough to do it. I have been using NixOS daily as my development machine for about a year, but I still struggle to write quality nix expressions.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I really like the ability to configure the whole system with a single file (two really, because I also use home-manager).\r\nI really like the ease with which I can customize packages and be sure that they will be easily reproducible on any machine. For example, I needed the PGagent extension of Postgresql. It was not included in Nixpkgs, but I only needed about ten lines of home-manager configuration to get it downloaded, packaged and installed on any machine.','Y','','','','','','','Single file configuration','experiment without fear of breaking things','easy extendibility','I would add easier installation of proprietary binary software. Every working environment I know of requires some proprietary software to get things done.','Ubuntu','Y','','','','','','','','Y','','','','','Thank you'),(1169,'1980-01-01 00:00:00',5,'en','1291410775','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted a stable Linux that I could tinker with. Also, I\'m a functional programmer, so it was great to have a declarative configuration.','','','','','','','Y','','','','','','','','','','','Y','','Declarative configuration','Rollbacks','open source','Make nix typed','Arch','','Y','','Y','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','','','','','','','','','','','','','','','','i3 + XFCE','','wayland','Thank you, NixOS is great!'),(1170,'1980-01-01 00:00:00',5,'en','1576328792','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted system that is easily replicable, predictable - or at least fixable and it\'s easy to share configs between machines','','','','','','','Y','','Y','','','','','','','','','Y','','possibility to copy config to new machine and rebuild working system','configuration is in one place','','make it easier to port stuff, I can\'t get jetbrains-toolbox working for months now.\r\nthe language could be easier to learn.','ubuntu','','','','','','','','','','','','','','','','','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','same as nix, i wanted something that would be easy to to rebuild from config, and easy to rollback change','Y','Y','Y','','','','','config is in one place','easy to rollback','','network boot from config xD would be cool ','ubuntu','Y','','','','','Y','','','Y','','xmonad','','',''),(1171,'1980-01-01 00:00:00',5,'en','1211035380','A2','A4','male','','','Y','','','','Y','Y','Y','Y','Y','','','Y','','','','Y','','','Y','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','About 15 years ago I ran Gentoo Linux on all my machines, then I started converting them to Debian installations. Stable on servers and testing on my workstations and laptop. When my laptop broke in 2020 i installed NixOS on it as an experiment while my main desktop still ran Debian testing. The main draw for me was being able to define and build my own packages which I consider to be a hassle on Debian. I believe my background as a Haskell developer made the transition easier and I understood the value proposition of nix right away.','','Y','','','','','Y','','Y','Y','','Y','','Y','','Y','','Y','','concise single file definition of a package','reproducibility','installing without \"installing\" (nixos-rebuild build / nix-shell / etc)','I would like to be able to step through building a derivation. It can be difficult from a nix-shell to go through the phases and run them like they are being built by nix-build, or even know what exactly the phases are. If its already possible to do this via nix repl + nix-shell then my wish would be that it was better documented.','Assuming guix also didn\'t exist. I\'d probably use cabal, pip+virtualenv, debian packages, cargo, plain makefiles and such.','','','','','','','Y','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','About 15 years ago I ran Gentoo Linux on all my machines, then I started converting them to Debian installations. Stable on servers and testing on my workstations and laptop. When my laptop broke in 2020 i installed NixOS on it as an experiment while my main desktop still ran Debian testing. The main draw for me was being able to define and build my own packages which I consider to be a hassle on Debian. I believe my background as a Haskell developer made the transition easier and I understood the value proposition of nix right away.','Y','','Y','','','Y','','plain text configuration','reproducibility','good amount of packaged software','Being able to roll-back or set channels to specific versions. My understanding is that flakes will give me this when it\'s available so the magic wand may not be needed.','Debian','Y','','','','','','','','','Y','','The nixos.org and search.nixos.org websites. The html-rendered documentation for Nix, nixpkgs and NixOS.','','No, I\'m good. Thanks for asking.'),(1172,NULL,NULL,'en','1002048553',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1173,'1980-01-01 00:00:00',5,'en','67406030','A2','A3','male','','','','','','Y','','','','','Y','','','','','','Y','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','i was done with os hopping, and was tired of setting things up al al over again. for my professional life i use chef and puppet. I wanted a config manager for my personal life too. no regrets.','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','declarative, and with flakes for sure now.','reproducable, helped a college who\'s dev env was fucked, suggested installing nix (on macos) and gave him my .nix file (shell/default idk), he was up and running in minutes.','','i\'m used to using nixops for setting up testing virtualboxes, but would love to use vagrant for it.\r\n\r\nwould love to see better debugging tools, or i\'m using them wrong. it has improved for sure, but somethimes i\'m stuck and it would have been something simple if the error message wasn\'t so cryptic.\r\n\r\nthe documentation has improved significant, but there are so many sources and ways to do something, would love to see more examples.','arch, pwobably','','','','Y','Y','','','','','','','','','','bundix','Y','Y','','','N','nothing really, it\'s quite complete for me, i would have contributed regarding nordvpn, but someone is already working on it.\r\n\r\nI probably would in the future, but time is also a matter.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','was tired of os hopping and reinstalling everything. i use chef and puppet in my professional life, and would love to use a config manager for my private life too.','Y','','Y','','','','','declarative','reproducable, had a college with a broken dev env, suggested installing nix (on osx) and gave him my .nix files, he was up and running in minutes','','better debuggin','arch, pwobably','Y','','','','Y','','','','','','awesomewm','','',''),(1174,NULL,1,'en','1741023651','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1175,NULL,NULL,'en','1338332094',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1176,'1980-01-01 00:00:00',5,'en','2039053422','A1','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','N','N','I was just about to!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I was just going to!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Unexpectedly good gender identity question, keep up the good work.'),(1177,'1980-01-01 00:00:00',5,'en','1585722488','A1','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','Run software without installation (nix run)','','Flakes','','I personally found the Nix language quite hard to learn and parse as someone who had no prior functional language experience and found the resources lacking at the time I began. I think it would be easier to learn if some syntax was more explicit like using a `function` keyword as a signpost rather than just a colon. Using parentheses to call functions would make it so you wouldn\'t have errors from a function call being treated as separate elements in an array, which is quite hard for beginners to debug from what I\'ve seen.\r\n\r\nInstead of making flake commands locked behind a configuration option, I think it would be significantly more convenient to have it accessible from a different named Nix binary like `nix3`.','Nothing','','','','Y','Y','','','','','','Y','','','','https://github.com/nix-community/poetry2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I had seen the NixOS website homepage after it was posted on Hacker News and the properties sounded amazing especially coming from someone who had broken the package manager in my system before when running Arch. After a couple of months, I decided to bite the bullet and switch.','Y','','Y','','','','','Declarative system management','Allowing my system configuration to be modular','nixos-vm','','Arch without any declarative system management','Y','','','','','','','Y','','','i3','home-manager and agenix mainly :) flake-utils\' system helpers are very useful too when writing flakes','NixOps (version 2 with flake support was WIP last I checked)','I think flakes are amazing and I hope that they become stable sooner rather than later :)'),(1178,'1980-01-01 00:00:00',5,'en','1253972069','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','See NixOS history. I started using Nix with NixOS.','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','home-manager','Package overrides','Deterministic builds','Functional programming language, even if its quirks, it is way better than trying to shove YAML','Probably the pre-2.4 Nix commands.','PKGBUILD maybe?','','','','Y','Y','','','','','','Y','','','','Depends on what I am working, but https://github.com/DavHau/mach-nix is one that I always need when packaging Python applications.','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','NixOS seemed like an interesting operational system, and I was kinda on functional programming at the time, starting a new job in company using mainly Clojure. It seemed some small number of Software Engineers at the company already used NixOS, so I decided to try, and while it was difficult at the beginning I loved the fact that I never needed to worry about formatting my machine or upgrading my system and getting it borked (something that was common in other distros, I was a big Arch Linux user before). Also the declarative nature fixed one of my main issues that I had from a more traditional Linux OS.','Y','','Y','','','','','Declarative system configuration','Atomic upgrades','Reliable rollbacks','I would split nixpkgs in multiple repositories. As a nixpkgs maintainer/commiter, keeping everything in one repository is a pain to maintain.','Ansible maybe?','Y','','','','','','','','','','i3wm','home-manager','nix-darwin',''),(1179,'1980-01-01 00:00:00',5,'en','640047490','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Ran into too many issues where different development tools where conflicting with each other (example: globally installed vips and would block sharp from installing with npm/yarn) or where different versions of the same package would give inconsistent results (different postgres on different servers, ...).\r\n','Y','','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Declarative management of packages','Option to centralize management for different users/devices (by putting it in git repo)','more controls over versions than homebrew/apt','Better documentation for people just starting with nix','A series of declarative other software for different languages (rbenv, bundler, nvm, npm/yarn, ...).\r\n\r\nI\'d probaly still use homebrew/apt for installing apps and hate it.','','','','Y','Y','','','','','','','','','','yarn2nix bundix (if that counts)','','Y','','','N','Feel like I don\'t have enough knowledge to make edits and test new versions.','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Had to set up a different VPS servers and was dreading the experience of editing a lot of configs through shh on the various machines (with each package having their own DSL). Felt that I needed more control over the installed packages. ','','','Y','Y','','','','declarative control over installed packages','Abstraction of the specific DSL for different packages','ability to easily spin several servers with the same app and slightly different settings thanks to modules','Better documentation for people just starting out','Probaly no specific tools, but just apt to manage packages.','Y','','','','','','','','','','','nix-darwin, home-manager','',''),(1180,'1980-01-01 00:00:00',5,'en','273641757','A2','A3','male','','Y','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I liked the ideas behind it, being a function programming enthusiast. I occasionally used it to install Haskell packages, avoiding cabal\'s lengthy build times. This led me later to install NixOS on my work machine (I didn\'t know at that time that would imply spending months learning Nix before being able to do everyday tasks).','','Y','','','','','Y','','','','','','','','Y','','','Y','','isolated, reproducible development environments','very large and well-maintained package repository','declarative OS and user config','I would create a big reference book which has everything I wish existed when I picked up Nix(OS): a gentle introduction to the basics, and building up *everything* that is needed for package management and package creation, also explaining in detail all the necessary notions along the way. The Nix manuals are completely unsufficient to cover the huge complexity of Nix(OS), and the rest of resources are scattered in many different places, it\'s incredibly frustrating. The NixOS wiki has got better lately, but it\'s still not a great situation.','pacman, and language-specific tools for dev.','','','','Y','','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','Out of curiosity after using Nix for dev. It\'s a painful story. I\'m not sure why I\'m still using it. Maybe because I\'m finally becoming proficient with Nix after 4 years of struggle.','Y','','','','','','','configuration processes encoded by other people (real saints) for my benefit','declarative config','','See my remark on Nix. Documentation and learning resources are highly incomplete, scattered, and unwelcoming.','Arch Linux.','Y','','','','','','','Y','','Y','i3','home-manager','','Nix(OS) is an impressive effort, but given my experience using it, I wouldn\'t recommend it to anyone else, unless they have extremely specific needs. Is that something that can be changed, or is it due to the intrinsic complexity of what Nix(OS) does? I don\'t know for sure.'),(1181,'1980-01-01 00:00:00',5,'en','12924956','A2','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Started using the package manager, hopped from Arch to Manjaro to VoidLinux, wanted to have my system configuration in git to quickly get up and running after a reinstall.','Y','Y','','','','','Y','','','','','','','','Y','','','Y','','Repeatability ','Stability','Portable nix-shell scripts','Easy/easier flakes, self-hosted (on GitHub) packages.','pacman, apt-get or docker containers','','','','Y','Y','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','','','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1182,'1980-01-01 00:00:00',5,'en','286303081','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','I was looking for a FOSS tool to automate deployment a many machines. I found out about NixOps and that is how I entered the Nix ecosystem.','','','','','','','Y','','','Y','','','','','Y','','','Y','','','','','','','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','After learning about NixOps, I learnt about NixOS and I was very satisfied with the declarative configuration. So I started using it everywhere (development machines, production servers).','Y','','','Y','','','','','','','','Another GNU/Linux distro','','Y','','','','','','','Y','','','','','Please improve the documentation of NixOps. This project status is unclear. Is the stable release 1.x or 2.x? Where is the official website other than the github repo?'),(1183,'1980-01-01 00:00:00',5,'en','1383158775','A6','A2','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I first found it because I came to know that it had lot of packages and I installed it on my Void Linux because I loved the idea of reproducible builds and declarative package management. Now I completely switched to NixOS. ','','Y','','','','','Y','','','','','','','','Y','','','Y','','Declarative system and developer environments','Flakes','Overlays','','Guix','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','I can write some nix derivations but I am still doubting my nix skills because I feel like I never delved deeper into learning nix.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I have used Nix with Void Linux distribution and I really loved the idea of have a reproducible system with declarative system and package management. The rollbacks are cherry on top.','Y','','','','','','','Declarative system and package management','Flake','Rollbacks','','Guix','Y','','','','','','','','','','River','','',''),(1184,NULL,1,'en','974343002','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1185,NULL,NULL,'en','434537310',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1186,'1980-01-01 00:00:00',5,'en','399172086','A5','A2','male','','','Y','Y','','','','Y','','','','','','','','','','','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I heard about it from a close friend who likes to configure their own desktop. On my own, I\'d been writing more and more configuration scripts to get me quickly set up on a fresh OS, but there was so much state data and it was nearly impossible to manage.','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproduceability','Version upgrade/rollback safety','Declarative configuration','I\'d let the some of the other input args to flakes (like nixConfig) allow non-trivial functions, add more (optional) traceability for nix-store and other non-evaluation components, and add type declarations/restrictions.','QubesOS + VMs and Containers probably','','Y','','Y','Y','','','','','','','','','','nix-community/node2nix, nix-community/poetry2nix, nix-community/naersk, terranix/terranix','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was using home-manager, and it seemed like a logical next-step. Only limitation at the time was that I was using Windows/WSL. I originally started using it and went back and forth, until I started to really understand the Nix language and was able to write it and scripts well enough to fix most of the issues or understand what to do when switching from Windows.','Y','','Y','','','','','Reproduceability','Version upgrade/rollback safety','Declarative configuration','I\'d probably add a few more image builders to support other platforms, and create a module to define libvirt VMs declaratively.','Probably still Windows, WSL, and Containers','Y','','','','','','Terranix','','','','Sway','home-manager, pre-commit-hooks.nix, statix, nix-linter, nixpkgs-fmt, nix-index, rnix-lsp, nixos-artwork, cachix, sops-nix, nixos-hardware, nix-direnv, vim-nix, nixos-generators, comma, nix-tree','alejandra, nixpkgs-wayland, neovim-nightly-overlay, vscode-nix-ide, napalm, vulnix, nixfmt','I wish I had more time to spend on Nix and NixOS.'),(1187,'1980-01-01 00:00:00',5,'en','1838351755','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','I switched jobs to a company that uses Nix and NixOS extensively.','Y','Y','','','','','Y','Y','','Y','','Y','','','Y','Y','','Y','','Dependency management','Consistent environment','Declarative system administration ','Better CI solutions','Docker, Salt/puppet','','','','Y','','','Y','','','','','','','','','Y','','Y','','N','I use Nix but don’t fully understand it','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','I switched jobs to a company that uses NixOS for developer workstations','Y','Y','','Y','','Y','','','','','','','Y','','','','','Y','','Y','','','','gitignore-source','',''),(1188,NULL,1,'en','32294361','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','iOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1189,'1980-01-01 00:00:00',5,'en','95298398','A1','A2','male','','','','','','','Y','Y','','','','','','','','','','','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Sounds wired, but I actually knew (and started to use) NixOS before I actually learned and knew about Nix :-)\r\nI started using Nix because I started using NixOS (not sure if there is a question for NixOS later?)\r\n','','Y','','','','','Y','','','','','','Daily use desktop','','Y','Y','','Y','','NixOS and Nixpkgs?','','','','rpm-ostree maybe?','','','','Y','Y','','','','','','Y','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','Daily use, e.g. random web surfing','A2','I was a distro hopper when I first know NixOS, then I was advertised by some random articles','Y','','','','','','Personal desktop?','Nixpkgs has all packages I need','A \"clean\" system','','Nothing yet. I will send some pull request when I have some idea.','Fedora Silverblue or Arch Linux','Y','','','','','','','Y','','Y','Pantheon','Does Mic92/nixpkgs-review and jtojnar/nixpkgs-hammering count?','',''),(1190,'1980-01-01 00:00:00',5,'en','459514294','A2','A2','male','','','Y','Y','Y','','Y','','','Y','Y','Y','Y','Y','','Y','','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Installed NixOS a few years ago because I wanted to try it out. No particular reason, but the benefits really opened my eyes and I stick by it whenever I can now.','','Y','','Y','','','Y','Y','Y','Y','','','','','Y','','','Y','','Declarative env management','Declarative system config/management','Rollbacks','I would love better documentation :-)','Guix','','','','','','','','','','','Y','','','','','Y','','','','N','I haven\'t had a genuine need to yet :-)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as Nix story','Y','Y','Y','Y','','','','Same as before','Same as before','Same as before','I wish I could do this, but it is cursed and I wholly understand why I cant:\r\n\r\n```\r\n{\r\n a = 123;\r\n b = {\r\n parent(a) = 1234;\r\n };\r\n}\r\n```\r\n\r\nIf I _can_ do that... let me know please :-)','Same as before','Y','','','','','Y','','','','','dwm','Lorri, home-manager','N/A','Thanks so much!'),(1191,NULL,1,'en','716959023','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1192,'1980-01-01 00:00:00',5,'en','829478974','A1','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','','','','','','','','Y','','','Y','','Flakes','Nix-Shell','Home-Manager','[ADD] - a cli similar to guix','Guix, Silverblue','','','','Y','Y','','','','Y','','','','','','','','Y','','','N','low end machine and exams','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','rollback','declarative config','atomic upgrade','a cli similar to guix','guix','Y','','','','','','','','','','sway','home-manager','divnix','a simple shell script installer would make the distro more appealing to new comers'),(1193,'1980-01-01 00:00:00',5,'en','1739348984','A1','A5','male','','','Y','','','','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Declarative configuration, dependency solution, shared config over many devices, great community','','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Decorative configuration','No dependency issues','Shared configuration','Pure by default','Guix','','','','','Y','','','','','','','','','','','Y','Y','','','N','Time, imposter syndrome & yet to find my place','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','','','','','','','','','','','','','Y','','','','','','','','Y','','sway','','','Thank you'),(1194,'1980-01-01 00:00:00',5,'en','1699203738','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I discovered Nix and NixOS at the same time. It\'s great to use nix when developing my projects and homework assignments.','','Y','','Y','','','Y','','Y','','','','','','Y','Y','','Y','','Stable and predictable, reproducible configs (flakes)','Easy installation of development and build environments','Declarativeness','Make the nix language less obtuse\r\nImprove the documentation and guides.','Probably containers with Podman','','','','Y','Y','','','','','','','','','','','','Y','','','N','Didn\'t feel the need yet','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Always felt that my desktop linux setup with my dotfiles felt fragile. When I discovered NixOS and home-manager I finally felt that my computing environment is stable.','Y','','Y','','','','','','','','','','Y','','','','','','','','','','','','lorri, niv. now i use flakes',''),(1195,NULL,NULL,'en','1582126127',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1196,NULL,NULL,'en','536313562',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1197,NULL,2,'en','1538012874','A2','A3','fem','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','Y','','','Y','','Y','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','','Y','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1198,'1980-01-01 00:00:00',5,'en','1861602036','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I started using package management with Nix around 2014 when I started using NixOS, but I didn\'t really learn it in full until I started to use it to build reproducible development environments a few years later.','Y','Y','','','','','Y','Y','Y','','','Y','','','Y','Y','','Y','home-manager','an enormous repository of package build specifications','reproducible builds','a simple and declarative (not imperative) configuration language','I would remove flakes, or at least most of it. Nix already supported version pinning just fine. Simple improvements to the channel system and bootstrapping problems with respect to downloads would have sufficed. In an effort to appeal to normies, all kinds of corners were cut, and the whole command line was shat up with half-baked changes. We\'re at serious risk of becoming like Bazel, a giant bloated chungus full of random adhoc features with no coherent design or logic to them.\r\n\r\nThe other really important thing I would change is to properly layer the project. The daemon should have a nice standard protocol (e.g. with gRPC) and no dependencies on any other parts like the evaluator. The evaluator should be a fully modular library which could be reused in e.g. a CI system. The command line should just just be a simple driver program which uses the evaluator and talks to the daemon with the standard interface. If some people are too addicted to flakes, they can make an alternative driver which supports it, and it shouldn\'t be allowed to pollute the evaluator or language semantics in any way.','I would probably use one of those janky dotfiles managers to attempt to replace home-manager. I\'d probably use Arch Linux as my main distro. Other than that, I\'d probably just be sad.','','','','Y','','','','','Y','','Y','','','','cabal2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I discovered NixOS around 2014 and started using it on my personal computer immediately because the design and philosophy was so obviously better than regular Linux distros. I was very tired of thing randomly breaking after updates on Ubuntu, or changing system configuration consisting of poking and prodding random files with no change tracking. NixOS was a breath of fresh air and has made using computers much more fun and less stressful.','Y','','Y','','','Y','','declarative configuration','rolling releases','rollbacks','Unlike Nix, overall I\'m pretty satisfied with NixOS. I guess one thing that would help drive adoption would be to have a small number of official but community-maintained standard configs that would set up desktop environments and replicate the \"batteries included\" feel of distros like Ubuntu. I like that the default configuration is unopinionated, but if you want pleasantries it requires too much manual research.','probably just Arch','Y','','','','','','','','','','XMonad','Home-manager','Nix-darwin','Nix is too important at this point to let Eelco have dictatorial control over the project, and he is a bit out of his league. It needs a proper governance structure.'),(1199,'1980-01-01 00:00:00',5,'en','363914726','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Engineer, control system','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Looking for ways to escape dependency hell. Learned of NixOS from a friend. It took 2 attempts to actually use it and now it works really smoothly.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','Reproducibility','Declarativity','','Java support. But honestly I think it is mainly the \"fault\" of the Java community and not Nix/NixOS (packaging Java SW is also hard on other GNU Linux distros).','dpkg or rpm (urgh)','','','','Y','Y','','Y','','Y','','','','','','mvn2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started with Nix on Debian and at some point just thought to go full Nix with NixOS.','Y','Y','Y','','','','','Declarativity; It is so nice to git-commit the system config and to know that there are no undocumented system config changes somewhere that would be missing on the next reinstall.','Reproducibility','The awesome interplay between all the Nix tools.','Wayland support with sway (but I think that is just a matter of time :-)','Debian, maybe Gentoo','Y','Y','','','','','','','','','lightdm + i3wm','The nixpkgs web-search and NixOS options web-search. Alternatively I just `git grep` the nixpkgs repo, e.g. to find parameters for expressions/packages.','','Nix/NixOS opened my eyes to the world of SW packaging. I didn\'t do this before, but with Nix it becomes so easy.\r\n\r\nTo me, there is no real lack of documentation. I initially thought there was, but now, I find the necessary info in the documentation or directly in the code (e.g. looking for solutions/patterns used for other packages).\r\n\r\nThere are so many bad build scripts in projects out there that make assumptions on the OS, but actually don\'t belong into the build system (e.g. git cloning extra dependencies, loading config files from hardcoded paths etc).'),(1200,NULL,NULL,'en','539060424',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1201,'1980-01-01 00:00:00',5,'en','775960865','A1','A4','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','move cache to ipfs','not linux really','','','','','','','','','','','Y','','','','cabal2nix','Y','','','','N','I\'ve never started actually, NUR is a simpler thing','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','move cache to ipfs','not linux','Y','','','','','','','','','','i3','','','don\'t cut russia please '),(1202,NULL,1,'en','901368847','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1203,'1980-01-01 00:00:00',5,'en','512042965','A2','A3','male','','','','Y','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend recommended it to me. Initially I only used it as a nice tool for managing servers (via Nixops), but eventually I decided to try using NixOS on my primary computing machines. This worked surprisingly well and now all my devices run Nix in some way.','','Y','','','','','Y','','Y','Y','Y','','','','Y','Y','Y','Y','','Real reproducibility','Configuration transparency','Binary caching out of the box (using public nixpkgs channels cache)','Remove nix-env and channels. Make flakes the default option.','Now that I\'ve tried nix, I can\'t see myself ever going back to anything I used previously. I\'d probably end up reinventing it myself (if I still had the knowledge of what it can do).','','','','Y','Y','','','','Y','','','','','','https://github.com/cachix/elm2nix','Y','Y','','','N','I\'m stupid','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Nix worked well enough for me to try a distro built around it and it stuck with me.','Y','','Y','Y','','','','Declarative service management','Stable environment (as in nothing should break if I don\'t touch the flake.lock)','Code reuse between machine configurations','Make user environments fully declarable. Right now only a small fraction of applications can be configured via nixos and home-manager, with the latter being quite hacky. I do realize that this is due to applications not really supporting external configuration methods and this is unlikely to change, but one can dream.','Gentoo','Y','','','Y','','','','','Y','','xmonad','https://github.com/nixos-rocm/nixos-rocm','',''),(1204,'1980-01-01 00:00:00',5,'en','281397573','A2','A5','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Nix is used for package management on the clusters I use for my research. I discovered Nix when I started to use theses clusters a few years ago.','Y','Y','','','','','Y','','','Y','','','','Y','Y','','','','','Reproducible builds with nix-shell','Package management on different plaforms (macOS and Linux)','','I would make the nix language simpler.','brew and conda. guix maybe. ','','','','Y','Y','','','','','','Y','','','','None.','','Y','','NUR','Y',NULL,'N','Y',NULL,'I find it too complex to use with respect to Debian.','Nothing, I\'m happy with Debian.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nixpkgs-format\r\nnixpkgs-review\r\nnix-direnv\r\n','None.',''),(1205,'1980-01-01 00:00:00',5,'en','707293205','A2','','','','','','','','','','','Y','','Y','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','','','Y','','','','','','','Y','Y','','','','','Integrates well with NixOS (Really like the configuration.nix approach)','Nixpkgs Monorepo hosting (on Github) and tools, like search on nixos.org. Make it extremely great to learn, troubleshoot and contribute. Everything is in one place.','Documentation (manuals hosted oh nixos.org) is pretty good.','Improve documentation (the manuals on nixos.org) even more.\r\n\r\nBe able to install nix as user in HOME and still be able to use the binary cache.','Fedoras toolbx is nice.\r\nMore flatpaks.\r\nWhatever gets the application installed (conda forge, brew).\r\nMaybe guix?? (never used it)','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','','','','','','being able to configure a Linux system with one file.','Everything is in one repo on Github. Great to learn, troubleshoot and contribute.','Being able to switch between generations on boot.','Improve documentation manuals on nixos.org even more.','OpenSuse (has btrfs + snapper per default); can also rollback the system on boot.\r\nFedora: seems to me to be an extremely polished desktop distro with a great community and documentation.\r\n','Y','','','','','','','','','','Sway (+ Gnome/Gtk libs/tools)','','','Really like the status quo. (Currently, I do not really care about the new features like flakes and nickel; I will follow the development though and take a good look at them after they have become stable.)\r\n\r\nAll in all: really love NixOS!'),(1206,'1980-01-01 00:00:00',5,'en','10062562','A2','A3','male','','','','','','','Y','','','','','','','','','Y','Y','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend of mine told me about Nix as a build tool which avoids the dependency hell of other package systems and also gives a declarative way to administrate Linux systems, compared to Puppet/Ansible.','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','','Y','','isolated/sandboxed builds','pure and reproducible evaluation','reusability/extensibility of existing derivations','','Probably still Ansible/Puppet for state management (installed packages/settings) and deb packages build with pbuilder for a bit of isolation (just thinking about it releases horrible repressed memories)','','','','Y','Y','','Y','','Y','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','the extensible module system','reusability of modules','testing configurations in qemu virtual machines quickly','A unified and clear way to override packages with consistent self references which is also composable','Probably Arch Linux or Gentoo','Y','','','','','Y','','','','','sway','','',''),(1207,NULL,NULL,'en','1150825496',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1208,'1980-01-01 00:00:00',5,'en','1443592775','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1209,'1980-01-01 00:00:00',5,'en','1470888863','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(1210,'1980-01-01 00:00:00',5,'en','1969402995','A5','A3','male','','','','','','Y','','','','','','Y','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A1','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','','','','','','','Y','','','N','I don\'t got the time bro. ','N','N','lots of monies. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1211,NULL,1,'en','669058615','A5','A2','fem','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1212,'1980-01-01 00:00:00',5,'en','896704833','A2','A5','male','','Y','','','','','','Y','','','','','','','Y','','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','As my daily driver','A3','I have been interested in Haskell since about 1999. Nix penetrated my consciousness because of contact with the Haskell community, but I deliberately avoided looking into it for quite some time, because I knew I did not have time for such distractions. Once I did look at Nix, it was immediately clear to me that this (the underlying principles, if not necessarily this specific incarnation) is a vast step in the right direction in terms of package management, system configuration, etc. I immediately set about transitioning my OS and my development projects to Nix and NixOS. Thus I have replaced one nightmare with another one. The difference is that pre-Nix package/system configuration it\'s just a big, continuous nightmare that offers no hope, while Nix is a huge time-sink of a nightmare with some light at the end of the tunnel: you can, with a lot of effort and frustration, produce useful, reproducible, (relatively) stable systems. It\'s veeeery painful, but it\'s better than the alternatives, and it offers hope of respite in the long-term.','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Declarative specification','Reproducibility','Providing development environments for colleagues','+ Remove all mention of `nix-env -i` from the docs. Whilst we\'re at it, remove `nix-env`.\r\n\r\n+ Remove channels, `NIX_PATH` and other sources of non-declarative irreproducibility, inconsistency and mystery. Flakes are a huge improvement.\r\n\r\n+ Replace the huge, messy, ad-hoc, organically-grown, woefully under-documented \'standard\' library with something coherent.\r\n\r\n+ Improve the error messages, which all too often are literally *worse* than useless: sometimes the error messages cause wastes of time which would have been avoided if the message were simply \"ERROR\" and nothing else.\r\n\r\nAdd home-manager, or something like it, as a standard part of Nix.\r\n','Sedatives?\r\n\r\nGuix?','','','','Y','Y','','','','','','Y','','','','https://github.com/cargo2nix/cargo2nix\r\n','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','As my daily driver','A3','Exactly the same reasons as those for starting to use Nix ... copypasta:\r\n\r\nI have been interested in Haskell since about 1999. Nix penetrated my consciousness because of contact with the Haskell community, but I deliberately avoided looking into it for quite some time, because I knew I did not have time for such distractions. Once I did look at Nix, it was immediately clear to me that this (the underlying principles, if not necessarily this specific incarnation) is a vast step in the right direction in terms of package management, system configuration, etc. I immediately set about transitioning my OS and my development projects to Nix and NixOS. Thus I have replaced one nightmare with another one. The difference is that pre-Nix package/system configuration it\'s just a big, continuous nightmare that offers no hope, while Nix is a huge time-sink of a nightmare with some light at the end of the tunnel: you can, with a lot of effort and frustration, produce useful, reproducible, (relatively) stable systems. It\'s veeeery painful, but it\'s better than the alternatives, and it offers hope of respite in the long-term.','Y','','Y','','','','','Declarative specification','Rollbacks','Extensibility and version mixing','','Was growing tired of stable Debian\'s outdated packages and the difficulty of trying newer versions of packages, before switching to NixOS. So I might have moved on to some other Linux by now. Or I might have finally given some version of BSD a go.','','','','','','','','','','','Xmonad','Oxalica Rust overlay','Mozilla Rust overlay',''),(1213,'1980-01-01 00:00:00',5,'en','1689589070','A2','A2','male','','Y','','','','','Y','','','','','','','','','','','Y','','','Y','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','declarative software management','automatically compiling custom packages','deduplication','','some kind of horrible patchwork of btrfs snapshots, docker, ansible, pacman','','','Y','Y','Y','','Y','','','','','','','','IOHK haskell.nix https://github.com//input-output-hk/haskell.nix\r\n\r\nNixpkgs node2nix thingy\r\nNixpkgs cargo2nix thingy','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','Y','Y','','','','','','','','','','Y','','','','','','','','','','dwm','flake-utils-plus\r\nlourkeur/miniguest\r\nnumtide/devshell','digga DevOS',''),(1214,'1980-01-01 00:00:00',5,'en','2045520677','A5','A3','male','','','','','','Y','Y','Y','Y','Y','Y','','Y','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','Frustrated that software was not packaged in a uniform way with system vs lang specific package managers.','','','','','','','Y','Y','','','','','','','Y','Y','','Y','','Reproducibility','Dependency tracking','Sandboxing','Remove flakes\r\nAdd types\r\nFix remote builder bugs\r\nAllow remote builders to pull from queue rather than be told what to do.','No idea :( Guix? Gobolinux?','','','','','','','Y','','','','','','','janky in-house thing to nix-build','https://github.com/NixOS/cabal2nix\r\nhttps://github.com/kolloch/crate2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','Got rid of Ubuntu over the summer between semesters','Y','Y','','','','','','Share configurations with friends and coworkers','Experiment with config without borking machine','','Support multiple kernels, overhaul module system to get rid of ambient authority.','No idea','','','','','','Y','','','','','Sway, XMonad','Home-manager!!!\r\n\r\nIt is very good, and the best way to introduce new uses to Nix.','','Very scared of flakes'),(1215,'1980-01-01 00:00:00',5,'en','780634263','A5','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Purely functional and declarative','','Y','','Y','Y','','Y','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Reproducability','Systems/projects composability','Unity across all software','Definitely include Nix 2.4 + in NixOS by default. \r\n\r\nDefinitely add content addressable paths. GET RID OF MULTI-USER NIX MODE! I can\'t sell nix to anyone if I have to convince them to give a bunch of priviliges and create a bunch of nixbuild accounts/permissions etc on their systems. Removing nix should be as simple as removing /nix in single user mode.\r\n\r\nBetter shells by default in which to debug derivations. \'nix develop\' does nothing to help.\r\n\r\nDebugging derivations is the worst part about nix. It\'s extremely difficult. Here I am 3 years in and I still get errors in my configurations that I have no idea where they came from. They likely came from my use of nixpkgs, but where? there needs to be better tracing back to the code you have in front of you.','Guix i guess, or some emacs/orgmode derived offspring.','','','Y','Y','Y','','Y','','','','Y','','','','dream2nix\r\nhttps://github.com/nix-community/dream2nix.\r\n\r\nEverything else is just confusing or repeating work.','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because I wanted to apply my dotfiles and system configurations in a reproducible, declarative way. I started with just user dotfiles and combined nixos with them.\r\n\r\nI want to build all of my machines from one repository, DRY.','Y','Y','Y','Y','Y','','','','','','REMOVE SYSTEMD as a hard dependency! be init system independent.\r\n\r\nSort of like:\r\nNixNG: https://github.com/MagicRB/NixNG\r\nSuckless NixOS: https://www.mail-archive.com/nix-dev@lists.science.uu.nl/msg34206.html\r\n\r\nFind a method of reproducing/saving STATES with nixos-generations! What\'s the point of rolling back to older generations if the state was already upgraded by a new NixOS generation. Maybe use some btrfs or zfs magic. I don\'t know how particularly. But I want time travel! \r\n','probably debian or arch.','Y','','','Y','','','Nixus','','','','Sway','DevOS: https://github.com/divnix/devos\r\nDigga: https://github.com/divnix/digga\r\nNix Bundle\r\nNix portable: https://github.com/davhau/nix-portable','yarn2nix\r\nNixOps\r\nniv','I\'m concerned about the direction that the nix community is taking with RFC-98, and carving out huge areas for gender minorities and enforcing that further by creating new community mod frameworks to kick out any unwelcome opinions. If this is how its going to be, we should carve out areas for alcoholics, drug abusers, etc. so they too can get better and thrive. (Serious). However, this would greatly increase the scope of the project, so I\'d rather leave those things outside.'),(1216,NULL,1,'en','613953468','A1','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1217,NULL,2,'en','1882031689','A2','A4','male','','','','','','Y','Y','','','Y','','Y','','','','','','Y','Y','','','Y','','Y','','','Y','','Y','','iOS, Android','N','N','Appeal of configuration management of the operating system; system reproducibility, appeal of more stability across upgrades',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1218,'1980-01-01 00:00:00',5,'en','774521528','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend (Lassulus) told me about it and convinced me that it\'s something I should try out','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','reproducability','statelessness, where possible','deployment (e.g. nix-copy-closure)','Most of the implementation and a bunch of implementation details, probably. E.g. evaluation performance, how binary caches work, how IFD works, the fact that a bunch of nix commands randomly start building if you hand them derivations now.\r\nMaybe I just have a problem with the governance of the development, so I guess I\'d like to see that change.','Probably ansible','','','','Y','',' ','Y','','Y','','','','','','https://github.com/stephank/composer-plugin-nixify\r\nhttps://github.com/svanderburg/node2nix\r\nhttps://github.com/nix-community/yarn2nix\r\nhttps://github.com/nix-community/bundix/\r\nhttps://github.com/rvl/bower2nix/\r\nhttps://github.com/nix-community/poetry2nix/','Y','','','disabledModule + imports','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as nix, I was told by a friend about it and therefore tried it. I preferred it over what I was using at the time, Arch Linux and Debian, so I started switching all my systems to it.','Y','Y','Y','Y','','Y','','the module system in general','switch-to-configuration','','Some legacy cruft, e.g. users-groups.pl. I\'d also like aarch64 to use a ggc newer than version 9.','Arch Linux, Debian, … GuixSD?','','','','','','Y','','','Y','','','right now, https://github.com/thoughtpolice/eris\r\nrobotnix, if that counts','https://github.com/svanderburg/composer2nix\r\nnixos-rebuild\r\nnixops',''),(1219,'1980-01-01 00:00:00',5,'en','341216789','A5','A3','male','','Y','','','Y','','','','','','','','','','Y','','','Y','','','Y','','Y','Y','','','','','Y','','','N','N','Better introduction to using flakes for data science apps and libraries (numpy, scipy, jupyter, pytorch, tensorflow, etc)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','More documentation/confidence in transitioning from Ubuntu/Debian systems to nixos',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Been following nix development for a couple of years, flakes is a game changer. Very excited to use them, though an easier transition to flakes would be great.'),(1220,NULL,3,'en','491850260','A2','A5','male','','','','','','Y','','','','','','','','','','','','Y','','','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','because i like software to work, i also don\'t like long compile times.\r\n\r\nNix was off my radar for so long, i don\'t really know how it was, it seems to get no mentioned on public channels, websites. I discovered it from a friend.\r\n','Y','Y','','','Y','embedded phone ','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','Flakes','Nixos system configurations','Nixos Testing framework','remove nix-env\r\nremove channels\r\nadd a GUI installer, just get students and newbies up and running quickly.\r\nMake nixpkgs smaller, break top level applications of into their own flakes, leaving just libraries to remain in nixpkgs.\r\nadd more Nixos tests\r\nImplement a pijul fetcher first class for flakes.\r\n\r\n \r\n\r\n',' think i would of knocked IT on the head, and retired from the ever increasing complexity and bit rot. :-)','','','','Y','Y','','Y','Y','','','','','','','dream2nix ;-)\r\n\r\ncabal2nix\r\nnode2nix\r\ncabal.nix\r\n\r\n\r\n','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','.','Y','Y','Y','Y','','Y','','flakes','Nixos configurations','Tests','','','','','','','','','nixinate','','Y','','',NULL,NULL,NULL),(1221,'1980-01-01 00:00:00',5,'en','1550630045','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Developer, blockchain','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I switched to NixOS from Windows, as I had become very interested in functional programming.','','','','','','','Y','','','Y','','','','','Y','Y','','Y','','nix develop','nix build','modules','','Guix','','','Y','Y','Y','','','','','','','','','','https://github.com/ursi/purs-nix (if that counts)','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I switched to NixOS from Windows, as I was getting very into functional programming.','Y','','','Y','','','','declarative swttings','','','A blessed means of managing files in home directories','Guix','Y','','','','','','','','','','i3','','',''),(1222,'1980-01-01 00:00:00',5,'en','1855681967','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','','guix','','','','','Y','','Y','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1223,'1980-01-01 00:00:00',5,'en','2060182119','A2','A4','-oth-','fuckin cyborg','Y','Y','','','Y','Y','','Y','','','','','','','','','Y','','','Y','','Y','Y','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','for config management','','Y','','','','','Y','Y','','Y','','','','Y','Y','','','Y','','declerative system','one single src of trouth','','nix ops really really sucks. i want something that solves all that ochestration issues','i prefer using guix over nix so its kind of the opposit situation','Y','','','Y','Y','','','','','','','','','woodpecker-ci','','','Y','','','N','i prefer guix over nix','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','one single src of truth','Y','Y','Y','Y','','Y','','to have guix','declarativeness','','i would move the nixos community to guix','i am using guix more than nixos','Y','','','Y','','','','','','','i3/sway','guix','nix and nixos',''),(1224,NULL,1,'en','1831519581','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1225,NULL,1,'en','1471729008','A6','A3','male','','','','Y','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1226,NULL,1,'en','1464211145','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1227,'1980-01-01 00:00:00',5,'en','444110508','A3','A4','male','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','To set up distinct development environments.','','','','','','','Y','','','','','','','Y','Y','Y','Y','Y','','','','','','Containers','','','','','','','','','','','Y','','','','mach-nix https://github.com/DavHau/mach-nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','Arch Linux','Y','','','','','','','','','','AwesomeWM','','',''),(1228,'1980-01-01 00:00:00',5,'en','824028702','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Seemed like a good way to have a configurable operating system. And I already knew someone familiar with nix, to help me.','Y','','','','','','Y','','','','','','','Y','Y','','','Y','','Reproduceable system config ','nix-shell','','I would add documentation that starts with a working derivation and works backwards through the concepts.\r\nI would add a way to make built in functions easier to discover.\r\nI would change nix function syntax to a more common model, braces for application.\r\n','I’d try to define my dev environments through docker images and shell scripts.','','','','','Y','','','','','','','','','','Go2nix\r\nNpm2nix','Y','','','','N','No package that I was generally missing','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Rollbacks and declarative package management ','Y','','','','','','','','','','','','Y','','','','','','','','','','Sway ','','',''),(1229,'1980-01-01 00:00:00',5,'en','1697765120','A2','A3','male','','','','','','','Y','','Y','','Y','','','','','','','Y','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Dotfiles on steroids, extensive package repository, good mix between stable & bleeding edge','','','','','Y','','Y','','Y','','','','','','Y','Y','','Y','','Configurable OS','','','Keep things static, focus on documentation','Ubuntu & reinstall the os every 6 months. Also docker.','','','','','Y','','','','','','','','','','dconf2nix, yarn2nix','','Y','','','N','A prominent `How to build your first derivation and contribute to nixpkgs`','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1230,NULL,NULL,'en','1293739901',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1231,'1980-01-01 00:00:00',5,'en','1580881998','A2','A3','male','','','','','','','','Y','','','','','','','','','','Y','','','','','Y','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Because of Windows 11 I changed to Linux Mint.\r\nFrom there I was actively searching for \"the best\" Linux distro for my case (professional and recreational programmer).\r\n\r\nFrom work I knew how frustrating non reproducibility is.\r\nAnd since I was new to Linux I was also not attached to the FHS.\r\nFurthermore the idea to have all the configuration as actual code (not just a YAML or a configuration folder) is very appealing.\r\n\r\nThe concept of Flakes were the last drop needed to convince me to make a cold jump into NixOs.\r\nIt is very hard and there is lots to learn.\r\n\r\nBut being able to roll back gives me confidence in trying out all the weird stuff.\r\n(I also used this ability already often enough...)\r\n\r\n1 Month of difficulties and learning the ecosystem, but now I could never go back.\r\nIt is truely the best way to build an Operating Systems and now I also realize it may the the best way to build and deploy Software in general.\r\n\r\nThank you all for your great work! \r\nThis is truely a great project and one of a kind!','','','','','Y','','Y','','Y','','','','Desktop','','','Y','Y','Y','','The nix store as immutable and deterministic cache of everything. I can be assured that what is inside the nix store is self contained and unchanging.','The nix system as build system (derivations and nix build) which deploys even private hobby projects directly into the OS for usage.','Flakes are a huge deal for me. I can see the input and ouput of programs/configuration/helper functions and use the building blocks like an actual programming project.','I come from a F# where the language support is incredible, most types are infered and if I hover over something it tells me exactly\r\nwhat is under my cursor.\r\nWith F12 I can easily go to the definition, even if it is in another repo sometimes (if the source is available).\r\n\r\nUsing nix as a language feels a bit clunky in comparison, since it actually has all the types and since the evaluation is mostly hermetic a language server should be (at first sight) be able to infer types and maybe also be able to infer whether some configuration options are missing at programming time.\r\nFurthermore, since most things come from nixpkgs, which is commented very good, it may be even possible to show these comments while programming such that one does not need to look up the documenation as much.\r\n\r\nBut in reality I need to run the nix evaluation manually and then wonder why my types do not fit (e.g. expected string but got list or something).\r\n\r\nIf I had this magic wand I would add deep and integrated programming support for the language.','I did not see anything that comes close to nix at all. I would probably just live the rest of my life in perpetual darkness and reconfigure my systems over and over again...','','','','','Y','','','','','','','','','','','Y','','','','N','Probably the time that I would have to invest to actually contribute something of value (from a code perspective).\r\nI am just not proficient enough and my nix code is hacked together frankenstein like from many online blogs and code snippets I found\r\nhere and there.\r\n\r\nAnd all the packages I use are actually already there.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Same story as nix, I do not see the projects as different. I, as a user, see NixOs and Nix as the \"same thing\".\r\n(Even if they are not technically the same.)','Y','','Y','','','','Desktop','Same as in the nix answers.','','','','','Y','','','','','','','','','','none+XMonad','','','Thank you all for your work and this great and unique project.\r\nIt is a ray of immutable and deterministic hope inside this mad imperative and non reproducible world of YAML and configuration drift.'),(1232,NULL,NULL,'en','509661005',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1233,'1980-01-01 00:00:00',5,'en','1504495669','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I found out about Nix and NixOS when learning Haskell, and I wanted to test another GNU/Linux distro.','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','Immutability','Reproducibility','A lot of packages in nixpkgs','add support for unicode in Nix URLs\r\nrewrite Nix in Rust\r\nadd Raku packages support','nothing like it','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I found out about Nix and NixOS when learning Haskell, and I wanted to test another GNU/Linux distro.','Y','','Y','','','','','Declarative configuration','Immutable','A lot of packages in nixpkgs','unify services configuration','Archlinux or Gentoo','Y','','','','','','','','','','River','home-manager\r\nnix-direnv\r\nemacs-overlay\r\nfenix\r\nnaersk','nixpkgs-mozilla',''),(1234,'1980-01-01 00:00:00',5,'en','1007679489','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','After being recommended to use it by a friend and an hour worth of research, I found it to be more reliable than Arch Linux (distro I used for 6 years). I can proudly say that I am only using NixOS as my primary OS for my devices!','','','','','','','Y','','','','','Y','','','Y','Y','Y','Y','','nix develop','nix-build','nix repl','Enough to make Nix -> hnix.','Whatever would\'ve been the hnix alternative, assuming it would\'ve been developed. Else, a bash script like previously. ','','','','','Y','','','','','','Y','','','','Cabal2nix and dconf2nix,','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Same as nix story both started same time. ','Y','','','','','Y','','Nix develop','Nix-build','Nix repl','Xterm being installed when xserver is enabled.','Arch Linux','Y','','','','','','','Y','','','Xmonad and qtile','','','I know this a rather unpopular opinion, but hnix is an interesting project that could potentially make nix development smother. '),(1235,NULL,1,'en','1545187461','A6','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1236,'1980-01-01 00:00:00',5,'en','1147168595','A1','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','Y','Y','','N','N','Its features make me feel curious and interesting',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Its features make me feel curious and interesting',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I hope you are not involved in politics as members of the open source community'),(1237,NULL,1,'en','1932559150','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1238,'1980-01-01 00:00:00',5,'en','848243740','A5','A4','-oth-','Nonbinary','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was introduced to Nix/NixOS in 2015, and I starting using Nix for personal projects in 2018.','','','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','Declarative semantics','Nix Store','Reproducibility','Standardize the .drv schema to expand the reach of the ecosystem. Imagine if pip could create .drv files directly.','Whatever package management came with whatever OS/language I was using. ','','','','Y','Y','','','','','','','','','','mach-nix\r\nyarn2nix\r\ncabal2nix\r\ncomposer2nix','Y','Y','','','N','I\'ve attempted to create packages that other people could use before, mostly ending in failure. So it\'s not from lack of interest or trying.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was introduced to Nix/NixOS in 2015 and starting using NixOS as my daily driver in 2018','Y','','Y','Y','','','','Declarative semantics','Integrated deployment tooling','Reproducibility','GUIs! An app store for nix-env and a user-friendly configuration manager for NixOS','Manjaro','Y','','','Y','','','','Y','','','SwayWM','Home-manager!!! Also nix-direnv','I used niv before I started using flakes. I used lorri before I switched to nix-direnv','Nope! Keep up the good work'),(1239,'1980-01-01 00:00:00',5,'en','1827671714','A2','A3','male','','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','Y',NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1240,'1980-01-01 00:00:00',5,'en','926759652','A2','A3','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','LineageOS (Android-distribution)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','casually running programs like vlc with nix run','A4','Someone on social media (on Diaspora*) recommended NixOS. Since i worked in DevOps and configured my desktop with Ansible, i was interested in the declarative configuration. I use NixOS since then...','','','','','Y','CI (Woodpecker, Drone CI fork which uses docker containers)','Y','Y','Y','Y','','','Workstation (multimedia production), Gaming machine, desktop computer, notebook','Y','Y','','','Y','','nix run nixpkgs.vlc','nix-shell','the nixpkgs collection','finish the new CLI UI in a userfriendly way (it\'s currently not)\r\n\r\n`nix install vlc` should work. also `nix run vlc` (starts vlc from default repo, nixpkgs stable or your system wide channel)\r\n\r\ni think this is the biggest issue that prevents mass adoption. marketing does not help when you have a bad product (not userfriendly in this case)','i used brew on mac. it\'s great\r\n\r\ni used apt on Ubuntu, debian and elementary OS. it\'s OK\r\n\r\ni used virtualenv for python development. it\'s a bit complex and frustrating to use. pipenv is a great alternative nowadays\r\n\r\ndocker also works well to run a program as the developer intended it. more intuitive UI than nix','','','','','','','','','','','','','','Woodpecker (Open Source Drone CI fork)','','','','','maintain packages in my nixos-config and use callPackage ../packages/','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','for gaming, for creative work (photo/video editing), for daily use. it\'s my main system!','A4','Someone on social media (on Diaspora*) recommended NixOS. Since i worked in DevOps and configured my desktop with Ansible, i was interested in the declarative configuration. I use NixOS since then... (same story as with Nix)','Y','Y','Y','Y','','Y','Workstation, Gaming machine, NAS, Notebook','having a stable and reliable system (stable channel) and use the latest version of specific packages (from unstable)','declarative configuration that you can use on multiple systems','it\'s easy to contribute (just create a pull request on github)','We need onboarding for new users\r\nDocumentation should be easier to understand\r\nIt should be easier to use (graphical tools for desktop users)\r\nMore testing and better QA, especially before releases\r\nMore clear policies how to do things as a nixos developer (rules for deprecation etc.). there are endless discussions for years, but no decisions making it hard to contribute','i used elementary OS before (it\'s great), i used Mac OS X before that (it was great back then)','Y','','','','','','','','','','Pantheon (from elementary OS)','nixpkgs-review','nixpkgs-fmt (i should use it more)','thanks for your work!'),(1241,'1980-01-01 00:00:00',5,'en','1584978377','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','to build somebody else\'s thing, and for NixOS','','Y','','','','','Y','','Y','','','Y','','','Y','','Y','Y','','independence from host ','compatibility with many other build systems','','Integration with langages that use package managers that usually download stuff on the fly (e.g. npm).\r\nDocumentation of why many things magically work (mkDerivation and callPackage are very obscure).','A collection of scripts calling other build tools, probably.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','just didn\'t get there yet, but probs will soon','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I was getting annoyed by Ubuntu breaking on me and being in obscure state.\r\nHad to use Nix to build something, and then full-on jumped into the NixOS trap. No regrets.','Y','','Y','','','Y','','declarative configuration','extreme configurability','future proveness (just rebuild anything that breaks, defined states, clear backups, incremental path forward)','I moved past that point now, but ... beginner things ...','Tissues.\r\nProbs still Ubuntu with a pile of bash scripts, maybe something like Ansible?','Y','','','','','Y','','','Y','','','','','Keep it up, NixOS is great!'),(1242,NULL,1,'en','1260303838','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1243,'1980-01-01 00:00:00',5,'en','49468995','A1','A3','male','','','','','','Y','Y','','Y','Y','Y','','','Y','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Nix\'s declarative nature scratches the yak-shaving itch of \"do work now, so as to avoid doing work later\".\r\n\r\ne.g. if SSHing into multiple \"pet\" servers, Nix made it easier to have consistent versions of tmux/vim/fish.\r\n\r\ne.g. Personal (hobby) side projects that only get infrequent attention would often need time taken to get code up to date with system packages. Nix eases that.','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','Y','','Nix flakes for ease of running software','Declarative package management and ephemeral development environments','OS configuration as code','add: type checking so errors found sooner\r\nchange: nix expression syntax to be more familiar with what other developers expect (without a magic wand, not worth it)\r\nadd: docstrings to more places','As a developer, just beat my system into shape.','','','','Y','Y','','','','','','','','','','cabal2nix.','Y','Y','','','N','Nixpkgs already has what I want and so I don\'t need to; or what I want is too niche; or what I want is too hard to add.\r\n\r\nI\'m barely above water in using nix for what I want to achieve. I don\'t think I\'d have much to contribute to PR reviews.\r\n\r\nAnti-social tendencies.\r\n\r\nThere\'s already a huge number of PRs which are awaiting review as-is.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Worked at a company where the devops team used Nix. Looked neat. I tried declarative package management per the nixpkgs manual, on macOS (pre-10.15).\r\n\r\nThere\'s some friction using nix on non-nixos, so decided to try it out. It worked well.\r\n(Previous linux usage: Linux Mint, Arch Linux).','Y','','','','','','','OS Configuration as Code','nixos modules in nixpkgs','config written in a programmatic language','add: developer-oriented distributions of NixOS, just as Spacemacs / Doom Emacs are to Emacs','macOS or Arch Linux.','Y','','','','','','','Y','','','','nix-direnv','nix pills ;) sorry! but ... I feel it sits in the wrong place. It\'s too \"in the weeds\" to be interesting for if you have no clue what\'s going on, but very \'slow\' if you\'ve got some nix familiarity.',''),(1245,NULL,3,'en','98384098','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Reproducibility','Isolation','Composability','Make flakes enabled by default, add more parallelism to builds (parallel derivations)','Docker, probably.','','','','Y','Y','','','','Y','','','','','','cargo2nix, node2nix, cabal2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','Y','','','','','','','','','','','','','','','Y','','Y','','','Sway',NULL,NULL,NULL),(1246,'1980-01-01 00:00:00',5,'en','626476982','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','I went through using Archlinux and Gentoo first. I liked both their configurability, but Arch was missing proper integration and re-linking of source-based (AUR) packages. Gentoo did better in that regard and had even better customisation options (USE-flags), but after some years I became tired of compiling everything.\r\nNixOS hit the sweet spot of pre-built binaries while maintaining transparent customisation options.\r\n\r\nDeclarative configuration, rollbacks, and atomicity were then additional bonus features. I heard of NixOS first in the https://binaergewitter.de/ podcast but also got evangelised by members of my local hacker group like Mic92.','','Y','','','','','Y','','','Y','','','','','Y','Y','','Y','','transparent customisation options of packages, with binary cache substitution as default','declarative package and system description, reproducibility','pureness of packages and environments','- easier secrets management\r\n- tranparent customisation options exposed to documentation (like USE-flags)','rpm for the base systems, and the common language-specific package managers like pip and virtualenv (python)','','','','','','','','','','','','','','','cabal2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','same as the story about Nix','Y','','','Y','','','','','','','','','Y','','','','','','krops','','Y','','','home-manager','',''),(1247,NULL,1,'en','417395934','A2','A2','-oth-','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1248,'1980-01-01 00:00:00',5,'en','500974562','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','pacman','','','','Y','Y','','','','','','','','','','https://github.com/DavHau/mach-nix','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted a way to reproduce the countless small tweaks every system accumulates with time.','Y','','Y','','','','','','','','Run Binaries designed for FHS Systems. Some VSCode Plugins for example rely on downloaded binaries which can\'t run.','pacman','Y','','','','','','','','','','i3','https://github.com/divnix/digga','',''),(1249,NULL,2,'en','1983658998','A2','A3','-oth-','idk','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','interest in reproducibility of systems and of configs between systems','','Y','','','','','Y','','Y','','','','','','','Y','','Y','','reproducible','composable','','better documbtation\r\nclearer separation between nix nixos','arch\r\nfreebsd','','','','Y','','','','','','','','','','','','','','Y','','N','nothing of value to others',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1250,NULL,NULL,'en','1577001785',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1251,'1980-01-01 00:00:00',5,'en','193049708','A2','A5','male','','','','','','Y','Y','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I did not like \"it works in my pc\" phenomenon at work.','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Reproducibility','Community: pretty good speed for package update','I am lazy: declarative machine configuration is so much easier.','- nixos-container which works with nix for other distros.','guix','','','','Y','Y','','','','Y','','','','','','','','','','simply by overriding','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','i have multiple machines to maintain and declarative configuration gives trusted and easier way to do that.','Y','Y','Y','','','','','Reproducibility','Declarative configuration','nixops','','','Y','Y','','','','','','','','','i3','','krops','Thanks for Nix/NixOS community for all the efforts to make these even better!!'),(1252,NULL,NULL,'en','383986451',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1253,'1980-01-01 00:00:00',5,'en','367409179','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I\'ve been using NixOS for quite some time (~8 years), but realized (embarassingly) late I could improve my user experience in non-NixOS environments at work by using Nix/nixpkgs.','','Y','','','','','Y','','','','','','','','Y','','','Y','','Easy access to a wide range of up-to-date packages in \"legacy\" environments (e.g. Ubuntu LTS)','','','','local builds from source\r\nDocker','','Y','','Y','Y','','','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I\'ve been a long-time Gentoo user since 2002, but always missed NiX\' \"change one thing and have everything depending on it reliably rebuilt\"-approach.\r\nIIRC I\'ve become aware of NixOS around 10 years ago and really loved the concept, but didn\'t have time to explore it further back then, but instead recommended it to a friend of mine who got really deep into it and even launched a start-up based on Nix\' technology.\r\nI\'ve become involved in supporting his work, developing expressions/modules for him and soon after that slowly started moving my personal infrastructure piece by piece to NixOS around ~7-8y ago, with now only one non-NixOS system left which is soon also to be assimilated.','Y','','Y','Y','','Y','personal computing/laptops','Single point of reproducable control/definition','Building from source being an integral and implicit part of the pkg manager','Hackability','1. Make introspecting the evaluation of an expression easier, to enable a better understanding of how a change to the input affects the output. Currently, doing modifications (e.v. overrides via overlays) requires a lot of experimentation, reading & understanding module/pkg sources and often intricate knowledge of Nix and builtin or \"lib\"-functions.\r\n\r\n2. Provide more straightforward way to explore & modify packages without requiring a deep understanding of Nix or the complexities of how this package is derived (e.g. when being part of a scope and not just the global pkgs fixed point):\r\n- change the version of a pkg\r\n- add custom patches to a pkg or point to a local development worktree (e.g. local git repo clone)\r\n- insert a customized pkg into the dependencies of a specific package without affecting all other system pkgs\r\n- introspect packages, their versions, maintainers, upstreams etc. easier from CLI tooling or external scripts \r\n\r\n3. Make it easy to interact with Nix data structures from external languages (e.g. Python), to reduce the barrier to interact with Nix systems and packages from pipelines and cloud-automation tooling\r\n\r\n4. Flatten the learning curve for common tasks\r\n\r\n5. Make the documentation more accessible to newcomers which haven\'t climbed 80% of the general Nix/NixOS learning curve yet. A lot of the documentation still feels like there\'s some (most likely unintentional) gatekeeping going on\r\n- reduce the usage of \"functional language terminology\" where not strictly needed\r\n- generate a better explorable \"API documentation\" of all builtins, lib functions, etc. with more and clearer examples','Gentoo','Y','','','','','','','','Y','','','','nixops\r\n\r\nI really want to use it, I love its idea - but it really lacks a \"getting started\" and \"take over existing NixOS systems\" documentation… the entry barrier is just too high right now/the documentation lacks describing common use cases/first steps without making a lot of assumptions existing nixops users can make',''),(1254,'1980-01-01 00:00:00',5,'en','1154377031','A1','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','At work we started using shell.nix on a Ruby project to provide a reliable development environment. This was so useful that we have placed shell.nix in all Ruby projects. We have since started developing with Haskell, and perform all production builds with haskell.nix.\r\n\r\nI also benefited from using home-manager on my MacBook.','Y','','','','','','Y','','','','','','','','Y','Y','Y','Y','','Development environments are reproducible','Built software can be downloaded from a cache, saving us many build hours (in CI and on development machines)','The software provided by nixpkgs','Add a type checker! If nothing else it would help me to understand nixpkgs.','Probably docker images.','','','','','','','','','','','Y','','','','Just haskell.nix (https://github.com/input-output-hk/haskell.nix)','Y','','','','Y',NULL,'N','Y',NULL,'I ran it in VirtualBox and the window manager crashed almost as soon as I started using it.','If I had time to learn how to use it properly and knew how to replace my current macOS workflow.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'niv (https://github.com/nmattia/niv). This may eventually be replaced with flakes, but I don\'t like to use experimental features for work.\r\nhome-manager (https://github.com/nix-community/home-manager) which is _way_ better for managing packages than nix-env. I use it in conjunction with niv to provide my own versions of packages.','bundix (https://github.com/nix-community/bundix) would be incredible for managing our Ruby projects, if it supported private repositories.\r\nWe found nixpkgs haskell support lacking because it was difficult to use (versions of) packages not provided by stackage.',''),(1255,'1980-01-01 00:00:00',5,'en','1375871857','A5','A6','male','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I love the declaritive nature of NixOS. It keeps my system clean and allows me to document my configuration.','','Y','','','','','','','','','','','Daily laptop','','','','','Y','','declaritive configuration','large binary cache of packages','/nix/store symlink architecture','RE: NixOS\r\n\r\nBetter Documentation. Period.\r\n\r\nThe documentation is aimed at developers or those with an existing knowledge of Nix/NixOS. I would categorize it as a reference manual. Based on the main NixOS website, the documentation, the forum and even this survey, it appears that the target user is a developer, and not an end-user. It\'s a shame, because I think NixOS could be a mainstream distro. You might say, \"but it can be used as a daily driver by an end-user\". It can, but the learning curve is more like a learning wall. It really is bad. But you know this. The fact that this has been an issue for a long time would indicate this is not a goal of the project.\r\n\r\nI have been using Linux since Red Hat 5.1. That is a pretty long time. I am no slouch. But I almost gave up on NixOS trying to get something as simple as getting a bash script working in my polybar setup.\r\n\r\nAgain, if your goal is not to become mainstream, I am just blowing wind.','I am using NixOS, and if it didn\'t exist, I would use Arch.','','','','','','','','','','','','','','','','Y','','','','N','Documentation.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I love the declaritive nature of NixOS. It keeps my system clean and allows me to document my configuration.','','','','','','','Daily laptop','declaritive configuration','large binary cache of packages','/nix/store symlink architecture','RE: NixOS\r\n\r\nBetter Documentation. Period.\r\n\r\nThe documentation is aimed at developers or those with an existing knowledge of Nix/NixOS. I would categorize it as a reference manual. Based on the main NixOS website, the documentation, the forum and even this survey, it appears that the target user is a developer, and not an end-user. It\'s a shame, because I think NixOS could be a mainstream distro. You might say, \"but it can be used as a daily driver by an end-user\". It can, but the learning curve is more like a learning wall. It really is bad. But you know this. The fact that this has been an issue for a long time would indicate this is not a goal of the project.\r\n\r\nI have been using Linux since Red Hat 5.1. That is a pretty long time. I am no slouch. But I almost gave up on NixOS trying to get something as simple as getting a bash script working in my polybar setup.\r\n\r\nAgain, if your goal is not to become mainstream, I am just blowing wind.','Arch.','Y','','','','','','','','','','bspwm','home-manager','','Please make NixOS more approachable for non-dev end-users. Better documentation with better examples. Define terminology. Walk an experienced Linux user through the differences between NixOS and other distros.'),(1256,'1980-01-01 00:00:00',5,'en','1547010161','A2','A3','-oth-','','','','','','','','','Y','','','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I have been using Exherbo Linux before because I liked the amount of control it gives over a system installation. However I felt that it lacked the ability to let me reproduce or clone a system configuration to another machine and to keep them in sync.\r\n\r\nAt some point I decided to just give it a try. I backed up my system installation on my personal computer and replaced it with NixOS. Nix has a very steep learning curve and I felt that the documentation was mostly unsuitable to help me with what I wanted to do, but after a few days I was able to use my computer again. I have been using NixOS since then.\r\n\r\nDuring that time period we also started using Nix to manage our company’s IT infrastructure.','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','','Y','','Declarative system configuration management','','','','Exherbo Linux','','','','','Y','','Y','','Y','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','See previous answer on how I started using Nix.','Y','Y','','Y','','','','Declarative configuration management','','','More sophisticated abilities to customise Linux kernel configuration\r\nEasier stdenv customisation','Exherbo Linux','Y','','','','','Y','','','','','Sway','','',''),(1257,'1980-01-01 00:00:00',5,'en','653002580','A5','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to build a home server with an easy-to-manage configuration, and NixOS fit the bill. I was annoyed at broken upgrades on ubuntu when trying it and how lost all the configuration in /etc gets','','','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','declarative system config','per project environment management','system rollbacks for when I mess up','a robust solution for managing per-language dependencies (mix, npm, cargo, etc) that doesn\'t create N x2nix tools','guix I guess','','','','Y','Y','','','','Y','','','','','sourcehut','mix release, which was folded into main nixpkgs tree https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/beam-modules/fetch-mix-deps.nix (considering moving to mix2nix\r\n\r\nnode2nix https://github.com/svanderburg/node2nix','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','see homelab story','Y','','Y','','','','','nixos module system','rollbacks','','a standard deploy tool, so far deploy-rs is my favourite','guix?','','','','Y','','','','','Y','','','direnv w/ nix integration\r\nhome-manager\r\ncachix','lorri\r\nnix-build.net','I think maybe nix could use a lot of simple project templates to help get people started, especially if it is like a rails app and you\'re dealing with frontend assets\r\n\r\nbut at the same time, a lot of the nix stuff I\'ve seen seems _very_ overengineered (e.g., devos https://github.com/divnix/digga).'),(1258,'1980-01-01 00:00:00',5,'en','1813372618','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','','Y','','','','','f*cked up \"governance\" structure','Puppet','','','','','','','','','','Y','Y','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','Y','','','','','','puppet','Y','Y','','','','Y','','','','','','','flakes',''),(1259,'1980-01-01 00:00:00',5,'en','1768676132','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','I started by using nixos','','','','Y','','','','','Y','','','','personal computer','','','','','Y','','comprehensive package set','rollback','unified system configuration','Using the module system for the entire package set instead of the overlays system.\r\nBetter support for plasma wayland.\r\na system input to nix flakes','The system package manager','','','','Y','Y','','','','','','','','','','yarn2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','I distro hopped and read about the NixOS distribution, got interested, and began installing it on my system.','Y','','','','','','','atomic updates','rollback','unified configuration syntax','Move more parts of NixOS into nixpkgs, so that nix profile can install/remove configurations on non-NixOS systems.\r\nnixops 2.0\r\ndream2nix','Manjaro','Y','Y','','','','','','','Y','','','home-manager','',''),(1260,'1980-01-01 00:00:00',5,'en','1435291242','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','N','Y',NULL,'Stuff that works, works great, but I always found it to be a bit of a hussle if something didn\'t work and I had to write packages myself, because of missing/incomplete/conflicting documentation, therefore sometimes it felt like my OS was holding me back (On that note I should mention that I it\'s already been two years since I\'ve last used Nix, and I cant really tell if something changed since then). Also I found it hard to get Packages merged into the Nixpkg repo, a User Repository like the AUR could probably help with that, I guess. ','If I have more Time I will consider using NixOS and therefore Nix again, because I really like the concept behind it and if I really get into it, it might become easier to find/understand the Documentation or just guess Syntax.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1261,'1980-01-01 00:00:00',5,'en','1302828799','A5','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','','','','','','','Y','Y','Y','','Y','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(1262,'1980-01-01 00:00:00',5,'en','1982107996','A5','A3','male','','','','','','','Y','','','','Y','','','','Y','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','Made development and deployment of Haskell projects more stable and reproducible. Was getting tired of figuring out inefficient Dockerfiles to circumvent recompiling the universe, and of the relative obscurity of Stack as a tool.','Y','','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','Dependency management','Building container images','Development environment','A more IDE-friendly (e.g. typed) language to have an easier time troubleshooting config, more noob-friendly documentation for more of the ecosystem.','Stack, Docker, antidepressants','','','','','','','','','','','Y','','','','cabal2nix','Y','','','','N','intimidated by my perceived tenuous grasp of the language, best practices and ecosystem','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Wanted to have a Linux machine and the idea of a fully declarative, reproducible OS sounded very appealing; also wanted to use nix outside of my Haskell projects.','Y','','','','','','','Configuration','Portability','Reliability','Again, better docs, friendlier language.','Debian, Pop_OS! or Arch.','','','','','','','','Y','','','','','flakes',''),(1263,NULL,NULL,'en','1592201306',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1265,'1980-01-01 00:00:00',5,'en','1545150311','A5','A4','fem','','','','','','','Y','','','','Y','','','','','','','','','','','','','','Developer, libraries/frameworks','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I had abandoned Homebrew and switched temporarily back to MacPorts, when I ran across Nix. I don\'t remember how I found it, but the goals of the project immediately appealed to me, and it also promised to solve my problem of trying to keep my config synced between machines. I also have quite a fondness for lazy pure functional languages, and so while the learning curve was a bit rough the fact that Nix uses its own custom language was actually something I rather liked about it. Also the fact that Darwin was one of the primary supported platforms was crucial for me.','Y','','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','Declarative fully-reproducible system config/package management with no dependency version conflicts','Keeping my global environment pristine no matter what dependencies my packages use, and allowing me to have per-project packages available (e.g. with direnv) without touching my global environment.','A diverse set of available packages, and allowing customization of the packages as needed','Documentation still needs improvements, especially the ability to look up documentation for nixpkgs functions. The monolithic manual page isn\'t good enough, I should be able to look up this documentation from the command-line, and it should be comprehensive. It would be nice if there was a Dash-compatible docset that also let me look up functions that way. But documentation on standard patterns, on flakes, on how to write stuff in general needs improvements.\r\n\r\nThere should also be examples of common scenarios. For example, I need to package a python binary that uses pypi. There\'s documentation on different functions used to package python, but it assumes I\'m already familiar with it. I don\'t know what a wheel is, or when setuptools is used. I\'m porting a Homebrew formula which uses venv and `venv.pip_install \"wheel\"` and `venv.pipi_install_and_link buildpath` and then a manual `pip install -v --index-url [url] buildpath` and I don\'t know how that stuff works or what it translates to in Nix. My in-progress package is using `python3Packages.buildPythonApplication` since I\'m just hoping that works. The documentation said `buildPythonPackage` is used for for `setuptools` and `buildPythonApplication` is used for `distutils` but the Homebrew formula doesn\'t mention either. It would be really helpful if there was just a \"So you need to package a third-party python application and don\'t know python?\", basically a workflow for how to go about doing this.','I\'d probably still be using MacPorts.','','','','Y','Y','','','','','','','','','','I used to use node2nix (https://github.com/svanderburg/node2nix) and a patched version of dep2nix (https://github.com/nixcloud/dep2nix) to satisfy development dependencies at a previous job, but right now I don\'t use any \"2nix\" tools (my Rust packages use naersk).','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','Once I got used to Nix, I wanted the same functionality on my personal Linode. I only interact with that occasionally though, but NixOS gives me the confidence to let it just auto-update stuff. I\'m also planning on moving that to flakes and unifying it with my personal setup, but I haven\'t done that yet.\r\n\r\nI\'m also planning on experimenting with NixOS on a raspberry pi. When I first looked into this it sounded like NixOS support for the RPi 4 was too experimental, but AIUI things are better now. I just haven\'t found the time yet to do that.','','','Y','','','Y','','Fully declarative system/package configuration and package management with access to the vast collection of nixpkgs packages and easy systemd service definitions','Using a single configuration set for both development machines and my home server, with per-machine customizations and a shared user definition (including Home Manager for my user setup)','Being confident in letting my machine auto-update every night, without even needing a reboot if the kernel didn\'t change','I would love an interactive `nixos-option` variant that let me explore the option tree and search it for option names (e.g. programs that I want to quickly check if it exists somewhere).','I\'d still be using Ubuntu on my Linode, and I\'d be sticking with Raspbian on my raspberry pi.','Y','','','','','','','','','','','nix-darwin (https://github.com/LnL7/nix-darwin). I use this to manage my local machines and am constantly working to get more of my machine state represented in it. At this point I consider it to be the only way I want to manage my macOS machines going forward.\r\n\r\nHome Manager. I use this as a nix-darwin module. I will be using it as a NixOS module too once I finally get around to merging my Linode NixOS config into my shared nix-darwin config tree.\r\n\r\ndirenv with nix-direnv (https://github.com/nix-community/nix-direnv)\r\n\r\nnaersk (github:nix-community/naersk) is wonderful for packaging up Rust packages, so much better than the in-tree nixpkgs solution that requires preprocessing the Cargo.lock file.\r\n\r\nrnix-lsp (https://github.com/nix-community/rnix-lsp) is a significant improvement over basic syntax highlighting for editing Nix files.','','I wish a little more care was given to macOS support. For example, Nix 2.4 and 2.5 suffer from a problem where enabling the macOS sandbox causes `nix` to fail when invoked from a build script, as `nix` attempts to read file metadata that\'s blocked by the sandbox and throws an exception when it fails. I filed a ticket about this already but there\'s been no activity on it (even though it also affects Linux if you muck with permissions on certain paths as it\'s fundamentally a permissions problem). This isn\'t the first time that turning on the sandbox on macOS has caused problems.'),(1266,NULL,1,'en','1071115296','A2','A3','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1267,NULL,1,'en','884411926','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','Forensic investigator','','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1268,NULL,2,'en','599279772','A5','A3','male','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','Y','','','','','','','Guix?','','','','Y','Y','','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1269,NULL,1,'en','733364190','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1270,NULL,NULL,'en','1033473828',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1271,'1980-01-01 00:00:00',5,'en','1744555608','A2','A3','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Because I installed NixOS.','','Y','','','','','Y','','Y','','','Y','','','Y','','','Y','','Setting up the system services declaratively, e.g. having a web server with ACME in a few lines','Reproducible and temporary environments to do development, e.g. to have the right dependencies to build a project','Avoid broken system by trying out a config or rebooting to an older generation','I\'d replace Nix with an existing language (possibly a strict subset) would be better so it can be learned separately and is less tied to packages and NixOS.\r\n\r\nIt would be a statically typed language to avoid mistakes and especially to have better IDE support to know what a configuration actually does.\r\n\r\nI\'d remove or at least discourage the use of the imperative nix-env, it clashes with the rest of Nix and leads to unexpected things e.g. if you use nix-env, update the system, then you still reference the old package.','Guix/Scheme','','','','Y','Y','','','','','','','','','','poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I read a lot about NixOS on e.g. reddit and hackernews and was very interested in the declarative and reproducible system pitch. I first tried Nix on my existing system but did not really use it, so I took an SSD replacement as the opportunity to install NixOS and stuck with it till now.','Y','','Y','','','Y','','Services as configuration','See Nix answer','Try new config/reboot to working generation','I\'d add a way to temporarily start services in a similar fashion to nix-shell, e.g. to have a DB or webserver for development. Ideally with isolation e.g. using network namespaces, but without requiring a full container.\r\n\r\nSupport \"committing\" temporary configuration changes done e.g. through nix-shell or in application settings. E.g. change Gnome settings and have an easy way to make that part of the system/user configuration.\r\n\r\nBetter support for managed users, the home configurations should be managed by NixOS by default.','Guix','Y','','','','','','','Y','','','','None','None','Keep up the good work!'),(1272,'1980-01-01 00:00:00',5,'en','1746341174','A5','A3','male','','','','','Y','Y','Y','','','Y','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I started using NixOS after an Ubuntu install broke yet again from an update. I wanted an operating system that was reproducible and could store its configuration as code. I started using Nix as part of that and it\'s now slowly making its way into my development workflow outside of NixOS as well.','Y','','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducibility: if it works, it works','Reproducibility: I can give a coworker a shell.nix and expect them to be able to run code','Declarative management of dependencies','I don\'t know that I can pinpoint what I would change, but I have found Nix to have a fairly steep learning curve where documentation is often difficult to find (if it exists for a given issue).','I have used docker for repeatable deployments and development environments, but it is a bit of a pain to develop with. I have used ansible for system configuration, but nix looks like it may have an interesting solution for that as well.','','','','Y','Y','','','','','','Y','','','','','','','','','N','I haven\'t found the time to improve packages that I think could be improved. With flakes, I wonder if it is worth contributing to core nixpkgs or not.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','My ubuntu install broke from an update yet again and I wanted an OS that wouldn\'t have that. Bonus points for totally declarative configuration!','Y','','Y','','','','','Reproducibility','Declarative configuration','Rollback','I would make it easier to deploy starting from an ISO rather than having to set up partitions and SSH key or password manually. I think I can already do that by building a custom ISO, but haven\'t gotten around to using it.','I have typically used ubuntu with docker for service deployment and ansible for configuration management.','','','Y','','','','','','','','i3','Agenix for secrets, morph for deployments (though I may change to another solution)','',''),(1273,'1980-01-01 00:00:00',5,'en','1672588155','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I love the declarative configuration. Also like the readability of the whole system, it taught me a lot about Linux, systems and the ecosystem','Y','','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','Declarative and thus can reproduce my setup to multiple systems.','No fear to upgrade, can always rollback. Also really easy to try out new software or major changes.','Vibrant community','Secure boot with authenticated filesystem','Debian/Ubuntu with Docker or Kubernetes','','','','Y','Y','','','','Y','','','','','','poetry2nix\r\nnode2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same reasons as for Nix','Y','','Y','','','','','Same reasons as for Nix','','','I don\'t know.','','Y','','','','','','','','','','i3 and sway','Home manager','',''),(1274,NULL,1,'en','730959875','A2','A2','male','','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1275,'1980-01-01 00:00:00',5,'en','1332357910','A5','A3','male','','','','','','','','Y','','','Y','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','Y','','Y','','Declarative configuration','Extensibility','Composable with other tools','','','','','','','','','','','','','','','','','','','','','','N','Nothing to contribute','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got tired of Ubuntu on my personal machine, and reinstalling and configuration breaking and not having a good way to itterate and manage my configurations. I looked at all the distros I knew of and came down to two. Something mainstream like Fedora or something and NixOS. I knew that NixOS would give me more control over what I cared about and that I felt it was built with more principle in mind and I knew there would be a learning cost, but I felt it would be interesting and worth the cost. I can happily say it was both those things. Also I love declarative languages.','Y','Y','Y','','','','','Declarative configuration','Transparent and community driven development','Well tested','I would make home-manager more important to upstream. I honestly try to do whatever configuration I\'m hm first if i can and fall back to NixOS config. I think the rest of the Linux echo system underappreciates the possibilities that can arise from properly separating system level configuration and user level configuration and home-manager is the only real attempt to do that. But things could be better. Just as there is an defined interface between firmware and OS, there can be a defined interface between system configuration and user configuration.\r\n\r\nLet me provided an example. I had to share my laptop with my SO for a bit. She is not a nix expert, so i would have liked to have system configuration define a sensible and usable set of default programs and configurations so I could just add an account and it\'s usable for anyone. Think plasma, Firefox and LibreOffice. At the same time, I am very particular about what programs and configurations I want to use. Like sway instead of plasma. So i would have loved to have loging in to be like running nix-shell. Once i log in it loads up my configuration shadowing the system one where there is conflicts. And my configuration is something i can change and update without sudo or rebooting. Home-manager gets me part of the way there, but there is no functionality in any login manager to just load the users shell if it\'s defined (at least not for Wayland). Something like this would iron out a serious wrinkle for me. I would even be willing to work on something like this if I get support from the community. In case this is anonymous a good thread to discuss is https://github.com/sddm/sddm/issues/916. Or just reach out to me I\'m Rosuavio on everything.','No clue','Y','','','','','','','','','','sway','Home-manager\r\nNiv\r\nObelisk\r\nNixGL','','Make home-manager a core project. Or make so modules can be reused from NixOS to home-manager.'),(1276,NULL,1,'en','1898514640','A1','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1277,'1980-01-01 00:00:00',5,'en','1484384','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','N','Y',NULL,'I have tried a few times. Always got stuck not knowing where to start. ','I will try again now that I have learned more nix and more about the system in general. Also flakes makes the whole thing fit better together and make more sense in my head so that makes it the perfect situation to try again.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I always got stuck not knowing where to start. ','I will try again now that I have learned more about the nix language and system. Flakes also make the whole thing feel like it fits better together in my head so that makes it easier for me to understand. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1278,'1980-01-01 00:00:00',5,'en','1613913371','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I just want things to work consistently across machines. I like Nix\'s declarative setup, but the main thing is full reproducibility.\r\n\r\nFor my work desktop I also use NixOS. And I think this is a matter of obsessive-compulsiveness on my part. Everything is perfect, small, and reproducible (at least, for my own arbitrary definitions of the above). It gives me a feeling of control in a world that is otherwise *very* hard to control.','','Y','','','','','Y','Y','','','','','','','Y','Y','','Y','','','','','I\'d get rid everything that isn\'t flakes. I don\'t understand what the point of Nix is without flakes. With flakes, it makes perfect sense to me. The documentation is not geared towards flakes though and it was hard to learn it first.','I don\'t know of an alternative.\r\nFor OCaml, we have Esy, which was directly inspired by Nix. We\'d keep using that for OCaml projects.\r\nMy second choice OS is Arch Linux.','','','','','Y','','','','','','Y','','','','https://github.com/serokell/nix-npm-buildpackage','Y','Y','Y','','N','It\'s a lot of work to get things to pass muster. By the time I get things working in a flake with an overlay, I\'m tired of messing it with it and am just happy it works. Plus, we have a guy at our company who upstreams stuff we need regularly to nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','As I mentioned earlier, it\'s kind of an obsessive-compulsive thing. I just want to know every part of my machine - to see it in front of me and have it checked in safely to GitHub. I love this article https://grahamc.com/blog/erase-your-darlings. I don\'t implement it but I like the vibe.','Y','','','','','','','The most important thing is the ability to search for code on Github. You can\'t do this with any other distro as easily. It\'s so helpful, and a true advantage of Nixos over other distros.','','','','Arch linux','Y','','','','','','','','','','xmonad','','nix-env, and channels. I just don\'t understand it. I tried using nix several times. Only when I discovered flakes did it make sense.\r\n','Nix is a gigantic and audacious project, and I think it\'s a remarkable achievement. The project gets a lot of flack, and it\'s true there parts that are hard to use and confusing. But I think that\'s more a symptom of the enormous intrinsic difficulty of the problem than any particular choices related to Nix. It\'s sad, but it\'s really hard to imagine how things could be better.'),(1279,NULL,1,'en','17570272','A5','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1280,'1980-01-01 00:00:00',5,'en','40243443','A5','A4','male','','','Y','Y','','Y','Y','','','','Y','','','Y','','Y','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','Due to my interest on func prog','Y','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','Determinism','Declarative language','Community','remove intermediate language, change website','Guix','','','','','','','Y','','Y','Y','Y','Y','','','Nixfmt','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','','Y','Y','','Y','','','','Declarative services','Rollback','','Installation ui','Debian probably','Y','Y','','','','Y','','Y','','','','','',''),(1281,'1980-01-01 00:00:00',5,'en','1230020596','A5','A5','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','As a Haskell / functional programming enthusiast, it was exciting to see this philosophy in linux. It was rough getting started, but now it\'s hard to imagine using any other OS.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','repoducibility','control over environment','rollbacks','More extensive documentation (does that count?)\r\nOh, and make Dell provide the drivers for the Precision 5760 so I have audio when I install something other than their in-house version of ubuntu. (The second I hear nixos works with that, the installation disk is ready to go.)','arch linux','','','','Y','Y','','','','','','','','','','','Y','','','','N','I\"d like to; this semester is busy with teaching.','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','Same as nix. But with more power.','Y','','Y','Y','','','','reproducibiility ','control','rollbacks','hardware support for Dell Precision 5760','Ubuntu is what Dell forced on my machine. Maybe Arch linux.','Y','','','','','','','Y','Y','','xmonad','','','mattox@illinois.edu if you want to followup antthing. Thanks!'),(1282,'1980-01-01 00:00:00',5,'en','375312988','A6','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','Y','','','','','Y','','','','','','','','','Y','','Y','','','','','Documentation and figuring out how to do some things is impossible.','Arch','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','',''),(1283,NULL,NULL,'en','1649105524',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1284,'1980-01-01 00:00:00',5,'en','1021347622','A5','A3','male','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','Y','','','N','N','Seems cool! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Seems cool!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1285,'1980-01-01 00:00:00',5,'en','248991663','A6','A5','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','Y','','Concise programmable declaration language','Not requiring root when installing software','Easy to downgrade packages','Make debugging a bit easier. e.g. A missing double quotation recently took 15 minutes to track down','apt','','','','','','','','','','','','','','','','Y','','','','N','I\'m still new and not familiar enough with nixpkgs.\r\nNixpkgs already has nearly everything I need.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Tired of ansible being slow and api changes.\r\nFrustrated with lxd (via snappy) auto updating and breaking production systems.','Y','','Y','Y','','','','Declarative system configuration','Ease of setting up systemd-nspawn containers','Ability to run stateless (root on tmpfs)','Built-in secrets management','ansible on debian','Y','','','','','Y','','','','Y','','agenix for secrets management','','Thank you for nix and nixos!'),(1286,'1980-01-01 00:00:00',5,'en','1524930513','A5','A3','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','','N','N','GitHub suggestion.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','GitHub suggested ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N/a','N/A','N/A'),(1287,'1980-01-01 00:00:00',5,'en','820002921','A3','A3','male','','','','','','','Y','','Y','Y','Y','','','Y','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','It was encouraged by the CTO of the company that I\'m working for. So we decided to develop our CI using nix to manage all the jobs and to make them reproducible on all of the developers\' machines.','','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','Reproducible builds','Package management','Environments configuration','I would change the way that nixpkgs is distributed so it doesn\'t break systems that easily when updating it.','Probably docker.','','','','Y','Y','','','','Y','','Y','','','','','','Y','','','N','I\'m currently focused on developing the tool that I use right now. But I intend to contribute soon.','N','N','I\'m actually considering using It to replace my current OS. I\'m still learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None.','None.','I\'ve seen a big improvement on Nix the last year. Keep that up! :)'),(1288,'1980-01-01 00:00:00',5,'en','1883159661','A1','A5','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','Read about it on, I think, LtU (Lambda the Ultimate). At the time nix-env supported binary upgrade via patches between arbitrary versions which was great because my internet was very limited.','','','','','','','Y','Y','Y','','','','','','Y','Y','','','','Reliable, repeatable builds. If it builds on my machine it\'ll build anywhere','Project (even sub-project) specific tooling with fixed versions, etc.','Fearless upgrade knowing that if almost anything goes wrong I can revert to a known good version','Better integration with the Java and Javascript build tooling','A lot of other tools! Dockerfiles, snaps, apt-get, ...','','','','','Y','','','','Y','','','','','','https://github.com/kolloch/crate2nix\r\nPreviously used gradle2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was tired of Debian or derivatives breaking on updates or painful major version upgrades on my home PC. Was in a work environment where I couldn\'t install Linux on their hardware so instead ran everything in a Linux VM. Switching from Debian to NixOS allowed me to trial it for 6+ months there before I switched my own machine over - easy enough with a separate home partition.','Y','','Y','','','','','Canned services/kernel modules with easy to configure options','Fast, safe update with rollback','','Home-manager by default. No one should be using nix-env any longer','Debian. Lots of packages and not too opinionated','Y','','','','','','','','','','xmonad','home-manager, lorri, comma (but the ambroisie version, not Shopify)','',''),(1289,'1980-01-01 00:00:00',5,'en','1930426708','A5','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','Windows for gaming, Linux for anything important, Mac never','N','N','I’m working on moving from Fedora 35 to NixOS but not there yet. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I’m just working on migrating from Fedora to NixOS and it has been enlightening. I love the configuration model as a big IaC fan but it would be nice to have some more complete examples. \r\n\r\nMaybe something like an i3wm (or KDE, doesn’t matter!) install from the minimal installer walking through the different sections and dot files and your options for managing them. \r\n\r\nI’m planning on using home-manager but it’s kinda difficult to grok the specifics of each part of the ecosystem and where they fit in. \r\n\r\n\r\nOverall I love it all, though, and am excited for this as the future of Linux'),(1290,'1980-01-01 00:00:00',5,'en','1423677134','A2','A3','male','','','','','','','Y','','','','','','','','','Y','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I heard about it from former student colleagues and then had a coworker that was using Nix on macOS. He introduced me to Nix and NixOS.','','','','','','','Y','','','','','','','','Y','','','Y','','Reproducible development environment','Ease of installation of software','','Add: improved docs','Arch Linux with AUR (was using it before I switched to NixOS)','','','','','','','','','','','','','','','poetry2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','for gaming with Steam','A3','I wanted to use Nix for the whole system.','Y','','','','','','','Easy system configuration','Easy rollback after upgrade (generation switching)','Centralized configuration','Add: centralized documentation.\r\n','Arch Linux ','Y','','','','','','','Y','','','spectrum, i3, sway, river','Home-manager','Mach-nix',''),(1291,'1980-01-01 00:00:00',5,'en','1490449837','A1','A3','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Cfgmgmt on Linux distributions wasn\'t good enough, so I tried NixOS.','','Y','','','','','Y','','Y','','Y','Y','','','','','','Y','','Declarative/generations','Monorepo','Mobile NixOS','Rendered docs (eg godocs or hackage) for https://github.com/NixOS/nixpkgs/tree/master/nixos/lib','Guix\r\nAn abacus','','','','Y','Y','','','','','','','','','','','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Cfgmgmt on Linux distributions was too tricks e','','','Y','','Y','Y','','Mobile NixOS','','','HTML rendered and searchable docs for https://github.com/NixOS/nixpkgs/tree/master/nixos/lib','Guix','Y','','','','','','','Y','','','','Mobile NixOS','',''),(1292,NULL,2,'en','1453576226','A5','A6','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','','','Y','','','','','Y','','','','','','','','','','','','Consistent dev env','','','','','','','','','','','','','','','','','','','','','','','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1293,NULL,1,'en','1632486919','A5','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1294,'1980-01-01 00:00:00',5,'en','871065433','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','job?','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','a friend told me about Nix while i was learning about packaging for a hobby project\r\nand nixpkgs has more packages than any other single source, so i started using nixpkgs on debian\r\nfrom there i quickly started using NixOS because i wanted to write a module for my project','','Y','','','','','Y','','Y','Y','','Y','Desktop','Y','Y','Y','','Y','','reliability','portability','single reference for similar packages','perfect UX (to be added)','snap','','','','Y','','','','','Y','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Desktop','A4','I started using NixOS to use a module I wrote for a package I wrote for an utility I wrote.','Y','','Y','Y','','Y','Desktop','module system','reliability / portability','single reference source for writing modules','a derivative OS that is successful as a regular desktop OS','debian','Y','','','','','','','','','','Sway','lorri','community support','This step is 20% of the survey...'),(1295,'1980-01-01 00:00:00',5,'en','1505707300','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','ChromeOS','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','After trying arch, freebsd, and Gentoo to find a distro that handles dependencies sanely, I decided to try nix on debian. It was everything I was looking for (simple means to build from source, development environment, reproducible, easy to create backups), and I can basically take it to any distro I want.','','Y','','','','','Y','','','','','','','Y','Y','','','','','Development environments with nix-shell','Imperative package management at close to head','Rollbacks','I\'d add a koan-style intro to the language: I still don\'t know it well or how to apply it','I\'d probably just stick with Arch, pacman, and docker','','','','Y','','','','','','','','','','','','','','','','N','Lack of experience','N','N','Some free time, a good intro document. I\'ve heard people say it\'s mostly experimental (I\'m not sure why), so seeing others use it as a stable environment.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1296,'1980-01-01 00:00:00',5,'en','2042406775','A2','A3','male','','','','','Y','Y','Y','','','','Y','Y','','','','','Y','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I got into reproducible builds with Bazel and Nix. Then I found out I can manage my own packages with Nix - e.g. bundle Vim with personalized config.','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','Reproducible builds (reproducible build dependencies)','Reproducible dev environment (nix-shell)','Ability to define and build own derivations','Make it easier to learn how Nix (the package manager) works, and easier to learn Nix (the language)','Have no idea','','','','','','','','','','','','','','','','Y','','','I maintain personal nixfiles Github repo with my own derivations','N','Don\'t know enough Nix the language. Also, I use Nix to build my own personal projects, not useful to have them in global Nixpkgs.','N','N','I don\'t want to change my primary OS (OS X).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'niv (https://github.com/nmattia/niv)\r\nlorri (https://github.com/target/lorri)\r\ndirenv (https://github.com/direnv/direnv)\r\nrules_nixpkgs (https://github.com/tweag/rules_nixpkgs)','','Thanks for making Nix available to everyone, and your efforts in making it better and more accessible!'),(1297,NULL,NULL,'en','1771587260',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1298,'1980-01-01 00:00:00',5,'en','1127235121','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','','Y','','','Y','','Y','','','','','','Home machine, gaming machine','','Y','Y','Y','Y','','Flakes','','','Nothing','GNU Guix','','','','','Y','','','','','','Y','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','For gaming','A1','','Y','','','','','','Home machine','One configuration per many machines','Containers','Rolling release','','GNU Guix','Y','','','','','','','Y','','','','Home-manager','','Thank you for the wonderful operating system!'),(1299,'1980-01-01 00:00:00',5,'en','223058940','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','','','','Y','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','','','','','','','','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','N','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nixpks website','',''),(1300,'1980-01-01 00:00:00',5,'en','1560929418','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','','','Y','','','','','','','','','Y','','android ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It made sense','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','','Y','','Reliable builds','Build abstractions and config management','Nixpkgs is a knowledge database','Add tests\r\nMake flakes an independent tool','Bash and avoid devops work','','','','Y','Y','','','Y','','','','','','','Cabal2nix\r\nElm2nix\r\nHaskell.nix\r\nSbtix\r\nbuildGoModule\r\nYarn2nix','Y','Y','','contribute directly to nixpkgs','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Best way to run nix\r\nSense of adventure at the time \r\nInnovative distro\r\n','Y','Y','','Y','','','','Worry free linux','First class extensions. All modules are created equal','','Secrets outside the store ','I wouldn\'t know anymore. An ox and plow?','Y','Y','','','','Y','Hercules ci runNixOS effect','Y','','','','flake-modules-core\r\narion\r\npre-commit-hooks.nix\r\nlorri','',''),(1301,'1980-01-01 00:00:00',5,'en','603347617','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was looking for a package manager with a comfortable command line interface, and a somewhat automatic way to update packages. Then I learned about guix, which had at that time a better CLI but worse community and infrastructure and they use GNU shepherd instead of systemd, and they don\'t use GitHub etc which turned me down. Then I realised I may try Nix as Guix is based upon it, and I never looked back. At some point I also discovered the nixpkgs-update bot and I felt like I reached the future.','','','','Y','','','Y','','','','','','','','Y','','','Y','','Declarative','','','I\'d make the content addressable features work better, see https://github.com/NixOS/nix/issues/5913, and make IPFS a standard way to fetch packages.','Use Guix and cry every day that they don\'t use GitHub and systemd.','','','','Y','Y','','','','Y','','','','','','https://github.com/tweag/gomod2nix\r\nhttps://github.com/svanderburg/node2nix\r\n','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Same story as for Nix.','','','Y','','','','','Declarative modules','Best package manager and package set ever','Reproducibility','I\'d finally implement rfc https://github.com/NixOS/rfcs/pull/72 .','Perhaps Arch Linux with nix or guix installed.','Y','','','','','','','Y','','','','','',''),(1302,NULL,NULL,'en','863757709',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1303,NULL,1,'en','710063648','A4','A5','male','','','','','','Y','Y','','','Y','','','','','','','','Y','Y','Y','','','','Y','','Y','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1304,'1980-01-01 00:00:00',5,'en','242535413','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1305,'1980-01-01 00:00:00',5,'en','1109317756','A2','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','Y','','','','','','','','','','builds.sr.ht','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(1306,'1980-01-01 00:00:00',5,'en','2038073135','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','','','','Home desktop','','Y','Y','','Y','','Access to nixpkgs','Access to NixOS','Declarative configuration','Make creation of flake.nix / default.nix less cumbersome. I always insert the same boilerplate. Can I get some supported language-specific templates, maybe with a wizard?\r\n\r\nMake nixpkgs the default again to run commands and search (nix run nixpkgs#foo) vs (nix run foo). Generally make it more user friendly. I still don\'t know how I get a python environment with additional packages with \"nix shell\" (so I use nix-shell)','Ubuntu+apt and language specific packaging/build-tools','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Declarative configuration is a beast.','Y','','','','','','Home desktop','Declarative configuration','Rollbacks','Community (I once needed to build my own nixos install image from unstable and used a derivation someone else created - it just worked)','Make declarative user configurations a first-class-citizen. ','Ubuntu','Y','','','','','','','','','','i3/sway','home-manager','','I love you'),(1307,NULL,NULL,'en','1394416804',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1308,'1980-01-01 00:00:00',5,'en','1137101531','A2','A2','male','','','','','','','Y','Y','Y','','Y','','','Y','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I started with Nix as an unprivileged package manager while making my Arch install immutable, then transitioned my home server from Arch to NixOS as the declarative config piqued my interest. Wouldn\'t go back.','Y','Y','','','','','Y','Y','Y','','','Y','','Y','Y','Y','','Y','','nix-shell','nix-repl','comma','I would deprecate nix-env and transform it into a npm-esque \"pseudo-imperative\" command that appends to the package list, reaching parity between NixOS, multi-user Nix, and nix-shell.\r\n\r\nI would also add an explicit type system to the Nix language, reasonably merging the \"config-hack\" type system into clearer set-type declarations and making Nix more approachable.','Probably a lot of unprivileged containers and overlayfs, and an OSTree-based system.','','','','Y','Y','','Y','','Y','','','','','','pip2nix, node2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','My Arch home server was getting unmanageable, and the declarative aspect of NixOS enticed me.','Y','Y','Y','','','','','Declarative configuration','systemd-nspawn containers','Nixpkgs overlays','I would make the declarative system configuration aspect applicable to user-mode Nix, not unlike home-manager. That would deprecate nix-env and turn it into a npm-esque pseudo-imperative installer, which would append packages to a declarative list, thus unifying Nix at all levels.','I\'m really not sure. Maybe Rancher or an OSTree-based system','Y','Y','','','','','','','','','Kodi','comma -- in fact I\'m writing a zsh integration plugin: https://github.com/thesola10/zsh-comma-assistant\r\n\r\nsops-nix (https://github.com/Mic92/sops-nix ) for securely deploying with secrets from a pure Git repository.','I attempted to start using home-manager, but haven\'t yet migrated my home config',''),(1309,NULL,NULL,'en','1881015694',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1310,'1980-01-01 00:00:00',5,'en','307820592','A5','A2','male','','Y','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I worked at a startup that used it, and I slowly grew to like it. Had some wonderful friends helping me along the way too, definitely couldn\'t have crossed the initial barrier without them.','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Reproducibility','Hermeticism','Speed','I\'d replace the Nix language with something else.','Probably Portage? I don\'t like to think about it.','Y','','','Y','Y','','','','','','Y','','','','poetry2nix, crate2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted to be able to share configs on all my systems easily.','Y','Y','Y','','','Y','','Configuration sharing','System validation (VM tests)','Fresh pkgs','I\'d add an easier way to deploy.','Gentoo.','','','','Y','','','','','','','sway','flake-utils and fenix','NixOps, morph, and some other deployment tools.',''),(1311,'1980-01-01 00:00:00',5,'en','1309276793','A2','A5','male','','','','','','','','','','','','','','','','','','','','','Y','Y','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Consistent way of installing software.','','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','Declarative system configuration.','Reproducibility','Wide software abailability','I would use a generic programming language like Guix does. (I don\'t use Guix because of their extremist views...)\r\nI would make the CLI more consistent (`nix` is going in that direction).\r\nI would push less minor version updates to stable releases (mostly vulnerabilities fixes) to reduce downloads.\r\n','Debian','','','','Y','Y','','Y','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','For it declarative approach to system deployment.','Y','','','','','','','Declarative configuration','Easy experimentation and roll-back.','Wide software abailability','I would use a standard programming language rather than inventing a specific one.\r\nImprove the documentation.','Debian','Y','','','','','','','Y','','','','','',''),(1312,NULL,NULL,'en','174117412',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1313,'1980-01-01 00:00:00',5,'en','1081478634','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','As a promising cross compilation ecosystem + as part of a NixOS installation','','Y','','','','','Y','','Y','','Y','Y','','','Y','Y','','Y','','Declarative way to build images backed by a large package repository','Creating build environments with all project specific tools in PATH','Building static executables','- Add functionality to somehow limit disk space use by derivations which are trivially built but occupy a lot of space (ie. disk image outputs)\r\n- Improve offline usability','System use: Ansible, Docker\r\nCross compiling: buildroot, yocto','','','','Y','','','','','','','','','','','gomod2nix\r\npoetry2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','To be able to use Nix (on a VM, so it\'s easy to give NixOS a try)','Y','','Y','','','Y','','Declarative OS configuration','Access to large software repository, mostly cached','Native ZFS support, six month stable release cycle','Remove the dependency of system scripts on Perl.','Arch Linux (desktop)\r\nDebian/CentOS (servers)','Y','','','','','Y','','Y','','','','Utilities like nix-diff, nix-tree','',''),(1314,'1980-01-01 00:00:00',5,'en','305588365','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','N','Y',NULL,'My goal was to install NixOS and create/maintain a configuration repo that would let me take my computer from new installation to \'how I want it\', but this turned out to be rather complicated in practice. There are lots of different tools and systems (various nix-something command, the new nix CLI, flakes, home manager, ...) and it was not clear how to put it all together into what I was actually after. I mostly ended up putting together different pieces found in the documentation and other people\'s configs. But basically, for everything I learned, I encountered two new things I didn\'t understand yet and eventually had to shift focus to something else.','Clearer structure of Nix technologies / general overview of the project as a whole and how it all fits together, better documentation (especially for beginners and \'how to get stuff done\'), better real-life examples.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'My goal was to install NixOS and create/maintain a configuration repo that would let me take my computer from new installation to \'how I want it\', but this turned out to be rather complicated in practice. There are lots of different tools and systems (various nix-something command, the new nix CLI, flakes, home manager, ...) and it was not clear how to put it all together into what I was actually after. I mostly ended up putting together different pieces found in the documentation and other people\'s configs. But basically, for everything I learned, I encountered two new things I didn\'t understand yet and eventually had to shift focus to something else.','Clearer structure of Nix technologies / general overview of the project as a whole and how it all fits together, better documentation (especially for beginners and \'how to get stuff done\'), better real-life examples.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Not exactly the same usecase as I was after, but I found https://ianthehenry.com/posts/how-to-learn-nix to be a decent reflection of how I felt trying to learn Nix.'),(1315,NULL,2,'en','1676383163','A1','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1316,'1980-01-01 00:00:00',5,'en','1653170529','A2','A1','male','','','','','','','Y','Y','Y','','','','','','','','','Y','','','','','Y','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','It started with reproducible development environments using nix-shell. Then, home-manager.','','Y','','','Y','','Y','','Y','Y','','Y','','','Y','Y','','Y','Build VM images','Declarative development environments','Configuration sharing','Effortless remote building','Add a proper type system to the language.\r\nRemove some of the weird quirks of the language that don\'t have much value.\r\nMake the error messages suck less.','Programming language specific tools for development (pipenv etc.)\r\nDotfiles for configuration management.','','','','Y','','','','','','','Y','','','','None outside of nixpkgs','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','On desktop: Arch Linux sucks.\r\nFor servers: Ansible sucks.','','','Y','','','Y','','Configuration sharing/reuse','Git history of the system for fearless rollbacks (and bisects)','','','Manual configuration','','','Y','','','','','Y','','','','- direnv (direnv-nix)\r\n- mozilla overlay\r\n- Nix-output-monitor\r\n- Niv/npins\r\n- nix-tree\r\n- home-manager','','You could have more questions targeted at users that *don\'t* use Nix/NixOS (anymore) somewhere or for some reason, e.g. that only use it privately. The Rust and Haskell survey do a pretty good job at this, for reference.\r\n\r\nAlso, never stop asking for feedback on the survey, and always run small pilot tests before going live. Keep up the good work!'),(1318,'1980-01-01 00:00:00',5,'en','1637664070','A2','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','Y','Y','Consultant','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','My colleague fpletz gave a talk at FrosCon about both Nix & NixOS that convinced me to take a look. Using it since then :) ','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','declarative builds and configurations','very easy to patch e.g. system libraries (or to modify packages in general)','reproducible packages','* Rather than having a BDFL who doesn\'t involve in core discussions about e.g. flakes in Discourse (and thus gives me the impression of them doing what they want), I\'d rather see a more transparent, community-centric and RFC-based (for large changes such as - well - flakes) development model.\r\n* a debugger (I know there are plans for this, but with a wand I\'d add one immediately ;-) )\r\n* error-reporting on the quality-level of Rust or Elm (I know how hard that is since I contributed a few fixes to the evaluator for this, but again, wand :p)','Docker\r\nWood','','','','Y','Y','','Y','','Y','','Y','','','','transloadit/yarn2nix (fork of nix-community/yarn2nix)\r\nnix-community/bundix\r\nnix-community/pip2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started using Nix and NixOS actively at the same time, so my answer for Nix applies here as well.','Y','Y','Y','Y','','','','rollbacks','declarative infrastructure','incredible customizability (I have custom patches for ~15-20 programs and I doubt that it would be that easy to maintain that on another distro)','* networkd by default\r\n* fix the broken initrd-openssh stuff\r\n* proper secret-handling everywhere! (to be fair, we\'re on a good path - in contrast to the state a few years ago)','Fedora','Y','Y','','','Y','','','','','','sway','home-manager (while I was skeptical at first, I can\'t imagine a setup without it these days!)\r\nrnix-lsp (though it\'s in a very very early state, so not mentioning it is a good thing IMHO)\r\ndirenv','node2nix (while I appreciate the efforts there, my non-representative experience says that it\'s almost always easier to straight go with yarn2nix)\r\ncomposer2nix (I usually try getting a tarball with a pre-existing `vendor/`-dir in it)',''),(1319,'1980-01-01 00:00:00',5,'en','1427127654','A2','A3','-oth-','not specified','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y','Y','','N','Y',NULL,'Tried it but had the feeling that Nix without NixOS is not worth my time. Makes things more complicated for me without benefit.','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Took to much time to switch from current used system. Also to much hassle to teach the teams I work with to stop using debian on our server and start using NixOS.','When there is NixOS based on FreeBSD.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Keep *BSD in mind.'),(1320,'1980-01-01 00:00:00',5,'en','237925234','A2','A3','-oth-','queer','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I really liked the idea that all my configuration can be done once for multiple computers, and that it\'s one place (or at least could be). Later it turned out that it\'s also very useful for my work.','','','','','','','Y','','','','','','','Y','Y','','','Y','','reproducibility','the fact that it combines different tools. I don\'t need to provide multiple files for my environment to be reproducible, I can just provide a shell.nix','stability','I would make the documentation perfect (I am not even sure what that means, I don\'t really have a solution)','I\'d be very sad. Maybe things like conda, and shell scripts?','','','','','','','','','','','','','','','','Y','','','','N','I don\'t think I know enough. Also the contribution process seems complicated.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','The same as with nix.','Y','','','','','','','The same as with nix','','','Documentation! ','Probably debian?','Y','','','','','','','','','Y','openbox','None','None','Thanks for all the hard work'),(1321,'1980-01-01 00:00:00',5,'en','302740790','A2','A3','male','','','','','','','','','','','','Y','Y','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','I started with NixOS to get a consistent system configuration on multiple PCs I manage. However, I found Nix to be a useful package manager on non-NixOS systems, especially MacOS','Y','Y','','','','','Y','','','','','','User Workstations','Y','','Y','','Y','','Safe and disruptionless upgrades','Declarative system management','Access to nixpkgs','I would make `nix-env -i pkg` a shorthand for `nix-env -iA .pkg` and add an interface for graphic package managers.','pacman and homebrew','','','','','','','','','','','','','','nixops','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','For managing multiple work PCs consistently','Y','','','','','','User workstations','Declarative system management','Safe and seamless upgrades','','- Add a nixpkgs-unstable ISO\r\n- Add simple Secure Boot configuration\r\n- Fix issues in automatic hardware configuration (such as LUKS on LVM)\r\n- Add optional guided installer','Arch Linux','Y','Y','','','','','','Y','Y','','','','',''),(1322,'1980-01-01 00:00:00',5,'en','1177580560','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I liked how the os configuration can be described in a single file.','','','','','','','','','','','','','','Y','Y','','','Y','','Declarative OS configuration','Isolated dev environments ','Package management ','Someway to install packages outside of nix and have them work. To easily work with newer versions of software or ones that are not in the package repo. Also I’m not a huge fan of the nix language.','Gnu guix. Arch linux','','','','','','','','','','','','','','','','','','','','N','Lack of knowledge. Cumbersome language','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','','','','','Gnu guix. Arch linux','','','','','','','','','','','Xmonad','','','Nixos is a really nice project. Keep up the great work!'),(1323,'1980-01-01 00:00:00',5,'en','1967597576','A2','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was drawn in by the reproducibility promise. I tried it a couple of times alongside Guix but dropped it because of the steep learning curve. At some point there was enough documentation around (blog posts etc.) that I had enough material to learn nix in my free time.','Y','','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','integrity','reproducibility','general purpose (e.g. opposed to pip, npm, etc)','add: type checking (possibly with optional opt-out), docstrings, introspection, formal specification to guide alternative implementations\r\nchange: error messages, inconsistent build options across Python, Lua, etc., factor out lib from nixpkgs\r\nremove: not sure','I don\'t think there\'s a single tool that can replace nix. I would probably use a mix of Docker, OS package managers (apt, pacman, etc.), other package managers (pip, homebrew, etc.)','','','','Y','Y','','','','','','','','','','none','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','started with nix, ended up with NixOS','Y','','Y','','','','','reproducibility','modularity','rollbacks','same answers as nix I guess','Debian for servers and Arch for dev workstations','Y','','','','','Y','','','','','AwesomeWM','home-manager, nix-darwin','NixOps','keep up the good work!'),(1324,NULL,1,'en','1473599508','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1325,'1980-01-01 00:00:00',5,'en','550808357','A2','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Security Architect','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','go programmer enthousiasts','','Y','','','','','','','Y','Y','','','','','','','','Y','','','','','','ubuntu + containers','','','','','','','','','','','','','','','','Y','','','','N','time/commitment','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','','','Y','Y','','','','','','','','','Y','','','','','','','','','','','','flakes\r\nnur',''),(1326,NULL,2,'en','1292250050','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','One of my colleague showed me his installation, and I fell in love with the fact that the whole os is configured by only one configuration file. ','','Y','','','','','Y','','','','','','','','','','','Y','','Generate the whole OS from a configuration file ','The Nix language is functional. ','It is most of the time stable. ','A better language syntax. Elm would be a great inspiration.\r\nAn easier way to write derivation and debug it. It is hard to manipulate variable without really knowing what is inside.\r\nAnd, last but not least, a better documentation. ','Arch Linux','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1327,NULL,NULL,'en','16247756',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1328,'1980-01-01 00:00:00',5,'en','133115998','A1','A5','male','','','','','','','Y','Y','','Y','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I previously used homebrew. I had tried to automate the configuration of a macOS workstation via scripts and text files (https://github.com/ldeck/macos-setup) and used this at work for a while to configure machines for a project. This kind of worked, but was clunky. \r\n\r\nI found there was a need to express dependencies, but this would require a more sophisticated configuration file; a language. Similarly, I was finding that the results weren\'t reproducible across machines, nor was it typically maintained by a team as it wasn\'t part and parcel of the project repositories. It was also not sophisticated enough to enable IaC for both the machine and projects.\r\n\r\nSo I searched around for alternative package managers and stumbled upon nix. Having an interest in functional programming concepts, the moment I saw \"Reproducible builds and deployments\" I was hooked, even though the learning curve was high.','Y','','','','','','Y','Y','','','','','','','Y','','Y','Y','home-manager','reproducibility','declaritive','packages','1. More macOS / darwin support. Too many packages aren\'t enabled for darwin.\r\n2. An adaptor for homebrew casks\r\n3. A nix GUI, to ease adoption and usage for less technical people.\r\n4. More documentation, tutorials and examples of best practices.','homebrew, macports','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,'N','N','If I needed to use a linux machine, I\'d strongly consider it.\r\nI\'m more likely to consider NixOS if it would naturally complement a macOS / darwin system.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','','Thanks for your work!'),(1329,'1980-01-01 00:00:00',5,'en','1366651869','A2','A4','male','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I stumbled upon the phd thesis on functional packages by eelco and I was floored. I find most of the stuff nix solves I secretly wished while I played with archlinux and ubuntus of this world. It made me pretty excited about linux and more interested in devops too. ','','Y','','Y','','','Y','','','','','','','','','','','Y','','Rollbacks and ephemeral states','Functional semantics','Speed and power','I would add more user helper functions and my secret wish is to add a machine learning module to nix system so that nix has a way of learning how to build packages. There is too much work made by hand. Also I wish nix was written in haskell or rust. ','I would use archlinux pacman manager or dream of nix. ','','','','','Y','','','','','','','','','','','Y','Y','','','N','Nothing, only my own ignorance. I wish to learn more and then to help in packaging. I really wish to contribute as soon as I am able. I dont care which oackage. It seems very helpful and compassionate to simply help in packaging software and finding better ways to do it. Its very humane and kind.','N','Y',NULL,'I could not get pro audio stuff work on NixOS and some livecoding programs such as TidalCycles which is a Haskell library running on top of SuperCollider. ','I am trying it now all the time but still learning how to properly package TidalCycles lovecoding. When I do that I can move to NixOS full time. For now I am dualbooting and googling ways to make pro audio stuff work on NixOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not much. I would like to learn more about other tools in nix ecosystem','','You are doing a great service to humans by working on Nix and NixOS. I wish you best'),(1331,NULL,1,'en','2019062841','A2','A3','male','','','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1332,'1980-01-01 00:00:00',5,'en','1252508425','A2','A2','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','You can\'t manage multiple machines easily with brew and Debian packages are a pain to build.','','Y','','Y','Y','','Y','','Y','','','','','Y','Y','Y','Y','Y','','central configuration','shared configuration files','easy patching of software','improve the performance by 10x','brew, Debian packages','','Y','Y','Y','Y','','','','','','','','','custom','node2nix, vim2nix','Y','Y','Y','local files','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I wanted to save disk space by not duplicating the standard linux libraries.','Y','','Y','','','','','shared configuration with nix','easy patching of software','get more up to date stuff compared to other Distros','improve performance by 10x','Debian Unstable','Y','','','','','Y','','','Y','','','home-manager, nix-update, nixpkgs-review, nix-index, nixpkgs-fmt, nixpkgs-hammer, nix-prefetch-url, nix-output-monitor, nixGL, nix-bash-completion, rnix-hashes, nix-tree, nix-template, cached-nix-shell, lorri','nixops, nix-fmt',''),(1333,'1980-01-01 00:00:00',5,'en','20547219','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','Easy rollback','Declarative management','Multiple versions of packages installed at once (mainly for dependencies)','The nix language...\r\n- A type system\r\n- Faster evaluation\r\n- Better debugging of evaluation failures / \"this derivation builds, but does not do what I want...\"','Probably rely on a linux distro\'s package manager, and a hodgepodge of different languages\' tools for different projects (cabal, npm etc).\r\n\r\n(Or, I\'d look again at guix)','','','','Y','Y','','Y','','','','','','Y','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Daily machine','A3','I had heard interesting things about it, and liked the functional dependency management. The final push was applying for a development job where they used Nix heavily.','Y','','Y','','','','Daily personal machine','Functional management of OS packages/configuration','Easy rollback','','(I guess this is probably a Nix thing, but the only place I come across it is via nixos-rebuild): Better flakes support for sparse git repositories - I manage my nixos config in a generic personal monorepo (along with dotfiles, personal documents & wiki, emails etc). The repo is pretty large and nixos-rebuild is very slow due to having to clone the whole repo and put it in the store. (NB: this is not the same as https://github.com/NixOS/nixpkgs/pull/135881)','Arch Linux or Guix probably','Y','Y','','Y','','','','','','','xmonad','Haskell.nix https://github.com/input-output-hk/haskell.nix\r\nCachix (at work)','','Thanks for all the work you have put into making using NixOS so great to use -- I\'m not sure if I could go back to any other distro now!'),(1334,NULL,2,'en','809199997','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','it came bundled with nixos','','Y','','','','','Y','','','','','','','Y','Y','','','Y','','nix-shell for ad-hoc development environments since i don\'t like polluting my system with development tools','nix-env, sometimes i feel too lazy to edit configuration.nix :P','being able to install packages for user rather than for the entire system','i really like `apk add --virtual .foo bar baz` from apk, it\'s kinda similar to nix-shell, but it\'s easier to use imo','apk','','','','','','','','','','','','','','','','Y','','','','N','i didn\'t need to',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1335,NULL,NULL,'en','1433085150',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1336,NULL,1,'en','989469041','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1337,'1980-01-01 00:00:00',5,'en','1147485330','A2','A3','-oth-','Neutral','Y','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started using it because of \"reflex-platform\"/\"Obelisk\", a Haskell project.','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Declarative package management','Multi-ecosystem builds','','Make channels and other magical bits less imperative in a user friendly way, full graphical support for configuration (I believe being declarative lends itself amazingly well to this, but it\'s a big effort and maybe too late to retroactively do it for the existing nixpkgs ecosystem.)','','','','','','','','','','','','','','','','None.','Y','','','','N','Getting started on learning Nix the language, the Nixpkgs ecosystem, etc. is incredibly hard and confusing. I felt lost when I wanted to contribute something. It\'s hard to know even where to start when you don\'t know anything. Now that I\'m working with Nix professionally I\'d feel more confident and in the meanwhile all packages I wanted are included :)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','For daily life','A4','I was using Nix on Mac at first which didn\'t always feel super smooth. When I decided to get a Linux machine again I went full NixOS because I liked the concept, being a functional programmer.','Y','','Y','Y','','','Desktop','Declarative package management and configuration','In theory being able to pick an earlier version of my system but tbh I very rarely need it.','','Same as Nix answer.','','Y','','','','','','','Y','','','','','','Thanks for all your work!'),(1338,NULL,3,'en','1703212739','A2','A2','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A2','','','Y','','','','','','','Y','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','N','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1339,'1980-01-01 00:00:00',5,'en','477802967','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','','','Better error messages','Hmm maybe docker','','','','','Y','','','','','Y','','','','','Node\r\nhaskell','Y','','','','N','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1340,NULL,1,'en','11633581','A3','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1341,'1980-01-01 00:00:00',5,'en','1610292555','A1','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted to find a way to declaratively list and install system dependencies just like how it\'s done in modern languages. Started with Nix the package manager on MacOS then on Ubuntu. Finally made the switch to full NixOS 6 months ago. Overall, it\'s been fun (but also painful at times) to learn and use Nix. ','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative development environment','Easy rollback','Build container images','Somehow being a lot easier to learn. Better support for FHS. steam-run works but not reliably in some cases.','Guix\r\nUbuntu','','','','','Y','','','','Y','','','','','','node2nix\r\npoetry2nix (found that it actually takes too long to compile packages so stopped and just use buildPythonPackage for the few packages that are not on nixpkgs)','Y','Y','','','N','Lack of experience/knowledge in Linux and the packaging process. Would be great to have more in-depth guides about these topics.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Wanted to find a way to declaratively list and install system dependencies just like how it\'s done in modern languages. Started with Nix the package manager on MacOS then on Ubuntu. Finally made the switch to full NixOS 6 months ago. Overall, it\'s been fun (but also painful at times) to learn and use Nix. ','Y','','Y','','','','','Declarative system and development environment','Ready-to-use services that can be enabled easily','Easy rollback','Same as for Nix.','Guix\r\nUbuntu','Y','','','','','','','','','','bspwm + dunst + rofi','home-manager','','Thanks for all your hard work! Very grateful to have such a passionate, smart and hard-working individuals working on Nix.'),(1342,'1980-01-01 00:00:00',5,'en','1670361318','A5','A3','fem','','','','','','','','','Y','','Y','','Y','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Major ubuntu update at work broke log-in for multiple users, including the CTO, so he decided we would switch all work computers to NixOS.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Declarative specifications','Composable specifications','Cacheable outputs','Add\r\nSecrets management\r\nNix language as a library (HNix??)\r\nFormalize the override and composition patterns of nixpkgs into a proper, consistent library\r\n\r\nRemove\r\nFlakes','An abacus','Y','Y','','Y','Y','','Y','','Y','','Y','','','','cabal2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same time I started using nix. Why would I want my OS to be able to break itself spontaneously, with no recourse?','Y','Y','Y','Y','','Y','My Router','Declarative system configuration','Rollbacks; transplantation of configurations is possible','System configurations as a library of composable specifications','An alternative to systemd, I guess','Please, don\'t make me think about that','Y','','','','','Y','Basalt https://gitlab.com/obsidian.systems/basalt','','','Y','','home-manager https://github.com/nix-community/home-manager\r\nreflex-platform https://github.com/reflex-frp/reflex-platform\r\nbasalt https://gitlab.com/obsidian.systems/basalt\r\nnix-thunk https://github.com/obsidiansystems/nix-thunk\r\n','flakes\r\nniv\r\nhaskell.nix','I am troubled by the increasing prominence of flakes. They do not help me use nix the way that I usually use nix, but when they are used by others that I depend on, then I have to go through hoops to integrate them into my projects. For example, by using flake-compat (https://github.com/edolstra/flake-compat). I have not been able to use them myself in a satisfying way. Maybe I am holding it the wrong way. I\'m not sure.\r\n\r\nMost of my large-scale nix projects end up looking like nixpkgs. These projects need components to be easily composable and overridable in a hierarchical way, where the composition and overrides are not known ahead of time. Flakes make that inestimably more difficult: they carry too much context about how their contents should be used, lock files are not compositional, and this is all wired together at the \'top-level\', whereas general nix can be put together in more complicated ways.\r\n\r\nI am afraid that if flakes become widely popular, there will be systems that are built in nixpkgs style, and there will be systems built in flakes style, and they will not play nice: This would be a terrible technological and cultural fork. I do not think the solution is to reformulate literally the largest and most up-to-date Linux package repository in the world, I think the solution is to figure out how such a project can possibly exist in a manageable state and formalize those patterns so that we can all use them consistently. I do not think flakes are fit for the kinds of extremely hairy dependency logic that can arise in projects that look like nixpkgs: These are extremely common! I am aware of multiple companies that configure their ecosystems in the style of nixpkgs.\r\n\r\nMaybe it is the case that flakes are not meant for a project like nixpkgs, that there is no need or desire to structure nixpkgs like that. But then I ask, what is the point? All sufficiently complex projects end up resembling the Entire Software Ecosystem in some way or another. Those are the projects that most need sanity guarantees on purity and composability. It\'s disheartening to see things move towards a \'module system for nix\' that isn\'t fit for purpose.'),(1343,'1980-01-01 00:00:00',5,'en','488903251','A2','A4','male','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','It removed anxiety of building a system. I am no longer stressed that the system will stop working due to a system update. If it builds once, it builds nearly forever. It is a huge relief to know that your work does not start bit rotting immediately after you put it away.','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Reliable build environments','Ability to declaratively build a whole OS via NixOS','Ability to integration-test a service on NixOS tests using qemu.','1. Open up Nix (the tool, the language) development to wider audience. I am afraid Eelco has become a bottleneck in Nix development :(\r\n2. Invest into long-term Nix support model to encourage bigger usage by bigger players with bigger pockets.','I would probably stop doing hobby programming projects alltogether and move to woodworking.','','','','Y','','','','','Y','','','','','','https://github.com/erlang-nix/rebar3_nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','If you get into Nix, NixOS just sucks you in.','Y','Y','Y','Y','','','','Declarative config','','','','Ubuntu / Windows','Y','','','','Y','Y','','','','','AwesomeWM','home-manager','Nixops',''),(1344,'1980-01-01 00:00:00',5,'en','242051874','A2','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Primarily - nixos gives me a way to manage my servers without needing 3rd party configuration management tools.','Y','Y','Y','','','Y','','declarative configuration management','ease of recovery, see #1','creating a cluster of similar machines is a breeze, see #1','1. maintaining specific package versions could be easier, I know the workarounds, I wish I would not need them\r\n2. I wish I knew how to create a nixos container with unstable options on a stable nixos base system, I just can\'t figure it out, if it is possible at all','arch or debian- depending on package availability, together with ansible','','','','','','Y','','','','Y','','','',''),(1345,'1980-01-01 00:00:00',5,'en','407996650','A1','A3','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Because I uses Haskell','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','','','','','','','','','','','','Y','','','','','','','','cabel','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','xmonad','home manager','',''),(1346,'1980-01-01 00:00:00',5,'en','393740581','A2','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was made aware of nix while searching for a way to cross compile Haskell packages for AArch64.','','','','','','','Y','','','','','Y','','','Y','Y','','Y','','nix develop in combination with direnv','nix flake update (probably my most used command)','','Add a way to inspect the file system of the build container when a build breaks.\r\n','Programming language specific programs like stack (Haskell) or cargo (Rust)','','','','Y','Y','','','','','','Y','','','','cabal2nix, crate2nix, elm2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I started using nix and every where NixOS was mentioned. I was a bit frustrated with Manjaro and then decided to make the switch. One important factor was that I wanted to save my system configuration in a repository. NixOS forces you to have a complete and up to date system config and you can easily share one config across multiple machines.','Y','','','','','','','Quick access to old system configurations if something breaks.','A unified and very expressive way of configuring software.','','','Probably some Arch based Distribution. Maybe also Gento','Y','','','','','','','','','','XMonad + picom','home-manager, nixos-hardware, nix-direnv, nix-doom-emacs','emacs-overlay (now using nix-doom-emacs)',''),(1347,NULL,NULL,'en','1205722819',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1348,'1980-01-01 00:00:00',5,'en','1608081367','A2','A3','male','','Y','','','Y','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'ve been suffering from python and cmake related deployment issues (e.g. dev environments) and looking for alternatives. Deployment at the software-level is one of the big issues in research reproducibility. I\'ve never felt satisfied with docker as a deployment solution. I haven\'t had an incentive to invest in something as complex a k8s.','Y','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','Composability\r\n\r\nE.g. you can build [colmap](https://github.com/colmap/colmap) with docker, and build some [NeRF](https://github.com/sxyu/svox2) solution with docker, but it\'s hard to have them in the same environment, so you\'ll fallback to microservices and construct some unnecessarily complex architectures. With Nix you can have them both (and more), without microservices, and that\'s my selling point.','Inspectability\r\n\r\nFundamentally, with Nix you always can find out what goes into your closure and why. When python Poetry or conda fails with the dependency solver error, you\'re usually left without actionable information: e.g. conda would throw many lines of libc semver inequalities at you, which aren\'t particularly helpful. With Nix you could hypothetically follow the entire evaluation process and visualize all the dependencies, all the cache-misses, etc. In practice this is limited to tools like nix-tree, which is however already a big leap forward. I\'m sure there are more parts of the Nix deployment process that could be visualized fruitfully','Cache-ability\r\n\r\n...maybe? I\'m using direnv with `use nix` and `use flake` a lot and I\'m really amazed how smooth the experience is, I know it\'s fundamentally impossible with conda. One of the reasons it is possible with Nix though, is that its store as a \"cache\" is [assumed to be] always valid','0. I\'d make dlopen() \"just work\" with graphics and CUDA on Non-NixOS\r\n1. Marketing and mindset: I\'d enchant the world to use Nix instead of docker when all the want is build something in isolation. This would probably include 100% of NVIDIA\'s DL research. This would change the positioning of Nix from a marginal hacker\'s tool (I\'m sorry) to something universally worth investing in\r\n2. If the magic wand hadn\'t power over the minds of peoples, I would conjure up static types: this would help greatly with discoverability of Nix and nixpkgs features, and improve overall UX and stability\r\n3. The wish #1.5 would\'ve been Nix-by-default on sci-comp clusters with a shared store, but you\'re already working on CA derivations','I\'d have to rely on Conda and maybe invest in Spack. But I\'m not sure if these would exist without Nix','','Y','','Y','Y','','','','','','Y','','','','','Y','Y','','a NUR-like repo with CI','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Nix on archlinux is nearly impossible (possible, but not worth the effort) to use with graphics and CUDA.\r\nRather than abandoning Nix, I thought I\'d try an environment where Nix is supposed to work smoothly.\r\n\r\nLater I found other reasons: e.g. I\'ve realized my archlinux setup had a tendency to \"grow out of control\" that I do not so far observe with declarative package management.','Y','','Y','','','','','Ability to quickly apply big changes to the environment\r\n\r\nE.g. with Nix I still can have a polluted global scope (like PATH, or PYTHON_PATH, etc), but it doesn\'t matter because I can nuke or replace things by editing a list in a small program written in nix-lang','Ability to easily use stuff not provided by nixpkgs\r\n\r\nWith archlinux you have AUR and PKGBUILDs, and you can build installable archives for pacman, but maintaining these even with helper tools (yay, pacaur, etc) is painful and unreliable. It\'s also too laborious if you want the same custom packages on multiple machines. With NixOS I put an in-tree derivation in a single overlay, and then it\'s in my git, and part of `nixosSystem` evaluation, I don\'t have to remember about it','...I don\'t know, e.g. systemd integration is convenient','Cannot answer, because I\'m not sure about the focus of NixOS. If Nix knows how to build and compose things together, then Nix know how to ...\"run things\", on a single machine? ...build an OS from a declarative config?','Archlinux because I\'m using NixOS to build something like archlinux but flexible','Y','','','','','','','','','','i3wm','direnv','mach-nix','Thank you!'),(1349,'1980-01-01 00:00:00',5,'en','1756545568','A3','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Since I found out about Nixpkgs and Home-Manager, I started basing my dotfiles into it. The only reason not to use it since then is if I have to use a non-systemd based system (Gentoo with OpenRC for example).','','Y','','Y','','','Y','','Y','','','','','Y','Y','Y','','Y','','Flakes, specifically because of the capability of installing a system from zero and simply referencing the Git repository where the flake is hosted to build what\'s needed.','Possibility to write development environments','','An improved documentation guide to introduce separately into the following:\r\n- Nix language introduction and guide\r\n- How to use the Nix language for development\r\n- How to use the Nix language for system management\r\n- ...','Nothing','','','','Y','Y','','','','','','','','','','poetry2nix (https://github.com/nix-community/poetry2nix)','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Daily Driver usage (leisure)','A2','Got interested into moving into NixOS and was able to replicate most of my tasks that I could do in another distro.','Y','','Y','','','','','Define system configurations through files','Building systems through flakes','Separating the system layer from the user layer through home-manager','Improve the documentation for beginners regarding how to configure the system and how Nix applies to it (as a beginner who saw the configuration.nix file, I just thought it was adding options and that\'s it, but didn\'t know how Nix integrated with it)','Would stay on Gentoo for my personal computer and use Debian-based distros for work.','Y','','','','','','','','','','Pantheon, Sway','Home-Manager','Niv','Have a team dedicated to improve the documentation. Seriously, this would be the convincing bit for migrating. Xe, from christine.website, has been throwing some useful guides on how to configure most of the stuff on NixOS. Jonringer has thrown a very cool video on YouTube about how to migrate to Flakes. There is a guide about builtin functions that I\'ve found recently and helped a lot when I started creating dev environments with Flakes. Domen has nix.dev which is a great reference for starters when creating development environments on the legacy way. But that\'s it. I know you want people to read the documentation, but it hasn\'t come to a level as clean as the Arch/Gentoo documentation (not saying they are the best references out there, but I found them as excellent points for guidance when I need something from their system, something I wish I could say from NixOS or Nix in general).'),(1350,NULL,1,'en','1070859141','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1351,'1980-01-01 00:00:00',5,'en','1027901687','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was annoyed that each language had to have their own package manager, I googled for something different, and I found Nix.','','','','','','','Y','Y','','','','','','Y','Y','Y','','Y','','Declarative system and package management','Reproducibility','Binary caching','Better error messages / debugging.','I would be stuck using application-specific package managers such as opam, pip or conda, npm, etc.','','','','','','','','','Y','','Y','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I had never found a satisfying Linux distribution (I was tired of breaking changes at major updates). I started using Nix first, and then NixOS and found that this was the one. It\'s a love story.','Y','','','','','','','Declarative package and system configuration management','Safer updates','Reproducibility across several machines','A graphical tool to manage disk space of the Nix store, showing which roots (system configurations or other) are eating large share of disk space.','I would be stuck using a bad Linux distribution (or maybe I\'d have eventually managed installing ArchLinux).','','','','','','','','','','Y','i3','Cachix\r\nCoq Nix Toolbox','cached-nix-shell',''),(1352,'1980-01-01 00:00:00',5,'en','1982503596','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Tired of building Debian packages and I needed specific versions of several packages. ','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','Declarative config','Easy to contribute to nixpkgs','Easy management of specific packages','I\'d speed up the PR process in nixpkgs','Probably fedora silverblue','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Needed specific versions of several packages. Building Debian packages is terrible.','Y','','Y','Y','','','','Declarative config','Ability to mix stable/unstable packages','Zfs support','','Silver blue/ something like rancher/sidecar linux','','','','','Y','','','','Y','','i3','','','Keep up the good work!'),(1353,'1980-01-01 00:00:00',5,'en','1714034974','A2','','male','','','Y','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','- Package Installation AS Konfiguration File (ansible for one Maschine xD)\r\n- Easier Rollback\r\n','','Y','','','','','Y','','Y','','','','','','','','','Y','','','','','Automatically package upgrade on the nixpkgs github project (i really often create issues with outdated packages).','Arch Linux - best systemd implementation with up to date packages','','','','','','missing document of experimental features ','','','Y','','','','','Woodpecker','','Y','','','I experience with flakes','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Asked already ...','Y','','Y','','','','','','','','','','Y','','','','','','just nixops tried (other not heard of) ... which does not work ;(','Y','','','sway','','Nixops\r\nHydra','Please keep packages up to date.\r\nMaybe with an not, which creates MergeRequests.\r\n\r\nnixpkgs is really big to clone, maybe split this project.'),(1354,NULL,NULL,'en','194879627',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1355,NULL,NULL,'en','1825024799',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1356,NULL,1,'en','1029047491','A2','A3','fem','','','','','','Y','Y','Y','','Y','Y','','Y','','','','','','','','','','','Y','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1357,'1980-01-01 00:00:00',5,'en','1714870866','A5','A2','-oth-','Nonbinary','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Frustration over accidentally breaking my linux installation when trying to fiddle with drivers and/or trying out different linux distros.','','','','','','','','','','','','','My laptop and desktop','','Y','Y','','Y','','Ability to roll back changes safely','Visible config all in one place','Easy temporary installation of tools','I\'d want the error messages to be better, both at describing what\'s wrong, and where in the source it\'s actually broken. I\'d also want evaluating nix expressions to be a little less memory hungry, since upgrading my laptop is fairly intensive. ','Honestly, there\'s nothing quite like it. I probably would still be using Bedrock Linux with Debian, Ubuntu, and Gentoo.','','','','','Y','','','','','','','','','','None of them work well. I tried cabal2nix, stack2nix, and iohk\'s alternative nix infrastructure for Haskell, and they\'re all pretty much broken.','Y','','','','N','I haven\'t had anything to contribute. All the software that I need is already in Nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I had been using Fedora, and trying to install the proprietary NVIDIA drivers somehow got my graphics card into BGRA mode instead of RGBA mode. The computer was still useable, but the red and blue channels were switched and it looked pretty funky.\r\n\r\nSo, naturally, I uninstalled the drivers. This didn\'t fix it. Eventually, I figured out that installing the drivers a second time would make it switch back, but that was the last straw of a number of hardware issues that involved messing up my configuration while trying something out, and then having a stressful week of trying to figure out how to undo it.\r\n\r\nWhen I read that NixOS would let me roll back my configurations, I knew that I had to try it. Since then, I\'ve moved computers a few times, and it\'s really amazingly useful to just be able to put my configuration in a git repository, grab it with wget, run nix, and it pulls down all of my programs and configuration files, so I\'ve stuck with it.','','','','','','','My laptop and desktop','Being able to rollback builds','Having a reproduceable configuration','Having all the software I want easily installed in a temporary environment.','Something that actually explains how NixOS modules work somewhere in the installation flow would be helpful. I didn\'t actually understand how they were structured and how they wouldn\'t cause errors if they both defined different package sets, for instance, until recently. I wish that I had known that earlier.','Bedrock Linux with Debian, Ubuntu, and Gentoo.','','','','','','','I have my configuration set up so that I just write a new config file for each computer that lists the \'roles\' that it needs.','','','','XMonad','I use stack, which has nix integration. It\'s kinda spotty, and doesn\'t pin a nixpkgs version, so when an old version of GHC is removed, that causes problems.','I\'ve tried cabal2nix and stack2nix and they are both broken.','I really appreciate NixOS. I\'ve tried lots of different linux distros, and NixOS hits a sweet spot of reliable, up-to-date, powerful, and small (ish)'),(1358,'1980-01-01 00:00:00',5,'en','1557446236','A5','A3','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','This is a bit more broad if I include personnal projects','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I have always been trying to self-host infrastructure, kinda like in the compiler sense. I learned about Nix in 2012, but that felt too experimental at the time and unfortunately didn\'t try to understand it. It had been on the radar since then though, and it distinctly bleeped last year. And after being blocked at the idea of re-packaging the earth with Bazel, I decided to get into Nix as we got into 2022.','','Y','','','Y','','Y','Y','Y','','','Y','','','Y','Y','Y','','Getting into home-manager, and probably NixOS as well soon.','Nixpkgs','Cross-compilation','Reproducibility/Hermeticity','Some bridge with Bazel, because Bazel feels like a better build system, I liked the attempt with https://github.com/tweag/rules_nixpkgs, but it does not feel right, e.g. in Python you have to declare your Python package dependencies in the WORKSPACE, while I guess the toolchain is setup from the WORKSPACE, Python packages dependencies should be in BUILD files?\r\n\r\nBetter docs and error messages, but it\'s hard to say something really actionable, a lot of the doc is pretty dry, finding content on YouTube has been very very helpful. At some point early, trying to setup cross-compilation, I was stuck on something trivial, and the error made no sense, not sure how I would have done without a friend who could help me.','Bazel and anti-depressants.','','','','','','','','','','','','','','Buildbot','','','','','','N','Time, I should upstream some packages I have made.','N','N','Finding some time.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Thank you!'),(1359,'1980-01-01 00:00:00',5,'en','245327376','A5','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend introduced me to GNU Guix and I really enjoyed the concepts. After I found out it was a fork of NixOS I decided to try it out proper. I ended up sticking with it because I found the support for the programs I wanted to be much better than what was available in Guix.','Y','','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducibility of machine configuration and development environments (where flakes really shine). Adding/removing/changing what packages are used is really easy, and rolling back to a known good version is a breeze','This is more nixpkgs than Nix, but having access to fresh software available to install almost immediately after the developers release a new version is amazing','Binary caching of artifacts is sooo good. From downloading nixpkgs builds from Hydra, to even using your own caching server with your own builds it really gives a ton of flexibility to both customize software and avoid having to constantly rebuild everything from scratch.','- better darwin support, esp for more recent toolchains. I\'d love to introduce Nix into the development environment at work, but right now it\'s a non-starter since we cannot build software that targets macOS versions 11 and above\r\n- fix/unify the old and new nix cli options. it\'s pretty frustrating that the old nix-cmdname commands are marked as deprecated on newer Nix versions and yet the new nix commands don\'t support all the same functionality as the older ones\r\n- better documentation (as always) and alternative forms of documentation. a lot of newcomers bounce right off because some of the concepts are hard to understand. the manuals are good when you have some familiarity of Nix and can read the source code, but we need alternative documentation sources for beginner, intermediate, and even advanced users\r\n- an equivalent of rustdoc: having the ability to document nix libraries and automatically generate documentation is something I would love to have\r\n- add debuggability: from writing complex nix-expressions to debugging why the wrong version of a dependency is being pulled in it can be very opaque what nix is doing unless you painfully paste stuff in the nix repl or know how to dig into the .drv files themselves\r\n- remove overlays (at least in their present implementation, not necessarily in spirit): wrangling overlays is very complex, and it can either lead to infinite recursion errors, or make it difficult to understand where a dependency is coming from. We need better composability of expressions besides dumping everything in nixpkgs or virtually dumping into nixpkgs via overlay','I don\'t even know at this point... Docker files? *shudder*','','','','Y','Y','','','','','','Y','','','','Crane: https://github.com/ipetkov/crane','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','A friend introduced me to GNU Guix and I really enjoyed the concepts. After I found out it was a fork of NixOS I decided to try it out proper. I ended up sticking with it because I found the support for the programs I wanted to be much better than what was available in Guix.','Y','','Y','','','','','Reproducibility of machine configuration and development environments (where flakes really shine). Adding/removing/changing what packages are used is really easy, and rolling back to a known good version is a breeze\r\n','Quick and easy deployments: synchronizing a machine configuration is one command line invocation away','Bootloader rollbacks are a life saver','- have a way to automatically document external NixOS modules. The generated documentation for the modules in nixpkgs is great, but understanding the modules from any other project basically requires reading and understanding their source\r\n- reduce some of the auto-magic handling of NixOS modules: stuff like pulling packages via lambda is great, but if you try to do anything more advanced (like plumb flake inputs through) it gets messy and complicated fast (sometimes we need to use `specialArgs` sometimes we need to use `extraArgs` and the only way to tell is to read the source code)\r\n- improve subtractability of NixOS modules: right now modules are great for additive features. But if you want to tell where/why something is enabled you\'re on your own. It is possible to turn things off, but once again, you have to read and understand all the source of all the modules you consume to figure out exactly which option needs `= lib.force false` or figure out the exact path to the module to mark as excluded','Probably GNU Guix since it is the next closest approximation to what NixOS offers (through my experience with it was an order of magnitude more painful)','Y','','','Y','','','','','','','sway','https://github.com/oxalica/rust-overlay - really good for testing with custom rust toolchains. To be honest I haven\'t even been able to successfully cross compile with the rust toolchain in nixpkgs\r\nhttps://github.com/ryantm/agenix - great for managing and deploying secrets to machines\r\nhttps://github.com/numtide/flake-utils - for cutting down flake boilerplate\r\nhttps://github.com/nix-community/home-manager - of course no dotfile configuration is complete without home-manager\r\ncachix - to speed up CI builds','https://github.com/nix-community/naersk - really good for building rust projects, but customizing builds with it is really opaque and a chore\r\nhttps://github.com/kolloch/crate2nix - tried it out briefly, works really well with caching, but a non-starter if a project relies on cargo specific tools (e.g. sqlx)','Love this project and want to thank everyone involved in it. There is always room for improvement, but I\'m hopeful things will keep getting better as they always have been :)'),(1360,'1980-01-01 00:00:00',5,'en','1438485573','A2','A2','male','','Y','','','','','','','Y','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Declarative and reproducible development environments, which can be used for CI and dev without adjustments ','Having multiple versions of the same software installed simultaneously ','Declarative system management ','Remove excessive memory footprint (RAM). The rest of it (Nix, the software) seems as good as it can reasonably be, minus the occasional but infrequent bugs. ','A bunch of shell scripts, Ansible, etc.','','','','Y','','','','','','','Y','','','My local host, for sufficiently small projects Nix allows to “be” the CI itself, i.e. a simple nix-build builds a clean revision of the software and runs all test in a sandboxed environment. That’s a huge plus!','','Y','','Y','','N','The security culture (direct master pushes)\r\nBreaking changes being merged without much actual feedback \r\nnitpicking by maintainers regarding code style, but not having a definitive style guide\r\nPersonal time constraints','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Declarative system management done right. Was recommended to try it, then got started with it for real at the 33c4 assembly.','Y','Y','Y','','','','','Declarative system management (base system, firewall, mountpoints, etc.)','Declarative revision management (no impure apt update, etc.)','Services easily accessible and configurable ','Focus more on Security and avoid breaking changes.','Arch','Y','','','','','','krops','','','','lightdm+exwm (emacs as systemd service) ','','','Maybe specifically ask about nixpkgs as well? Nix and NixOS doesn’t really cover the package collection, for which people might have separate feedback? \r\n\r\nIt’s great to listen to user feedback! Thanks for all of this work to make Nix/NixOS/nixpkgs better.'),(1361,NULL,1,'en','402525785','A2','A3','male','','','','','','','','Y','','','','Y','','','','','','Y','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1362,'1980-01-01 00:00:00',5,'en','1059110667','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was first introduced to NixOS through the Haskell ecossystem, where it was recommended by a project (https://ihp.digitallyinduced.com/). I wanted to give Linux another chance after using the Apple ecossystem for a few years and I was instantly captivated by the declarative nature of configuration (which had been one of my pain points before, as I like to configure everything to my taste and hated having to reconfigure everything after formatting or some major breaking issue in the distro) and uncomplicated dependency resolving, being able to have different versions installed at the same time without conflicts. The reproducibility aspect and ease of creating development environments and build scripts came later, as I got more and more into the ecossystem.','Y','','','','','','Y','','','','','','Personal computer','','Y','Y','','Y','','Easy development environments and build scripts','Painless dependency resolving','Reproducible and easily composable build scripts (using one of my projects directly in another\'s dependencies really comes in handy)','Honestly, the Nix language itself seems to be the biggest pain point so far in my opinion (and it is an opinion I have read many times while procuring information related to Nix and NixOS). I\'d replace it with another functional language, preferrably a type safe one like Haskell (that would be my first choice).\r\nAnd better/more extensive documentation wouldn\'t hurt either!','Probably I\'d keep using the various build systems developed for various programming languages (cargo, cabal, npm, etc.). Perhaps Docker for more complex projects, particularly if my future job requires it, which is likely.','','','','Y','Y','','Y','','','','Y','','','','https://github.com/Mic92/tex2nix\r\nhttps://github.com/svanderburg/node2nix\r\nhttps://github.com/NixOS/cabal2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Same story as for Nix (the package manager), as I started using Nix through NixOS.','Y','','','','','','Personal computer','Declarative configuration','Easy and safe system rollbacks','Extensive and easily-extensible package repository','Although I realize that wasn\'t the original focus of the project, I\'d like to see a bigger focus on sandboxing and isolated environments, but I believe the Spectrum OS is already looking towards that goal.','Possibly something like Fedora Silverblue, although I\'m not sure if NixOS had any influence towards that project\'s goals. Guix probably also wouldn\'t exist without Nix, but it would be another option, should NixOS cease to exist now (I know that\'s probably not the exact intent of the question, though).','Y','','','','','','','','','','Sway','home-manager (https://github.com/nix-community/home-manager) is probably my number #1 besides the official projects. I also use naersk (https://github.com/nix-community/naersk) quite a lot, as most of my personal projects (as well as my MSc thesis) are developed in the Rust language.','DevOS (now known as digga: https://github.com/divnix/digga). I started building my declarative NixOS configuration based on it but realized I was better off building my own solution, as I\'d learn more about Nix and Nix Flakes through it and would be able to cater to my own interests better and tailor it to my usage needs.','This is truly a great project that has rekindled my flame for Linux and GNU/FOSS projects in general and I am truly grateful to have the opportunity to take part in it!'),(1363,NULL,2,'en','709969049','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I find the core idea very appealing.','','Y','','','','','Y','','Y','Y','','Y','','','Y','Y','Y','Y','','Reproducible system builds','Rollback','Stateless systems','Better support for ARM and other IoT-type systems','GUIX\r\nArch','','','','','Y','','','','','','','','','','https://github.com/hlolli/clj2nix','Y','Y','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1364,'1980-01-01 00:00:00',5,'en','862933274','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','N','N','I don\'t have any reason not to try Nix, I just never tried it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','If I knew it was better than my current then my current distribution (Debian) and the transition would be seamless.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None','Nothing :)'),(1365,'1980-01-01 00:00:00',5,'en','1823291771','A2','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','More of NixOS than Nix per se. I like the reliablity of the system and the free rollbacks. The portability also. But most of all the package selection is amazing. ','','Y','','','','','Y','','','','','','personal machines','','Y','','','Y','','rollbacks','portability','single configuation language. Simple configuration schema','\r\nMake pinning packages to a certain revision easier','Just another package manager','','','','Y','','','','','','','','','','','','','','','','N','lack of knowledge','Y',NULL,NULL,NULL,NULL,'','Y','Y','','','A2','I first head about the rollback feature, then I donwloaded it alongside my mint installation and found installing packages super easy. Then my work machine went buggy so I installed on my work machine. Haven\'t looked back since (8months)','Y','','','','','','main driver','rollbacks','portability','declarative configuration/ single configuration paradigm','','Some Debian derivative or OpenSuse','Y','','','','','','','','','','i3','','','<3'),(1366,'1980-01-01 00:00:00',5,'en','1870703489','A2','A3','male','','','','','','','','Y','','','','Y','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I don\'t remember how I caught wind of it initially, but I like functional languages and the concept seemed cool. So one day I decided to install NixOS. Never looked back.','','Y','','','','','Y','','','','','','','','Y','','','Y','','Try software without \"installing\"','Save and easily load development environments when I switch projects','Lots of packages to choose from','I would add support for IPFS. Or any P2P caching solution to take advantage of the distributed compute power of the community instead of relying on a centralised CI/CD pipeline. (Also helps when offline/on a metered network)\r\n\r\nAlso, I would add The Rust Book, but for Nix. The Nix Book. To help beginners and veterans alike. (If you\'re thinking that\'s the Nix Manual, or the Nix wiki, then please at least read the foreword and introduction of the Rust book.)\r\n\r\nI would also make OpenGL and Vulkan apps run on non-NixOS systems.','Guix ;)\r\n\r\nJokes aside, docker for reproducibility probably, and whatever mix of system (apt/yum/pacman...) + language (cargo/pip/nuget...) package manager for development, because I wouldn\'t know any better.','','','','','','','','','Y','','','','','','','','','','fetchTarball (because I have yet to learn anything else)','N','The right time + opportunity combination','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Same as with Nix really, but I\'ll paste for ease of triaging:\r\n\r\nI don\'t remember how I caught wind of it initially, but I like functional languages and the concept seemed cool. So one day I decided to install NixOS. Never looked back.','Y','','','','','','','Save and load entire system and home configs when I switch machines (tweak once, run everywhere)','Easy fallback to previous working state in case of unlucky update (fearless rolling release)','Lots of packages to choose from','I would add the ability to install packages from other distributions, and natively run binaries meant for \"mainstream\" distros.\r\n\r\nAnd the ability to customize every setting of KDE via nix, but that\'s a magic KDE wand, not a magic NixOS wand isn\'t it?','Guix ;))\r\n\r\nJokes aside (again), Pop_OS or a gaming distro.','Y','','','','','','','','Y','','','','','Your survey timed out as I took too long to think about my answers (especially when I took the time to dig through my browsing history to get clues at how I started using Nix), and I had to type them all again. You\'re lucky I like Nix and NixOS, I almost rage quit.'),(1367,NULL,NULL,'en','688899121',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1369,NULL,1,'en','1974533626','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1370,NULL,1,'en','1773701020','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1371,NULL,1,'en','1450047686','A5','A4','male','','','','','','','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1372,'1980-01-01 00:00:00',5,'en','1128475107','A2','A1','male','','','','','','','Y','','','Y','Y','','Y','Y','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I started using Nix because I saw a config online. I was previously an Arch user. At the start it took me a long time to setup, however it paid off, no corruptions, and stability.','Y','Y','','','Y','','','','','','','','','Y','Y','Y','','Y','','Stability - Rollbacks','Friendly Community. I have contributed one or two packages in the nixpkgs repo, and have had no issues','Programmer friendly - In the sense that everything is code, which I like.','I would add a nix install command like guix.','Guix','','','','Y','Y','','','','','','','','','','pip2nix\r\npoetry2nix\r\ncabal2nix\r\nnode2nix\r\nmach-nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I saw someones config, and I tried it. At the start, I had some issues with it, but it grew on me after.','','','Y','','','','desktop','Stability','Friendly Community','Declaritiviy','I would add a command like guix, e.g. nix install. I have written a tool in rust, nux, to emulate this, but it would be nice to consoildate all nix commands into one.','GUIX','Y','','','','','','','Y','Y','','Xmonad, Sway','','','NixOS is great. With some bug fixing, better binary support and some polishing, NixOS will be even more awesome!'),(1373,NULL,1,'en','574557985','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','N','N','Reliability, security, speed, user friendliness, package availability...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(1374,'1980-01-01 00:00:00',5,'en','1112901673','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Saw some videos. Was searching for a deterministic way to manage my dev environment. After 29 years of Debian I wanted to try something else.','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','Deterministic rollback if something does not work after an upgrade.','Reproducible Dev environment','Nice community','I would add a fast package search. Where packages have a good description. And could search for similar packages. ATM I end up using the nixos web page, which breaks my work flow. ','More Dev environments with containers. More VMs. ','','','','','','','','','','','','','','','Eh?','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Saw nix. So I thought I go all in.\r\nIt felt wrong to install nix on top of another OS. I had a rough start with NixOS.\r\nI tried to install nixOS on a Lenovo ThinkPad for 2 weeks, gave up due to driver problems. \r\nBought another laptop where it worked like a charm.','Y','','','','','','','System rollbacks','Deterministic description of my system','','Easier installation with an encrypted btrfs file system.','Debian','Y','','','','','','','','Y','','','','',''),(1375,NULL,NULL,'en','1685117445',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1376,'1980-01-01 00:00:00',5,'en','699395748','A5','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Wanted NixOS and declarative system config','','','','','','','Y','','','','','','','','Y','','','Y','','Reproducibility','','','','apt','','','','','Y','','','','','','','','','','https://github.com/NixOS/cabal2nix','','Y','','','N','No time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','','','','','','Declarative configuration','Up to date software','Big repository','More user-friendly deployment tools for NixOS configs. Although I haven\'t studied existing 3rd-parties solutions.\r\n','Go back to Ubuntu or try Guix','Y','','','','','','','','','','Sway','Nixpkgs','',''),(1377,'1980-01-01 00:00:00',5,'en','895480352','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1378,NULL,NULL,'en','672258866',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1379,'1980-01-01 00:00:00',5,'en','238816014','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','N','Y',NULL,'I have tested it recently and will probably continue, but it was a major pita to make it work even inside the official docker image!','Simplicity & usability!\r\nOne tool with simple sub-commands to do most things. With Alpine Linux it doesn\'t get easier than `apk update && apk add package`.\r\nI installed nix on my Manjaro machine and got stuck immediately, so I started docker nixos/nix. I tried `nix search zsh` and got greeted by this error message:\r\n> error: experimental Nix feature \'nix-command\' is disabled; use \'--extra-experimental-features nix-command\' to override\r\nExperimental? What? I found the answer on SO but I couldn\'t find a way to edit the nix.conf file. No vi, vim, nano, pico inside the docker image?! Fine, I\'ll just echo-append it then. Finally managed to run `nix search` but it didn\'t find anything in the \"flake registries\".\r\nAnyway, I\'ll try to install something then. Went on https://search.nixos.org/packages and it says use `nix-env -iA nixos.zsh` to install zsh. So I do and get this message:\r\n> error: attribute \'nixos\' in selection path \'nixos.zsh\' not found\r\nI had to run `nix-channel --update` but even after that I was getting the same error. Turns out \"nixos.zsh\" had to be \"nixpkgs.zsh\" instead. What gives?\r\n\r\nThis was quite a lot of friction until I managed to do something useful with the package manager. I quite like the idea behind it especially since I\'ve been bitten recently by a failed pacman update which made my work computer unbootable. Lots of credit to you for making something innovative and open-source, but for goodness\' sake why do these things have to be so hard to use? Give me something like `nix update && nix install zsh` and I\'ll gladly make the switch to NixOS and even donate some money. ;-)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I can try it out in docker or on a separate partition, but I will evaluate it more before I think of making a full switch. Like I mentioned in the previous question, my system became unusable after a failed pacman upgrade, so that is a great motivator for me to look into Nix and NixOS in detail, because apparently all the other package managers don\'t do anything remotely similar.\r\n\r\nAfter all these years of using Linux privately and professionally, what I wish for the most is a reliable and frictionless experience during daily use and that the system always remains in a workable state.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None. I\'m a newbie.','None. I\'m a newbie.','Thanks for all the hard work! I hope many more people will find NixOS. It\'s a shame it\'s not higher up in the list on distrowatch.com. I really wish you would put more effort into lowering the entry barrier, like when using the CLI tools or installing the OS with a GUI that generates the first version of the configuration.nix file.\r\n\r\nWill definitely check NixOS out some more!\r\n\r\nBest regards!'),(1380,'1980-01-01 00:00:00',5,'en','241398367','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','My work colleague pitched us Nix as a way to bring consistency to our installed dev tools, by leveraging nix-shell. We often ran into some problems where someone did not upgrade their dev tool and so things stop working for them, or they\'re using MacOS and find doesn\'t have the same options, and so on. After trying, we never had those problems again, so we started to bring more and more Nix. We now use it in our CI, with nix-env, with the Nix docker image, we package stuff with Nix and we even build container images with it.','','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','','','Bring consistency to our dev tools with nix-shell.','It allows reproducible builds.','The breadth of software available on Nixpkgs. You can find anything there.','I would improve documentation. There\'s a pretty steep learning curve, I tried following Nix pills and finding tutorials, but I\'ve found it hard. There are still a lot of mysterious things for me, for example I\'m confused by build phases, I don\'t know how to override things, and I don\'t know what functions exist in Nixpkgs, like there are 3 variants of mkDerivation or so. So yeah, documentation is hard, but it would help.','I would probably go back to using yum or whatever package manager and \"hoping everyone has the same tools\" / \"hoping the build is reproducible\".','','','','','','','','','','Y','Y','','','','node2nix: https://github.com/svanderburg/node2nix','','','','I don\'t understand what you mean by \"extend\". If you mean contribute, I use a fork on Github','Y',NULL,'N','N','I definitely want to try, but I need to find the time to try. I\'ve even downloaded an iso.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None, I don\'t know any other projects.','None','Thank you ! Nix is awesome !'),(1381,'1980-01-01 00:00:00',5,'en','174483391','A5','A4','male','','','Y','','','Y','','','','','Y','Y','Y','','','','Y','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','introduced to it a few years ago.\r\n\r\nbeen amazed at the results in terms of being able to reproduce results.\r\n\r\nnow it runs my router at home, shells for projects, and two jobs of production deployments now.','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','','Y','','reproducibility','package selection','configuration flexibility on the tier of gentoo','keep the reproducibility, but change the language to be less horrific to use.\r\n\r\n(sorry, the language is just frustrating)','containers like other sad people, probably.','','','','','','','','','','','','Y','','','','Y','','','','N','nixpkgs has been extremely good about packages that i need, and nixos release cadence is the typical blocker.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','same story as before','','','Y','Y','','','','cloud init is configuration.nix so no games with having to run puppet/ansible post-boot','arbitrary channels','','unsure. nixos as it stands i\'m quite happy with.\r\n\r\nmake it easier to do custom channels/packages?','probably still containers','Y','','','','','Y','','','Y','','','','nixops\r\n\r\nthe language of nix is just frustrating. two of the eng folks two jobs back (myself and another) evaluated a bunch of different things before settling on terraform. nixops lasted longer than ansible/puppet ops, if that helps :P','burn the language. keep the rest.\r\n\r\ni absolutely love nixos and nix-shell in terms of the output it produces, but find working with it frustrating because of the language.'),(1382,'1980-01-01 00:00:00',5,'en','709845685','A2','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Interest in reproducibility and how the functional paradigm could be applied to packaging.','','Y','','','','','Y','Y','Y','','Y','','HPC','Y','Y','Y','Y','Y','','reproducibility','remote building','ad-hoc shells','strong type system','','Y','','','Y','Y','','Y','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Declarative OS configs and easy rollback/recovery.','Y','','Y','Y','','','','Reproducibility','Ease of configuration','Remote deployment','','FreeBSD','Y','','','','','','','','','','sway','BioNix, nix-thunks, nixos-generators, nixos-mailserver, nix-serve','',''),(1383,'1980-01-01 00:00:00',5,'en','1517217992','A5','A3','male','','','Y','','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Was looking for something to make cross-platform setup easier and liked the idea of being able to do declarative configs. That was very confusing with conflicting documentation re: flakes or not flakes and so on, so it was slow going. I wound up figuring out more easily how to get it going for a per-project development environment using niv, based on a blog post, so I started there. Started using it for our development environment at work (paired with direnv and nix-flakes it works well even for what is quite a large project now). After a while I knew enough to switch my personal config over to home-manager.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','declarative environment management','declarative system configuration and management','container images using same dependencies as declarative developer environment','It would be great to get the flake transition over with so that the docs can be consistent and so that it\'s easier when getting started for people to find documentation applicable to what they\'re doing.\r\n\r\nI also think there needs to be a lot more documentation. Of the four types of documentation described in the documentation system here https://documentation.divio.com/, I feel like nix does a good job with \"explanation\" documentation, and that\'s about it. In particular, I think the following two areas could use a some focused documentation effort:\r\n\r\n- The \"stdlib\" of nixpkgs. Common functions that are used in many derivations are often difficult to find documentation for. I keep a copy of nixpkgs locally that I use to grep for function definitions much of the time, which is not really a sustainable situation. It would be great if there were e.g. a standard docstring format that was required and used to automatically generate documentation for everything in nixpkgs. Support for go-to-definition and function signatures in the new nix language server would be awesome, too.\r\n\r\n- Official how-to guides. Much of nix documentation seems to assume that you either a) already know what you\'re doing or b) have time to read 600 pages. Often, people are looking for how to solve a specific problem (how do I override a package in nix, how do I apply an overlay, how do I adjust configuration flags for a package, how can I make my nix-shell reproducible, etc.), and it is remarkably difficult to find that kind of documentation. Most of the time you wind up weeding through vaguely related blog posts hoping that you can figure something out. Having an official source for this kind of documentation would be hugely useful for people first getting started.\r\n\r\n','For system setup and configuration, bash scripts. For building containers, dockerfiles. For development environment, probably would just install things manually.','','','','Y','Y','','','','Y','','Y','Y','','','buildRustPackage: https://nixos.org/manual/nixpkgs/stable/#compiling-rust-applications-with-cargo','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I had my personal configuration in home-manager and had been using nix to manage development environments for a while. Nix is confusing and hard to learn, but what it provides isn\'t really provided by anything else. After I knew enough nix to be dangerous, I figured I\'d try out NixOS. I installed it on my work laptop and found it actually much easier to get started with than nix the package manager. Still using it now.','Y','Y','','Y','','','','Declarative, reproducible (with flakes) configuration','Rollbacks','Atomic upgrades','I think having the flake transition complete and having more official documentation around flakes would be great. I think that improving the nix package manager documentation would help substantially with NixOS, which I feel like is better documented by comparison.','ArchLinux or similar','','','','','','','','','Y','','','- nix-community/emacs-overlay: https://github.com/nix-community/emacs-overlay -- for building emacs from git\r\n\r\n- oxalica/rust-overlay: https://github.com/oxalica/rust-overlay -- for better management of rust versions and targets\r\n\r\n- niv: https://github.com/nmattia/niv -- for reproducible environments. Replaced by flakes in my personal configs, but don\'t want to use experimental nix for work yet','- guibou/nixGL: https://github.com/guibou/nixGL -- I had a real beast of a time getting openGL apps to work when installed via nix on non-nixOS systems (e.g. alacritty). This seems to be the only thing that seems like a solution, but I was never able to get it working. No longer as critical since I\'m on NixOS, but it was a huge pain.','Nix is great!'),(1385,NULL,1,'en','1825649194','A5','','-oth-','Please fuck the hell off and die','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1386,'1980-01-01 00:00:00',5,'en','1005160073','A2','A3','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative management (system/dev environment/homedir)','Separation between applications (multiple versions of she software in parallel)','Wide selection of mostly uptodate software','','Ansible or puppet for doing config management on servers, bash scripts for dev environments.','','','','','','','','','','','','','','','','Y','','','','N','Not sure on what exactly is needed for submitting a pull request','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Got tired of updates breaking my systems. Wanted distro with up-to-date software. Found both in nixos...','Y','','Y','','','','','Declarative system config','Easier configuration of software','Trustable updates','','Debian','','','','','','Y','','','','','sway','','Nixops',''),(1387,'1980-01-01 00:00:00',5,'en','149887353','A2','A4','','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','At work when I didn\'t have administrative privileges for a met-service HPC cluster.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Versionable expressions for reproducible development environments','','Being able to override all of my development dependencies','Drop nix-env. It was painful to learn that while it lets you install all kinds of things it results in weirdly broken environments. Alternatively only allow installing \"apps\" via this.','conda inside a container','','','','Y','Y','','Y','','','','','','','','node2nix for work. C++ and python expressions are hand-written.','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','Started out using nix on macOS. nix was interesting but it had a lot of issues on that platform. I hoped when going \"full nix\" most of the problems would go away. Also I wanted to dive in more into Linux internals and nix really helped learning these by blurring the line between user/developer/distro maintainer.','Y','','Y','','','','','New car smell all the time','I now know what are the important files to backup on my system. (configuration.nix + $HOME or /var on servers)','Being able to upgrade on my own schedule and increment size. Also: bisectability','NixOS and home-manager would be one thing.','I guess either macOS or Arch','Y','','','','','','','','Y','','','nix-index, hydra, patchelf','- nixops. I went back to using plain `nixos-rebuild` for my single home server.\r\n- mobile nixos. It\'s still too hard to get started. Even on a pinephone. (Ok, I don\'t use the pinephone at all because it seems not powerful enough)\r\n','Thank you for improving this thing I\'ve become somewhat addicted to try to master.'),(1388,'1980-01-01 00:00:00',5,'en','1616261235','A1','A4','male','','Y','','','Y','','','','','','Y','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','Y','','','','A3','A colleague who is very active in the Nix community recommended it as a way of creating complete environments when trying out new academic software.','','Y','','','','','Y','','','','','','','Y','Y','','','','','Portable and reproducible environments.','Availability of Python and R packages.','Ability to handle conflicting dependency versions in the tree.','GUI configuration tools for creating new environments.','Conda :(','','','','','Y','','','','','','','','Y','','','','Y','','','N','Lack of expertise in the Nix language.','N','Y',NULL,'Lack of expertise in the Nix language.','Me becoming an expert in Nix.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Nix is a very useful model and I hope that it will be adopted more widely within academia. Encouraging scientists to publish Nix expressions to enable others to reproduce their work would be a major improvement over the current situation, where versions are often not specified (and dependency versions never are).'),(1389,'1980-01-01 00:00:00',5,'en','367156845','A2','A4','male','','','','','','Y','Y','','','','','','','Y','','','Y','Y','','','','Y','','Y','','','Y','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Declarative system configuration','Reusable nix shell configurations','Home manager','Improve documentation','Guix (which uses Nix). Most likely Ansible/Docker or some other popular devops tools which don’t really match Nix features/concepts.','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','N','Still learning. I would like to contribute in future.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','Y','','','','','','','Documentation','GuixSD, Fedora coreos, Gentoo','','','','','','','','','Y','','Xmonad','Home manager','',''),(1390,NULL,1,'en','1230488387','A5','A4','fem','','','','','','','','','','Y','Y','','','','','','','Y','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1391,NULL,1,'en','784544097','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1392,'1980-01-01 00:00:00',5,'en','146297486','A5','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','because of nixos, because it looked cool.','','','','','','','Y','','Y','Y','','Y','','Y','Y','Y','','Y','','declarative configuration','declarative package management','','','the next best thing: guix, if it would exist if nix didn\'t','','','','','','','','','','','','','','','','Y','','','','N','the packages i\'ve written are solely for me, or i don\'t think it would be of use in nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','looked cool','Y','','Y','Y','','','main computer','','','','systemd','guixsd','Y','','','','','Y','','','','','sway','home-manager\r\nniv','almost anything involving secret management, which is godawful in its current state all around last time i tried it',''),(1393,NULL,2,'en','1170432951','A5','A4','male','','','','','','Y','','','Y','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Seemed a fun idea at the time, and ability to have a single file for all configuration seemed a good idea. Now I\'ve things setup in a flake and while i\'ve outgrown a single file for configuration, its the most reliable to configure os i\'ve used.\r\n\r\nAlso use it across macos and nixos to do os+home configuration.','Y','','','','','','Y','','Y','','','Y','','','','','','Y','','Now, nix flakes','Super \"easy\" to apply patches to packages/kernel in advance of anything ending up in nixpkgs or upstream. Then just keep em in place until the patch fails to apply and then voila all good.','Mostly equal configuration across nixos and macos. Though service management is rather annoying with systemd/launchd being entirely different','Better examples/docs/guides to understanding the nix language and nixpkgs stdenv. I think the opaqueness at the start deters people needlessly. Feature wise its fine, outside of a unified service definition would be useful to defining something like having nix-index run periodically on macos/nixos without having to write the same thing twice.','Probably slum it with arch and ansible.','','','','Y','Y','','Y','','','','Y','','','','None anymore.','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1394,'1980-01-01 00:00:00',5,'en','1934465608','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','NixOS was the only OS doing declarative builds. I find the Nix expression language difficult to use, the idioms are confusing and I don\'t find it discoverable. But only Guix competes and though I like Guile much better as a language, I depend on too many non-free packages to use it. I\'m extremely happy NixOS exists, and I hope to see it improve!','','Y','','','','','Y','','','','','','','','Y','','','Y','','declarative configuration','reproducible builds','sandboxing','I\'m an experienced developer and I\'ve read lots of documentation but I found the Nix expression language way too inscrutable. I wish it were easier to reason about the results of expressions. The thing is, I think the necessary ingredients are there, but my workflow sucks and I\'m not sure how to make it better.','Guix, or possibly Ansible.','','','','','','','','','','','','','','','node2nix','','','','overrideAttrs (I only write single-user modifications, so overlays are superfluous and can be flattened into overrideAttrs, which has better locality)','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','See above.','','','','','','','see above','see above','see above','see above','see above','see above','','','','','','','','','Y','Y','','','flakes, home-manager','Thanks for everything you do!'),(1395,NULL,NULL,'en','2027899801',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1396,NULL,2,'en','1347614810','A6','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1397,NULL,2,'en','218476016','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','Y',NULL,'some old packages in nixpkgs unstable (e.g. KDE Plasma 5.23) compared to arch linux stable (KDE Plasma 5.24)\r\nmissing relatively popular packages in nixpkgs unstable compared to arch linux repos or popular AUR packages','resolving old nixpkgs PRs some of which are open for long time (e.g. caprine-bin)\r\nhaving nixpkgs more up to date (e.g. KDE Plasma)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1398,NULL,1,'en','1180629327','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1399,NULL,NULL,'en','1791977144',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1400,'1980-01-01 00:00:00',5,'en','370544137','A4','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I used home-manager and NixOS first and then started using nix for python projects.','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','Stabilize flakes and new nix command asap.\r\nAccept -h as an alias for --help for all nix commands!','virtualenv and similar language-specific tools','','','','Y','Y','','','','','','','','','sr.ht','','','Y','','','N','Time, not knowing where help is needed. I have fixed a couple bugs I ran into in home-manager.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was looking for a more advanced and ideally stateless way to manage dotfiles across multiple machines and discovered home-manager. I loved the simplicity of enabling new programs and services and the good, complete, and easily tweaked out of the box configurations. I was using home-manager on Arch but it didn\'t entirely solve the accumulation of state and I wanted to be able to easily move my system configuration to a new machine without the baggage of simply copying everything over. So I moved to NixOS which solved that problem. From there I also started using nix to develop python projects.','Y','','Y','','','','','Reproducibility of OS configuration and minimization of state','Easy configuration of OS services with good defaults','','Easily searchable documentation of nixpkgs and home-manager modules with examples and links to source code.','Arch instead of NixOS, a dotfile manager instead of home-manager,','Y','','','Y','','','','','','','river','home-manager\r\nflake-utils-plus\r\nagenix','',''),(1401,NULL,1,'en','1975725085','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1402,NULL,NULL,'en','405562686',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1403,'1980-01-01 00:00:00',5,'en','74260580','A2','A3','-oth-','','Y','','','','','Y','','','','Y','','','','Y','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','With NixOS.','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Easy overrides of package definition (easy patching, change of dependency, ...)','Full control of transitive dependencies, no conflict','','Redo the manual(s). The documentation is really bad.','Would still use apt on Debian and would be even more frustrated.','','','','Y','Y','','Y','','Y','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I was tired of keeping track of the package I installed imperatively on Debian and overwriting configuration files from a git repository manually. The NixOS way with modules is much easier. The defaults are also better, and can be overridden easily. I found it easy to contribute my own changes, packages and my own modules back to nixpkgs.','Y','Y','Y','Y','','','','Central declarative configuration for both servers and workstations, with remote deployments','Very good defaults in modules, building on the shoulders of giants','Easy to contribute back changes and new things to nixpkgs','The manual(s). The documentation sucks.\r\nWould also pay people to review the ton of pull requests for nixpkgs.','Debian with a lot of frustration.','Y','','','','Y','','','','','','i3','Home-manager','NUR','Hello'),(1404,'1980-01-01 00:00:00',5,'en','1864644482','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','','','','','Y','','','','My laptop','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','home-manager','',''),(1405,NULL,NULL,'en','247864133',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1406,'1980-01-01 00:00:00',5,'en','776574941','A5','A6','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','Semi Pro Photographer','Y','','','Y','','','N','N','Running NixOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Could understand how to set it up the way I want it. The documentation is very vague and there are no clear use cases. Not everyone knows exactly goes into a complete desktop environment. There are no guidelines. Especially if you want to use any tiling window manager. What are the other bits that are needed to make it usable as a daily driver? Most users don\'t think about that.','Some form of \"recipe\" system that would enable me to setup and install NixOS the way I want it. See above.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nothing','nothing','no'),(1407,NULL,1,'en','967902465','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1408,NULL,1,'en','261254015','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1409,'1980-01-01 00:00:00',5,'en','1184036113','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','A friend of mine told me about NixOS','Y','','','','','','Y','','','','','','','Y','','','','Y','','I know what is on my system','Updates don’t break the system (if they do I can revert)','Large package selection','Improve macOS compatibility of packages.','Homebrew. Package manager that comes with os. ','','','','','','','','','','','','','','','','','','','','N','No low hanging fruit, inaccessible documentation (very theoretical).','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Same as for nix','Y','','','','','','','','','','','Opensuse tumbleweed','Y','','','','','','','','Y','','','','',''),(1410,NULL,2,'en','2113535366','A2','A2','male','','','','','','','Y','','','','','','Y','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A1','Because NixOS and nix it gives me the sweat sport between stability and rolling release. It also provides an easy-to-use full self configured Linux distro.','','Y','','','','','Y','','','','','','Home PC','Y','Y','Y','','','','nix-env','The work with nix and NixOS','Self build packages','','Paru a Feature packed AUR helper and pacman','','','','','Y','','','','','','','','','','','','Y','','','N','I don\'t have the time.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1411,NULL,4,'en','590427580','A2','','','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(1412,'1980-01-01 00:00:00',5,'en','906417107','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','Because of Haskell. The future is functional!','Y','','','','','','Y','','','','','','','Y','Y','','','Y','','declarative','reproducible','modular','Popularity','macos with homebrew is decent enough','','','','','Y','','Y','','','','','','','','','','','','','N','Inexperience (I just started my CS Mayor and all this is really new to me)','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','Through Haskell -> Nix -> NixOS','Y','','','','','','','Reliable','Reproducible','Declarative','The documentation!','The beautiful walled garden that is macos','Y','','','','','','','','Y','','','','','You are doing great work keep it up!'),(1413,NULL,2,'en','517935634','A4','A2','male','','','','','','','','','','','','','','Y','','','','Y','','','Y','','','','Security testing','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started using NixOS a year ago for about a month, I built a massive configuration file so everything was reproducible. Then a new update came out which broke some dnscrypt setting I had. The breakage and general bugginess I have experience made me move away.\r\n\r\nI have recently considered to use NixOS again, while understanding the NixOS modules structure better and the functions of the library. Now I find it much better and cannot imagine using something else.','','','','','','','Y','','','','','','','','Y','','','Y','','Modules','nixos-rebuild','NixOS Search (web)','I would make things more declarative, as in more and better support if configuring software through Nix.','Fedora Silverblue or my own immutable system spin','','','','','','','','','','','','','','','','Y','','','','N','No free time or experience. I would love to contribute when I have an itch to scratch, or a package to add.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1414,NULL,1,'en','1256310798','A2','A3','-oth-','Non-binary','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1415,'1980-01-01 00:00:00',5,'en','1088090181','A5','A4','male','','','','','','Y','','','','','Y','','','','','','Y','Y','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','After seeing all of the mess of docker, ansible/chef/saltstack/etc, the benefits of declarative config (and mixing software versions in ways that pacman/brew never could support) was really appealing. So much so that despite my first few attempts to use Nix ended in failure and frustration, I kept returning until it eventually clicked. All of my daily dev work is now via direnv\'s \'use flake\' and it\'s soooo much nicer.','Y','','','','Y','','Y','','Y','Y','','','','','Y','Y','Y','Y','','declarative, things don\'t \"magically\" change out from underneath me unless I take some action','','','some way of making nix flakes sane for local and sharable dev environments? maybe I\'m just using flakes wrong? Maybe the underlying issue for that is actually there\'s so many ways to do things, but I rarely find an answer in the docs. I end up greping the nixpkgs dir for keywords that seem close to what I want is usually how I try and find solutions (at least pre 21.11, haven\'t really had time to see if it\'s changed). contrast with Arch Linux where the wiki almost always had *exactly* what I needed for any given situation.','saltstack on the linux side, more ball of mud brew on macOS','','','','Y','Y','','Y','','','','Y','','','','PHP:\r\nworks great: https://github.com/stephank/composer-plugin-nixify\r\ndidn\'t work for me: https://github.com/svanderburg/composer2nix\r\n\r\nNode:\r\nworks well enough, but slow cause node ecosystem is insane with dependency hell: https://github.com/svanderburg/node2nix\r\nrecall it being a pain: https://github.com/nix-community/yarn2nix (or wherever it lives now, but good luck trying to figure out how to use it, but maybe I\'m just looking in the wrong places, idk)','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Loved Arch Linux, but was growing annoyed with maintaining my own packages that had to be rebuilt at random because something changed upstream that required a recompile. Nix/NixOS solve that perfectly, and with many benefits like the declarative configuration. It was a long road to a working system, and I still don\'t like Linux enough to use it as a daily dev machine, but NixOS has replaced the dozen or so Arch Linux systems I run for personal/side projects and is on my laptop (that I begrudgingly turn to when I need to debug something Linux specific like a docker image build issue).','Y','','Y','','','','','declarative','rollback','large number of up to date packages, ease of adding additional via overlays','Similar to nix, the docs need to get better. It\'s not as frustrating as for nix alone as the options search is pretty good.','Arch Linux + saltstack','Y','','','','Y','','','','Y','','','direnv hides a lot of the headache I had trying to get (and understand) nix flake shells working. home-manager is my preference on macOS. the nix-darwin sounds interesting, but idk if I want to give that much control over when home-manager and some custom activation scripts get me 95% of the way there.','nixops, like the idea is interesting, but it seems stuck in dev hell much like nix 2.4 was.\r\nEvery time I get frustrated with nix flakes I consider going back to non-flakes, unsure that the slightly nicer deps declaration and lock file is worth it.\r\nniv, interesting idea, but the tooling is a pain compared to similar tools like composer, npm, cargo, etc. in their respective ecosystems.','really do appreciate all the hard work, almost all of my complaints tend to stem from living on the bleeding edge and that\'s just what happens. Seen lots of progress being made so I\'m optimistic about the future.'),(1416,'1980-01-01 00:00:00',5,'en','1914386474','A3','A3','male','','','','','','','','Y','','','','','','Y','','','','','','Y','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','Y','','','','','','','Y','Y','','','Y','','Reproducibility','Scalability','Power having everything in a config file','Tutorials made for beginners.','Guix','','','','','','None','','','','','','','','None','None','','','','I do not','N','Knowledge and time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','My job. My boss was using it. Having the same env would make my life easier. In addition, I had a problem with Ubuntu. Things broke after an update. In NixOS, it would be easy to just do a rollback.','Y','','','','','','','scalability','reproducibility','rollback e roll forward','Add better tutorials and materials for beginners. Why not a full course on the basics of NixOS?','GuixSSD','Y','','','','','','','Y','','','','','Rescuetime','Please, create more content and documentation aimed for beginners. Why not creating a full course on the basics of NixOS?'),(1417,NULL,NULL,'en','28221335',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1418,'1980-01-01 00:00:00',5,'en','2103508610','A2','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','After lots of frustrations with macos, I looked for an open source alternative. I have used FreeBSD and Linux (several distributions, mainly Xubuntu and Gentoo) systems before, but not on my main computers. The configuration of Gentoo was a pain. With Xubuntu I had some stability issues. My plan was to use Arch. Before doing so, I gave NixOS a test run and started using it in parallel to my macos laptop. Due to the stability and modular configurability of the system, I soon did not want to go back. I\'m now using NixOS exclusively, on cloud instances (servers), my laptop, and my workstation (the only exception is an iPad).','','','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Reproducibility','Stability','Portability','I\'m a big fan of NixOps and would like to see better support for it.\r\nI would like to see flakes and home-manager integrated closely.','Possibly guix','','Y','','Y','Y','','','','Y','','','','','','cabal-to-nix: https://hackage.haskell.org/package/nix-tools (unfortunately often broken)','Y','Y','','','N','Some current time constraints. I hope to change this soon and actively contribute.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','see my elaborations on Nix: I started using nixos as my main OS, and this is how I got into nix','Y','Y','Y','Y','','','','Stability','Portability','Broad package support','home-manager','Arch linux or Guix','Y','Y','','','','','','','','','none','nixops','-',''),(1419,'1980-01-01 00:00:00',5,'en','657663609','A2','A3','male','','','','','','Y','Y','','','','','','','','','Y','Y','Y','','','','Y','','Y','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I love having my system configured in a reproducible way, and that it is read only\r\n','','Y','','','','','Y','','Y','','','','I still have to test Nixos on production and ci/cd','','Y','Y','','Y','','Declarative system config and managment','Packages availability (free and non free)','Flakes','I\'d make nix much simpler with actual debugging tools. Same with flakes. I love you guys but the entry ticket is high prices.\r\nSince vimscript it is probably one of the most alien language I\'ve had to somehow learn','Guile. TBH if there was as many packages I\'d probably try it because I\'m under the impression that configuring everythinf with a lisp syntax would be much easier','','','','Y','Y','','','','','','','','','','Poetry, bundix and yarn','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was changing job and got tired of cherry picking my config once again despite all my scripts\r\nSo I got to use Nixos. Frankly without home manager and flakes I might not have continued because I wanted something up to date, safe, relatively easy and tunable.\r\n','Y','','Y','','','','','Up to date','Zfs','Fast','Faster pull request propagation when a build is broken on unstable.\r\nDevelopment in C++ and some language are not always easy because of the tooling that need wrapping and sometimes managing the dependencies is quite strange: for instance when one use poetry2nix when there is not lock file one has to install the dependencies, then after poetry2nix will work and actually reference the dependencies in the store.\r\nThis part still feel clumsy (same with ruby and node)\r\nPlease note that I might have missed a point but then there would a lack in the docs','Don\'t know... Maybe a lean debian based system with guile (I don\'t remember if they ship a distro too)','Y','','','','','','','Y','','','i3','Lorri\r\nHome manager\r\n','Nixops is too complicated for now. I want my main system to be easy to tune.\r\nSshing on my home server to rebuild the config is way faster for now','I use a truenas system also. I\'d love to see some stuff dedicated to Nas and more specifically volume management in Nixos.\r\nOne can do a storage system, but I\'d not be comfortable mixing config and command line to manage my volumes, recovery etc.\r\n\r\nOtherwise you really changed my way of working and I do love it.'),(1420,'1980-01-01 00:00:00',5,'en','1475022979','A2','A2','-oth-','','','','','','','','Y','Y','','Y','Y','Y','','','Y','Y','Y','','','','','Y','','','','Y','','Y','','','N','Y',NULL,'Because it was hard to use, particularly due to having to setup a nix-shell environment','I\'m trying at the moment! Flakes and deploy-rs look cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Again, I\'m trying at the moment! Flakes and deploy-rs look cool, so on',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I\'ve been way more used to Guix, and I would have stayed there because of its usage of Scheme, but its lack of up-to-date packages is just too discouraging'),(1421,'1980-01-01 00:00:00',5,'en','2011198341','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Puppet was crap. Ansible was bad. A friend suggested nix. It was less bad than all the alternatives.','','Y','','','','','Y','','','Y','','','','','Y','Y','','Y','','Declarative configuration','Hackability of nixpkgs','Everything is in nixpkgs','Optional type annotations','Fedora Silverblue (rpm-ostree more generally)','','','','','Y','','','','','','','','','','https://github.com/nix-community/naersk','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','Y','','','','Good configuration already baked in (e.g. the initrd openssh server is great)','Ability to deploy everything from a fork of nixpkgs','Ability to write my own modules for configuration and flakes for random apps','Generation diffs. I\'d love to know what apps, conf files, and systemd units I\'m about to switch to.','Fedora Silverblue','','','','','Y','','','','Y','','sway','https://github.com/nix-community/naersk\r\nhttps://github.com/Mic92/nixos-shell\r\nhttps://github.com/chisui/zsh-nix-shell','nixops (it\'s just a crapshot on whether it will install; switched to colmena which is good enough)',''),(1422,'1980-01-01 00:00:00',5,'en','2123060878','A1','A4','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','','','','A3','I don’t really use Nix.','','','','','','','Y','','','','','','','','Y','','','Y','','It’s on NixOS','Declarative.','','','','','','','','','None','','','','','','','','None','','','','','None','N','Lack of time.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Tired of fixing configuration breakage from rolling Arch Linux upgrades.','Y','','','','','','','Reproducibility.','','','Remove the need to learn Nix to install and configure NixOS.','Arch Linux.','Y','','','','','','','','','','None, just xmonad','','','Thank you!'),(1423,NULL,NULL,'en','456498157',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1424,NULL,1,'en','745217238','A2','A4','male','','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','Y','Y','','ios',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1425,'1980-01-01 00:00:00',5,'en','1630697747','A2','A2','fem','','','','','','Y','Y','','Y','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','','','','nix copy progress bar','Guix','','','','Y','Y','','','','Y','','Y','','','','yarn2nix\r\nbundix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','Declarative configuration management','','','','Arch Linux','','','','','','Y','','','','','Sway','Niv','naersk',''),(1426,'1980-01-01 00:00:00',5,'en','263709594','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','','Y','','','','','','Y','','Y','','','','','Y','Y','','','Y','','Package installation without dependency hell','Temporary environments using nix-shell','','','homebrew/apt','','','','','','','Y','','','','','','','','','Y','','','','N','Time','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','Desire to keep system configuration as code and reproducible; I was afraid to update software on my personal home server for fear of breaking a working system and having to debug and fix it','Y','','Y','','','','','Configuration as code','Easy rollbacks','Keeping state on a machine to a minimum (\"Erase your darlings\")','Easier way to handle secrets without additional tools','Debian','Y','','','','','','','','','Y','i3','','',''),(1427,'1980-01-01 00:00:00',5,'en','448589909','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted to have my tools (emacs, vim, git, zsh, etc) ready on both personal computer (Linux) and at work (macos)','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','declarative environment','pinned dependencies','cross compilation','','','','','','','','','','','Y','','','','','','cargo2nix, poetry2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Got a new machine, thought the easy rollback was nice','Y','','Y','Y','','','','configuration management abstraction (services)','packages are usually quite up to date','','','','Y','Y','','','','','','','','','sway','lorri (https://github.com/target/lorri) to manage dev shells\r\nhome-manager (https://rycee.gitlab.io/home-manager/index.html) to configure my home and desktop experience','',''),(1428,'1980-01-01 00:00:00',5,'en','1011524929','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Wanted a system I could build consistently/deterministically from a configuration, NixOS was a perfect fit.','','','','','','','','','Y','','','','','','','','','Y','','Being to rebuild my server with a single/few commands from a configuration.','','','Make the language less complex, or easier to understand. Certain configuration options (seems) to have a large(r) effect then the name/docs suggests.\r\n\r\nI would also love better documentation. As I use it for personal stuff only I don\'t have a lot of time to deep dive into all documentation outside of the manual. However new(er) stuff like Nix Flakes are still a complete mystery as I\'ve been unable to find clear documentation in the admittedly little time I\'ve researching it. It could also be the case that better navigation to and in the docs would help here.','Arch Linux + a bunch of scripts.','','','','','','','','','','','','','','','','','','','','N','No need for it so far, all packages are need already exist.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Wanted a reproducible server.','','','Y','','','','','Easy reproducible server','','','See answer for Nix; easier language & better docs.','Arch Linux + configs in git.','Y','','','','','','','','','','','','','Thanks for all the work you\'ve put into Nix/OS.'),(1429,NULL,1,'en','1037233002','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1430,NULL,1,'en','208606120','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','Y','OpenBSD, NetBSD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1431,'1980-01-01 00:00:00',5,'en','779335913','A5','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Declarative server configuration','Development environment','Reproductive builds','Rewrite Hydra in a much more modern implementation. Improve documentation greatly.','I would probably still be using Arch on desktop and Debian on servers managed by salt.','','','','Y','Y','','Y','','','','','','','Drone','npm2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Servers','A3','','Y','Y','Y','Y','','Y','','','','','','','','','','','Y','','','','','','AwesomeWM','','Flakes, doesn’t feel finished',''),(1432,'1980-01-01 00:00:00',5,'en','1507793539','A1','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Just heard it from a class course because setting up dev environments is a pain.','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','Software reproducibility','A large ecosystem with nixpkgs','Declarative configuration','more toolings around Nix and documentation','Guix ;p','','Y','','Y','Y','','','','Y','','Y','','','','','Y','Y','','','N','That\'s just me. My pacing with updates is just slow. The maintainers are fast at taking care of updates. :)\r\n\r\nThat said, the undocumented stuff left out from the reference manuals can be a showstopper at times.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Declarative configuration and all that fancy stuff. ALSO TO SHOW MY SUPERIORITY TO ARCH USERRS!!!!','','','Y','','','','','Declarative configuration','The best package repository, nixpkgs :)','Rolling back the speed of sound','IDK... Whatever applied to the previous qn similar to this. ','Still Guix ;p','Y','','','','','','','Y','','','all the hipster window managers','','Haskell packaging, mostly because it has several broken packages in there.\r\n\r\nSame with Python but that\'s just Python being Python. ;p','THIS IS THE YEAR OF NIX (AND GUIX) (AND ALSO FUNCTIONAL PACKAGE MANAGEMENT)!!!!'),(1433,'1980-01-01 00:00:00',5,'en','2135081688','A1','A3','male','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','I started using Nix alongside NixOS.','','','','Y','','','Y','','Y','','','','','','Y','Y','','Y','','Declarative system configuration','Convenient to try out a package (nix-shell)','Lightweight packaging compared to OCI images','','apt','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','I found NixOS in Haskell community. It appealed to me since I was suffering from re-configuration after reinstalling Windows and Ubuntu.','Y','','Y','','','','','Declarative system configuration','Easy, safe and reliable OS upgrade process','Container-like environment without Docker or Kubernetes','','Ubuntu','Y','','','','','','','','','','','home-manager','haskell.nix(https://github.com/input-output-hk/haskell.nix)',''),(1434,'1980-01-01 00:00:00',5,'en','1070328519','A2','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Wanted deterministic, repeatable environments and something to deal with the shared library hell.','Y','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Repeatability','Isolation','Has all the software I use or would like to use','Better examples how to do various things. eg. flakes, overlays.','manually compiled software to a custom prefix, docker containers','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Saw the benefits of maintaining my whole system with nix.','Y','','Y','','','','','Repeatability','Wealth of applications and modules','','','Arch linux','','','','','','Y','','Y','','','','niv','','Keep up the good work!'),(1435,'1980-01-01 00:00:00',5,'en','1500633771','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','When I heard the principle (I don\'t remember where from), I wanted to try it out. I haven\'t stopped using it since.','','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','',' One single configuration, which allow for better grouping of features','Reproductibilty','Easy to replicate ans share environments/config','A way to deal with secrets in the store (I am working on an rfc with a friend to address that)','I don\'t know, probably just language specifics packages managers for projects and dotfile manager for my home.','','','','','Y','','Y','','','','','','','','opam2nix, cabal2nix mainly','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','It looked interesting','Y','','Y','','','Y','','Reproductible setup','Ease of sharing complex configurations (for example simple-nixos-mailserver is a gem)','Easy rollback meaning it\'s easy to update and experiment','More modules for web services (pixelfed, wallabgag...)','Archlinux','Y','','','','','','','','','','Xmonad','- Home-manager\r\n- simple-nixos-mailserver\r\n','',''),(1436,NULL,2,'en','2070620802','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Started using because i broke my archlinux pretty often. I also had to copy my configuration from one laptop to another and decided to switch to nix along the way.','','','','','','','Y','','Y','','','','','','Y','','','Y','','unifying configuration among multiple machine','declarative package management','nix language enabling powerfull abstraction','','','','','','','Y','','','','','','','','','','','','Y','','','N','Still not comfortable enough with nix ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1437,NULL,1,'en','1878769217','A1','A2','male','','Y','','','','','','','','','Y','','Y','','','','','Y','','','','','Y','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1438,'1980-01-01 00:00:00',5,'en','926228126','A1','A3','male','','','','','','','','','','','Y','','','','','','','Y','','Y','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','','Y','','','','','','Y','','','','','','','','','','','Y','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','Y','','','','','','','sway','home-manager','',''),(1439,'1980-01-01 00:00:00',5,'en','1970904432','A6','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using Nix because I started using NixOS','','Y','','','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','precise dependency tracking','reproducible builds','ease of remote/distributed building','- The two space indentation convention followed in nixpkgs. Tabs are for indentation, spaces are for alignment.\r\n- Changing this now would only make things worse, but if the name was different from the start, googling nix-related things would become much easier.\r\n','Building packages from source..? I had started doing that with Arch and Debian packages to add patches and flags, but that quickly became tedious.','','','','Y','Y','','Y','','','','','','','','https://github.com/fzakaria/mvn2nix\r\nStopped using it because this tool (and probably nothing else) can account for all the weirdness that happens inside a maven build.','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend from work talked me into trying it. I first ran it in a VM to get used to writing system configs, then started using it as a daily driver, started using it in my homelab, and finally started using it to manage servers at work.','Y','Y','Y','Y','Y','Y','','Making servers a lot more stateless','Ease of building and deploying new configuration','The ability to test new configurations with NixOS tests','','Arch/Gentoo as daily driver, Ubuntu/Debian for servers.','Y','','Y','','','','','','Y','','DWM','','',''),(1440,'1980-01-01 00:00:00',5,'en','262964257','A2','A4','male','','Y','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I knew of it for a long while, but then a new Job finally made me look more closely, as a build system. Started using NixOS later.','','Y','','','','','Y','Y','','','','','','','Y','Y','','Y','','Reproducibility of build environments and builds','Functional core','All packages I need in nixpkgs','Seamless integration of the nix-level build setup with the interactive highly incremental language-specific development setup - I find I have to define all builds twice, once within nix, and once ofr interactive development.','Debian for the system. Language specific build systems and duct tape for builds.','','','','Y','','','','','','','Y','','','','cabal2nix, haskell.nix, naersk, buildRustPackage','','','','importing another nixpkgs version/fork/PR','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Curiosity, and a linking for declarative approaches','Y','','','','','','','Declarative configuration','Lots of packages','','Easier to run software that\'s provided as binaries by other sources.','Debian unstable','Y','','','','','','','','','','xmonad and bare X','niv','','Thanks!'),(1441,NULL,1,'en','735103815','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1442,'1980-01-01 00:00:00',5,'en','341358510','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Declarative system configuration','Package management','Development environment','Stable Flakes. A good way to handle secrets in NixOS configuration.','Guix','','','','','Y','','','','','','Y','','','','cabal2nix','','Y','','','N','Nothing','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','','','','','','Declarative system configuration ','','','A good way to handle secrets.','Guix','Y','','','','','','home-manager','','','','XMonad','nixfmt, rnix-lsp, lisp-mode (Emacs), direnv for Nix shells','',''),(1443,NULL,NULL,'en','1764617801',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1444,'1980-01-01 00:00:00',5,'en','1096098587','A5','','-oth-','non-binary','','','','','','','','Y','','','','','Y','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I don\'t remember how I discovered Nix (maybe I saw a link on lobste.rs), but I started using it because I was frustrated with traditional package managers, particularly how they don\'t let you have multiple versions of the same package installed. I tried just Nix first and then later replacing my laptop\'s Ubuntu install with NixOS.','','','','','','','Y','','','','','','','Y','Y','Y','','Y','','Packages without configuration files basically never conflict with one another','Installing and removing packages is super fast','Tweaking and rebuilding existing packages is simpler than I\'ve found it to be in other package managers','I would improve the command-line UI. I find it difficult to remember what the commands and options do, and the man pages seem to assume I understand how Nix is implemented (but I don\'t).','','','','','Y','','','','','','','','','','','','','','Y','','N','The Nix expression language is difficult for me to use, and I don\'t really understand how to package compiled software yet. I\'ve tried to learn in the past, but I didn\'t get very far because it was frustrating and (in my opinion) poorly documented.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I had been using Nix on Ubuntu for a little bit, and I decided it would be nice to have (what I perceived to be) the benefits of configuration rollbacks and hermetic packages for my whole OS. It\'s not as polished as I\'d like it to be, but it supports all my hardware and runs XFCE, so I\'m happy enough that I probably won\'t switch back to Ubuntu unless something breaks.','Y','','','','','','','Confidence that I can roll back my system configuration if I break something, without having to boot a recovery image or anything like that','Semi-reproducible system builds through /etc/nixos/configuration.nix','','I wish it were clearer whether I had to reboot after running `nixos-rebuild --switch`, and I wish I had more confidence that upgrading my NixOS version wouldn\'t break my system. I believe I could still roll back the configuration if the upgrade broke something, but I\'d prefer that I could believe it wouldn\'t happen at all. But that might be a problem with my understanding of NixOS, not a problem with NixOS.','Probably Ubuntu.','Y','','','','','','','','','Y','','','',''),(1445,'1980-01-01 00:00:00',5,'en','807754365','A5','A7','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','I liked the idea of NixOS configuration','','','','','','','','','Y','','','','','Y','','','','Y','','','','','make the store not have to be at a fixed global file path (/nix)','','','','','','','','','','','','','','','','','','','Y','','N','just never set it up and I\'m not expert enough to do things in a clean way','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I liked the idea of configuring a system with nix','','','Y','','','','','','','','some \"bundled\" nix packages which provided common collections of packages so I wouldn\'t have to learn so many details. one exaple would be desktop sound system which has a set of common applications included','Ubuntu or one of he BSD distributions','Y','','','','','','','','','Y','','','','I would like to use NixOS for work, but need systems that are compliant to certain standards. having information some tools to test that or having information about setting up a compliant system would be helpful. I keep playing with it, but haven\'t had the time to get into it enough'),(1446,NULL,1,'en','639661193','A5','A3','male','','','','','','','','Y','','Y','Y','','','','','','','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1447,NULL,NULL,'en','1728045843',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1448,NULL,NULL,'en','1707477072',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1449,NULL,1,'en','1436044402','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1450,'1980-01-01 00:00:00',5,'en','1887377190','A2','A5','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','','Y','','','','','','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(1451,'1980-01-01 00:00:00',5,'en','934563114','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','add proper and easily accessible documentation of input parameters and return values for all those functions in nixpkgs','','','','','Y','Y','','','','','','','','','','','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1452,NULL,NULL,'en','1440268407',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1453,NULL,2,'en','1589127277','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1454,NULL,NULL,'en','315239553',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1455,'1980-01-01 00:00:00',5,'en','1505440730','A2','A3','male','','','','','','Y','Y','Y','','','Y','','','Y','','','','Y','','','','','','Y','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Having not to resetup my devices after time because they are wasted - colleges brought me into NixOS','Y','Y','','Y','Y','','Y','','Y','Y','','','','','Y','Y','Y','Y','','replicability','','','','Salt, Ansible, Ubuntu','','','','Y','','','','','','','','','','','yarn2nix\r\nnpm2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','same','Y','','Y','Y','','','','replicability','','','','same','Y','Y','','','Y','','','Y','','','i3wm','home-manager\r\nnixfmt','NixOps',''),(1457,'1980-01-01 00:00:00',5,'en','94003448','A5','A2','male','','Y','','','','','Y','','','Y','Y','','','','','','','Y','','','Y','','Y','Y','','','','','Y','','','N','Y',NULL,'I didn\'t want to learn a new system to build source code with patches and manual modifications (e.g dwm, dmenu)','If I could more readily find relevant documentation to either create an automatically patched version in the Nix configuration file, or how to build it as I do on all other GNU/Linux systems. Alternatively, the Unity Desktop Environment being available would be an immediate huge bonus.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'see before','see before',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None to my knowledge','None to my knowledge','no'),(1458,NULL,0,'en','2050353615','A1','A5','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1459,'1980-01-01 00:00:00',5,'en','628712523','A5','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','NixOS','','','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','','Ability to extend existing packages','','','','','','','','','','','','','','','','','','','','Y','','','','N','Just haven’t had the time/need yet','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Attracted to NixOS as it felt like the end game of system config management and package management in one.','Y','','Y','','','','','Declarative config management','Breadth of packages','','Better docs and fewer different cli tools','Arch Linux plus some traditional CM like Chef or Fabric','Y','','','','','Y','','','','','','search.NixOS.org','',''),(1460,'1980-01-01 00:00:00',5,'en','719197995','A3','A2','male','','','','','Y','','','','','','Y','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I actually am pretty new to linux, already developed before on windows plataforms but I started to get into linux because i want it to try it out and customize it.\r\nAfter some weeks of searching I find the NixOS distribution and I found fascinating the whole concepts of reproducible builds and rolling back to a previous state.\r\nAt first I didn\'t understand how it works and it really fuzzed my mind, however, after reading and see some people using made me confident to try in my recently purchased laptop.\r\nI find a lot of errors but after some dedication I learned how to solve some of those problems and now I\'m still using it on my laptop and everyday I tinker some stuffs.\r\nAlso, I started learning how to use Nix and Nixpkgs to manage my course projects and so far I\'m enjoying the experience. ','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Reproducible','Nixpkgs is diverse and have a lot of packages','Declarative synthax','Still learning these tools so I don\'t have much complaint but I find kinda difficult to get into and learn\r\nif I have the magic wand I would want to add Nixpkgs to windows because every school pc uses it here, however I know that this is kinda impossible right now and the closest we can get is WSL\r\nAnother thing is probably a list of sources on how to learn more easily, its difficult to find tutorials and sources on google/youtube, but there are a lot of people doing it.\r\n','For package management, probably homebrew','','','','','','','','','','','Y','','','','','Y','','','','N','I\'m still learning ','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Still learning these tools so I don\'t have much complaint but I find kinda difficult to get into and learn\r\nif I have the magic wand I would want to add Nixpkgs to windows because every school pc uses it here, however I know that this is kinda impossible right now and the closest we can get is WSL\r\nAnother thing is probably a list of sources on how to learn more easily, its difficult to find tutorials and sources on google/youtube, but there are a lot of people doing it.\r\n','Y','','Y','','','','','Reproducibility','Atomic Upgrades','Declarative','Better documentation (like wiki) and source learning list.\r\na graphical installer.\r\nsecure by default philosophy.\r\nAn easy way to compile code from source like Arch linux and transpile it to an package system','Guix or Arch linux','Y','Y','','','','','','','','','Sway and Xmonad','lorri, shadowenv, direnv, NUR, nixpkgs-wayland, home-manager','',''),(1462,NULL,1,'en','1245302879','A5','A3','male','','','','','','','','','','Y','','','','','','','','Y','','','','','Y','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1463,'1980-01-01 00:00:00',5,'en','1901330269','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was curious to try some \"exotic\" distribution, tried NixOS, and now I stick with it!','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','Declarative system configuration / management (eg. NixOS)','Hackability, ie. since Nix is a programming language, and not only a configuration language, it\'s easy to implement features that are not already there','Purity / reproducibility. The fact that once you\'ve built a flake, you can just store the result somewhere and use it everywhere you would build the same flake, with the same options, instead of actually building it again.','Documentation (adding)','I never tried something else that does what Nix does, so I couldn\'t tell.','','','','','Y','','','','','','','','','','cargo2nix (github.com/cargo2nix/cargo2nix)','','Y','','','N','I don\'t have time to.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Same as with Nix (discovered both at the same time), I was simply curious about Linux distributions, tried a few, and my favorite was NixOS.','Y','','Y','','','','','Declarative configuration, along side with comprehensive options, make it very easy to configure the system with the provided options (sometimes, an there is no option that covers a wanted feature so you have to make it, but it\'s rare, and fun when it happens)','Pre-bundled \"system\" packages, and coherency of the options chosen. This means it\'s very easy to install, say, a mail server, because NixOS automatically pulls all the dependencies, in the larger sense: not only it installs all the components of a mail server, but it may also install a web server to provide certificates, on its own. It seems a small thing, but when you compare the equivalent operations on other distributions, working with NixOS has been less painful.','Neat integration with flakes and home-manager.','Documentation as a proper wiki. The current one is fine, but it does not stand the comparison with Arch\'s or Gentoo\'s. There is definitively room for improvement.','Gentoo','Y','','','','','','','','','','Sway','I use very regularly home-manager, along side with flakes.','','Great job so far!'),(1464,'1980-01-01 00:00:00',5,'en','767142067','A2','A5','male','','','','','','Y','Y','','Y','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Like to control my setup','Y','Y','','Y','','','Y','','Y','','','Y','','','Y','Y','Y','Y','','Declarative system management','Never break my system','','','Gentoo','','','','','Y','','','','','','Y','','','','','Y','Y','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','Y','','','','','','','Y','','','','','','','','','','Qtile','','',''),(1466,NULL,1,'en','587025134','A2','A6','male','','','','','','','Y','Y','Y','Y','Y','','','','','','','Y','','','','','','','','','','','','','Android',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1467,NULL,2,'en','441719904','A1','A3','male','','','','','','','','','','','Y','','Y','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','Y','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','Dev env','Reproducible builds','system config tracking','Smart/Better error messages when making mistake in writing nix. (Haskell nix probably?)','','','','','','','','','','','','','','','','cabal2nix\r\nnode2nix\r\n','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1468,'1980-01-01 00:00:00',5,'en','959680068','A2','A3','male','','','Y','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','declarative system configuration. IaC for system','','Y','','','','','Y','','Y','','','','','','Y','','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','Y','','','','','','','','','','awesome wm + overt tools','','',''),(1469,'1980-01-01 00:00:00',5,'en','1086761','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Long story short:\r\nUsing Arch for a long time, wanted a way to track every change I did to the system, the system configs in /etc..., my user config, with variations. Having kind of \'topics\' of changes applied together (got that with the module system!)... A way to easily test something and cleanup after I\'m done (I like to keep my system clean, which is kinda hard without Nix). Everything as-code ❤️\r\nDiscovered Nix, I knew this was THE solution. Studied it slowly but surely for a year & half, see how it works, what it can do... Then started slowly to use it for a project (before flakes were a thing), did work pretty well!\r\nThen slowly still started to use it to install my dev tools. Then I found a way to use it at work (cheating with proot to emulate /nix, because I\'m not admin and user namespace are disabled :/), before managing to create a proper /nix folder and having a more stable and really uptodate dev setup (running on old CentOS7)\r\nNow playing with it more and more, slowly nixifying my whole Arch setup before setting up a proper NixOS on a new laptop!','','Y','','','','','Y','','','','','','','','Y','Y','','','','','','','','Ansible, and without even trying custom software builds','','','','Y','Y','','','','','','Y','','','','','','Y','','','Y',NULL,'N','N','Having my Arch setup properly nixified, but I\'m working on it! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager (for its lib, but not its modules, I do my own mostly) ','',''),(1470,'1980-01-01 00:00:00',5,'en','1921470455','A1','A4','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','Y','','','N','N','curiosity',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','curiosity',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1471,NULL,NULL,'en','1109510835',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1472,'1980-01-01 00:00:00',5,'en','294464630','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Personal interest and being fed up by Andi le','','Y','','Y','','','','','Y','','Y','','','Y','Y','','','Y','','Dependency independence ','Declarative configuration ','Concept of reproducibility ','Transparent security updates','More vms and containers','','','','','Y','','','','','','','','','','','Y','Y','','','N','Not deep enough into nix at the moment, time','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Personal intrest','','','','','Y','','','Declarative configuration','Rollbacks','Reproducibility ','More transparency to security updates and patches ','Debian, Arch','Y','','','','','','','','','','awesome','home-manager','',''),(1473,NULL,NULL,'en','304188793',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1474,'1980-01-01 00:00:00',5,'en','1226160384','A2','A4','male','','','','','','','','','Y','','Y','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Simplified software development and deployment.','Y','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','Composability','Determinism','','More tests for Nix to avoid breakages of existing features and incompatibilities between versions.','Guix','','','','Y','Y','','Y','','','','','','','','yarn2nix\r\nnode2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Define systems in a reproducable way.','Y','Y','Y','Y','','Y','','Declarative','NixOS modules','','','Gentoo','Y','','','Y','','Y','','','','','DWM','','',''),(1475,'1980-01-01 00:00:00',5,'en','2112639395','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Because i started using NixOS','','Y','','','Y','nix-on-droid','Y','Y','Y','Y','Y','Y','','','Y','Y','','Y','also to generate some other general purpose stuff like configs that are not related to nix/nixos','Build it once, run it everywhere (reproducibly)','Go back if you mess up','Patching and pinning is ridiculously easy','- compatibility with running executables from other Linux distros\r\n- make evaluations more efficient (memory and cpu wise)\r\n- don\'t focus on features a majority of the community doesn\'t want/need','spack','','Y','','','','','Y','','Y','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Friends of mine showed me NixOS as i told them that my arch installation broke a few days prior.\r\n\r\nThen, i tried NixOS and i never want to go back.','Y','Y','Y','Y','Y','Y','','Immediately seeing what runs on a machine by looking at the configuration.nix','Versioning of the whole operating system and easy sharing of services etc','Building on one machine and copying the system to another machine','Faster evaluation of systems, easier onboarding manuals','ansible','Y','','','','','Y','manually evaluating, building, copying and switching (only used in rare cases)','','','','bspwm','sops-nix\r\nrobotnix','nix 2.4\r\nnix-alien',''),(1476,NULL,NULL,'en','114412286',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1477,'1980-01-01 00:00:00',5,'en','92953976','A2','A2','male','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was persuaded by a friend and never able to leave it once I started using it ;)','Y','','','','','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','A powerful DSL for describing my systems','Sandboxed and (pretty) reproducible builds','An extensible system (mostly relates to nixpkgs overlays and the nixos module system)','- Prioritize the CA efforts because they can seriously improve the overall maintenance and CI systems\r\n- Stop pushing features that are highly opionionated like Flakes\r\n- Proper support for IFD or a viable alternative\r\n- Improve memory and CPU usage (especially important when evaluating a lot of systems)\r\n- Maybe some improved logging so people can actually see why their nix segfaults?','Ansible and Debian probably','','','','','','I use nix 2.3','Y','','Y','','','','','','wp4nix: https://git.helsinki.tools/helsinki-systems/wp4nix\r\nbbb4nix: https://github.com/helsinki-systems/bbb4nix\r\n(you can now guess where I work)\r\nranz2nix: https://andreas.rammhold.de/posts/ranz2nix\r\nbower2nix (from nixpkgs)\r\npoetry2nix (from nixpkgs)\r\nnode2nix (from nixpkgs unstable)\r\nyarn2nix (from nixpkgs)','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was persuaded by a friend','Y','Y','Y','Y','','Y','','Extensibility by the modules system','Reproducibility and the entire of a system closure and having it be consistent in itself','A high amount of modules','- Improve eval time of the module system (easier said than done, I know)\r\n- Switch to more non-homegrown solutions like networkd, stage 1 systemd, systemd users\r\n- More tests!','Ansible and Debian probably','','','','','','Y','','','','','i3','Hydra. I use it daily (and develop it)','nix > 2.3','Great to see some people trying to understand what majorities of the community want <3 It\'s a lot less opinionated and it\'s probably for the greater good of the community to ask as many people as possible and merge their results'),(1478,NULL,NULL,'en','1812860976',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1479,'1980-01-01 00:00:00',5,'en','262382121','A7','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','','N','N','Looking at it now for the 1st time. Heard about it from a friend today.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','curiosity',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not applicable','not applicable','Good luck. I hope you do well.'),(1480,'1980-01-01 00:00:00',5,'en','2040147735','A5','A3','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','After painfully upgrading Debian a few times, heard about NixOS and took the plunge.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducible builds','Excellent package selection in the cache','Declarative package management','Stabilize Flakes','Debian with docker, and suffer','','','','Y','Y','','','','','','','','','','Rust2nix','Y','','','','N','No need seen, anticipated difficulty with PR submission and approval','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Struggled through a few Debian upgrades, then discovered NixOS','Y','','Y','','','','','Declarative package management','Reproducible builds','Excellent package selection from the binary cache','Stabilize flakes','Debian','Y','','','','','','','Y','','','','','',''),(1481,NULL,NULL,'en','1639287553',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1482,NULL,3,'en','881101217','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','Y','','','','','Y','','Y','','','','','','','Y','','Y','','','','','','','','','','','Y','','','','Y','','','','','','','','','','','',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1483,NULL,1,'en','704436481','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','Android','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1484,'1980-01-01 00:00:00',5,'en','190397164','A2','A3','male','','','Y','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','While learning Haskell, I\'ve heard about Nix. Soon I\'ve switched my main from Gentoo to NixOS completely.','','Y','','','','','Y','','Y','','','Y','','','Y','','','Y','','Reproducibility','Purity','Large repository','Debugger that drops to REPL, Common-Lisp-style continuations on error, Algebraic types and type-checking, Two-way Haskell-Nix compiler, Gentoo-like flags, a language server (if not switching to Haskell Nix DSL).\r\nFlakes are good, adopt a package management system from other programming as a flakes management tool.','','','','','Y','Y','','','','','','','','','','','','Y','','','N','It takes much effort to even figure out how to start contributing.\r\nOnce I\'ve built a newer version of CKAN for Kerbal Space Program by modifying an existing expression from Nixpkgs and added it to my \"environment.systemPackages\"; then I wanted to share it, but haven\'t done so due to discomfort and sense of unease after trying.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','NixOS is even cooler that Gentoo, which was my main at the time. Found out about it when learning Haskell.','Y','','Y','','','Y','','Purity','Rollbacks','Ease of configuration and/or repair','Better SoC/embedded support with more automatic image creation, mobile support, perhaps re-flashing on a router','Guix, Arch, Gentoo.','Y','Y','','','','','','','Y','','','','',''),(1485,'1980-01-01 00:00:00',5,'en','545437282','A2','A3','male','','','','','','Y','Y','Y','','','Y','','','Y','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','Y','','','','cabal2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','Xmonad','','',''),(1486,NULL,1,'en','836721704','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1487,'1980-01-01 00:00:00',5,'en','365257970','A5','A3','male','','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','When I heard about Nix I immediately got very interested in the reproducibility aspect and the ease of programming a system setup using the Nix language.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducible environments','Nix language programming including the ability to share and reuse of components','A humble and respectful community','Amazing documentation, tracing and debugability. E.g. lsp integration that allows going to /etc/some/file and see where the corresponding line numbers are defined.','Maybe Fedora or something...','','','','Y','Y','','','','','','','','','','Naersk: https://github.com/nix-community/naersk','Y','Y','','','N','I have contributed in the past, but lately haven\'t found anything to contribute','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','When I heard about Nix I immediately got very interested in the reproducibility aspect and the ease of programming a system setup using the Nix language.','Y','','Y','','','','','Modules make it so easy to maintain configs','Other people\'s modules for setting things up quickly','','','Maybe Fedora. Not sure, since I\'ve been using Nixos for a long time without thinking about alternatives','Y','','','','','','','','Y','','xmonad, steam','','',''),(1488,'1980-01-01 00:00:00',5,'en','740309397','A2','A4','','','Y','','Y','','Y','','','','','Y','','','','','','','','','','Y','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','','','','','','Desktop use','Y','Y','','','Y','','dev shell','different versions of software / system rollback','declarative package configuration','- more faimiliar language with editor support','env-solutions of programming languages','','','','','Y','','','','','','','','','','Trying to avoid it, because these always get out of sync.\r\nWould be nice if the builders could automatically pick up the respective lock files of projects.','','Y','','','N','don\'t want others to rely on my bad maintained software','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I liked the idea and hope that building software for nixos will reduce bugs through unclear dependencies.','Y','','','','','','Desktop','system rollbacks','declarative system config','support for tricky packages (e.g. steam)','- Add better documentation, showing how the different parts (nix, nixos, nixpkgs) are used together to integrate own software in nixos (without bringing it to nixpkgs)','chef for provisioning','Y','','','','','','','','','','Cinnamon','','',''),(1489,'1980-01-01 00:00:00',5,'en','1538361912','A4','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','','','','','','','simplify nix','containers','','','','','','','','','','','','','','','','','','','','N','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1490,'1980-01-01 00:00:00',5,'en','899848350','A5','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was looking for a tool that would allow me to have a declarative system configuration that is reproducible and copied on my various computers.','Y','Y','','Y','Y','','Y','Y','Y','','','','','','Y','Y','','Y','','Reproducible environment/development platform','Using the same tools, the same way, on multiple operating systems','Declarative tooling configuration (NixOS + Home Manager)','Faster evaluation and a type system.','Docker environments','','','','Y','Y','','','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','My disk was corrupted due to a power outage, so I decided to install NixOS on my laptop during my exam week.\r\nI heard about Nix and NixOS when trying to learn Haskell so I decided to give it a go.','Y','','Y','','','','','Declarative configuration','Lots of modules with good default configurations: disk encryption, PAM authentication with a security key, boot managers, many many server programs.','Easily experiment with various tools (desktop environments, boot managers, disk encryption, PAM authentication with a security key)','1. Official Home Manager integration in NixOS!\r\n\r\n2. I wish the plymouth (graphical boot) integration supported unlocking Luks encrypted partitions / disks.\r\n\r\n3. I wish there was an easier way to use secrets in NixOS besides sops-nix or agenix.\r\n\r\n4. Automatically update my system to have the latest security updates. I think this is something the Content-Addressable project might solve?','For the everyday desktop: a GNU Stow alternative that supports templates.\r\nFor my servers: a mix of Ansible (yuck) and containers.','Y','','','Y','','','','','','','Wayland (Sway)','Home Manager','','Thanks to the team!'),(1491,'1980-01-01 00:00:00',5,'en','292374237','A3','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Docker was too slow on mac and I needed reproducible environments','Y','','','','','','Y','','Y','','','','','','Y','','','Y','','mac compatibility (otherwise I wouldn\'t be able to use it at all)','reproducibility','cached builds','debugging tools?','Probably stick to docker?','','','','Y','Y','','Y','','','','','','','','I\'d like to use node','Y','Y','','','Y',NULL,'N','N','A Nas-focused build/config',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-darwin\r\nhome-manager','','Nix\'s fundamentally changed the way I use computers. Thank you.'),(1492,'1980-01-01 00:00:00',5,'en','227111881','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Read an intro to it describing the reproducible builds and then found nix-Darwin.','Y','','','','','','Y','','Y','','','Y','','Y','Y','','','Y','','Transient, reproducible environment','Flakes bringing easy updates/rollbacks','Store','Convention over configuration. Make it less open ended and add “official” patterns to follow.','Asdf in development and immutable images in production','','','','Y','Y','','','','','','Y','','','SemaphoreCI','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','Y','','','Y','','Declarative configuration','','','','','','','','Y','','Y','','','','','','','',''),(1493,NULL,3,'en','804711379','A2','A2','male','','','Y','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Was recommended NixOS by a friend and wanted to switch from Windows after a leaving school that required it.','','','','','','','Y','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1494,NULL,NULL,'en','2146782924',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1495,NULL,NULL,'en','1859697294',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1496,'1980-01-01 00:00:00',5,'en','1769811418','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Curiosity towards Nix package manager and NixOS. I was interested in declarative approach to defining a system.','','','','','','','Y','','','','','','','','Y','Y','','Y','','Declarative definition of the system','System independent shell environments via nix store','Ability to specify an environment (no installation instructions and fixups because someone is missing some global dependency that is presumed to be installed on the system). Nothing is presumed','Add types (very important for readability), add better documentation (more examples, up to date resources), more unified approach to doing one thing, simpler way to do simple thing (straightforward thing tends to have a convoluted expression). Such a great tool, but because of lack of reasources, and weird ways of specifying something, I find myself copy-pasting someone\'s shell script instead of writing from scratch. It\'s more about remembering idioms than just writing intuitive sentences of what you want to achieve. \r\nBasically it sums to that when I open an empty file in haskell (or some other language) I can use basic language constructs and get to the program I desire to write. I can\'t do that with nix, I need to take someone\'s boilerplate (my template) and tweek it from there for specific project.','I would definitely look into guix. I can\'t go back to imperative.','','','','Y','','','','','','','Y','','','','cabal2nix (callCabal2nix)','Y','','','','N','Don\'t know where to start. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','','Y','','','','','','','','','','It boils down to things in Nix.','','Y','','','','','','','','','','xmonad','home-manager','various helper tools for setting up a project.\r\nI don\'t like to use external tools outside the main tool (nix).\r\nIf there is need for some additional features they should be included in the nix, or if the tool\'s features are diverging from the core tool functionality, then the additional tool should be under the same maintainers/organization. \r\nBasically I don\'t like to have a working environment that consists of various tools each with a different namings and inconsistent commands.','I would love that nix/nixos conferences/gatherings are not so dead. E.g. nixcon. \r\nIt\'s an amazing tool, why aren\'t we introducing it better to more people? '),(1497,NULL,1,'en','452380133','A1','A7','male','','','','','','','','','','','','','','','','','','','','','','','','','retired','','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1498,'1980-01-01 00:00:00',5,'en','1560054257','A5','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','IT\'S REALLY COOL!! AND FUNCTIONAL!! and declarative... and I want a stateless system','','','','','','','Y','','Y','','','','','','Y','','','Y','','','','','I would make Flakes the default :P','pacman','','','','','Y','','','','','','','','','','','','Y','','','N','I probably would but I\'ve only been using Nix for a couple months :P','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','The idea of managing my system with just a few config files that I could copy over to other machines really drew me in! And I want a STATELESS SYSTEM!! Using NixOS is the only way I could achieve that. I think it is REALLY COOL and it is MUCH easier to manage than any other system I\'ve used before. Managing my system declaratively with Nix feels like actual heaven :3','Y','','Y','','','','','','','','I would wish for more parts of the system to be optional (ability to use musl instead of glibc, ability to use some init system over systemd)','OpenBSD','','','','','','Y','','','','','HerbstluftWM','','',''),(1499,'1980-01-01 00:00:00',5,'en','2009281223','A2','A5','male','','','','','','Y','','Y','','','Y','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','','','','','','','','','','','','','','','','Y','','','','','Add a modern shell instead of bash. http://objective.st\r\nAdd gui tools for looking around and debugging.\r\n','I would just run the bare minimum server wise with perhaps a k3s for \"stuff\"','','','','','','','','','','','','','','','','','','','','N','Dont know enough yet.\r\nPR backlog?','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted to develop self-updating server appliances. I was using Fedora Atomic and later FCOS. (updates need a reboot, rebuild of OS). NixOS is much quicker and more forgiving.','','Y','Y','Y','','','','Config as Code','Iterative exprience','','More docs.\r\nBetter shell, stsh. http://objective.st\r\nSome GUI tools. http://objective.st (GNUstep) for brwsing and debugging.\r\n','Kubernetes cluser, probably k3s','Y','','','','','','syncthing','','','','','','',''),(1500,'1980-01-01 00:00:00',5,'en','1039010863','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I needed something as flexible as Gentoo but with pre-built binaries available. Nix was a perfect fit and I really liked that I can just clone Nixpkgs and start developing.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','','Y','','Isolated and reproducible builds','Transparent source/binary deployment','Declarative configuration','IMO Nix* mainly needs more contributors and I hope to see more improvements regarding stability and security updates.\r\nIt might be nice to have Eelco\'s Nix language extension for package configurations (https://gist.github.com/edolstra/29ce9d8ea399b703a7023073b0dbc00d).\r\nAnd Hydra should be improved.','Maybe Spack but there\'s no real Nix alternative (and I definitely wouldn\'t use Flatpack, Snap, etc.).\r\nInstead of NixOS I\'d use Fedora (or Gentoo/Arch/Alpine).','','','','Y','','','','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I got annoyed but Gentoo\'s long build times and NixOS was a better alternative.','Y','','','','','','','Atomic updates (and rollbacks)','Declarative system configuration','Reproducible system configurations','I\'d love to have better communication channels for breaking changes on nixos-unstable (e.g. via a CLI tool that can filter out relevant news).\r\nIt would also be nice to have shorter delays between master and nixos-unstable.','Fedora (or Arch/Gentoo/Alpine).','Y','','','','','','','','','','Sway','https://github.com/Mic92/nix-update\r\nhttps://github.com/NixOS/ofborg\r\nhttps://hydra.nixos.org/\r\nhttps://github.com/flyingcircusio/vulnix','https://github.com/NixOS/nixops (probably still depends on Python 2...)','Overall we\'re doing a great job!\r\nWe just need more contributors, higher quality standards, and more publicity (which should result in more funding, contributors, etc.).'),(1501,'1980-01-01 00:00:00',5,'en','524153214','A5','A4','-oth-','Agender ','','Y','','','Y','Y','','','','','','','','','','Y','','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted a solution to managing system and programming language dependencies that allowed.','Y','','','','','','Y','','Y','','','','','','Y','','','Y','','nix-shell environments for isolated dependencies','Hydra/build cache','','Automated package updates from upstream','Docker or chef/puppet','','','','','','','','','','','Y','','','','','','','Y','','N','The changes I need in nixpkgs are in progress by time I need them. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Love nix and wanted that on more of my computer life. Installed it on a work laptop and home server. Laptop/whole (non-server) system didn’t end up working too well 5 years ago, but continued using it for servers ','','','Y','','','','','Single config file for system configuration','Easy test/rollback of system configs','','Automated partitioning/disk setup','Arch','','','','','','Y','','','','','','','','I love nix, thank you for your work!'),(1502,'1980-01-01 00:00:00',5,'en','733076307','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Read about it on Reddit, thought it sounded cool, gave it a spin, liked it.','Y','Y','','','','','Y','','','','','','','Y','Y','','','Y','','Shared, composable, declarative configuration and package management between my Mac and Linux machines','Isolated dev environments','','Add a tremendous amount of good, easily searchable documentation','Ansible','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Read about it on Reddit, thought it sounded cool, gave it a spin, liked it.','Y','','','','','','','Declarative OS configuration.','Ability to boot previous generations of OS configuration.','','','Ansible and Arch Linux','Y','','','','','','','','','','i3wm','nix-direnv','lorri, nox, manix, poetry2nix',''),(1503,'1980-01-01 00:00:00',5,'en','415509593','A5','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','Y','IT Support','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I botched the upgrade from Ubuntu 18 to 20, then I attempted to install Debian which failed because of lack of proprietary firmware. Then I installed NixOS which I heard of because I\'m friends with Guix users and Guix is a fork of Nix.','','Y','','','','Nix-on-droid','','','Y','','Y','','','','Y','','','Y','','NixOS Options for configuration','Nixpkgs having nearly everything, I no longer need to supplement it with snap and flatpak like I did on Ubuntu.','home-manager and the fact that nix works on raspberry pi','Decentralized package hosting over ipfs or gnunet\r\n\r\nUpdate apparently this already exists as \"content addressable derivations\" ','For declarative server configuration, docker via dockerfiles\r\nFor package management, some combination of apt, snap, flatpak, and appimages\r\n\r\nit would suck, thank god for nix!','','','','','','','','','','','','','','','','','','','','N','I don\'t know how to make a package','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Botched upgrade from Ubuntu 18 to 20, couldn\'t figure out Debian','Y','','','','Y','','','NixOS options (declarative configuration)','Nixpkgs (the fact that everything is in the repos)','Home-manager','Graphical Installer','For declarative server configuration, docker via dockerfiles\r\nFor packages, snap, flatpak, appimages, building from source, etc\r\n\r\nIt would suck, thank god for Nix!','Y','','','','','','','','','','i3-gaps','','The Nix User\'s Repository (NUR), everything I need is now in nixpkgs or unstable','Nix home-manager as a backup tool - https://technologists.cloud/jackie/blog/home-manager-backup.html'),(1504,NULL,2,'en','614416145','A2','A3','male','','Y','','','','','','Y','','','Y','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I learned about nix and nixos hanging out in the #haskell irc channel.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Declarative system configuration management','Flakes','Nix Home manager','The language itself as a superset of bash','Guix','','Y','Y','Y','Y','','','','','','','','','sourcehut','','','Y','','','N','High barrier of entry',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1505,'1980-01-01 00:00:00',5,'en','104397962','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I just started with Haskell. Finally I ended up using Nix.','','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','Package Management','Build my own projects','Reproducible Environments','','Arch, Gentoo, Guix...','','','','','Y','','','','','','','','','','','Y','Y','','','N','I am very dumb.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Same as Nix','Y','','Y','','','','','','','','','','','','','','','','','Y','','','Dwm','','',''),(1506,'1980-01-01 00:00:00',5,'en','1465145691','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1507,'1980-01-01 00:00:00',5,'en','182645772','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','ChromeOS','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','My old install was slowly getting dirty','','','','','','','Y','','Y','','','','','','Y','','','Y','','Nix Flakes','Declarative System Configuration','Nixpkgs','Add breakpoints and debugging','Shell scripts','','','','','Y','','','','','','','','','','https://github.com/DavHau/mach-nix','','Y','','','N','PR Scary','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Old install got cluttered','','','Y','','','','Desktop','System Management','Atomic Updates/Rollbacks','Tons of packages','Robust debugging interface to troubleshoot flakes','Void Linux or Arch Linux','','','','','','','','','','','Sway','','','Thanks for making nix'),(1508,NULL,1,'en','1735555021','A5','A5','-oth-','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','i like pain....but only once. ;) nothing else provides that.','Y','Y','Y','','Y','','Y','','Y','Y','','Y','','','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1509,NULL,1,'en','418319541','A3','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1510,'1980-01-01 00:00:00',5,'en','1435777747','A5','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I initially heard about Nix in the mid-2010s, but didn\'t pay much attention to it, and only started using Linux a few years later--I had been using Windows exclusively up until then. As I began using desktop Linux full-time, I realized that the way these systems were configured were too brittle, and any change to that configuration was often difficult to revert (I remember having to re-install Arch Linux several times!). Eventually around mid-2019 I stumbled across a post called \"Guix: a most advanced operating system\" (which seems to be gone now...) and through that, re-discovered Nix and NixOS. I was extremely excited to try it out and track my configuration in a Git repo, so I installed NixOS on my laptop straight away. I then started using Nix itself to develop personal/university projects, which was very convenient, especially when collaborating with other students (when I got them to try Nix out). I\'ve been a happy user of Nix ever since.','Y','','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Track package definitions through version control','Reproducibility of builds','Remote builds (very useful for macOS hosts!)','The most prominent thing would be approachable documentation, to make onboarding significantly easier. Nix by itself is somewhat easy to understand I think, but the mechanics behind the tools we use on top of Nix (eg. Nixpkgs, NixOS\'s module system) can be difficult to wrap one\'s head around sometimes. You usually don\'t have to worry too much about these things until you do (e.g. diagnosing errors).','I\'m not sure a comparable piece of software would exist, but I\'d likely just use Homebrew on macOS to a greater extent than I do now. For Linux systems, I would probably use thee provided package manager.','','','','Y','Y','','','','','','Y','','','','- poetry2nix: https://github.com/nix-community/poetry2nix/','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','See why I started using Nix, because those stories mostly coincide with each other.','','','Y','Y','','','','Tracking system configuration through version control using a functional JSON-like (i.e. approachable) language','The ability to rollback configuration changes if something goes wrong','Building a NixOS configuration remotely, whether for CI/CD or for bootstrapping a server (e.g. a Raspberry Pi)','I\'d better document how the module system works and maybe make it more approachable to first-time users.','I\'d likely just use the usual Linux distros for servers (since I no longer use desktop Linux on my development machines), though I wouldn\'t be too happy about it. I\'m assuming here that Guix wouldn\'t exist, since it was inspired by Nix IIRC.','Y','','','Y','','','','','','','','I use home-manager to manage my user environment with Nix, and nix-darwin to manage my MacBook\'s system configuration (well, as much as I can).','',''),(1511,'1980-01-01 00:00:00',5,'en','23967920','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Got a lesson at chaos camp 2019. Concept is cool.','','','','','','','Y','','Y','','','','','','Y','','','Y','','Clean machine','Small footprint','Full control','More exchange of .nix files. Tutorials.','Linux mint','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','Clean install','Small footprint','Reproducable configuration','grafic configuration, installer with .nix generation files','Linux mint','Y','','','','','','','','Y','','','','',''),(1512,'1980-01-01 00:00:00',5,'en','1723063848','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I really like the idea of declarative centralized configuration of machines and have built systems like it myself','','','','','','','','','Y','','','','','Y','Y','Y','','Y','','Declarative config','','','The documentation on the nix lamguage','Ansible','','Y','','','','','','','','','','','','','','','','','','N','How do I add to it?','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','Y','','','','','Same as nix','','','Documentation on language','Debian and ansible','Y','','','','','','','','','','i3','','',''),(1513,'1980-01-01 00:00:00',5,'en','677157','A5','A3','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','N','N','Declarative package management. Fearless installation and painless uninstallation / rollback.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Please simplify the tutorials and onboarding process.\r\n\r\nThere is a big jump from the one-line Nix installation incantation to Nix expressions and details about the Nix language. There are numerous other tutorials that suggest using nix-env. There are other citizens in the ecosystem, including nix-darwin, nix-flakes, home-manager, etc., and they have mysterious purposes.\r\n\r\nI am a competent Linux user (having used Fedora for over 15 years now), and am a reasonably competent functional programmer. The documentation on the website is all either incomprehensible or trivial.\r\n\r\nCan we please just have a single official tutorial that begins with installing the package manager, and then describes the official way to install new packages, rebuild the environment, and defines just enough of the vocabulary that users can begin using the system?'),(1514,'1980-01-01 00:00:00',5,'en','1827988345','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','Y','','','','','Developer, Machine Learning','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','The promise of replacing imperative Docker builds AND brittle virtualenvs, Conda, and HomeBrew is just too enticing. But I\'m still just getting started1','Y','','','','','','Y','','','','','','','Y','','','','','','Developing Python applications using nix-env, though I\'m just getting started.','Next I want to use direnv and shell.nix for declarative and automated development management.','Third, I want to build Docker images using Nix.','I\'d make it simpler to use and get started. I\'m still very lost most of the time, and I consider myself a quick study, AND I took the time to learn the Nix language first (and was decently proficient with Haskell a few years back).\r\n\r\nI can see the improvements coming down the pipe, but I still get really confused by what Flakes are, how and when I\'m supposed to use them, and why I still need to use channels sometimes (like to install home-manager) even when channels were deprecated in 2.4?\r\n\r\nThe new `nix` CLI is a massive improvement, but it\'s still somewhat unsupported (eg, it\'s not installed in this new NixOS install I just did and I don\'t know how to turn it on?) and most wiki/manuals/forum posts are still using the old commands (which is understandable, but unfortunate).','Virtualenv, poetry, Docker, homebrew. Maybe Fedora Silverblue with their toolboxes. I looked into Arch/pacman too.','','','','','','','','','','','','','','','I\'ve looked into cargo2nix for Rust development, but it looks ... complicated. I\'d LOVE for a nice Python story (I haven\'t really dug in much there yet) but it also looks somewhat complicated.','','','','Haven\'t gotten there yet.','N','I\'ve looked at some derivations in the git repo (trying to debug things as I go), but I don\'t know where I\'d even get started. Understanding what things like `hydra` even are is a stretch for me.','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','I started using Nix on my work mac laptop, and then was looking for a Linux distribution, and it was either between NixOS, Fedora Silverblue (or workstation) or Arch.','Y','','','','','','','Modules','Home-manager (though I _just_ got it installed after fighting with channels being user specific (couldn\'t understand why me adding the home-manager channel wasn\'t propagating to nix-rebuild switch).','I want to start using nix for Rust and Python development, but I\'m not ready for that yet.','Significantly reduce complexity and surface area across the board. The new `nix` CLI is a huge step forward, but is not installed by default (and I don\'t know how to upgrade it). Also, I understand at a high level why Flakes are good, and I want to start using them, but I don\'t understand how they interact with NixOS modules, or when and how I should use them.\r\n\r\nI also don\'t understand how HomeManager and NixOS modules interact. (eg: when I run home-manager switch, how does that interact with nix-rebuild switch ?).','Fedora Silverblue, or maybe Arch. Or my good old faithfuls: Fedora Workstation or Ubuntu.','Y','','','','','','','Y','','','','NA','Flakes and the new `nix` CLI','I\'m so excited about what is possible with Nix, but I worry the learning curve is too steep for my blood. The whole project and community feels a bit like when I was back in the Haskell community which worries me: valuing elegant solutions over practical ones. I\'d love to see a Rust-community level appreciation of usability and simplicity. I think you all are moving in the right direction, but tough choices lie ahead (for example, to make Nix truly mainstream, I think something more drastic would need to be done with Nix the language, either creating a simpler subset for common usages, or empowering a javascript/typescript dialect/DSL, etc. While there have been popular mainstream new languages adopted (eg HashiCorp\'s HCL) they are SIGNIFICANTLY simpler and more approachable than Nix). Even after learning and then reading (though not writing much) Nix code, I still get quite confused all the time, there\'s just too many ways to do the same thing.\r\n\r\nKeep it up! '),(1515,NULL,NULL,'en','2003322092',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1516,NULL,NULL,'en','1871032978',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1517,'1980-01-01 00:00:00',5,'en','841498701','A5','A2','-oth-','Non-binary','Y','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I started with NixOS when I wanted to try out a new Linux distro on my personal laptop while I was a college student. I was really drawn to the idea of having a static configuration for my system rather than having to manage mutable state. I found it especially appealing for managing application and tooling versions. Once I got into NixOS, I started using nix to get project-local development environments and that\'s when it really sunk in. I could have isolated environments for each of my projects with different toolsets and package versions, and now I use a flake.nix for all projects on Linux or MacOS.','Y','','','','','','Y','Y','','','','','','','Y','Y','','Y','','Project-local development environments','Declarative system configuration and infrastructure deployment','Reproducible package builds','The one major thing missing from Nix for me is locking specific package versions in a flake without having to lock a whole package channel. I.e. lock yarn v2 and node v14 instead of a specific nixpkgs commit.\r\n\r\nI use Rust and Cargo, which locks all dependency versions separately, so I can ask for package X at version 1 and package Y at version 2.2. With Nix, all I can do is lock a specific commit of nixpkgs which has a certain set of package versions. If I want to use an older version of just one package, I have to add another flake input for an older commit of nixpkgs. If you need to lock more than a few specific versions, thos gets unwieldy real quick.','Guix is the closest replacement but Guix System lacking non-free software and Guix not working on MacOS are dealbreakera. Docker sometimes. I would lean on npm plus direnv more often. Mostly I would just have global package installations because there isn\'t a great replacement.','','','','Y','Y','','','','','','Y','','','','yarn2nix: in nixpkgs\r\nNaersk (build rust crates)','Y','Y','','','N','Locally testing changes to nixpkgs to ensure quality commits. I can make and test an overlay on my NixOS machine but the process for testing changes to nixpkgs hasn\'t become clear to me.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I mentioned in my answer about Nix. I was drawn to NixOS because of declarative package management when looking for a new distro on my personal laptop which already ran Linux for a long time. Now it\'s the only distro that I\'ll use.','Y','','','Y','','','','Declarative package management with locked versions','Reproducible server deployments','Simple system configuration using options that abstract over files/services/packages','Easier ways to override functionality of system configuration modules. I would probably leverage functions more for system configurafion than settings as we currently do. It seems like Guix System gets a lot of mileage out of using functions for configuration over settings modules.','For my personal machine, I might use Fedora or Arch linux instead of NixOS. ','Y','','','','','','Terraform and terranix','','','','Sway, bspwm','Nix-flake-utils, nix-darwin, fenix, nix package versions: https://lazamar.co.uk/nix-versions/','NUR','Nix is awesome!'),(1518,NULL,1,'en','1991817140','A1','A5','male','','','Y','Y','','Y','Y','','','Y','Y','','','Y','Y','','Y','Y','','','','','Y','Y','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1519,'1980-01-01 00:00:00',5,'en','1202319951','A1','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Reproducible','','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','','','','','Debian','','','','Y','Y','','','','','','','','','','cabal2nix','Y','Y','','','N','i am noob','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','reproducible','Y','','','','','','','','','','','debian','Y','','','','','','','','','','xmonad, dwm','','','no'),(1520,'1980-01-01 00:00:00',5,'en','1390202902','A3','A4','-oth-','Non-binary','','','','','Y','','','','','Y','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','We adopted it at work. I liked it and adopted NixOS and nixpkgs for personal machines too.','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Software development project dependency mgmt (nixshell + direnv)','Building containers','Deterministic system configuration (NixOS)','Make flakes work like niv, where you can import your sources just about anywhere in your config, instead of having to load everything upfront in a 3k LoC flake.nix\r\n\r\nMake the nix store not duplicate data, so it\'s fast and low footprint when building ridiculously large projects (eg kubernetes resource definitions that power dhall)','Dockerfiles','','','','','Y','','','','','Y','','','','','Bundix','Y','','','','N','Knowing what sorts of contributions are welcome and get merged. I\'ve seen far too many dead prs on OSS projects to give me pause before contributing.','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','I was using nix-built containers at work. We needed a bastion machine for tunneling ssh. Seemed like a good first experience with NixOS. After that I moved our Jenkins servers in hetzner to NixOS. More recently I bought a desktop to run NixOS at home, and register as a remote builder on my MacBook, which I gave up ok bc it\'s too slow (remote building, that is).','Y','Y','Y','Y','','','','Declarative and deterministic system configuration','Booting into old configs','Easy upgrades and rollbacks','Remote building nix machine configs is super slow','Ubuntu','Y','','','','','','','','','','Sway','Niv\r\nNix-script','','Nix discourse is great. Everyone is super helpful.\r\nNix docs are kinda bad.\r\nNix pills don\'t work on macos.'),(1521,NULL,1,'en','1382559087','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','unemployed','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1522,NULL,2,'en','1948985681','A5','A2','fem','','','','','','','Y','Y','','Y','Y','','','','Y','','','Y','','','','','Y','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','On a trip, a friend pitched NixOS to me and won me over. I experimented with it a bit and discovered that it\'s what I\'ve been wishing I could use for a while.','','','','','','','Y','','','','','','','','Y','','','Y','','Reproducibility/isolation ','Dependency management','Cleanliness','For packages that aren\'t packaged for Nix, the documentation for making custom derivations SUCKS and the process is a pain. I would improve this, especially since it\'s necessary for NixOS users.','I primarily use Nix in the context of NixOS, so Ubuntu and apt-get.','','','','','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1523,'1980-01-01 00:00:00',5,'en','1222944200','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','all private infrastructure (at least 5 vms)','A2','I built something functioning \"like\" nixos using debian, lots of scripts and btrfs snapshots and someone saw that and recommended nixos to me. \r\nI have never had any free time since then.','','Y','','','Y','','Y','Y','Y','','','Y','','Y','Y','','','Y','','a linux distro that fulfills all my personal requirements for perfectionism','managing my personal services and infrastructure, eg. nextcloud, gitlab, podman containers, wireguard, grafana, etc.','managing machines in the local hackerspace','Nixos does abstract over state quite well, but it does not abstract over procedures. \r\nThere is no real way to describe how a certain state arises, other than using setup scripts, which are statically configured somewhere. \r\nIt would be nice to be able to describe procedures better, I.e. when I set up my nextcloud instance, it could either take it\'s data from backups somewhere, or it could be set up for the first time, in which case it would create an empty data directory and initialize backups on all targets. nix-ops kinda does that, but it got problems of it\'s own, especially the hard dependency on sqlite is a dealbreaker for me. I am using remote rebuilds atm.','Debian, lots of scripts (maybe ansible) and btrfs snapshots. \r\nI did that, it worked quite well. Simpler than nixos, which is both a blessing and a curse.\r\n\r\nEach script changes the system somehow. The first partitions disks, runs debootstrap and so on, the second runs in the chroot, installs packages, the desktopenvironment and whatnot, the third runs after the first reboot and rearranges desktop stuff using dbus and so on. \r\nAfter each a snapshot is made, so iterating development on the scripts only takes a rollback and a re-run of the changed script. \r\n\r\nThe advantage is that a normal linux user has little to no learning to do to immediately know what\'s going on. \r\nThe biggest disadvantage is that tools change from time to time, there are lots of other disadvantages, I am using nixos for a reason, but it can be a pain too. ','','','','Y','','remote nixos-rebuild','','','Y','Y','','','','drone.io','niv','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','oops, I kinda wrote that in the nix section','Y','Y','Y','','','Y','','oops, I kinda wrote that in the nix section','oops, I kinda wrote that in the nix section','oops, I kinda wrote that in the nix section','oops, I kinda wrote that in the nix section','oops, I kinda wrote that in the nix section','Y','','','','','Y','','Y','','','sway','niv','nix-ops , mandatory sqlite is a deal-breaker',''),(1524,'1980-01-01 00:00:00',5,'en','1889541271','A1','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted an easily reproducible system configuration to save me time setting up / migrating between machines','','Y','','','Y','','Y','','','Y','','','','','Y','Y','Y','Y','','Reproduceable, rollback-able machine configurations','Reproducable development environments','End-to-end server configuration','Better documentation, enduser-friendliness','Would probably fall back to \"normal\" linux configuration & packaging','','','','Y','Y','','','','','','Y','','','','pip2nix, cargo2nix, mach ','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','(see previous answer)','Y','','','Y','','','','(see previous answer)','(see previous answer)','(see previous answer)','','','Y','','','','','Y','','Y','','','','None','I used to use home-manager but stopped (some of the configurations did not work as intended, and I wanted to simplify my setup)\r\nI have tried setting up binary caches but none seemed to quite work as intended + cachix is too expensive','My less technical colleagues resent nixos/nix packaging quite a bit, increasing user friendliness / reducing friction would help quite a bit. Better documentation (possibly going as literate/commented as possible in nixpkgs expressions + examples would help)\r\n\r\nFlakes improves the situtation regarding speed but rebuilds can be quite surprising at times, so being clear as to why things rebuild could help)'),(1525,'1980-01-01 00:00:00',5,'en','495840770','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','undemployed','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I first discovered NixOS and Nix, first through a few Haskell projects\r\nthat use nix as a build tool. later Guix that I first tried. I found\r\nthat it lacked support and a few other features i wanted that NixOS\r\nprovided, so i switched to NixOS, and pretty much all of my projects\r\nuse nix to build and test.\r\n\r\nI am a flake user, home manager user and use nix to build emacs.\r\noverall I am a very happy nixos user and try to use nixos where ever I\r\ncan as I maintain all my system configurations in one git repo, there\r\nis no other tool that gives me all the things that nix and nixos gives\r\nme. I have done a lot with nix but I still experience many pain points\r\n(mostly with NixOS) most of which comes with the nature of the project\r\nsuch as:\r\n\r\n- service validation\r\n when a service configuration is misconfigured that could be caught\r\n at build time with some nix code but instead only caught by systemd\r\n when running the final unit. i do know however this is a very hard\r\n problem but it is one i have ran into with a few modules.\r\n\r\n- debugging nix expressions\r\n Often when i write incorrect nix expressions I find my self unable\r\n to get much out of tracing and other debug techniques, I could just\r\n be ignorant of better debug techniques for nix but often I find my\r\n self using the nix repl and good old trial and error or just groking\r\n code.\r\n\r\n- types and options\r\n Often when i want to use a feature I have not prevously, I resort to\r\n reading the source code of that module, I have got used to the\r\n process but it is not the most ergonomic, and was particuarlly\r\n difficult when learning nixos. I often see type errors that say\r\n \"wrong type\" but do not tell me what the passed type that would help\r\n for debugging (not sure if this is an easy fix or not).\r\n \r\nI have a decent working knowledge of NixOS internals after tinkering\r\nquite a bit and intend to send the project a few PR on many of these\r\nissues, as stated previously I like nix alot and reproducible builds\r\nfor both operating system configurations and binarys is probaby one of\r\nthe most import yet still not fully appricated by the wider community\r\nconcepts and generally recommend nix and nixos to people.\r\n','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','reproducibility ','caching','hydra','haskell like type system','operating system wise i would be using arch, and using mostly language specific packaging tools such as cabal, stack and cargo.','','','','Y','Y','','Y','','','','','','','','cabal2nix https://github.com/NixOS/cabal2nix\r\ncargo2nix https://github.com/cargo2nix/cargo2nix','','','','','N','Not got round to it but intend to.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','see nix story','Y','','Y','Y','','','','reproducibility ','declarative configuration of services','roll back','better error handling in service configurations and better detection of conflicting options.','arch ','Y','','','','','Y','','','','','Xmonad','Home manager \r\nemacs overlay\r\n','','great project keep up the good work.'),(1526,'1980-01-01 00:00:00',5,'en','1749246513','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Was on Gentoo. Portage went boom, so I started migrating my workstation to Nix around 2-3 years ago.','','Y','','Y','Y','','','','Y','','','','Workstation','','Y','','','Y','','Different versions of software provided by different channels or different commits of nixpkgs with flakes','nix shell','nix bundle','- Guix in nixpkgs, and some form of translation in between\r\n- Better editing experience. A strong feature of Guix is Guile in geiser with Emacs, but nix doesn\'t have anything similar. I\'ve never had success with rnix-lsp\r\n- A better language, but I\'m aware that\'s debatable lol\r\n\r\n','rpm-ostree for immutable package management','','','','Y','Y','','','','','','','','','','Used to use pip2nix but stopped when I learned how to package python packages','Y','Y','','','N','- Slightly overwhelmed by the size of the repo\r\n- Laziness to read the contributing guide\r\n- Not a huge fan of the language\r\n\r\nThat being said, I will do my best to contribute this year','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Gentoo borked, and I started using NixOS in a vm and saw that it\'s way more stable than portage. Slowly migrated my workstation (A T580 laptop) and never looked back','Y','','','','','','','declarative and reproducible config','Stable mixed with unstable software and kernel using flakes\r\n','','Add non-root containers','- (podman|docker)-compose for service deployment\r\n- MicroOS, Fedora Silverblue, CoreOS, and essentially ignition for configuring OS\r\n- Ansible and Terraform for declarative deployment','Y','','','','','Y','','','Y','','i3,XMonad,StumpWM, qtile, and sway','direnv, home-manager, and nix bundle','nixops, since ansible has worked better for me for non-nixos servers','Thank you for everything you\'ve done'),(1527,'1980-01-01 00:00:00',5,'en','191219831','A4','A1','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','','','iPadOS, iOS','N','N','A more user friendly approach',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1528,NULL,2,'en','1222224570','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was just distrohopping during summer and stumbled upon NixOS, started using it, had trouble understanding how it was working, but after having copy pasted a few config parts and grasped the basics I liked the ideas, after a few weeks of using it on spare laptop I installed it on my home server, worked like a charm, I use it ever since. Also I use the nix package manager on debian wsl. ','','','','Y','','','Y','','Y','','','','','','Y','','','Y','','declarative syntax','immutable system','huge amount of (up-to-date) packages','if you change the channels during a nixOS install (e.g nixos-unstable), keep the channels changed after reboot. Also better nixops documentation.','aptitude, I know guix exists but apt works and has good documentation and ressources.','','','','Y','','','','','','','','','','','','','','','','N','I haven\'t found a software i need to use that isn\'t on nixpkgs already',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1529,'1980-01-01 00:00:00',5,'en','2144175977','A1','A5','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Enticed by the functional programming package manager. One package manager to rule them all!','Y','Y','','','','','Y','Y','','','','','','Y','Y','','','','','','','','Statically-typed configuration/programming language','Debian and Docker','','Y','','Y','Y','','','','','','Y','','','','cabal2nix','Y','','','','Y',NULL,'N','Y',NULL,'Was not compatible with local NodeJS development. It was best to use Ubuntu for compatibility with others in my team.','When team is \"all in\" on Nix.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1530,'1980-01-01 00:00:00',5,'en','126273190','A1','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','Y',NULL,'nix language','6 month cycle\r\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'nix language','six month cycle',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','thanks for nix'),(1531,NULL,NULL,'en','1165104248',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1532,'1980-01-01 00:00:00',5,'en','1436729197','A1','A1','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','Y','','','','','Y','','','','','','','Y','','','','Y','','nix-env -iA','nixos-rebuild switch','nix search','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','','','','','Nothing can replace nixos now!','Y','','','','','','','Y','Y','','','','',''),(1533,NULL,1,'en','534862614','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1534,'1980-01-01 00:00:00',5,'en','968327855','A1','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','','','','Y','','Y','','Y','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','Y','','Y','','','','','','cabal2nix, tex2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','XMonad without DM','','',''),(1535,NULL,3,'en','1112964740','A1','A2','fem','','','','','','','','','','','Y','','','','','','','','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','Literally anything','A1','Got boring on managing butch of machines and servers, so I started to use Nix*','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','NixOS','The huge amount of packages provided by nixpkgs','A pure environment','Remove any legacy backward compatibility part from nix and nixpkgs, and do a total re-architect to nixpkgs.','Arch, and spin up a isolated development environment maybe.','','','Y','Y','Y','','Y','','','','Y','','','','None','Y','Y','Y','','N','All software I need is already here','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','As previous answer','Y','','Y','Y','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1536,'1980-01-01 00:00:00',5,'en','1560337176','A1','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','Reproducible','Simple to add new packages','I like functional language','','','','','','Y','Y','','Y','','','','Y','','','','https://github.com/cargo2nix/cargo2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','declarative config','generation switch','','','Arch Linux','Y','','','','','','','','Y','','','home-manager','',''),(1537,NULL,1,'en','1775431066','A1','A2','fem','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1538,'1980-01-01 00:00:00',5,'en','991908778','A1','A2','male','','','','','','','Y','Y','Y','','','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Once I tried NixOS out when my Arch broke. However, NixOS was quite novel to me and I could not connect to cache server in China. Later I tried it out again with properly set up proxy using module. That time I found NixOS fascinating and started to use Nix altogether.','','Y','','','','','Y','Y','','Y','','','','','Y','Y','','Y','','Reproducibility','Declarative','Rollback','I would remove all the obsolete UI for Nix (e.g. nix-build, nix-env). And I would like to have a complete rewrite in Rust and make Nix more consistent when it comes to string context and small issues.','Probably Guile or nothing','Y','','','Y','Y','','','','','','Y','','','','https://github.com/cargo2nix/cargo2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Same as my story on using Nix','Y','','','Y','','','','Reproducibility','Declarative','Rollback','I would like to have native secret management and an official deployment tool with easy introduction and bootstrap steps','ArchLinux','Y','','','Y','','','','Y','','','','home-manager','crate2nix. naersk','I hope Nix can be more consistent either in language itself or NixOS.'),(1539,'1980-01-01 00:00:00',5,'en','258800428','A1','A2','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','','','','','','Y','','Y','Y','Y','','Y','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','Y','Y','','Y','','','','','','','Y','','','Y','','','','','','','sway','','',''),(1540,NULL,NULL,'en','820061452',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1541,'1980-01-01 00:00:00',5,'en','1516594407','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Curiosity, then started loving it. But still hate some stuff like idk y but for me switching generations feels way longer maybe the hardware ig.','','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Declarative package management','Rollbacks','nix-shell','Add Pip support, switch things possible to dash shell, nothing to be removed.','Arch which I was previously using,','','','','','','','','','','','Y','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','','Y','','','','','','','','Add pip support, switch to dash shell for most things possible, nothing to be removed','Arch ','Y','','','','','','','','','','Dwm,awesome','Home-manager','Pypi2nix, machnix','Thank you for nix, and the wonderful work you all have put into it. ❤️'),(1542,NULL,NULL,'en','2005768662',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1543,NULL,0,'en','762237976','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1544,NULL,NULL,'en','259302956',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1545,NULL,1,'en','820367012','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1546,NULL,1,'en','1762344471','A2','A3','male','','','','','','','','Y','','','Y','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1547,NULL,NULL,'en','1211366422',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1548,NULL,1,'en','1418604843','A5','A3','fem','','Y','','','','','','','','','Y','','','','','','','','','','','','Y','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1549,'1980-01-01 00:00:00',5,'en','280746720','A2','A2','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Was hooked into it by a friend and loved it. Coincidentally, I then started working on a new project at work that also used Nix.','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducibility (declarative package management) - if my machine dies or a new team member joins, we\'re up and running in no time','Unified config files (no more .zshrc and editor plugin management)','Fulfilment of using bleeding-edge open source technology','Magically make it even easier to introduce Nix to newcomers. Also add home-manager by default.','I\'d look into Guix, but I don\'t know of a real alternative.','','','','','Y','','','','','','Y','','','','','Y','Y','','','N','Nothing, really. I\'d like to.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Introduced by a friend, supremely stable system is running ever since.','','','Y','','','','','Native integration of Nix works even better than on macOS','Stability','Reproducibility','Add home-manager.','Fedora Server','Y','','','','','','','Y','','','','','','Keep up the great work! I don\'t see a reason to ever run a machine without Nix anymore.'),(1550,'1980-01-01 00:00:00',5,'en','782676783','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was working on a C++ project with a lot of system dependencies. When a new developer joined the team, instead of forcing them to adopt the same OS, I simply added a default.nix file to the project, and asked them to install Nix. It worked like a charm, and was later even used to build the code on CI.','Y','Y','','Y','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','Reproducible builds, especially with pinning','Declarative developer environments','Cross compilation','A LSP server that actually works!\r\nAlso, nix build should show each parallel download/build/install on a separate line, just like npm and Docker do.','Fedora Workstation with containers for reproducible/transferrable environments','','','','Y','Y','','','','Y','','','','','','cabal2nix (https://github.com/NixOS/cabal2nix)\r\ncrate2nix (https://github.com/kolloch/crate2nix)','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','As I sometimes do devops, I used to maintain an increasingly sophisticated dotfiles repo that also had an installation script for quickly setting up another Linux distro. After learning about Nix, NixOS quickly became a natural evolution of those scripts and dotfiles.','Y','','Y','','','','','Reproducible','Declarative','Rollbacks','Better integrations with applications that don\'t build with Nix, e.g. Home Assistant','Fedora Workstation with containers for reproducible/transferrable envs','Y','','','','','Y','','Y','','','Sway','direnv','','Nix and NixOS are one of the most amazing things to have happened to the tech scene of late. Keep up the great work!'),(1551,'1980-01-01 00:00:00',5,'en','1060908554','A6','A3','-oth-','','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','I started using it for Haskell projects, and replacing homebrew.','Y','','','','','','Y','','','','','','','','Y','Y','','','','','','','Speed. I find nix can be a bit slow to build things.','','','','','','','','','','','','','','','','','','','','','N','','N','N','Probably when I upgrade my desktop again I will switch to nix. I do think Nix could improve security, some sort of sandboxing eg app armour. I know selinux is not supported which I think is unfortunate.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1552,NULL,1,'en','1506525080','A2','A3','male','','','Y','','','Y','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1553,'1980-01-01 00:00:00',5,'en','1878765266','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','First switched development environment from ad-hoc scripts and Makefiles to Nix (myEnvFun), than later all Linux systems (mostly Arch) to NixOS. Never looked back.','','','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','it\'s suitable to integrate/document all things computers I care','it\'s possible to define a domain-specific shell for any given task','code snippets can be easily shared','- make evaluation faster\r\n- make it a statically typed\r\n- make it a general purpose language, so it\'s not necessary to resort to ugly hacks when when using it for unanticipated things\r\n- give it proper deconstructing, e.g. but not limited to function arguments','Now that I\'m spoiled, I\'d try to reimplement it. But I\'d probably just use what I did before: shell :)','','','','Y','Y','','','','','Y','Y','','','buildbot','cabal2nix (https://github.com/NixOS/cabal2nix) on a regular basis. And I\'d try any other 2nix I happen find when packaging somehing.','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same as the Nix story above. Sorry I didn\'t distinguish it eariler, but for me Nix and NixOS go hand in hand, but I\'d rather live without NixOS that without Nix. Because the latter can build the former, and NixOS is not necessarily the best example of using Nix to build an OS (but definitely the best OS around at the moment) :)','Y','Y','Y','Y','','Y','','It\'s possible to define all aspects of a system in a quite consistent way.','It\'s possible to just use the interesting parts of NixOS and it allows to define missing or undesirable parts alongside.','','- make it evaluate faster\r\n- allow using config to define imports\r\n- make its modules more consistent and less opinionated\r\n- have more precise option types\r\n- make it evaluate faster!','Probably Arch. But Gentoo was also nice.','Y','','','','','','krops','','','','xmonad','krops. But frankly, it\'s basically just a convenient way to nixos-rebuild remotely with all my dirty worktrees and secrets :)','',''),(1554,'1980-01-01 00:00:00',5,'en','1734374924','A2','A3','-oth-','Nonbinary','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I joined a company that uses Nix a lot, so I wanted to learn. So far, I love it :-)','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Declarative system config/package management','Declarative environment management','Build system','Better documentation, better tutorials for beginners','Pacman, Arch','','','','','Y','','','','','','','','','','crate2nix\r\ncabal2nix','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','Config management','Ability to rollback system easily','','Better documentation, better tutorials for beginners','Arch','Y','','','','','','','Y','','','','','',''),(1555,'1980-01-01 00:00:00',5,'en','2074420098','A6','A3','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','N','N','I am trying to use NixOS but I run into technical difficulties.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I am trying to use NixOS but I run into technical difficulties.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1556,'1980-01-01 00:00:00',5,'en','1297880166','A1','A5','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Dave Anderson from Tailscale got me started after talking about it on his Twitter account!','Y','Y','','','','Synology','Y','','Y','','','Y','','','Y','Y','','Y','','Declarative Package Management','Package collection coverage','Simplicity of configuration','Make nix the language much less obscure, be better documented and have *way* better examples.','Something much more awful, probably Ubuntu.','','','','','','','','','Y','','','','','','','Y','','','Build references in Nixos/home-manager','N','Time and my own organisation.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','See above','Y','','Y','','','Y','','','','','I would improve Nixops out of site: document it properly and provide exhaustive examples.\r\n\r\nAlso improve the story of virtual machine deployment (eg: with libvirt) declaratively in NixOS. ','Ubuntu','Y','Y','','','','','','','','','','','Flakes','NixOS is awesome. Keep up the amazing work!'),(1557,NULL,NULL,'en','944293135',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1558,'1980-01-01 00:00:00',5,'en','736527068','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','I tried, but it\'s hard to understand where to start. I followed nix-pills which is really good, but can no longer be followed to completion without pinnning nixpkgs to a very old version which it doesn\'t explain.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1559,NULL,3,'en','1444564771','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1560,'1980-01-01 00:00:00',5,'en','285430335','A2','A5','male','','','','','','Y','Y','','','','','','','Y','','','Y','Y','','','','','','','','','','','Y','','','N','Y',NULL,'Learning curve of understanding the nix configuration language + lack of time to do so.','If I had time to understand the nix configuration language.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'The nix configuration language is a bit alien and not intuitive (and I can write Haskell quite fluently) and all it\'s various library functions are very time consuming to learn.','If I had time to learn the nix configuration language.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I really, really, like the idea of Nix. The idea of it is excellent; I just think the tooling, and experience, around it are difficult to resolve.'),(1561,NULL,NULL,'en','418718037',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1562,'1980-01-01 00:00:00',5,'en','784604438','A1','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I want to config my system in one place.','','','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','System configuration','Package management','Complition','Better Gnome config and dotfiles manager integration','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I want to config my system in one place','Y','','Y','','','','','System configration in one place','Roll back','Newest packages','Better Gnome config','Ubuntu','Y','','','','','','','Y','','','','No','Home manager',''),(1563,'1980-01-01 00:00:00',5,'en','2132498935','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Nix sucks but there is no other sensible alternative that implements Eelco\'s phd.','','Y','','','','','Y','','Y','','','','','','','Y','','Y','','','','','Change the language to something modern-looking (with static type system in place).','Guix or just rollback to using Arch Linux.','','','','Y','Y','','Y','','','','','','','','I hate them. ;)','Y','Y','','','N','Mess in nixpkgs, no standards (afaik).','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I really believe that ideas behind Eelco\'s phd are the future. I am still waiting for modern, rock solid implementation. NixOS isn\'t the one.','Y','','Y','','','','','Declarative way of defining software on my machines and its consequences','Flakes','','I would replace nix language. ;)','GuixSD or rollback to ArchLinux','Y','','','','','','','','','','i3/sway','','','Nevertheless, great job! I\'m looking forward to the successor to NixOS ;)'),(1564,NULL,1,'en','1847978941','A1','A4','male','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1565,NULL,1,'en','1962979689','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1566,'1980-01-01 00:00:00',5,'en','1393136487','A3','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Unemployed','','','','','','NixOS','N','Y',NULL,'I don\'t need it.','Being forced to use Mac/Windows WSL/other Linux distros.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was an Arch user, and was afraid of recovery. I had riced my system so much and it was a lot of trouble to replicate that in any new host. Despite using shell scripts, etc. One day my system broke. Then I\'ve got to try NixOS. Now I don\'t stand Arch.','Y','','Y','','','Y','','Sync of configuration/resources/environment at different hosts.','','','https://intj.com.br/nix-version-management-problem.html','Artix','Y','','','','','','Ansible','','','','i3','home-manager','',''),(1567,'1980-01-01 00:00:00',5,'en','1851480761','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I like to configure stuff once.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','','Y','','Recipe managed OS','versioned','closer distance from source code','1. Make Nix more readable, more syntactic sugar\r\n2. Improve documentation','Void, Devuan, Debian','','','','','','','','','Y','','Y','','','','Node, Python, Crystal, Go or Ruby I\'ll look how I get my project working a fast as possible','Y','','Y','','N','I must learn more. I contribute to home-manager and NUR.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I first got disappointed in macOS. Too many updates and new OS versions are mainly too sell more apple products. I had a small Linux Desktop tour. Starting with Arch, Artix, Void, and finally NixOS as the promise of configuring an OS by code is what I really want.','Y','','Y','','','','','configuration by code/recipe','versioned','overrideable packages','Replace Nix with a language that looks like Ruby but still has the same functional features.\r\nReplace systemd with runit.','Devuan or Debian','Y','','','','','','','Y','','','','home manager, nur','awesomewm',''),(1568,NULL,2,'en','59371055','A2','A3','male','','','','','','','Y','','','Y','','','','','Y','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1569,'1980-01-01 00:00:00',5,'en','1903280477','A2','A5','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I had tried a lot of distros over the years and it always frustrated me that I couldn\'t install experimental software without risking the stability of the whole OS. I remember I was running Debian stable and wanted to install a video editor and the first step in the instructions was \"upgrade to Debian testing\", that was when I first installed Nix.','','','','','','','Y','','Y','Y','','Y','','Y','Y','Y','','Y','','Package isolation (escape from \"DLL/rpm hell\")','Declarative environment configuration','Rollbacks','Greater adoption','I\'d give up on computer science altogether','','','','','','','','','','','','','','','','','','Y','','N','I used to, but I don\'t find the time any more. Hopefully, I will again in the future.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','After using Nix on Debian for a while, with great success, I installed NixOS and continued to do my daily work (web development) in the old Debian system using chroot. I wanted the declarative system configuration and rollbacks and was pleasantly surprised with how easy it was to set up and to maintain.','Y','','Y','Y','','Y','','Package isolation','Declarative configuration','Rollbacks','Greater adoption','Guix','Y','','','','','','','','Y','','','','','I have always found the community to be helpful, patient, thoughtful and responsive. Thank you for doing this survey to make it even better!'),(1570,'1980-01-01 00:00:00',5,'en','477367659','A2','A3','male','','','','','','','','','Y','','Y','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','Found it on DitroWatch, fell in love on the first sight.','','Y','','','','','Y','','Y','Y','Y','Y','','','Y','','','Y','','Reproducability','Stability','Flakes','','Guix','','','','Y','Y','','','','','','','','','','','','Y','','','N','Time','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','Saw it on DistroWatch, fell in love on the first sight.','Y','','Y','Y','','Y','','Declarative configuration','Stability','Flakes','','GuixSD','Y','','','','','','','Y','','','EXWM','','','Thank you and keep up the great work <3'),(1571,'1980-01-01 00:00:00',5,'en','851470878','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Someone told me about their configuration.nix that installs/specifies an entire Linux system for them!','','Y','','','','','Y','Y','','','','','','','Y','','','Y','','Reproducability','Availability of historical packages (just checkout an older nixpkgs)','','Documentation that isn\'t one gigantic file','probably something like Ansible/Chef/...','','','','Y','','','Y','','Y','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','Unified configuration file','Generations & easy rollback','','','openSUSE or Debian','Y','','','','','','','','Y','','','nixpkgs-review','',''),(1572,'1980-01-01 00:00:00',5,'en','1363542658','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Reproducible OS configuration.','','','','','','','Y','','','','','','','','Y','Y','','Y','','Reproducible configuration','Isolated package environments','','Easy way to see package version changes during Flake update.','Guix','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Great Nix integration.','Y','','','','','','','Great Nix integration','','','','Arch linux','Y','','','','','','','','','','I3','','','Thank you for the great work!'),(1573,NULL,1,'en','333872869','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1574,'1980-01-01 00:00:00',5,'en','63713655','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','N','Y',NULL,'The configuration was interesting, but the process of updating packages was such that I never knew if I have the latest version of all available packages.','The command to rebuild the system needs to inform better, more transparently about which applications are also being updated. Also, nix could have a command to check if there\'s any system and application updates available at any time, without the need to just guess.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','It has a lot of packages in its repositories, which\'s appreciated and has a robust, interesting system configuration language. I wanted to try it, but thought the installation process is complicated at first, fortunately the official NixOS manual has improved a lot in this regard, so I gave it a try last summer.','','','','','','','','nice system configuration language','uses systemd and all its advantages','has a lot of packages in the default repos','Make it easier to install non-free packages, the declaration in the config file allow=unfree does not always work reliably across the system as a whole.','Arch Linux.','Y','','','','','','','Y','','','','','','On the whole, NixOS is an exciting project!'),(1575,'1980-01-01 00:00:00',5,'en','1478896443','A2','A5','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','Y','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Over the years I have come to experience that imperative production of artefacts using computers (be it documents, engineering workflows, devops workflows) is inefficient and repetitive. After leaving my more or less \"traditional\" job as a senior project manager in an aerospace engineering company to start a startup, the first order of business was getting rid of office software and replacing it with declarative workflows (i.e. generate business documents from `Markdown` via `pandoc`/`pandocomatic`/`LaTEX` to `PDF`). This constitutes a declarative documentation workflow resulting in trivial updating of content without spending time to fix the end result (layout, appearance).\r\n\r\n`nixos` is to system administration what the above is to business processes. Managing multiple machines with a highly customised configuration (especially in regard to necessary usability tweaks when using Linux in many different roles) is not feasible if these tweaks have to be remembered over time and across installs. The only good solution for this is declarative configuration, which surely offsets in the long term the very steep learning curve of nix.','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','','','Y','','declarative configuration','Possibility to abstract system configuration of multiple machines using functional categories and layered requirements (by including differing/specific functionalities via different `nix` files in the configuration.','dev env definition (`nix-shell`)','Clean up documentation; add documentation with more usable abstractions pertaining to `flakes`, especially detailing multi-user/multi-machine flake usage with a more sensible split in respective flakes.','','','','','Y','Y','','','','Y','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','See \"Nix\" story','Y','Y','Y','Y','','','','see \"nix\"','see \"nix\"','see \"nix\"','see \"nix\"','GUIX?','Y','','','','','','ansible','','','','instantWM','`SimpleNixMailServer`','`nixcloud`','Love the community and the patience/presence of the \"Great Contributors\"'),(1576,NULL,NULL,'en','1901209720',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1577,NULL,2,'en','713160640','A2','A2','male','','','','','','','','','','','Y','Y','Y','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','The reproducible, declarative and reliable package management interested me enough to try and install NixOS on my machine.\r\n','','','','','','','Y','','','','','','','','Y','','','Y','','Reproducibility','Declarative configuration','Source-based packages with binary caches','- Add better / more documentation to make it easier for newer users to get into Nix.\r\n- Make Nix language friendlier (very hard to digest at times).','Gentoo, Arch or Void Linux','','','','Y','Y','','','','Y','Y','Y','','','','node2nix (https://github.com/svanderburg/node2nix)','','Y','','','N','Not enough time currently.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1578,'1980-01-01 00:00:00',5,'en','990514087','A2','A2','male','','','','','','','','','','Y','','','Y','','','','','Y','','','','','Y','','','Y','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','Everything. Resistance is futile.','A3','Through NixOS','Y','Y','','','','Android','Y','','Y','','Y','','','','Y','Y','','Y','Android images','Declarative','Abstractable','Pure','More and/or paid Nixpkgs maintainers.','Guix ;))))','','','','Y','','','','','','','','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Found out about it through talks on YouTube I believe, tried it in a VM and the rest is history.','Y','','Y','','','','','Declarative','Abtractable','Self-documenting configuration options','Remove Cruft, add maintainers.','Guix or Arch','Y','','','','','','','','','','sway','Robotnix','','You\'re awesome.'),(1579,'1980-01-01 00:00:00',5,'en','71403976','A3','A4','male','','','','','','','Y','','','','Y','','','','','','Y','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','People from the company I worked on showed me Nix and since then I\'ve been using it','','Y','','','','','Y','','','','','','','','Y','','','Y','','Have my whole system under version control using NixOS','A very good amount of packages ported to the system','','Nix should be easier, I still don\'t know exactly how to deal with derivations','Arch Linux, or probably GUIX','','','','','','','','','','','','','','','','Y','','','','N','I don\'t understand completely how to code derivations, it\'s hard to me','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','I knew NixOS together with Nix','Y','','','','','','','','','','','','Y','','','','','','','Y','','','i3','','',''),(1581,'1980-01-01 00:00:00',5,'en','392926109','A5','','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','N','Y',NULL,'incompatibility with and 2010 macbook and sierra os','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1582,'1980-01-01 00:00:00',5,'en','1192914099','A5','A3','male','','','','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I bricked the audio on an Ubuntu machine, and I started looking for distributions with cleaner rollbacks.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Project-specific shells with nix develop & consistent environment between my workstation and CI','Declarative package management, versioning the entire system in a git repo, consistent setup between multiple home machines','Nix gives me the confidence to mess with stuff (override kernel parameters, I have a patch to gnome-terminal that removes one of the buttons I find annoying, etc) without fear of messing up my system or creating a maintenance hassle.','Flake everything.\r\nGet more users.','Sadness','','','','Y','Y','','','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I started with Nix and NixOS at the same time, so see previous answer.','Y','Y','Y','Y','','','','Same as before, sorry I answered the other question for both Nix and NixOS','','','','','','','','','','','','Y','','','','nixpkgs-review','',''),(1583,NULL,NULL,'en','1950182665',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1584,'1980-01-01 00:00:00',5,'en','1102600431','A2','A4','male','','','','','Y','','Y','Y','','Y','Y','Y','Y','','','Y','','Y','','','Y','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','In 2020 I joined a company using nix for development and deploy, my team had some nixos users in it and a few nix contributors. While learning it, I was fascinated by the philosophy, so I switched to NixOS and happily used it since!','','Y','','','Y','','Y','','','','','','','Y','Y','Y','Y','','','development shell','reproducible builds and environments using flakes','many packages','I\'d make flakes a first class citizen and update the ecosystem to use them consistently - starting from the documentation, which IMHO is still a weak point of the entire ecosystem - maybe making the NixOS weekly newsletter something active and useful like This Week In Rust. So, after improving the documentation with my magic wand, I\'d also make nickel a first class citizen and make it work with nix tools out of the box.','dnf and podman','','','','','Y','','','','','','','','','','poetry2nix','Y','Y','','','N','A general fear of people, I guess. Also I don\'t often write packages so my nix-fu is not great and I\'m unsure on how things shall be approached.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same of using nix: I started working in a company using nix, had cool-leagues using nix and nixos, dug into it, liked it, adopted it.','Y','','','','','','','unified configuration in nixos','enough packages for my development needs','if an update is broken I can easily rollback','I\'d improve the nixos documentation first, including info about using flakes with nixos. That\'s basically it, I\'m generally good with NixOS.','Fedora and podman.','Y','','','','','','','Y','','','sway, i3','','',''),(1585,'1980-01-01 00:00:00',5,'en','1258107325','A2','A4','male','','Y','','','','','Y','','Y','','Y','','Y','','','','','Y','','','Y','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I wanted to install Stratego/XT for my uni coursework, and Nix was the best way to install it and all the libraries it depended upon. I didn\'t use it after that for ~7 years, but then I happened upon the NixOS table at CCC, developed an interest, and finally switched over all of my systems between 2018 and 2020.','','Y','','Y','','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','Declarative specification of dependencies','Repeatable builds (due to the hermetic build environment)','Convenience of temporarily installing a package to test it out','The only thing I can think of adding is much better documentation for flakes','I\'d keep muddling through with Debian','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I got frustrated migrating an old server to new hardware; I hadn\'t documented the system well, and it had organically grown over ~15 years. My wife had tried NixOS and was unsatisfied by it, but her experience convinced me that it was one of the first truly groundbreaking developments in system construction in the last two decades, and so I gave it a try for the replacement server. I was convinced of the benefits, but it did take a while to migrate my other machines because of the steep setup cost and learning curve.','Y','','Y','Y','','','','Declarative config forces me to document the configuration','Automated management of patched versions of source code','Easy rollbacks if a configuration change doesn\'t work.','Better compatibility with binaries from other systems (e.g., Da Vinci Resolve is *very* difficult to package for Nix)','Debian, most likely','Y','','','','','','','','','','i3','home-manager','Niv feels like too much work for the benefit',''),(1586,NULL,NULL,'en','861410460',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1587,NULL,1,'en','1100447939','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1588,NULL,NULL,'en','1443227957',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1589,NULL,2,'en','1589604550','A2','A4','male','','','','','','','Y','','Y','Y','Y','','','Y','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','For better configuration control (NixOS), and for dev \"standardized\" system.','','Y','','','','','Y','','Y','Y','','Y','','','Y','Y','','Y','','More central config ','Declarative \"language\"','Almost \"totally\" reproductively dev/production environment.','Add a better workflow/manual for flake\'s, because right now, it\'s difficult to have a understanding of the right/optimal way to use.\r\nOther thing is to try to Guix a service, just like in Guix exist a nix service.','Actually, I use Guix and comparing bought tools, Guix being on top of scheme language, is very pleasant, much more than Nix DSL.\r\nThe fact that in Nix, shell scripting is almost a necessary imposing, makes Nix a less pleasant tool.','','','','Y','Y','','Y','','','','','','','','','Y','Y','','','N','Time... ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1590,'1980-01-01 00:00:00',5,'en','396155850','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','','Y','','','','','','','','','','haskell2nix\r\ncomposer2nix\r\n','','','','','N','New to the system','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Mention from a DevOps colleage','Y','','','','','','','file-based config','reproducible setup','rollbacks','make home-manager more thightly integrated into NixOS, mantained with the help of the NixOS team','','Y','','','','','','','Y','','','XMonad','','',''),(1591,'1980-01-01 00:00:00',5,'en','343808225','A2','','male','','Y','','Y','','Y','Y','','','Y','Y','','','Y','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Because of rollback system and the configuration ability','','','','','','','Y','','','','','','','Y','Y','','','Y','','Declarative system or server configuration/management (e.g. NixOS)\r\n','Declarative environment management (e.g. nix-shell, nix-dev)','','Easier package building, easier syntax, to steep learning curve','fedora silverblue or gnuix','','','','','','','','','','','','','','','','Y','','','','N','Not enough knowledge','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Riliability','Y','','','','','','','','','','','gnuix, Fedora Silverblue','Y','','','','','','','','','','i3, sway','','',''),(1592,'1980-01-01 00:00:00',5,'en','98290745','A5','A3','male','','','','Y','','Y','Y','Y','','','Y','','','','','','Y','Y','','Y','','Y','','','','Y','Y','','Y','','','N','Y',NULL,'- Docs hard to use (concepts presented out of order; too many implementation details before foundational ideas; lack of clear definitions of terms of art)\r\n- Confusing interface (some things only possible with Flakes, some things only possible with old-style interface; little coherence between commands/commands do not seem to compose in a predictable way)\r\n- Poor ergonomics (some common commands very slow; some common workflows difficult or unclear how to accomplish best [e.g. updating local packages])\r\n- Unclear direction on the above (e.g. unclear what the endgame is for Flakes; unclear in general how well Nix is meant to support the local development use case and how it should work)','I can put up with things being broken or unfinished, but the dealbreaker was the lack of a clear future direction. I don\'t want to invest in learning about and working with something if I have no idea whether my pain points will _ever_ be addressed. It seems as though there is acknowledgment in the community that these questions need to be answered, but no process for actually doing so—there is an RFC process, but it seems poorly integrated into the day-to-day of the project\'s development. I think Nix needs a proper product manager to take on this work—my impression is that the current leadership lacks the skills and/or motivation to handle this aspect.\r\n\r\nI\'d be very excited to start using Nix again (and even contribute) if I could see a proper roadmap and vision, less focused on the timeline and sequencing than on the type of experience Nix is trying to provide to each audience.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Greater stability and a better experience with Nix. I want to spend as little time as possible configuring Linux machines so anything guaranteed to involve tinkering is a nonstarter for me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N/A (I don\'t use Nix regularly)','Home Manager (stopped for the same reason as the rest of Nix)','Nix is the most exciting idea I\'ve seen in software development in the last 10 years, narrowly beating out the LSP. I really want to see this project succeed. I very much hope the team can push past the governance and product management challenges to keep delivering on the promise of this extremely powerful concept.\r\n\r\nOne thought: It feels like the team is split between wanting to double down on the work that has already happened (preserving the existing Nixlang, expressing skepticism about Flakes, etc.) and wanting to push forward with the right thing even if it means throwing away past work. Personally, I think the latter is necessary at this point. The work that has already been accomplished is amazing, and that work was worth it to demonstrate the validity of the core idea. But I think it might be time to throw it away and start again, or at least to be willing to do so to achieve conceptual consistency and UX coherence in the final product. This is always the hardest thing to do with a great prototype but a necessary thing nonetheless. I would hate to see Nix forever held back from its full potential because of an understandable but irrational attachment to the progress so far.'),(1593,'1980-01-01 00:00:00',5,'en','448965465','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I used Arch Linux for my private laptop for some years, and really began to love using linux. But from time to time after updating the system, it didn\'t boot anymore, some software didn\'t work anymore or a software project didn\'t build anymore.\r\n\r\nWhen I finally got a job where I could use Linux at, I decided to give NixOS a shot, as I wanted the system to be as stable as possible and i couldn\'t risk it suddenly not booting anymore. After a bit of a hard time at the start, it wad fascinating enough to keep me going and now I\'m really loving it. Because of this, i started to use nix shell for all our projects and to get people on board.','Y','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','','Y','Y','','Reproducibility','Atomicity','Declarativity','Windows support and a nice typesystem like the one from typescript','There\'s no alternative I know of. I\'d cry, I guess.','','','','','Y','','','','','','','','','bitbucket','Npmlock2nix','Y','Y','','','N','I don\'t have enough spare time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','See story about nix usage.','Y','','Y','Y','','Y','','Declarativity','Atomicity & Stability','Rollbackability','Make using non-nixified software easier and hasslefree','Back to Arch, I guess, but with home-manager.','Y','','','','','','','Y','','','','Direnv\r\nAndroid envs','Kubenix\r\nArion','I think the biggest problem right now is the lacking windows support, which is why it cannot reach widespread adoption.\r\n\r\nI thought about suggesting to the node community, that they should use some kind of nix file to define native dependencies, but then realized that they still had to provide a fallback for windows, which is sad.'),(1594,'1980-01-01 00:00:00',5,'en','2004329974','A5','A5','male','','','','','','','Y','','','','Y','','','','','','Y','','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','I tried using it to set up home lab servers. I switched completely, and am introducing at work now.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','Reproducible system configurations','Fast deployments','Dependency management','Reliance on bash','Probably a container oriented distribution','','','','','','','','','','','','','','Drone :(','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','Reliance on bash','','','','Y','','Y','','','','','','','Niv, sops-nix','Hydra',''),(1595,NULL,1,'en','1801280743','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1596,NULL,1,'en','277177191','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was fed up with constant distro hopping and having to re-install and re-configure everything from scratch. I wanted a git repo that I could apply everything from, to manage my multiple home machines, and I wanted it to work every single time','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1597,NULL,1,'en','227989864','A1','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1598,'1980-01-01 00:00:00',5,'en','1159220321','A5','A4','male','','Y','','','Y','','','','','','','','','','','Y','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I got tired of the ever-changing issues with homebrew taps, and wanted to have a consistent method between Mac and Linux.','Y','Y','','Y','','','Y','','Y','','','','','','Y','Y','','Y','','Mac/Linux cross-platform implementation','Wide range of software availability','Reproducibility','Better mac support','Homebrew + Debian','','','','Y','Y','','Y','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Once I started using nix-darwin, I wanted to have the same idea on Linux, then systemwide. I also have it running as a QEMU image for local development/testing.','Y','','Y','','','','','System-wide integration','','','','Silverblue','Y','','','','','','','Y','','','','nix-darwin','','Please, please, please redouble efforts to maintain the capabilities of darwin. My interest in a niche ad-hoc Linux package system distribution is DRAMATICALLY lower if none of those lessons pass over to Mac as well. Right now, having things work on darwin + linux is my biggest time saver. Updating a package for mac + linux on nix isn\'t THAT much harder than either 1) doing the same for homebrew, or 2) trying to deal with a linux packaging system (in fact, it\'s way easier than, say, packaging upstream to debian). Deprioritizing mac would be, I think, a serious blow to the chances for nix to gain further mainstream uptake, and would probably cause me to focus my contributions and efforts elsewhere.'),(1599,'1980-01-01 00:00:00',5,'en','55510623','A5','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(1600,'1980-01-01 00:00:00',5,'en','528693990','A5','A3','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I saw a recorded Nix talk online.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','Declarative system configuration (for fleet management as well as home desktop)','Consistent development shell/environment','','1. Nicer language syntax\r\n2. Much better documentation, especially curated learning path','Nothing. Nix solves important problems not addressed by other tools. Closest thing would be Docker/Podman.','','','','Y','Y','','','','','','','','','Concourse','https://github.com/cargo2nix/cargo2nix','','Y','','','N','I\'m still a beginner and Nix internals seem like magic to me. I desperately need beginner/intermediate learning material.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I started with Terraform to manage my cloud infrastructure. Moved to Pulumi for much better UX. Eventually I decided to move off of public cloud for cost reasons and I needed a simple and declarative provisioning system.','Y','Y','','Y','','','','','','','','','Y','','','Y','','','','Y','','','','','NixOps. The documentation is very outdated and it\'s hard to make simple deployments work.',''),(1601,'1980-01-01 00:00:00',5,'en','350364440','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I was already using NixOS, so using Nix itself was inevitable','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','Building my website using a custom static site generator written in nix','Declarative system configuration - I can declare exactly how I want all of my computers (and user environments) should be like using a single nix flake.','Build system / package generator - I can define reproducible build instructions for any code / project.','Development environments - I can define development environments which get automatically loaded into my shell using direnv','I would add better error messages (no more infinite recursion at undefined location)\r\nI would try to add some sort of improved type checking, like for example a way to enforce sets having a particular field.\r\nI would add support for querying home-manager options in search.nixos.org\r\n','Realistically I wouldn\'t use any alternatives, because there are no real direct alternatives (okay, there are projects like guix and terraform, but that\'s not something I would just use)','','','','Y','Y','','','','','','','','','','npmlock2nix - https://github.com/nix-community/npmlock2nix','','Y','','Custom packages which are added to the pkgs set using callPackage','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I liked the idea of gathering your entire computer configuration into a single file using NixOS, and then things just snowballed. Now I have NixOS on all my computers and I exclusively use nix for everything','Y','','Y','','','','','Rollbacks - If something breaks I can always just roll back to when it worked','Centralized and abstracted configuration management - I can manage the configuration for all my computers in one place, and I can abstract common patterns between them','\"I don\'t care to understand how this program works, as long as I understand the NixOS module\"','I would revise the module system to allow running multiple instances of the same service (using different systemd service names, ofc)\r\nI would add other backends for init systems than systemd. Since NixOS is great for abstraction, it shouldn\'t be too difficult to create a service interface which can be ported to any init / service system.\r\nI would add official support for secure boot\r\nI would add module support for more boot loaders (rEFInd, EFI-stub)','Arch / Artix, Gentoo, Void or Alpine, probably. But none are actually direct alternatives','Y','','','','','Y','','','','','sway','home-manager\r\nagenix','styx - I created my own static site generator in nix instead\r\ncargo2nix - Now I use the buildRustPackage instead\r\ndeploy-rs - I created a custom shell script instead','Nix is taking over my life and I have an urge to package everything I can into a nix flake.\r\nThank you :)'),(1602,'1980-01-01 00:00:00',5,'en','1395826092','A2','A2','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','NixOS','A2','Heard about it from a friend (97nomad), the concept sounded intersting to me, jumped right into NixOS when I changed my PC','','','','','','','Y','','','','','','home OS','','Y','','','Y','','nix shell + direnv','nix shell','flakes','Improve documentation on the internal structure and default library\r\nInclude flakes by default\r\nShip with a bunch of templates for using Nix for programming','Docker as a source of ephemeral software, default package managers','','Y','','Y','Y','','','','','','','','','','','Y','','','','N','Most of the packages are there already, and the ones that aren\'t I find easier to request than to package by myself. Basically: it\'s too dawning of a task for me :( I\'d love to help however I can, though','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','home OS','A2','Heard about it from a friend (97nomad), got excited about it, jumped right into NixOS when I switched my PC','Y','','','','','','daily OS','nix shell + direnv','nix shell','declarative configuration of everything in one place','Include Flakes, Home Manager, Git, Direnv and Flake Utils by default and treat them as part of NixOS. Please! Or at least point towards them in the official documentation. It took me weeks to discover all of it by myself\r\nWrite a cohesive \"Getting started\" guide, which should work a user through setting up NixOS for daily usage, including advanced concepts like using default functions, making overlays, writing modules with options. The above tooling should be used as well!\r\nShip with a default template for NixOS systems. Pretty please! I spent 7 months figuring out how best to structure by config files and I\'m nowhere close to it. And I\'m no software engineer, too! Good default architecture would help a lot\r\nA bit outside of the scope for this survey, but Nix Gui projects sounds like a game changer. Would love to manage the whole OS declaratively from the GUI: https://github.com/nix-gui/nix-gui','Arch Linux, probably','Y','','','','','','','','','','Sway','Home Manager (absolutely essential): https://github.com/nix-community/home-manager\r\nFlake Utils: https://github.com/numtide/flake-utils\r\nnix-direnv: https://github.com/nix-community/nix-direnv\r\nneovim-nightly-overlay (though, I suck at ricing neovim lol): https://github.com/nix-community/neovim-nightly-overlay\r\nrnix-lsp: https://github.com/nix-community/rnix-lsp\r\nnixpkgs-fmt: https://github.com/nix-community/nixpkgs-fmt\r\nstatix: https://github.com/nerdypepper/statix\r\nnix-colors: https://github.com/Misterio77/nix-colors','Impermanence (going to use it, haven\'t figured everything out yet): https://github.com/nix-community/impermanence\r\nsops-nix (going to use it, but it\'s hard to figure out): https://github.com/Mic92/sops-nix\r\nFlakes Utils Plus (the API and the UX is amazing, but not all features were supported): https://github.com/gytis-ivaskevicius/flake-utils-plus','Thanks for both Nix and NixOS! The community is great, the concepts are beyond solid, and the efforts are paying off. More and more people are joining Nix ecosystem, because it really is the future. I just wish it was a bit easier to join for the less advanced users like me :) I\'m very excited about the future, yay Nix!'),(1603,NULL,NULL,'en','1133371228',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1604,'1980-01-01 00:00:00',5,'en','1775791526','A5','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I got sick of systems that are \"incorrect.\" Nix got something right that nothing else did (save for Guix).','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','','','','FIX THE UX.\r\n\r\nThe following is not a flamepost. I know that it is easy to dismiss strongly-worded criticism as trolling, but I love Nix and NixOS, and in many ways they\'ve changed my computing experience for the better.\r\n\r\nNix has the absolute highest ratio of good-idea-ness to usability of any project I have *ever seen*. It is so unintuitive, on so many levels, that I can hardly believe I\'m still using it. But it\'s such a fundamentally \"correct\" idea that I still am.\r\n\r\nThere\'s a variation on \"well, it works on my machine\" that people always trot out here: \"well, *I\'m* smart enough to figure it out, and if you\'re not...,\" or \"well, see, there\'s this thing called functional programming...\" This is bogus. You *must* take this concern from the community seriously. I hate to play this card--it feels like really poor taste--but I\'m *literally* a PL researcher in a top-3 CS department, and I am baffled by nix tooling, best practices, jargon, and yes--I\'m willing to say it--syntax. That\'s before even getting to nixpkgs\' inscrutable idioms.\r\n\r\n* All the command-line tools seem to have multiple ways of doing everything. The flags and subcommands seem inconsistent. What\'s the difference between `nix develop` and `nix-shell`? How do you find out, StackOverflow? Some of the official tools (e.g. nixops) fail without real error messages, but with massive Python stack traces.\r\n\r\n* There\'s almost no documentation of how anything in nixpkgs actually works. How do you use `cargoSetupHook` correctly? What does it *do*? Good luck figuring it out--you\'ll have to trawl through four other packages, copy-and-paste code, and tinker until your project builds.\r\n\r\n* So many surface-level things seem different-for-the-sake-of-different: \"Why are maps called sets?\". \"Why are lists space-delimited?\" & co. This stuff makes the already high barriers to entry needlessly higher.\r\n\r\nThe thing is, you could say that these are all superficial non-issues, and if you really understand this system they\'re not a problem. But it\'s not enough to have a good idea or a big repository; execution matters a *lot*. Someone else will come along and get it right.\r\n\r\nSometimes with open-source projects, this sort of criticism brings out the old, \"well how many pull requests do have *you* submitted, ******?\" But that\'s not the point. I know it\'s easier to criticise something than to build something. But I sincerely hope that the maintainers consider that addressing the deep usability issues may be more important than adding ever more packages.\r\n\r\nI sincerely hope Nix\'s big idea wins, but I don\'t know how much longer I can keep using Nix.','','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','Y','Y','','','','','','','I\'ve already typed more than enough about Nix, but I\'d have similar things to say here.','','Y','Y','','','','','','','','','swaywm','','',''),(1605,NULL,NULL,'en','658445080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1606,NULL,3,'en','2116597325','A5','A1','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','N','Unbreakable packages, HUGE repo, novelty.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','HUGE repo, unbreakable packages, novelty.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1607,'1980-01-01 00:00:00',5,'en','448822652','A1','A3','male','','Y','','','','','Y','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I saw the news about NixOS on Hacks New many times. So I want to give it a try.','','Y','','','','','Y','','','','','','','','','','','Y','','Declarative system','Community-driven package management','','Add detailed documentation for nixpkgs.\r\nAdd a debugger for nix expression.','Ubuntu desktop','','','','','','','','','','','','','','','','','','','','N','Nix expression in nixpkgs is too hard.\r\nI spend tons of time understanding the variables and lib functions in nixpkgs.\r\nAs a result, I got less time and was exhausted to create my own packages.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I saw NixOS on hackers news many times.','Y','','','','','','','Declarative system','Community-driven package management','','Add detailed documentation for nixpkgs.\r\nAdd a debugger for nix expression.','Ubuntu','','','','','','','','Y','','','','home-manager','dockertools',''),(1608,NULL,1,'en','1700798884','A5','A3','male','','','','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1609,NULL,2,'en','767246004','A1','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','N','N','Looking to get started soon.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1610,'1980-01-01 00:00:00',5,'en','591145859','A6','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','A smart guy said it would be just the thing for managing my personal desktop and boy was he right.','','Y','','','','','Y','Y','','','','','','','Y','','Y','Y','','Declarative package management ','The whole nixos options way of declarative system configuration ','The nix language ','','Maybe docker for some things and some other Linux distro ','','','','','','','','','','Y','Y','','','','I use the R package and Emacs packages ','','','','','N','My experience with Nix','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','A smart guy told me it would be just the thing for my personal machine.','Y','','','','','','','The whole declarative configuration of the system options and packages ','','','Maybe some more getting started with contributing guide. I would love to contribute but not sure how to start.','Some Linux distro and some docker ','Y','','','','','','','','','','I3','','','I love nix and nixos it is amazing and it just elevates the Linux desktop experience in a crazy way.'),(1611,'1980-01-01 00:00:00',5,'en','1318442269','A5','A4','male','','','','','','Y','Y','Y','','','Y','Y','Y','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Wanted reproducibility of my dev environment over macOS and ephemeral Linux VMs. ','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Flakes','Caching','Reproducibility ','Make the language more in line with other modern languages in terms of ease of development (introspection, strong typing in IDEs, Type-safe autocomplete, in-line doc, better error reporting, discoverability of stdlib functions)','Brew and some shell scripts ','','','','','Y','','','','','','','','','','','Y','Y','','','N','','N','Y',NULL,'Learning curve for hardware support, and pre-built packages for some software only available for centos','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Home-manager, nix-darwin ','',''),(1612,'1980-01-01 00:00:00',5,'en','674413437','A5','A4','male','','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Heard good things about it from a coworker at a previous job; decided to try out NixOS and NixOps for my next personal server deployment.','','','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative dependency/configuration/system management','`nix-shell -p` to temporarily try new software','','Can I ask for two?\r\n\r\n* Support for layering multiple stores. I would use one store for vanilla system stuff, and another store for confidential software I develop or modify, so that I could separately encrypt the second one and software not running in my user context wouldn\'t have access to it.\r\n* The ability to fake out a particular dependency with another version without triggering a whole system rebuild. When testing a patch I\'m writing on some widely-used low-level library, in other package management systems, I can just copy the patched binaries to the appropriate system install location, and re-install the original package when I\'m done. In Nix, I\'d have to rewrite every derivation I want to be affected, which leads to a ton of rebuilds that need to be run every time the patch changes. I understand that depending on a specific build of a dependency is a deep and valuable part of the Nix design model, but if I had that magic wand, I\'d make that impure/unsafe escape hatch for local testing or time-critical patches.','My Linux distribution\'s package manager.','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Same story; I learned Nix from trying NixOS and NixOps.','Y','','Y','','','','','Same as in Nix section','','','Same as in Nix section','Arch Linux for my desktop, some minimal Linux image for my personal server.','Y','Y','','','','','','Y','','','','home-manager','',''),(1613,'1980-01-01 00:00:00',5,'en','887005667','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I remember someone on the internet describing it as “Haskell for OS,” that got my attention. And I loved it ever since! (I am not sure how to quantify that statement, however, that’s how I got into it. :-) )','','Y','','','','','Y','Y','Y','Y','Y','Y','','','Y','Y','','Y','','Programming language and eco-system for declaring build artifacts ','Developer environments (nix-shell) that are integrated/ share with the CI/ build declarations','Declarative and pure (free of side effects) approach to producing artifacts ','Unified package management of language subsystems that works. Currently, while lots of integrations are GREAT, but some differ substantially from others and some are not as integrated as others. How do I build a production node application with cross-language dependencies with Nix?','Oh boy! :-)','Y','','','Y','Y','','','','','','Y','','','','cabal2nix\r\n\r\nI don’t use node2nix or elm2nix because I haven’t solved the whole node application with cross language dependencies yet, and they are just individual pieces of the puzzle. ','Y','','','','N','Lack of time, but also lack of ideas on how/ what to contribute.\r\n\r\nTrying to get into it again but already for some years. :-)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I guess my Nix story is really the NixOS story. ','Y','','Y','Y','Y','Y','','Declarative system management','Declarative user configuration management','Eco-system and community ',' Any think of anything ','Oh boy! :-)','','','','','','','krops ','','','','xmonad ','home-manager\r\nkrops\r\n','elm2nix\r\nnode2nix\r\n','Love the work you do. Thanks!'),(1614,NULL,4,'en','1632031985','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(1615,NULL,NULL,'en','317236564',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1616,NULL,1,'en','1841699085','','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1617,NULL,NULL,'en','372559565',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1618,'1980-01-01 00:00:00',5,'en','797641134','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','N','Y',NULL,'You have to compile/install all software yourself and can\'t even quickly launch a binary from Github','I need an easy way to build software myself like Arch Linux AUR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I love to edit my system in a declerative way.','','','Y','','','','','Declerative config','Easy installation','Easy upgrade','I didn\'t love the haskel syntax. Add more home-manager to the default system.','Puppet or Ansible','Y','','','','','','','','','','sway','','',''),(1619,'1980-01-01 00:00:00',5,'en','476397002','A2','A4','male','','Y','','','Y','','','','Y','','','','','','Y','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Because of NixOS.','','Y','','','','','Y','','Y','','Y','Y','','','Y','Y','','Y','','Declarative','Reproducible','Abstractions','Improved support for microcontrollers.\r\nSomething like EspHome, but more powerfull and for more platforms. NixOps for IoT.','Guix? Still Debian?\r\nI don\'t really watch the current state of other distro\'s.','','','','','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Managing systems of friends and family','A5','Love at first sight.\r\nImpressed by ImplicitCAD and pandoc, I started exploring functional programming. Somehow I then discovered NixOS.\r\nI was a fairly happy Debian user, but NixOS makes me feel so much more powerfull and supported at the same time.','Y','','Y','','Y','Y','','Declarative','Rollbacks. Hardly used, but enabling progress.','Abstractions','Improve phone application support.\r\nImprove uboot support (cfr Tow-Boot).\r\nHigher speed and lower power consumption.','Guix? Still Debian?\r\nI don\'t really watch other distro\'s.','Y','Y','','','','','','','','','XMonad, dwm','','','Thank you!'),(1620,NULL,NULL,'en','1194203022',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1621,'1980-01-01 00:00:00',5,'en','839788351','A5','A3','fem','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Revertable configuration ','','','Make nix syntax closer to mainstream functional programs syntax','Arch or Gentoo','','','','','Y','','','','','Y','','','','','Crate2nix','','Y','','','N','Nix syntax ','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','','','','Y','','','','','Revertable configuration changes (rescue) ','','','Nix syntax being closer to the mainstream functional languages','Arch or Gentoo ','Y','','','','','','','Y','','','','','',''),(1622,NULL,NULL,'en','1929140553',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1623,'1980-01-01 00:00:00',5,'en','1351720398','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Because I started using NixOS','','Y','','','','','Y','','Y','','','Y','','','Y','','','Y','','Declarative system/server management','Declarative home folder management (through home-manager)','Managing development environments (and keeping the rest of the system clean)','I would improve build performance (both RAM usage and CPU usage)','Docker','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','Feels like more work, changing things myself locally is just easier (yes I know, not the most community friendly attitude)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Read about it and the central configuration management really spoke to me, so I converted my home server to run NixOS.','','','Y','','','','','The ability to put all my systems configurations in a single git repository','The predictability and cleanliness of declarative systems','\"Risk free\" rollbacks and upgrades','- Declarative vms (the ability to declare vms similarly to the containers. options (essentially a more extensive miniguest))\r\n- Rootless containers (both for virtualisation.oci-containers.containers. and containers.)\r\n- Stable RPi 3/4 support','Debian with docker-compose','Y','','','','','','','','','','sway','home-manager','',''),(1624,NULL,2,'en','2139411157','A6','A2','male','','Y','','','','','','Y','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','One week ago. I use it because:\r\n\r\n1. Reproducible software can be shipped\r\n2. No dependency breakage hell\r\n3. Latest software\r\n4. Stable system (no packages break, thanks to pt.2)\r\n5. Was looking for something that fit well me needs','','','','','','','Y','','','','','','Personal Computer ','','','Y','','','Gaming, Daily driving for everything ','Stability due to package isolation','Up-to-date software','Nix Package manager itself','I don\'t have anything say here','Gentoo Linux because the problem solved by NixOS doesn\'t exist on this source based distribution. Consider packages A and B that uses dep. ß. However due to development reasons such as different packagers or how the software is shipped by the vendor, A depens on ß-0.2-1 but B depends on ß-0.2-3. This problem is solved on gentoo since both A and B are compiled with whatever dependency ß is present on my system and then both packages work without breaking. On NixOS both A and B use whatever version of ß they need.','','','','','','','','','','','','','','','','','','','','N','Student life and personal project and procrastination ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1625,'1980-01-01 00:00:00',5,'en','1975789803','A2','A6','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','For hpc computing','','Y','','','','','','','','Y','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','time','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','','Y','','','Y','','','','','','','','','Y','','','','','','','','','','','','',''),(1626,'1980-01-01 00:00:00',5,'en','748570621','A2','A6','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','','','','','','','','','','','Y','','','','','','','','','','icewm','','',''),(1627,'1980-01-01 00:00:00',5,'en','1584074754','A2','A3','male','','','','','Y','','Y','','','','Y','','Y','','','Y','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Do someone a favour','Y','','','','','','Y','','Y','','','','','Y','Y','','','Y','','reproducibility','python envs ','','add user-friendliness (setting up a printer is a mess)','apt, homebrew, poetry','','','','','','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Same as Nix, a friend convinced me to','Y','','Y','','','','','integration with Nix','','','add user-friendliness','MacOS','Y','','','','','','','','','','i3wm','nix-env for python env building','',''),(1628,'1980-01-01 00:00:00',5,'en','1965050143','A2','A4','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','Y','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Because it makes sense','','Y','','','','','','','','','','','Home Laptop','','Y','','','Y','','Laptop configuration management','','','I\'d add more user/beginner friendly documentation','FreeBSD, if I had not issues with drivers','','','','','','','','','','','','','','','','Y','','','','N','I\'m n00b','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Reinstalling is easy, hard to break. Planning to upgrade my parents PC to NixOS, as I\'m sick of breakages after updating/upgrading.','Y','','','','','','home laptop','Config management','','','Better documentation','','Y','','','','','','','Y','Y','','','','','I\'m struggling with building docker image the way I need, documentation is lacking. I love the idea, but given I\'m a n00b, it\'s brutal.'),(1629,'1980-01-01 00:00:00',5,'en','1934878785','A5','A4','-oth-','Androgyne','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Was having some trouble with my machine at the time. Decided it was time for a reinstall and I knew someone who used Nix. Thought that something different was in order.','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','Isolated and declarative development environments.','Declarative configuration of my desktop.','Declarative server deployments.','A suite of buildLang tools that share the same interface no matter what language is being packaged for nixpkgs.','Apt and dpkg on my desktop.\r\n\r\nAnsible on my server.','','','','','','','','','','','','','','','cargo2nix\r\nnpm2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Knew somebody who used it regularly at a time that my machine was having trouble. Decided to try this. Then stuck with it.','Y','','Y','Y','','','','Not needing to remember the syntactic idiosyncrasies of each service.','Hanging a well bundled and integrated bunch of services.','Rollback for when something goes wrong.','','Ubuntu or Fedora','Y','','Y','','','','','Y','','','Sway','','Flakes','Somehow the documentation is both very extensive and simultaneously incomplete and often misleading. I want to contribute, but it takes so long for me to understand an area of the documentation that I usually feel like I\'m doing something too weird for most people.'),(1630,NULL,NULL,'en','448915285',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1631,'1980-01-01 00:00:00',5,'en','2028390426','A5','A4','male','','','','','Y','','Y','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The nix/nixos model just feels like the way package management and OS config should be done. It\'s still a bit challenging to use, but I choose to live in the future (where I can)','Y','Y','','','','','Y','','','Y','','','','','Y','Y','','Y','','Self contained, reproducible builds','declarative configuration','rollbacks','Make the nix language easier to understand and ideally strongly typed. I\'ve bounced off getting deeper into nix many times just because I can\'t seem to get an understanding of nix in my head like I have for python and haskell. ','Git, shell/python scripts, ansible','','','','','','','','','','','','','','','https://github.com/NixOS/cabal2nix\r\nI\'ve attempted to use a python 2 nix tool (maybe this one: https://pypi.org/project/pypi2nix/), but didn\'t figure it out enough to actually use it','Y','','','','N','I don\'t really understand the nix language well enough and haven\'t been able to find the time to get that level of understanding.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It just feels like the next logical evolution in how an operating system *should* be built. I choose to live in the future (in spite of it\'s warts in it\'s current implementation)','Y','','','Y','','','','Declarative Config','rollbacks','good defaults around security','It keeps having trouble networking on my NixOS desktop (that a dual boot to PopOS does not have). ','Other linuxes','Y','','','','','Y','','','','','xmonad','reflex platform','home manager (I think? It might still be in my stack, and I\'d really like to use it, but last time I tried I couldn\'t quite get to parity with what I had before, so I\'ve stopped interacting with it)','Thanks for driving the future of package management!'),(1632,'1980-01-01 00:00:00',5,'en','539636008','A2','A3','male','','','','','','','','','Y','','','Y','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','1. Configuration of system as a file\r\n2. Safe updates\r\n3. Ability to try packages from unstable safely','','','','','','','Y','','','','','','','','Y','','','Y','','Ability to create separate environments with only packages which I specified','OS configuration','immutability of packages and OS','Made nix language less generic.\r\n\r\nI see functionality of this language as very domain specific (configuration of packages).\r\nBut it\'s language is very generic, not precise, constructs made using this language are not standardized.\r\nThere is to much information required to understand what some expression is doing. After more than half year I have no idea what I am doing when writing in this this language.','Arch','','','','','Y','','','','','','','','','','','Y','Y','','','N','My local nix script for my package doesn\'t seem to be the same scrip which I would have to add to the nixpkgs repo.\r\n\r\nMaintaining own fork just for potential contribution and figuring out how to make my script be \'the standard and proper way\' seems like a lot of work (nix language, aaaaa :/). By the way what is \'the standard and proper way\' I have read quite a lot about nix but I have no idea what I should do.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','My arch was rusty after a year or so, I was thinking if there is a system which will never get \'rusty\', NixOS looked like only option.','Y','','','','','','','System as sonfiguration','Safe updates','Ability to pick one of programs from unstable, if current stable version is too old','Nix language again xD\r\nBut for system configuration it is not that bad (but there json would almost cut it)\r\nIf it was something like language used by meson build system if would be great.\r\nI was understanding meson without reading any documentation\r\nExample:\r\nlibcjson_dep = dependency(\'libcjson\')\r\nexecutable(\'my_program\', source_files, dependencies: [libcjson_dep]) - what does it do? documentation required?\r\n','Arch','Y','','','','','','','','','','sway','Nix search for packages is great, love it.\r\nhttps://search.nixos.org/packages','No idea tried a lot of commands for half I don\'t know what they do. There is a bit of confusion what is for nix language and what is for NixOS','I was grumpy about Nix language sorry :/\r\nbut I really like the NixOS I was seriously considering making contributions but Nix language seems like a to big time investment.\r\n\r\nI would love NixOS to be one of most used Linux OS-es but I think that this steep learning curve for package management will stop it.\r\n\r\nEx.\r\nI wanted to build my own version of mesa to be used by system.\r\nI used overlays, I copied configuration from nixpkgs and it almost worked, but didn\'t (some parameter not passed, something like this). Tried few things nothing worked.\r\nNow I have no idea how to build my own mesa (locally or for whole system), this makes me think that switching to other distro might be the unfortunate future.'),(1633,NULL,1,'en','1415336702','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1634,'1980-01-01 00:00:00',5,'en','558972771','A2','A7','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducible setup of (small) (home-)server.\r\nReproducible setup of develop environments. But my most used languages ruby and java (Eclipse RCP) are not well served, therefore I still struggle with it.','Y','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','','Y','','Reproduceability','clean DSL language','speed','* Finish flake\r\n* Better support for Java/Maven/Eclipse/Tycho','guix','','','','Y','Y','','','','','','Y','','','','https://github.com/fzakaria/mvn2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted to move my Debian Home Server to a more reproducible setup ','Y','Y','Y','','','','','Reproduceability','Ease of use','clean DSL','Make flake default','GUIX','Y','Y','','','','','','Y','Y','','','','','Some of my pull requests (user ngiger) just linger, as nobody committed them even after having responded to all suggestions for changes'),(1635,NULL,NULL,'en','1194929763',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1636,'1980-01-01 00:00:00',5,'en','913157944','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I stumbled upon it while doing research on reproducible builds.','','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','Y','','flakes','package management','system configuration','I\'d make everything work with the 2.4 Nix commands. For example nix-shell shebang.','Guix, if it did exist in such a timeline.','','','','Y','Y','','','','','Y','Y','','','','','Y','Y','','','N','I don\'t feel that I have the skill yet, but It\'s definitely something I\'d wish to do.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I stumbled upon it while doing research on reproducible builds.','Y','','','Y','','','','Reproducible systems','Clean development machine','Easily turned into an ISO or VM','Address the confusion regarding all the different deployment tools (nixos-rebuild, deploy-rs, ...)','Guix, if it existed in such a timeline.','Y','','','Y','','','','Y','','','EXWM','','None, I still have many thing to try though.',''),(1637,'1980-01-01 00:00:00',5,'en','958123428','A5','A4','male','','','','','Y','','Y','','','Y','Y','','','','','Y','Y','Y','','Y','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Initially started using it for work as a solution for Haskell development.','','Y','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','Y','Training machine learning models','Declarative package/dependency management','Ecosystem: Declarative deployments, provisioning, testing, etc','Reproducibility in everything (especially reproducible environments)','Keep making flakes stable. It solves the majority of practical problems I face with nix. (Although nixpkgs has many more problems)','Not sure... A hodgepodge of tools like Docker, cabal etc. Mostly I\'d be sad.','Y','Y','Y','Y','Y','','Y','','','','Y','','Y','','cabal2nix, poetry2nix, elm2nix, node2nix, yarn2nix, haskell.nix\r\n\r\nI try to avoid 2nix tools that generate huge package definitions from lock files. (I prefer my packages to look like nixpkgs packages in general and override as needed)','Y','Y','','','N','Two main reasons:\r\n\r\n* There are very few packages I\'m willing to actively maintain on a regular release cycle. If I need something for work I\'ll normally pin it and update only when it becomes absolutely necessary.\r\n* I don\'t always have the knowledge to follow best practices with various build systems and nix. Doing the due diligence to clean up a package is often not worth the extra time commitment.\r\n\r\nSide note: \r\n\r\nI have started submitting pull requests in \"draft\" mode so that others searching for the same package could pick it up and polish it up it if there\'s demand for it beyond my own personal use.\r\n\r\nIt might be nice if search.nixos.org would direct people to any package PRs that are open/draft via something like a `package: init at .*` or `package: .* -> .*` regular expression on github PR titles.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Started using it for Haskell (work and personal projects).','Y','Y','Y','Y','Y','Y','','Declarative system management','Reproducibility','Convenient modules','* Make package sets much more consistent with each other (pythonPackages, nodePackages, haskellPackages etc) - it\'s a confusing mess right now.\r\n\r\n* Generally refactor everything in nixpkgs.\r\n\r\n* nixos-reformat: take in a messy directory including a configuration.nix/flake.nix and spit out a clean nixos flake with a clean canonical directory structure.\r\n','Ubuntu','Y','Y','','','','','','Y','Y','Y','xmonad','nixops, hydra, flakes','terraform','Great work and thank you. '),(1638,'1980-01-01 00:00:00',5,'en','1074162542','A2','A3','male','','','','','','Y','Y','Y','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Heard about a \"functional package manager/build tool\" in the Haskell sphere and was hooked. Now it\'s Nix or nothing.','','Y','','','','','Y','Y','','','','','','','Y','Y','','Y','','declarative definitions','dependency isolation','reproducable builds','Make the Nix language statically typed.\r\n\r\nHave derivation declare their outputs.','I dont know','','','','Y','','','','','Y','Y','Y','','','','https://github.com/NixOS/cabal2nix\r\nhttps://github.com/NixOS/npm2nix','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','After I saw `configuration.nix` for the first time I have not used anything else.','Y','','','','','','','declarative configuration','dependency isolation','reproducable generations','embed home-manager','Arch or Ubuntu','Y','','','','','','','','','','i3','https://github.com/direnv/direnv\r\nhttps://github.com/nix-community/lorri\r\nhttps://github.com/nix-community/home-manager','https://github.com/NixOS/mvn2nix-maven-plugin\r\nnix-env',''),(1639,'1980-01-01 00:00:00',5,'en','1731215355','A5','A3','-oth-','','Y','Y','Y','','Y','Y','','','','Y','','','','','Y','','Y','','','Y','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducible development environments','','Y','','Y','','','Y','','','Y','','','','','Y','Y','Y','Y','','','','','Better support of TOFU use cases, packaging, prefetching, and hash calculating large number of packages. Currently needing to use https://github.com/msteen/nix-prefetch/ and a cludge of custom scripts. I\'m trying to use nix as a package manager for public data liberation projects (creating packages from public data sources hosted in a variety of places (usually government)), and transformations to clean and standardize them.','I\'d just cry','','Y','','','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','declarative system configuration','Y','','','','','','','','','','','','Y','','','','','','','','','','','home-manager, niv','niv',''),(1640,NULL,1,'en','186176228','A5','A3','fem','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1641,'1980-01-01 00:00:00',5,'en','611891202','A5','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I think I heard about it when distro hopping (initially I thought it was similar to GoboLinux), but then used it as an alternative linux package manager for the occasional things that I couldn\'t find working packages for on Arch. I also went back and forth for years between Arch and NixOS, but went full NixOS and using Nix for all of my development environments around 4 years ago','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Declarative and fully specified dependencies','Very large ecosystem of nixpkgs','Very easy to patch/customize software','* Better evaluation performance\r\n* Pure by default without requiring flakes\r\n* A unified official lang2nix solution','I\'d probably lean a lot more heavily on tools like Docker and asdf','','','','Y','Y','','','','Y','','Y','','','','yarn2nix: https://github.com/NixOS/nixpkgs/tree/master/pkgs/development/tools/yarn2nix-moretea/yarn2nix\r\nnpmlock2nix: https://github.com/nix-community/npmlock2nix\r\nbundix: https://github.com/nix-community/bundix\r\npoetry2nix: https://github.com/nix-community/poetry2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','After using Nix on and off, I thought NixOS sounded interesting. I tried it periodically for personal use, but would go back and forth to Arch because of the occasional issues and because I hadn\'t really learned the nix langauge or nixpkgs ecosystem. Then I started using Nix for development environments and started tracking my NixOS system configuration in git and never went back','Y','Y','Y','Y','','','','Fully declarative system management','Operating System as Code, so all configurations and changes can be tracked in git','Trivial rollbacks and easy to customize','* Easier to get into. Several people I know are happy to use nix for dev environments and local package management, but are very intimidated by NixOS\r\n* Pull in and combine efforts with home-manager\r\n* Fewer custom tools that wrap nix. It\'d be super cool if the standard way of doing things like a `nixos-rebuild switch` was something like `nix run config-flake#activate`\r\n* Default to pinning nixpkgs (whether through flakes, niv, manual fetchTarballs, etc.) and avoid using channels, promoting full config in git\r\n','I\'d almost certainly still be on Arch','','','','','','Y','terraform-nixos (moving away from this though)','','','','i3wm','* home-manager\r\n* nix integrations with direnv (I\'ve rolled my own, but the existence of things like `use nix` in an .envrc has been mind blowing to people and they find it a lot more usable than `nix-shell`)\r\n* cachix','','Nix and NixOS are great and have had a hugely positive impact on my work and personal computing. Thanks for all the hard (and very smart) work!'),(1642,'1980-01-01 00:00:00',5,'en','637220050','A2','A3','male','','Y','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Arch Linux bricked my system. I wanted the rolling release/new software from a distro like arch, but with a rollback button in case something goes wrong.','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Reproducability','','','Nix flakes are nice, but really badly documented','','','','','','Y','','','','','','Y','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','sway','home-manager','',''),(1643,'1980-01-01 00:00:00',5,'en','1517864314','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','my buddy showed me some cool stuff that nix makes possible and i was hooked!','Y','Y','','','Y','','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','Y','','reproducibility','reusability','caching','remove:\r\nchannels\r\n\r\nchange:\r\nflakes to be stable\r\n','im not even sure at this point','','','','Y','Y','','','','Y','','Y','','','','yarn2nix\r\npynixify https://github.com/cript0nauta/pynixify\r\n','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','wanted a more declarative way to maintain my OSes on my VMs','Y','','Y','Y','','','','','','','','','Y','','','','','','','','','','none (headless)','home-manager\r\nnix-darwin\r\nhttps://github.com/cript0nauta/pynixify\r\nhttps://github.com/samuela/nixos-up\r\nhttps://github.com/edolstra/flake-compat','https://github.com/timbertson/opam2nix',''),(1644,NULL,1,'en','395812425','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1645,NULL,1,'en','1177158867','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1646,'1980-01-01 00:00:00',5,'en','460093250','A2','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I got interested about declarative environment ','','Y','','','','','Y','','','','','','','Y','Y','','','Y','','Declarative environment management ','Declarative system management ','Installing different versions of packages at the same time ','Better caching/flake integration would be nice','','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','Not enough experience / time ','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','Wanted to get the full nix experience ','Y','','','','','','','Better nix experience ','Declarative system configuration ','','Making system configuration easier + import of standalone config files instead of pasting content into the nix file','','Y','','','','','','','','Y','Y','','','Home-manager',''),(1647,'1980-01-01 00:00:00',5,'en','470395863','A1','A7','male','','','','','','','','','','','','','','','','','','','','','','','','','retired','Y','','','Y','','Qubes-OS','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Was reading a blog posting where people were griping about `brew` vs `macports` and someone mentioned `nix`.','Y','','','','','','Y','','Y','','','','','Y','Y','Y','','','','package management','package management','package management','I would make the documentation better so that all the current examples of how to use nix-build would not be missing the essential 2-3 lines at the top.\r\nIt took me blundering about for a few days until I found an older posting where someone actually had a fully functioning example snippet.\r\n\r\n','`brew` pisses me off because it wraps everything in various weird ruby-based scripts so that it can dynamically determine where it statically installed everything.\r\nSo I was tilting towards `MacPorts`, and would probably use it instead.\r\n\r\nFor development, python-based, I would use whatever method I was using before. Still not entirely sure nix is where I want to go long term here -- still trying to wrap my head around precisely wtf nix is.','','','','','','This is an area which pissed me off. All the help info suggested using commands which were flagged experimental and thus did not work. Keep your experimental shit out of the main help pages, or clearly mark them as experimental and include the means to invoke them.','','','Y','','','','','Still trying to deploy my GitLab CI. I\'ll soon see if nix aids or frustrates','','','','','','N','Not enough remaining brain cells and/or hours in the day for me to understand nix.\r\nIt really looks like a horrible mess to me, but that because I\'m confused.\r\nThe docs look really good, but all the examples I\'ve found so far do not work because there is this essential bit at the top of the file which is missing.\r\nThe commands / man pages all suggest primary use of experimental features which will fail with an error.\r\n\r\nThere are a few packages I would like to work on Darwin (aide is one) which I might use to figure out how to contribute some porting work to.\r\n\r\nIf my silly programme I am writing ever becomes generally useful and well-written and well documented I might try to figure out how to contribute it.\r\nI guess that\'s why I\'m trying to use nix to build it and CI/CD it.\r\n\r\nI guess another reason is I have been burned in the past when trying to contribute to community projects -- people conveniently \"forgetting\" who it was who did a significant portion of the work and claiming credit for it.','N','Y',NULL,'I installed it in a VM on osX, but whenever I adjust the window size when it boots it just becomes a blank screen, so I never got to actually interact with the installed system. A tiny 640x480 on my screen is useless to me. I want full screen (5K monitor full res) access to the system, or at least anything bigger than 640x480.\r\n\r\nI just booted it up. I am using VirtualBox, rather than VMWare. I was able to get a usable window open. Perhaps I\'ll play with it some more....','Boredom.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1648,NULL,1,'en','1710794795','A3','A3','male','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1649,'1980-01-01 00:00:00',5,'en','1084475092','A2','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','Y','','','Y','Y','Y','','','','','','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','Y','','','','','','haskell.nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(1650,NULL,NULL,'en','352002920',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1651,NULL,1,'en','1617279710','A3','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Physician','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1652,'1980-01-01 00:00:00',5,'en','848378228','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','Development & Home Server','A3','I started using nix when I used NixOS for the first time.','Y','','','','','','Y','','Y','','','','','','','Y','Y','Y','','Functional Style','Similar to JSON','Encourages code as data','I wish we had better auto complete and api discovery in nix (in terms of development tooling). I frequently find myself looking at existing nix packages to find out how to do things.','Ansible or something like it with wrapper scripts.','','','','','','','','','','','','','','','','','','Y','','N','I have contributed once but that was a long time ago. I haven\'t found a personal need to extend nixpkgs myself in a while.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Before Nix & NixOS, I used to use a home-rolled configuration management system that used Archlinux and Ansible along with some wrapper scripts in NodeJS. The idea was to have various system configurations that could be recalled onto different machines of mine. While this worked for the most part, maintaining the wrapper scripts , keeping up with the fast pace of development of Archlinux having to perform workarounds for idempotent with clever hacks and snapshots became too much of a time sync. \r\n\r\nI had already used NixOS before this, in fact much of the inspiration for my home-rolled system came from NixOS. The reason I started using Nix and NixOS as a daily driver and server is because of its Stability and Configuration Management benefits. I also enjoy the ergonomics and functional programming aspects of the Nix language.','Y','','Y','','','','','System configuration and reproducibility\r\n\r\nThe fact i can store all my system configurations in a git repo and provision a machine with ease makes nix / nixos ahead of almost every other option on the market.','NixOS makes many of the tedious aspects of system administration enjoyable because of NixOS options.\r\n\r\nThe fact that many services and features that are used by system admins are simple configuration options in nix makes setting them up extremely painless.','Stability\r\n\r\nNixOS itself is extremely stable in my opinion, I hardly ever notice any major breakages and even If I did, the system snapshots that are built into nix make breakages almost irrelevant.','The whole missing library thing when trying to run an local binary. Troubleshooting that at times can be kind of a nightmare when working with software that bundles arbitrary binaries.','Ansible and some kind of wrapper script','Y','','','','','Y','','Y','','Y','','','',''),(1653,'1980-01-01 00:00:00',5,'en','693198304','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','The declarative, configuration-as-code style of nixos appealed to me, and I learned nix as a byproduct.','','Y','','','','','Y','','','','Y','','Desktop','','Y','Y','','Y','','`nix run`','Easily testing upstream changes and bugfixes with a src override.','Self-contained dev environments. I don\'t need to alter my system config to hack on a package.','I\'d replace the nix language with something roughly haskell-like. Strong typing, purely functional, expressive type system.\r\n\r\nAnd seriously, we need to get rid of nix-env, or at LEAST stop advertising it as \"the way\" to install software with nix *cringe*','There isn\'t really anything I can call a replacement.','','','','Y','Y','','','','','','','','','','','Y','','','','N','Everything I care about is already done, or is already being worked on by someone else.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','Y','','Desktop','I can make more complex changes to my system without fear of losing the ability to maintain it.','My entire system specification is a single consolidated thing which I can back up, replicate, etc.','The ability to change software locally without it becoming a second-class citizen from the package manager\'s perspective.','Some capacity for inheritance-style configuration changes. The fact that there\'s no way to access the \"previous\" value of a nixos option when setting it can occasionally be very inconvenient, particularly when a nixos module author didn\'t consider the modification I want to make to it. This happens most often when I want to add a command line switch to a service\'s ExecStart line.','Gentoo, probably, but I wouldn\'t be happy about it.','Y','','','','','','','','','','i3','Home-manager is integral to fully getting what I want from nixos.','','I\'d love to see a system for managing runtime state that integrates well with nix/nixos. The resulting OS could be amazing.'),(1654,'1980-01-01 00:00:00',5,'en','1467762119','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Musician','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','It\'s a clever solution to a real problem.','','','','','','','','','','','','','Personal computers','','Y','Y','','Y','','FLOSS','Functional nature','nix-shell','I would like comprehensive and easy to understand documentation with an emphasis on examples.\r\n\r\nAlso, nix-shell seems to be slower for me than it used to be. I don\'t know if it\'s because of a change in my configuration.\r\nMaybe I should look into Nix flakes, but I\'ve found it hard to get started. A tutorial with a minimal viable example might help.','Probably Guix.','','','','','','','','','','','','','','','','Y','','','','N','Maybe a fear of taking on responsibility.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','It used to be a lengthy process for me to install and customize all the programs I use on a new computer, so having that done automatically based on declarative text files was appealing.','','','','','','','Personal computers','FLOSS','Rollbacks','','Nothing actually comes to mind at the moment.','Probably GNU SD.','Y','','','','','','','','','','','','',''),(1655,'1980-01-01 00:00:00',5,'en','999318015','A4','A2','male','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y','','','Y','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Distro-Hopped until NixOS cured it!','','','','','','','Y','','Y','','','','Desktop Work/Gaming station','Y','Y','','','Y','','Sane Defaults of well working software','Relatively painless central configuration','Stability','Better documentation and simple tutorialising','Fedora Silverblue','','','','','','','','','','','','','','','','Y','','','','N','Never tried to.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Distro-Hopped until NixOS cured it!','','','Y','','','','Gaming/Workstation','Sane defaults and cemtralised configuration','Stability','Package availability','Better documentation','Fedora silverblue','','','','','','','','','','','Sway','','',''),(1656,NULL,2,'en','1684337645','A1','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','When I before using Nix, I\'m using the rolling package management system, after a long time I not upgrade my package, will crashed my system at full upgrade. In find solution for this problem, I discovered nix and using it for my primary package management workflow','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','reproducible','flake','nix cli','I want remove old cli like nix-env, nix-shell etc, using new nix cli, and use full Nix-lang to describe package, not Nix-lang and shell script combined','The package management I will use Portage provide by Gentoo, or ports provide by BSD, operating system I will follow the Linux From Scratch','','Y','','Y','Y','','','','','','Y','','','','bundix, cargo2nix','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1657,NULL,1,'en','688005531','A2','A4','male','','','','','','Y','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','','Y','','','N','Guidance','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','Y','','','','','bspwm','direnv, home-manager, flake-utils, nix-locate, nvd','nixops',''),(1658,'1980-01-01 00:00:00',5,'en','1284853477','A2','A5','male','','','','','','','Y','Y','Y','','','','','Y','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I learned about it via Guix (I am an occasional GNU Guile user). It\'s the most comprehensive software composition tool I know of.','','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Composition','Reproducibility','Version control of recipes','- Figure out if flakes are a good idea. The \"locking\" business is kinda anthethical to composition! (I am aware of overrides & .follows, but also of all the bugs...)\r\n- Stop the CLI churn (The old CLI was not perfect, but the new one makes the situation even messier. Also: nix run being replaced by nix shell hurts!)\r\n- Get rid of crazy progress meters. Also: stop spewing ANSI escape sequences all over the place. It should at least be configurable, and better not write those to a non-TTY.','Towers of Makefiles, and containers.','','','','Y','Y','','Y','','','','','','','','https://repo1.maven.org/maven2/org/nixos/mvn2nix/mvn2nix-maven-plugin/ (which is kinda broken)\r\nhttps://github.com/nix-community/yarn2nix (a long time ago)\r\n','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','No desire to reimplement NixOS in environments where the \"base OS\" is not mandated.','Y','Y','Y','Y','','Y','','Declarative & version-controlled configuration','Seamless Nix integration','Configuration generators','- Less gratuitous churn (even though it hasn\'t been too bad)\r\n','Debian + automation scripts & version control','Y','Y','','','','','','','','','(Customized) Sawfish WM','home-manager','','Thank you for this incredibly useful tool & OS!'),(1659,NULL,2,'en','1813556250','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1660,NULL,NULL,'en','527354328',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1661,'1980-01-01 00:00:00',5,'en','1398939828','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','I wanted a maintainable OS for a new NAS server and NixOS ticked all the boxes (native ZFS, declarative configuration that can be versioned, simple to contribute and add new features and packages)','','','','','','','Y','','Y','','','','','','Y','Y','','Y','','declarative configuration','awesome community','many packages','','','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1662,'1980-01-01 00:00:00',5,'en','1643410244','A2','A6','fem','','','','','','','Y','Y','','Y','','Y','','','','','','','','','','','','','','Y','Y','','','','','N','Y',NULL,'It was not really compatible with daily linux server work.','Run into trouble with versions of PHP, Python and NodeJS or Deno.\r\n\r\nAnd better docs then there where in 200x. Not sure when I used it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'No compatible workflow with Debian / CentOS','Not sure. Maybe now as a rabbithole exercise as I forgot it exists to see what\'s new.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Close/Accept my issue https://github.com/NixOS/nix/pull/1349 :-p'),(1663,'1980-01-01 00:00:00',5,'en','1005375381','A5','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','Y','','','','','','','','','Y','','','','','','','','','','I3','','',''),(1665,NULL,1,'en','1263504769','','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1666,'1980-01-01 00:00:00',5,'en','1922064942','A2','A2','male','','','','','Y','','Y','','','','','','','','','','','Y','','','','','Y','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I used to be an Arch user, but it wasn\'t really suitable for exotic tasks such as laptop GPU passthrough with merged normal/grid nvidia driver.\r\nThat\'s how I tried NixOS & Nix.','','Y','','','','','Y','','','','','','','Y','Y','','','Y','','Declarative configurations','Huge amount of ready 2 use derivations in nixpkgs','Dev. shells','Supporting fixed-hash derivations for local files, really important for big proprietary software\r\nhttps://github.com/NixOS/nix/issues/1528','No idea','','','','','Y','','','','','Y','','','','','','Y','Y','','','N','Lack of knowledge and experience','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1667,NULL,NULL,'en','452578202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1668,'1980-01-01 00:00:00',5,'en','1813766907','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Alternative to Homebrew, which allowed use of multiple versions of software.','Y','','','','','','Y','','','','','','','','Y','','','','','nix-shell','home-manager','','Just get on with flakes.','Homebrew','','','','','','','','','','','','','','','','','','','','N','Can\'t understand how to write expressions. No two examples are alike.','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Lots of great ideas, but it\'s still too damned complicated.'),(1669,NULL,1,'en','1065244826','A2','A3','male','','','','','','','Y','Y','','','Y','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1670,'1980-01-01 00:00:00',5,'en','1234498642','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','N','N','get rid of that dependency shit tarballs we have at work',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','same as before',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1671,'1980-01-01 00:00:00',5,'en','907755810','A2','A3','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'- stuff needs to be fixed \"properly\" and usually no easy hotfix can be deployed. This makes NixOS a horrible experience for prod systems\r\n- hard to google fixes, takes too much time to be only on my private servers\r\n- some stuff feels like a big mess, e.g. how to overwrite stuff\r\n- didn\'t work well on my hardware (old macbook with bad linux support)\r\n- too much confusion with flakes. it looks like flakes would clean up a lot of things but it still has a lot of problems itself (e.g. being experimental :p)','- when flakes isn\'t experimental anymore\r\n- a solution to \'hotfix\' / debug stuff on live systems without having to be a nixos guru',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','musnix - very awesome and I only stopped because I don\'t use NixOS anymore\r\nnixcloud webservices/mailserver - an awesome idea, but sadly it broke at some point and even after a few hours I didn\'t understand it enough to fix it. Disappointing that this project didn\'t get a lot of traction. IMO nixos should use a similar approach for their webservice management!\r\nHomemanager - I\'m a bit disappointed that this isn\'t an official part of NixOS and therefore certain programs like window managers need to be configured either-or. Will definitively use again if I get back at using NixOS\r\nnix itself without nixos (on Windows, Mac and Debian) - I might gives this another try but the experience is kinda lacking in comparison to NixOS\r\nNixos-hardware - should also get more traction. Will definitively use again!','love the work you do to get NixOS out there and keep the community together <3\r\nI really hope I\'ll be able to use NixOS professionally on live infrastructure in a few years!'),(1672,'1980-01-01 00:00:00',5,'en','1761622772','A2','A4','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','Brain puzzles and training my frustration tolerance (semi sarcastic snarky remark.) Still love Nix, though','A3','Needed better management of third-party dependencies - being able to go back to old git revision and get the right dependencies. Also needed both native code and OCaml dependencies. My hand rolled approach was not reliable enough. Failed to use it in 2014, went back a few years ago. Now failed to stick with NixOs (after 1.5 years) but finally using it for dependency management, Emacs plugin configuration, etc. and parts of my MacOS setup','Y','Y','','Y','','','Y','','Y','','','','','','Y','Y','','Y','','Dependency management, especially complex ones like mixing native code, OCaml/Haskell and Python, also with custom builds of dependencies like LLVM, sometimes needing patches etc.','Easy return to last known-good configuration','','Find a way to make it simpler to use, probably axing as much of Nix the language as possible. Better debugging and error reporting','Going back to hand rolled scripts. Maybe something like Guix or Hermes','','','','Y','Y','','','','','','Y','','','','mach2nix for Python, emacs-overlay','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Learning, seeing how nice things could be if I could just make it work','A3','Started using Nix for development. Then was unhappy with Ubuntu/Manjaro so I gave NixOs a chance. Got frustrated after spending too much time finding out how to do things so I returned to MacOs as my daily driver. NixOs machine is still used for experimenting though. Haven\'t given up returning there one day','Y','','','','','','','Safe rollback to earlier versions','Declarative system management so I can experiment without fear','First class Nix support - everything works with Nix in contrast to MacOs where only a few packages work','Provide more ready-made configurations for easy re-use. Something like https://github.com/gestaltjs/devenv for languages, hardware, server setups. Like having a working Nvidia setup for specific notebooks, etc. Thus also easier composing of configurations, overlays are tricky.\r\n\r\nMore howto-guides which focus on getting something done without full understanding of all the details. Nix pills is great to learn but requires a lot of time and frequently things get forgotten before I can repeat them often enough to commit to memory. Also when for example a webcam doesn\'t work it\'s ok to not understand all details of the solution if it can just be fixed','Manjaro/Arch, MacOs, Debian, Ubuntu?','Y','','','','','','','Y','','','sway','','',''),(1673,NULL,NULL,'en','1134164064',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1674,NULL,1,'en','255848762','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1675,'1980-01-01 00:00:00',5,'en','184702863','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','I wanted a way to setup my workstation in a way that removed the headache and toil of doing it manually. I wanted something easy to maintain, reproducible and deterministic with rollback capabilities. ','','Y','','','','','Y','','','','','','','','Y','','','','','Reproducible','Configurable','Cross platform (I love the idea I could use it for my servers too)','Documentation easier to consume and understand','Ansible','','','','','Y','','','','','','','','','','go2nix','','','Y','','Y',NULL,'N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1676,NULL,2,'en','1509894922','A5','A2','-oth-','enby','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A2','','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','dev shells','reproducible builds','','Comprehensive documentation and stability. For a project coming on two decades of age, things still change seemingly every week (i.e., we just recently went from defaultPackage. to .package.default or something along those lines). Aside from these changes being frustrating, they\'re almost always only documented in release notes (if even that, for instance the nixConfig flake attribute was undocumented on release). Because Nix does novel things, it needs novel documentation. Otherwise, it\'s too surprising a tool to reliably work.\r\n\r\nPerformance optimization is another thing I\'d like to see (good job Pennae!).','Probably too many virtual machines and containers.','','','','Y','Y','','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1677,'1980-01-01 00:00:00',5,'en','695871079','A5','A2','-oth-','enby','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A2','','','Y','','','','nixos','Y','Y','Y','','','','','','Y','','','Y','','development environments','reproducible dependency graphs','reproducible builds','I\'d add comprehensive documentation. Nix does *really great things* in its model, but it moves *really quickly*, and without much documentation. Just recently, we changed the flake schema from `defaultX.system` to `x.system.default`, or something along those lines. That\'s a major change. And while there are backwards-compat measures in place (defaultX.system still works), and flakes are experimental, the maintainers weren\'t too loud about it. (Buried in release notes.) As another flake-related example, nixConfig was added and released without any documentation whatsoever. Most documentation is in the community wiki, which is out of date and sub-optimal.\r\n\r\nHonestly, my magic maintenance wand would freeze all new features, clean up the code base (we\'ve got quite a few >=200-line functions in there!), optimize performance (which Pennae is already doing great work on!) and *document everything*. Then, we could restart adding new features slowly, incrementally, and conservatively. Nix does great things, and I want to be able to learn them!','Too many containers and VMs.','','','','Y','Y','','','','Y','','Y','','','','','','Y','','','N','I don\'t need to. Every time I need something updated, there\'s already a merged PR waiting on a CI run to get into my system. I have manually backported one commit on the one occasion something hasn\'t been handled completely already.\r\n\r\nBecause I haven\'t written too much nixpkgs code, it\'s hard for me to read it and give proper reviews. (Maybe more documentation would help there.)','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','Y','','','','','My entire home server config fits in a single git repository. Declarative system configuration is amazing.','I can build an ISO with my desktop system and boot it on another machine. Reproducible systems are pretty great, too.','','First and foremost, *documentation*. search.nixos.org is pretty good, but not quite a substitute for comprehensive docs on what does what. Something usually always manages to surprise me each time I change something non-trivial. Unlike with Nix, a freeze on fancy-new-things is unlikely to be possible or useful, and tbh I don\'t really have any constructive suggestions on how to get there with a good deal of stability.','too many containers and VMs.','','','','','','','','','','','cwm, dwm, i3','','','Nix is a fantastic tool, obligatory thanks for maintaning it! :)'),(1678,'1980-01-01 00:00:00',5,'en','255196707','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Sounds cool and organized\r\nConfiguration.nix','','Y','','','','','Y','','','','','','personal laptop','','Y','','','Y','','Nixos configuration ( stop fucking up systems / undo!)','nix-shell','easy modifications of packages / builds','Consistency.\r\nYou can never find solutions by cobbling three tutorials together because everyone uses things differently. That makes it very hard if you havent studied nix.','Debian / Arch + bunch of scripts and language packagemanagers','','','','','','','','','','','','','','','','','','','','N','Have not grasped enough','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1679,NULL,2,'en','1720301856','A3','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I was looking for a language to substitute YAML, JSON, TOML, because they don\'t have vars, functions or imports.\r\nCuriously, I was also looking for another language with dependency injection, Nix haven\'t but callPackage is almost a standard. \r\nSadly, the language couldn\'t be used as general purpose language.\r\nI started using it as my reproducible developer environment;\r\nAfter that, as my home manager (with home-manager);\r\nThen, as my OS, and;\r\nLastly, as a tool for CI/CD projects.','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','','Y','Alternative to YAML','The language','Config management','The package management','Make the language usable as general purpose language or at least as alternative to YAML/JSON (ie like Nickel project)\r\nMake a clear distinction between Nix (lang), Nix (tool), NixPkgs, NixOS.\r\nBecause it looks like there is a Linux Distro with a DSL, \r\ninstead of a language (with a lot of use cases), a package tool (with other use cases), a package repository (with more different cases) and a Distro (that has its own use cases)','Dhall + language specific tool for env (ie. pipenv) + ArchLinux','','','','Y','Y','','','','Y','','Y','','','','None, why not a \"nix2\" for less intrusive adoption of Nix where we can\'t control the environment?','Y','Y','','','N','Impostor syndrome kicks in, because who am I to touch a huge and important project if I can\'t explain what is a derivation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1680,NULL,2,'en','1205019303','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','To build Haskell packages.','','','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','Guaranteed reproducability','Declarative management','','Add better documentation!','Maybe Guix?','','','','','','','','','','','','','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1681,'1980-01-01 00:00:00',5,'en','592856266','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','','','','','','','','','','','Bspwm','numtide/devshell','',''),(1682,'1980-01-01 00:00:00',5,'en','1564199982','A4','A2','male','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','It seemed interesting so I decided to try it out','','','','','','','','','','','','','personal computer','','','','','Y','','','','','easier to create and manage configuration files (dotfiles) for a generated system','arch','','','','','','','','','','','','','','','','','','','','N','I have yet to find a need to contribute','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','','','','','personal computer','','','','easier management of dotfiles for a generated system','arch','Y','','','','','','','Y','','','','','',''),(1683,NULL,1,'en','411475728','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1684,'1980-01-01 00:00:00',5,'en','1777928591','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I don\'t remember exactly the beginning of my journey - I think I saw it in my new job. Once I started reading about it and playing with it, I was confident it is the future and solution to all reproducibility and robustness issues for packaging and distributing software.','','Y','','','','','Y','Y','','','','Y','','Y','Y','','','Y','','reproducible builds','robust dev environments/shells','declarative configuration','add more documentation, especially entry-level and from first principles, examples, how-tos, I would fix/explain why there are issues/conflicts with GLIBC on different machines, I would improve error messages to be the same or better like in Rust/Elm compilers. I would make caching free for people to use until certain size (like 3GB per month for instance, to increase adoption and ease of use). I would create regular, well-organized and structured trainings/\"academy\"/rallies for Release Managers - anyone can become a release manager in a short period of time. There should be supportive community of previous release managers. ','apt, pacman, etc.','','','','','','','','','','','Y','','','','','Y','','','','N','lack of time, not sure how and where to start, a bit intimidating to start (for example I wish I could fix many broken Haskell packages, etc. - would be great to have a case study/walk-through described where we have Git repo with a broken package and step by step, what someone did and were they looked, etc. in order to fix it and what is the result before/after with some analyzis and useful links/resources/further reading, etc.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It is a pinnacle of Linux distributions - I have been waiting for such distro my whole life - thank you.','Y','Y','','','','Y','','declarative configuration','robustness/reliability','rich pkgs set','let\'s make NixOS first-class citizen in gaming community','Manjaro','','','','','','','','','','','Xmonad','home-manager, niv','','NixOS is the best thing that happened to Linux community ever!! Thank YOU!!! Please, keep the good work and let\'s conquer the world with declarative and robust OS! :) :) :)'),(1685,'1980-01-01 00:00:00',5,'en','1815868722','A2','A5','male','','','','','','','Y','','','','Y','','','','','','','','','Y','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Heard about Nix(OS) on the Functional Geekery podcast. Wanted a reproducable system state.','','Y','','','','','Y','Y','','Y','','','','','Y','','','','','Reproducable system state','System roll back','','Better introductional material for new users.','GNU Guix','','','','','Y','','','','','','','','','Drone','I don\'t know what “2nix” is.','Y','Y','','','N','Haven\'t had an open source project yet, that I needed and was missing in Nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Heart about it on the Functional Geekery podcast. Wanted reproducable system state.','Y','Y','','','','','','Reproducable system state','rollbacks','','Better introductional material for new users','GNU Guix','Y','Y','','','','','','','','','xmonad','','',''),(1686,NULL,NULL,'en','1122891560',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1687,'1980-01-01 00:00:00',5,'en','2091125342','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1688,NULL,0,'en','544456937','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1689,NULL,NULL,'en','430391130',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1690,NULL,NULL,'en','1500009915',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1691,'1980-01-01 00:00:00',5,'en','2029735440','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I like the declarative aspect of Nix and decided to dip my toes on my Mac.','Y','','','','','','Y','','','','','','','Y','','','','','','Alternative to Homebrew','','','Make Nix have parity with Homebrew. Fix packages that fail to build. Add more packages.','Homebrew','','','','','','','','','','','','','','','','','','','','N','Requires a time investment','N','N','If I had a use for Linux.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1692,NULL,NULL,'en','2144034610',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1693,'1980-01-01 00:00:00',5,'en','635081251','A2','A4','male','','','','','','','Y','','','Y','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','On macOS as a package manager, then migrated to NixOS and never looked back :)','','Y','','','','','Y','','','Y','','','','Y','Y','','','Y','','makes it a breeze to do any work on NixOS','reproductible builds','easy way to give a piece of software a try','Have a tool to understand Nix packages better','Dunno, but I used Docker before for reproductible builds but it\'s a mess','','','','','','','','','','','','','','','','Y','','','','N','Lack of time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','`nix-shell` pulled me in','Y','','','Y','','','','Nix','Easy bootstraping ','Easy upgrades','Nothing really, I like the way it is.','Arch or Gentoo','','','','','','Y','','','','','Sway','','','I truly appreciate all hard work done on Nix and NixOS - I love what you are doing, guys!'),(1694,NULL,2,'en','501577985','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I tried out NixOS and stuck with it.','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Isolated development environments','Reproducible user configuration','Reproducible system configuration','Better documentation','Spack, though it\'s really sub-par compared to Nix!','','','','Y','Y','','','','','','','','','','poetry2nix','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1695,'1980-01-01 00:00:00',5,'en','417332819','A6','A3','male','','','','','Y','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I started using NixOS in 2018 when I was looking for new distros to try. I liked the fact that most of my bio-informatics tools were present and the easy system configuration using nix files.','','Y','','','Y','','','','Y','','Y','','','Y','Y','','','Y','','System configuration in NixOS','Switching between different configurations','Nix shell','Can\'t think of anything I particularly dislike about nix.','Xbps from voidlinux','','','','Y','Y','','','','','','','','','','','','Y','','','N','Lack of knowledge','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I started using NixOS in 2018 when I was looking for new distros to try. I liked the fact that most of my bio-informatics tools were present and the easy system configuration using nix files.','','','Y','','Y','','','System configuration','Switching between different confiurations','','','voidlinux','Y','','','','','','','','Y','Y','','nvd (https://gitlab.com/khumba/nvd)\r\nnixfmt (https://hackage.haskell.org/package/nixfmt)','nixpkgs-fmt (https://github.com/nix-community/nixpkgs-fmt)','Thank you for developing NixOS.'),(1696,'1980-01-01 00:00:00',5,'en','1825738979','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Very interested in the concept to handle dependencies in a clean and safe manner, then once tried, I could not use another distribution / package manager','Y','','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','makes reproducibility easy','very easy to cross compile','enforces good practices to build process and deployment protocols','- ability to print the plan without doing the actual build (what derivations are to be downloaded from a cache server, what needs to be built, ...)\r\n- maybe a closer integration in terms of documentation / package and options search with nix-darwin, home-manager, etc\r\n- ideally more rust in the codebase','I suppose I would stick to deb/rpm and docker containers with a lot of bash scripts','','','','Y','Y','','Y','','Y','','Y','','','','node2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','After a few tests with nix on a ubuntu machine, I felt is was a shame to duplicate the build tools, and wanted the full package.\r\nonce I was reassured by the configuration rebuild process, I switched definitely to nixos all my linux machines','Y','Y','Y','Y','','','','deployment process and methodology','ability to share and adapt configurations','','','I would be very sad now I know NixOS','Y','','','Y','','Y','','','Y','','Sway','home-manager\r\nnix-darwin','','Keep up the good work'),(1697,'1980-01-01 00:00:00',5,'en','1810899156','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','Y','','Y','','','','','','Y','Y','','Y','','declarative','reproduceable','community','','Guix?','','','','','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','declarative','reproduceable','comminuty','','Guix?','Y','','','','','','','','','','i3wm','home-manager, NUR','',''),(1698,'1980-01-01 00:00:00',5,'en','1738801210','A2','A2','fem','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Frustrated with dotfile management and reproducibility; went from nix-darwin -> home-manager -> nixos','Y','','','','','','Y','','Y','','','','Daily driver','','Y','','','Y','','Reproducibilty and ease of keeping track of system config','Configurability from a single place','Easy full-system-config-versioning','Add more integrations with external software configurations --- e.g. Gnome is hard to configure with nix configuration, so you have to use it\'s own GUI configurators\r\nRemove imperative package management --- only complicates core use-cases\r\n','Back to good ol\' Homebrew on Mac, probably, plus a hodge-podge of shell scripts for initial system setup from a dotfile repo','','','','','','','','','','','','','','','','','','','','N','Not confident enough yet','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','Daily driver','','','','','','Y','','','','','','','Y','','Y','','','',''),(1699,'1980-01-01 00:00:00',5,'en','942580069','A2','A3','-oth-','AFAB, agender','','','','','','','Y','','','Y','','','','','','','','','','','','','Y','','','','','Y','','','N','N','I heard from a colleague that it\'s supposed to be very easy to try new versions of packages without creating a mess of broken dependencies, so that sounds nice!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I heard from a colleague that it\'s supposed to be very easy to try new versions of packages without creating a mess of broken dependencies, so that sounds nice!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1700,'1980-01-01 00:00:00',5,'en','1749987429','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started using Nix out a desire for repeatability in my personal configuration, as well as across groups of servers. I felt dissatisfied with the other available options (dotfiles, Ansible, Docker). I had been aware of Nix ~6 years before I really committed. I started with a fully Flakes-enabled configuration, which caused some difficulties.','Y','Y','','','Y','','Y','Y','Y','','Y','Y','','Y','Y','Y','Y','Y','','Declarative configuration','Self-contained portable software \"bundles\" via flakes','Repeatability','Merge home-manager into NixOS.','A lot of random glue that frustratingly doesn\'t integrate.','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','As my primary OS for development machine (so I guess kind of for work?)','A2','Oh gosh, you\'re just going to ask the same questions from the Nix section again. I\'m going to skip ones I already answered.','','','','','','','','','','','','','Y','','','Y','','','','','','','wlroots, River, Sway','Home-manager, cachix','',''),(1701,NULL,3,'en','864035995','A2','A2','-oth-','TransNigger','','','','','','','','','','','','','','','','','','','','','','','','Holocaust Revisionist','','','','','Y','','N','Y',NULL,'NIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGER','NIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGER',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','NIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGER','Y','','','','','','','NIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGER','NIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGER','NIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGER','NIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGER','NIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGERNIGGER','Y','','','','','','','','Y','','',NULL,NULL,NULL),(1702,'1980-01-01 00:00:00',5,'en','1173965629','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Because NixOS uses it.','','Y','','','','','','','Y','','','','','','Y','Y','','Y','','Declarative configuration','','','I would add more sane errors, they are always hard to parse.','I would be using Arch Linux so most interaction would be through pacman.','','','','','Y','','','','','','','','','','','Y','Y','','','N','Nothing :)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I liked the idea of having a fully declarative system, and NixOS seems like the perfect OS for that.','Y','','Y','','','','','Declarative system configuration.','Garbage collection.','Ease of install.','','ArchLinux','','','','','','','','','','','i3','','',''),(1703,NULL,1,'en','245728498','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1704,NULL,NULL,'en','1860787853',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1705,'1980-01-01 00:00:00',5,'en','1828705443','A2','A5','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Discovered in early 2019, got hooked ever since.\r\n\r\nBasically i like my software and operating system to work. ','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Flakes','reproducablity','nixos tests','remove nix-env\r\n\r\nremove channels \r\n\r\nupdate the nix-pills and documentation \r\n','I\'d probably leave the industry.','','','','Y','Y','','Y','Y','','','','','','','dream2nix\r\ncargo2nix\r\nnode2nix\r\nhaskel2nix\r\nhaskell.nix','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','as previous','Y','Y','Y','Y','','','','flakes','reproducablity','nixos tests','add GUI installer/package manager.','nothing','Y','Y','','','','','nixinate','','Y','','','','','Keep going!'),(1706,NULL,1,'en','1096879449','A2','A3','male','','Y','','','','','','','','','Y','','','','','','','','','','Y','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1707,'1980-01-01 00:00:00',5,'en','1115272709','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','i started using NixOS','','Y','','','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','declarative package management','flakes','packaging','remove nix-env due to it causing undue pain to newcomers','Not sure, i guess pacman(arch pkgmanager) and docker','','','','Y','Y','','Y','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','i was using arch before and i wanted to try something different, once i tried NixOS i couldn\'t go back to normal distros','Y','Y','Y','Y','Y','Y','','declarative system management','easy to contribute to','modules','','Arch','Y','','','','','','','','','','Sway','home-manager\r\nnix-tree\r\nnixpkgs-review\r\nnix-index\r\nnixpkgs-fmt # will switch to alejandra\r\nhydra-check\r\ncomma','',''),(1708,'1980-01-01 00:00:00',5,'en','1877665786','A2','A2','male','','','','','','','Y','','','Y','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I wanted to do something crazy and I broke my previous system','','Y','','','','','Y','','','','','','','Y','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I wanted to do something crazy and I broke my previous system','Y','','','','','','Notebook','','','','','Debian Testing','Y','','','','','','','','Y','','','','',''),(1709,NULL,2,'en','957189164','A1','A2','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I use NixOS on a laptop for production, which means that I use it on the research work (as a graduate student), the schoolwork and the side projects.\r\n\r\nI use Nix as a project manager for production use inside NixOS as well as on CentOS 7 (CERN LXPLUS 7). I use Nix through nix-portable on CERN LXPLUS7.\r\n\r\nI use Singularity/Apptainer to package the build result of the analysis script and all its dependencies before sending it onto the CERN Grid (the HPC facility of CERN) through HTCondor. It\'s extremely slow to operate on many small files on network-based file systems e.g. AFS and CERN-EOS, and thus direct-copy of the store or it\'s gzipped archive would not be feasible.\r\n\r\nI also have NixOnDroid on my Android phone, and use it for quick access to my working progress (and for personal use also).','','Y','','','Y','Android','Y','','','','Y','Y','','','Y','Y','Y','Y','','The ability to run cross-platform and as an unprivileged user.','Ad-hoc, disposable, clean and declarative development shell and package running.','Declarative project management / system management.','1. Add an electron builder to make source-build electron apps possible.\r\n2. Add a crystal ball to detect HFS / imperative-build assumptions, which is the source of all the mess.\r\n3. Implement the system-agnostic configuration file generator (RFC 0078), so that I can have Home Manager on CERN LXPLUS7.\r\n4. Add the functionality to do `nix`- and `nix-store`- related command-line operations from within the build process without building inside a VM. (or make the documentation about the build-time alternative accessible).','','','','','Y','Y','','Y','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','LXQt','','',NULL),(1710,'1980-01-01 00:00:00',5,'en','860978808','A2','A2','male','','','','','','','Y','','','Y','Y','','','Y','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Y','','Y','','','','','','Y','','','Y','','','','','Change the Nix* doc and make it similar to ArchWiki','Arch + Docker containers','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Sway','','',''),(1711,'1980-01-01 00:00:00',5,'en','106762456','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','Y','','Y','','','','','','','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','','','','','','','','','','','','','Y','','','xmonad','','',''),(1712,NULL,1,'en','701281767','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','OpenBSD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1713,NULL,NULL,'en','1736154548',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1714,NULL,NULL,'en','861858318',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1715,'1980-01-01 00:00:00',5,'en','957271901','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','','','','Y','Y','Y','Y','Y','','','Y','Y','Y','','Y','','','','','Flakes: remove git integration (don\'t mess with the staging area, don\'t require stuff to be committed, don\'t treat other vcs and tarballs like second class citezens...), remove github integration, remove lockfile requirement (one may want to eg. have it only on releases), have a way to ensure global consistency.','','','','Y','Y','Y','','','','','','','','','builds.sr.ht','cabal2nix','Y','Y','Y','NUR','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','Y','Y','Y','','','','','','','','','Y','Y','','','','','','','','','awesome, sway','','',''),(1716,'1980-01-01 00:00:00',5,'en','665790580','A5','A3','male','','','Y','Y','Y','Y','Y','','','Y','Y','','','','','Y','','Y','','','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Extremely tired for configuring linux machines and development environments. ','Y','','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative system or server configuration','Declarative environment management','Peace of mind','I would ship flakes to stable ASAP. \r\n\r\nI would find a way to make to specific versioning slightly easier. nixpks.elixir being is okay but at the whims of the nixos-stable gods, would be nice to say elixir = { pkg = nixpkgs.elixir, version = 1.13_0} or something. In elixir latest is VERY stable, rc is unstable. ','Muddle through with brew/apt/asdf and shell scripts, fighting urge to put dev environments into docker. ','','','','','Y','','','','','','','','','','none at the moment. ','','Y','','','N','Too new I think. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','So tired of configuring linux. Every distro and every version putting shit in new places. If you install a package god forbid if you remove it later because it will leave tombstones all over your system. ','Y','','Y','','','','','Declarative system management.','Declarative system management.','Ease of use.','I would make flakes the default configuration steps and rewrite the kinda janky PERL script that analyzes hardware and outputs your hardware.nix.','Pop os probably.','','','','','','','','','','','','home manager ','none so far','Please ship nix into stable. Also stop using weird words for normal concepts like functions and modules and hashes. I know its a holdover from Haskell where everything needs to sound like a friggin disertation but come on, lets go mainstream.'),(1717,'1980-01-01 00:00:00',5,'en','1778245602','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','Y','','Y','','','N','N','A contractor recommended Nix as a solution to manage our software and dependencies. Currently in the process of getting Nix to work on the distro so we can trial this. NixOS itself does not seem to be a viable solution to us as it is basically unknown in the world of custom CPUs.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Currently happy with Debian on my workstation and don\'t currently have hardware to install it on.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1718,NULL,4,'en','1669898723','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(1719,'1980-01-01 00:00:00',5,'en','688055740','A5','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','Regular Use','A2','I started using NixOS because I am a distro hopper and it looked interesting.','','Y','','','','','','','','','','','Laptop','Y','','','','','Daily Desktop Use','Configuration dot nix','Unstable build','Flakes','N/A','I have no idea','','','','','Y','','','','','','','','','','','','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Months ago','Y','','','','','','','Configuration.nix','NixOS-rebuild','Unstable','N/A','N/A','Y','','','','','','','','Y','','','N/A','N/A',''),(1720,NULL,1,'en','789332772','A1','A4','male','','','','','','Y','','','','','Y','','','','','','Y','','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1721,NULL,1,'en','209820990','A3','A3','male','','','','','','Y','Y','','','','Y','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1722,NULL,2,'en','789692455','A2','A3','male','','','','','','Y','','Y','','','Y','','Y','','','','','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Read Domens post about chef, Ansible, puppet, nix when trying to choose between them.','Y','Y','','Y','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducability','Everything as code/being a programming language -> DRY','Can check all relevant aspects into source control','Make it easier for \"quick and dirty\"/ imperative work. Nix slows down when wanting to \"move fast\" even when one would be fine with losing the benefits of nix for those cases. Also, having Windows support outside of WSL2 would be nice, but this appears to be really hard. ','Probably Ansible.','','','','Y','Y','','','','','','','','','','npmlock2nix','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1723,'1980-01-01 00:00:00',5,'en','2037743344','A5','A4','male','','','Y','','','','Y','Y','Y','','Y','Y','Y','','','Y','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','i hated that my dev machine would always get crappy and full of so hell, so I looked at several projects to help resolve that. nix solved all my problems, and nixos made my life much better.','','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','','Y','','reproducibility','isolation','rollbacks','more documentation, in particular tldr examples.','guix','','','','','','','','','Y','','Y','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','same story as my nix one, to me they are tied together','Y','Y','Y','Y','','Y','','universal config language','easy systemd extension','up to date packages','more pacakges','guix','Y','','','','','Y','','Y','','','','direnv, flake-utils, nixfmt, nix-emacs-overlay','home-manager, impermanence','thanks for all the hard work'),(1724,'1980-01-01 00:00:00',5,'en','825029162','A2','A6','male','','','','','','','Y','Y','','Y','','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I like to possibility to use specific versions of packages for different projects.\r\nI appreciate the ability to try out new packages without cluttering my system.\r\nI was appealed by the possibility to create reproducible development environments using nix-shell.\r\nI am impressed with the number of available packages, which surpass my host OS (pop-os, macos/brew).\r\n\r\n','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','Declarative environment management','Imperative package management','Build container images','Even easier/better integrations with the environment. Example: I\'m using fish-shell instead of a bash, which could only be solved with some hacking.\r\nAdd more resources for supported hardware, so I could use NixOS.\r\nThough I use nix on a daily basis, I feel not comfortable in the nix language yet. So make it easier to create packages.','Traditional package manager + something like ansible to automate things','','','','','','','','','','','','','','','','','','','','N','I don\'t unserstand the process of contributing.','N','Y',NULL,'1. Problems with X Graphics on my Retina MacBook Pro.\r\n2. Configuration changes require a reboot','It\'s been awhile, so I\'ll try it anyway to see how things have changed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Thanks for your excellent work! Keep it up!'),(1725,'1980-01-01 00:00:00',5,'en','1969831161','A2','A4','male','','','','','','','Y','Y','','Y','Y','Y','Y','','Y','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Been living too long on linux systems which degraded over time, accumulating forgotten packages and library inconsistencies after upgrades.\r\nFound out by accident that nix allows setting up tailored dev-environments, tool ','','Y','','','Y','','Y','','','','','','','','Y','Y','Y','','','Sane management of installed software and settings (home-manager)','Reproducable development environment','Rollback after misconfiguring my environment','Make the language more approachable and make documentation with idiomatic practices appear.','A great number of version-management tools for installed dependencies. nvm, jenv,...','','','','','Y','','','','','','','','','','https://github.com/jskrzypek/clj2nix\r\nhttps://github.com/svanderburg/node2nix\r\nhttps://github.com/tadfisher/gradle2nix','Y','','','','N','- strongly different approaches per derivation\r\n- I don\'t feel I understand nix well enough to contribute, everything I build feels just hacky','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','After using nix to clean up cluttered linux installations I quickly decided to switch to NixOS completely.','Y','','','','','','','Declarative system configuration','Declaratively mixing stable and unstable branches','Rollback capability','An install script for auto-partitioning','Manjaro','Y','','','','','','','','Y','','xmonad','','',''),(1726,'1980-01-01 00:00:00',5,'en','339109103','A1','A3','-oth-','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','When I was an undergraduate, one of my friends, who has been a Nix user, recommended NixOS.','','','','Y','','','Y','','Y','Y','','','','','Y','Y','Y','Y','','Reproducible development environment.','Declarative container definition via dockerTools.','Nix flakes for official pinning.','Most importantly, more user-friendly error reporting while evaluating Nix expressions. Errors should give enough context and be very readable. It would be nice if there is an option to evaluate strictly because it would help trace the evaluation from the start to the end and expose every mistake. Actually, I do not like the use of fixed points based on lazy evaluation such as overlays and NixOS configurations because it\'s super easy to accidentally introduce an infinite recursion.','package managers for programming languages','Y','','','Y','Y','','','','','','','','','','crate2nix\r\nnaersk','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','My friend recommended NixOS.','Y','','Y','Y','','','','Declarative OS configuration.','Rollback.','','An easy way to discover and learn NixOS options.','Regular Linux distro.','Y','','','','','Y','','','Y','','','I use Cachix for hosting a public cache for development artifacts. It\'s pretty easy to set up and allows me to reuse the same cache in my local dev environment and CI.','',''),(1727,NULL,1,'en','1880313489','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1728,'1980-01-01 00:00:00',5,'en','61390726','A2','A3','male','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I am interested in functional programming, and was aware of Nix. I rarely upgrade my hardware, so when I got a refurbished Thinkpad around 2013 I decided to install NixOS on it. I\'ve since used it extensively.','Y','Y','','','','','Y','Y','','','Y','','','Y','Y','Y','Y','Y','','Reproducibility (if it works on my machine, it will work for others)','Git integration (e.g. `import (fetchGit { ... })`)','Ability to easily override/swap-out/patch/etc. dependencies','Consistent sandboxing would be nice; e.g. builders might work on macOS, but fail on Linux (e.g. if there\'s a `#!/bin/sh` somewhere).\r\nStandardising hashes would be nice too (e.g. SRI hashes everywhere)\r\nPrivate binary caches are a bit tricky; e.g. my work would like to push build products to an S3 bucket; but pulling those down is tricky (e.g. if we use one set of AWS credentials to access the cache, that may conflict with credentials used for software deployment; which complicates the \"build and deploy\" process).\r\nRelying on third-party hosting is also problematic. When Microsoft bought GitHub, many people deleted their repos; that caused a lot of breakage in my projects, since I try to pin all dependencies and use git commit IDs as unforgeable version numbers. Changing GitHub URLs (e.g. to GitLab, or wherever they\'ve moved to) was simple, but it required new commits in my repos; and any references to those commits had to be updated; etc. I also had some experimental results and benchmarks which were identified by git commit; those became un-reproducible since the referenced commit doesn\'t contain the new git locations :(\r\nIt would be great to see something like IPFS used, e.g. to fetch sources and potentially as a global binary cache. That way, sources will still be resolvable at the same location, even if the original hoster disappears (even if I end up hosting it myself)','At the \"project level\", probably Make (or an alternative with nicer syntax, like Ninja). At the \"system level\", probably APT.','','','','Y','','','','','','','Y','','','Laminar','https://github.com/fzakaria/mvn2nix','Y','','','','N','Perceived burden of maintenance, I suppose? I\'m happy to throw code on to the Web; and to collaborate with others; but I don\'t feel comfortable having others rely on me to fix things.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','I bought a refurbished Thinkpad around 2012 (the first FSF-certified \"Respects Your Freedom\" laptop). It came with Trisquel GNU/Linux, but I knew I wanted a different OS, and decided to jump in at the deep end with NixOS. The installation was a bit tricky, since the machine had no CD drive; I managed to install NixOS by running the install CD inside Qemu (not recommended, since both the host and guest OS were writing to the same /dev/sda drive!).\r\nThat laptop is still running NixOS, although upgrading is a bit of a mine-field, since it\'s on `i686-linux`, which many packages no longer support (and even those which do can run into problems; e.g. crypto library test suites failing due to subtle differences between i686 and x86_64).\r\nI keep my NixOS config in git ( https://github.com/warbo/nix-config ) and am currently adapting it for my Pinephone (I can get it to boot NixOS to a text console, but haven\'t built a fully-featured image yet). Some of the options in that config were chosen by the original hardware-scan, which ran in Qemu, and may actually be unneeded/unsuitable for my physical machine!','Y','','','','Y','','','Atomic upgrade/rollback','Declarative config (even if it\'s just \"write the following to a text file\")','Easy importing of other\'s config from git','I miss the i686 binary cache :(','Debian','Y','','','','','','','','','','XMonad','https://hackage.haskell.org/package/nix-derivation (for the \'pretty-derivation\' command)\r\nhttps://hackage.haskell.org/package/update-nix-fetchgit\r\nhttps://github.com/nmattia/niv','','I am hugely grateful for Nix, Nixpkgs, NixOS, etc. and the effort that goes into them. I\'ve been using it personally for almost 10 years, I\'ve used it for academic research (building custom software, defining data processing tasks, rendering LaTeX documents, etc.), and I\'m now introducing it to a commercial workplace.\r\nThere are some parts of Nix I don\'t yet \"get\" (e.g. I\'ve looked at Flakes a few times, but don\'t get the appeal), but the underlying idea of Merkle trees for build instructions and runtime dependency graphs is remarkably powerful! '),(1729,'1980-01-01 00:00:00',5,'en','1593802658','A2','A4','male','','','','','','Y','Y','Y','Y','','','','Y','','','','Y','Y','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Because I needed reliable atomic rollback without full server rebuild','','Y','','','','','Y','','','Y','','','','','Y','','','Y','','atomic rollback','abstraction for building and deploying software that is powerful, complete and reliable','ephemeral dev environments','enough types to get discoverability and static analysis up scratch s.t. having to become an expert in the nixpkgs source is not a requirement for productivity.','terraform and shell scripts.','','','','','','','','','Y','','','','','','','Y','','','','N','I haven\'t needed to yet. I am sure I will in future.','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','complete packaging story, atomic rollback, declarative management of all aspects of the system, extensibility','','','','Y','','','','atomic rollback',' declarative management of all aspects of the system','extensibility','I\'d like the package pinning / channel /profile story to get sharpened up in terms of experience. Less environment variables, more configuration files. ','amazon linux','Y','','','','','','','','','','bspwm','','','Flakes is a mistake in the sense of biting off too much at once. Attacking reproducibility of builds by eliminative environment variables, improving meta type annotations for functions and the like (the same way as is done with options / config in nixos) and building out a high quality language server protocol implementation that could connect to the current nix store are all things that would move the ecosystem forward more cohesively and decisively and improve adoption much faster than a big ecosystem reset, imo. That said I\'m _very new_ here, so I\'m probably missing important context.'),(1730,NULL,NULL,'en','2006556622',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1731,'1980-01-01 00:00:00',5,'en','260737398','A5','A6','male','','Y','','','','Y','','','','','Y','','','','Y','','','Y','','','Y','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Got bored and wanted to try something that would expand my mind.','','Y','Y','','','Illumos','Y','','Y','Y','','','workstations','','Y','Y','Y','Y','','Declarative system configuration','Reproducibility','Development environments','','I was using Ansible but please don\'t make me go back!','','','','','','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Got bored and wanted to try something that would expand my mind.','Y','','Y','Y','','','','Declarative system configuration','Reproducibility','Development environments','- Make minimum NixOS installations truly small. NixOS has the potential to be the killer embedded systems or IoT platform except that the minimum installation is over 1 GiB (for comparison Alpine is 800M). At one point, I was able to trim Debian Lenny down to about 200 KiB. The smaller the better for such little systems.\r\n- Better and more clear separation between what has to be in /etc/nixos/configuration.nix and what can (and in my opinion, should) be configured by users using home-manager. I want to configure as little as possible globally and leave as much configuration as possible to users.\r\n- Refactor Nixpkgs to use higher level functions/modules to make it easier to understand and more uniform (which will help with the first wish)\r\n- Build something like flakes into Nixpkgs, not as a separate wrapper.\r\n- Better documentation. The NixOS manual is a good reference but not a good tutorial, howto, or explanation. See https://documentation.divio.com/\r\n- Looking forward to Nickle or some other typed-configuration language. (Dynamic typing is great for ease of use and small things but Nixpkgs is not longer small. We need static types to catch errors before building derivations.)\r\n- Easier to build a complete system against MUSL. (Once again, for small systems.)\r\n- Port Nix and Nixpkgs to non-Linux platforms, BSD, Illumos, Redox, for example.\r\n','- Used Debian for 18 years. Still like it (assuming I\'m willing to give up declarative configuration... which I am not).\r\n- Illumos-based distros. Linux has 80% solutions to 80% of Illumos but the other 20%s matter.\r\n- Ultimately, I want to be running a microkernel OS (like Redox perhaps) with everything possible, including drivers and services, configured and running outside the base. (This is the root/user separation idea in the previous question taken to the extreme.) The deterministic configuration Nix affords would be an excellent basis for such a system! \r\n','','','','','','','','','','','i3, sway','','','Thank you to all who work on Nix and NixOS. It has radically changed how i think about computing. All other approaches seem to antiquated to me now.'),(1732,NULL,NULL,'en','1715904863',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1733,'1980-01-01 00:00:00',5,'en','1856223066','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','Y','','Y','Y','OpenBSD','N','N','I see pluses of Nix\r\nI wont to try Nix on my FreeBSD and OpenBSD servers but im worried about compatybility (Nix Doesn\'t have official support for OpenBSD)\r\n\r\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I tried to learn the basics of most linux server distributions and improve my competences','Now i see more pluses of NixOS\r\nI wont to install NixOS on my test servers and see more how it works',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1734,'1980-01-01 00:00:00',5,'en','1907188103','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Declarative OS set up','','Y','','','Y','','Y','','Y','','','','','','Y','Y','','','','Declarative system config','Discoverable features','Consistent environment between developer machines','The syntax is awful. I like lisp, I\'ve been writing code for 15 years. It took me a very long time to internalise the syntax.\r\n\r\nThere\'s not enough documentation for /actually doing things/. A lot of things are possible, but it\'s hard to work out how to do them (e.g. I\'d like to build containers for deploying built stuff, but I can\'t figure out how to share my store into docker (or something else) to get a quick build).','In prod, something crappy like chef/puppet.','','','','Y','','','','','','','','','','','','Y','','','','N','It\'s not obvious how to do stuff.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Declarative OS','Y','','Y','','','','','','','','','Debian','Y','','','','','','','','','','xmonad','','','The project is cool, and I\'d like to master it. But I frequently get stuck when I try, because the surface area of the project is large, and it\'s hard to find a good route into it.\r\nThere\'s a lot of good resources scattered around, but there\'s nothing like the arch wiki for /just using nix/. It\'s easy to cargo cult other people\'s working things, and I guess I\'ll go from there.\r\n\r\nIt reminds me of my first few years with git. I recognise it\'s a powerful tool, but I don\'t really understand how to use it, or what the \'primitives\' are, so I just do simple stuff and hope that I learn things.'),(1735,NULL,1,'en','1221359187','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1736,'1980-01-01 00:00:00',5,'en','798504834','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Security engineer','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','I\'m an hobbyist. I was looking for the RIGHT system to run a personal server when I discovered NixOS as a whole.\r\nI gave it a chance for its reproducibility promises and the availability of an up-to-date nghttpx which i wanted to use.\r\nThen I discovered the service modules (so easy to add fail2ban for example).\r\nThen I managed to switch to a grsec-hardened kernel (a thing of the past now) with just some lines in my configuration.nix and a reboot.\r\nOf course I got hooked to the whole experience, not just \'nix\' the tool. :)','','','','','','','','','Y','','','','','','','Y','','Y','','Big number of up-to-date packages and the possibility to have more than one version of the same tool','Possibility to roll back to a previous working config','Overrides and overlays','-','Not sure... maybe VoidLinux or GoboLinux','','','','Y','','','','','','','','','','none','none','','','','I don\'t :)','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Same story as nix, I discovered the whole ecosystem as a whole','','','Y','','','','','see nix','see nix','see nix','-','Maybe VoidLinux or GoboLinux','Y','','','','','','','','Y','','','nixpkgs-review','-',''),(1737,'1980-01-01 00:00:00',5,'en','960577168','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Found it when starting my studies and realized that it solved a lot of problems I had with install/update cycles on linux/windows. so I used nixos as a daily driver from then on and learned nix on the side','','Y','','','Y','','Y','','Y','','','','','','Y','Y','Y','Y','','Reproducibility (in this case meaning: as close to mathematical reasoning as possible for real world application packaging and system management)','strive towards purity (e.g. with flakes)','','fix the discrepancy in mixed teams (nixos and linux+nix) when using nix-shell in the same repo for tools that need `buildFHSChrootEnv` or similar on nixos while they work well on other distros (e.g. when working with packages from the JS world through any node-to-nix abstraction)','despair and use what I have to','','','','Y','Y','','Y','','','Y','Y','','','','https://input-output-hk.github.io/haskell.nix/\r\nhttps://github.com/cachix/elm2nix\r\nhttps://github.com/stephank/yarn-plugin-nixify','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','it was a better solution to testing software and removing it again without having to reinstall the whole OS after a few tests','Y','','Y','','','Y','','reproducability','discoverability of options/settings and packages','splitting between hardware and software config, so all my machines get the same feel independent of hardware/architecture','encrypted file/secret handling without manual intervention','btrfs suvolumes and backups... alot of them\r\nand usb-sticks with recovery tools','Y','Y','','','','','','Y','','','xmonad, sway','','','keep up the good work on improving UX for mere mortals!'),(1738,NULL,NULL,'en','803272347',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1739,'1980-01-01 00:00:00',5,'en','1448992075','A2','A3','male','','','','','','','Y','Y','Y','Y','','Y','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Started using Nix by starting to use NixOS','','Y','','','','','Y','','Y','Y','','','Home router','','Y','','','Y','','Pure build environments','Reproducible builds','Build automation','Enabling content-addressed inputs for a user-chosen subset of Nixpkgs','Containerization / Podman','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It was my first foray into desktop Linux. I was looking for a system that would mostly painlessly stay up to date, without system state breaking.','Y','','Y','Y','','','Home router','Atomic system updates','System rollbacks','Modules abstracting over configuration formats','More ergonomic software version pinning','Arch Linux','Y','','','Y','','','','','','','AwesomeWM','- agenix','- lorri: moved to Nix flakes\r\n- NixOps: moved to deploy-rs','At this point, I can\'t see myself using anything other than Nix and NixOS!'),(1740,NULL,1,'en','100127313','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1741,'1980-01-01 00:00:00',5,'en','166337064','A1','A2','male','','','Y','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','','','','Y','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','a gentoo user i am watching switch to nixos','','','','Y','','','','configuration.nix','customizable and binaryCache','rollback ability','sign and verify nixexprs.tar.xz','saltstack, rsync','Y','','','','','','','Y','','','','nix serve','nix-env','it’s great to have systemd services being installed along with packages always but not enabled sometimes. setting systemd.services.xxx.wantedBy to lib.mkForce \"\" is weird..'),(1742,NULL,1,'en','394329784','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1743,'1980-01-01 00:00:00',5,'en','882209736','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I’ve discovered it through Cardano, then started to use it to manage my development environment on macOS, then used it to manage my user environment with home-manager, helping me to share my config between home and work machine, then went full NixOS because I loved so much how easy it is to describe a full system configuration with it.','','','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative environment','Reproducibility','Integration with all languages','','','','','','','','','','','','','','','','','mixnix: https://gitlab.com/manveru/mixnix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Same as for Nix, this is just the continuation of the story.','Y','','Y','Y','','','','Full declarative configuration','Composition (to share the configuration between machines)','Seemless upgrades','I would add support for other kernels, like Illumos or FreeBSD.','FreeBSD (or maybe Illumos)','Y','Y','','','','','','','','','bspwm','vulnix','','Thank you :)'),(1744,NULL,2,'en','1129519473','A2','A3','male','','','','','','','Y','','','','','','','','','Y','Y','Y','','','','Y','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','Y','','Reprocuceability','Convergence towards what is desirable','Readability','I would like for Nix/NixOS to have as good error messages as Elm.','Don\'t know, Guix perhaps.','','','','','Y','','','','','','','','','','','Y','Y','','','N','I don\'t really know how it works, and don\'t really know if my packages are good enough.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1745,'1980-01-01 00:00:00',5,'en','1989618685','A5','A3','male','','','Y','','','Y','Y','','','','','','','','','Y','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','After years of working on reproducible developer environments, I wanted to try NixOS to canonicalize my environment in code.','Y','Y','','','Y','','Y','','Y','','','','','','Y','Y','','Y','','Declarative environment management','Hermetic, reproducible builds/environments','Cross-platform build targets','Remove nix-env. It\'s confusing for new users and often not what they want.|\r\nPromote nix-commands out of experimental and make flakes the default.','Bespoke scripts.','','','','Y','Y','','Y','','','','','','','','','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I wanted a deterministic, reproducible system configuration shared across multiple systems.','Y','','Y','Y','','','','Determinism and reproducibility','Mixing stable, unstable and custom channels seamlessly.','','Merge/combine NixOS, nix-darwin and possibly home-manager into a single encompassing system management tool.','','Y','','','','','Y','','','Y','','','nixdirenv, flox, nixery','lorri','<3'),(1746,'1980-01-01 00:00:00',5,'en','2014177133','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','Y','','Y','','','N','Y',NULL,'Did not got the time to discover Nix and was a bit lost with the documentation but this was few month ago so I can\'t tell precisely what was not handy for me...','Nix is refreshing and practical (when you got it, like for everything hé ) to use, a lot of great ideas, a good community.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Did not got the time to discover Nix and was a bit lost with the documentation but this was few month ago so I can\'t tell precisely what was not handy for me...','Nix is refreshing and practical (when you got it, like for everything hé ) to use, a lot of great ideas, a good community.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nothing that I\'m aware of.','Nothing that I\'m aware of.','Thanks for the work :) A lot of respect for you and the community of this project ecosystem'),(1747,'1980-01-01 00:00:00',5,'en','1921365954','A2','A2','male','','','Y','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','Y','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','Y','','Y','','','','','Y','','','Y','','reproducibility','reliability','`easier` updates','','Centos, Rocky Linux, Archlinux','','','','','','','','','','','','','','','','','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','','','','','Y','','','','','','','','','','','','','','Y','','','','','','nixos mailserver','',''),(1748,'1980-01-01 00:00:00',5,'en','1203551297','A2','A4','male','','','','','','','','','Y','','','','','','','','','','','','','','','','Lead Consultant Embedded Security','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking for an upgrade path from Win7 on my private desktop when Win7\'s EOL came near. I pondered Arch, Void, Debian. As I had (beginner level) contact with Bitbake/Yocto and Haskell, Nix seemed quite manageable for me. I tried a few weeks with dual-booting NixOS from an old HDD on USB, then did the switch.\r\nSo starting Nix was one step with starting NixOS.','','Y','','Y','','','Y','','','','','','Home Desktops/Laptops','','Y','','','Y','','Declarative system management.','Reproducibility.','One language for everything.','Add: \"Declarative (pure) impurities.\" -> Some sort of path overloading in the store, such that e.g. scanner-fw-blobs can be added to SANE without having to rebuild Gimp.','Guix. But I don\'t like the Scheme syntax. Thank god Nix exists.','','','','Y','','','','','','','Y','','','','','Y','','','NUR','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Managing family laptops.','A3','See the Nix story. Win10 was a no-go for my personal machines. Win7 was EOL. Arch bit me a few times on the Chromebook. Debian was sometimes not up-to-date enough. The declarative approach was what got me as I have a tendency to mess up systems by installing/removing stuff in an imperative way.','','','','','','','Desktop','Declarative Management.','Rollbacks.','Atomic updates. Pre-build all on one machine, then push put to family laptops.','Add: A setup assistant tackling disk partition.','Probably Debian, Arch or Void.','Y','','','','','Y','','','Y','','LXQt, Sway','NUR, the NixOS Discourse forum','','Thank you!'),(1750,'1980-01-01 00:00:00',5,'en','613404004','A5','A3','male','','','','','','','','','','Y','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','I was looking for a reliable way to duplicate/manage development tool installations across multiple machines.','Y','','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative package management','Declarative system configuration (environment variables, aliases, git config, etc)','','I would add \'/usr/bin/env -S\' support to `patchShebangs` (see: https://github.com/nixos/nixpkgs/issues/77539). I am prevented from being able to use node2nix for several work projects because of this. I would also better options for debugging with the Nix language, either through static analysis or better evaluation-time error messages, or both. As a relative newcomer to Nix I find it very difficult to find and fix problems when I am trying to set up an overlay or make a configuration change/addition.','Guix. If that didn\'t exist I would use a hacked-together mix of shell scripts, Docker, Vagrant, and Fedora Silverblue.','','','','','','','','','','','','','','','node2nix (https://github.com/svanderburg/node2nix)','Y','','Y','','N','Not enough free time to learn the idiosyncratic Nix language and complex but inconsistently documented packaging idioms well enough.','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','To set up a server for per-project isolated development environments.','Y','','Y','','','','','Declarative environment package management','Environment isolation','','I would add a way to allow nix to more easily manage containerized environments akin to Toolbox on Silverblue (https://docs.fedoraproject.org/en-US/fedora-silverblue/toolbox/)','Guix or Fedora Silverblue. I might actually switch to Silverblue soon. I love the declarative focus of Nix in general but when I need to figure out how to do something new with my configuration it seems really difficult and time consuming to reach the point where I achieve the desired result.','Y','','','','','','home-manager','','','','','nix-darwin (https://github.com/LnL7/nix-darwin)','','Overall I love Nix and its community and hope that it has a bright future!'),(1751,'1980-01-01 00:00:00',5,'en','1511898002','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','My initial drive to adopt NixOS came from wanting a better configuration management scheme for my VPSs on hosted providers instead of using puppet or shell scripts. This evolved from locally-defined configuration.nix files, to nixops, and now colmena for building and updating. This has since bled over into nix proper for sandboxing and software builds and my daily drive on Framework laptop.','','Y','','','Y','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','Reproducibility (i.e., I can reliably rebuild projects or systems with a flake.nix file)','Uniformity (I find value in configuring my OS, build steps, packages, and sandbox environments with one system)','Utility (breadth of packages, functions like dockerTools, managed services for NixOS configs, etc.)','First would be complete arm32/arm64 support. I have many, many ARM hosts but support isn\'t sufficiently complete to migrate over yet.','Probably asdf for build tool sandboxing and Arch for operating systems.','','','','Y','Y','','','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','As a way to have better configuration management, as I\'m fairly dissatisfied with all other options out there.','Y','','Y','Y','','','','Suites of service configurations (to manage services like postgres or docker at a high level)','Core nix functionality (that is, ability to build and \"switch\" as atomic steps)','Breadth of packages','Full support for ARM.','Probably Arch Linux.','','','','','Y','','','','','','i3','haskell.nix','nixops (sparse documentation, some lacking features)','Keep up the great work!'),(1752,NULL,1,'en','1056893501','A3','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1753,NULL,1,'en','36091370','A3','A3','male','','','','','','Y','Y','','','','Y','','','','','Y','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1754,'1980-01-01 00:00:00',5,'en','995081494','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Because I started using NixOS.','','','','Y','','','Y','','','','','','','','Y','','','Y','','Declarative system configuration.','Nixpkgs.','Declarative environment management.','More (beginner friendly) documentation and learning resources.','Xbps.','','','','Y','Y','','','','','','','','','None','cabal2nix (https://github.com/NixOS/cabal2nix)','Y','Y','','','N','I do not think I have skill sets required to contribute to nixpkgs and I have no idea where I should start.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I learnt about NixOS on a reddit thread. At that time, I just migrated from Ubuntu to Arch Linux because of its configurability and more up-to-data package repository. However, I soon lost track of all the system configurations I made and found it hard to recover my system when something broke. Having read the documentation of NixOS, I figured it would be easier to try tweaking system settings on NixOS to my liking due to its declarative nature and the ability to roll back. Additionally, the nixpkgs unstable channel offered a comprehensive collection of recent enough versions of packages for me.','Y','','','','','','','Declarative system configuration.','Nixpkgs.','','More (beginner friendly) documentation and learning resources.','Arch Linux, Ubuntu, Void Linux or Fedora (in no particular order)','Y','','','','','','home-manager','','','','Sway','Home-manager.','Crate2nix.',''),(1755,NULL,3,'en','1070742858','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1756,NULL,1,'en','1607737430','A1','A3','male','','','','','','','','','','','Y','Y','','','Y','','','Y','Y','Y','','','Y','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1757,NULL,2,'en','1120452129','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I started using Nix because of NixOS','','','','','','','Y','','','','','','','','Y','Y','','Y','','The ability to have multiple versions of packages side-by-side for testing etc','packaged software works on any distro','Building third party packages usually works with no effort, as long as flake.lock exists','Some good performance analysis tools would be nice. How about some flame graphs? Tell me how to speed up my nixos rebuilds without guesswork.','Probably docker','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It always bothered me that operating systems develop cruft over time. When I heard about nixos it sounded perfect for fixing that','Y','','Y','','','','','Nixos doesn’t get crufty over time','I don’t need to log into my servers to know how they are configured. This allows my workflows to scale better','Knowing I can undo config changes usually allows me to not worry about trying stuff.','','','','','','','','','','','','','',NULL,NULL,NULL),(1758,NULL,NULL,'en','1733500876',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1759,'1980-01-01 00:00:00',5,'en','792574244','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','This is a friend that show me how to deploy same server one million time with just a declarative configuration','','Y','','Y','Y','','Y','','Y','','','','','Y','Y','Y','Y','Y','','Nix flake','Declarative configuration','Container configuration ','Add nix command to stable','Probably coreos','','','','Y','Y','','Y','','','','Y','','','','','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Same as nixos','Y','','Y','','','Y','','','','','','','Y','Y','','','','','','','','','i3','','',''),(1760,'1980-01-01 00:00:00',5,'en','84858373','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','A lot of Packages are there','','','','','','','','','','','','','Home Desktop','Y','Y','','','','','Package Count','Relyability','Rollback','I dont know','packman or nothing','','','','','','','','','','','','','','','','','','','','N','Im not smart enough','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Also for Package count and rollback','','','','','','','Home Desktop','Rollback','Automatic update','reproducable','not much','Arch maybe','Y','','','','','','','Y','','','','','','Thanks for your work :)'),(1761,'1980-01-01 00:00:00',5,'en','1349797522','A2','A5','-oth-','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','','','','','Y','','','','','','','Y','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','','','','','','','','','','','','','','','','','','','','','','','',''),(1762,NULL,2,'en','1058934123','A2','A4','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Tired of re-installs to cleanup upgrade leftovers. Wanted to have a recipe to rebuild OS configuration rather than configuring everything by hand. Wanted to have option to rollback to previous configuration.','','Y','','','','','Y','','','','','','','','','','','Y','','Knowing the exact state of the current configuration.','Rollback to previous configuration versions without hassle.','Ease to rebuild current configuration in an automated way (e.g. when installing a new machine).','Better documentation around recipes and configuration options. When installing software, many times I find myself looking at the recipe source to find out what can be configured. Would be great if this could be auto-documented.','Manjaro Linux','','','','','','','','','','','','','','','','','','','','N','Maybe the learning curve to learn about building / extending the recipes. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1763,'1980-01-01 00:00:00',5,'en','843872333','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Machine configuration as code, reproductible build','','Y','','','','','Y','','','Y','','','','','','Y','','Y','','Declarative setup as code','','','Improve helpers to build derivations\r\nReduce basic nix system size (splitting modules ?)\r\nImprove hardware support\r\nPublish best practices guide to organize nix system files','Debian','','','','','Y','','','','','','','','','','','','Y','','','N','I\'m not sure my work follows bests practices','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','','','Y','','','','','','','','i3','','','Keep going guys !'),(1764,NULL,NULL,'en','1943979925',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1765,'1980-01-01 00:00:00',5,'en','2131786196','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','Team lead, architect','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I faced problems with Homebrew on Apple\'s M1 Pro and decided to change package manager to something more reliable','Y','','','','','','Y','','','','','','','Y','','','','','','reproducibility of environment','','','1. I would like to have more naive and easy script language to enrol my environment by one click. Current approch is to hard\r\n2. If I can use some language like Haskell to script my shell it will be better\r\n3. Also I\'m irritating about reinstall nix every time when I update macOS :( \r\n4. Also I want more clear way to install packages from other package managers via Nix','Docker','','','','Y','','','','','','','','','','','','','','','','N','Specifically not clear language ','N','N','Because I\'d like to stay in Apple\'s ecosystem via macOS / iOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Please do something to fix regulary reproducible reset Nix after macOS update'),(1766,NULL,1,'en','1770500605','A4','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1767,'1980-01-01 00:00:00',5,'en','1566685224','A2','A3','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted better reproducibility and automation in system setup and in dev enviroments.\r\n\r\nAnd i like the idea and concepts of the nix package manager. ','','','','','Y','','Y','','','','','','','Y','Y','Y','Y','Y','','Declarative dev environments','creating docker containers from nixos configurations','','* add rendering nix expressions to a dataflow picture (ideally interactive so that one could see which part of the expression is currently evaluated)\r\n* recursive nix for better caching\r\n* flakes in stable nixos','self contained binaries\r\n\r\ndocker','','','','','','','','','','','','','','concourse (containers built with nix)','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I needed to setup a new system and wanted something declarative and reproducible','Y','','','','','','','single declarative source of configuration','rollbacks','','better discoverability of options\r\n\r\ngraphic card should \"just work\"','arch linux','Y','','','','','','','','','Y','i3','','','thanks for these great tools\r\n'),(1768,NULL,3,'en','1054833491','A1','A2','fem','','','','','','Y','','','','Y','','','','','','','','Y','','','','','Y','','','Y','Y','','Y','','iPadOS','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','A friend had been talking about nix once in a while. I had a few weeks on holiday so I spent 2 weeks bashing my head against it.','Y','Y','','','','','Y','','Y','','Y','','','Y','Y','Y','','Y','','','','','','Docker','','','','Y','Y','','','','','','','','','','','','Y','','Patches applied on the flake','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A3','','Y','','','','','','','','','','I\'d love to be able to bootstrap the nixos image more easily in the cloud, especially outside the major providers.','','Y','Y','','','','','','Y','','','',NULL,NULL,NULL),(1769,NULL,1,'en','188168336','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1770,'1980-01-01 00:00:00',5,'en','783538085','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','','','Y','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend used it for ocaml development and raved about how great it is. So I tried it on my Mac and installed home-manager and was immediately sold. When I later switched workplace I went with NixOS and except for a short stint using windows with NixOS in WSL I\'ve been using it for a year now.','Y','Y','','Y','','','Y','Y','Y','','','','','','Y','Y','Y','Y','','Reproducible dev environments for multiple projects','Declarative system configuration including rollbacks for when I\'ve experimented too much','Server management including remote deploys with flakes','','Some arch based distro as my OS and esy as my package manager for OCaml development.','','','','Y','Y','','','','Y','','Y','','','','https://github.com/serokell/nix-npm-buildpackage','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was already sold on nix using home-manager on macOS so when I changed work I started using NixOS','Y','Y','Y','','','','','','','','','Arch','','','','','','','nix flakes','Y','Y','','','Cachix','',''),(1771,'1980-01-01 00:00:00',5,'en','310697228','A2','A2','male','','','','','','Y','Y','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I don\'t remember how I became aware of Nix. I started using it because of declarative OS management + build experience Nix promises.','','Y','','','','','Y','','','Y','','','','','Y','Y','Y','Y','','Declarative system management','nix-build for \"native\" software','nix-build for docker images','- Add static types (or, at least, good type infer mechanism)\r\n- Operators a la https://agda.readthedocs.io/en/v2.6.2.1/language/mixfix-operators.html\r\n- IPFS support','- stack, cargo, npm and docker for building\r\n- Fedora with default package manager for OS','','','','','','','','','','','','','','','https://github.com/kolloch/crate2nix','Y','','','','N','So far - not enough free time :)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Same as Nix','Y','','','Y','','','','Declarative OS management','','','','Fedora','','','','','','','','','Y','','','https://input-output-hk.github.io/haskell.nix/','https://github.com/nix-community/naersk','Thank you for you work <3'),(1772,'1980-01-01 00:00:00',5,'en','1883668414','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','While I was using arch linux, I wanted to download taffybar, but it had broken packages and in the readme page i saw nix syntax for the first time which had nix overlay for taffybar.After googling about nix , I found nixos.org , the homepage of nix and nixos and at first sight , I saw words like declarative,purely functional os and being a devotee of haskell , I immediately downloaded nixos and since then I never looked at other linux distro','','Y','','','','','','','Y','','','','','','Y','Y','','Y','','declarative','transparency','reproducibility','Nothing\r\nBecause i don\'t know everything about nix','native package manager(e.g. apt for ubuntu)','','','','','Y','','','','','','','','','','cabal2nix','Y','Y','','','N','I have very limited knowledge about nix and i use nix only for managing for my desktop setup configuration','Y',NULL,NULL,NULL,NULL,'A1','','','','','A3','I never used nix on other machine , I directly got into nixos after knowing that it is an purely functional os','','','Y','','','','','accountability','reliability','transparency','add proper documentation','Arch linux','Y','','','','','Y','','','','','xmonad','home manager','Nothing','please add proper documentation'),(1773,'1980-01-01 00:00:00',5,'en','668442730','A2','A2','male','','','','','','','','Y','Y','','Y','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I started using it via NixOS because i needed a way to deploy my computer configuration easily.','','','','','Y','','Y','','','','','','','','Y','','','Y','','','','','Maybe add more way to minimize storage consumption','','','','','','','','','','','','','','','','','','','','','N','I don\'t have the occasion to ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1774,NULL,3,'en','1995464063','A4','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Normal user ','','','','Y','Y','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1775,NULL,1,'en','2033798126','A2','A3','male','','','','','','','Y','Y','Y','Y','Y','','Y','','','','','Y','','','','','Y','Y','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1776,NULL,1,'en','519401986','A5','A3','male','','','','Y','','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1778,'1980-01-01 00:00:00',5,'en','2035135821','A2','A3','male','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was fed up with other package managers. And I loved the philosophy of nix package management.','','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','Deterministic package management.','Rolling back broken updates.','Per-project configurability of packages used.','I would add an extremely user friendly GUI to manage which softwares I want to have installed. Possibly with which configurations. Then commit it into github and replicate it on a different machine when needed.\r\n\r\nI guess it\'s more about NixOS than Nix?','I was using Gentoo/Sabayon before NixOS.','','','','','Y','','','','','','','','','','','','Y','','','N','I don\'t have time and knowledge to do anything but very low-hanging fruits.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','My Sabayon package management was getting very annoying to maintain, and it got broken at some point. I was fed up with package managers and wanted something more deterministic.','Y','','','','','','','','','','GUI','Gentoo/Sabayon probably. Maybe Debian. Or Ubuntu even.','Y','','','','','','','','','','i3','','Nix build system as a replacement of Makefiles / ugly shcripts. Would love to, but it was too difficult to learn without extensive documentation and with much complicated syntax and structure. An easier way to automate the boilerplate stuff and guide the users would have been nice.',''),(1779,'1980-01-01 00:00:00',5,'en','2068517530','A5','A4','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','System at new job is built on it.','Y','Y','','','','','Y','Y','Y','Y','','','','','','Y','','','','hermetic build','remote build','global cache','Make remote build robust, reliable, efficient, with good diagnostics and documentation.','bazel, shake','','Y','','Y','','','','','Y','','','','','','cabal2nix','Y','','','','N','Lack of time, and don\'t want to fight inertia of existing systems.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Try it out, since I used nix at work.','','','Y','','','','','stable linux distribution','','','Better documentation, say a detailed wiki full of up to date howtos.','arch?','','','','','','Y','','','','','fvwm','','','Nix could do with better documentation and planning. Fewer half-hearted undocumented semi-overlapping features and more robust, well documented, orthogonal, and well-tested ones.'),(1780,'1980-01-01 00:00:00',5,'en','1249563331','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','all personal computing environments (except phones)','A3','As soon as I read and understood the concepts, it was obvious that this was the one true way to build and deploy software.','','','','','','','Y','','Y','','','Y','','','Y','Y','Y','Y','','reliable reproducible builds','huge and up-to-date package repository','building minimal container images','Oh man...\r\n\r\nFirst, get rid of nix-env and never ever mention it again. It\'s a huge stumbling block for newbies. Force people to use declarative configuration so they see the benefits (and don\'t try to bash Nix into an apt-shaped hole and \r\n\r\nAdd more structure to the language (including a type system, but more too, along the lines of modules), so that it\'s easy to look at a piece of nix code and see what it _is_: a callPackage package? a dev shell? a nixos module? a library function? This was one of the hardest parts about learning the language+ecosystem.\r\n\r\nRedo flakes with what we\'ve learned so far, so there\'s less boilerplate and more flexibility. My preference is for something very simple, almost as simple as niv.\r\n\r\nBuild awesome devops tools that integrate Nix into the modern devops ecosystem. Specifically, Kubernetes and Terraform are both based on the concept of declarative infrastructure, and both are awful to configure. Nix could (and should) take over the world here.','I used Ubuntu and other distros before Nix(OS). I could go back but I would be very sad.','','','','','','','','','','','','','','','vgo2nix (should migrate to gomod2nix)\r\nnpmlock2nix\r\ntex2nix\r\n','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','True declarative configuration. Every configuration management system I\'d seen before NixOS had gaping holes and flaws. It\'s the only thing that does it right.','Y','','Y','','','Y','','declarative configuration','a real language that can be used to concisely write and maintain multiple machine configurations','','Modules vary a lot in quality/completeness/consistency. A layer like RFC 42 applied consistently would help.\r\n\r\nBetter language support for modules. Being able to \"overlay\" modules. (Also multiple-instantiations of modules, though I haven\'t needed that yet.)\r\n\r\nAll the stuff I said about Nix too.','I used to use ubuntu plus some hacky ansible to do CM, but it was awful. I never want to look at ansible ever again and ','Y','','','','','Y','krops','','','','notion','','',''),(1781,NULL,NULL,'en','919953921',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1782,NULL,1,'en','1299118869','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1783,'1980-01-01 00:00:00',5,'en','1369012906','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanting to share configuration between devices.','','Y','','','','','','','','','Y','','','','','','','Y','','Reproducability','Generations','','Easier dependency managament in packages.','Arch','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Sharing configuration between devices.','','','','','Y','','','Reproducability','Generations','','Easier dependency management in packages.','Arch','Y','','','','','','','','','','sway','home-manager\r\nnixos-hardware','','home-manager should be added to search.nixos.org'),(1784,'1980-01-01 00:00:00',5,'en','1347917535','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','','','RHEL','N','Y',NULL,'I\'m used to use Java for development. Compared to that nix seems to have a non trivial syntax.','Don\'t know. Currently i don\'t have a real use case to use nix beside NixOS. I\'m not 100% sure about the existing tooling. But from my understanding there\'s no easy development package. Like download and play around. You need to collect a set of tools / editors / plugins or your own.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Server Applications via lxd: Mail, Web, etc...','A3','I wanted to get into docker, but it lacked the possibility to really be reproducible. That\'s how I discovered NixOS. I liked the idea quite a lot as previously I was trying to implement some kind of rollback mechanism with btrfs.','Y','Y','Y','','','','','System state by configuration','','','So my main problem of NixOS is the quality of packages. Most of them work well, but only for the most used use cases. There are often scenarios where packages were introduced by someone who isn\'t interested in that package anymore and it get abandoned.\r\n\r\nI think the packages should be somehow separated into packages that are really maintained by a group of people and other packages maintained by the community.\r\nSo actually like Arch linux is handling packages.','I guess ArchLinux in combination with btrfs snapshots for personal development machine and docker for my server.','Y','','','','','','','','','','Sway','','nixops, as it did not support lxd.','It really like to see NixOS evovle in some production ready system so that it can generate more resources in order to provide better package support.'),(1785,NULL,1,'en','527580427','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1786,NULL,1,'en','2124739883','A2','A5','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','','','','OpenBSD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1787,NULL,NULL,'en','699264603',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1788,NULL,3,'en','1711009867','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1789,NULL,1,'en','688283790','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1790,NULL,1,'en','770059125','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1791,'1980-01-01 00:00:00',5,'en','1356584772','A2','A2','male','','','Y','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','This is maybe the only package manager that brings something new with it. Perfect work.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','nix-shell','NixOS, It\'s very easy to configure the system with it. I love it','','Types, it\'s sometimes very hard to find out what should i pass to a function, also it could be very good to have something like Hackage in Haskell','pacman, i didnt even thought that package management can be so cool','','','','','','','','','','','','','','','cabal2nix','','','','','N','I dont think i am good enough to do it','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','it\'s very easy to configure the system with NixOS','I didnt use it, but reproducibility seems very cool','','','Arch linux','','','','','','Y','','','','','xmonad','','flakes','i love you'),(1792,NULL,2,'en','1771258111','A3','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1794,'1980-01-01 00:00:00',5,'en','1520576882','A2','A3','male','','','','','','','','','','','','','','','','','','Y','Y','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','NixOPs. I wanted to have some consistency in my home server setup so tried setting it all up in Ansible. I\'ve used Terraform heavily at work. Ansible was a massive pain of procedural mistakes, resets, re-runs, etc. I spent days and ended up with something I wasn\'t confident would reproduce what I wanted. I decided to give NixOS another go (Had tried before but was too complex) and I started to get it a bit more, sticking purely with the declarative configuration.nix route. I then moved to NixOPs so that I could manage the different VMs and hosts like that. ','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','NixOPs. I wanted to have some consistency in my home server setup so tried setting it all up in Ansible. I\'ve used Terraform heavily at work. Ansible was a massive pain of procedural mistakes, resets, re-runs, etc. I spent days and ended up with something I wasn\'t confident would reproduce what I wanted. I decided to give NixOS another go (Had tried before but was too complex) and I started to get it a bit more, sticking purely with the declarative configuration.nix route. I then moved to NixOPs so that I could manage the different VMs and hosts like that. ','','','Y','','','Y','','Declarative','Nixops','Rollback','Remove all the complex terminology in the documentation and component names. Reinvent all of it into a simple cohesive description that is relatable to new users who\'ve never used any Nix. ','Ansible with Fedora','','Y','','','','','','Y','','','','None. They\'re too confusing to discover.','','The biggest challenge is documentation, which is a difficult challenge as all the terminology is strange and confusing. '),(1795,'1980-01-01 00:00:00',5,'en','1390897138','A2','A5','male','','','','Y','','','','','','','','','','','','','','Y','','','Y','','','Y','','','Y','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','','','','','','','','','','','','','','','','','','apk','','','','','Y','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','','','','','AlpineLinux, VoidLinux, OpenBSD, FreeBSD','Y','','','','','','','','','Y','','','',''),(1796,'1980-01-01 00:00:00',5,'en','1965067802','A5','A4','fem','','Y','','','','','','','','','Y','','','','','','','Y','','','','Y','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','Y','Y','','Y','','','Y','','','Y','','Hermetic / deterministic environments','Infrastructure as code','Manage all devices with same config','Flakes by default! More familiar syntax for the expression language (the colons are weird)! Better macOS support! Docs that are friendly for on-boarding new Nixians! Clearer naming between NixOS, the build system, the package manager, the language, etc.','I\'d go back to my collection of eldritch and arcane hand-rolled bash scripts','','','','Y','Y','','','','','','Y','','','','I\'ve tried stack2nix and cabal2nix *with limited success*','Y','Y','','','N','I\'ve started a few times, but it\'s a lot to clone, and there\'s very little hand holding (\"am I doing this right?\")','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','Consistent environment between macOS and NixOS','Simple systemd','Rollbacks','More learning resources for on-boarding others. Flakes by default.','Ubuntu or Fedora','','','Y','','','Y','','Y','','','XMonad','Online package search, forum, docs, nix-darwin','Lorri, Cachix','Thank you for all of your hard work!! It\'s a very important project that has improved my team member\'s lives considerably :D'),(1797,'1980-01-01 00:00:00',5,'en','422360118','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','','Y','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','Y','','','',''),(1798,'1980-01-01 00:00:00',5,'en','1924984980','A1','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was searching for a way to manage unpackaged software on Ubuntu systems. Then I saw an online post recommending Nix for that purpose. So I used it, saw how flexible it was, and stuck with it ever since.','Y','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','The extensibility of Nix packages provided by the Nix expression language.','The ability to obtain a working development environment for almost any kind of software from its package definition.','The large amount of packages available in the Nixpkgs repository and the ease of adding a new one.','I\'d like to be able to add my own personal Nix flake definition to an existing Git repository without committing it.','Homebrew, Apt, or Yum plus language-specific package managers.','','','','Y','Y','','','','','','Y','','','','node2nix https://github.com/svanderburg/node2nix\r\nbuildGoModule https://nixos.org/manual/nixpkgs/stable/#ssec-language-go','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Shortly after I familiarized myself with Nix, I migrated from Ubuntu for reliable upgrades and rollback. I also liked the fact that Nix/NixOS made it easy to apply bug fixes to packages before they made it to the release. When I was using Ubuntu, I often had to wait until the next major release to receive fixes for bugs that I cared about.','Y','','Y','','','','','The ability to backport fixes before it\'s released in Nixpkgs.','The ability to mix packages from multiple Nixpkgs releases.','Declarative system management that\'s integrated with the package manager.','I\'d like to be able to backport NixOS modules from newer releases.','Debian unstable','Y','','','','','','','Y','','','','Home Manager','',''),(1799,NULL,1,'en','1599683364','A2','A2','male','','','','Y','','','Y','','','','Y','','','','Y','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1800,NULL,2,'en','1526009511','A2','A2','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','Y','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','gaming is lit. WIN11 fucked csgo starting time. 1m till the window opens 1m45s to main menu.... nixos -> stupid fast <3','A1','A colleague told me about nix and I had to try it because it sounded too awesome! everything readonly & manage your pc with a git repo <3 to flakes!\r\ncould not get nix to work correctly under arch, so i thought: fuck it. just install nixos! And after many countless sleepless nights refactoring my config im rocking 930+ commits since January XD','','','','','','','Y','','Y','Y','','Y','','','Y','Y','','Y','','nixos-rebuild build-vm <3','nix flake <3','nixos-rebuild test <3 <3 <3 <3','','i would scream at my PC trying to provision VMs with ansible or reconfigure all programs manually again :(','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','N','not yet :o)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1801,'1980-01-01 00:00:00',5,'en','781566414','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1802,NULL,1,'en','468763842','','','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1804,NULL,1,'en','869482990','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1805,'1980-01-01 00:00:00',5,'en','182441214','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','','','','Portable environments (bit-for-bit reproducible builds not important)','Python package management','Build artefact caching (via derivations in /nix/store)','Remove legacy non-flakes support and associated training material, vastly improve debugging functionality for Nix expression evaluation and learning materials. Add support for non-/nix store paths.','Conda (for Python in production across my research group), Homebrew on Mac','','','','Y','Y','','','','Y','','','','','BuildBot','','Y','Y','','','Y',NULL,'N','N','Not interested for my current use cases; too much reinventing the wheel (especially on systems are also used by other people). If I had to set up and manage a deployment across a large device fleet, I might give it a try.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'custom binary substituters','',''),(1806,'1980-01-01 00:00:00',5,'en','2063839758','A2','A3','male','','','','','','Y','','','','','Y','Y','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','After trying to manage my Linux configuration for years using various git repositories and shell scripts, I stumbled upon Nix from a Hackernews post in 2015 while doing my master\'s thesis. After a couple of failed attempts (Nix was the hardest learning curve of anything CS related I have ever done) I managed to get the hang of it, and have been using it for most of my computers, servers and development environments ever since. ','','Y','','','','','Y','','Y','Y','','','','','Y','','','Y','','Cross-language development environments','','','Nix:\r\nRemove the old CLI and standardize the new one after a couple of rounds of UX fixes\r\nEither stabilize or remove flakes so they aren\'t stuck in a limbo\r\nBetter documentation for builtins and nixpkgs functions, e.g. comprehensive docs.rs style with examples\r\nNix language server\r\nBetter support for packages that change over time (Discord, Steam, Rust overlay)\r\n\r\nEcosystem:\r\nRelease NixOps 2.0 (or announce that it is never coming, which is my current guess)\r\nGet the people behind NixOps, morph, deploy-rs and all the other deployment tools to merge their efforts instead of building multiple half-baked solutions\r\n','No idea, ansible maybe?','','','','Y','Y','','','','','','Y','','','','https://github.com/kolloch/crate2nix (but it is a bit unmaintained)','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','','','','Declarative system configuration','Ability to abstract and compose configuration files','','Better tools to show the state of the system, and available packages / configuration','Debian','Y','Y','','Y','','','','','','','XMonad','','',''),(1807,NULL,1,'en','1950809063','A2','A3','male','','','Y','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','I wanted a nice way to build an SD card image for a raspberry pi with some stuff pre-installed and configured, and NixOS was pretty good for that.','','Y','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','Y','','Managing configuration for many machines but not having to use ansible.','Never having to worry about cache invalidation in my build system, ever.','Getting to use all of the stuff in nixpkgs.','Better dev tooling (debugger, error messages, tools to diagnose cache misses/mass rebuilds','- Ansible\r\n- Docker\r\n- Terraform\r\n- Packer\r\n- Makefiles','','','','','','','','','Y','','','','','','- https://github.com/hlolli/clj2nix\r\n- https://github.com/nix-community/npmlock2nix','Y','','','Copypasting NixOS modules into my repo and changing them (because overlays only work for packages, not modules)','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same reasons as for Nix - declaratively building a raspberry pi SD card image.','Y','Y','','Y','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1808,NULL,1,'en','465286131','A5','A3','fem','','','','','','','','','','','','','','','','','','','','','','','','','Information security','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','https://github.com/svanderburg/node2nix','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1809,'1980-01-01 00:00:00',5,'en','1237450547','A2','A3','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','congruent complexity management','congruent complexity canagement','reproducible builds','make flakes the \"default\"','Gentoo','','','','Y','Y','','','','Y','','','','','','poetry2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','congruent complexity management','congruent complexity canagement','reproducible builds','make flakes the \"default\"','Gentoo','Y','Y','','','','','','Y','','','','https://github.com/Tow-Boot/Tow-Boot\r\nhttps://github.com/tweag/jupyterWith\r\nhttps://gitlab.com/simple-nixos-mailserver/nixos-mailserver','https://github.com/svanderburg/node2nix (because node)','Keep up the good work.\r\nBe honest, be open.'),(1810,NULL,1,'en','526911129','','A2','','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','Y','','','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1811,'1980-01-01 00:00:00',5,'en','415447550','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','I moved to NixOS.','','Y','','','Y','','Y','','Y','Y','','','','','Y','Y','','Y','','Functional and pure - thanks to Nix I live in a declarative world of the NixOS.','Nix is much more flexible / expressive then other DSLs for packaging and system management.','','* Better stack traces and debugging tools.\r\n\r\n* Type system - I want to migrate parts of my configs pure-script as it has now Nix backend.','Lisp on Guix.','','Y','','','Y','','Y','','','','','','','','spago2nix, napalm (I switched from npm2nix - too havy), python2nix.','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','* I switched from Arch (really messy after many years) on my personal computer.\r\n\r\n* I switched from Debian / Ansible (really messy setup after many years ;-)) on my servers.','Y','','Y','Y','','','','Declarative / safe / reproducible system management.','Ability to compile / test the exact configuration on staging or even home machine. ','Flexibility - legacy software and packages still up and running on my servers together with newer software.','Better server deploying story (NixOps didn\'t work for me (after a lot of effort I wasn\'t able to make it work on Hetzner machines) so I\'m using nix-simple-deploy which is simple but heavy solution.','Guix','Y','','','','','Y','','','','','Xmonad','','',''),(1812,'1980-01-01 00:00:00',5,'en','1755345179','A2','A4','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','personal recommendation by Mic92 and fpletz','','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','customizability','reproducability','integrity','Add more nice tooling for Flakes, better CI than Hydra','Guix, Genode, Ansible','','','','Y','Y','','Y','','Y','','Y','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','personal recommendation','Y','Y','Y','Y','','Y','','programmability','consistency: no bitrot','features','properly export some functionality like creating config.system.build.tarball','Guix, Genode','Y','','','','','Y','','','','','sway','Naersk, Fenix, microvm.nix, node2nix','NixOps',''),(1813,'1980-01-01 00:00:00',5,'en','1631974372','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Director of engineering','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Experimenting with Nix Darwin as a way to uniformly setup developers’ machines. ','Y','','','','','','Y','','','','','','','','','','','Y','','Reproducible configurations','Configuration as code','Modularity','Nix support for Windows native (one of our biggest pain points is reproducible configs on windows developers’ machines).','She’ll/ powershell scripts, homebrew/chocolatey. ','','','','Y','Y','','','','','','','','','','Node2nix','Y','Y','','','N','Still learning/understanding nix','N','N','Developers using Linux ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nix Darwin ','','Great work! Documentation is hard to understand as a newcomer since there is a lot of existing but outdated examples using nix-env, pinned packages, channels when it seems like we should be using nix flakes. '),(1814,NULL,1,'en','1092893790','A2','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1815,'1980-01-01 00:00:00',5,'en','159988389','A1','A4','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A3','i like the concept of reproducible...sometime i change my distro...before i know to nix i need to reconfigure my machine everytime i change distro...but not now..\r\nand capability of roolback is brilliant too..there so many reason to use nixos but i cant tell it all','','Y','','','','','Y','','','','','','','Y','','','','Y','','nix-env','rollback','nix-collect-garbage','nothing...','flatpak','','','','','','','','','','','','','','','','','','','','N','i still focus to my job...maybe after i retire i will contribute','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A3','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','','nothing...i already comfortable with nix...nix has fulfill my need for an ideal system management...i\'m very satisfy with nix...event though i\'m not using all the feature...but what i need is already there....big thanks for the team...good job'),(1816,'1980-01-01 00:00:00',5,'en','381587344','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Some FP-minded colleagues sold me on the declarative semantics. Starting testing NixOS in a VM and gradually installed it on all my machines within a year. Learning NixOS was also made me go from passive Linux user to enthusiast.','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','nix-shell','home-manager','NixOS','I have not yet started Flakes since it is marked as \"experimental\", but I am eager to get rid of channels, pinning and I seldom use nix-env anymore. I would love a proper dotnet2nix tool so that I could package the software that I use at work.','Aptitude','','','','','','','','','','','','','','','https://github.com/NixOS/cabal2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Some FP-minded colleagues sold me on the declarative semantics. Starting testing NixOS in a VM and gradually installed it on all my machines within a year. Learning NixOS was also made me go from passive Linux user to enthusiast.','Y','','','','','','','Not being afraid of losing/breaking my machine','Configuring services','https://github.com/NixOS/nixos-hardware','I have not yet started Flakes since it is marked as \"experimental\", but I am eager to get rid of channels, pinning and I seldom use nix-env anymore.','Ubuntu','Y','','','','','','','','','','i3wm','home-manager','nix-env','Thanks for making this fantastic thing :)'),(1817,NULL,1,'en','1217425270','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1818,'1980-01-01 00:00:00',5,'en','1779950145','A5','','','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','','','','Y','','','Y','','','','','Y','Y','','Y','','Declarative development environments','Package management','','','','','','','','','','','','','','Y','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','Declarative system specification','','','','Fedora Silverblue with flatpaks and RPMs.','Y','','','','','','','','','','Sway','nixos.wiki, home-manager','',''),(1819,'1980-01-01 00:00:00',5,'en','1141696853','A5','A3','-oth-','Nonbinary ','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','The “purely functional” marketing got me curious, and then I fell in love with the reproducible and declarative model.','','Y','','','','','Y','','Y','','','Y','','','Y','Y','Y','Y','','Declarative configuration','Hermetic package management','Atomic package management','Better tutorials and documentation','Probably something like Fedora Silverblue?','','','','Y','Y','','','','','','','','','','','','Y','','','N','Bad habits, difficulty curve of becoming adept at the language','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','See my comment on nix','Y','','Y','','','Y','','See answers for nix','','','See answers for nix','See answers for nix','Y','','','','','','','','','','i3','fennix, direnv, home-manager','',''),(1820,'1980-01-01 00:00:00',5,'en','435298930','A3','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','','','','','','Y','','Y','Y','','','','','','','','','','','Y','','','','Y','','Y','','','','','','Y','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','','','','','','Y','','','','','','','','','','pure xmonad.','','',''),(1821,'1980-01-01 00:00:00',5,'en','405391505','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','','','','','Y','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Just needed a way to do dev-env that worked, contrary to docker','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','','Y','','Reproducible builds ','declarative builds and environments','Mutable but controlled servers','A replacement for channels that is better integrated and does not depends on git','No idea','','','','','','','','','','','Y','Y','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A4','Y','','','','A3','Needed a way to control deployment mutably while keeping the base machine immutable.','','','','Y','','','','Configuration rebuild','','','A better way to configure the nix daemon','No idea','Y','','','','','Y','','','','','','lorri','Cachix\r\nnixops',''),(1822,'1980-01-01 00:00:00',5,'en','1963952586','A2','A5','male','','','','','','Y','Y','','','','','','','','Y','','','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','Y','','Y','','','','','','','','','N','lack of knowledge, but I\'m working on it','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','Fedora and Ansible','Y','','','','','','','','','','Pantheon','','',''),(1823,NULL,1,'en','1119921270','A5','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Ubuntu was a pain to administrate. A coworker told me nix was declarative and reproducible.','Y','Y','','','','','Y','Y','Y','','','Y','','','Y','Y','','Y','','Reproducibility','Declarative','','Add: Declarative virtual machines.\r\nChange: Unify essential community projects (nix-darwin, home-manager) with the nixpkgs repository.','Pain, docker, and Ubuntu.','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Ubuntu is difficult to administrate. A coworker told me NixOS was excellent.','Y','Y','Y','','','Y','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1824,'1980-01-01 00:00:00',5,'en','474266424','A2','A2','male','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I saw a talk about NixOS and distro hopped :D. I had no prior knowledge of Nix. I did not even try to install it on Arch.','','','','','','','Y','','Y','','','','','','Y','','','','','Os management','Installing packages','creating environments','Don\'t be afraid to remove old features and code. I understand it will make some people angry, but the alternative is accumulating ways to do things and make things way more confusing.\r\n\r\nFor example, when the new cli becomes stable, you should remove the od `nix-` commands in a month or two.','Flatpak on Arch','','','','','','','','','','','','','','','','','','','','N','I did like a code review, but I found the whole process a little overwhelming. If there is a single \'If you want to contribute, click here, we will explain\' link, I did not find it.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I saw a talk about it on YT and distro hopped immediately :D','Y','','Y','','','','','','','','There should preferably only be one thing to do things. \r\nIt is great you have manual, but it could be even better. The wiki is not as high quality. ','Arch','Y','','','','','','','Y','','','','','',''),(1825,'1980-01-01 00:00:00',5,'en','1404878929','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','declarative configuration ','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','declarative configuration','rollback configuration','','remove integration between nix and shell scripts for the build. Using scheme seems more elegant','guix','','','','','','','','','','','','','','','','Y','','','','N','long list of open tasks/pull requests\r\ngithub','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','','guixsd','','Y','','','Y','','','','','','i3wm','','nixops','great job, keep going!'),(1826,NULL,1,'en','154429033','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1827,NULL,NULL,'en','2072446121',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1828,NULL,1,'en','1372101721','','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1829,'1980-01-01 00:00:00',5,'en','1613429181','A6','A4','male','','','Y','','','','Y','Y','','','Y','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','From Redhat, Debian, Gentoo, Arch, Ubuntu, Mandrake, SuSE, Mint, Manjaro, Fedora, Slackware, FreeBSD, ...\r\nI start with using GoboLinux. Then I heard NixOS, and in love with it. I really feel at home using NixOS rather than others. From here of course then I use Nix.','','Y','','','','','','','Y','','','','personal desktop and laptop','Y','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','I cannot found good documentation guide of WORKFLOW on how to do so.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','From Redhat, Debian, Gentoo, Arch, Ubuntu, Mandrake, SuSE, Mint, Manjaro, Fedora, Slackware, FreeBSD, ...\r\nI start with using GoboLinux. Then I heard NixOS, and in love with it. I really feel at home using NixOS rather than others.\r\nI think someone with knowledge of both OS administration and software development, will easily apprciate NixOS.','','','Y','','','','','','','','Add section documentation/guide of collection of recomended \'workflows\' on how to do things in NixOS.\r\n\r\nAdd option to change title for grub boot selection. ','I am not sure, I stop trying other distro after using NixOS. I like FreeBSD.','','','','','','','','','','','xmonad','nix-shell','','I need guide on workflow how to pickup some software/application that already/or not already in nixpkgs, how to change, bug fix, add features to the software and compile; and then update to the nixpkgs.\r\n'),(1830,'1980-01-01 00:00:00',5,'en','1146916487','A5','A4','male','','','','','','Y','Y','','Y','Y','Y','','Y','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Needed to squeeze more life out of an old MacBook Pro. ','','Y','','','','','Y','Y','','Y','','Y','','Y','Y','','','Y','','Declarative','Immutable ','Functional','Better secrets management. ','Arch','','','','','Y','','','','','','','','','','node2nix','Y','Y','','','N','Time and experience. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Wanted to squeeze more power out an old MacBook Pro. ','Y','Y','','Y','','Y','','Declarative','Immutable ','Functional ','Better secrets management. ','Arch','Y','Y','','','','','','','','','EXWM','','',''),(1831,NULL,1,'en','796478279','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1832,NULL,1,'en','105511790','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1833,'1980-01-01 00:00:00',5,'en','1474076632','A2','A3','male','','','','','','Y','Y','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','It seemed like the obvious way to go.','','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','','Y','','Declarative, sandboxed, reproducible builds and environments','Easy deployment using nix-copy','Distributed builds and build caching','Magically fix secrets.\r\nAdd go-sum hashes (and maybe a plugin system for other hashes).\r\nRemove floats from nix syntax (keep fromJSON floats).\r\nMake lists comma-seperated.\r\nMake evaluator faster (graalVM??).\r\nRemove nix-env -i.\r\nRemove nix-builder users, use user namespaces.\r\nDebug remote builders and ssh substituters (to be faster).\r\nDebug nix-copy to be more resilient to bad connections.','Kubernetes, docker, ansible.','','','','Y','Y','','Y','','','','Y','','Y','','nix-npm-buildPackage (https://github.com/serokell/nix-npm-buildpackage)\r\npoetry2nix (https://github.com/nix-community/poetry2nix)\r\nhaskell.nix (https://github.com/input-output-hk/haskell.nix)\r\nbuildRustPackage (nixpkgs)\r\ncabal2nix (nixpkgs)','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I used NixOS before Nix!','Y','Y','Y','Y','','Y','','Declarative system configuration','Rollbacks','Atomic upgrades','Remove nscd\r\nAdd support for system portable services for easier granular deployment\r\nBetter support for nvidia/proprietary drivers (also CUDA, OpenCL)\r\nMake it easier to optimize system closure size\r\nFix weird glibc version mismatch bug\r\nIntegrate home-manager into nixpkgs\r\nMake pipewire the new default\r\nFix various ACME certificate bugs','Arch? Void? Debian? With ansible or puppet or salt.','Y','','','','','Y','','','','','sway','home-manager\r\nnixfmt\r\nnix-top\r\ncachix\r\nnix-diff\r\nemacs nix-mode','NixOps, it was unmaintained and too slow, and the state was too hard to keep in sync.',''),(1834,'1980-01-01 00:00:00',5,'en','113552192','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My buddy Justin recommended it to me and now I just can\'t get enough of it ;)','','','','','','','Y','Y','Y','','','','','','Y','Y','Y','Y','','Packages count and ease of packaging software','declarative configuration','I could note features like purity and so on but in comparison everything else is less relevant and more or less falls under category of \'fun\'','I strongly believe that derivation builders and modules system needs an update, not because what we currently have is bad or something but because we could do so much them so much better','maybe guix or ansible+jsonnet','','','','Y','Y','','','','','','Y','','','','dream2nix, node2nix, and something for cargo. Currently not in a place to check dependencies of projects','Y','Y','','','N','I contribute only if that\'s the easiest solution because contributing to nixpkgs is bothersome since PR\'s take a while and then you need to maintain whatever you define. Also, NixOS community does not really provide any simple automagic options to update packages which is annoying (yes, I am aware of nixos-update/nix-update, I\'d like something in CI that would notify me if update is available and that could be quickly tested/PR\'ed)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same story as with Nix - my buddy Justin recommended it to me and I felt in love with it','Y','','Y','','','Y','','declarative configuration','cross compiling using binfmt','','Modules system needs an update','Guix/Arch','Y','','','','','Y','','','','','i3 and sway, depending on machines','flake-utils/flake-utils-plus/devshell/home-manager','NUR/musnix/nixpkgs-mozilla/nixpkgs-wayland',''),(1835,NULL,2,'en','713923423','A2','A3','male','','','','','','Y','Y','','','Y','Y','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','from haskell community it was talked about.\r\nDidnt really understand it, nor took the effort to learn it for about a year or two.\r\nBut then a friend wanted to try it, and I thought, I should do it first.\r\nAnd I loved it, been using it daily since.\r\nThe friend still haven\'t tried it, and that is 2 years ago.','','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Declarative system configuration','Declarative development environment','','I would like LSP for nix, so I could go to definition etc.\r\nAnd I would like better error messages','guix or docker','','','','Y','Y','','','','','','Y','','Y','','nuget-to-nix\r\n','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1836,NULL,1,'en','1057091829','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1837,NULL,4,'en','135806434','A2','A3','male','','','','','Y','','Y','','','','Y','','','','','Y','','Y','','Y','Y','','','Y','','','','','Y','','','N','Y',NULL,'The learning Curve','I am Planning to use it again, since I am convinced that it is a superior package manager.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','The next time I find the time I will.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1838,'1980-01-01 00:00:00',5,'en','812124341','A5','A2','male','','','','','','','Y','Y','Y','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I started using Nix because I switched to NixOS. It was only then that I realized the words \"functional\", \"declarative\", and \"package management\" really should\'ve stood out to me 5 years ago...','','','','Y','Y','','Y','','Y','Y','Y','Y','','','Y','Y','Y','Y','','Declarative environment management','Build and package software','Declarative system management','Remove all the non-nix-command stuff and finalize nix-command and flakes. I\'d make it so the Nix store could be anywhere and have it follow the FHS when installed system-wide (just a /var/nix would be fine honestly).\r\nAs much as I like strong type systems, I\'d leave my magic wand holstered for Nix unless we want to start scripting in it - most derivation errors are caused by the build system or similar.','Guix (ok that\'s cheating), but language-specific package managers such as cargo, yarn, conan, poetry + flatpak/snap + dockerfiles?','','Y','','Y','Y','','','','Y','','Y','','','','poetry2nix (https://github.com/nix-community/poetry2nix), yarn2nix (in nixpkgs)','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Was using Bedrock Linux with Arch + Gentoo + Ubuntu and it was naturally a gigantic mess. Switched to NixOS, got into Nix for all my development needs, and never ever looked back.','Y','','Y','Y','','Y','','Declarative system management','Immutability','Modules','I would integrate home-manager (or just some way to have unprivileged users declaratively manage their home dirs), add secure boot support, and make /etc immutable/remove it entirely.\r\nInitWare support and/or the ability to use non-Linux kernels would be neat, too, but not absolutely necessary.','GuixSD is cheating again; probably Fedora Silverblue, Gentoo, or Bedrock, depending on the system.','Y','','','Y','','','','','','','River','nix2container (https://github.com/nlewo/nix2container), flake-utils-plus (https://github.com/gytis-ivaskevicius/flake-utils-plus), flake-utils (https://github.com/numtide/flake-utils)','NixOps',''),(1839,'1980-01-01 00:00:00',5,'en','1825248993','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducibility','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Reproducibility','Build and configuration automation','Caching','Add easily searchable documentation automatically generated from code and better editor tooling',':(','','','','Y','','','Y','','','','','','','','cabal2nix and node2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Declarative system','Y','Y','Y','Y','','Y','','Declarative system configuration','Easy to patch system packages','Clean system environment (no unnecessary things in PATH)','User version of nixos-rebuild, similar to homemanager except that generated configuration doesn\'t pollute ~.','Idrk Arch?','Y','Y','','','','Y','','','','','xmonad','','','Thanks for improving my life :)'),(1840,'1980-01-01 00:00:00',5,'en','1030710346','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I started using Nix on macOS for setting up development environments. This was initially because I was using Docker for running databases, and this was beginning to become a drain on my laptop\'s power. I setup a Nix shell to use for work projects and ran the databases directly using foreman, which was a huge speedup. I was sold on the promise of Nix at this point. A while later I decided I wanted to switch to Linux, so I bought a new ThinkPad and installed NixOS. I\'ve been using that as my daily driver ever since, and it\'s fully replaced macOS for my work and personal projects. ','Y','','','','','','Y','Y','Y','','','','','','Y','','','Y','','Reproducibility','Transparency - I can look into a module or derivation\'s source code and understand exactly what it\'s doing to my machine','Abundance of packages','Better documentation - I think it often assumes a level of Linux or domain-specific knowledge which I don\'t have. It can be very difficult starting out with Nix and grokking its core ideas.','GNU Guix','','','','Y','Y','','','','','','Y','','','','clj2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I wanted to switch to Linux from macOS.','Y','','','','','','','Reproducibility','Transparency','','','GNU Guix or macOS','Y','','','','','','','','','','Sway','emacs-overlay\r\nnixos-hardware\r\nflake-utils','Morph','NixOS has the potential to be the most user-friendly Linux distribution. The way that it\'s possible to enable complex configurations with a single setting, and for this to create a transparent and reproducible system derivation, creates a lot of possibilities for helping end users to setup a working system. I think that Nix is the future, and the way that every package manager and OS should work, but I\'ve had trouble convincing others to try it out. '),(1841,NULL,NULL,'en','620942042',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1842,'1980-01-01 00:00:00',5,'en','837275299','A5','A3','male','','Y','','','','','','','','','Y','','','','Y','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Haskell is a natural gateway into the functional lifestyle.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Simplicity of machine management and configuration (I\'ve never felt as comfortable tweaking my GNU/Linux machines until NixOS)','Easy driver management (excluding NVIDIA GPUs, which is miserable anywhere)','System configuration rollbacks','Flakes don\'t look very appealing to me. Compared to the basic configuration.nix and hardware-configuration.nix files, I would like to see some sort of reconciliation between them. As of right now, I\'m hesitant to convert any of my machines into flake machines.','Fedora or Manjaro','','','','Y','','','','','','','Y','','','','n/a','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Haskell and functional programming is a gateway.','Y','Y','Y','Y','','','','','','','Remove Flakes.','Fedora or Manjaro','','Y','','','','','','Y','','','','','Flakes.','I love NixOS. :)'),(1843,'1980-01-01 00:00:00',5,'en','1398028282','A2','A3','male','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','','','Y','','','Y','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','https://github.com/nix-community/naersk\r\nhttps://github.com/tweag/gomod2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','Y','','','','','','','','Y','','','','','','','','','i3','home-manager','',''),(1844,'1980-01-01 00:00:00',5,'en','1712827015','A2','A1','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I really got interested why so many people said that NixOS/Nix is so great I decided to try it','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','','','Multiple versions','Atomic upgrades and rollbacks','Garbage Collection','Nothing Nix is perfect for me as it is','Guix :(','','','','','Y','','Y','','','','','','','','Dream2nix','Y','','','','N','I\'m still new to Nix and I don\'t have that big knowledge of it but when I will have a stable knowledge of it I will surely contribute to Nixpkgs','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','As I said before I got really interested why people said it\'s so good and awesome so I decided to try it myself and I love it','Y','','Y','','','','','Rollbacks','Transparent source-binary deployment','Managing build environments','I don\'t think I would change anything it\'s perfect as it is at least for me','If NixOS didn\'t exist I would use openSUSE Tumbleweed','Y','','','','','','','','Y','','','home-manager','None','NixOS and Nix are great!'),(1845,'1980-01-01 00:00:00',5,'en','1655502100','A2','A3','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','Laptop was having troubles with disk and saw NixOS related information on the Chaos Computer Conference. Was interested and just went for it, never looked back since. Even though the learning curve was definitely steep, I did enjoy learning.','','Y','','','Y','','Y','','','','Y','','','','Y','Y','','Y','','Reproducible system, NixOS','Easy patching','Very configurable, customization options','The steep learning curve and difficulty to get started.','Imperative package management, probably. Maaaaybe something like fedora silverblue(?) (the one with the immutable \'package store\' as well, using bind mounts or something like that)','','Y','','Y','Y','','Y','','','','','','','bamboo','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Same as nix story :)','Y','','','','Y','','','Reproducible development machine','Easy patching of system packages','Great customization possibilities, lots of pre-made templates / nixos options','Steep learning curve.','Imperative OS or maybe something like fedora silverblue','Y','','','','','','','','Y','','phosh / plasma mobile','nixpkgs-review, nix-du, nixpkgs-fmt','','Thanks for working on NixOS marketing. Hopefully this survey helps getting a good overview 😁'),(1846,NULL,2,'en','699074529','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Just running my machine','A3','I got tired of reinstalling my other distros because I fucked them up','Y','','','','','','Y','','','','','','','','','','','Y','','Reproducible','Bleeding edge','Fast moving','Better UX for the cli tools\r\nBetter TL;DR docs\r\nEasier to run other distros packages','Manjaro Linux','','','','Y','Y','','','','','','','','','','','','Y','','','N','I\'ve contributed like once, but it\'s hard to know what to do.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got tired of fucking up my other systems to reinstall','Y','','','','','','','Reproducible','Bleeding-edge','Fast moving','','','','','','','','','','','','','',NULL,NULL,NULL),(1847,'1980-01-01 00:00:00',5,'en','1937979097','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started as an alternative to brew on OSX. I liked the ideal of functional package managment, I started using it along side Ubuntu\'s package manager as well. That prior experience lead me to try NixOS which has been my main OS on my personal machines since.','Y','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Declarative dependencies','Relative ease of installing something outside the stable/unstable channels','Ability to use multiple different versions of software easily (e.g. node, python, go etc)','the language, it\'s confusing.','brew on OSX\r\nNative pkg manager on linux','','','','','','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Started as an alternative to brew on OSX. I liked the ideal of functional package managment, I started using it along side Ubuntu\'s package manager as well. That prior experience lead me to try NixOS which has been my main OS on my personal machines since.','','','Y','','','','','Declarative system configuration','Fearless roll backs','huge set of packages','how painful it is when the first package you want isn\'t avaliable','arch or ubuntu','Y','','','','','','','','','Y','','','','I love the concept, it does feel like the ecosystem is in a cambrian explosion & the complexity/recommeneded happy path will need to pared down before there\'s wide spread adoption.'),(1848,'1980-01-01 00:00:00',5,'en','643198152','A2','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','Y','','A3','Reproducible builds.','','','','','','','Y','Y','Y','','','Y','','','Y','Y','','Y','','Reproducability','','','Replace the DSL with a Lisp dialect','Guix','','','','','Y','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Reproducible systems. Declaring the system environment in text files.','Y','','Y','','','','','Reproducible system environment','','','','Guix','Y','Y','','','','','','','','','Emacs on top of Sway slave','','',''),(1849,'1980-01-01 00:00:00',5,'en','828740332','A2','A2','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Friend recommended it to, i played around with reproducible system configuration before. Arch and Void, but it didnt really work out obviously.','','Y','','','','','Y','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Containers','NixOS','Security of builds','Nickel','Arch or fedora silverblue matbe','','','','Y','Y','','Y','','','','','','','','','Y','Y','','','N','Laziness','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Same as Nix','Y','Y','Y','Y','','Y','','Can\'t say','Can\'t say','Can\'t say','The bash hell','Fedora silverblue or arch','Y','','','Y','','','','','','','xmonad','NixNG','',''),(1850,'1980-01-01 00:00:00',5,'en','1091210720','A5','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','It was hyped up in online forums, I thought that the configuration was cool and liked the idea of nix-shell. I was led to believe packages could be configured Gentoo style which evidently isn\'t the case but at this point I\'m preferring the nix configuration more than the Gentoo use flags, even if I\'d kill to have them in nix as well.','','','','','','','Y','','','','','','','','Y','','','Y','','Declarative configuration','Declarative environment management','Quickly updated and wide range of packages available','There seems to be a bottleneck in the decision making process (which is relatively understandable for a large project), as few rfcs seem to actually make it past the discussion stage.\r\n\r\nI think that if nix modules (https://cfp.nixcon.org/nixcon2020/talk/K89WJY/) were finally implemented with the option of setting global flags for packages, the system would be perfect. Many of my pain points with nix are those addressed in the presentation, and since nix is already a source based package manager, adding more control over packages would make Gentoo as a distro irrelevant. As a nixos user, use flags are the one killer feature I miss, and they could be added with no negative implications to the average binary loving individual.\r\n\r\nIn the least, any update on the talk would be great- it\'s been tough holding my breath when I havent heard if nix modules will even ever be a thing.','Gentoo with docker for development environments.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','Lack of faith that my contributions would be accepted. I\'d love to work on the nix module stuff as outlined above (https://cfp.nixcon.org/nixcon2020/talk/K89WJY/) but the lack of updates on that particular idea and the backlog of far simpler pull requests in the nixpkgs repo makes me hesitate, especially since such a change will likely involve a slow rfc process, which is another gripe that I outlined above.\r\n\r\nif any sort of roadmap was established, I would think that potential contributers such as myself would have a much clearer idea on what we could work on that would be accepted. I\'m not as interested in small packaging PRs as I already maintain my own NUR repo, and I suspect the software it encompasses would be too niche to fit in the main repo.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Same as why I started using nix, nixos seemed like the logical distro to choose since it was focused on the nix package manager.','Y','','','','','','','Declarative configuration','Rollbacks','Ability to have root on tmpfs','My gripes about nixos are based upon my gripes with nix, nixos is great but it\'s current problems lie within nix, in my eyes.','Gentoo with docker for managing dev environments','','','','','','','','','','','Sway','','','I hope my review doesn\'t seem too critical - I enjoy nix and nixos, and would love to contribute to it, but am a little turned off by some of the minor issues that I outlined in the survey. I hope that some of my concerns will be resolved, but either way keep up the good work!'),(1851,NULL,4,'en','865257493','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(1852,NULL,1,'en','892211346','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1854,'1980-01-01 00:00:00',5,'en','1835642728','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','','Y','','','','','','','','','','','','','','','','','Y','','Y','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','','',''),(1855,'1980-01-01 00:00:00',5,'en','1354532269','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Explicit configuration of the system, making sure everything is self-contained, nix-shell for development','','','','','','','Y','','','','','','','','Y','Y','','Y','','Declarative configuration','nix-shell for development','home-manager','Make it even easier to grasp all of how to write files for derivatives, do overlays, etc.','Arch Linux','','','','','','','','','','Y','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','See section before. I thought the former question were about NixOS :)','Y','','','','','','','','','','','','Y','','','','','','','','','','i3','home-manager','','Awesome thing, thank you so much for putting all your efforts into this!'),(1859,'1980-01-01 00:00:00',5,'en','1847138035','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I started using Nix as I switched my daily driver to NixOS.','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','Y','','Reproducibility','Being declarative','Dev environments','I would make flakes stable!\r\nI would improve the UX of Nix for CI/CD.\r\nI would make the language support better.\r\n\r\nIf I would remove something it\'d nix-env, but that mostly because I\'ve never had a reason to use it. So maybe it\'s useful for other users.','I don\'t know? Some scripts and docker.','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Read about it, and I were immediately intrigued. Tried NixOS, and while i struggled with setting it up, but in the end I were successful in doing so. I had to learn tons of nix specific stuff, which of course was frustrating at times. Still I kept on going! Prior to using NixOS I had used both Arch Linux and Gentoo as a daily driver, so I think I had a good starting point. And still it was a fairly steep learning curve.','Y','','','','','','','Reproducibility','Declarative','Configurable','I would make the CLI more similar to that of Nix flakes (remove/rename nix-rebuild).','Maybe Arch, Fedora or Ubuntu.','Y','','','','','','','','','','Sway','','',''),(1857,'1980-01-01 00:00:00',5,'en','896901445','A2','A3','male','','','','','','','','','','','','','','','','','Y','Y','','','','Y','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','well, it\'s been a perfect fit for what we were looking for :)\r\n\r\nunlike RH ecosys w/ Ansible :D','','Y','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','Y','','','','','','EL clones + Ansible :(','','','','','','','','','','','Y','','','','','Y','','','','N','not enough spare time on my hands :(\r\n\r\nbut it\'s not like we need any major changes in pkgs thanks to overlays','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','uh sry it\'s the same story as w/ Nix, we\'re in it for the whole package','Y','Y','Y','Y','Y','Y','','','','','','','','','','','','Y','','Y','Y','','','','',''),(1858,'1980-01-01 00:00:00',5,'en','653393777','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','N','N','Easy GUI to do everything.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','easy GUI to do everything',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1860,'1980-01-01 00:00:00',5,'en','1874178058','A2','A2','-oth-','Non-binary ','','','','','','Y','','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Config Management \\o/','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','','Y','Y','','','','','','Ansible','','','','Y','Y','','','','','','','','','Drone','','Y','','','','N','Lack of Knowledge (but I\'m working on it)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','Y','','Y','','','','','','','Y','Y','Y','','','','','','','','Sway','','',''),(1861,'1980-01-01 00:00:00',5,'en','2026700932','A5','A4','fem','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I wanted to use different versions of GHC for different projects and since then I have used it for all kinds of things.','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','Y','','Sandboxed packaging','Per-project development environment definitions (nix shell and flakes)','NixOS system configuration building for Amazon machine images','','Guix or move back to FreeBSD','','','','Y','Y','','','','Y','','','','','','yarn2nix, cabal2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I wanted a new distro when I started using Nix so I just used NixOS','Y','Y','','Y','','','','','','','','GuixSD or FreeBSD','Y','','','','','Y','','Y','','','','','NixOps, lorri',''),(1862,'1980-01-01 00:00:00',5,'en','303339722','A2','A4','male','','','','','','Y','','','','','Y','Y','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started using Nix together with NixOS.','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Solves dependency hell','Isolation of components','Atomicity of builds','Better tutorials for common problem solving. At the moment I often have to search in other peoples\' nix files on github to solve a specific problem.','decpac','','','','Y','','','','','','Y','Y','','','','node2nix https://github.com/svanderburg/node2nix\r\ncomposer2nix https://github.com/svanderburg/composer2nix','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was interested in the idea of declarative approach to system configuration. I\'ve read some articles about NixOS and decided to try.','Y','Y','Y','Y','','Y','','Atomic builds','Reproducable builds','Rollbacks','Probably some GUI for components and options.','Arch','Y','Y','','','','','','','','','i3wm','','nixos-container',''),(1863,'1980-01-01 00:00:00',5,'en','676857257','A6','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A coworker started using it and was so enthusiastic that their machine was reproducible using code and I was excited about it all. So I started using it and have never looked back. We started using Nix for managing dependencies at work and I started using NixOS as my primary OS. And it has been a great experience so far!','Y','Y','','Y','Y','','Y','','','','','','GitHub Codespaces','','Y','Y','Y','Y','','reproducible environments','reusability of already built artifacts and explicitly declaring what is required without any assumptions','','add better error messages and more documentation about how to use Nix and make it easier for people to adapt','language dependent package managers or Bash scripts to manage my system','','Y','','Y','Y','','','','','','Y','','','','node2nix, cabal2nix, poetry2nix, bower2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It\'s the same story as starting to use Nix. I wanted to get more out of it without restricting myself to using only Nix','Y','','','','','','','extensible and reproducible and easy to setup a new machine in minutes','rollback to a different generation','lot of features are settings that generate config files as required by different programs','','Arch','Y','','','','','','','','','','i3','','',''),(1864,NULL,1,'en','950240850','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1865,'1980-01-01 00:00:00',5,'en','1760267610','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(1866,'1980-01-01 00:00:00',5,'en','604520135','A1','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','N','Y',NULL,'home-manager didn\'t support latest nix version','home-manager support support latest nix',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','when nixos support latest nix',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','home-manager',''),(1867,'1980-01-01 00:00:00',5,'en','328583343','A2','A3','male','','','','','','','Y','','','Y','Y','Y','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I like the idea of having files that describe my setup. Dotfiles for software I use are nice, but NixOS takes it to the next level by allowing me to describe the OS setup.','','Y','','','','','Y','','','','','','','Y','Y','Y','','Y','','Text config','Replicable','Minimal','Better docs with more examples!','Probably something like Arch Linux and shell scripts for automating the setup.','','','','','','','','','','','','','','','','','','','','N','Haven\'t had a chance.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Needed a real OS for developing software while on Windows. So I\'m running NixOS on a virtual machine.','Y','','','','','','','Same','as','for Nix','Same as for Nix','Same as for Nix','','','','','','','None yet, but heard NixOps is nice. Would be cool to set it up on my web server.','','','','AwesomeWM with custom config','','','Thank you for your work.'),(1868,NULL,1,'en','301848776','A2','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1869,'1980-01-01 00:00:00',5,'en','2099108025','A2','A2','male','','','','','','Y','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got introduced to Nix at my workplace, where we started a project to replace our \"artisanal\" self-written build system with something more robust, which turned out to be Nix. Ended up liking it and started using it personally as well.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','Actually working pinning (i.e. \"if it builds once it stays building\")','Full isolation of different development environments','On-the-fly package installation with `nix-shell -p` for quickly trying out software','I would magically add a documentation system that allows writing documentation inline with the code, maybe similar to Python\'s.\r\nThe Nix and Nixpkgs manual are useful resources, but I still often find that to e.g. figure out what arguments a function actually supports I have to go look at the function\'s source, which is not always easy to find.','Probably the language-specific isolation tools I was using before (rbenv, pyenv etc)','','','','Y','','','','','','','Y','','','Semaphore CI','Bundix (https://github.com/nix-community/bundix)\r\n','Y','','','','N','Most of my changes are fairly specific and/or hacks, so they probably won\'t be useful upstream.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(1870,'1980-01-01 00:00:00',5,'en','2002611758','A2','A2','male','','','Y','','Y','','Y','','','','Y','','','','','Y','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','','Y','Y','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','Y','','','','','','krops','','','','i3','','',''),(1871,NULL,NULL,'en','1774250968',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1872,'1980-01-01 00:00:00',5,'en','1406613867','A2','A3','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','','','','','','','','Y','Y','Y','Y','','','Y','','','Y','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','','','','','','Y','','','Y','','','','','','','sway','','',''),(1873,'1980-01-01 00:00:00',5,'en','1850392199','A2','A3','male','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I think I saw a tweet about it, and I looked into Nix, and saw that it was the most reasonable approach to dependency management that I\'ve ever seen. I\'ve used it to set up my services here at home.','','','','','','','','','Y','','','','','','Y','','','Y','','Reproducible system configuration','Reproducible package management','Development','Definitely the language. It is difficult to understand existing configurations, and how they can be extended or modified.','I\'ve been interested in seeing if nickel-lang would make NixOS more approachable for me. It\'s hard to say so early though.','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','It seems far too complicated due to the language and size of the repository.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Tweet -> Research -> Reformat pipeline, I suppose. I use it for personal Linux laptops.','','','Y','','','','','Reproducible system configuration','Reproducible packages','Development','Language alternatives to Nix, such as Nickel, but using the same underlying infrastructure, I suppose.','Ah... no idea. Probably just some distro like Ubuntu or something.','Y','','','','','','','Y','','','Sway','','','I really love the work you do. I just wanted to say thanks.'),(1874,'1980-01-01 00:00:00',5,'en','1017783418','A1','A3','male','','','','','','','Y','Y','','Y','Y','','','Y','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','setting my PC','A2','I like Haskell. And I realized that a lot of Haskellers are using Nix. So I\'ve started to use it.','Y','Y','','Y','','','Y','','','','','','','Y','Y','','','Y','','NixOS (Declarative system configuration/management)','Sharing the development environment among my team','Fearless updates','Import some features from Home Manager for managing my dotfiles and installing Spacemacs.\r\nI know Home Manager is popular and maintained well but I care it is just a community\'s one not an official.','Ansible, Docker','','','','','','','','','','','','','','','niv https://github.com/nmattia/niv\r\nnix-direnv https://github.com/nix-community/nix-direnv','Y','','','','N','Fear of exposing my imcompetence. (So I\'ve never contributed any other OSS)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','For a long time, I\'ve explored the best managing system configuration tool.\r\nWhen I find out Nix/NixOS, my exploring was end.','Y','','','','','','','NixOS (Declarative system configuration/management)','Sharing the development environment among my team','Fearless updates','Import some features from Home Manager for managing my dotfiles and installing Spacemacs.\r\nI know Home Manager is popular and maintained well but I care it is just a community\'s one not an official.','Ansible, Docker','Y','','','','','','','','','','Sway','','','I\'m so happy I found Nix. Thank you!'),(1875,'1980-01-01 00:00:00',5,'en','479707069','A2','A2','male','','','','','','','','Y','','','','Y','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Started with Nix with NixOS by configuring my personal linux desktop and remote server(hosting personal website, mail server etc.), and use it regularly when starting new projects for installing necessary dependencies.\r\nStayed for:\r\n- Declarative configuration w/ version control\r\n- Reproducibility\r\n- Explicit dependency management\r\n','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','','','','','Arch linux package manager or Docker','','','','','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','bspwm, dwm, awesomewm, sway','nix-index','',''),(1876,'1980-01-01 00:00:00',5,'en','1609046423','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A5','Largely theoretical reasons – the dependency management system seemed to match what I thought it should be like. I think I was also having difficulties with Arch configuration at the time.','','','','','','','Y','','','','','','','','Y','Y','','Y','','Predictability and reliability of what building a package will achieve','Declarative package management','Reasonable package description format (nixlang)','Add: a standard system for *version* management based on packages\' stated version constraints, that would compile down to something reproduceable.\r\nRemove: some of the redundant ways of building, e.g, Haskell packages.','Guix, or maybe just the plethora of language-specific package managers','','','','','','','','','','','','','','','cabal2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','Personal, every-day OS','A5','Started using it to use Nix.','','','','','','','Personal computer','Declarative configuration','Usually works quite well, reliable (better than Arch, for example)','','','GuixSD or Fedora','Y','','','','','','','','','Y','LXQt, XMonad','None (I\'m not really aware of any that haven\'t been asked about already)','None (I\'m not really aware of any that haven\'t been asked about already)',''),(1877,NULL,1,'en','692515480','A2','A2','male','','','','','','','','','','Y','','Y','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1878,'1980-01-01 00:00:00',5,'en','460635681','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','N','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1879,NULL,4,'en','134986034','A2','A4','male','','','','','','','Y','','','','','','','','','Y','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Was on Gentoo for long time both on personal and work machines.\r\nSystem and package upgrades, incompatibilities and compile times made it quite unworkable.\r\nOn new job and laptop decided to try NixOS and sticked to it since then.\r\nThough still keep nix on Gentoo for more familiar system packages (syslog, openrc instead of systemd) and to be able to test nix-on-linux cases (include nix-without-systemd)','','Y','','','','','Y','','Y','','','Y','','Y','Y','','','Y','','Declarative decoupled packages','Declarative system management','Binary cache','Remove all implicit environment inputs: channels, packages, overlays, overrides all should be explicit\r\nAdd nix-based remote builder (not via ssh root)','Gentoo','','','','','','','','','','','','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','Y','','','','','','','Y','','','','','','','','','Y','','','',NULL),(1880,'1980-01-01 00:00:00',5,'en','1573276191','A1','A5','male','','','Y','','','Y','Y','','','Y','Y','','','','Y','','Y','Y','','','','','Y','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','Y','','','Y','','','','','','','','Y','','','','','Cross OS and processor type support','Most major development language and platform tooling and libraries','Caching and performance','Better and more bleeding edge libraries and programming languages and DB tooling support especially for macOS Intel and M1 processor','Sicker containers','','','','','Y','','','','','','Y','','','','NA','','Y','','','N','My limited knowledge','N','N','Migrating my integration and CI and production workloads to K8s wrapped with NixOS containers and better and more bleeding edge stability support in GCP and AWS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NA','NA',''),(1881,'1980-01-01 00:00:00',5,'en','2073347501','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Declarative reproducibility ','Y','','','','','','Y','Y','Y','','','','','','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','','','Y','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','','','','','','','','','','','','','','','',''),(1882,'1980-01-01 00:00:00',5,'en','831201650','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','','','To configure nixos','A1','','','Y','','','','','Y','','','','','','','','Y','','','Y','','nix-shell','nix-build','nix repl','Make a single command wrapper for all the nix command and improve output of some nix command to be more comprehensive when needed (displaying the package that are created instead of a lot of file path...)','Ansible and Terrform mixed with docker xontainer','','','','','','','','','','','Y','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I needed a more stable alternative to arch while keeping the huge package support and freshness that it provide through AUR','Y','','','','','','','Stability','Package support','Package freshness','Improve doc and commandes outputs like in the other similar field','Fedora silverblue or ArchLinux','Y','','','','','','','','Y','','I3-gaps','devshell by numtide\r\nagenix by ryantm','',''),(1887,NULL,NULL,'en','2125773697',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1884,NULL,NULL,'en','1101955272',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1885,NULL,NULL,'en','1855063661',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1886,'1980-01-01 00:00:00',5,'en','763747949','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','','','','','','','Y','','Y','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','Y','','','','Workhorse laptop','declarative system configuration in single place','easy package/system upgrades','','','','','','','','','','','','','','i3wm','','',''),(1888,'1980-01-01 00:00:00',5,'en','616925379','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Concept of a declarative reproducible system is appealing. ','','','','','','','Y','','','','','','','','','','','Y','','Many things work — ever rather recent libs/apps. ','Reproducible system state. ','Long term updateability. ','More maintainers and/for more documentation. ','Containers, ansible. Maybe salt. ','','','','','','','','','','','','','','','','','','','','N','Not experienced enough. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Reproducible system state. ','Y','','','','','','','See above, nix. ','See above, nix. ','See above, nix. ','See above, nix. ','Unsure ATM. ','Y','','','','','','','Y','','','','','','Thank all of you for your effort! '),(1889,'1980-01-01 00:00:00',5,'en','681069116','A2','A4','male','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','to reproduce OS and software/service installations on different machines','Y','','','','','','Y','Y','','Y','','','','','Y','Y','','Y','','immutability and reproducibility','NixOS modules','NixOps','add types','nothing','','','','','Y','','','Y','','','','','','','yarn2nix\r\n\r\nSbtix: https://gitlab.com/teozkr/Sbtix','Y','Y','','','N','don\'t know how to write tests','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','to have the same \"machine\" on different physical devices.','Y','Y','Y','Y','','','','easy rollback','reproducibility','easy to share OS setup with other people','better arm64 support','Ubuntu','Y','Y','','','','','','Y','Y','','','','',''),(1890,'1980-01-01 00:00:00',5,'en','1112156087','A1','A3','male','','Y','','','Y','','','','','','Y','Y','','','','Y','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','I wanted to have disposable developing environment for python and mysql. I used to use docker but volume mounting and networking was too much of a hassle.','','Y','','','','','Y','','','','','','','','Y','','','','','nixpkgs','nix-shell','NixOS','Add more packages, Windows support, up-to-date & complete documentation & examples on how to use and configure each package.\r\nChange the nix expression language to be more easily understandable and concise.','docker, multipass','','','','','','','','','','','','','','','','','','','','N','I don\'t understand nix expression language well enough.\r\nI\'m not confident enough to create a working derivation.\r\nI don\'t want to maintain a derivation.','N','N','Ability to install packages from debian/ubuntu repository',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Nix is great, but I wish it was easier.'),(1891,'1980-01-01 00:00:00',5,'en','669132146','A6','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A6','simplicity to manage system after learning curve is gone :p','','Y','','Y','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','','','','','','Y','Y','','','Y','','','','','','Y','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A6','','','','','','','','','','','','','','','Y','','','','','','','','','sway','','',''),(1892,NULL,1,'en','1648708819','A2','A4','male','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1893,NULL,1,'en','1865540456','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1894,NULL,2,'en','590625390','A1','','male','','','','','','','','','','','','','','','Y','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I like the concept of nix','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1895,'1980-01-01 00:00:00',5,'en','1706557619','A1','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It\'s a better package manager than homebrew.','Y','','','','','','Y','','Y','Y','','','','','Y','','','Y','','nix-shell','home-manager','nix-darwin','','Use asdf.','','','','','Y','','','','','','Y','','','','+ https://github.com/svanderburg/node2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','I wanna a fully reproducible linux, then I found it.','Y','','Y','Y','','','','','','','','ArchLinux, maybe.','','','Y','','','','','','Y','','','nix-darwin','NixOps','Thanks for guys creating and maintaining Nixpkgs / Nix / NixOS, etc. '),(1896,'1980-01-01 00:00:00',5,'en','557769092','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I started using Nix as NixOS config language','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','nix shell & nix run','nix flake ...','Nix language - it\'s great no matter what haters say :))','Improve docs, improve flakes a little & remove legacy, improve LSP support.','As I mainly use Nix with NixOS, I would have stayed with Arch and kept using pacman / yay / building from source or would try Guix or Ansible.','','','','Y','Y','','','','','','','','','','','','Y','','','N','I have little time to do it being a student, the docs are a bit tough - for now I found that making flakes is a bit easier - I contributed to Nix ecosystem making a Flake nix module (base16.nix) and I try to help jupyter-with project with flake support.\r\n\r\nP.S. I will do my best to attend next ZHF hackaton (there was one before 21.11 release, organized with Tweag\'s help, notably @balsoft).','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','As my daily driver','A3','Before Nix I used Arch (that was in high school) as it had many programs packaged (I needed it mainly for ricing), but Arch broke after every update and I didn\'t understand how it worked. As I\'ve also enjoyed functional programming, I\'ve had my eyes on Nix for several years.\r\n\r\nAfter graduating high school I had a month of free time and decided to migrate my configuration to NixOS and learn Nix. I\'ve used @balsoft config (https://github.com/balsoft/nixos-config) as a starting point, and got help from @ru_nixos telegram chat. I\'ve immediately found channels strange, luckily that was the time (1,5 years ago) flakes were becoming mainstream, so my config quickly became flake-based.','Y','','','','','','','Configuring my personal computer in an easy, config-centralized, modular, shareable, declarative, extensible way','Updates without major breakages','home-manager','Improve docs, ability to easily rebuild and swith home-manager and NixOS configs separately, while keeping home-manager & NixOS config in the same flake, stable flake API & less non-flake legacy. Also very important: stable pipewire support (I\'m on 21.11 + Wayland + firefox and still can\'t share screen, I\'ve tried every variant and now launch X11 (i3) for this).','Arch / Guix','Y','','','','','','','','','','sway','direnv, home-manager, base16.nix ','channels','<333 best project ever\r\nSTOP WAR IN UKRAINE, RUSSIA != PUTIN'),(1897,NULL,4,'en','482062811','A2','A6','male','','','Y','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','The idea of self-contained reproducible development environments was the main draw but also for Nixos having such easy rollback was also a major draw ','Y','Y','','','','','Y','','','Y','','','','','Y','','','Y','','declarative provisioning','safety - isolation and trivially easy upgrade and rollback mechanisms','Fine grained control over system / environment components (though this can be a bad thing too when it all gets a bit out of hand)','Add decent documentation and examples of non trivial but similarly not insanely esoteric usages. I know documentation is really hard to do well but what I have found thus far for nix is really inadequate.\r\nIdeally (if possible) static type checking esp for function signatures as it seems impossible to understand what is going on without being intimately familiar with the underlying source code.','Ubuntu/docker/packer et al','','','','Y','Y','','','','','','Y','','','','poetry2nix - https://github.com/nix-community/poetry2nix','Y','Y','','','N','Lack of expertise and time. If I had more the former the latter would be less of an inhibitor.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Firstly out of curiosity then in more earnest when I became a bit more comfortable.','Y','','Y','Y','','','','','','','','','','','','','','','','','','','','','',NULL),(1898,NULL,2,'en','1051941550','A7','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1899,'1980-01-01 00:00:00',5,'en','1080274692','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','N','Y',NULL,'At the time, I installed it as a secondary package manager on my main system (arch linux) and ended never using it.','If I found a compelling reason to move away from Guix SD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','If I found a compelling reason to move away form Guix SD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none','none','I\'d be interested to see how many people had experiences like mine, i.e. trying nix for a while and then moving to Guix, or vice versa.'),(1900,'1980-01-01 00:00:00',5,'en','210145077','A5','A3','male','','','','','','','Y','','Y','Y','Y','','Y','','','','','Y','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','','','','','','','','Y','Y','Y','Y','Y','Y','','','Y','Y','','Y','','','','','','','','','','','','','Y','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','','Y','Y','Y','Y','Y','Y','','','','','','Bedrock Linux, GoboLinux, GUIX maybe. ','Y','','','','','Y','','','','','Awesome','','',''),(1901,NULL,1,'en','2038103237','A5','A3','-oth-','nonbinary (maybe you should add more options?)','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1902,NULL,NULL,'en','674358047',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1903,NULL,NULL,'en','490131864',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1904,'1980-01-01 00:00:00',5,'en','1217783182','A5','A4','fem','','','','','','','Y','','','','','','','','','','','','','','','','','','Engineering manager','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I started using Nix because I was using NixOS','Y','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Composable builds (i.e. everything I want to do can be done in a single `nix build` command)','Purely functional programming model','Clean separate between the Nix store and Nix the language via the .drv format','Add a type system','','','','','Y','Y','','','','','','','','Y','','https://github.com/NixOS/cabal2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','We initially used Ansible at work, which was not going well. I introduced NixOS as a replacement for Ansible, which went better','Y','Y','Y','','','','','Centralized system configuration','Declarative system management (as opposed to imperative)','Rollbacks','Something like users.mutableUsers = false, but for the entire system (e.g. mutable = false). In other words, a NixOS option that disables all imperative operations, including:\r\n\r\n* Imperative package management\r\n* Imperative channel management\r\n* Imperative container management','Debian','Y','','','','','Y','','','Y','','','Nixpkgs (I consider that separate from NixOS and Nix)\r\n\r\nnix-diff','Hydra','You should ask questions about the Nix governance process and community management/moderation'),(1906,NULL,NULL,'en','115815042',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1907,NULL,1,'en','1020984436','A2','A2','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1908,'1980-01-01 00:00:00',5,'en','1780621108','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I saw Susan Potter\'s talk about it at a Comcast event in Philadelphia several years ago. At the time I was reprovisioning a VM from scratch, which the team I was on had to do regularly to find out in what ways Ubuntu repo drift had broken our provisioning _this time_. The promise of nix seemed so amazing that I immediately proposed some independent research time at work around it.','Y','','','Y','','','Y','Y','','','','','','','Y','','','Y','','Reliable cross-platform builds','Consistent dev environment experience','Smug feeling of superiority when people talk about dependency hell','I\'d make every core function typed (or expand the purescript nix implementation to the complete Nix API)','Before I used nix for dev environments, I just lived with \"oh well maybe the IDE config for project X will be broken for a month or two until this compatibility issue is fixed.\" It was maddening. The upshot is I got really good at keeping types in my head! But that\'s not really a great outcome.','','','','Y','Y','','','','','','Y','','','','cabal2nix','','','','','N','I\'ve never really understood outputs from derivations, and I don\'t know if there\'s anything new I have to add','N','N','I\'d need to put the time in to work out my special shell config, probably switch back to neovim, and I\'d want a WSL distribution of it (maybe that already exists? I haven\'t looked in a while, I\'ve been pretty happy with home manager)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix home manager','',''),(1909,'1980-01-01 00:00:00',5,'en','1202419932','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Searching for simpler ways to install \"all-included\" packages. ','Y','Y','','','','','Y','','','','','','','Y','Y','Y','','','','Composable systems','Reproducible builds','Build tool agnostic ','Static types.(Better docs)','Asdf, docker','','','','Y','','','','','Y','','','','','','','Y','','','','N','','N','N','Don\'t know',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1910,'1980-01-01 00:00:00',5,'en','848179655','A5','A2','fem','','','','','','','','','Y','','','','','','','','','','','','','','','','Engineer, Security','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A friend in college recommended it to me since I have many Linux devices that I want to have similar configuration','','','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','Declarative system configuration','Declarative dependencies (with flakes)','Isolated builds','I would add better search, since switching to flakes `nix search` has been much less useful and slower','I would continue using Arch Linux on desktops and setup servers either manually or with Ansible','','','','Y','Y','','','','','','','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','Y','','','','','I would better integrate home-manager into the nixos system','I\'d use Arch Linux on my machines','Y','','','','','','','','','','sway','home-manager','',''),(1911,'1980-01-01 00:00:00',5,'en','867425544','A2','A2','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','','N','Y',NULL,'I stopped using Nix after realizing I would have to put in a lot more effort to bring in my own packages than I had the energy to give.','Having more time and energy. Or the package repositories grow in number and size!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Same reasons I stopped using Nix. I went all in on NixOS, and while I greatly enjoyed the experience ultimately I didn\'t have the energy or time to contribute the things I needed/wanted to use.','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1912,'1980-01-01 00:00:00',5,'en','1451620615','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','','','','','Guix','','','','','Y','','','','','','','','','Buildbot','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','I3wm','','',''),(1913,'1980-01-01 00:00:00',5,'en','1411826324','A1','A2','male','','','Y','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','A lot of Haskellers love Nix so I wondered what the fuss was all about and tried it out myself. ','','Y','','','Y','GitHub Actions','Y','Y','','','','','','','Y','Y','','Y','','Flakes','Simple configuration like setting up a postgresql service with backups is trivial compared to the alternatives.','nix develop','* Remove the old way of packaging for Flakes. It\'s just so much easier to understand. \r\n* Add types, but I don\'t know if this is even possible in Nix\r\n* Add complete documentation\r\n* Add 10293813 books about Nix/NixOS/Nix (package manager)\r\n* Add non-root containers','Ansible, and a lot of virtual machines/containers.','','','','Y','Y','','','','','','Y','','','','* cabal2nix: https://github.com/NixOS/cabal2nix\r\n* I forgot the Python one\r\n* The Rust one\r\n','','Y','','','N','Not familiar enough with Nixpkgs, and no time. Too busy studying other heavy things. I will get to it when I\'m able to.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Managing dependencies and system config is simpler than the alternatives','Y','Y','','','','','','systemPackages','Saner interface for systemd','Saner interface for system services (e.g postgresql)','* Proper flakes support\r\n* This isn\'t really with NixOS itself, but with the support around it. There are no major cloud providers that support NixOS. Like first party support. And it\'s quite frankly an incredible bummer since the alternative requires a lot of effort to setup.','FreeBSD + Linux VM','Y','','','','','','','Y','','','','nix-community','N/A','I wish there was more flakes support, and major cloud provider support. That aside, Nix is fantastic and I hope it becomes more approachable, better documented, and more polished as the days go by. Thank you for making this.'),(1914,'1980-01-01 00:00:00',5,'en','1560906197','A2','A2','-oth-','nonbinary male','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I was friends with a Nix enthusiast and decided to try it because I liked the ideas.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','It is faster to just write expressions for myself','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','i3','direnv','lorri',''),(1915,NULL,1,'en','1059181770','A1','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','My friend told me enthusiastically about a linux distribution that promised incredible benefits. He explained, having only read about it, never used it, and I didn\'t believe it would work in real-world situations.\r\nAfter meeting NixOS contributors at 35C3 and them showing me how they use it for their projects, my mind was blown and I was convinced.\r\nHaven\'t stopped using it since.','','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','','','','Windows support, so I could wrap my Visual Studio build in Nix and cache the results. Maybe even replace the build system.','Maybe Guix. I tried Guix for a few months but it doesn\'t have many advantages over Nix.\r\nOtherwise, in terms of distros, I heard Fedora Silverblue is good and has a similar approach.\r\nIn terms of build systems I\'m trying to use Bazel for a Visual Studio build on Windows. Nix would be great, but I\'m afraid my colleagues won\'t like a distro build tool as a project build tool.','','','','Y','','','','','','','Y','','','','','Y','','','nur','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','','','','','','','Y','','','','','','','Y','','','i3',NULL,NULL,NULL),(1916,'1980-01-01 00:00:00',5,'en','1344670919','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Along with NixOS','','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Atomic system update','Declarative whole system configuration','Dependencies isolation for development','It would be easier to offload compilation (my nixos install is running on an underpowered x86)\r\nAlso, finer grained caching, my personal rust projects are always rebuilt from scratch','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Experimenting with atomic system update. I\'ve used it on servers and personal machine but right now it\'s only powering my home server.','','','Y','','','','','Atomic updates','Declarative system state','','More complete and robust network setup. I cannot run `nixos-rebuild switch`directly as it usually breaks something with network.','Server running debian, maybe something like Chef','Y','','','','','Y','','','','','sway','','',''),(1917,'1980-01-01 00:00:00',5,'en','1124489171','A2','A2','-oth-','Non-Binary','','','','','Y','','','','','Y','','Y','','','','','Y','','','','','Y','Y','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','','','Y','','','Y','','Y','Y','','Y','','','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','Y','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','Y','','Y','','','','','','','','','','','','Y','','Y','','','','home-manager','morph',''),(1918,NULL,1,'en','981617610','A5','A3','-oth-','','Y','','','','','','Y','Y','','','','','Y','','','','','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1919,'1980-01-01 00:00:00',5,'en','1683066489','A2','A3','male','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Reproducibility is the main reason. Also I am using NixOS so I \"have to\" use nix at some point.','','Y','','','','','','','Y','','','','','','Y','','','Y','','Reproducibility','Being declarative','','I\'d rewrite it to make it understandable.','Probably Python','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I am using Linux for ~10-ish years. I tried while looking for a new distro. Working declarative configuration was the thing.','Y','','Y','','','','','Declarative configuration of system','Being able to roll back','','','Either Debian or Gentoo','Y','','','','','','','','','','awesomewm','home-manager','A lot of *2nix projects',''),(1920,'1980-01-01 00:00:00',5,'en','1331595154','A1','A3','fem','','','','','','','','Y','','','','','','','','Y','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Home management ','A5','Started on MacOS/Ubuntu laptop gateway to nixos on the server and then nixos on personal machines ','','Y','','','','','Y','Y','Y','','','Y','','','Y','Y','','Y','','Being able to see source provenance and build instructions for every package ','Unified language for everything ','Functional programming! ',' Add faster Eval performance maybe? Some support for types (not sure how well this would work in practise) ','For day to day stuff, maybe btrfs snapshots for the OS config and regular Haskell tooling? ','','','','Y','','','','','','','Y','','','','cabal2nix','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Personal servers','A5','After coming to love nix on Ubuntu and macos it was the obvious goto for new servers ','','','Y','','','Y','Personal machines ','Ability to contribute to the OS','Reproducibility of advice/answers in blogs etc... The stability of the module system is important \r\n','Reproducibility of system setup just from config ','Make it easier to sandbox applications with granular permissions. Maybe something like spectrumOS or android? ','Arch I suppose? ','Y','','','','','Y','','Y','','','','Haskell infra\r\nNixOS community stuff','Hydra, nixops','Magic wand for the project in general: I would remove all the fascists from RFC 98. That part of the discussion is a complete blight on the community and really impacted my motivation to contribute.'),(1921,NULL,NULL,'en','370114261',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1922,NULL,1,'en','2089577251','A5','A3','fem','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1923,NULL,NULL,'en','765730525',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1924,NULL,1,'en','1295322460','A5','A3','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1925,NULL,NULL,'en','1045003581',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1926,'1980-01-01 00:00:00',5,'en','1892000413','A5','A3','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','N','Y',NULL,'Lack of type checker','Addition of static typing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Lack of type checking ','Addition of static types ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1927,'1980-01-01 00:00:00',5,'en','1440175506','A2','A4','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','Reproducible Builds','Overridable packages','','Make flakes stable.','Probably something sad with Docker. Or buildroot or yocto.','','','','Y','Y','','','Y','Y','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','','','','More support for embedded use cases (no vim/bash, documentation etc in a minimal Nixos image)','Fedora','Y','Y','','','','Y','','Y','','','','','',''); -INSERT INTO `limesurvey_survey_2022` VALUES (1928,'1980-01-01 00:00:00',5,'en','380805143','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','','Y','Y','','N','Y',NULL,'The command-line tools are a bit complex (too Red Hat-like in some ways) and the language is... difficult. The docs are also really not that good. Sorry docs people.','Better docs!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Same reasons as Nix, but also things like, running third-party binaries (to which I don\'t have the source code) is too difficult and hacky at best. I also honestly couldn\'t figure out how to operate or upgrade the system. It comes down to docs again.','Compatibility shims for third-party binaries that expect libc et. al. in \"normal\" places would help. And again, better docs.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','I\'m not aware of others.','Please please please focus on documentation! It\'s so important. Nix\'s docs are somewhat comprehensive, but not cohesive. They\'re also disparate between Nix (the language), Nix (the package manager) and Nix (the OS). Something needs to tie them together.'),(1929,NULL,2,'en','380465562','A2','A2','male','','','','','','','','','','Y','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','Y','','','','','','','Y','','','','','Y','Y','Y','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1930,'1980-01-01 00:00:00',5,'en','8265021','A2','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Was looking for a Homebrew replacement after my Homebrew environment had rotted. Was hooked after I realized what nix-shell could do to my development environments. I ','Y','','','','Y','','Y','','Y','','','','','Y','Y','','Y','','','Project specific development environments','Package managements ','Temporary shells for evaluating tools','Consolidation of and documentation for all nixpkgs patterns.\r\nA clearer path towards flakes.\r\nBetter MacOS-support. (An amazing job has been done already, but MacOS-nix still feels second class.)','Probably Docker and/or macports. Or Homebrew.','','','','Y','','','','','','','','','','','gem2nix\r\nnpm2nix','Y','','','','Y',NULL,'N','Y',NULL,'I don’t have any non-corporate Linux-machine.','The need for a new home server.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lorri\r\nDirenv (if that counts)','','I looked into flakes but haven’t found the time to transition. The documentation and path forward was to unclear. The state of nix-command after 2.4 is confusing - replacing tools that work without flakes with ones that require flakes.'),(1931,NULL,1,'en','1220042871','A5','A2','fem','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1932,'1980-01-01 00:00:00',5,'en','712848444','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Lobbying in the teaching assistant slack. After receiving a new computer i started using it as a fresh install ','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','Reproductible ','Self contained ','Easy to debug / source code is nearly always the answer','Better error management & enforcing push of flakes to avoid channels ','Archlinux ','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Reinstalled a computer, tryied it, loved it ','Y','Y','','','','','','System as code','Reproductible ','Self contained','','Adding more packages, many issues with virtualisation tools ','','','','Y','','','','','','','i3','','',''),(1933,'1980-01-01 00:00:00',5,'en','177546083','A5','A5','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','business','A4','I was hired by https://holo.host/ to create an auto-upgrading operating system for their hardware in 2018. I ended up using nixos as the basis. For a brief time period, it was the largest deployment of nixos onto a fleet of bare metal machines.','Y','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','deterministic build','deployment via nixos rebuild switch','Composability (functional language, flakes and importing/inheritance)\r\n','it\'d be better to have the language simplified. Maybe more like clojure.','hard to say. in the past I used ansible and docker.','','','','Y','Y','','Y','','','','Y','Y','','','clj2nix, node2nix ','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same as nix story I was hired by Holo.host to implement an auto-upgrading operating system','Y','Y','Y','Y','','Y','','determinism','composability','ease of deployment','make the language simpler like clojure','ansible and docker','Y','Y','','','','','','Y','Y','','','','',''),(1934,'1980-01-01 00:00:00',5,'en','1293102459','A2','A4','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','By using NIXOS','','','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','possibility of having slightly different versions of the same library, and easy switch between them ','','','I will add more documentations: package descriptions (f.e. like debian packages)','don\'t know','','','','','','','','','','','','','','','','','','Y','','N','maintainer responsibilities\r\n','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','B/c of curiosity','Y','','Y','','','','','declarative configuration','absence of unused software in the path','','documentation: options descriptions/search (do we have search.nixos.org but local version?) ','I can\'t imagine this disaster','Y','','','','','','','','','','xmonad','','','Thank you All, Keep good work and Good Luck!'),(1935,'1980-01-01 00:00:00',5,'en','1949701989','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','N','N','Ability to experiment - ad hoc install/uninstall packages, without any risk of breaking the system. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Ability to easily reinstall system to the same state as what i have (replace ansible)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1936,'1980-01-01 00:00:00',5,'en','1024291337','A2','A3','','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','Y','Y','','','A2','','','Y','','','','','Y','','','','','','','Y','Y','','','','','','','','static types','','','','','Y','','','','','','','Y','','','','','','','','','',NULL,'N','Y',NULL,'','setting up a new machine',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'direnv','',''),(1937,'1980-01-01 00:00:00',5,'en','724506943','A5','A2','fem','','','','','','Y','Y','Y','Y','Y','Y','Y','','Y','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My Debian machine was crashing unexpectedly and I wanted a solution which would allow me to put my computer configuration into version control and specify the configuration from a single language. ','Y','Y','','Y','Y','','Y','Y','Y','Y','','Y','','','Y','Y','','Y','','Deterministic evaluation & reproducibility','Using software via urls, essentially skipping an installation process','Flakes','I would prefer that the tools for debugging memory usage and evaluation of nix expressions had better debug-ability ','','','Y','','Y','Y','','Y','','','','Y','','','','gradle2nix','Y','Y','','','N','The process and community has been slightly intimidating even if it\'s very welcoming. \r\n\r\nI Also prefer tabs for accessibility and can use flakes for most packaging I need to do that might involve nixpkgs. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','Deterministic configuration ','Debugability','','','','Y','','','Y','Y','','','','Y','','','','',''),(1938,NULL,1,'en','1153728758','A5','A3','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1939,'1980-01-01 00:00:00',5,'en','1355687846','A2','A5','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','The idea is fascinating, and a friend successfully has used it so I dared take the leap too.','','Y','','','','','Y','','','','','','','','Y','','','Y','','Declarative configuration of my laptop','Isolated environments for development projects','Run software \"without installing\"','Make the Nix language more familiar to learn. Ensure all on-line documentation and community provided content is top quality and up-to-date.','Ubuntu','','','','','','','','','','','Y','','','','','Y','','','','N','Insufficient skills in the Nix language and the system in general','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','The idea fascinates me. A fried has used NixOS successfully, so I dared take the leap as well.','Y','','','','','','','Declarative laptop configuration','Isolated environments for development projects','Run software \"without installing\"','Ensure all on-line documentation and community content is up-to-date and top quality. Make the Nix language more familiar and easier to learn.','Ubuntu.','','','','','','','','Y','','','','home-manager','',''),(1940,'1980-01-01 00:00:00',5,'en','1194673098','A2','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I read about it and what I read sounded good. Moving into SRE I had an interest in reproducible builds','','Y','','Y','','qemu','Y','','','','','','home desktop','','Y','','','Y','','Hermetic builds (from nix flakes)','nix-shell','declarative OS specifications','I\'d add a jails feature allowing nix-shell environments to be isolated from my desktop so that I can develop but if any tool is compromised my desktop isn\'t.','Guix','','','','','Y','','','','','','','','','','haskell.nix','','Y','','','N','I was about to once but somebody got there first','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I split coffee on my Mac and knew that my new desktop would be nixos based. Now if my laptop breaks I can get going on a new laptop quickly\r\n','Y','','','','','','Home desktop','Easy rollback via the boot-loader','home-manager support','','I\'d abstract away all service declarations such that they could be re-used for non-system systems or independently of Nixos','Guix','Y','','','','','','','Y','','','','Nix flakes','','Nixos is awesome'),(1941,NULL,NULL,'en','978054803',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1942,'1980-01-01 00:00:00',5,'en','828424916','A1','A3','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I was looking for an immutable, declarative package management system that would fit my needs better than OSTree does.','','','','','Y','','','','Y','','','','','Y','Y','','','Y','','Declarative configurations','Reproducibility','Immutability','I\'d fix the broken packages shipped in nixpkgs. They\'re currently the only thing preventing me from using Nix full-time.','OSTree.','','Y','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I was looking for another OS with an unique package management system, and I was also used to immutable systems, so NixOS seemed like a perfect choice.','Y','','Y','','','','Desktop PCs','The configuration files on /etc/nixos.','Up-to-date repos','Using Xen without messing too much with the system.','I\'d add a way to quickly write new packages directly in a configuration file, instead of trying to expand nixpkgs.','Fedora Silverblue','Y','','','','','','','Y','','','','','',''),(1943,'1980-01-01 00:00:00',5,'en','375767723','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','Learned about it from a coworker and eventually saw the value in having reproducible dev environments (without having to fallback to gitpod and the like)','Y','Y','','','','','Y','','','','','','','','Y','','','','','Declarative environment management','','','“Go to definition” support. It’s impossible to learn more about what scripts are doing. I understand why this is difficult and technically in the abstract impossible for some things, but even best effort approaches would be a considerable step forward ','Combination of readmes, language specific package management/version management, docker-compose, etc ','','','','','','','','','','','','','','','','','','','','',NULL,'N','N','I need to do it I’ve just or it off :)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1944,NULL,1,'en','1762525520','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','algorithm developer ','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1945,'1980-01-01 00:00:00',5,'en','183532470','A2','A4','male','','Y','','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I love Haskell and kept stumbling about Nix articles. So I got curious, and switched soon after.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Declarative development environment of projects','Project packagement','','- Type checker, stronger type system. I always feel incapacitated when moving from Haskell to programming Nix. The most annoying thing is the ambiguity between paths and strings, and the non-intuitive handling of those.\r\n- Simplify things. By now, I got used to overlays and overrides, but keep thinking that they are overly complicated.\r\n- Flakes: Use them, once and for all. (Or agree on using something else). But this diversification of `nix` commands is extremely painful.\r\n','Guix, I guess.','','','','Y','Y','','','','','','','','','','- cabal2Nix\r\n- python 2 Nix (but there are too many variants, I always forget which one I use most)','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I gave the answer in the previous box; the distinction was not clear, sorry.','Y','','Y','','','','','Declarative system management','','','- Build delays from branches. It is really annoying when my browser tells me it is outdated, and I can not update because the branch is stuck for some (usually unrelated) reason.\r\n\r\nI include Nixpkgs related stuff here:\r\n- Nixpkgs: Use a proper code formatter that leaves no options. Too often, I keep changing my Nix files because people are unsatisfied with the format.\r\n- Nixpkgs: Unify (enforce?) workflows for different communities. For every programming language, the ecosystem is vastly different. For example, packaging a Python package is so different from packaging a Haskell project. I think this should not necessarily be the case.\r\n\r\n- In general: Improve the documentation. Too many features are undocumented, too many times I have to check the Nixpkgs code base to see how things work.','GNU Guix, I guess. I used Arch Linux before, and was also really happy!','','','','Y','','','','','','','XMonad','cabal2Nix','Some (many?) xxx 2 Nix converters. There should be less of those, and the existing ones should be better (officially?) supported.','Thank you very much for working on Nix, Nixpkgs, and NixOS!'),(1946,'1980-01-01 00:00:00',5,'en','1140529939','A2','A4','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','To administrate my work and personal computer','A5','','','Y','','','','','Y','','','','','','','','Y','','','Y','home-manager','One configuration to get a reproducible system. This way I can backup how my system is configured and safely format my disk.','Being able to update any package to the version I want without waiting for others to package it.','Being able to configure my home directory with home-manager.','Fixing this issue https://github.com/NixOS/nixpkgs/issues/95911 would allow me to switch to NixOS and benefit from the full experience.','Guix, but it lacks of packages would be a problem.','','','','Y','','','','','','','Y','','','','','Y','','Y','','Y',NULL,'N','Y',NULL,'Lack of good mono support: https://github.com/NixOS/nixpkgs/issues/95911. ','As soon as https://github.com/NixOS/nixpkgs/issues/95911 is fixed I will happily go back to NixOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','I suggested using nixops to colleagues but I\'m the only one who managed to install it and the others felt it was way too complex after 2h.','you are AWESOME!!!!!! Please keep doing what you do.'),(1947,NULL,NULL,'en','1743732563',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1948,NULL,2,'en','2027265654','A5','A4','male','','Y','Y','Y','','Y','Y','','','Y','Y','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was a gentoo user. I broke my gentoo. It was a toss up between Arch, Nix, and Gentoo. I wanted to learn something new and quickly Nix has become my most loved GNU/Linux','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','','','system in git','trying new things easily (nix-shell + direnv)','decent developer experience (not great always but is neat)','More packages!','Gentoo','','','','','Y','','','','','','','','','','poetry2nix\r\n','Y','Y','','','N','I don\'t write good nix','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1949,NULL,1,'en','591557563','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1950,'1980-01-01 00:00:00',5,'en','1434506171','A5','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Started with home manager and then had a coworker show me the ropes for nixos','','Y','','','','','Y','','Y','','','Y','','','Y','Y','Y','Y','','Declarative configuration','Nix-shell','Seamless rollbacks','A way to create package hashes without including documentation','I guess I would have eventually found Guix','','','','Y','Y','','','','','','Y','','','','node2nix\r\ngradle2nix\r\nmachnix\r\n','Y','Y','','','N','Time','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','Y','','Y','','','Y','','','','','','','Y','','','Y','','','Devos/divnix','','','','xmonad','Nix-direnv','Lorri\r\nHaskell.nix\r\n',''),(1951,NULL,1,'en','840955318','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1952,'1980-01-01 00:00:00',5,'en','1744279384','A2','A5','male','','','','','','','Y','','','','','','','','','','','','','Y','Y','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Got introduced to it by a new colleague','Y','Y','','','','','Y','','','Y','','','','','Y','','','Y','','Fully reproducible deployments (nixops)','Production compatible local test environments','','nixops with better support for private repos (potentially using flakes)','','','','','','','','','','Y','Y','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Fully deterministic system configuration','Y','','','Y','','','','','','','','','','Y','','','','','','','','','','','',''),(1953,NULL,NULL,'en','1645624626',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1954,'1980-01-01 00:00:00',5,'en','1700954076','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I\'m a huge developer experience fan. After trying various build systems I found Nix to be the most reliable and reproducible of all.','Y','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','','Y','','Flakes','Flakes','Nixpkgs','Better documentation\r\n\r\nLess intrusive installation: the install script is awesome, but it also makes people reluctant to install Nix.','Make, Please as build system\r\nArch as linux distro','','','','Y','Y','','','','','','Y','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Dotfiles and install scripts are great, but they are nowhere near to NixOS in terms of reproducability.\r\n\r\nI also like experimenting with my config and going back to a previous generation is a killer feature.','Y','','Y','','','','','Going back to previous generations','Home manager','','There are lots of different deployment tools and it\'s hard to choose the right one. Better consenus would be nice.','Arch','Y','','','','','','','Y','','','bspwm, sway','Home manager\r\nnixpkgs-review\r\nnix-update\r\nnix-direnv','','Finding Nix/NixOS has been and still is an amazing adventure. Thank you!'),(1956,'1980-01-01 00:00:00',5,'en','1754748722','A3','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was using ubuntu and had a faulty SSD cause 3 hardware faillures in 6 months, causing me to loose all of my precious configuration. I started looking for tools to help me make my system more trustworthty and nix looked like the right tool. I started using nix because it allows me to reproduce my system config with a few files and because it helps me organize all my system with a single tool. As a plus, it has rolling releases, a nice and active community and, with nix-direnv, it really makes it easy to switch environments for each project.','','Y','','Y','','','Y','','','','','','','','Y','','','Y','','reproducibility','ability to consolidade system configuration management','easy to switch development environments','I would improve docs, specially more or better content for onboarding new users. It was really hard to get around as a beginner (at the time I was not very familiar with programming). Some of my dificulties were realated to understanding how \"it all fit together\" and how I could accomplish simple tasks like \"install a software/package\", \"configure a specific program\", \"pin a version or rollback in case of error in unstable\", \"overlaying attributes\", \"how home-manager related to nix (in ubuntu and nixos)\" (home-manager docs help more than nixpkgs/nixos manual at this point), \"how I can create new packages\" (this is still challenging). I felt help with this issues were \"all over the place\" and in other blogs not listed in nixos.org. More effort in improving and mantaining the wiki would go a long way.\r\n\r\nI would also like to be able to protect specific paths from garbage collection. I would like to be able to pin old version of software and preserve the resulting derivation for specific paths/packages.','Nothing comes close. There is not a single tool that brings all the benefits that comes with nix. I would had to use apt, pipenv/conda/poetry, npm and docker. Nix allows to concentrate and manage almost all system config with a single tool and easily switch dev environments as I need it.','','','','Y','','','','','','','Y','','','','None, but used to use https://github.com/DavHau/mach-nix (python)','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I spend around 6 months with nix on Ubuntu and I was pretty satisfied with it. I started having issues managing x applications with nix in Ubuntu and decided to switch. I was rough at first, but I\'m happy to be somewhat confortable using nixos now.','Y','','','','','','','reproducibility (deterministic builds)','ease of use (not of learning, but of managing the system with it)','number of packages available','I would improve the docs/onboarding and make it easier to add and review new packages (local tests, tutorials, utilities)','Arch probably','Y','','','','','','','','','','none+bspwm','nix-direnv and home-manager','mach-nix, npm2nix, node2nix, ','I\'m very happy with how Nix and NixOS have been evolving and is being mantained. It\'s really hard to get arround in the beginning but I feel its rewarding. Thank you for developing this software and maintaining this project. It\'s one of the best open source projects I\'ve seen.'),(1957,'1980-01-01 00:00:00',5,'en','661259171','A2','A4','male','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I looked for an option to manage my home-folder installations and found home-manager. I then learned about NixOS and was fascinated by the concept.','','Y','','Y','','','Y','','Y','','','','','','','','','','I only use flakes and the modern interface','Home-manager','builds that work on any linux OS without change','','I would replace the Nix-language with something that has proper tooling support. Debugging Nix is *painful*, understanding the configurations is incredibly hard even after months of trying. I would love if instead of Nix-language we had something mature as the base such as ´haskell´. I would try out guix, if the maintainers of it weren´t such odd recluses (I took one look at the savannah-page where guix is hosted and I turned around and ran). But overall I think the use of guile is probably a step forward compared to nix.','not sure','Y','','','Y','Y','','','','','','','','','','poetry2nix','','Y','','','N','It is very complex and daunting to set up and properly check anything. \r\n\r\nThe build server seems very complex and review times seem to be very long.','N','N','Nothing, I am happy with nix on Ubuntu',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','',''),(1958,'1980-01-01 00:00:00',5,'en','1748041518','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','N','N','Finding the time and motivation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Finding the time and motivation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1959,'1980-01-01 00:00:00',5,'en','1337014959','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','Y','','','','A1','','','Y','','','','','','','','','Y','','','','','','','Y','','','','','Better onboarding documentation for Nix Home and adding packages to the repository ','','','','','','','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','I think it was on Distrotube on youtube. I like the philosophy of Nix','','','','','Y','','','','','','','','','','','','','','','','Y','','','home','',''),(1960,NULL,3,'en','1797407959','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1961,'1980-01-01 00:00:00',5,'en','1475001852','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','Declarative environment management','Declarative system or server configuration/management','Build container images','','','','','','','Y','','','','','','Y','','','','https://github.com/svanderburg/node2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','Y','','','','Y','','','','https://github.com/Mic92/nixos-shell\r\nhttps://github.com/nix-community/nixos-generators','',''),(1962,NULL,NULL,'en','111239480',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1963,NULL,1,'en','824407334','A1','A4','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1964,'1980-01-01 00:00:00',5,'en','1505006444','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Network Engineer','Y','Y','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','Y','','','','','Y','','','','','','Personal computing/workstation ','Y','','','','Y','','Declarative configuration of as many packages as possible for total system configuration','','','','Ansible or salt locally','','','','Y','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Personal Workstations','Reproducible whole system configuration ','','','','','Y','','','','','','','','','','i3','Home-manager','',''),(1965,'1980-01-01 00:00:00',5,'en','784386122','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','N','Y',NULL,'Having to do everything in a configuration file.','There needs to be a package manager without having to use the configuration file but the package manager also keeps your configuration file updated for when you do want to use it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'NixOS needs a nice installer that handles partitioning and configuration at install.','Installer. There needs to be a package manager without having to use the configuration file but the package manager also keeps your configuration file updated for when you do want to use it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','This is a great project. I\'d love to see wider adoption. Maybe like a a Mint NixOS edition many people are avoiding Ubuntu. With Debian being slow and outdated maybe NixOS if they made it more user friendly could be a good option over Debian or Arch.'),(1966,'1980-01-01 00:00:00',5,'en','1493976662','A5','A7','-oth-','Okay ','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Okay ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Na','Na','Need to have a calamares installer. '),(1967,'1980-01-01 00:00:00',5,'en','296866805','A5','A5','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was interested to find a distro that manages software dependencies in an innovative way. Nix was the answer.\r\n\r\nI also use Nix on old Ubuntu to allow me to use recent versions of tools without using backports.\r\n\r\nThen I discovered the power to express a full distro version dependency in a Haskell project to be able to compile even years after the last change to my software (excellent for C libraries dependencies). While docker is the defacto answer these days, I prefer the Nix way.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','Declarative configuration ','Declarative dependencies ','Modern version of software on old distributions','Faster evaluation with less memory use.','Docker probably','','','','','','','Y','','','','','','','','Cabal2nix','Y','','','','N','Understanding of the whole process','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','The declarative configuration was interesting and I first tested with my home firewall/router. Then I adopted it for some specific work stuff (Prometheus and grafana, wireguard VPN, Subversion server, Hydra to build Elm web software, dokuwiki, Nix cache for dev servers).\r\n\r\nI prefer the declarative nature of NixOS than Ansible+Ubuntu. The 6 months release is sometimes a drag because I have to plan more frequently for upgrades. In return I have less surprises that 2 years Ubuntu LTS upgrades.','Y','Y','Y','Y','','','','Declarative configuration ','Recent software','Less risky than rolling release distribution for recent software ','Faster update of frequently released software like Firefox (for my desktop). I currently have a script to check if a new version is available every day and an overlay to have the new binary version the day of release.','Ubuntu or Arch. Docker for predictable builds.','Y','','','','','','','','','','xmonad with gnome software','The next NixOS options website to search how to configure NixOS','None','Thank you for your great work!'),(1968,'1980-01-01 00:00:00',5,'en','2107092812','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','LineageOS','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','A friend of mine told me about Nix/NixOS. After giving it a brief look, I thought that it looked very interesting and installed NixOS a couple of weeks later (at that time, I was using Arch Linux and was unhappy with it for various reasons). Over time, I learned more and more about Nix/NixOS and my excitement for it continues to grow even today.','','','','','','','','','Y','','','Y','personal computer','','Y','Y','','Y','','Unified model of software configuration and distribution/building','Declarative and functional programming model','Huge software repository','* make Flakes the universally accepted model for distributing Nix expressions\r\n* better integration with Electron\r\n* support downloading binary diffs instead of whole packages from binary caches\r\n* rewrite Nix in Rust ;)','Traditional imperative package management and configurations','','','','Y','Y','','','','','','','','','','node2nix','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','','Y','','','Y','personal computer','Declarative configuration model','Rollbacks','huge software repository','* improve configuration evaluation time\r\n','Debian or Arch Linux','Y','','','','','','','Y','','','','home-manager','','Thanks to all Nix/NixOS contributers for creating such an awesome software ecosystem! :)'),(1969,'1980-01-01 00:00:00',5,'en','1225806003','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I saw the declarative system management and thought it was cool.','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Declarative package management','Environment management','Developing tools','I would add static typing.','Arch Linux, I suppose?','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Same as Nix?','Y','','','','','','','','','','','Arch','Y','','','','','','','','','','sway','fenix, nixpkgs-fmt','',''),(1970,'1980-01-01 00:00:00',5,'en','88425312','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','','Y','','','','','Y','','','','','','','Y','Y','','','Y','','Declarative','Reproducible','Cross-platform','- Add a vanilla way to manage home environment declaratively (no need to install home-manager explicitly);\r\n- More \"How-To\" tutorials;','GNU/Guix? Or a lot of containers.','','','','','','Trying to learn flakes.','','','','','','','','','','Y','','','','N','Not ready yet.','N','Y',NULL,'Not so much time to tinker and docs a bit too harsh for me :(','Still wanna declarative and reproducible OS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Thank you!\r\nAnd keep doing great work!'),(1971,'1980-01-01 00:00:00',5,'en','1506107831','A2','A4','male','','','','','','Y','Y','','','','Y','','','Y','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','After years on Arch Linux and moving to Ubuntu, i felt to frustrated using such a limited distro, and a search on google, find NixOS, and since then, only use NixOS and later on (two years now) using Guix too. ','','Y','','','','','Y','Y','Y','Y','','','','','Y','','Y','Y','','flakes \"workflow\" and lock files','Experimental Commands as a whole','home-manager','official integration with Guix','Guix.','','','','Y','Y','','','','Y','Y','','','','','','Y','Y','','','N','being lazy and lack of time...','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Arch and Ubuntu weren\'t good enough','Y','','Y','Y','','','','Flakes','home-manager','','Guix integration','Guix','Y','Y','','','','','','Y','','','xmonad','','',''),(1972,'1980-01-01 00:00:00',5,'en','2087823343','A5','A2','male','','Y','','','','','','','Y','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','Y','Y','Y','Y','','','','','','','','','','','Y','','','','','','Sway','','',''),(1973,NULL,3,'en','169678946','A2','A2','male','','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','Y','','Y','','','N','N','Tangible/visible advantages for using it on my desktop over pacman which is already seems to be working well. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','(same as previous but with Arch)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(1974,'1980-01-01 00:00:00',5,'en','1276313045','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','Y','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','','','','','','','','','Y','Y','','','','','Y','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','Y','','','','','Y','','Y','','','','','',''),(1975,'1980-01-01 00:00:00',5,'en','1498922938','A7','A3','male','','','','','Y','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted a reproducible environment for everything','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','','Y','','','','','','Many more tears','','','','Y','Y','','Y','','','','','','Y','','elm2nix (https://github.com/cachix/elm2nix)\r\nnode2nix (https://github.com/svanderburg/node2nix)\r\ncabal2nix (https://github.com/NixOS/cabal2nix)','Y','Y','','','N','Just never had the opportunity to do so','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','Y','','','','','','','','','','Y','','','','Y','','','','','xmonad','','',''),(1976,NULL,1,'en','621862371','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','Y','','Y','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1977,'1980-01-01 00:00:00',5,'en','1945571624','A6','A3','-oth-','Apache attack helicopter','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to be able to change system settings and revert them without worrying about remembering all 3 files i edited. ','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Reproducible system (nixos) ','Reproducible projects (nix-shell)','Esoteric functionality, like specialisations allow me to change my system font every 5 mins','I would remove people like infinisil, grahamc and other toxic reviewers who spend more time in intellectual masturbation and less in getting shit done. It looks like grahamc is undergoing some kinda gender dysphoria and rather than acting all badass he needs to sit at home and chill. ','Rat poison (not the wm)','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as the precious answer for nix. ','Y','','Y','Y','','','','Specializations','','','Same as previous answer for nix','Same as answer for nix','Y','','','','','','','','','','none+i3','Nix cached shell','','Good project, elitist, full of themselves GitHub reviewers '),(1978,'1980-01-01 00:00:00',5,'en','1270880870','A2','A3','male','','','','','','Y','Y','Y','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Nix!','','Y','','','Y','','Y','','Y','Y','','Y','','','Y','Y','Y','Y','','All configuration in one repository, guaranteed!','fast to get back to a working machine, after it would die (never happened yet!)','Atomic updates and rollbacks','Multiple flakes referencing each other in one repository are a little bit messy (need multiple updates...)','Arch + a lot of BASH','','','','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','NixOS!','Y','','Y','Y','','Y','','','','','','','Y','','','','','','','','','','Xmonad','Home manager','nixops',''),(1979,'1980-01-01 00:00:00',5,'en','893089621','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','blockchain engineer','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','heard about it and then found a couple of work guys who used it so could ask them for help. First experience was not great as put it on a macbook pro with touch bar. Now I have a standard desktop and much better.','','','','','','','Y','','','','','','','Y','Y','','','','','rollback (fearless twiddling)','reproducability','declarative','better command line errors: Did you mean X? like rust errors.','ubuntu','','','','','Y','','','','Y','','Y','','','','','Y','','','','N','I don\'t really know the language well.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','answered already','Y','','','','','','','','','','','','','','','','','','','','','','','','','it\'s good and getting better over time.'),(1980,'1980-01-01 00:00:00',5,'en','643465911','A2','A2','male','','Y','','','','','Y','Y','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','','Y','Y','','','','','Y','Y','Y','Y','','','','','','','','','','','','','Y','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','Y','','','','','','','','','Y','','','','','','','','','','sway','','',''),(1981,NULL,0,'en','1503891911','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Switched from Arch around 2018 to NixOS (which was also my first experience with the Nix package manager) since I was getting tired of the whole system breaking randomly when updating. I also have a background in mathematics and a lot of experience with functional programming, so I find the concepts behind Nix very exciting.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1982,'1980-01-01 00:00:00',5,'en','2074784962','A1','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','','Y','','','','Home desktop, laptop','','Y','Y','','Y','','Build isolation','Repeatable builds','Ease of trying out software without committing too hard','Polished documentation and tutorials that are consistent and easy enough for everyone to follow.','I would become a woodworker and live in the forest','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Liked the idea of having a config file which can reliably reproduce my OS. After a brief and disastrous attempt at using Chef to manage my desktop, NixOS was a breath of fresh air.','Y','','Y','','','','home laptop and desktop','Declarative system configuration','Fearless rollback of system updates, which means freedom to experiment','Being able to manage the state of multiple machines. Can easily share modules, test updates on one machine before rolling it out to another, etc','','Guix','Y','','','','','','','','Y','Y','','','Docker image generator. Will give it another go when I have more time','I love you all!'),(1983,NULL,1,'en','1598041701','A2','A5','male','','','','','','Y','','','','','','','','Y','','','','Y','','','','','','','','','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1984,NULL,1,'en','1881072877','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1985,'1980-01-01 00:00:00',5,'en','173552358','A2','A2','male','','','','','','','Y','Y','','','','','','','','','','Y','','','Y','','Y','','','','Y','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Better desktop emphasis.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1986,'1980-01-01 00:00:00',5,'en','616549501','A2','A3','male','','','','','','','Y','','','','','','','','','Y','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Came from Gentoo. Wanted to try another rolling release and the promise of a declarative language for the configuration with easy rollbacks sounded really interesting.','','','','','','','Y','','Y','','','','','Y','Y','','','Y','','Declarative configuration in a single file for my whole system. It\'s a lot easier to manage custom configuration and not forget about it.','Declarative environment (nix-shell) to have a clean separation between my projects.','Being able to rollback changes','Add typing or better IDE-support to the Nix language, it\'s really hard to understand what I\'m manipulating. Starting with the nix-pills it looks relatively easy, but in practice, I find it close to impossible to do anything without searching for documentation or on the nix forum. For the context, I wrote Nix in several simple overlays and nix-shells.','Gentoo with specific tools like pyenv to manage project environments.','','','','','','','','','','','','','','','','Y','','','','N','Nothing, in particular, I never had the need for it yet.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Came from Gentoo. Wanted to try another rolling release and the promise of a declarative language for the configuration with easy rollbacks sounded really interesting.','Y','','','','','','','Declarative configuration in a single file for my whole system. It\'s a lot easier to manage custom configuration an d not forget about it.','Declarative environment (nix-shell) to have a clean separation between my projects.','Being able to rollback changes','Add typing or better IDE-support to the Nix language, it\'s really hard to understand what I\'m manipulating. Starting with the nix-pills it looks relatively easy, but in practice, I find it close to impossible to do anything without searching for documentation or on the nix forum. For the context, I wrote Nix in several simple overlays and nix-shells. ','Gentoo','','','','','','','','','Y','','','','','NixOS is really great but IMHO the learning curve for Nix is really steep because of the language. When facing issues in other languages I can usually dig inside the code to understand the logic with the help of documentation. Here I can\'t or don\'t know how to do it efficiently even though I\'ve read half of the nix-pills and wrote some nix-shell & overlay scripts. It feels like learning bash to me. The big difference though is that I\'m using bash almost daily, professionally. For Nix, it\'s once in a while. In the end, it\'s not a deal-breaker for using NixOS to me because I\'m proficient enough in Linux to be able to fix my issues with Google\'s help, but using the more advanced features/customization are usually out of reach for me given the time I would need to spend learning Nix.'),(1987,'1980-01-01 00:00:00',5,'en','1025443960','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1988,'1980-01-01 00:00:00',5,'en','1294062080','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','We started to use Nix at work so I needed to start using the Nix cli. I first watched Burke Libby\'s Shopify talks and started using it on macOS.','Y','','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','Y','','Scoped dependencies. I use direnv + Nix to specify dependencies per project and automatically get a Nix shell','Conflict-free storage (input or content addressable)','Easy package management without dealing with weird conflicts all the time','That one sqlite database :)\r\nCaveat: my usage of Nix at work is slightly outside the bounds of regular Nix usage, so that sqlite database causes some issues for us.\r\n\r\nMore detail: We want to be able to share a large (mostly immutable) Nix store across thousands of VMs/containers. The sqlite database makes it difficult to provide this functionality. For example if we used an NFS for `/nix/store`, adding a directory is not sufficient for making that package valid.','For work: tons of Docker container, maybe ostree','','','','Y','Y','','Y','','','','','Y','','Semaphore CI','https://github.com/svanderburg/node2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was enjoying Nix on macOS so much that I switched over completely to NixOS to force myself to get even more familiar with it. I have enjoyed it so much that I am not switching back to another distro.','Y','Y','','Y','','','','Declarative system configuration via a unified language','Easy rollbacks that allow for fearless experimentation','Tons of services that are easy to enable and configure','I personally don\'t mind writing Nix by hand, but I think for broader adoption Nix needs a better interface for end-users than learning a purely functional language.','macOS, I was a die-hard macOS fan before NixOS','Y','','Y','','','','','','','Y','xfce+i3','Replit (I work there)\r\nhome-manager\r\ndirenv\r\nlorri\r\nnixos-shell','flakes, off and on. I will eventually switch most of my local setup over to flakes but I haven\'t gotten around to it.','Keep up the great work, I\'m a huge fan :)'),(1989,'1980-01-01 00:00:00',5,'en','2035022561','A2','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I decided to reinstall Linux on my laptop, because I\'d encountered some kind of disk corruption or misbehaving kernel module in my Ubuntu install and I wasn\'t sure that I\'d fixed the problem entirely. I\'d heard about NixOS on Twitter from people who use it, and after doing some research I decided to give it a try.','','','','','','','Y','','','','','','','','Y','Y','','Y','','Reproducible (or hopefully-reproducible) package building, as a means to a reproducible system','','','I\'d make it use the XDG directories (~/.local, ~/.config, ~/.cache) rather than ~/.nix*, and I\'d rewrite history to clean up the awful mess of old nix-* commands and new nix subcommands; the whole situation with the Nix 2.4 backwards incompatibilities was really unfortunate to watch. nix-store\'s command-line interface is confusing and hard to remember (what\'s a referrer? or a closure? I have to look at the manual every time I want to do effectively an `aptitude why`), as are all the other nix-* commands (it always takes me ages to work out the right nix-build invocation to build a nixpkgs package from local sources), so I\'d magically clean those up or add some sugary aliases to make them more understandable without a PhD.','Probably a Debian derivative, and maybe something like Ansible or Puppet to try and imitate Nix\'s declarativeness.','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','As I mentioned previously: I got sick of Ubuntu, had heard of NixOS on Twitter, and decided I would give it a go. I wanted a reproducible system, and I wanted to be able to deploy parts of my system (e.g. dotfiles, but also programs that weren\'t installed on the other system) to other computers easily.','Y','','','','','','','A reproducible system, where I can describe my entire system by one centralised configuration repository.','The confidence to make changes, knowing that I can rollback to a previous system if something goes wrong. (though with home-manager and the whole OpenGL thing, this is not really quite the case in reality, sadly)','Being able to easily and persistently make changes to the software installed on my machine, by writing patches or maintaining a fork or even building from local sources, without having to deal with complicated packaging formats like .deb and without worrying that my changes will be overwritten by a system upgrade.','I would magically fix the whole deal with \"where are overlays read from\". I remember reading (on the wiki?) that some things allow the overlays path to be a directory, some require it to be a file, and so on: I would magically unify the behaviour of all tools and document exactly how it works, so I could write overlays and have confidence that they would be used everywhere, by nix-env and nixos-rebuild and home-manager and everything else.','Probably Ubuntu or another Debian derivative, maybe with some configuration management thing like Puppet or Ansible, or maybe just the same old dotfile management things and hacky bash scripts as ever.','Y','','','','','','','','','','i3','home-manager, and also Lorri (though I use Lorri mostly only for one project, because I keep forgetting that it exists, and also because I don\'t like how you have to keep pressing enter at an empty shell prompt until direnv decides to give you the environment variables), and occasionally mach-nix when I need to package a python application.','many of the *2nix things; I never really understand how to use any of them except for what is already in nixpkgs, and even then the packaging situation for e.g. rust is quite bad (having to rebuild every dependency on every change to the top-level crate is *awful*)','nix and NixOS are *so cool*! I was reading about them before I installed NixOS like \"there is no way that this can work, just grepping for store references\" but it is actually the most amazing operating system I have ever used. I hope that in the future, the documentation can be improved (a never-ending task, I know), and that complicated broken things like Nvidia GPU support inside LXC containers can be fixed, so that I can use NixOS for everything.'),(1990,NULL,1,'en','966590175','A3','A3','male','','Y','','','','','','','','','','','','','','Y','','Y','','','Y','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1991,'1980-01-01 00:00:00',5,'en','817449804','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','OpenBSD','N','Y',NULL,'It seemed too complicated. Too much code under the hood.','Simplified implementation. Installation on a broader range of platforms (OpenBSD, NetBSD, Illumos, etc)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Too complicated. Too much code under the hood.','Simplified code base. Easier installation. Wider platform support (OpenBSD, NetBSD, Illumos, etc)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Even though I don\'t use Nix regularly, I love the idea and am glad to see you making progress towards a more predictable package manager.'),(1992,'1980-01-01 00:00:00',5,'en','411277140','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','','Y','','For my system configuration','A2','I was looking for a Linux distribution without FHS and with a large amount of packages. NixOS was appealing to me because I am most proficient in functional programming languages.','','Y','','','','','','','','','','','Desktop','','Y','','','Y','','Non-destructive package management','Powerful configurability','The scale of nixpkgs','I’d make it easier to integrate Nix with imperative workflows (e.g. APIs to Nix configs).\r\nI’d implement something like Guix’s grafts.\r\nI’d make it easier to install or package other external packages (e.g. AppImages, Flatpaks, raw binaries, installers).\r\nI’d add an easy-to-use multi-purpose multi-paradigm powerful GUI interface for all Nix, NixOS, and nixpkgs systems.\r\nI’d add loads of builtins (e.g. startsWith, mapAccumL, matrixMultiply, generateAttrs, or so).\r\nI’d make it easy to have a pure system-wide configuration while allowing non-root users to have their own configuration, while retaining portability (e.g. allowing skeleton home-manager configs & auto-copying user configs to /etc/nixos)\r\nI’d make it easier to mix nixpkgs and package versions, allowing users to upgrade only some packages, even in flakes, and for nixpkgs to refer to older versions (e.g. by restructuring it or allowing recursing into the history)','I’d use other package managers, a dotfiles repository, and maybe Ansible & Direnv for building','','','','Y','Y','','','','','','','','','','cabal2nix: https://github.com/NixOS/cabal2nix','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','As a daily driver','A2','I wanted a non-FHS Linux distro with a large package repository and NixOS fit the bill perfectly. I was fed up with either having to deal with outdated repos, or having to manually manage the install locations, which is error-prone and feels hacky. In NixOS, everything is in the store, and installed things are in /run/current-system/sw (defined by the configuration). That’s neat, though sometimes nixpkgs is still behind the upstream version on some packages (which is frustrating, but I’ve opened a few PRs). I’m also most proficient in functional languages, so Nix was a very appealing language.','','','','','','','Desktop','Portability of configuration','Size of nixpkgs','Powerful configurability','I’d make it easier to integrate Nix with imperative workflows (Imperative settings to home-manager or system configuration)\r\nI’d implement something like Guix’s grafts and make it easier to mix nixpkgs and package versions, allowing users to upgrade only some packages, even in flakes, and for nixpkgs to refer to older versions (e.g. by restructuring it or allowing recursing into the history)\r\nI’d make it easier to install or package other external packages (e.g. AppImages, Flatpaks, raw binaries, installers).\r\nI’d add an easy-to-use multi-purpose multi-paradigm powerful GUI interface for all Nix, NixOS, and nixpkgs systems.\r\nI’d make it easy to have a pure system-wide configuration while allowing non-root users to have their own configuration, while retaining portability (e.g. allowing skeleton home-manager configs & auto-copying user configs to /etc/nixos)','An Ubuntu derivative, or Fedora, or Arch','Y','','','','','','','Y','','','','home-manager','','No'),(1993,'1980-01-01 00:00:00',5,'en','116783614','A2','A3','male','','','Y','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It was recommended to me by CEO of company I work at.','Y','Y','','Y','','','Y','Y','Y','','','Y','','Y','Y','Y','','Y','','Deterministic builds','Ease of creating CI builds','Ease of creating dev shells','Interactive discovery of variables after crashes. Like nix repl but after a crash. So I can explore the data that caused it.','Make','','','','','Y','','','','','Y','','','','','https://github.com/nix-community/yarn2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','After working with Nix as package manager at work to build a mobile application I realized NixOS exists and shortly after trying it realized it\'s absolutely fucking amazing.','Y','','Y','','','Y','','Better secrets management/injection','Better NixOps support','Better integration with tools like Terraform','Proper support for managing secrets in configuration','Debian','Y','','','','','','','','','Y','Awesome WM','','','Thanks for all the work!'),(1994,'1980-01-01 00:00:00',5,'en','799420565','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Dependency pinning','Consistent development environments','','','','','','','Y','Y','','Y','','','','Y','','','','cabal2nix, haskell.nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','','','','','','','','','','Y','Y','','','','','','','','','xmonad','niv, lorri, agenix','',''),(1995,'1980-01-01 00:00:00',5,'en','900012121','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Reproducibility & declarative configuration','Y','Y','','','Y','','Y','','Y','Y','','Y','','','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','Y','','','','','','','Y','','','','','','','','Y','','','','',''),(1996,'1980-01-01 00:00:00',5,'en','1662063429','A5','A4','male','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I used Nix first when I started using NixOS.','','Y','','','','','Y','Y','Y','','','','','','','Y','','Y','','Deploying a binary package closure','dependency graph (ala `nix why-depends`)','build jail (input isolation)','This is a bit of a copout but I would change all nix people to have +1 compassion for others so that the community thrives to a greater degree.','pyenv, jenv, bash scripts, etc for managing dependency environments\r\ndocker for deployment','','','','','Y','','','','','Y','Y','','','','We tried https://github.com/nix-community/mavenix but struggled with handling responses from non-conformant maven repos in the wild.','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','My work laptop ran Debian for many years. One day I had a problem with certain system packages (OpenSSL). I saw NixOS claiming to manage OS dependencies like code! This sounded like a wonderful, horrible, very good bad idea. That was the sort of thing I did every day, managing development environments for projects in javascript, java, and C++.\r\n\r\nIt took me a few weeks of intense exposure to feel like I could do basic activities with nix language and nixpkgs patterns and I have been running NixOS ever since.\r\n\r\nFrom there it grew into \"hey we have to manage this system (at work), that seems perfect to throw NixOS at it\", and now about half of our infrastructure runs on this ecosystem.','Y','Y','Y','','','','','Modules (is this technically part of Nixpkgs?)','Declarative server configuration management','','','guix? I bet I would end up back using macOS or Windows if NixOS didn\'t exist.','Y','Y','','','','Y','','','Y','','','At work, we regularly use niv (https://github.com/nmattia/niv/), because much of our nix code there was written in 2018/2019 (before flakes were readily available). We haven\'t found the justification to migrate forward yet.','','Thank you for putting this survey together!'),(1997,NULL,NULL,'en','1242505903',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1998,NULL,NULL,'en','620474333',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1999,'1980-01-01 00:00:00',5,'en','1896402023','A1','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','Found it via articles posted to /r/haskell and lobste.rs and it seemed like a good fit for my homeserver/devbox. then i started expanding it into python/haskell development and system administration.','','Y','','Y','','','Y','Y','Y','','','Y','','Y','Y','Y','Y','Y','','development shells for writing software','building packages in CI','building/deploying system configurations','Better support for authentication tokens, especially with flakes.\r\nBetter tooling for exploring closure sizes.','poetry, terraform and ansible','','','','Y','Y','','','','Y','','','','','','poetry2nix npmlock2nix','','Y','','','N','lack of time. I\'ve made one small contribution before, and the turnaround time for code review was pretty long.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','started using it for a personal server, then converted my personal laptop, then containers and VMs','','','Y','','','Y','','reproducible config in VCS','easy service setup from configs','rollback when I inevitably break things','cleanup config namespaces. config spread all between services/programs/security\r\nwhy are wayland settings under services.xorg?','Probably still be on Ubuntu because i\'m lazy','Y','','Y','','','','','','Y','','','','node2nix cargo2nix naersk','Thanks for the great OS and Tools! <3'),(2000,'1980-01-01 00:00:00',5,'en','923615176','A5','A4','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A4','Wanted to try out new approaches to software management.','Y','Y','','','','','Y','','Y','','','','Personal computer','Y','Y','','','','','Configuration is plain text files','Per-project dependencies don\'t change the system state','nixpkgs cache is good; installing most things doesn\'t have to build them locally','Have a simpler and more understandable language and API for writing nix expression.','Mac: homebrew\r\nLinux: not sure','','','','','','I tried nix-commands, but it broke my system, so I had to turn it off','','','','','','','','','cabal2nix.\r\nI\'ve tried node2nix, but it never really worked for me.','','','','Hand-written nix files in my project','Y',NULL,'N','Y',NULL,'Making changes to the system was too tedious (would require days of research), and lack of confidence in the support for up-to-date proprietary GPU and firmware updates when compared to Ubuntu.','Confidence that there is an active maintenance team supporting and updating a standard and complete desktop environment experience (preferably KDE Plasma).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'niv, lorri','home-manager','https://nix.dev is a great resource. That and the official manual have greatly improved in the past few years. But still the current state of documentation is very confusing. It still takes me hours to research and figure out how to make basic changes to my setup, largely because the documentation for one particular tool assumes that you already have knowledge of everything else in nix and doesn\'t re-explain the basic concepts. Also there is no place to find a comprehensive \"here\'s how to get a basic setup\" -- there are just bits and pieces scattered all over the internet that I have to find and piece together myself.'),(2001,'1980-01-01 00:00:00',5,'en','1619307479','A2','A7','male','','','','','','','','','','','','','','','','','','','','','','','','','retired scientist','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','several horrible update experiences in linux distros','','Y','','','','','Y','','','','','','','','','','','Y','','safe updates','declarative os config','easily customized packages','Remove historical crud and concentrate on a small number of best practices in doc','pkg manager that makes it easy to buid/customize your own packages. Maybe I\'d relearn pkgsrc. guix?','','','','','','none so far, want to learn flakes','','','','','','','','none','','Y','','','','N','still don\'t feel competent enough','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I\'d had enough of disastrous updates in Ubuntu/Arch etc.','Y','','','','','','','safe updates and ','declarative os config','ease of package customization','better documentation on the differences between nixos modules and packages, and where the nixos-specific stuff relate. Better documentation on kernel modules etc.','I\'d try something completely different like freebsd','Y','','','','','','','','','','lxqt','can\'t think of one','none i\'d say','It\'s been said many times but it\'s all too true: PLEASE IMPROVE THE DOCUMENTATION. In particular, now that flakes are pretty stable, tell us how to include them in a traditional workflow, if they are useful there.'),(2002,'1980-01-01 00:00:00',5,'en','1485276362','A2','A3','-oth-','Trans','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was attracted to the reproducibilty','','Y','','','','','Y','','Y','','','','','','Y','Y','Y','','','Ability to provide a very up to date compiler','','','','conan','','','','','Y','','','','Y','','','','','','https://github.com/nix-community/poetry2nix','','Y','','','N','I find it too difficult to contribute','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2003,NULL,1,'en','13772497','A2','A3','male','','','','','','Y','Y','','','','','','','','','Y','','Y','','','','','Y','Y','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2004,'1980-01-01 00:00:00',5,'en','1625284416','A2','A3','male','','','','','','Y','Y','','','','','','','','','Y','','Y','','','','','Y','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Was looking for a solution to reproducibly configure my systems and better manage my dotfiles','Y','Y','','','Y','','Y','Y','Y','','','Y','','Y','Y','','Y','Y','','','','','Better documentation (especially on containerisation, system security and firewall configuration)','Probably Guix\r\nOr some unreasonbaly complex Ansible setups (way more tooling setup efforts)','','','','Y','Y','','','','','','','','','','None','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Was looking for a solution to reproducibly configure my systems and better manage my dotfiles','Y','Y','Y','','','Y','','','','','','Probably Guix\r\nOr Alpine with configuration managed with Ansible','Y','Y','','','','Y','','','Y','Y','bspwm','','','Thanks! I am so happy I made the plunge and switched to NixOS'),(2005,'1980-01-01 00:00:00',5,'en','1336610103','A5','A4','male','','','','','','Y','','','','','Y','','','','','','Y','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','Isolated environments','Predictable builds','Easy configuration','Clearer Hydra status for unstable. Faster evaluation times. Clearer system profile diffs. Very brief Changelogs for big merges / \"rebuild the world scenarios\".','Arch','','','','Y','Y','','Y','','','','','','','','node2nix, bundix, pip2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Wayland + Sway','','',''),(2006,'1980-01-01 00:00:00',5,'en','1569938674','A2','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I work at the Finnish Public Broadcasting company. I often work on experimental projects starting with interviewing future users and then adding something to our cloud creatively connecting microservices, CMS:es and data-infrastructure. I\'m writing in which ever programming language is needed. In my freetime I\'m learning Cardano smart contract programming on Haskell. Nix is the best tool I\'ve used for multilingual programming dependency management.','Y','','','','','','Y','','','','','','','Y','Y','','','','','It reduces the need to remember differences of different development environments.','It reduces the fear of messing things up while testing some new technology.','Declarative management of my laptop.','Make it more appealing for enterprises to use - better support services. So that I could promote it more at work.','Homebrew, Docker, dotfiles','','','','','Y','','','','','','','','','','','','Y','','','N','I\'m quite new to Nix so I\'m still digesting it.','N','N','I wan\'t to run a remote PostgreSQL-server for a hobby project. I might use NixOS but I\'m a little scared if my admin skill will be enough to make it secure. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://search.nixos.org/packages','Nothing yet.','I\'m using Org Mode a lot. I haven\'t got code blocks work with Nix but the value to me would be massive.'),(2007,NULL,NULL,'en','806580120',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2008,'1980-01-01 00:00:00',5,'en','427787170','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','N','Y',NULL,'Nix tooling doesn\'t integrate with any programming language. It either defines the set of packages or uses hacky 2nix programs that are a maintenance burden. Nix never gets out of the way of developers. Real support from programming languages is required.','Proper integration into mainstream languages instead of code generation, hacky code parsing and FODs being available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Too much of a hassle to do my development. The linker and compiler wrapper scripts are a gross hack. \r\n\r\nNot compatible with any development workflow that involves native code.','If programming languages were properly integrated instead of bolted on.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2009,'1980-01-01 00:00:00',5,'en','390654010','A1','A3','male','','','','','','','','','Y','','Y','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Talking about this from a NixOS because that\'s what initiated my use of Nix in OSX.\r\n\r\nI saw NixOS while I picking a distro for my Linux desktop. Someone running Arch also gave me a run down of some of the potential benefits (not that they run it themselves). This was all about a year ago. I ended up choose Void Linux but as of... 5 days ago I started using NixOS because:\r\n- I was having this annoying issue where installing a package called \"mesa-dri\" would suddenly break my window manager. I knew, because of the way NixOS works, that this wouldn\'t be an issue.\r\n- A bunch of things that theoretically should be working (like the latest Nvidia drivers working with Sway) weren\'t and it was very perplexing. I figured I\'d have more luck with NixOS because of the way dependencies are resolved (it did fix my issue).\r\n- It was getting a little tiring waiting for package updates to come through in Void Linux. It\'s a smaller community and updates take a lot longer because they don\'t have infrastructure in place to allow fragmentation of dependencies.','Y','','','','','','Y','Y','','','','','','','','','','Y','','Reliable dependency resolution','nixpkgs is awesome: Centralised, (somewhat) tested, well maintained, etc.','Runs on MacOS','In order:\r\n - Make the NixOS documentation WAY easier for newcomers. Beyond the very initial installation/getting-started documentation, it\'s infeasible for someone who hasn\'t decided whether they want to use NixOS or not. I was close to giving up until I found out it fixed my Sway+Nvidia problem. There needs to be a \"I CBS/NixOS for dumbies/TL;DR\" documentation. I found random examples from GitHub MUCH easier to learn from than the doco itself.\r\n- I\'d steer away from marketing Nix as \"pure\"/\"functional\"/\"Haskell inspired\". I think for most people, that makes them think \"niche\", \"difficult\", \"something I don\'t know\" when really, for most people, their Nix configurations are just that: Config files, nothing special. That\'s a good thing - Simple is good! I would instead focus more on what it means to be functional/immutable/etc - Like reliability and what not.\r\n- Considering nixpkgs has darwin channels, it makes no sense for nix-darwin (https://github.com/LnL7/nix-darwin) is a third party package. I think you\'d get a lot more users waving the Nix banner if declarative configuration MacOS was better supported and was easier to set up. nix-env is still better than brew but I think the magic of Nix is its declarative config.\r\n- I would try solve the problem that flakes https://www.tweag.io/blog/2020-05-25-flakes/ solve\r\n- I\'d make easier to specify exact versions of particular dependencies without having to use fetchXYZ- I\'m make it so that NixOS wasn\'t directly coupled to systemd. I\'m not against systemd but it should still be as uncoupled from NixOS and the configuration as possible.\r\n- I would simplify terminology and concepts. The worst (though, experimental) offender is \"Flake\" - Meant nothing without reading the blog about Flake first. There are other cases though, the concept of \"channels\" - Which I feel like should just be a part of the declarative config somehow. I\'d make the CLI --help more concise rather than a showing a gigantic man page. I\'d try use as few terms as possible, for example, I would change \"nix-shell --install/uninstall\" to \"nix-shell\"\r\n- I\'d make Nix feel more like a package manager like Yarn 3 which I find similar in some of its concepts and what it aims to solve over its predecessors & peers but much much learn and easier to use (though I understand Yarn\'s purpose is a bit different to Nix and that Nix has to tackle and solve problems that Yarn doesn\'t).\r\n','Void Linux\'s package manager on Linux and brew on MacOS.','','','','','','','','','','','Y','','','','I don\'t know what 2nix is. Did a select something in the survey that I didn\'t mean to? My bad if I did.','','','','','N','I only just started using NixOS roughly a week ago. I\'ll probably contribute at some point? Maybe :3','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I saw NixOS while I picking a distro for my Linux desktop. Someone running Arch also gave me a run down of some of the potential benefits (not that they run it themselves). This was all about a year ago. I ended up choose Void Linux but as of... 5 days ago I started using NixOS because:\r\n- I was having this annoying issue where installing a package called \"mesa-dri\" would suddenly break my window manager. I knew, because of the way NixOS works, that this wouldn\'t be an issue.\r\n- A bunch of things that theoretically should be working (like the latest Nvidia drivers working with Sway) weren\'t and it was very perplexing. I figured I\'d have more luck with NixOS because of the way dependencies are resolved (it did fix my issue).\r\n- It was getting a little tiring waiting for package updates to come through in Void Linux. It\'s a smaller community and updates take a lot longer because they don\'t have infrastructure in place to allow fragmentation of dependencies.','Y','Y','Y','','','','','Same points as my \"Nix\" section','','','Same points as my \"Nix\" section','Would have looked into https://guix.gnu.org/en/download/ or stuck with Void Linux.','Y','','','','','','','','','','sway','','','NixOS is great. Make it more accessible, faster, simpler to configure and I it\'ll continue gaining adoption :)'),(2010,'1980-01-01 00:00:00',5,'en','1598415337','A1','A5','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','N','Y',NULL,'I use the package manager that comes with my distribution. Nix for anything that\'s not available from my distribution.','If I went back to using NixOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'1. Wrong philosophy. It aims to bold down everything in the hope of reducing problems. That\'s the same approach taken by enterprise software. \r\n2. Evolution is painful. If I need to update one program I often get to recompile most of the system. \r\n3. Errors are obscure, because one cannot see what went wrong in programs themselves.\r\n4. No path to learn. Assumes knowledge of all things Linux, while hiding all these things from the user. So someone who comes to NixOS without a lot of experience in a non-NixOS environment simply cannot learn or understand what\'s going on.\r\n5. Maintaining a personal computer becomes a full time job.','You would need to change the Nix\'s architecture and goals. I like the declarative part, but I really dislike the \"bolt everything down\" mentality. Maybe in a perfect world you could test all permutations of packages to see what could be compiled with what, instead of having one snapshot that drags along, breaking things and having to be manually fixed in the process? Making everyone miserable?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','NixOps. Good idea, but... Same problems as NixOS.','I have seen lately many people who are NixOS supporters who, in a pinch, choose other systems to do real work. I have been exposed to real work under NixOS. That has hurt me enough.'),(2011,'1980-01-01 00:00:00',5,'en','964006579','A1','A3','male','','','','','','','','','','Y','Y','','Y','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I\'ve been using Arch for home/work for around 4 years, it\'s a great OS but once setup it feels fragile (not the OS, but the it\'s current state). I\'ve got a git+stow dotfiles for much of my config, but I want to extend that reproducible, sync-able config to all my computers so I have more control and visibility of what state they\'re all in. NixOS seems to be the answer, and I\'m enjoying it so far, but I\'m only a couple months in.','','Y','','','Y','','Y','','Y','','','','','','','','','Y','','Reproducible systems and projects','Making the state of an entire system visible and version control-able','Good selection of packages in nixpkgs','More documentation, I don\'t know exactly what it would look like, but if I didn\'t have to search through nixpkgs to find out how to configure packages that would be amazing.\r\n\r\nAlso if rnix-lsp had the documentation from https://search.nixos.org/options available as autocomplete like it does for `builtins`that would be incredible.','Either Arch + ansible, or maybe GUIX','','','','','Y','','Y','','','','','','','','','','Y','','','N','I\'m still learning, I want to soon','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','same as nix on previous page','Y','','Y','','','','','same nix on previous page','','','same nix on previous page - documentation','same nix on previous page','Y','','','','','','','','Y','','i3','sops-nix','','NixOS is amazing, I want more but I love what exists already. Thanks all.'),(2012,'1980-01-01 00:00:00',5,'en','183200946','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Haskell\'s cabal command had some reference to nix in the help output so I checked it out.','','Y','','','Y','','Y','Y','','','','','','','Y','','','Y','','ephemeral shell environments to test new programs before installing them persistently','with flakes: the whole internet is my software repository; this feels like a loading code from everywhere into my shell (similar to a web browser loading web-apps on demand, without installation);','','I would add a \"standard\" folder and file structure with doc-comments for library code. In other languages there is a community standard for generating api docs from code (haskell->haddock, python->sphinx, php->phpdoc, java->javadoc, ...) and some conventions on directory structures and naming conventions.','Arch Linux + ansible','','','','Y','Y','','','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Haskell\'s cabal command had some reference to nix in the help output so I checked it out.','Y','','','','','','','declarative system configuration','some system management niceties that are not possible with other tools (e.g. with ansible, some might be possible with containers):\r\n- \"offline installations\": I can `nixos-rebuild build` and then later decide to `switch` which is not possible with apt/rpm/ansible ...\r\n- rollbacks of my system','','A sane way to handle secrets. There are some ideas in the wiki (https://nixos.wiki/wiki/Comparison_of_secret_managing_schemes) about until which a secret should be encrypted and when it should be decrypted (in git/during bulild/in the sore/at runtime). I envision a set of general nix-functions to transparently decrypt values at the appropriate time.','Arch Linux + ansible','Y','','','','','','','','','','awesome','I use flake-utils especially my NixOS system flake','',''),(2013,'1980-01-01 00:00:00',5,'en','864592068','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','','','','A3','','','Y','','','Y','','','','Y','','Y','Y','','','','Y','Y','','','','','','','','','','','Y','Y','','Y','','Y','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','Y','','','','','','','Y','','','','','','','Y','','','','','',''),(2014,'1980-01-01 00:00:00',5,'en','517714132','A4','A2','-oth-','NB','Y','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','The Haskell community forced me to do so :)','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','Y','','declarative system configuration','ephemeral shells with nix-shell','composability of flakes','Typed or statically checked nix expressions.\r\n\r\nIIRC Poetry2nix does not use PythonPackages of nixpkgs. Poetry2nix falls behind of nixpkgs for libraries that require special patches for Nix compatibility.','Arch with hideous shell scripts for system configuration.','','','','','Y','','','','','','','','','','poetry2nix ','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','The Haskell community made me do so. Also, maintaining dotfiles was getting cumbersome.','Y','','','','','','','Declarative system settings.','Home manager','Home manager again','No binary or script with exec(v)(e) calls instead of (p) variants works out of the box.\r\n\r\nIt is difficult to find the path of a file that has a standard path in generic distros. Say, finding /usr/share/X11/xkb/rules/base.lst takes me a good couple of minutes each time.','Arch with hideous shell scripts for configuration.','Y','','','','','','','','','','xmonad','','',''),(2015,NULL,NULL,'en','433649562',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2016,'1980-01-01 00:00:00',5,'en','1632972149','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Wanted a reproducible system configuration so I installed Nix alongside my base OS. My home is (partially) managed with Home Manager.','','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','Iron out many compatibility bugs between Nix and a foreign OS. (Notable example NixGL.)','Fedora.','','','','','','','','','','','','','','','dconf2nix\r\nbuiltins.fromJSON \r\nbuiltins.toSON','','','Y','','N','Low proficiency in Nix.','N','Y',NULL,'Does not support Nvidia graphic card as well as my current OS. Also, it seems to consume more battery (probably related to the previous point).','Different hardware.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Home Manager.','','Best of luck for everything!'),(2018,NULL,1,'en','689865543','A3','A3','male','','','','','','','','','','','Y','Y','Y','','','','','','','','','','','Y','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2019,NULL,1,'en','2140230069','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','','','','Y','','','N','Y',NULL,'Lacks systemd which the work I was doing at the time was dependent on.','Replace initd with systemd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2020,'1980-01-01 00:00:00',5,'en','786494943','A2','A2','-oth-','','','','','','','','','','','','','','','Y','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','Y','','','','','','','Y','Y','','Y','','Y','Y','Y','','Y','','','','','','','','','','','Y','','','','','','','','','','poetry2nix\r\nyarn2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','','','','Y','Y','','Y','','','','','','','','','','','Y','','','','','','','','',''),(2022,'1980-01-01 00:00:00',5,'en','1153449281','A3','A2','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','','','','','','Y','','','','','','','Y','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','Awesome','','',''),(2023,NULL,NULL,'en','1908639638',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2024,'1980-01-01 00:00:00',5,'en','466080886','A2','A3','-oth-','Non-binary','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','','','','','Y','','Y','','','','','','Y','','','Y','','Easy to specify and setup build environments.','','','','(Docker) containers','','','','','','','','','','','','','','','yarn2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Highly configurable system without the brittleness and having a single point for all configuration.','','','Y','','','','','Single point for (almost) all system configuration needed.','Huge amount of up to date packages.','','','Fedora/ Centos with (Docker) containers','Y','Y','','','','','','','','','Sway','home-manager and emacs-overlay both from the nix-community','',''),(2025,'1980-01-01 00:00:00',5,'en','1449803422','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I began using the Nix Packages collection on other Linux-systems out of curiosity. It worked well from day one.\r\n\r\nI then installed NixOS on a test-machine and after a month or so I used it as primary OS on >60% of machines. Nixpkgs on all :-)','Y','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Declarative development environments','`nix-shell -p\' to quickly try out tools','Ease and safety of upgrading and configuring the system','More documentation.','Symlinks... apk/apt; messy systems.','','','','Y','','','','','','','','','','','','','','','','N','I\'m still learning the basics.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','See previous answer.','Y','','Y','','','','','','','','','alpine','Y','','','','','','','Y','','','i3, sway','','','Thanks for these great systems -- I\'m learning more every day.'),(2026,NULL,1,'en','1539017837','A3','A2','-oth-','gender fluid','','','','','','Y','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2027,'1980-01-01 00:00:00',5,'en','1032807210','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was looking for good infrastructure as code programs to work with azure, kubernetes didn\'t cut it (this was in the helm1 era), the azure backend for terraform was really bad. It\'s ironic now, but at the time nixops was the most fully fledged solution to handle linux/azure ops. Of course then I fell in love with it and have used it for basically everything since','','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','declarative system configuration','pinned development environments','distributed builds','','Guix :P but aside from the obvious\r\n\r\nTerraform has gotten quite good, and kubernetes is getting better as well - for system management at least\r\n\r\nFor devshells I guess podman, direnv if I can get away with only using that. Language specific tools.\r\n\r\nBazel looks interesting as well for builds. I\'d probably learn yocto for single task OSs\r\n\r\nFor my personal computers probably gentoo?','','','','','','','Y','','Y','','','','','','yarn2nix\r\ngradle2nix','','','','composition','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','In Organizations','A3','NixOS was the main reason I started with Nix at all!','Y','Y','Y','Y','','Y','','Infrastructure as code','Atomic upgrades','Bespoke images','I would like more abstraction in services, if nixos was init agnostic it\'d be easier to use for some embedded applicaitions, a more stable crosscompilaition story (or at least building on different architectures). Abstractions over apache vs nginx. Secret handling being done properly in more modules','','','Y','','','','Y','','','','','i3','fenix, nix-output-monitor, nix-top, nix-portable, nix-bundle, niv, nixos-generators, nix-update','comma (broke), node2nix, npm2nix',''),(2028,NULL,2,'en','1976158229','A1','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2029,'1980-01-01 00:00:00',5,'en','1080798008','A5','A5','male','','','','','','','Y','','','','','','','','','','','Y','','Y','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','I heard about Nix at a conference, probably Lambda Conf in Boulder. I tried it out on a small project and loved it.','','','','','','','Y','','Y','Y','','Y','','Y','Y','Y','','Y','','Consistency - dev environment matches production','Experiment with different versions and configs quickly and confidently','','It\'s minor, but would be cool if Envoy were in nixpkgs.','I made more use of Docker before I found Nix.','','','','','','','','','','','','','','','My haskell projects use cabal2nix.','Y','','','','N','I’m not sure what I could do to help.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started with NixOS, so this is a repeat of my answer for Nix. I heard about NixOS at a conference, I think Lambda Conf in Boulder. I tried it out on a small project and loved it.','Y','','Y','Y','','Y','','','','','','Ubuntu and docker.','Y','Y','','','','','','','','','','','','Thanks for Nix & Company!!!'),(2030,'1980-01-01 00:00:00',5,'en','88700988','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','Some people at the Networking Society used NixOS and I was getting pretty tired of maintaining and Arch installation','','','','','','','Y','','Y','','','','','Y','Y','','','Y','','Being able to back-up and share the work I put into configuring my personal system','Project-specific environments and configurations','Package management','Nix is often written so as to abstract away the interesting parts of the langauge. It\'s a functional language and yet a typical Nix user will rarely call or declare a function, and in many cases will do so unknowingly since functions are often sneaky stand-ins for other concpets like imports. It feels like a very intentional choice to hide the functions and instead have the user write nix files that look more like a traditional key-value config file, but this tends to produce stack-traces which contain no code written by the user (always fun), plus Nix is well-known to have discoverability and understandability issues which are not helped by all of the important mechanisms of the language being hidden away, not to mention this style tends to produce needlessly verbose code:\r\nThe mkOption syntax is an especailly strange example of the lengths that Nix goes to hid functions from its users; it looks almost like a DSL, complete with runtime type-checking. Why not just make types a feature of the language? ','GUIX, probably, or Arch and I would just try to roll my own configuration management','','','','','Y','','','','','','','','','','','','','Y','','N','Arch made it really easy with the AUR; every package was its own repo and anyone could create a new one at any time. There were rules, of course, but if your package broke the rules it would just be removed at some point. There are so many extra steps to publishing packages that I don\'t want to do: I don\'t want to wait for git to crunch through an enourmous monorepo, I don\'t want to figure out what directory the package should go in, I don\'t want to create a pull request or really interact with github at all, I don\'t want to read the rules, I don\'t want to make a case for why my package belongs in nixpkgs, especially when calling a local package is so easy once you learn how to do it.\r\nI think flakes are a pretty promising answer to this problem, and I hope the Nix team doubles down on the distributed aspect of them, though there\'s still a problem of discoverability. A single command I could run that would add my flake to some sort of central tracker given its URI would be a dream.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Same reason I started using Nix','Y','','Y','','','','','','','','I really don\'t like doing `programs..enable = true;`, If I put a package in my systemPackages array NixOS should assume I want it to work correctly. If a program is too complicated to by used with systemPackages then maybe that\'s a problem with systemPackages.\r\nI also wish that NixOS would do more to be compatible with the standard ways of doing things on Linux. I wish when I logged in as an unprivilaged user it would just pop me in an FHS environment, and that everything worked as normal. I wish NixOS would populate /bin with more than the bare minimum, especailly when it doesn\'t seem to have any qualms with populating /etc even though it could get away with not doing so in many cases. Why use /run/current-system when you could just put things where programs expect them to be?\r\nNixOS is a really powerful tool for creating compatibility layers and specialized runtimes, it\'s a shame it doesn\'t work like that by default.','','Y','','','','','','','','','','dwm','','',''),(2031,NULL,NULL,'en','154266498',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2032,'1980-01-01 00:00:00',5,'en','1085338854','A1','A3','male','','','','','','','Y','Y','Y','Y','','','Y','','','Y','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Was an Arch Linux user, and doing updates sometimes breaks stuff. I heard about NixOS and how it improved the usual OS setup we all know. I decided to try it out and so far I have mostly a pleasant experience after overcoming the learning curve.','','Y','','','','','Y','','Y','','','','','','','Y','','Y','','declarative OS config','OS generations for rolling back','','improved documentation','ArchLinux or Fedora','','','','','','','','','','','','','','','','Y','','','','N','still on the Nix learning process','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','','','','','','','','','','','','','','','Y','herbstluftwm','','',''),(2033,'1980-01-01 00:00:00',5,'en','364114551','A2','A5','male','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','The idea of something properly declarative that could replace both DPKG/RPM and Ansible.','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','','','','Better documentation - specifically documentation that describes best practices and \"default\" working configurations. I think most Nix users spend too much time trying to track down options.','Debian, Ansible','','','','Y','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(2034,'1980-01-01 00:00:00',5,'en','2020208539','A5','A5','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','Engineering Manager','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A1','As an experiment really. I setup a new homeserver for NAS/Owncloud and decided to try NixOS for it. I\'ve recently setup an experimental dev environment for $WORK using nix-shell (I am also looking at Flakes and/or devshell for this but the old way still works and is better documented!)','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','','declaritive configs/packages (eg nixos)','repeatable dev environments','package isolation (eg alternative to containers)','Docs/Manual updated for the new nix command and/or flakes. More tutorials and/or ','Ubuntu is my goto distro for prodcution (though I run Arch on my Linux workstation ;) )','','','','','','','','','','','','','','','I don\'t but being both a Rails dev and a Go dev, I would use bundix and the go2nix tooling to package my software.','','','','','N','experience and no need for it at this time.','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','','','','Y','','','','','','','','More services integrated to be managed with configuration.nix','Ubuntu','Y','','','','','','','','','','','','',''),(2035,'1980-01-01 00:00:00',5,'en','597322987','A2','A3','male','','Y','','','','','','','','','Y','','','','','','','Y','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','','Y','','composability','reproducibility','isolation','* resource limits for derivations, e.g. execution time limit','I\'d don\'t see another existing replacement','','Y','','Y','Y','','','','Y','','','','','','https://github.com/nix-community/naersk\r\nalso looking for something to build android projects reproducibly','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','Declarative Configuration Management for full Systems','Abstraction (Enabling features/services while not having to know how they work, but always being able to find out)','NixOS Tests (they are beautiful. my colleagues use them on regular Linux as well)','I wish NixOS could prove that a running systems was built from a claimed configuration and that someone would give me a PhD for waving that wand.','I would use things like Fedora, Ubuntu and FreeNAS.','Y','','','Y','','','','','','','sway','home-manager','mach-nix',''),(2036,NULL,0,'en','1977215242','A6','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','N','N','I would like to try nixos. The main thing which attracts me is the large repository and the ability to rollback. I am new to Linux hence not that proficient in command line. If there was a user friendly way to install nixos I\'ll try it in a heart beat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2037,'1980-01-01 00:00:00',5,'en','982830812','A2','A5','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','N','N','I\'m still trying. It\'s hard to fight through the jungle. Too bad there are no books yet. A kind of best practices documented would be nice ...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I don\'t really have a use case for it',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2038,'1980-01-01 00:00:00',5,'en','980867318','A2','A2','male','','','','','','','Y','','Y','','','Y','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was trying some distros, and after experiencing the guarantees that NixOS provides, I couldn\'t use anything else.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Reproducible builds of software','Separate, version-locked development environment for each project','Easy cross-compilation','Stabilize flakes, improve support for nested flakes in a single repository','bash scripts','','','','Y','Y','','','Y','','','','','','','https://github.com/DavHau/mach-nix','','Y','','','N','I have not come across an issue which is easily fixable by me','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was trying some distros, and after experiencing the guarantees that NixOS provides, I couldn\'t use anything else.','Y','','Y','','','','','Declarative configuration of the operating system','Rollbacks to previous configs','Easy, reproducible deployments','Make systemd optional, support other init systems','GoboLinux','Y','','','Y','','','','Y','','','','https://github.com/numtide/flake-utils\r\nhttps://github.com/numtide/devshell','https://github.com/matthewbauer/nix-bundle',''),(2039,'1980-01-01 00:00:00',5,'en','486317450','A3','A3','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I was memed into it','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','','','Flakes','Overlays','','Add: An orchestration framework (imagine k8s but for multi-cloud nix fleets)\r\n\r\nChange: The docs\r\n\r\nRemove: The learning wall','Gentoo','','','','Y','Y','','','','Y','','Y','','','','https://github.com/NixOS/cabal2nix\r\nhttps://github.com/DavHau/mach-nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I was memed into it','Y','Y','Y','','','','','Flakes','Overlays','nix-shell','Add: a multi-cloud orchestration framework (thing k8s for NixOS microVMs)\r\n\r\nChange: the docs\r\n\r\nRemove: the learning wall','Gentoo','Y','','Y','Y','','','','Y','','','sway','The Nix Docker image','https://nixos.wiki/wiki/NixOS_Containers','Keep rocking!'),(2040,'1980-01-01 00:00:00',5,'en','1969183311','A3','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was tired of having my environment messy, broken Linux installs, my home server breaking and etc. But I really got engaged with it after I had the chance to use it at work: I could convince people it was a good idea, made an experiment and had nice results.','Y','','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','Contained package management and reproducible environment','Caching (shared links for duplicate packages I should say)','Versioning packages','','Thousands of lines of shell script with Perl.','','','','','Y','','Y','','Y','','Y','','','','https://github.com/DavHau/mach-nix <- sort of a 2nix I guess','','Y','','','N','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was always into Lisp, so I first got into Guix, then later on migrated to Nix due to a larger community. Although I really started with Guix, the story might apply to the essence of Nix: I was at work and my Arch updated a library I used on an update; as an attempt to fix, I tried my best to rollback the changes, but when I rebooted, my luks encryption broke due to a grub error I introduced with a bad gcc compilation. That locked me out and I had to run to finish an entire issue again on a Mac, and none of my scripts (shell, Perl and common lisp stuff) mostly wouldn’t work, my F# environment was inconsistent and all the terror you can imagine. After that day ao just dived into guix/nix','Y','','Y','Y','','','','','','','','Debian, because probably Guix wouldn’t exist as well','Y','Y','','','','','','','','','XMonad and StumpWM','','','Keep up the good work'),(2041,'1980-01-01 00:00:00',5,'en','178988381','A2','A3','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A friend told me about it.','','Y','','','','','Y','','Y','','','','','','Y','Y','','Y','','Declarative package and configuration management (home-manager & nixos modules)','Reproducible development environments (nix develop & flakes)','Lots of packages','Static types','Guix, though that probably wouldn\'t exist either :-)','','','','Y','Y','','Y','','','','','','','','hackage2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Xmonad','- home-manager\r\n- flake-utils\r\n- emacs-overlay\r\n- nixos-mailserver\r\n- nur\r\n- sops-nix','',''),(2042,'1980-01-01 00:00:00',5,'en','1985438825','A4','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','N','N','Learning it first',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2043,NULL,3,'en','552153888','','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','','','','','','','Y','','','','','','','Y','Y','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','',NULL,NULL,NULL),(2044,NULL,1,'en','2094564346','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2045,NULL,2,'en','1169370368','A1','A2','male','','Y','','','','','Y','Y','','','Y','','','','','','','Y','','','','','Y','Y','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was first introduced to the idea of dotfiles, after which I got into somewhat declaratively managing my system by using Debian packages to control system installations via dependencies instead of imperatively using apt et al, even having a primitive approximation of nix-shells using temporary package creation and deletion using scripts.\r\n\r\nThen I heard of Nix. I initially was turned away by the fact that I couldn\'t just jump right in to try various things, and the lack of Nvidia compatibility by default (ha, the usual Linux story) was a snag as well. But the next summer vacation I got, I dove into Nix pills and now cannot live without the ability to version control and declaratively manage my system. Even all my OCI container deployments previously done using Docker have been replaced with NixOS\'s virtualisation.oci-containers.','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','Declarative and reproducible builds and development environments','Declarative systems','Functional language','I would make Nix type-safe, and magic in even more documentation.','Probably OCI containers and Debian packaging.','','','','Y','Y','','Y','','Y','','','','','','https://github.com/NixOS/cabal2nix (though usually using callCabal2Nix)\r\nhttps://github.com/nix-community/bundix\r\nnix-prefetch-docker (does this count?)','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(2046,'1980-01-01 00:00:00',5,'en','1375773588','A2','A3','male','','','','','','','','','','','Y','','','','','Y','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','Needed to fix a broken package in nixos','','','','','','','Y','','Y','','','','','','','','','Y','','declerative configuration','reproducible builds','kde','','arch - manjaro - ubuntu','','','','','','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','A fellow student told me about it. I liked the idea of making build replaceable and defining a system declaratively from a single file is very cool.\r\nIm not a linux expert but after a couple hours I managed to use the kde-nixos build and follow the manual into a functioning system. (Really needs a graphical installer)\r\n','Y','','Y','','','','','declerative package management','reproduceable','kde','1: A GUI for editing configuration.nix editor that looked like a normal package-manager (graphical like kde discover) but never remove the one file config!!!\r\n2: A graphical installer for the kde nixos iso.\r\n3: easy home hydra in docker etc. (with a guide for newbs)','manjaro - arch - ubuntu','Y','','','','','','','','Y','','','nix-env','','great work\r\n'),(2047,'1980-01-01 00:00:00',5,'en','1565863275','A3','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','Everything','A2','Got curious after seeing some enthusiasts at work, tried myself and got impressed with so much I could achieve. Since then I use it daily.','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','','Y','','Declarative system or server configuration/management','Declarative environment management','Build and package software','I would make the language look like ML languages with Hindley–Milner type system.','Probably I would still be a sad Arch user who needs to reconfigure the whole system every 3 months.','','','','Y','','','','','Y','','','','','','machnix (https://github.com/DavHau/mach-nix);\r\npoetry2nix (https://github.com/nix-community/poetry2nix);','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','Everything','A2','Got curious after seeing some enthusiasts at work, tried myself and got impressed with so much I could achieve. Since then I use it daily.','Y','','Y','','','','','Declarative system configuration','','','Improve the way to handle secrets and keys in a declarative manner.','ArchLinux unfortunatelly.','Y','','','','','','','','Y','','xmonad','garbage collector, home manager.','can\'t think of any, mostly they turn into an opportunity to make a contribution.','NixOS revived my will and sense of discovery in fields related to computer science after long years of the same boring stuff.'),(2048,'1980-01-01 00:00:00',5,'en','366590785','A5','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Saw people recommending it on Hacker News. Wanted to find a language-agnostic tool to help create reproducible environments for software development.','Y','Y','','','','','Y','','','','','','','','Y','','','','','Declarative environment management.','Reproducible package management.','Flakes','Have everyone adopt flakes.','','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'','','Y','','','A3','','','','','','','','','','','','','','','','','','','','','Y','','','','Flake Utils','node2nix, or any of the \"2nix\" language tools. found it much easier to just use the package manager for the specific programming language.',''),(2049,'1980-01-01 00:00:00',5,'en','895924815','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','','','','','pacman','','','','Y','','','','','','','','','','','','','','','','N','I\'m a newbie here.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','When archlinux upgrade to python 3.10, it breaked many packages/python_modules i use daily.','Y','','','','','','','','','','','pacman','Y','','','','','','','Y','','','','','',''),(2050,'1980-01-01 00:00:00',5,'en','85106746','A6','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','For configuring home systems','A2','No particular reason. I was using Gentoo at that time and was having some real life problems; so I just decided to try investing my time in learning Nix just to divert my mind. Turns out that twas a good decision.','','','','','','','Y','Y','Y','','','','','','Y','Y','Y','Y','','On-the-fly configuration using flakes and nix develop/nix-shell','Declarative package management to reduce side effects','Version controlled flake system','Add a way to keep the build cache so that a huge project doesn\'t compile again when I change one of the `instalFlags`','I don\'t know, I am comfortable with anything. It is not that I can\'t live without Nix. Nix makes things easier too (sometimes harder too).','','','','Y','Y','','','','','','','','','Concourse','Actively, none.','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Just as a daily driver','A2','Same as Nix.','Y','','Y','','','','','Declarative system configuration in one place','Immutability to avoid pollution','Rollbacks','A way to maintain two or more system profiles simultaneously. Just like rollbacks but like at the same level. For example, having two different kernels (and essentially different profiles) to choose from when you boot up your machine.','Again, anything works.','Y','','','','','','','','','','XMonad','Home Manager\r\nRust Overlay by oxalica\r\nNvim Overlay\r\nEmacs Overlay\r\nFlake Utils','node2nix\r\ncabal2nix',''),(2052,NULL,2,'en','1535976937','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','N','N','1) When I have time to learn Nix\r\n2) When the experimental features are stable',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(2053,'1980-01-01 00:00:00',5,'en','903606355','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','N','N','1) when I have time to learn Nix\r\n2) when the experimental features are stable\r\n3) if it is possible, I think support zsh in nix-shell officially is a good idea, and it will cause me to try Nix.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','When I was reading a README file of a GitHub repo nearly a year ago, I saw \"NixOS\" in the \"installation\" part. At that time, I wondered what is it, but I didn\'t try to learn what is it. Several months later, I wanted to change the Linux distribution I use. Then I remembered NixOS, so I searched for \"NixOS\". After learning the amazing features NixOS have, I decided to use NixOS.','Y','','','','','','','The whole system is determined by /etc/nixos/configuration.nix. This file includes the configurations of different softwares that is in different places in other Linux distribution.','Because of reason 1, the whole system is reproducible and reliable.','NixOS uses Nix as its package manager.','1) I will add a better command `nixos` to replace `nixos-*`. The \"nixos\" command should be modern and have a better command-line interface.\r\n2) I will change the output format and color of command `nixos-rebuild` and other commands to make them more beautiful and clearer.','If a have a good CPU, I will use Gentoo instead.\r\nIf not, I will use Arch.','Y','','','','','','','','Y','','awesome','No.','No.','Thank you for providing such good OS, hope Nix and NixOS are getting better and better.'),(2054,'1980-01-01 00:00:00',5,'en','752182749','A1','','','','','Y','','','Y','Y','','','','Y','','','','','Y','Y','Y','','','','','','Y','','','','','Y','','iOS, Android','Y',NULL,NULL,NULL,NULL,'A2','Y','','','Secondary daily driver workstation','A4','The guiding principles and philosophy align with my intentions: Functional, deterministic, declarative, reproducible.','','','','','','','Y','','','','','','','Y','Y','','','Y','','','','','Radically different interfaces (both configuration and tooling). Despite a solid background in functional programming (Haskell, lisp, Idris, and others), development, package management, containers, and linux sysadmin, I still find even simple tasks to be insurmountable and confusing at times. The intersection of the language and the nix system is esoteric. I can\'t tell you *how* it should be done different, though.','I\'d probably give Guix a shot. Otherwise, OCI containers.','','','','','','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','Secondary daily driver workstation','A4','See Nix answer','Y','','','','','','Workstation','','','','See Nix answer','See nix answer','','','','','','','?','','','','On X11: Xmonad. On Wayland: Sway+wlroots','','I\'m honestly starting to phase out NixOS and Nix alltogether due to never getting over hurdles or getting productive enough. Which is unfortunate, as there are so many promising aspects of them.','A thing that comes up again and again: Ruby/Python/Node packages with some particular naive C/C++/Rust binary dependency creepsup as a timesink time and again'),(2055,'1980-01-01 00:00:00',5,'en','2128538154','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I stumbled upon some dotfile configs from some people in the neovim and clojure community and revisited them a few times until I gave it a go. They were using home-manager. \r\nThe beginning was a bit rough because I couldn’t find a proper entry point, but now I really like it.\r\nI found some good content by Jon ringer and burke libbey on YouTube. ','Y','','','','','','Y','','','','','','','','Y','','','Y','','DEV environments','Declarative system configuration','','- more descriptive error messages \r\n- secret handling (like Ansible-vault)','Ansible ','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'N','N','A supported machine. I’m using a mac. Will probably give it a try when asahi Linux is more stable. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I hope for an even better Darwin Support in the Future. A clear path for newbies how to go full nix. \r\n\r\nThanks for providing nix. \r\n'),(2056,'1980-01-01 00:00:00',5,'en','476279119','A2','A2','male','','','','','','','Y','Y','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','It felt like magic.','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','','','','THE MOST IMPORTANT: improve nix develop integrations with Intellij-based IDEs (PyCharm, CLion, Intellij-Rust).\r\nSpeed up builds, improve nix lsp as much as possible.','A ton of crappy shell scripts that would break all the time.','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Heard about it on DistroTube, and realized it solves all my problems.','Y','','Y','Y','','','','Stability','Sharing NixOS config between machines and easy remote deployments','Rollbacks','Speed up nixos-rebuild switch','A ton of crappy shell scripts that would break all the time.','Y','','','Y','','','','','','','bspwm','- home manager (within NixOS config, as an extension to the NixOS modules)\r\n- nix-top\r\n- agenix\r\n- simple nixos mailserver','- morph (moved to deploy-rs, morph is crappy)','Thanks for all the hard work.'),(2057,'1980-01-01 00:00:00',5,'en','1256355188','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','','','','Y','Y','','Y','Y','','','','','','','Y','Y','Y','Y','','Isolated, reproducible development environments with nix develop','','','Performant IPFS backed storage\r\nSimple secret management','Bash Scripts and Docker Compose','','','','Y','Y','','','','','','','','','','https://github.com/tadfisher/gradle2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','','Reproducible, reusable system configuration','','','Easy multi-user setup, in combination with home-manager','Fedora','Y','','','','','','','','','','Wayland via Sway','','',''),(2058,'1980-01-01 00:00:00',5,'en','1030765557','A2','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2059,'1980-01-01 00:00:00',5,'en','612412654','A2','A3','male','','','','','','','Y','','','Y','Y','','Y','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','At a Software Crafters Meetup, a person I consider a mentor, showed us a \"magic tool\" to have multiple versions of dependencies that are installed per project and not globally (Nix + DirEnv).\r\n\r\nToday, i setup every projects with DirEnv + Nix, even Flake when i can\r\n\r\nUnfortunatelly, i\'m the only user of Nix at my work, i can setup Nix but not Nix Flake, because it needs to be commited.','Y','','','','','','Y','','Y','','','Y','','','Y','Y','','Y','','declarative configuration','per-project packaging','reproductibility','With the Nix language, I am often confused with types: I don\'t know which type is a symbol, if it\'s a function, how I should call it... :\r\n* maybe improve the VSCode rnix-lsp plugin\r\n* maybe change the typing system of the Nix language to a static type system\r\n\r\nAdd a user interface that displays existing options and possible values\r\n\r\nThe Nix community is active, which is cool, but there are too many things doing the same job, which is confusing.\r\n','Maybe a mix between:\r\n* containers\r\n* FlatPak\r\n* AppImage\r\n* Guix','','','','Y','Y','','','','','','','','','','i don\'t understand how to use them, so i don\'t','Y','Y','','','N','I did a PR to Home Manager, it took more than 6 months to be merged, it has many rules to open a PR (which is normal to have shared and good standards across the repository but which takes times to learn), i didn\'t have the help i was looking for\r\n\r\nNixpkgs seems even harder\r\n\r\nSo, i just open issues and talk in issues','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','At a Software Crafters Meetup, a person I consider a mentor, showed us a \"magic tool\" to have multiple versions of dependencies that are installed per project and not globally (Nix + DirEnv).\r\n\r\nSome time later, he showed that even his operating system respected the same principles: multiple dependency versions, free rollback, per-project packaging, reproducibility, declarative rather than imperative configuration (saying what I want and not how the computer should do).\r\n\r\nI tried for a week to understand and configure my first NixOS (I was using Linux Mint at the time); it was very difficult.\r\n\r\nToday, I can\'t imagine going back to an operating system that doesn\'t have configuration as code.','Y','','','','','','my main OS for personnal computer (playing, net browsing, listening music, watching videos ...)','declarative configuration','free rollback','reproductibility','Add simple documentation for beginners\r\n\r\nAdd a GUI installer like other distributions have (which would generate a basic configuration.nix based on templates)','Trying new Linux distro every year like was doing before\r\n\r\nMaybe Guix\r\n\r\nMaybe Linux Mint with many containers','Y','','','Y','','','','','Y','','','Home Manager','Agenix : didn\'t succeeded to have a working configuration\r\n\r\nNix GUI https://github.com/nix-gui/nix-gui : promising but never worked for me','Thanks to provide this great tools, OS, ecosystem !'),(2060,'1980-01-01 00:00:00',5,'en','29380038','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I got fed up with the super slow update cycle of Debian based systems and know a bunch of people who already run Nix, so I got convinced to try it when I was looking for a stable rolling distro (or in Nix\'s case, something with reliable rollbacks)','','Y','','','','','Y','','Y','','','','','','Y','','','Y','','Perfectly reliable rollbacks','Single config for everything','Getting rid of globally installed bloat libraries','Go the Guix route and use a normal preexisting language instead of Nix. Maybe implement it as a Haskell library','Globally installed bloat','','','','Y','Y','','','','','','','','','','node2nix','Y','Y','','','N','The software I add is local proprietary stuff','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Debian updates slow. Arch unstable. NixOS has perfect rollbacks so I can run bleeding edge without any worries','Y','','Y','','','','','Perfect rollbacks','Home manager for config management','fast updates','A package to set up a temporary ubuntu shell that isn\'t completely isolated like a VM would be so that I can run precompiled ubuntu binaries without packaging them properly and running patchelf on the binary','PopOS, maybe GUIX if I replaced my NVIDIA card','Y','','','','','','','Y','','','','Home Manager','',''),(2061,'1980-01-01 00:00:00',5,'en','1160964285','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Reproducible build enviroments is hard and copying system configuration is annoying if not on Nix.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','','Flakes','Rust environment','','Better more up-to-date wiki and learning resources\r\nMake flakes standard and stabilized\r\ncreate a custom filesystem that automatically deduplicates the nix store (similar to ipfs)\r\n\r\n','probably guix, arch, or eventually make my own OS','','Y','','Y','Y','','','','','','','','','','https://github.com/yusdacra/nix-cargo-integration','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','See earlier section for Nix','Y','','Y','','','','','Reproducibility','Lots of apps','','See earlier section','Guix, Arch, etc.','Y','','','','','','bud','','Y','','Wayland','devos is pretty sweet, and all the projects that it depends on (nix-flakes-plus, and others)','node2nix, cargo2nix, most of the 2nix\'s because they typically aren\'t feature-complete and try to replace the build system instead of working alongside it.','I like Nix, but it could be better, like way better in terms of usability and understanding.'),(2062,'1980-01-01 00:00:00',5,'en','338800969','A5','A3','male','','','','','','','Y','Y','','Y','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','My friend said said I should try out NixOS because of it\'s reproducibility. This required learning Nix as well. It took me a while to get comfortable enough to use it as my primary OS. I previously used Arch Linux.','Y','Y','','','','NixOS containers','Y','','Y','','','Y','','','Y','Y','','Y','','Flakes','Building special things such as docker images.','Supply chain security provided by reproducibility ','Release flakes as stable. Implementing a solution for checking out git submodules will be necessary though among many other things I\'m sure though.','Maybe Guix. Or just suffer if Guix didn\'t exist either.','','','','Y','Y','','','','','','','','','','node2nix','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','My friend said said I should try out NixOS because of it\'s reproducibility. It took me a while to get comfortable enough to use it as my primary OS. I previously used Arch Linux.','Y','','Y','Y','','Y','','Options - these should be used more in regular nixpkgs','services - often what I want already works with an \"enable\"','','Secrets need to be managed more consistently. Some older services pass secrets such that they are written to the store.','Probably Arch Linux.... hoping things don\'t break and relearning how to do things constantly.','Y','','','','','','For regular updates: system.autoUpgrade','','Y','','','agenix to manage my NixOS secrets','None that I recall','nixpkgs is getting pretty big to git clone. Are there ideas/plans to address this?'),(2063,'1980-01-01 00:00:00',5,'en','1292346930','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','','','','Y','','','','','','','Y','','','','','','','','Y','','Make nix for freebsd OS','','','Full FreeBSD OS support. Like NixOS but for freebsd. ','','','','','','Y','','','','','','Y','','','','','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','','','','','Y','','','','','','','Bring full NixOS to FreeBSD OS. ','','Y','','','','','','','','','Y','','','','Please bring the entire NixOS to FreeBSD. '),(2064,'1980-01-01 00:00:00',5,'en','1252606127','A5','A2','fem','','Y','','','','Y','Y','','Y','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','After using NixOS on my daily driver machines, I started using Nix in my projects.','Y','Y','','','Y','','Y','','Y','','','Y','','Y','Y','Y','Y','Y','','Dev shells','Flakes','','I\'d add type hints and possibly an LSP.','Probably Ansible or some hacked together shell scripts.','','','','Y','Y','','','','','','Y','','','','cargo2nix','Y','Y','','','N','I\'d want to do it more but I\'m rather busy.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','After doing lots of homelab experimentation, I found nix and thought it was super cool. It does all the declarative infra/config management stuff in a way that wasn\'t as janky as Ansible. Now, I use NixOS as my daily driver and the OS for most of my systems.','Y','','Y','','','Y','','Declarative config management','Module system','ZFS support','','Arch Linux','Y','','','','','Y','','','Y','','','home-manager','',''),(2065,'1980-01-01 00:00:00',5,'en','959336823','A1','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','','','Binary cache ','Declarative dependency resolution','well-maintained package set','','No idea','','','','','','','','','','','Y','','','','','','','','','N','I don’t know how to make a contribution.','N','N','decline of macOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I’d like to appreciate it for developing/maintaining such a great project!'),(2066,'1980-01-01 00:00:00',5,'en','68994672','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','OpenWRT/Linux','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Started using NixOS and discovered the glory of Nix <3','','Y','','Y','','','Y','','Y','','Y','Y','','','Y','Y','','Y','','Reproducibility - both bit-by-bit and the general guarantee that flake outputs produce whatever they produce for Eternity','Purity - when I deploy, I know I only deploy what I need, and I know I will always deploy all of what I need','Flakes\' general convenience - OTA updates for my mom\'s laptop are efficient and easy to run - just one command!','Made flake support un-experimental and add more documentation around how to integrate Nix into your own CI (e.g. build a Hydra equivalent in language X)','I would probably try to use Docker, then invent a crude imitation of Nix, coming to the same conclusions as Eelco did in his dissertation.','','','','Y','Y','','Y','','Y','','','','','','naersk - https://github.com/nix-community/naersk','','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','For my mom','A4','Came from Gentoo because I discovered you have binary caches, yet can customize packages on source-level just like Gentoo. Stayed for the reproducible configuration and peace of mind when deploying.','Y','','Y','Y','','Y','My mom\'s laptop runs NixOS too for our peace of mind','Idempotence when deploying - nothing breaks if I deploy same thing twice','Customizability - I can do whatever I want, even rip out and replace whole chunks of the operating system','Flakes allow me to quickly package a configuration into a URL and share it with others (for example, to let my mom install an update to her machine)','The ability to launch copies of services, not unlike Redis module does, but with better ergonomics. I think I would prefer services to be described not unlike systemd services, but with template generators that would spit out a systemd unit from a RFC42-compliant configuration block.','Gentoo with a lot of kludges around it, including a homegrown binary cache.','Y','','','','','','','Y','','','Sway','Naersk','nixops','if Raiden Shogun from Genshin Impact found NixOS, she would bask in its glory and declare her search for Eternity complete.'),(2067,NULL,NULL,'en','990552270',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2068,NULL,2,'en','533423096','A5','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','near-edge support for packages (fastest update from upstream), packages integrates well (bash autocomplete automatically gets installed, programs with vim plugins just works)','Y','','','','','','','Y','Y','','','','','','','','','Y','','cross-package integrations','sensible defaults','rich package manager source','the complexity around learning the language syntax itself — i have no haskell or functional programming background, and sometimes when i just want to “configure something quickly” it frustrates me how much i have to learn to do it instead of seeing things to be “intuitive”.','mostly debian aptitude or containerize everything and run alpine apk','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2069,'1980-01-01 00:00:00',5,'en','1938382514','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','','','','','','Y','','','','','','Reproducible builds','Stability','Build efficiency','The syntax: it\'s horrid. Any other language would be a better pick, once laziness is there. Using syntax since years: still can\'t read any of it.','Docker build, make','','','','','Y','','','','','','Y','','','','composer2nix','','Y','','','N','Lack in understanding of the nix language ','N','Y',NULL,'Difficulty in adding dependencies not part of nixpkgs','Better syntax ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'direnv','',''),(2070,NULL,2,'en','542507609','A5','A2','-oth-','im taking a vacation from gender atm','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A3','','','','for fun!','A2','this is super surface-level, but i just loved the idea of declarative configuration. insane number of use-cases. seemed like it made smart, design-informed abstractions, rather than the more \"pragmatic\" abstractions made by other operating systems','','Y','','','','','Y','','Y','','','','','Y','','','','Y','','plaintext declarative configuration in NixOS','declarative package management','the ability to build and package software','this may be waaaaaay out-of-scope, but it would be super neat to see nix-style declarative infrastructure management','arch linux, purely out of habit. for the purposes that I most commonly use nix for, I would probably do something inadvisable with gnu stow for declarative configuration, and (probably equally ill-advised) scheduled checks against a list desired packages. ','','','','','Y','','','','','','','','','','','Y','','','','N','lack of familiarity with the codebase, lack of familiarity with contributing to FOSS in general.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2071,NULL,1,'en','1057823979','A2','A4','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2072,'1980-01-01 00:00:00',5,'en','555003088','A2','A3','male','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','My brother in law introduced me to nixos','','','','','','','Y','','','','','','','','Y','','','Y','','Reproducibility ','Composability ','Open source ','I\'d add flake modularity by introducing a possibility for choosing different options inside flakes with flake arguments. Eg. with command nixos-rebuild switch --flake \". #workstation#dev\" or ...#server#production etc. ','Probably Arch Linux ','','','','','Y','','','','','','','','','','','Y','Y','','','N','Need to learn more first ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Brother in law introduced it to me','Y','','','','','','','Reproducibility ','Composability ','Open source ','I\'d add better documentation ','','','','','','','','','','Y','','','','','I think the biggest issue holding back nix and Nixos usage is the lack of proper documentation. This should be a priority for the community '),(2073,NULL,NULL,'en','932888732',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2074,'1980-01-01 00:00:00',5,'en','2116269561','A2','A6','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Needed scalability in deployment ','Y','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','(Near) reproducibility ','(Nearly) declarative deployment ','(Nearly) multi platform independence ','I’d make it more statically typed - too many issues get too far down the deployment chain ','I’d just retire!','','','','Y','','','Y','','','','','','','','Cabal','','','','','N','Not feeling confident of the “unspoken “ etiquette, also running a company takes up all tome','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','Y','','','','','','','','','','','','','','','','','','','',''),(2075,'1980-01-01 00:00:00',5,'en','2143649336','A2','A3','-oth-','','','','','','','Y','','','','Y','','','','','','','','','','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','I use Nix to manage the set up on my MacBook. I started using it after a friend recommended it to me.','Y','','','','','','Y','','','','','','','','','','','Y','','Reliability: if I got it working it\'ll keep working forever across devices','Number of packages available—I used Homebrew in the past but nixpkgs has a much wider variety of packages available','Cool factor: it\'s just really cool how it builds everything in isolation','Making flakes generally available, they\'ve been experimental way too long.\r\n\r\nAs for nixpkgs, I wish it was easier to install a specific version of e.g. Ruby. Now there\'s the last 3 minor versions available but the patch version is constantly updating. I want all of the patch versions to be separately available.','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'N','N','It being easier to install on DigitalOcean. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'I use nix-darwin to manage my installation. ','I stopped using home-manager in favor of doing everything with nix-darwin. I don\'t even remember what it provided to be honest.','nix is the best'),(2076,NULL,1,'en','1602802855','A2','A4','-oth-','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2077,'1980-01-01 00:00:00',5,'en','1975282781','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','N','Y',NULL,'Not stable or well documented.','More mature. Comprehensive documentation. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2078,'1980-01-01 00:00:00',5,'en','603727438','A2','A3','male','','','','','','Y','Y','','','','Y','','','Y','','','','Y','','Y','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I stumbled upon it via the Haskell Community on Twitter some years ago. The obvious value propositions of reproducible builds&test, declarative system description, and congruent server deployment convinced me immediately. I personally have always seen over the sometimes challenging UX or lack of docs, but i recurringly put people into the situation of having to learn nix and nixos and observe the same patterns again and again how people are struggling to learn it. The documentation situation grew better, but then there\'s confusion about flakes etc. etc. - so in the last years i have a different look at it trying to make it easier to ramp up new people.','','Y','','Y','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','reproducible builds','effective caching (but sometimes not efficient, see e.g. tetex distro downloads that take ages because they are too fine-grained)','overridability/exchangeability of nix derivations','take away: the sources of impurity (~/.config/nix sourcing etc., and the nix path etc. etc.). add: a proper type system to the nix language.','This one is hard. I guess i would use container things like podman and hate it. But if there weren\'t nix i would also switch to programming languages that have good package management (away from c and c++) to at least fix that.','','','','','Y','','Y','','Y','','Y','','','','cabal2nix from nixpkgs','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','after getting exposed too long to nix, it was the logical conclusion that in comparison to nixos, all other linux distros are legacy distros and i need to switch. there is no other linux distro that can provide you the stability and the comfort of off-the-shelf system configuration modules with declarative configuration but at the same time allows you to override everything.','Y','Y','Y','Y','','Y','','it is easy to provide your own modules and packages to extend the os','declarative system configuration','state-avoiding congruent deployment','add: a standard, stateless deployment tool which also manages secrets etc. add: the integration tests in nixpkgs are partly broken, because they are not always run against all changes, so beef up the build infrastructure so it can do that. change: the nixos-a-la-carte module addition by robert hensing should become the default way to build systems.','i would probably use docker-compose on servers and hate it, and on my laptop use fedora or ubuntu','Y','Y','','','','Y','','Y','','','','all the nixpkgs haskell tooling, nixos integration tests, NIV (super useful in a pre-flakes world)','nixops because of its state','thx for doing this'),(2079,'1980-01-01 00:00:00',5,'en','482580115','A5','A5','male','','','','','','','Y','Y','','Y','Y','Y','Y','','','','','Y','','','','','','Y','','Y','Y','','Y','','','N','Y',NULL,'Packages were outdated.','If packages start being updated more frequently.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2080,NULL,1,'en','1798069077','A5','A5','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2081,'1980-01-01 00:00:00',5,'en','284977736','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was learning Haskell and heard about pure fp way of managing Linux installation. I stayed with nix because home-manager allowed me to version control my dot files together with all required software dependencies.','Y','Y','','','','','Y','','','','','','','','Y','','','Y','','home-manager','nix-shell','nix-ops','Simple alternative to channels, simpler than flakes','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'ve started with home-manager on arch and wanter more nix','Y','','Y','','','','','Modular configuration','','','','','','Y','','','','','','','','','i3wm','home-manager, direnv','',''),(2082,'1980-01-01 00:00:00',5,'en','620592399','A5','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Disabled, Not Working','','Y','','Y','','','N','N','If I could get through the docs & actually learn it in one go (maybe next summer), that would be a great improvement.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','If I could get through the docs & actually learn it in one go (maybe next summer), that would be a great improvement.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None.','So far, I\'ve found this old blog series to be the best documentation for newcomers: https://ianthehenry.com/posts/how-to-learn-nix/\r\nThis leaves much to be desired.\r\nI\'d love to see more effort put into documentation for new people to get up to speed.'),(2083,'1980-01-01 00:00:00',5,'en','1566451026','A1','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','Basically everything I do involves Nix','A3','I tried it out because of the hype I saw on Twitter among all the devs I follow. I tried NixOS out and while it was difficult getting started with it, I fell in love with all the declarative-ness of Nix and I started using Nix for all the things I do. It started out just with NixOS but now I\'m also using direnv+nix-shell to manage environments for my development stuff.','Y','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Declarative environment management (nix-shell)','Nixpkgs. Specifically how all the packages are maintained in an accessible github repo. Makes it easy to upstream stuff. Especially love the module stuff.','Declarative system (NixOS)','Arch wiki level documentation for everything Nix related.','Urg I\'d probably be using Arch for AUR and pacman. For environment stuff I guess I\'d be using docker.','','','','','Y','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Ah it\'s the same story with Nix. I tried it out because of the hype I saw on Twitter among all the devs I follow. I tried NixOS out and while it was difficult getting started with it, I fell in love with all the declarative-ness of NixOS. I love the modules. Setting up stuff like Let\'s Encrypt is so much easier than other OSes and getting drivers to work for popular stuff is also very easy. Setting up new machines are also easy because I just modify a bit of the existing .nix files I have. So those are really the reasons why I use NixOS.','Y','','Y','','','','','Declarative .nix files for setting up a machine','Nixpkgs. Especially how it\'s so accessible through github and how all the packages are maintained there.','','Better documentation that\'s up to par with Arch Wiki.','Something Arch based','Y','','','','','','','','Y','','','direnv + nix-shell and home-manager is something I use regularly.','I tried flakes and overlays. It was sorta hard to figure out so I stopped using them.\r\n\r\nBesides those I guess I tried to use like Go to Nix projects and they were weird so I stopped using them. I\'m happy with the direnv+nix-shell stuff I have now.',''),(2084,NULL,1,'en','2117312503','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Engineer, mechanical','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2085,NULL,NULL,'en','1908351211',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2086,NULL,NULL,'en','826205461',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2087,NULL,NULL,'en','1639069255',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2088,'1980-01-01 00:00:00',5,'en','914302381','A2','A4','','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','','','','','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','','','','I would add a tonne more money and resources. There are lots of areas where things are a little inconsistent, or awkward. There is not enough testing done.\r\nFor example, kernels have been shipped which have led to data loss. Integration with language package managers is ... usable but sometimes problematic. For example, as far as I can tell, it\'s impossible to declare in Nix that a package needs Go version 1.18 to build. Yes, I could depend on the package go_1_18, but that will stop been sensible as soon as 1.19 is out.\r\nFor me, there is nothing wrong with the language - the language causes me no difficulties at all. It\'s the lack of polish elsewhere that can cause me frustration.\r\nThat said, I still very much like Nix and will continue to use it. But it is very very obvious how different the size of the community and resources are, versus eg Debian.','Debian - I\'ve used Debian on all my machines since about 2000. Switched to NixOS a bit over 6 months ago.','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','Y','','','','The confidence that two or more machines are configured exactly the same way, and that that configuration is reproducible, is wonderful.','','','I would add a tonne more money and resources. There are lots of areas where things are a little inconsistent, or awkward. There is not enough testing done.\r\nFor example, kernels have been shipped which have led to data loss. Integration with language package managers is ... usable but sometimes problematic. For example, as far as I can tell, it\'s impossible to declare in Nix that a package needs Go version 1.18 to build. Yes, I could depend on the package go_1_18, but that will stop been sensible as soon as 1.19 is out.\r\nFor me, there is nothing wrong with the language - the language causes me no difficulties at all. It\'s the lack of polish elsewhere that can cause me frustration.\r\nThat said, I still very much like Nix and will continue to use it. But it is very very obvious how different the size of the community and resources are, versus eg Debian.','Debian.','Y','','','','','','','','Y','','','home-manager. I use the nix module for that to configure my user environment declaratively.','',''),(2089,'1980-01-01 00:00:00',5,'en','274181012','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','ocaml2nix','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','','','','','','','','','','','','','Y','','','','home-manager\r\ndirenv\r\n','',''),(2090,'1980-01-01 00:00:00',5,'en','2104375721','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','Y','','Y','','Y','','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','Y','','','','','','haskell2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','Y','','Y','','','','','','','Y','','','','','Y','','','Y','','','','',''),(2091,NULL,1,'en','1998806009','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2092,NULL,NULL,'en','2124248894',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2093,NULL,1,'en','1731714986','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2094,'1980-01-01 00:00:00',5,'en','245075095','A2','A4','male','','','','','','','Y','','','Y','','','Y','','','','','Y','','','','','','','','Y','','','Y','','','N','Y',NULL,'nixos did not have support for gdm and Wayland - there is a white screen with error','experiments on raspberry pi ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'look @ nix answer','nothing ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2095,NULL,3,'en','345799167','A2','A4','fem','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Recommendation by a colleague.','Y','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Maintaining reproducible builds (declarative pinning/patching/bundling software).','Project specific developer environments (using different toolchain versions via nix-shell).','Declarative system setup (via NixOS/home-manager).','','Bash scripts, (frequently outdated) text files with instructions, and prayer.','','','','Y','','','','','Y','','','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Recommendation by a colleague. I never had a satisfying dotfile management and hated bringing up new machines. The idea of NixOS sounded very promising (and hasn\'t disappointed me so far).','Y','','Y','Y','','','','Declarative description that can be shared among multiple machines.','The quite painless ability to mix stable, unstable and custom packages and modules.','Being able to search and then copy configuration snippets from other NixOS users on github.','','Ubuntu/Fedora','Y','Y','','','','Y','krops','','','','i3','home-manager','',''),(2096,NULL,1,'en','1347553810','A2','A3','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2097,NULL,2,'en','1985147600','A2','A5','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I first tried NixOS because I wanted an easy way to manage what was installed on my desktop and laptop computers and wanted to be able to keep them in step. I then fell in love with the whole philosophy behind NixOS and the ability to add and remove packages cleanly and to manage configurations explicitly and being able to use nix-shell for development.','','','','','','','Y','','','','','','','Y','Y','','','Y','','NixOS for declarative configuration','Nix-shell for development environments','Nix package manager','The documentation is great but still unclear in some areas such as Home Manager which doesn’t feel like part of the core functionality (maybe it isn’t!). And Flakes still baffle me but I am still fairly new to it all.\r\n\r\nMaybe some official screencasts would help with on-boarding.','Fedora (I like Gnome) and a lot more manually created notes about setting things up.','','','','','','','','','','','','','','','','','','','','N','Lack of familiarity so far. Although I want to update Espanso’s package so that is a good incentive to get into it all.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2098,'1980-01-01 00:00:00',5,'en','1624696456','A6','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','','','','','Y','','','','','','','Y','Y','','','Y','','boot into different generation, no need to worry about package breaking system','declarative config','many packages available','Replace Nix language with something better','arch','','','','','','','','','','','','','','','','Y','','','','N','nix language is hard to learn','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','','','','','','','','','Replace Nix with better language','','Y','','','','','','','','','','sway','NUR','','keep up the good job'),(2099,NULL,1,'en','40983518','A1','A2','-oth-','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2100,NULL,NULL,'en','1839895954',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2101,'1980-01-01 00:00:00',5,'en','477672192','A5','A2','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','To standardize reproducible development environments. At work, we desperately needed a way to keep dependencies consistent for developers on any given project. Those environments needed to be easy to create, manage, and be fully reproducible. I had previously tried several other options: docker, brewfile, shell scripts. Nix beat out all of them while adding even more benefits with nix-darwin and home-manager. Nix flakes have made the technology incrementally adoptable and opt-in which has made it extremely easy to sell. I am now working to bring Nix support to more projects within the organization. The response is positive so far!','Y','','','','Y','','Y','','Y','','','Y','','Y','Y','Y','Y','Y','','nix shell / nix run','Flakes for creating packages and project-specific development environments','System configuration','Better DX. The Nix language desperately needs types (or very rich LSP), better errors, and an easier way to debug when developing.','Containers with existing package managers. Also, I\'d be sad :(','','','','Y','Y','','','','','','','','','','yarn2nix (in nixpkgs)','Y','Y','','','N','The process seems quite complex and difficult to do. Developing nix packages always feels very brittle due to the poor debugging experience. I would not feel confident contributing until the DX tooling has improved.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','After experiencing nix-darwin, I was curious to see what NixOS would be like. I installed it on my Framework laptop and was seriously impressed with how easy it was to get a quick install up. Though, after that it took (and continues to take) quite a whole to dial in all of the configuration for my environment. However, I absolutely love it and don\'t think I could ever go back. As far as I\'m concerned, NixOS is the only OS that totally *gets* it. Package management, configuration, testing out new programs before installing, reproducibility, etc. So many killer features that makes it feel like all other operating systems should feel ashamed for not having.','Y','','Y','','','Y','','Flake support','Package and package plugin installation + configuration for those packages','Process management configuration (systemd / launchd)','Support for process management with something like \"nix run\" that is built into flakes. Some projects require a service to be spun up in order to develop. Adding some way to include this in the development environment would be a huge boon for productivity and make it even easier for developers to jump into new projects.','Arch. Again, I would be extremely sad. NixOS stands far and away the best OS I have ever had the pleasure of using.','Y','','','','','','','Y','','','Sway','Lorri, nix-prefetch-git','','Nix is outstanding; it gets so many things right. Thank you all for the hard work ❤️'),(2102,NULL,NULL,'en','122965036',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2103,'1980-01-01 00:00:00',5,'en','22605856','A2','A4','male','','','','','','','','','Y','','Y','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I need very different environment for my development projects. Installing all possible dependencies into single system was not feasible in the long term. Having an option to define environment in shell.nix of each project is great. That\'s where the Nix has won me.','Y','','','','','','Y','Y','','Y','','','','','Y','','','Y','','declarative environment','reproducibility','keeping close to upstream, upstreaming all changes, not carrying distro-specific patches','I\'d add more people doing the PR reviews :-)','not sure tbh :-)','','','','','','','Y','','Y','','Y','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A4','','Y','','','Y','','','','','','','','','Y','','','','','','','Y','','','','','',''),(2104,'1980-01-01 00:00:00',5,'en','1004501636','A2','A3','male','','','','','','','','','Y','','','','','Y','','Y','','Y','','Y','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A colleague introduced it into our software engineering processes','Y','Y','','','Y','','Y','Y','','','','','','','Y','Y','','Y','','Declarative dependencies','Ephemeral environments','Caching','Add: Integrate incremental builds into the workflow','Docker, scripts','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Mostly curiosity. The declarative system configuration seemed tempting, and the ability to rapidly switch between different environments (kernels, custom software, hypervisors) proved very useful.','Y','Y','','Y','','','','Declarative system configuration','Better caching/garbage collection than non-NixOS machines','','','Ubuntu','Y','','','','','','','Y','','','','home-manager, dconf2nix','',''),(2105,NULL,3,'en','1332528471','A2','A2','male','','','','','','','','','','Y','Y','','Y','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','My colleagues had NixOS and I wanted that. It is that simple.','','Y','','','','','Y','','Y','','','','','Y','Y','','','Y','','Prewritten Modules for common application like Nextcloud','Flakes','The great integration with systemd','','Any Linux Distros with .dotfile repo and stow(for linking)','','','','','Y','','','','Y','','','','','','','','Y','','','N','Did not have a missing package.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Heard it from a colleague.','Y','','Y','','','','','','','','','','','','','Y','','','','','','','I3wm','','',NULL),(2106,NULL,1,'en','1508443802','A5','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2107,NULL,NULL,'en','1973692551',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2108,NULL,2,'en','1831778070','A5','A3','male','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','cabal hell','Y','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2109,NULL,1,'en','680069583','A2','A4','male','','Y','','','','','Y','','','Y','Y','','','','Y','','','Y','','','Y','','','Y','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2110,'1980-01-01 00:00:00',5,'en','654905551','A4','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2111,NULL,1,'en','1763848583','A7','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2112,NULL,NULL,'en','1287453464',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2113,NULL,NULL,'en','695922715',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2114,'1980-01-01 00:00:00',5,'en','757886505','A6','A5','male','','','','','','Y','Y','','','','','','','','','Y','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Declarative configuration','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','Y','','declarative','feature complete','stable','better documentation, a book, easier/better caching, discoverability','sigh .... containers?','','','','Y','Y','','','','','','Y','','','','cabal, python','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','','','','','declarative','rollback','it just works','docs, docs, docs','','Y','','','','','Y','','','','','','haskell.nix','nixops',''),(2115,NULL,1,'en','589262172','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','Y','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','To sort out our work environment.','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2116,NULL,NULL,'en','346938670',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2117,'1980-01-01 00:00:00',5,'en','1909231625','A2','A4','-oth-','Fuck you and your fucking gender theories','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','NixOS is awesome, and I\'m planning to install it on all my next machines.','','Y','','','','','','','','','','Y','','','','','','Y','','Declarative configuration','Reproducible builds','','1. Add a serious type system\r\n2. Make Nix strictly typed\r\n3. Add an IO monad','OCI containers','','','','Y','Y','','','','','','','','','','','','Y','','','N','I\'ll do it in the next future.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','','','','','','','','','','','Y','','','','','','','Y','','','','','','Please add a type system. I\'m looking at Nickel, but I don\'t see it progressing as fast as it should.'),(2118,NULL,1,'en','1299807607','A2','A5','male','','','','','','','Y','Y','','Y','Y','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2119,'1980-01-01 00:00:00',5,'en','1603830110','A2','A3','male','','','','','','','Y','','','Y','Y','','Y','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Tried to automate my home network with ansible, realised that this is just glorified bash, look for alternatives. Never locked back :) ','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','Y','','Reproducibility ','Declarative dep mgmt for each Project/Enviroment','Rollbacks','Nix flakes stable\r\nNixOps working properly, wtf is this v1 vs v2 shit, honestly. \r\nGradle2nix working properly, takes hours for bigger projects, often broken','','','','','Y','Y','','','','Y','','','','','','gradle2nix\r\nnode2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','same as for nix','Y','Y','Y','Y','','','','Rollbacks','Declarative Dep Mgmt','New Packages','','','Y','Y','','','','','','','','','awesome','','NixOps','Look, Nix(OS) is great. Usage of anything other fells antique. I just took a lot of time to setup/learn it. Still causing some problems with weird 3 party software. But thats a price i am willing to pay!'),(2120,'1980-01-01 00:00:00',5,'en','730288334','A2','A2','male','','','','','','','','Y','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','NixOS seemed kinda cool, so I installed it on my new PC','','Y','','','','','Y','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','N','Lack of knowledge how I would be able to','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','','','','','','configuration.nix','','','','Arch Linux','Y','','','','','','','','Y','','','','',''),(2121,NULL,NULL,'en','1828894621',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2122,NULL,NULL,'en','307156680',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2123,'1980-01-01 00:00:00',5,'en','968470574','A2','A3','male','','','','','','','','','','','','','','','','','','Y','Y','Y','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','','Y','','','','','','Y','','','Y','','Simple experimentation with services (services.foo.enable)','Declarative system configuration','Nix-shell','Better deployment tools\r\nBetter error messages\r\nMore stuff that “just works”','','','','','Y','Y','','','','Y','','','','','','Node2nix','','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','Y','','','','','','','','','','Y','','','Y','','','','','Y','','','Home Manager','Nixops ',''),(2124,'1980-01-01 00:00:00',5,'en','1304469882','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','Recommendation from a friend.','','Y','','','','','Y','Y','Y','','','','','','Y','','','Y','','declarative','reproducible','lots of packages','','','','','','Y','Y','','','','Y','','','','','','node2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Recommendation from a friend.','Y','Y','Y','','','','','','','','','debian','Y','Y','Y','','','','','','','','xmonad','','nixops',''),(2125,NULL,-1,'en','1475653545','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2126,'1980-01-01 00:00:00',5,'en','826520839','A6','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Just use Nix for an package manager alternative of homebrew, and then I fallen in love with Nix🥳(currently using nix-darwin, haven’t tried nixos yet )','Y','','','','','','Y','','Y','','','','','Y','Y','','','Y','','Reproductivity','Isolation ','Easy to try new tools ','','','','','','Y','','','','','','','','','','','','Y','Y','','','N','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nix-darwin home-manager flake-utils ','','Thank you so much 🙏🙏🙏'),(2127,NULL,1,'en','1230593758','A5','A2','male','','Y','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2128,'1980-01-01 00:00:00',5,'en','1179783408','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','Y','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','love declarative configuration','Y','Y','','','','','Y','','Y','','','Y','','','Y','','','Y','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','Y','','','','','','','','','','','','','','','','','','Tow-Bot, home-manager','',''),(2129,'1980-01-01 00:00:00',5,'en','1175077975','A2','A2','male','','','Y','Y','','','Y','','','','','','','','','Y','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','Y','','nix-shell','','','Useful compiler error messages.','Scripts, git','','','','','','','','','','','','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','Some sort of classic mode. nix-shell with chroot/mount environment. So that classic applications can find bash at /bin/bash and other hard-coded path just work.','Debian','Y','','Y','','','','','','','','sway','','',''),(2130,'1980-01-01 00:00:00',5,'en','710981264','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It came with NixOS.','','','','','','','Y','','','','','','','Y','Y','Y','','Y','','','','','Improve documentation (e.g. https://ianthehenry.com/posts/how-to-learn-nix/).','Debian, 0install.','','','','','','','','','','','','','','','opam2nix','','','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','QubesOS didn\'t work with my graphics card.','Y','','','','','','','Building VMs.','Easy rollback.','','Improve documentation.','Debian.','Y','','','','','','','','','','Sway','','',''),(2131,'1980-01-01 00:00:00',5,'en','8636059','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','Qubes','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Curiosity','','','','','Y','','Y','','Y','','','Y','','','Y','','Y','Y','','Declarative','Flexible','Cutting edge versions','Step learning curve 😅','Qubes','','','','','Y','','','','','','','','','','','','Y','','','N','Luck of skills ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Curiosity','','','Y','Y','','Y','','Reproducibility ','Flexibility','Cutting edge','Steep learning curve','Qubes','Y','Y','Y','','','','','Y','Y','Y','','Nix-bitcoin ','','I hope Spectrums will speed up to be production ready 🚀'),(2132,'1980-01-01 00:00:00',5,'en','1463534081','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I needed a declarative configuration management system to manage a park of servers that are deployed in remote and geographically distributed locations, without physical access.','','Y','','','','','Y','','Y','Y','','','','','Y','','','Y','','Declarative configuration management','NixOS can easily be extended and customised to fit use cases','nix-shell for dependency management and ephemeral installation of packages','Static type checking of all Nix expressions prior to evaluation\r\nLinting of Nix code (dead code, unused variables, performance issues, ...)\r\nBetter error messages and tracing','Ansible','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I needed a declarative configuration management system to manage a park of servers that are deployed in remote and geographically distributed locations, without physical access.','Y','','Y','Y','','','','Declarative configuration management','NixOS can easily be extended and customised to fit use cases','','Static type checking of all Nix expressions prior to evaluation\r\nLinting of Nix code (dead code, unused variables, performance issues, ...)\r\nBetter error messages and tracing','Ansible','Y','','','','','Y','','','','','','','NixOps, the need to keep state on a central deployment server was not practical for our use-case.',''),(2133,'1980-01-01 00:00:00',5,'en','849271220','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','Some coworkers were trying to find something better than a custom cobbled together chef setup that the company currently had. I wasn\'t particularly sold on it, but after working through some simpler environments with nixops and deployments and building software, I continued using it more in and out of work, eventually replacing my existing ubuntu machines with nixos.\r\n\r\nnix is more robust for me than the (at the time, popular) puppet/chef/ansible tools I started on. I started on freebsd and was accustom to rc.conf and when I used linux more, it felt like a downgrade. configuration.nix brought that all back and and is the rc.conf that i\'d always wanted.','Y','','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','','Y','','strict dependency management','cross platform support for macos + linux.','reliability.','I really wish that flakes were not touted as a \'must have, must use\' feature when the spec and documentation is unstable/experimental.\r\nLighter memory requirements, but that only affects me on home/small vm sized machines.','Custom shell scripting with a lot of containers.','','','','Y','Y','','Y','','','','','','','','bundix, yarn2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','It began as an experiment in a company to replace the custom chef machinery. We used nixops to deploy machines to AWS since the company was working physical to cloud migration and the existing tools were clumsy and hard to setup and maintain. Nixops, despite its faults at the time, did the job.','Y','Y','Y','Y','','Y','','dependability','reproducibility','stability','a better story for secrets management.','bash scripts and containers','Y','','','','Y','Y','','','','','','hydra\r\n','nur, nixops','hope this helps. thanks to everyone for putting in the work to make the project as good as it can be with the resources we have.'),(2134,'1980-01-01 00:00:00',5,'en','2136083030','A2','A3','male','','','','','','Y','Y','Y','Y','Y','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','Y','','','','','','','','Y','','','Y','','','','','','','awesomewm','','',''),(2135,NULL,2,'en','1553775522','A2','A5','male','','','','','','','','','','Y','','','Y','','','','','Y','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Reflex Dom ghcjs cross compiling','Y','Y','','Y','Y','','Y','Y','','','','','','Y','Y','Y','Y','Y','','Deterministic builds','Powerfull nixpkgs for setting up a server','Shared configurations, Haskell development ','Haskell.nix should replace cabal2nix','Arch Linux, debian','','','','','','Haskell.nix','','','Y','','','','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2136,'1980-01-01 00:00:00',5,'en','726897015','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I had been aware for a long time, but could never find time to try. A coworker pushed me to invest the time to learn. home-manager got me absolutely convinced.','','Y','','','','','Y','Y','','','','','','','Y','Y','','Y','','syncing and versioning my machine configuration','reproducible dev environments','robust build automation','- Stabilize flakes\r\n- Remove nix-env\r\n- More consistent docs story\r\n- Built-in versioning in nixpkgs (\"I want software x version y\" type use cases)','Guix, debian packages','','','','Y','Y','','','','','','Y','','','','.','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I started using home-manager and loved it. I wanted to extend the same mechanism to managing the whole system.','Y','','','','','','','Consistency between my machines','Safe upgrades with rollbacks','Centralized and version controlled system management','A documented canonical way to use flakes for system configuration','Ubuntu','Y','','','','','','','','','','sway','direnv','',''),(2137,'1980-01-01 00:00:00',5,'en','1151787578','A2','A3','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','All the technical innovations','Y','Y','','','Y','','Y','','Y','Y','Y','','','','Y','','','Y','','Flakes','Nixos','Flexibility','Types and better errors for the nix language\r\nNickel?','Debian','','','','Y','Y','','','','','','','','','','Crate2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Amazing technology and broad and up to date packages','Y','','Y','Y','Y','','','Flakes','Nix-container','Flexibility','','Debian','Y','','','','','','','Y','','','','Home-manager','','Thanks!'),(2138,'1980-01-01 00:00:00',5,'en','1628980451','A2','A2','-oth-','agender','Y','Y','','','Y','Y','','','','Y','','','','','','Y','Y','','Y','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','hackability','reproducibility within a functional paradigm','approachability (relative to the sheer scale of the project)','I would add better strategies for evaluation caching (since that is the most CPU-intensive part of a build, even though it can often arrive at similar results across runs). I’d also improve the UX of flakes / the nix3 CLI by making the flake argument optional in all circumstances (cf. nix-dram).','I would be in deep trouble for sure. I would probably switch to existing DevOps technologies such as Ansible, and make better use of Docker containers (however much of a resource hog they are).','','Y','Y','Y','Y','','Y','','','','Y','','','','','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Was distrohopping. Found out about NixOS’ great features, including a centralized configuration and declarative, “top-down”, reproducible package management. So I took the plunge.','Y','Y','Y','Y','','','','top-down declarative configuration','reproducibility, including the ability to build the configuration elsewhere, inspect it for correctness, and even give it a spin in a VM','rich set of packages and projects ','I would improve the documentation, especially surrounding flakes (it’s not very clear how to convert your existing NixOS configuration into a flake attribute).','Arch Linux is my second choice because of its “free form” nature, but nothing really comes close to NixOS’ flexibility.','Y','Y','','','','Y','','','','','currently: hikari; previously, i’ve cycled between sway, herbstluftwm. if I had to pick between the above, it’d be KDE Plasma','','',''),(2139,'1980-01-01 00:00:00',5,'en','279185340','A1','A4','-oth-','','','','','','','','Y','Y','','','','','Y','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I don\'t like ansible. ','','','','','','','Y','','','','Y','Y','','','Y','Y','','Y','','Declartive','reproducible results ','','Documenation needs to be more consistent','Arch','','','','Y','','','','','','','','','','','','','','Y','','N','Need more experience first ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I didn\'t like ansible and using nix on arch complicated things compared to that nixos is easier','Y','','','','Y','Y','','Declarative ','Cached','Remote deployment ','Consistent documentation','Arch','Y','Y','','Y','Y','','','Y','','','sway','','','Try to write documentation without slang. Define terms. '),(2140,'1980-01-01 00:00:00',5,'en','1097419495','A2','A2','-oth-','trans non-binary girl','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend used it and told me about it (they\'re a nixos committer).','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Declarative system management','nix-shell','reproduceable builds','','Arch Linux + Pacman','','','','Y','Y','','','','Y','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend used it and told me about it (they\'re a nixos committer). I really liked the idea of reproduceability of systems and wanted to try it out (coming from Ansible)','Y','','Y','Y','','','','Declarative system Management','Reproduceability of systems','','','Ansible','Y','','','Y','','','','','','','Sway','search.nixos.org','',''),(2141,'1980-01-01 00:00:00',5,'en','1864035912','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','','','','Y','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','I wanted to have a reproducible laptop setup with root on ZFS, and get the latest packages.','Y','','Y','','','','','Reproducible','Good ZFS support','Secure and private due to isolation','I would add better documentation for newer features.','Ansible','Y','','','','','','','','Y','','','','','Thank you for the awesome work! What you have done is just amazing! \\(^o^)/'),(2142,'1980-01-01 00:00:00',5,'en','871287072','A1','A3','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','N','Y',NULL,'lack of time\r\nPoor docs','Better docs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Lack of time\r\nPoor docs','Better docs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2143,'1980-01-01 00:00:00',5,'en','297359320','A2','A4','fem','','','','','','Y','Y','','','','','','','','Y','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','','','','','','Y','','','','','Having reproducible and separated setups of the development environments for the multiple projects I\'m usually working on','Package Manager with a huge package repository and up-to-date packages','','','A combination of other package managers e.g. conda','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','fpletz told me about it :-)','Y','','','','','','','Reproducible and transparent setup for my laptop','Hassle free updates','','','Debian','Y','','','','','','','','Y','','','','',''),(2144,NULL,-1,'en','987189740','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2145,'1980-01-01 00:00:00',5,'en','957714515','A5','A2','male','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y','','','Y','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2146,'1980-01-01 00:00:00',5,'en','418683769','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','It sounded like the right solution to package management','','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','Consistent development environments, without different projects conflicting on versions of tools/dependencies','Reproducible builds','Unified package management','Replace the Nix language with one that\'s not garbage.','ghcup/cabal/git','','','','Y','Y','','','','','','Y','','','','cabal2nix\r\ncallCabal2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Friends were using it and it seemed cool','Y','','Y','','','','','Stateless installation','Managing multiple machines under unified configurations','Easy integration with Nix','Create a standard way to separate the \"general configuration\" from the machine-specific details like disk UUIDs.','Guix or Arch','Y','','','Y','','','','','Y','','','haskell.nix','spago2nix','Flakes are a comonad'),(2147,NULL,NULL,'en','1757184138',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2148,'1980-01-01 00:00:00',5,'en','1893252230','A5','A2','fem','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','community projects ','A2','Friends were pretty pushy about trying it, eventually gave into the peer pressure and tried nixos as a secondary install.','','','','Y','Y','','Y','','Y','','','','','','Y','Y','Y','Y','','declarative management of builds, projects, and environments together in a unified way that lets me easily compose them together','`nix run`, allowing for quick testing of ideas','easy system configuration with nixos and home-manager ','I\'d add better docs, and make the language somewhat typed so that there\'s much less ambiguity without reading the source ','guix, possibly writing my own nix','','','','Y','Y','','','','','','','','','','cargo2nix','Y','Y','','','N','It\'s a pretty large project and the idea of maintaining a package (or multiple packages) may be a little more energy consuming than I\'d like.\r\n\r\nI\'d rather have a flake that I maintain separately with all my packages people could use if they needed.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Same reason I started using nix, friends eventually pressured me into trying it.','Y','','Y','','','','','Same as nix','Same as nix','Same as nix','better install process, better docs explaining some common patterns, the docs explaining some common issues more clearly (ex. if a hydra build fails your system may start to build the packages from source, and how to avoid that)','guix','Y','Y','','','','','','Y','','','','I use flake-utils, and flake-utils-plus for most flakes I write ','','Nix is really great and so is nixos.\r\nI think the largest problems with it at this point would be all the legacy debt it\'s incurred and the lack of proper docs.\r\nThe community has been making a lot of great progress in docs but it\'s not always obvious where to look for docs, and there\'s a sort of divide in some docs between flakes and normal nix.\r\nI\'m sure you all are aware of the docs and are working to improve that.\r\nI\'m not really involved in the community at all and only found this survey by chance.\r\nAlso forgot to mention but I really wish there was a native nix of sorts for windows.'),(2149,'1980-01-01 00:00:00',5,'en','1420394588','A5','A2','-oth-','Trans woman','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Well, I\'m a self-taught Haskell developer. As you might know, Haskell has it\'s own special ecosystem for project builds (cabal, stack, plain ghc). Getting all of those tools working on Arch was a big pain. I tried using ghcup (https://www.haskell.org/ghcup/), but it proved to be a very brittle system. When looking at online at all the ways others handled this issue, I found that Nix + Haskell seemed like the best option. \r\n\r\nI also remember hating the fact that my system\'s build wasn\'t reproducible. Every time I got a new computer I\'d have to copy over a ton of different config files from a bunch of different locations on my hard drive to the new machine. I would also have to reinstall all my programs with pacman. It was not fun.\r\n\r\nBecause of these two major issues, I switch to Nix and NixOS at the same time. I would have used GuixSD instead, but at the time I was switching distros, my daily driver\'s wifi chip used an unfree driver. Since GuixSD only allows you to use free drivers, it was clear that NixOS was the only right choice.','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Declarative system management via NixOS','Declarative environment management via nix-shell','nix-build',' I\'d make nix flakes the default way of packaging things in nix. Also, I\'d convert ALL the legacy packages in nixpkgs to flakes.','GuixSD','','','','Y','Y','','','','','','','','','','N/A','Y','Y','','','N','There is no software that I care to add to nixpkgs and I don\'t know the Nix expression language well enough to update the packages that I do use.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','If you read the story about why I switched to Nix, I cover it there.','Y','','','','','','','Declarative system management','Easy to use installer','','','GuixSD','Y','','','','','','','','','','xmonad','N/A','N/A','If you want to look at my current system config, it is hosted here: https://github.com/IQubic/nixos-config'),(2150,'1980-01-01 00:00:00',5,'en','1384220212','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','Engineering manager','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','I started using Nix because I started using NixOS. Nix by itself wasn\'t my original interest.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','Reproducible dev environments','Binary caching of source packages','Ability to easily override \"system\" packages','More type checking and better error messages.\r\n\r\nA cleaner abstraction (in the docs) between how Nix works and how I can use it to accomplish my actual goals.\r\n\r\nContent addressability!\r\n\r\n/opt/nix. :|','Guix. ;) (That\'s a joke. I assume the spirit of the question means no Guix, either.)\r\n\r\nFor home systems, I would probably use an ugly mess of custom bash that only accomplished 10% of what I can do with Nix.\r\n\r\nAt work, I already use Ansible and Docker, and I would rely on them more. ','','','','Y','','','','','Y','','','','','','callCabal2nix\r\n\r\nnode2nix','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was tired of rebuilding my Linux systems from scratch every time I need to do a major OS upgrade. I was also intrigued by the lazy functional Nix language.','Y','Y','Y','Y','','','','Painless major version upgrades','Identical OS configuration across multiple devices','A huge set of tested packages to install','','Vanilla Ubuntu','Y','','','','','','','','','','notion window manager','Nixpkgs. One can hardly use Nix or NixOS without being confronted by it. Pros: it\'s very easy to contribute to NixOS! Cons: it\'s daunting, under documented, and uses a variety of techniques to do the same thing (because different people are contributing to different parts).','I haven\'t even *tried* the experimental features because I value stability in my tools. However, there are a lot of features in Nix that have been marked \"experimental\" for the whole time I\'ve been in the ecosystem. I wish they would just get mainlined.',''),(2151,NULL,1,'en','740854527','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','ChromeOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2152,'1980-01-01 00:00:00',5,'en','925859032','A5','A2','fem','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I needed to use some SDR software, and it wouldn\'t work on my system cause libraries were too new, a friend told me I could use nix-shell to create a shell with older versions.','','Y','','','Y','','Y','','Y','','','Y','','','Y','Y','','Y','','The ability to have environments with completely different packages','The ability to configure the whole system from a single file','','I don\'t know enough about Nix yet','chroots and bash scripts','','','','','Y','','','','','','','','','','','Y','','','','N','The packages I would contribute are complete hacks, and small forks of bigger projects that don\'t have a nixpkg yet.','N','N','I\'m not ready to move to NixOS just yet, I just started using Nix.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2153,'1980-01-01 00:00:00',5,'en','2012200785','A2','A2','male','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A2','I started with NixOS, and nix just came with it','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Reproducible development/project-specific shells','Being able to run programs \"without installing them\" and without them hanging around forever','A single language to describe all/most of my builds and configurations in','','Probably a variety of built tools on their own and globally installed tools that hopefully work together','','','','Y','Y','','','','','','','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I was trying to find a good way of keeping my two computers configuration in sync','Y','','Y','','','','','The whole system configuration can live in git','Many modules in nixpkgs/home-manager making setting new things up often quick and easy','Rollbacks of the whole system configuration','Making modules more (easily) extensible - like modifying the configs or systems services generated by a module','Probably still Arch with a tool like chezmoi to manage my dotfiles','Y','Y','','Y','','','','','','','sway','home-manager, nix-direnv, emacs-overlay','lorri',''),(2154,NULL,1,'en','215207301','A6','A3','male','','Y','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2155,'1980-01-01 00:00:00',5,'en','738417','A6','A2','male','','','','','Y','','Y','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A3','Running into problems getting everyone the exact environment I wanted.','','Y','','','','','Y','Y','','Y','','','','','Y','Y','','Y','','Binary caches (substituters)','Reproducibility','Large package repo (nixpkgs)','','Docker, (implying Nix doesn\'t exist means Guix won\'t exist also)','Y','Y','','Y','Y','','Y','','Y','','Y','','','','https://github.com/nix-community/poetry2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A3','Same reason as Nix.','Y','Y','Y','Y','','','','Generations','Ability to deploy the same configuration fast','Tight integration with Nix','','Fedorsa Silverblue','Y','','','','','','','','','','Sway, XMonad','nixpkgs-wayland, nixpkgs-review','niv','Thanks!'),(2156,'1980-01-01 00:00:00',5,'en','1121088831','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','The idea of NixOS appealed to me and it turned out very usable. From there I dug deeper into nix and attended a few nix Meetups and conferences.','Y','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','Reproducibility','Stability','Ease of use for student developers (i.e. telling them just to install direnv and then their dev env is set up)','Static typing -> better error messages','Probably nothing. I.e. back to setting things up by hand','','','','','','','','','Y','','','','','','builtin cabal2nix','Y','','','own repo with additional packages','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Appealed to me and turned out to be stable and usable.','Y','','','','','','','Stability','Modules for easy configuration','Declarative system setup','Easier setup for single board machines like rPi','Probably back to Arch','Y','','','','','','','','','','xmonad','','',''),(2157,'1980-01-01 00:00:00',5,'en','1166228116','A5','A3','male','','','','','','','','','','','','','','Y','Y','','','Y','','','','','','','Content Creator','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Linux Unplugged Episode #451 Chris Fisher sold me on it','','Y','','','','','','','','','','','Desktop','','','','','Y','','Reproducibility','','','','package lists for flatpak','','','','','','','','','','','','','','','','Y','','','','N','My newness to the packaging, but I do plan to start porting some tools to Nix packages','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Chris Fisher sold me on running it on server, but I\'ve gown to love it on my desktop','','','Y','','','','desktop','Reproductivity','','','I would make the nixos.wiki website an official wiki','Gentoo','Y','','','','','','','Y','','','dwm','flakes','','I\'m a content creator and am working on a series of videos specifically about NixOS'),(2158,NULL,1,'en','521409830','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2159,NULL,1,'en','1531611601','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2160,NULL,NULL,'en','1688486418',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2161,NULL,1,'en','1866834990','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2162,'1980-01-01 00:00:00',5,'en','1556190839','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I have a few laptops and a desktop workstation at home and in the office. I love to customize my development environment. With NixOS, the same exact configuration just follows me everywhere.','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Reproducible builds','Easy to test different desktop environments','Never needing to re-install everything from scratch ever again..','Would add perfect and easy to use documentation for nixpkgs and all its functions.','Arch Linux or GNU Guix probably','','','','Y','Y','','','','','','Y','','','','https://github.com/svanderburg/node2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I run many desktop computers. I like to customize everything. NixOS lets me to do that and e.g. replace a new SSD to the machines: I\'m back to business in less than an hour with the EXACT SAME CONFIG.','Y','','','','','','','Basically same what I answered in the previous section.','Basically same what I answered in the previous section.','Basically same what I answered in the previous section.','Again, a searchable nice easy-to-use nixpkgs documentation.','Arch Linux, GNU Guix','Y','','','Y','','','','','','','Sway','https://github.com/Mic92/nix-update/','',''),(2163,NULL,2,'en','1605755188','A2','A2','male','','','','','','','Y','','','','','','Y','','','','','Y','','','','','Y','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','A friend at my local university IT club presented the capabilities of Nix and NixOS to us in a 2 hour course. Coming from a functional programming background, it looked wonderful! Some weeks later, my laptop died, so after getting a backup, I installed NixOS cold turkey. I spent a whole week just configuring the nix-config and home-manager. After writing a fair bit of nix config and nix expressions, I went on to installing it on my home server, packaging some programs (including some school projects which made gitlab pipelines trivial), and today I\'m using it almost daily.','','Y','','','','','Y','Y','Y','','','','','','Y','Y','','Y','','Purity and reproduceability of software and dependencies.','Declarative configuration of a whole system.','Ease of configuration with nix modules','Add lots and lots of documentation and examples.\r\nA more standard interface for dealing with dependency management in different languages (figuring out dependency management in javascript and dart/flutter was one of the hardest challenges with nix i\'ve hit yet)\r\nAdd some more lib functions (like imap1attrs, splitMap, words)\r\nBetter error logging.','I\'ve heard that Guix is quite similar, but honestly I would probably end up making my own system for handling dotfiles and use something like arch.','','','','Y','Y','','Y','','Y','','','','','','npmlock2nix https://github.com/nix-community/npmlock2nix\r\nnode2nix https://github.com/svanderburg/node2nix\r\ncallCabal2nix (from nixpkgs)\r\npub2nix https://github.com/paulyoung/pub2nix (through nix-dart https://github.com/tadfisher/nix-dart) \r\nmvn2nix-maven-plugin https://github.com/NixOS/mvn2nix-maven-plugin\r\npoetry2nix https://github.com/nix-community/poetry2nix','Y','Y','','','N','I haven\'t gotten around to it just yet. I\'m planning to package some more stuff before I start adding pull requests.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','See the previous Nix story. It\'s mostly the same','Y','Y','Y','','','','','','','','','','Y','','','','','','','','','Y','Xmonad',NULL,NULL,NULL),(2164,'1980-01-01 00:00:00',5,'en','947983425','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Declarative package management sounds awesome - as a security conscious engineer, moving toward everything being declarative and reproducible is a valuable pursuit.','','','','','','','Y','','Y','','','','','','Y','','','Y','','Wide variety of inbuilt services (eg. Tarsnap)','Great ability to add / modify packages with overlays, flakes, etc.','nix-shell for experiments','I\'ve often wondered if the scripting / configuration language could be made more comfortable for imperative programmers like me.','FreeBSD or Gentoo.','','','','','','','','','','','','','','','','Y','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was an old school Gentoo user / dev, and FreeBSD user, and find that NixOS provides me much of the same customization, but much improved ability to move configuration between systems efficiently.','Y','','Y','','','','','Declarative system configuration -- so much lighter weight than something like chef, but for my personal projects gives me much of the same benefit of configuration stability and migration.','NixOS containers','Lightweight installation (run more on less hardware)','I\'d improve the handling of switching to new configurations, especially as it relates to networking services. I have amorphous issues where sometimes on upgrades my containers lose parts of their complex networking setup.','Gentoo or FreeBSD, maybe Arch','Y','','','','','','','','','','xmonad','','','Thanks!'),(2165,'1980-01-01 00:00:00',5,'en','1832566023','A2','A4','male','','','','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','','','','','Y','','Y','','','','Router','','Y','','','Y','','My ENTIRE system config is a few files in Git.','Reasonably up-to-date packages. ','I love that for pretty much every option I can go to the web page and search it. ','The Nix config language itself sucks, I always have to look things up. ','','','','','','','','','','','','Y','','','Drone','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','System-as-a-config, up-to-date packages , no-drama-non-political community. ','','','','','','','','See my earlier answers for \"Nix\". Frankly I don\'t know what difference between these is, I only consciously use NixOS ...','','','','Before I used Nix: Still use Ubuntu. Now ... I\'d probably cry a lot. ','Y','','','','','','','','','','','','',''),(2166,'1980-01-01 00:00:00',5,'en','1925286757','A2','A5','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','N','Y',NULL,'Too time intensive to work my way into it','Having a block of free time to focus on it.\r\nProbably better tools.\r\nBetter concept documentations for an easier start.\r\nSimple use-cases as a hands-on example to try the first commands and packages (how to install Firefox, How to use Nix as guest on a different OS)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Great work! :)'),(2167,'1980-01-01 00:00:00',5,'en','860185984','A6','A3','male','','Y','','','','','Y','','','','','Y','Y','','','','','','','','','','Y','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was afraid to to update my machine (ubuntu+nvidia+time-critical project) and didn\'t want to live that way ever again','','Y','','','','','Y','','Y','','','Y','','','Y','Y','Y','Y','','Atomic rollbacks','Declarative configuration','snadboxed package builds','The Nix language. It is very unintuitive to learn and use','Guix, or ansible/puppet','','Y','','Y','Y','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','','Y','','Declarative config','Atomic risk-free rollback','(mostly) single abstraction layer over (almost) everything in the system','Nix is too damn slow, and makes network calls to download every input (nixpkgs + someties other), then spends time parsing it. Even if --offline is provided. Nix should *only* make network calls when it *absolutely needs*, not just in case.','GuixSD','Y','','','','','','','','Y','','','emacs-overlay\r\n\r\nnixpkgs-unfree\r\n\r\ncachix','nix-doom-emacs',''),(2168,'1980-01-01 00:00:00',5,'en','325647203','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','N','Been meaning to try it. Just been busy and it feels like there is a lot involved with switching\r\nIt\'s possible that better beginner-targetted documentation and examples could help it feel less daunting',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Already mentioned lack of time to dedicate to it and that the switch feels daunting',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2169,'1980-01-01 00:00:00',5,'en','512962289','A2','A4','male','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','The idea of nix was interesting, I stayed because my system never broke.','','','','','','','','','','','','','','','Y','','','','','stable system with some unstable/more up-to-date packages','it\'s easy to try things out thanks to nix-shell','','The system is too complex. The documentation is not good and it is difficult to do something like packaging. There are to many details and things someone has to know to get it right. It is possible, but usually only with a massive time investment. Even after using NixOS for some years I don\'t know how to install my own package system wide.','openSUSE Tumbleweed','','','','','','','','','','','','','','','','Y','','','','N','Building packages is too complicated.','Y',NULL,NULL,NULL,NULL,'A1','','','','','A3','','','','','','','','','','','','','','','','','','','','','','','','sway','','','I love the overall idea of Nix, but without good documentation or a right way to do X (not the current \"do what you want, you have 1000 ways to do it\"), I don\'t think it will attract a lot of people.'),(2170,NULL,1,'en','2020788958','A2','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2171,NULL,1,'en','441495826','A2','A2','male','','','','','','','','Y','','','','','','','','','','Y','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2172,'1980-01-01 00:00:00',5,'en','643293094','A5','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I started using Nix as the way to develop my NixOS-based system. I had to develop a system which needed the performance of a desktop machine, but also interact with hardware devices and specialized programs in a relatively complex setup. It just needed to boot into and run my program, so general usability for the OS wasn\'t so important, but being able to manage all these pieces was. I asked around some communities I knew for software and techniques that might be useful for this, and one of them recommended NixOS. I initially thought it was excessively complex and kind of difficult, but it solved my problems quite well. I eventually grew to love it and have not regretted learning it.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','Y','','Reproducibility/documentation/immutability/version-control-ability of programs and system setups','Ability to know a program\'s dependencies and easily move them between machines or package them up into files','Easy modification/patching/customization of programs through overriding','My wand would make all graphical applications work perfectly and immediately on non-NixOS distros. Anything which uses OpenGL, CUDA, OpenCL, and in some cases GTK+ (particularly file dialogs for some reason) will install fine but crash instantly on non-NixOS systems due to where the libraries are placed. My wand would also let me easily run NixOS systemd services and add udev rules from Nix packages and such on non-NixOS machines.','Just the package manager lock files, like requirements.txt or Cargo.lock, plus shell scripts where necessary.','','','','Y','Y','','','','','','Y','','','','I don\'t regularly use any.','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A3','I had to develop a system which needed the performance of a desktop machine, but also interact with hardware devices and specialized programs in a relatively complex setup. It just needed to boot into and run my program, so general usability for the OS wasn\'t so important, but being able to manage all these pieces was. I asked around some communities I knew for software and techniques that might be useful for this, and one of them recommended NixOS. I initially thought it was excessively complex and kind of difficult, but it solved my problems quite well. I eventually grew to love it and have not regretted learning it.','','','','','','Y','','Reproducibility/documentation/immutability/version-control-ability of programs and system setups','Ability to know a program\'s dependencies and easily move them between machines or package them up into files','Easy integration of a wide variety of programs and services','I wish some parts of the configuration, in particular network configuration and hostname, could be optionally removed from the system definition. At least how I use it, it\'s a bit of a headache for each of my machines with a particular system to need their own configuration that\'s only different in the hostname, and it complicates transferring system definitions and stuff. Plus a magic manual which always explains what I want to know','Based on how other people use and describe it (I haven\'t ever tried it myself), probably Docker or a similar container system. I use containers semi-regularly but only as lightweight VMs, so I understand Docker would offer the automated generation and immutability I turned to Nix for.','Y','','','','','Y','','','','Y','LXQt','Probably my favorite Nix-adjacent site, which I\'m not sure many people know, is https://search.nix.gsc.io/ . I also use home-manager for my deployed NixOS systems to keep some of the user-specific configuration under Nix\'s control. I regularly use https://github.com/guibou/nixGL which solves OpenGL-related problems, but is a bit annoying to keep up to date and remember to use properly.','Can\'t think of any.','So I know Nix not having documentation is a bit of a meme that I\'ve brought up in some of my other responses, and to be honest I do feel docs lacking in some important places (though I\'ve worked out how to cope with https://search.nix.gsc.io/ for instance), but I did some thinking and what I really feel scares people away from Nix is an abundance of new concepts that really need all this documentation. The memes further say Arch is hard and requires lots of documentation, but they love its wiki. And what its wiki has is lots of step by step tutorials and solutions for specific problems that are all easy to find and follow.\r\n\r\nMany people, myself included, don\'t really like sitting down to read something from top to bottom all that much, but that\'s what Nix demands. I remember asking the person who first recommended NixOS to me where was a simple step by step walkthough to just do what I wanted without having to learn all about everything, and they said such a thing doesn\'t really exist and wasn\'t a good thing even if it did (spoiler alert: they were right). I did eventually do the Nix Pills, but did not really understand them at the time, and for someone who isn\'t already fairly certain that Nix does what they want, they are quite complex and off-putting. In the beginning, they didn\'t even really help and I was just left nonplussed. I eventually had a number of \"ah-hah!\" moments working with Nix where I was able to see a particular concept in action, recall the lesson from the pill, and actually feel like I understood that aspect, but it took at least a year for all the pieces to finally fall into place in my brain. It\'s worth nothing this was a year of using Nix for productive work, not just being focused on learning it. On the other hand, I\'m not sure these concepts can really be learned without having a practical problem to apply them to, so it may not be possible to accelerate this learning.\r\n\r\nThis is ultimately why I find it difficult to sell Nix to my co-workers and friends. Most are engineers and academic researchers who aren\'t super comfortable with Linux and the command line in the first place, but know a bit and are curious and willing to entertain unusual ideas. I imagine myself saying to them \"you should use Nix, it\'s great!\" and they ask \"why is that?\" and I can say some buzzwords like \"it\'s declarative, pure, reproducible!\" and they go \"okay, how do I get started\" and I start off \"well, first you have to understand the difference between and interactions among Nix the OS, Nix the package manager, Nix the package collection, Nix the language, Nix the command line tool, Nix the daemon, Nix the store (and remember that half the people who say these things don\'t fully understand this and the other half are not good about clarifying)\" then continue rambling \"so you\'ve got derivations and expressions and generations, not to mention evaluations, instantiations, and realizations, ...\". \r\n\r\nThen I feel compelled in good conscience to admit \"and once you switch to Nix, no copy and paste tutorial will work, all software will be incompatible, and you\'ll be fighting everything the whole way\" because in research everybody expects you to just copy and paste their instructions into a fresh Ubuntu 18.04 machine and pray nothing explodes, or if you\'re real lucky, use their particular flavor of tool that solves these problems in ways substantially inferior to Nix, like Docker or lockfiles. For me it\'s not hard to translate these types of instructions and really reap the benefits of Nix, which is why I keep doing it, but how do I effectively communicate that it\'s worth it? Sadly, I genuinely feel like the average Nix user needs to understand these things to really use Nix effectively, but it\'s quite crazy to actually expect them to want to or be able to from scratch. If you don\'t want to dive all the way in and instead want to install Nix on a different distro, half of Nixpkgs (like accelerated graphical stuff, and system services) will be inaccessible to you or have to be hacked around (yet more concepts you need good understanding of!).\r\n\r\nIt would be nice to have some sort of advice for y\'all here to change things up and solve these problems, but I don\'t really have anything. Nix\'s willingness to throw out conventional wisdom and restructure the software planet in this radical way really is what gives it its power, and, now on Nix\'s side, I don\'t want to give it up! But getting over to its side was not easy. I admit I am a bit of a black and white thinker, so maybe I am pessimistic about my co-workers and overestimate what\'s required. I\'m not sure I\'ve seen anyone comment on this \"concept overload\" problem before though, and wanted to share these thoughts.\r\n\r\nReally, my magic wand from the previous sections would teach people all these things, and give them their own magic wand for them to teach others.\r\n\r\nOne thing I am grateful for from NixOS is that it\'s probably the largest open source community I\'ve felt like I am a part of. PRs move rapidly and are still a bit intimidating, but I feel they are a friendly way to get started with open source.'),(2173,NULL,NULL,'en','793900762',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2174,'1980-01-01 00:00:00',5,'en','2044080833','A5','A5','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','','','','Y','Y','Y','','','N','N','Currently trying it, not a regular user though',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2175,NULL,4,'en','442346485','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(2176,'1980-01-01 00:00:00',5,'en','427384175','A5','A3','male','','','','','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','Introduced by Michael at D. E. Shaw.','','Y','','','','','Y','','Y','','','Y','','Y','','','','Y','','access to newer package versions than in apt/yum','side-by-side package version installs','ability to quickly roll back bad package upgrades','Easier-to-use CLI tools (a la nixpm)','Standard Linux package managers such as apt/yum','','','','','','','','','','','','','','','','Y','','','','N','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','Learning immutable infrastructure with Raspberry Pis','','','Y','','','Y','','immutability/reproducibility','','','','Arch/Debian/CentOS','','','','','','','','','','','','','',''),(2177,NULL,NULL,'en','756981559',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2178,'1980-01-01 00:00:00',5,'en','608645066','A5','A3','male','','','','Y','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','N','N','Interested in the security, reliability, and reproducibility/portability that NixOS could offer. The biggest open question is how well virtualization/isolation works and if a QubesOS like multi-environment setup can be achieved ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','exploring if qubes type isolation is possible with added benefits of reproducibility/portability of declarative build configs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'would like to explore nix bitcoin https://nixbitcoin.org/','none yet','NixOS, and reproducible builds in general, seems really cool. If there was a way to merge QubesOS and NixOS that would be amazing'),(2179,'1980-01-01 00:00:00',5,'en','2064895296','A1','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','','','- Add kind error messages\r\n- Add a way to fetch github private repositories by nix-prefetch-git (used in haskell.nix)','docker + shellscript','','','','Y','','','','','','','Y','Y','','','https://github.com/input-output-hk/haskell.nix','Y','','','','N','I\'m still learning nix','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'haskell.nix','',''),(2180,'1980-01-01 00:00:00',5,'en','1255159139','A2','A3','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','Y','','','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It\'s been a hype in my local hackspace for several years now.','','Y','','','','','Y','','Y','','','Y','','Y','Y','','','Y','','Managing my machines and home environments in a declarative manner with NixOs and HomeManager.','Creating and sharing development environments.','Reproducible environments with nix flakes.','Make nix flakes stable','Debian (that\'s what I used before)','','','','','Y','','Y','','','','','','','','https://github.com/kolloch/crate2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It\'s been a hype in my local hackspace for several years now.','Y','','Y','','','Y','','Managing my machines and home environments in a declarative way with NixOS and HomeManager','','','','Debian','Y','','','','','','','','','','Sway','Nix flakes','','Thank you!'),(2181,NULL,NULL,'en','838280980',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2182,'1980-01-01 00:00:00',5,'en','257419640','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Switched to haskell for development at work','','Y','','','Y','','Y','','','','','','','','Y','Y','Y','','','binary cache','shell','build docker images','replace nix programming language with something less dynamic\r\nimprove cache download parallelism and per cache priorities','docker','','','','','','','','','Y','','','Y','','','https://github.com/input-output-hk/haskell.nix\r\nniv','Y','','','','N','no need at the moment','Y',NULL,NULL,NULL,NULL,'A2','','Y','','on my framework laptop','A1','experimenting with new laptop','','','','','','','laptop','boot to generation\r\n','binary cache\r\n','reproducible system if hardware is dead','','archlinux','Y','','','','','','','','','','i3','direnv\r\n','home-manager',''),(2183,'1980-01-01 00:00:00',5,'en','1887240585','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Saw video from DistroTube YouTube channel which piqued my interest. Before that I used to use arch and have had multiple times when I have had to reinstall the system. Each time, I then have to try to remember all the small configuration tweaks that I had done to make the system run as it did. Now with NixOS reinstalling is just a breeze and every time I do some configuration changes I already know that they are going to stay even if I reinstall so I feel like the work on tweaking the small things in the system is also more worth it.','','','','','','','Y','','','','','','','Y','Y','Y','','','','System reproducibility','Huge package library','Config management with home manager','Documentation should be expanded alot.','Pacman','','','','','','','','','','','','','','','','Y','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','','Reproducable system','Config management with home manager','Easy setup of many things with options','I would add comprehensive documentation. Especially, getting started with the OS was quite a struggle. Good thing was that I like challenging myself with computers, so it did not put me down, but I am sure many people cannot even get started with the OS as the documentation is so lacking.','Arch','','','','','','','','','','','Awesome','','',''),(2184,NULL,NULL,'en','1419995415',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2185,'1980-01-01 00:00:00',5,'en','1847800231','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','I started using it through NixOS.','','Y','','','','','Y','Y','Y','','','Y','','','Y','Y','','Y','','Isolated package build environments','Cross-compilation','Declarative development environments','I would create a high quality, stable command line and fix all the bugs in the command line tools (version incompatibilities, remote building problems). I would also make nixpkgs evaluate instantly.','','','','','Y','Y','','Y','','','','Y','','','','crate2nix: https://github.com/kolloch/crate2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','Needed something more robust than Ansible to manage a variety of very different servers.','','Y','Y','','','Y','','Declarative machine configuration ','SD card image generation','','I would add declarative OS image generation tools.','Ansible or similar','Y','','','','','Y','','','','','','','',''),(2186,'1980-01-01 00:00:00',5,'en','1606425822','A2','A3','male','','','','','','Y','Y','Y','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was frustrated how easy it was to break other distros by accident and was relieved to find those concerns alleviated by NixOS.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','Reproducible, distributable builds','Build \"recipes\" that are easy to modify from outside / hackabilty','Flakes','','I might switch industries in that case','Y','Y','','Y','Y','','Y','','','','Y','Y','Y','https://github.com/input-output-hk/cicero','yarn2nix\r\nhttps://github.com/svanderburg/node2nix\r\nhttps://github.com/nix-community/npmlock2nix','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was frustrated how easy it was to break other distros by accident and was relieved to find those concerns alleviated by NixOS.','Y','Y','Y','Y','','','','declarative system configuration that I can build up front','composable system configuration (reusable modules)','everything that makes the system hard to break (read-only /etc, atomic activation, ...)','Add support for other init systems than systemd','I\'d have to build it. Other distros suck','Y','','','Y','','','https://github.com/input-output-hk/bitte','','','','Sway','https://github.com/Mic92/nixos-shell\r\nhttps://github.com/numtide/flake-utils\r\nhttps://github.com/input-output-hk/nix-inclusive','Disnix / DisnixOS / Dysnomia / DyDisnix','Thank you a thousand times. Nix may have saved me from quitting computers.'),(2187,NULL,3,'en','133953018','A2','A3','male','','','','','','','','','','Y','','','','','','','','Y','','','','','','Y','','Y','','','','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2188,'1980-01-01 00:00:00',5,'en','1939124701','A2','A3','male','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','','','','','','','','Y','Y','','Y','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','','','','','','','','','Y','','','','','','','','Y','','','','',''),(2189,NULL,1,'en','2038896111','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2190,NULL,2,'en','959107544','A2','A3','male','','','','','','','Y','Y','Y','Y','Y','Y','Y','Y','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Configuration of my dotfiles','','','','','','','Y','','Y','Y','Y','','','','Y','Y','','Y','','Reproducability','A consistent way of configuration','nix-shell','A type checker, but that\'s what I hope Nickel will be.','Guix','','','','','Y','','','','','','Y','','','','cabal2nix','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2193,'1980-01-01 00:00:00',5,'en','2096250356','A1','A2','male','','Y','','','','','','','Y','','Y','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Nix is used in the company','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','declarative system configuration with rollback','nix shell','nix flakes for deterministic build','Easier ways to debug nix script (type checker or something instead of a complex traceback)','Archlinux','','','','','Y','','','','','','','','','','','Y','Y','','','N','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(2194,NULL,2,'en','1301123236','A2','','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I seek for good desktop OS. Different programs on the internet (including GitHub) often are distributed in different formats (Flatpak, Gentoo overlay, RPM) and to be integrated into OS they require specific OS (OS features). ','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2195,'1980-01-01 00:00:00',5,'en','1463871996','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I wanted to automate setting up my systems, and to avoid OS bitrot. NixOS was the solution for both.','','','','','','','Y','','Y','','','','','','Y','','','Y','','Declarative environment configuration','Reproducibility','Isolation','I would move flakes from experimental status. And maybe add optional type hints so error messages become more helpful.','I don\'t know.','','','','Y','Y','','','','','','Y','','','','https://github.com/nix-community/poetry2nix\r\nhttps://github.com/nix-community/npmlock2nix','Y','','','','N','I only recently came across something I could contribute, but haven\'t had time to do it (adding a new package).','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I wanted to automate setting up my systems, and to avoid OS bitrot. NixOS was the solution for both.','Y','','Y','','','','','Declarative configuration','Maintainability','Ease of patching','I would add an embraced way to add secrets to configuration.nix','Guix ofc. If that didn\'t exist, Arch + Ansible maybe.','Y','Y','','','','','','','','','i3+none','Nix-direnv\r\nniv','devos (couldn\'t figure it out as a noob)','nix is the best'),(2196,'1980-01-01 00:00:00',5,'en','2140362457','A5','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','','','','','Y','','','Y','','','','','Y','','','Y','','','','','','','','','Y','Y','Y','','','','','','Y','','','','','Y','Y','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','Y','','','','','','','','','','','','','Y','','Y','','','','','awesome','','',''),(2197,'1980-01-01 00:00:00',5,'en','1367186865','A2','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','You got me at \"declarative\". It took a few attempts, as it is really intimidating at first, but now I\'m all in.','','Y','','','','','Y','','Y','','','','','','Y','','','','','declarative configuration','reproducibility','nix-shell','Make home-manager a first class citizen.','Brew, virtualenv...bash scripts.','','','','','','','','','','','','','','','','','','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Same as nix. I actually use nix mainly through nixos.','Y','','Y','','','','','','','','Make home-assistant a first class citizen. I want to have to work NOT to have my dotfiles managed by nixos, it should be the default.','i hear about guix? but I would probably just live in my ignorance.','Y','','','','','','','','','Y','','','',''),(2198,'1980-01-01 00:00:00',5,'en','1284135554','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A5','Through NixOS.','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','declarative','reproducibility','community','# add:\r\n- more maintainers & developers\r\n\r\n# change:\r\n- faster evaluation times\r\n- releases, that are actually working','nickel and/or guix','','','','Y','Y','','Y','','Y','','Y','','','','https://github.com/nix-community/dream2nix\r\nhttps://github.com/nix-community/yarn2nix\r\nhttps://github.com/svanderburg/node2nix','Y','Y','Y','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Got hold of a i686-linux laptop (my first laptop), which didn\'t run my preferred OS. Thus had to search for an 32bit OS. \r\nBefore my purchase I was already using ansible and I had to find something definite declarative.','Y','Y','Y','Y','Y','Y','','declarative','reproducible','community','# add:\r\n- more maintainers (and better workflows)\r\n- more packages (also a legacy package set separated from nixpkgs for all these pesky python2 and EOL packages)\r\n\r\n# remove:\r\n- all these pesky legacy and EOL packages, looking at you python2! ;)\r\n\r\n# change:\r\n- more funding\r\n- better stance on security','Spectrum or guix. But if neither exists than FreeBSD and QubesOS with some grain of salt and some tears from a puppet and maybe ansible?\r\n\r\nNope, rather #7 from https://mwl.io/faq#tech:\r\nWhat do I recommend? I recommend abandoning technology, moving to a colder climate that won’t be flooded as the oceans rise, and dedicating yourself to improving the soil as you learn to farm enough to feed yourselves and those you love.','Y','','','Y','Y','Y','krops','','','','i3wm','home-manager\r\nsops-nix\r\nnur-packages\r\nnixos-generators\r\nnix-direnv\r\nnixpkgs-review\r\nnixpkgs-hammering\r\ntreefmt/nixpkgs-fmt/nixfmt/alejandra\r\nnix-environments\r\nmobile-nixos\r\nrobotnix\r\nimpermanence','lorri','Keep up your good work.'),(2201,'1980-01-01 00:00:00',5,'en','527568006','A2','A3','male','','','Y','','','Y','Y','','','Y','Y','','','','','','Y','Y','','','','','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Frustrations with existing package managers. e.g. difficulty patching archlinux packages, inability to automatically follow upstream packages','','Y','','','','','Y','','','','','','','','Y','Y','','Y','','Declarative and reproducible environment management','Simple customization of nixpkgs','No namespace pollution in /usr etc.','Allow exactly one single derivation to be installed using nix-env/nix profile. That derivation should be a pkgs.buildEnv.','archlinux\'s pacman + AUR','','','','Y','Y','','','','','','','','','builds.sr.ht','','Y','Y','','','N','','N','N','More familiarity with nix itself.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','nix-user-chroot completely failed due to a glibc version mismatch error',''),(2200,'1980-01-01 00:00:00',5,'en','1567974564','A5','A3','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','Android','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','','','','','','','Only NixOS','Y','','','','','','','','Y','','','Y','','Enabling NixOS','','','I\'d *remove* the need to install so many gigabytes of packages again and again because Hydra rebuilt everything. Maybe that means *adding* finished implementations of \"intensional store\" or \"content-addressed derivations\", but I don\'t know enough about Nix internals to say. Maybe it would mean *adding* dependency resolution based on solving systems of version constraints (and occasionally other constraints). (Is the wand magic enough for that?)\r\n\r\nI\'m reminded of an IRC acquaintance, a thoughtful Paludis/Exherbo developer, saying that Paludis and Nix are \"the only two system package managers on the Pareto frontier of package management\" and that an ideal package manager would combine Nix\'s strength of building deterministic and sandboxable environments from already-resolved dependency constraints with Paludis\'s strength of resolving dependency constraints.','I guess Fedora with whatever its standard package manager is at the time, or maybe some Gentoo variant or Windows or (if I had the hardware for it) Qubes','','','','','','None','','','','','','','','','','Y','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','','Y','','','','','','','Allowing much of the system configuration to be specified in a fairly consistent manner (NixOS configuration) in a central location (/etc/nixos) that can be a single Git working tree, making it easy to version-control, back up, copy to new computers, and sync between computers','Whole-of-OS rollbacks / being able to boot into old OS versions if necessary','','I don\'t think I have significant problems with NixOS that aren\'t problems with Nix (and thus described in the other answer).\r\n\r\nI might make it always keep the most recently successfully booted system generation available to boot in case newer generations are unbootable (issue #24158).\r\n\r\nI might add extensive, easy support for a mandatory access control system, like SELinux or at least AppArmor, with all packages in nixpkgs magically gaining perfectly-crafted MAC profiles -- or at least I would magically import all the AppArmor profiles from Ubuntu, e.g., https://gitlab.com/apparmor/apparmor-profiles/-/tree/master/ubuntu . If the wand were powerful enough, I might make the Tomoyo LSM developer\'s new (2020) LSM be completed and try it, but that\'s not very related to NixOS.','I guess Fedora, or maybe some Gentoo variant or Windows or (if I had the hardware for it) Qubes','Y','','','','','','','','','','i3','','',''),(2202,'1980-01-01 00:00:00',5,'en','1481174768','A5','A6','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','','','N','N','Experimentation. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Testing.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none','none','not yet'),(2203,'1980-01-01 00:00:00',5,'en','1408187811','A5','A6','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','','Y','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because of NixOS.','','Y','','','','','Y','','Y','Y','','','','','Y','','','Y','','NixOS/Nixpkgs','','','1) add (possibly gradual) types\r\n2) remove implicit dependency upon bash (using plain sh would make it more portable and minimal)\r\n3) elevate the level of abstraction (Nix is the assembly language of configuration)\r\n4) get rid of flakes (flakes attempt to fix the purity/repeatability issue that should have been there from the beginning; is it too late? no idea but it feels like a wart)\r\n','Probably still be building dpkgs.','','','','','','','','','','','','','','','','','','','','Y',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was bored and wanted something to expand my mind. Switched to NixOS and it blew my mind! In my mind altered state, there is no way I can go back!','Y','','Y','Y','','','','Repeatable declarative configuration (that says it all)','','','You asked for it... :-)\r\n\r\n0) Lower the barrier of entry. Explanation: NixOS is very different and has a rather high barrier to entry because of the functional mindset and because Nix is so different from what most programmers know. A persistent (so may say stubborn) person who is not a functional programmer will be able to muddle through but the cost and risk of failure are high. Note: I am not necessarily saying we need a graphical installer but I do think we need to identify the classes of people who may wish to use NixOS and support them. Which leads to...\r\n\r\n1) Documentation, documentation, documentation! Explanation: NixOS has fairly good documentation but it is sometimes scattered, there needs to be more if it, and it needs to be organized more clearly into tutorials, how-to guides, explanation, and reference. (See the theory of documentation https://documentation.divio.com/). Current documentation has elements of all mixed up which makes it harder for users to find the specific documentation they need (assuming it exists at all, which sometimes it doesn\'t). \r\n\r\n2) Make clear the separation of what must be configured as root (in /etc/nixos/configuration.nix) and what can (and IMHO should) be configured as a user (possibly using home-manager). Explanation: one of the huge benefits of Nix/Nixpkgs/NixOS is that it empowers users to manage software for themselves without the need for special privileges. A multi-user system should only configure what is absolutely necessary as root and leave everything else to users. (For that matter, I think a single-users system will benefit as well.) My ideal, which can only be approximated in NixOS due to the monolithic nature of Linux, is everything being configured users space running on a microkernel.\r\n\r\n3) Packages need to be split into smaller pieces to allow installing only what is needed. Explanation: NixOS should be an ideal basis for minimal OS installations (for example: for IoT and embedded devices) because of its purity and explicit specification of dependencies. Yet because of monolithic package the minimal installation (on x86-64 at least) is still over 1 GiB. A high-level \"package\" in Debian is broken into \"bin\", \"lib\", \"doc\", etc packages (typically with an \"all\" package to get everything) which allows one to only install what is needed and thereby reducing the footprint. NixOS could beat other distributions at this game if the granularity of dependencies were to become finer.\r\n\r\n4) Elevate level of abstraction at which packages, modules, etc are written. Explanation: the Nix language is like assembly code: simple and flexible. But like assembly code, it is very low level making it harder to understand what it is doing and harder for newbies (and not so newbies) to write. We need to develop higher levels of abstraction (and static typing?) to make it easier to understand and to write or modify thereby lowering the barrier and making it easier for more people to contribute.\r\n\r\n5) Easier to port to other platforms. Explanation: I have a bunch of serviceable hardware that is no longer supported by any OS (ex: PPC Mac Mini). I\'d love it if I could run NixOS on it but it isn\'t a supported architecture and it isn\'t clear (and doesn\'t seem straight forward) how one would port NixOS to those platforms. I\'d also really like to port NixOS to run on Illumos (to gain access to Dtrace, Crossbow, etc without giving up the benefits of NixOS).\r\n\r\n5) Better parameterization of key components. Explanation: I\'d like to build NixOS against musl rather than glibc. Coupled with an earlier suggestion, NixOS could be a better basis for microservices than Alpine. Note: NixOS will likely always be larger than Alpine unless care was taken to ensure packages were all compiled against the same libraries, i.e., no \"this package must be compiled against libfoo vX.Y.Z\". I don\'t think there is too much of that however.\r\n\r\n6) Easier emacs configuration. Explanation: being a monolithic editor/OS platform, this is hard but I\'d really like to configure project specific emacs configurations in connection with nix-shell/direnv rather than having to have everything configured into emacs all the time. I\'m sure it is possible but the docs are too sparse and I\'ve been unsuccessful.\r\n\r\n7) Declarative configuration for firefox/chromium: Explanation: browsers form the basis for so much of contemporary computing but most things can only be configured from within the browser. This is a hard problem but I\'d like to be able to declaratively configure them so that I don\'t have to redo it whenever I do a new installation. (Extend this to any of the old-fashioned big bloated software suite thingies...)','Guix? (Then again, it wouldn\'t exist if NixOS didn\'t.) Probably continue with Debian. Or switch to FreeBSD. Or Illumos. But fortunately, I don\'t live in that alternative universe and I don\'t want to.','Y','','','','','','','','','','i3 and sway','','1) Nix containers (the networking aspect has always caused me problems and pushed me to Docker)\r\n\r\n2) Flakes (still dabbling with them as they solve a real problem but they feel like a grafted on wart which should be solved by incorporating a proper solution into Nixpkgs)','Keep up the good work!\r\nI\'d like to help with the huge list of things I think should be improved but Nix/NixOS isn\'t my day job. I have to squeeze time in here or there so progress will be slow.'),(2204,NULL,1,'en','1164917041','A6','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -/*!40000 ALTER TABLE `limesurvey_survey_2022` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_survey_2023` --- - -DROP TABLE IF EXISTS `limesurvey_survey_2023`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_survey_2023` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `submitdate` datetime DEFAULT NULL, - `lastpage` int(11) DEFAULT NULL, - `startlanguage` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, - `seed` varchar(31) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X658` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X633` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X634` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X634other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ009` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ010` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ011` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ012` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ013` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ014` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ015` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ016` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ017` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ018` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ019` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ020` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ021` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ022` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635SQ023` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X635other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X36X636other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X670` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X671` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X672SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X672SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X672SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X672SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X672other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647SQ001comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647SQ002comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647SQ003comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647SQ005comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647SQ006comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647SQ007comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647SQ008comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647SQ009` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647SQ009comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647SQ010` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647SQ010comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X647othercomment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X673SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X673SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X673SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X673SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X673SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X673SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X673other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X651` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X652SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X652SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X652SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X652other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X653` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X654` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X661other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X662other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X674other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6551` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6552` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6553` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6554` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6555` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6556` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6557` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6558` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6559` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X65510` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6561` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6562` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6563` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6564` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6565` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6566` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6567` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6568` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6569` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X65610` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X65611` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X65612` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X65613` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X65614` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X65615` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X789` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X657` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X764` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ009` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ010` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ011` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ012` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676SQ013` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X676other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X663other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6641` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6642` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6643` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6644` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6645` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6646` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6647` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6648` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X6649` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X66410` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X66411` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X66412` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X66413` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X66414` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X66415` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X66416` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X66417` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X66418` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X66419` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X66420` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X66421` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X7991` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X7992` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X7993` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X7994` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X7995` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X7996` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X7997` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X7998` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X7999` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X79910` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X79911` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X79912` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X79913` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X79914` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X79915` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X79916` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X79917` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X79918` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X79919` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X79920` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X79921` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X665SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X665SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X665SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X665other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X800` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X800other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X39X667` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X659` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X645` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X660` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X646` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X675` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X648` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X649SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X649SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X649SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X649other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X650` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X637` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X638other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X639SQ001` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X639SQ002` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X639SQ003` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X640` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X641` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X643other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X644SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X644SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X644SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X38X644other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X40X668` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X40X669` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `2023X37X642` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=2515 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_survey_2023` --- - -LOCK TABLES `limesurvey_survey_2023` WRITE; -/*!40000 ALTER TABLE `limesurvey_survey_2023` DISABLE KEYS */; -INSERT INTO `limesurvey_survey_2023` VALUES (1,'1980-01-01 00:00:00',5,'en','1579335176','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','A fellow student recommended me as a Linux distro which does everything right. I took a cursory look, and liked the idea, so, the next time I misconfigured my Arch to death, I switched to NixOS and never looked back. ','','Y','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A5','','','','','','','','A8','A14','A10','','','','','','','','','','','','',NULL,'Guix or Fedora Silverblue. If nothing _similar_ exits, then Arch','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A22','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Same as for nix','Y','','','','','','','Declarative config','Rollbacks','Boatload of packages available','Replace nix with Nickel, add auto-generated docs a-la rustdoc','Guix, Fedora Silverblue, Arch','Y','','','','','','','','Y','','','https://search.nixos.org','',''),(2,NULL,4,'en','763047368','A5','A3','male','','','','','','','','Y','Y','Y','Y','','Y','Y','','','','Y','','','','','','Y','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','Y','','','Y','Y','','','Y','','Y','','Y','','A7','A6','A10','','','','','','','','A4','A12','A13','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','','','','','A7','A17','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','-oth-','own projects based on Nix tooling AND merge access',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','Y','Y','','The modules system (the mechanics behind the options)','The NixOS options overall','','Split \"flakes\" into its actual discrete constituents so it can actually be evaluated and progress through stability, without preventing \"non-flake\" use cases from being able to use the new discrete features. (It\'s not actually from NixOS, but this question is not in the Nix section...)','I was just about to make my own thing.','Y','','','','','Y','','','Y','','homegrown','','',NULL),(3,NULL,NULL,'en','1145274915',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,'1980-01-01 00:00:00',5,'en','225519047','A5','A2','-oth-','non-binary','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','Xe\'s blog posts provided a good overview, and it was all downhill from there :)','','Y','','','Y','','Y','','','','','','','','Y','Y','Y','Y','','','A2','A3','A1','','','','','','','','A8','A9','','','','','','','','','','','','','',NULL,'apt, docker, and prayers.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','A13','A3','A4','A2','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I generally have no need to. nixpkgs releases are so well maintained that by the time I notice a deficiency, there\'s already a PR going through the pipeline.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I started using it to better understand Nix-the-package-manager.','Y','','','','','Y','','Declarative configuration','home-manager','','nixos-rebuild is a bit of a weird command, but I suppose my magic wand can\'t stabilize the nix command yet, can it? In a similar vein, channels are kind of a pain to work with, but stabilizing flakes may be outside the scope of the wand.','Debian, Void, or Arch','','','','','','Y','','','','','i3','home-manager','','I desperately desire merely one thing within my material happenings. All may crumble but I must know that one item is safe. Please. Stabilize Flakes. I believe in y\'all.'),(5,'1980-01-01 00:00:00',5,'en','560242903','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted arch with an undo button. Arch upgrades broke at work on more than one occasions, and I was caught with my pants down.','','Y','','','Y','','Y','Y','','Y','Y','','','Y','Y','Y','Y','Y','','','A2','A3','A7','','','','','','','','A2','A12','A8','','','','','','','','','','','','',NULL,'does guix count? or fedora silverblue','A2','','','','Y','','','','','','','','','','','','','','','','','','drone','A15','A1','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted arch with an undo button.','Y','Y','Y','Y','Y','','','atomic update','declarative config','a lot of nixpkgs','maybe fix CA derivation. I don\'t know if it will help at all or if it\'s just vaporware.','guix or fedora silverblue','','','','Y','','','','','','','','home-manager, nix-on-droid, attic, impermanence','',''),(6,NULL,1,'en','1845102284','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(7,'1980-01-01 00:00:00',5,'en','348511175','A5','A4','male','','','','','','','','','','','Y','Y','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I got sick of not knowing how my Linux system changed over the years, and trying different ways to track or record changes and installed packages. The fear that, should I need to reinstall Linux or replace my hard drive, I wouldn\'t know everything that needed to be set back up. The idea that Nix, and NixOS, could provide that record be keeping everything configured in one place was immediately appealing.','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A7','A1','','','','','','','','A8','A6','A14','','','','','','','','','','','','',NULL,'Maybe Guix? Or continue trying to hack together a solution myself.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I\'m sure I will eventually, but I don\'t feel comfortable enough yet to do so. It may be easier once flakes stabilize and I don\'t have to think about how my contributions might be used \"the old way\".','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','As soon as I discovered Nix, and then learned it could be used to maintain the entire system, I was sold.','Y','','Y','','','','','Immutable and deterministic system configuration','Ease of configuration','','While it\'s interesting that Nix is so flexible and there are so many ways to do things, I wish it was more standardized, with one way to do something. Standardize flakes, or revert to channels, but not both. User management as part of the system, or something separate like Home Manager. But not both. Flexibility is a nice concept, but the fragmentation adds confusion and increases the barrier to entry.','I\'d still be using Void, and trying to find a way to track and manage system configuration','Y','','','','','','','','','','Sway','Home Manager, sops-nix','','NixOS rocks!'),(8,'1980-01-01 00:00:00',5,'en','671623556','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','Y','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A2','A7','A1','','','','','','','','A8','A9','A2','','','','','','','','','','','','',NULL,'','A2','Y','','','Y','Y','','','','','','','','Y','','Y','','','','Y','','','garnix','A15','A2','A13','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','','','Declarative configuration','Ability to roll back','Huge set of configurable packages','State management is often a pain currently, no widely accepted standard exists','Arch Linux','Y','','','','','','','Y','','','','Home-manager, sops-nix, nix-index, nil','',''),(9,'1980-01-01 00:00:00',5,'en','1587324562','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started using Nix when I started using NixOS.','','','','','','','Y','','','','','','','Y','','','Y','','','','A1','A7','A10','','','','','','','','A5','A3','A14','','','','','','','','','','','','',NULL,'unsure','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Lack of experience with packaging in general, time','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','After trying several different linux distributions, I started using NixOS and ended up enjoying it the most, so I stuck with it.','','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(10,'1980-01-01 00:00:00',5,'en','977905545','A5','A3','fem','','','','','','','','','','','','','','','','','','','','','','','','','Information security analyst','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I don\'t quite remember the exact circumstances, but I stumbled upon it in 2020 and found the community quite lovely as well as liked the declarative nature of Nix and NixOS','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A7','A2','A1','','','','','','','','A11','A12','A8','','','','','','','','','','','','',NULL,'I\'m not sure, probably a combination of containers and ansible (even if neither are a direct replacement for Nix)','A2','','Y','','Y','Y','Y','','','Y','','','','Y','','','','','','Y','','','','A15','A4','A2','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I started using NixOS when I started using Nix. See other answer','Y','','Y','Y','','','','Generations/rollbacks','Declarative system configuration','Reproducible system builds','I would probably remove all of the old, arcane Perl code still left (such ad switch-to-configuration.pl) and have it written in a more modern and maintainable language. That\'s much easier said than done, but I suppose that\'s what the magic wand is for.','I think I still would have moved on from Gentoo, but I probably would have stumbled on Guix instead at some point.','Y','','','','','','Cachix deploy','','','','Sway','I use Cachix for my binary cache and my NixOS config uses impermanence, lanzaboote, and disko. I also use nil as my language server (though I may switch to nixd before too long)','I used to use rnix-lsp but switched to nil. I don\'t think I ever stopped using much else.','Thank you for your work!!'),(11,'1980-01-01 00:00:00',5,'en','1284136044','A5','A3','male','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','I chose nix for distributing a python project','','','','Y','','','Y','','','','','','','Y','Y','Y','Y','','','','A6','A3','A2','','','','','','','','A1','A10','A8','','','','','','','','','','','','',NULL,'Bash scripts and bazel','A4','','','','Y','Y','','','','','','','','','','','','','Y','Y','','','','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','N','Liked nix and tried it in a vm',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'std flake framework','',''),(12,'1980-01-01 00:00:00',5,'en','1278860129','A5','A4','male','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','The ability to configure all my systems and dotfiles through configuration files. I’d explored nix in the past, but flakes filled the gaps I found previously. ','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A2','A1','A7','','','','','','','','A8','A3','A6','','','','','','','','','','','','',NULL,'Ansible, asdf, homebrew','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','Woodpecker','A1','A20','','','','','','','','','','','','','','','','','','','','A1','A20','A22','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','Y','Y','','','','','Configuration management','','','A better secrets and deployment story','Another Linux distro. ','Y','','','','','Y','','','','','Xmonad, leftwm ','A language server, nil and more recently nixd. Emacs overlay. ','','I’d like to see better Elixir support too, but this wasn’t in the list of languages. '),(13,NULL,1,'en','924180521','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(14,'1980-01-01 00:00:00',5,'en','589195210','A2','A2','male','','','','','Y','Y','','','','','Y','','','','','Y','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A9','A10','','','','','','','','A9','A8','A4','','','','','','','','','','','','',NULL,'Arch','A1','','','','Y','Y','','','','','','','Y','','','','','','Y','','','','','A21','A2','A3','A15','','','','','','','','','','','','','','','','','','A9','A21','A5','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','Y','Y','','','','','','','','','','Y','','','','','','','','','','I3','','',''),(15,NULL,1,'en','450733871','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','','','','A3','','','','','','','','Y','','','','','','','Y','','','Y','','','','A7','A2','A1','','','','','','','','','','','','','','','','','','','','','','',NULL,'','A2','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','','Declarative configuration (configuration.nix)','Atomic generations and rollback','Package availability by way of Nix','','','Y','','','','','','','','','Y','','Comma helps me run packages I only need occasionally.','',''),(16,'1980-01-01 00:00:00',5,'en','934075774','A5','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A7','A1','A3','','','','','','','','A6','A14','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','A5','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','Desktop PC','Atomic updates to entire system','Declarative configuration','Ad-hoc installation (nix run, nix shell)','','','Y','','','','','','','','Y','','','','',''),(17,'1980-01-01 00:00:00',5,'en','716807821','A5','A5','male','','','Y','','','Y','Y','','Y','Y','Y','','Y','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','Not sure I remember! Wanted something more reliable than debian or similar for upgrading and etc.','','','','','','','Y','Y','','Y','Y','','','','Y','Y','Y','','','','A1','A7','A2','','','','','','','','A14','A5','A2','','','','','','','','','','','','',NULL,'Arch was the last distro I used before nix. So maybe that. Or guix?','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Not sure I remember exactly but probably one too many upgrades gone wrong ','Y','','Y','Y','Y','','','Seamless system updates','Nix develop','configuration.nix','I\'d make the language far more explicit in what\'s it\'s doing. A callpackage nix file would be recognizable as such, for instance. Implicit arguments would be explicit. Clarity over terseness.','Guix? Maybe back to arch.','Y','','','','','','nix-cppy-closure','','','Y','xmonad with xfce in nodesktop mode.','direnv','nix-env for personal software management. I still use it for deploying my web app though. ',''),(18,NULL,2,'en','673665450','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','started at work (Logicblox) then for all my personal infra and projects ','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A3','A6','','','','','','','','A8','A4','A9','','','','','','','','','','','','',NULL,'I would be miserable.\r\nJoking aside, perhaps the new alpine tooling (melange, wolfi, …) can be something usable','A1','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A2','A1','A4','A11','A5','','','','','','','','','','','','','','','','','A11','A5','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19,'1980-01-01 00:00:00',5,'en','1356285076','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I\'d heard of Nix/NixOS in the past and have always been intrigued by its package management. It felt like time to upgrade my old Ubuntu install (which was a heavily customized 20.04 install, with i3 installed among other non-default things) and i was dreading ever having to do all that customization again. Finding the right fonts, configuring so many .config files. Making sure everything was setup right. And I knew I\'d have to do this work twice, once for my desktop and again for my laptop. I had been seeing lots about NixOS and it started as \"i\'ll install this, try it and see how hard this is\" and within a day i had almost everything setup perfectly. I haven\'t (yet) copied things over to my laptop, but I already know it will be super easy to. Ive already installed Nix on my other linux machines, but will probably switch to NixOS entirely on them at some point. Nix quickly became my daily driver. Its so easy to configure and customize. I\'m also loving how easy it is to develop stuff. Package management has always been a nightmare, and Nix has solved so many problems for me.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A8','A4','A9','','','','','','','','','','','','',NULL,'I\'ve heard of Guix a little bit but i dont actually know anything about it other than \"its similar to nix\"\r\n\r\nwithout Nix i\'d probably just be stuck in dependency hell on ubuntu, using weird containerization methods for anything where i might need to have a weird version of a package installed. python virtualenvs are annoying but i guess i\'m stuck with them. but i\'ve needed to switch between versions of NPM before. no idea what i\'d do for that other than Nix. ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','A2','A4','A3','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','as far as i know, nothing? i haven\'t really needed to. I\'ve wanted a more up-to-date package a few times and every time its always either already been in nixpkgs-unstable, or theres an active pull request to add it. For other stuff i can usually piece together a flake.nix file for myself. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I\'m now realizing the previous question was Nix specific not NixOS, and that i answered it wrong. Oh well.\r\nI needed to upgrade my linux system and I got tired of doing all the customization. So i switched to NixOS and now ive got one folder with a flake.nix that describes my entire machine, I can reinstall my entire setup within a few minutes if i had to.\r\n\r\nI also love how easy it is to work on different code projects. Especially if they come with a flake.nix already, but if they don\'t I can piece together something that works pretty quickly. then just `nix develop` and ive got all the dependencies i need.','Y','','','','','','','A reproducible system. ','Easy development environments.','Easy rollbacks.','any time theres an error in one of my nix files. usually its something simple like \"i mistyped a thing\" but the error message sucks. it frequently gives me a trace into like 300 layers of code that isn\'t mine and i can\'t read it. I\'ve never understood any of the traces. ','ubuntu i guess. no real reasons other than \"i\'ve used it before\" and \"i dont want to learn arch\"','','','','','','','','','Y','','i3wm. Hyprland if wayland wasn\'t a nightmare','I guess flakes? you kinda asked about them i guess.\r\nThey seem to be in this weird in-between of \"these are experimental don\'t use them\" and \"these are the future of nix use these\"','',''),(20,'1980-01-01 00:00:00',5,'en','2001545854','A2','A2','male','','','','','','','','Y','','','','','','','','','','Y','','','','','Y','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Wanted to hack deterministic/reproducible configuration especially across systems into Gentoo, then found out about NixOS and decided to try it.','Y','','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A2','A5','A7','','','','','','','','A12','A10','A2','','','','','','','','','','','','',NULL,'Probably still Gentoo along with the system package manager.','A3','','Y','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A4','A3','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Same as with Nix, I wanted to hack reproducible configuration into Gentoo and then found NixOS.','Y','Y','Y','Y','','','','Configuration file generation for the whole system','Atomic switch/rollback','Building a VM from configurations','Package grafts (like Guix) or an equivalent system to make patching libraries easier without causing huge rebuild chains','Gentoo','Y','','','','','','','','Y','','','','deploy-rs','Here\'s to many more years of successful Nix!'),(21,'1980-01-01 00:00:00',5,'en','1427029603','A2','A3','male','','Y','','','','','','Y','','','','','','','','','','','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I am a quantum chemist and heavily rely on very large scale computations and HPC. The chemistry ecosystem relies on ancient as well as very modern Fortran Programmes, a lot of python and also some C++ and MPI, BLAS and LAPACK. On HPC most things are compiled from scratch on a per user basis and made available via environment modules. The number of times our modules broke due to software updates of the underlying centos or some other user of our research group breaking something, anaconda installations interfering and so on are uncountable. This Cardhouse is unsuitable and even worse, irreproducible. Thus, I reached for nix.\r\n\r\nMy own software stack adds Haskell to this ecosystem and getting all these completely unrelated libraries and programmes in different languages to work together is a nightmare without nix (I\'ve never succeeded in building my own project and it\'s dependencies from source without nix)','','Y','','','Y','','Y','Y','Y','Y','','','HPC clusters','Y','Y','Y','Y','Y','Y','','A2','A1','A6','','','','','','','','A9','A8','A2','','','','','','','','','','','','',NULL,'Singularity images and Podman','A1','','','','Y','Y','','','','','','','','','','Y','','Y','','Y','','','','A13','A2','A3','A4','','','','','','','','','','','','','','','','','','A13','A2','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I maintain several workstations and servers for our workgroup and institute as well as for private purposes. Keeping all theses things working nicely without diverging was not too nice with Debian and OpenSuse and nicely having declarative systems is a blessing.','Y','Y','Y','Y','','','HPC clusters ','Maintenance of a heterogeneous pool of machines declaratively\r\n','Uniform configuration language for completely unrelated services\r\n','Providing Nix Daemon to an entire HPC clusters that is not running NixOS itself','Everything should build with cosmopolitan C and be cross system \r\n\r\nSupport for BSD kernel instead of Linux\r\n\r\nWorking cross compilation for all packages out of the box','Debian','Y','','','Y','','','','','Y','','','Home-manager\r\n\r\nNix-Qchem','NixOps\r\n',''),(22,'1980-01-01 00:00:00',5,'en','145662818','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A2','A7','A1','','','','','','','','A8','A5','A1','','','','','','','','','','','','',NULL,'Arch Linux with the AUR probably, as well as Windows with Scoop.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Almost all the programs I need are in nixpkgs, and things like modded Minecraft server packages are hard to package and organize.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','It sounded really cool and is cleaner and more solid than Arch.','','','Y','','','','Desktop and laptop','System configuration with flakes','Home management with Home Manager','','Cleaner documentation and wikis for different modules so it\'s easier to set up.','Arch with the AUR and Windows with Scoop.','Y','','','','','','','','Y','','','The Impermanence module for NixOS and Home Manager','','NixOS is amazing, good job guys!'),(23,NULL,NULL,'en','615627674',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24,NULL,1,'en','2103587567','A2','A2','-oth-','Genderfluid','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(25,'1980-01-01 00:00:00',5,'en','245755836','A5','A5','-oth-','','','','','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','Y','','','','Y','','Y','','','','','','Y','','','','','','Y','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Easy install and setup ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(26,'1980-01-01 00:00:00',5,'en','129922599','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','','','General purpose','A7','I liked the idea of a declarative OS and I found it relatively easy to pick up. I also really like bein able to define build scripts and install scripts cross platform very useful.','','Y','','','','','Y','Y','','','','','','','Y','Y','','','','','A2','A7','A1','','','','','','','','A8','A3','A14','','','','','','','','','','','','',NULL,'I\'ve been converting my arch dotfiles to a stow based config. I have also been using Justfiles a lot for projects, but that\'s more of a build step.','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A15','A17','','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I\'m not deep enough into the ecosystem to have found something that isn\'t already in nixpkgs or home-manager','Y',NULL,NULL,NULL,NULL,'A1','Y','','Y','','A1','I really like the concept and I found that nixOS is considerably less clunky to setup compared to arch.','','','Y','','','','','Declarative config','Rollbacks / generations ','Garbage collection','I would try and keep some necessary drivers to date. (Only those necessary for functionality though such as graphics drivers)','Arch/EndeavorOS','Y','','','','','','','','','','Hyprland','home-manager, sops-nix','N/A',''),(27,NULL,1,'en','894044549','A2','A2','male','','','Y','','','Y','Y','','','','','','','','','','Y','Y','','','','','Y','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(28,'1980-01-01 00:00:00',5,'en','1155153702','A5','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','Nixos','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A3','A5','A13','','','','','','','','','','','','',NULL,'Ubuntu','A4','','','','','','','','','','','','','','','','','','','','','','','A5','A1','','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','Easy setup ','Reproducible dev environment ','','Up to date Java versions','Ubuntu ','Y','','','','','','','Y','','','','','',''),(29,NULL,1,'en','708343129','A5','A5','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(30,'1980-01-01 00:00:00',5,'en','752783056','A5','A2','male','','Y','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A3','A2','A1','','','','','','','','A4','A5','A11','','','','','','','','','','','','',NULL,'Docket, guix','A1','','','','Y','Y','','','','','','','','','','Y','Y','','','Y','','','Garnix','A1','A3','A2','A5','A13','A15','','','','','','','','','','','','','','','','A13','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','N/A, I contribute a bit','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','Y','Y','Y','','','','Declarative services ','VMs','','','Docker/containers','Y','','','','','','','','','','Xmonad','Cachix','Hydra',''),(31,'1980-01-01 00:00:00',5,'en','325200456','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','Y','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A1','I had issues with keeping Arch updated and configured. A friend showed me NixOS and the rest is history. ','Y','','','','','','Y','','','','','','','','','','Y','','','','A1','A6','A7','','','','','','','','A13','A6','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A9','A15','A5','','','','','','','','','','','','','','','','','','','A15','A9','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','','','','','','','','','','','','','','','','','','',''),(32,NULL,1,'en','1368786449','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(33,NULL,2,'en','1594732158','A5','A2','male','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Well I use NixOS, and the thing that drew me in initially was the declarative nature of configuring a Linux system. I like having a readable way to display exactly how my server is set up because it’s all in one place. Basically, I get to view and change the state of the system through one standardized interface.','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A2','A1','A10','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'There is nothing like Nix or NixOS. I would probably just use another Linux distribution like Arch that empowers configuration.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A3','A15','A1','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34,'1980-01-01 00:00:00',5,'en','1684734636','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','NixOs seemed like it would be a more reliable way to handle a system.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A7','A2','A1','','','','','','','','A8','A5','A9','','','','','','','','','','','','',NULL,'Docker','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A10','A1','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Seemed like it would give a more reliable/predictable system','Y','','Y','Y','','','','Central configuration','Modules providing easy setup of multi-part software stacks (e.g. nging+php+redis all setup with services.nextcloud)','Remote configuration/deploy','','Arch','Y','','','Y','','','','','Y','','','','',''),(35,NULL,2,'en','512113514','A5','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','','Y','','A1','A5','A6','','','','','','','','A2','A11','A6','','','','','','','','','','','','',NULL,'I don\'t want to think about the possibility','A2','','Y','Y','Y','Y','','','','Y','','','Y','','','Y','','','','','Y','','','A3','A13','A15','A2','A1','','','','','','','','','','','','','','','','','A2','A13','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(36,'1980-01-01 00:00:00',5,'en','1215040133','A2','A3','male','','','','','','','','Y','','','Y','','','','','','','Y','','','','','','','','','','','','','NixOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','It was recommended in the context of Haskell development and I liked the idea.','','','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A3','A2','A1','','','','','','','','A9','A15','','','','','','','','','','','','','',NULL,'Copious amounts of alcohol?','A2','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A13','A10','A2','A1','A15','A3','A14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','It sounded like a good idea.','Y','','','Y','','','','Declarative configuration','(mostly) atomic switch','Rich set of modules','Personalized channels that do not advance unless tests for all modules used by configuration pass.','Probably Arch','','','','','','Y','','Y','','','','','',''),(37,'1980-01-01 00:00:00',5,'en','772458696','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I attended a talk in 2018 at strange loop. I eventually decided to give nixos a try and have never looked back.','','Y','','','','','Y','Y','','','','','Currently on dev and staging servers but have not gone to production (yet)','Y','Y','Y','Y','','','','A1','A9','A7','','','','','','','','A4','A8','A5','','','','','','','','','','','','',NULL,'Arch Linux Plus lots of custom ansible','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A13','A18','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as previous answer. ','','','Y','','','','','Declarative system configuration ','Nixpkgs','','A kubernetes like distributed system for managing clusters of nixos nodes (i.e. replace docker with NixOS)','Arch plus ansible','Y','','','','','Y','','','','','Sway ','','',''),(38,NULL,3,'en','653289870','A5','A2','fem','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I got into Nix through NixOS. I found the idea of a declarative configuration that defines everything the system has to be very attractive - I considered NixOS after trying Qubes and realizing how much of a mess that distro was to use as a daily driver, in the end I was mainly looking for a system that would be easily auditable, repairable, and so that I would never have to redo complicated setup processes twice. NixOS checked all of those boxes, and some ideas I saw from blogs showed me some amazing security capabilities Nix had, such as marking everything but the nix store as noexec to reduce risk of arbitrary code execution.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A9','A7','','','','','','','','A11','A2','A13','','','','','','','','','','','','',NULL,'Docker, Qubes','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A15','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I found the idea of a declarative configuration that defines everything the system has to be very attractive - I considered NixOS after trying Qubes and realizing how much of a mess that distro was to use as a daily driver, in the end I was mainly looking for a system that would be easily auditable, repairable, and so that I would never have to redo complicated setup processes twice. NixOS checked all of those boxes, and some ideas I saw from blogs showed me some amazing security capabilities Nix had, such as marking everything but the nix store as noexec to reduce risk of arbitrary code execution.','Y','','Y','','','','','declarativeness','reproducibility','rollbacks','I wish there was autocomplete / LSP for modules. By far the slowest part of writing a config is needing to search up the different options in nixos search before configuring.\r\nI also wish it was easier to install different versions of software, and by that I mean is not needing to clone all of nixpkgs to do this. I feel like there\'s a lot of problems with nixpkgs being a monorepo where everything is up to date, such as nix-specific patches to forcefully update dependencies which break things, and being limited to whats in the pythonPackages module at a particular version of nixpkgs can be frustrating. This feels like an extremely daunting / impossible task, but a model similar to crates.io/npm would make a lot more sense since you only download what you need.','Qubes','Y','','','','','','nixinate','','','','sway','','',NULL),(39,'1980-01-01 00:00:00',5,'en','153232789','A5','A3','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','','','','','','','','','','','','Y','Y','','','','','','A2','A3','A1','','','','','','','','A13','','','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A4','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(40,'1980-01-01 00:00:00',5,'en','1164115058','A6','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A7','because it is very stable and easy to rollback to a previous version and also can install multiple version of a software \r\nit contains almost latest packages in repos\r\nalso configurable nix files make it easy to redeploy to every where','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A5','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','due to its features \r\n1. rollback\r\n2.atomic uodate\r\n3.nixpkgs ','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','','please provide better documentation and learning resources so anyone can know about the differences from a regular Linux distro and successfully start using with less time to learn everything about nix , nixpkgs ,nixos. thankyou'),(41,NULL,1,'en','2068727219','A2','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(42,'1980-01-01 00:00:00',5,'en','931740000','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Tired of poor dev environment reproducibility and arduous system migrations / OS reinstalls. ','Y','','','','Y','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A3','A2','A6','','','','','','','','','','','','','','','','','','','','','','',NULL,'VMs','A1','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','A1','A15','A7','','','','','','','','','','','','','','','','','','A2','A1','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','','','General computing (gaming, browsing, etc.) ','A4','I had wanted to try nix for a while and had a windows box die. Decided the rebuild was a good time to immerse. ','','','','','','','','Reproducibility','Atomic updates','Quick migration/recovery','Better story for how module vs package config works (it should be ~trivial to configure N instances of any server software for different projects, dev shells, and general use). ','Macos','Y','','','','','','','Y','','','','Mach-nix? ','A dozen x2nix solutions? ','<3'),(43,NULL,1,'en','313650902','A5','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44,NULL,1,'en','1624239965','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','Y','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(45,NULL,2,'en','1120257424','A1','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Software tester','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Just curious.','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A1','A2','A3','','','','','','','','A8','A7','A14','','','','','','','','','','','','',NULL,'LXC','A4','','','','Y','','','','','','','','','','','','','','','','','','','A3','A15','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(46,NULL,NULL,'en','931943567',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(47,'1980-01-01 00:00:00',5,'en','499327109','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','NixOS and the vast module system that provide well maintained abstractions and make updates seamless','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A9','A5','A1','','','','','','','','A2','A12','A7','','','','','','','','','','','','',NULL,'','A3','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','Collectively maintained modules','Integration tests','Holistic management of configuration and runtime environment','Reckless and ignorant committers','Possibly Gentoo.','','','','','Y','','','','','','Sway','devenv\r\ndisko\r\nnurl\r\nnix-init\r\nnixpkgs-review\r\nnix-update\r\nnix-output-monitor','',''),(48,'1980-01-01 00:00:00',5,'en','15511667','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted to improve how I organized dotfiles and dev tools on my MacOS laptops. I had been using numerous package managers in a generally ad-hoc manner. Evolved into managing my own bash scripts for a while. I had heard of NixOS but it was some time later when I learned that the package manager could be used on MacOS.','Y','','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A8','A9','A14','','','','','','','','','','','','',NULL,'Homebrew, npm, yarn, pip, cargo, go, docker, curl, stow etc...\r\n\r\nI suspect I\'d still be using all of these package managers and commands in bespoke shell scripts still.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A9','A2','A1','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','-oth-','I have contributed to home-manager packages',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I had wanted to experiment with a linux-based home lab for some time but had not committed. After getting to a certain level of confidence with the Nix package manager on MacOS I felt momentum to try installing NixOS on an old desktop to use as a home server. I was able to get NixOS installed on the old machine and then with some refactoring on my nix flake configurations I was able to re-use most of my Darwin nix configs.','Y','','Y','','','','','NixOS options','Seamless Nix package manager integration','Generations','I\'d like for even more declarative NixOS installs on fresh hosts. For example, I\'d love to be able to declare the host\'s partitions instead of using the install-wizard or CLIs.','I might not be running any Linux distros right now if there was no NixOS. But I was interested in trying Arch Linux, so maybe that.','Y','','','','','','','Y','','','','I use nix-darwin and home-manager extensively. The search.nixos.org webpages are very handy.','I tried NixOps but encountered some issues with it. Probably due to limited documentation. I was also unsure about how well maintained it is going to be and was hesitant to commit. I may come back to it when I expand my home lab, though.','I\'m very excited about Nix! Thanks for your contributions to the project!'),(49,'1980-01-01 00:00:00',5,'en','224322920','A5','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A2','A10','','','','','','','','A8','A2','A6','','','','','','','','','','','','',NULL,'Guix','A1','','Y','','Y','Y','','','','','','','','','','','','','','','','','','A1','A9','A15','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','','','','','','Declarative Configuration','Access to Nixpkgs','Rollbacks','- Stabilize Flakes\r\n- Be able Partition Drives from system configuration at install time\r\n\r\n\r\n.\r\n','Guix','Y','','','','','','','Y','','','i3','- flake-compat','- flake-utils\r\n- node2nix\r\n- devos/digga',''),(50,'1980-01-01 00:00:00',5,'en','732416086','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A13','A8','A3','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A4','A3','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','','','','','','','','','','','','','','','','','','','','','','','',''),(51,'1980-01-01 00:00:00',5,'en','988696785','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','There is a subset of machines I deploy at many sites/customers like a reverse proxy. Writing a configuration one time and then just rolling it out at every site make installation, maintenance, and management easy.','','Y','','','','','','Y','','Y','','','','','','','Y','','','','A1','A10','A2','','','','','','','','A7','A6','A13','','','','','','','','','','','','',NULL,'Just another linux distribution suitable for prod environments (Ubuntu, RHEL, CentOS, Debian, SUSE)','A5','','','','Y','','','','','','','','','','','','','','','','','','','A2','A15','A3','A4','A13','A14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Not enough time, haven\'t read documentation on it (if there is good documentation), would be open to it if I find the time','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','Did answer already... don\'t know why you ask again','','','Y','Y','','','','','','','','Did answer already... don\'t know why you ask again','','','','','','','','','Y','','','','',''),(52,NULL,NULL,'en','209200024',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(53,'1980-01-01 00:00:00',5,'en','792471800','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I wanted a reproducible way to mange my dotfiles.','','','','','','','Y','','','','','','','Y','','','Y','','','','A10','A1','A2','','','','','','','','A6','A14','A13','','','','','','','','','','','','',NULL,'','','','','','Y','','','','','','','','','','','','','','','','','','','A9','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','I3','','',''),(54,'1980-01-01 00:00:00',5,'en','736144658','A2','A2','male','','','','','','','','','','','','Y','Y','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','','','Y','','','Y','','','','','','','','Y','Y','Y','','','','A9','A2','A7','','','','','','','','A10','A14','A9','','','','','','','','','','','','',NULL,'Probably Opensuse zypper','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A6','A15','A17','A4','A1','A2','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','Declarative configuration','package availability','Rollbacks','Windows support, which would be absolutely insane','zypper','Y','','','','','','','','','','Hyprland','home-manager','','Loving this distribution! Hope to see changes that would attract newcomers'),(55,NULL,1,'en','226992851','A5','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(56,'1980-01-01 00:00:00',5,'en','1042645063','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','it sounded fun','','Y','','','','','Y','','','','','','','','','','Y','','','','A1','A2','A3','','','','','','','','A14','A6','A5','','','','','','','','','','','','',NULL,'Arch Linux? or Ubuntu ','A2','','','','Y','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','','Y','Y','','','','','','','','','Y','','','','','','','','','','dwm','','',''),(57,'1980-01-01 00:00:00',5,'en','1962075826','A5','A2','male','','','','','','Y','Y','','Y','Y','Y','','Y','','','','','Y','','','','','Y','Y','','','','Y','','','','N','N','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Because it sounded interesting','Y','','','','Y','Y','','','','','','','Y','','','','','','','','','','Sway','','',''),(58,'1980-01-01 00:00:00',5,'en','2108740694','A5','A2','male','','Y','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Found it though a friend, thought it was really interesting.','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A13','A6','A3','','','','','','','','','','','','',NULL,'Guix I guess. Or pacman','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A15','A2','A1','A17','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Not sure how to start. Or knowing how to start, but lots of things to know/do for PRs and getting cold feet before submission','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Friend','Y','','Y','','','','','Declarative','Rollback for when I break stuff','Auto describing things i did to my system in the past via the config','Declarativd Secret management! Not sure if this is possible, but with magic, anything js','Arch','Y','','','','','','','Y','','','wayland thing','N/A','N/A',''),(59,NULL,2,'en','648568636','A5','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was tired of having an unstable distro. ','','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','','A1','A2','A3','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'It\'s not really a good comparison but i used to use Ansible','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A4','A3','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I do contribute',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(60,'1980-01-01 00:00:00',5,'en','1243560427','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A10','A7','','','','','','','','A13','A5','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','fetch family of functions + derivations (I feel more comfortable having the source defined in the same place, though I lose out on auto-updates)','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','By chance saw someone that mentioned it in their profile and went \"oh that\'s cool\"','Y','','','','','','','','','','First class support for nixos-hardware presets (the common folder ones)\r\n\r\nDebugging why your PC does not boot with no knowledge of where/what anything is/does as a beginner almost made me quit ','','Y','','','','','','','Y','Y','','Hyprland','nil, deadnix, statix, node2nix, dconf2nix, crane, nixfmt, noogle (lifesaver), home-manager','nixos-option: Broken with flakes, nix repl works but is not optimal\r\nNixd (LSP): I really, really wanted to try it due to its auto-completion features but its far from ready yet',''),(61,'1980-01-01 00:00:00',5,'en','1474065820','A3','A2','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','The folks on Linux Unplugged kept going on and on about, I figured I\'d check it out. Dropped Arch and haven\'t looked back since. I now use nix on all my projects.','','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','Y','','','A2','A1','A7','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'As an OS, Arch. As a buld system, I\'d probably use everything. Which would suck, since I\'d need 20 different solutions for what nix does alone.','A2','','','','Y','Y','','Y','','','','','','','','Y','','','','','','','','A4','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Linux unplugged.','Y','','Y','','','','','Declararive','Atomic','Portable','I would add perfect support for running arbitrary compiled binaries.','Arch.','Y','','','Y','','','','','Y','','','agenix, NUR, home-manager','nixops','Can\'t wait for the next NixCon :)'),(62,'1980-01-01 00:00:00',5,'en','145605561','A5','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A7','','','','','','','','A5','A3','A9','','','','','','','','','','','','',NULL,'Ansible with Fedora and/or Almalinux','A1','','','','Y','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','Y','','','','','Declarative system definition.','Large up to date binary package availability.','','Drastically simplify the user facing interface for new users. Drastically simplify managing, especially python applications and libraries not natively packaged in Nix.','Ansible with Fedora and/or Almalinux ','','','','','','','','','','','sway','Home-manager','N/A','Thank you for caring enough to ask!'),(63,NULL,2,'en','823960041','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A1','A2','A10','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(64,'1980-01-01 00:00:00',5,'en','314808876','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Deployed my first home server and started with arch and had a bunch of issues, having to reinstall at least once. \r\nGot tired of that fast, did a hardware migration and switch to nixos while doing it. \r\nI switched because it was easy to reproduce and easier to manage, even without cockpit. ','','','','','Y','','Y','Y','','','','','','Y','','Y','Y','','','','A6','A10','A4','','','','','','','','','','','','','','','','','','','','','','',NULL,'I would still use arch and refuse to use the archinstall python library. ','A4','','','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Nothing at the moment. \r\nActually, my inability to rtfm and follow the git comment guidelines, but I do have an open pr on nixpkgs. \r\nOtherwise, up until recently, I didn\'t have a second device to try to get support for mobile-nixos. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Shoot, same as nix. ','','','Y','','','','Personal machines','Configuration.nix','','','','Arch Linux ','Y','','','','','','','Y','','','','','',''),(65,NULL,1,'en','2062765249','','A3','male','','Y','','','','','Y','','','','','','','','Y','','','Y','','','Y','','Y','Y','','','','','','','Linux',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(66,NULL,2,'en','1246054918','A5','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','Y','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I liked the idea of having my entire system configured easily through a config file. Wasn\'t a fan of yaml/ansible.','','Y','Y','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','','A1','A10','A7','','','','','','','','A4','A6','','','','','','','','','','','','','',NULL,'FreeBSD','A1','','','','Y','Y','','','','','','','','','','','','','','','','','Gitea Act Run','A9','A22','A15','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(67,'1980-01-01 00:00:00',5,'en','13189819','A5','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Got a new PC and decided to try NixOS instead of my usual.. Arch Linux. Tired of reinstalling to get a fresh system. ','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A7','A1','A9','','','','','','','','A14','A5','A9','','','','','','','','','','','','',NULL,'Probably Gnu Guix. Can’t see going back to Arch at this point. ','A2','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Don’t know how. Not a programmer. Don’t understand software development and GIT enough to be comfortable. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Bought new PC. Installed EndeavorOS but found it sluggish which was disappointing when I was expecting higher performance. Tried Silverblue and MicroOS. Both made customizing my system challenging. Have to use overlays but users recommend against overlays. Lol \r\n\r\nI had played with NixOS in a VM previously and thought it was cool until it broke during a rebuild due to running out of disk space as I didn’t understand garbage collection and generations. I decided to try again on bare metal now that I had a lot more disk space. Now that I remove old generations regularly, my system stays clean of cruft unlike imperitive systems. ','','','','','','','It’s my main desktop. Don’t have any other PC’s. ','Declarative configuration ','Atomic updates and rollbacks','Improved security due to write protected system files','An easier way to configure than writing code. While I have mostly figured out the syntax, I don’t truly understand what’s happening with inputs, outputs etc. I know work is being done by other developers to create a GUI that has access to package lists and system options. A TUI for system management would be cool. I think that this would make it a great option for non-programmers and would likely lead to increased usage.','Probably try Guix. If not that then I’d be back to distro hopping. 😆 ','','','','','','','I have no need for deployment tools as a desktop user. ','','','','I have Sway and XFCE installed. Use Sway generally. ','','','Thank you for making Nix and NixOS!'),(68,NULL,2,'en','229087760','A6','A3','-oth-','genderfluid','','','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I\'ve started using NixOS before using Nix independently. I was always a distro hopper searching for the perfect distro. NixOS is everything I\'ve wanted in a distro. Infinite customisability? check. least amount of things to remember if i want to reinstall? check. undo changes if something breaks? check.\r\n\r\nThis introduced me to Nix. the idea of all the same things as above for managing project dependencies? count me in.','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A3','A10','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'for OS? any other Linux distribution out there would\'ve worked.\r\nfor projects? stack specific tools to manage dependencies, like nvm for node, pipenv or venv for python etc.\r\nfor ad-hoc environments? containers','A1','','','','Y','Y','Y','Y','','','','','','','','','','','','Y','','','','A15','A9','A1','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','At the moment, only time.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(69,'1980-01-01 00:00:00',5,'en','751456930','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A19','A15','A5','','','','','','','','','','','','','','','','','','','A19','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','Y','','','','','','','','','Y','','','','','','','','Y','','Xmonad','Nixvim.','',''),(70,'1980-01-01 00:00:00',5,'en','1030946597','A5','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I needed a system that would remember how I set it up. ','Y','Y','','Y','Y','kvm, microvm','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','Y','','A2','A10','A7','','','','','','','','A15','A6','A11','','','','','','','','','','','','','Store-only nix','One or more of ansible, terraform/pulumi/cdk, more containers, something like devcontainers ','A2','','','Y','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A1','A4','A3','A9','A14','A5','A19','A11','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','When I needed to run Linux, I chose NixOS','Y','Y','Y','Y','','Y','Robots','Targetable configs (running any software from any time)','Modularity (both inputs and outputs)','Tight feedback loop for changes','Easier way to bundle closures for deployment. \r\nBetter ootb secrets management. \r\n','I truly do not know. ','Y','','','','','','','','','','Sway, hyprland','nixos-generators\r\ncachix \r\ndream2nix\r\nagenix\r\nflake-parts','poetry2nix\r\nnode2nix\r\nflake-utils \r\nflake-utils-plus',''),(71,'1980-01-01 00:00:00',5,'en','219299988','A2','A3','male','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I wanted a declarative system','','Y','','','','','Y','','','','','','','','','','Y','','','','A2','A7','A1','','','','','','','','A4','A5','A6','','','','','','','','','','','','',NULL,'Arch linux','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','A3','A17','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Nix is too complex','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I wanted a declarative system','Y','','','','','','','Declarative configuration','module system','package availability','Documentation','Arch Linux','Y','','','','','','','','','','BSPWM','','',''),(82,'1980-01-01 00:00:00',5,'en','990617698','A5','A5','male','','','','','','','Y','Y','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','Y','','','','','','','','','Y','Y','','','','A2','A1','A9','','','','','','','','A8','A9','A10','','','','','','','','','','','','',NULL,'','A6','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A4','A2','A15','A9','A13','A8','A1','','','','','','','','','','','','','','','A8','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(73,'1980-01-01 00:00:00',5,'en','334285675','A5','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A7','I wanted to declaratively manage packages my dotfiles depend on','','Y','','Y','','','Y','','','','','','','Y','','','','','','','A2','','','','','','','','','','A5','A14','A15','','','','','','','','','','','','',NULL,'system package manager','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','N','N','Nothing. Using nix feels like it vendor locks my configurations, so I try to depend on it as little as possible',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Get better documentation. Actually migrate to the new nix command. Make it possible to use the binary cache without chroot shenanigans.'),(74,'1980-01-01 00:00:00',5,'en','190851522','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A4','A3','A15','A21','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Declarative configuration','Rollbacks','','','Guix or Fedora Silverblue','Y','','','Y','','','','Y','','','Sway','Agenix','',''),(75,NULL,2,'en','2008814437','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','As an enthusiast, I\'ve jumped around from distribution to distribution. After landing on Arch for a period of time, it eventually became bloated with all the one off installs that get forgotten about. At some point, these packages began to cause issues with updates. It became a hassle to manage constantly.\r\n\r\nNix offered something different, manageable, reproducible, exciting. I am not a programmer or developer by trade/profession but do tinker with Python/Go. However, I enjoy the learning challenge. I\'ve barely scratched the surface of understanding the language, but I am more intrigued than ever.','','','','','','VMWare','Y','','','','','','','','Y','','Y','','','','A6','A9','A4','','','','','','','','A4','A14','A5','','','','','','','','','','','','',NULL,'I\'d continue hopping from distribution to distribution, through Nix.. I\'ve learned about Guix. Not sure if it\'d keep me as interested as Nix does.','A2','','','','Y','','','','','','','','','','','','','','','','','','I don\'t even know?','A2','A9','A17','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Lack of experience and understanding. However, if the proper resources become available for creating/developing a package and how to upstream that.. I\'d be more than happy to contribute.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(76,NULL,1,'en','1843452895','A1','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(77,'1980-01-01 00:00:00',5,'en','1701939170','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','','','','','','','','Y','','Y','','Y','','A2','A3','A1','','','','','','','','A6','A2','A5','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','A15','A22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(78,'1980-01-01 00:00:00',5,'en','546843634','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Intrigued by the efficient workflow of building a immutable desktop Linux OS. 10+ years ago this was miles better than the solutions i had based on Ubuntu and ArchLinux.\r\n\r\nStayed because of nixpkgs being a better alternative to AUR, the large package repository and the ideas behind Nix: i did not care whether Nix would make it, as long as the ideas behind it would be adopted by the software development community in general.','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A6','','','','','','','','A8','A3','','','','','','','','','','','','','',NULL,'asdf? ArchLinux? Docker?\r\n\r\nMaybe look into other buildsystems?','A1','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A2','A1','A7','','','','','','','','','','','','','','','','','','','A2','A1','A7','','','','','','','','','','','','','','','','','','','','Y','','overrideAttrs','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same as Nix. NixOS was the main contributor for adopting Nix.','Y','','','','','','','Declarative','Immutable','Large package repository ','Have fully tested \'profiles\' available. For instance one option for a full gnome desktop or a full out of the box sway profile.\r\n\r\nBased on flakes.\r\n\r\nCommand line for adding package to \'configuration.nix\' instead of adding one to a profile. Profiles make my system non-declarstive','ArchLinux or MacOS','Y','','','','','','','','','','i3 or sway','Devenv.sh','nixops','Nice survey!\r\nThe distinction between Nix and NixOS in the survey is sometimes a bit confusing 😅'),(79,'1980-01-01 00:00:00',5,'en','63127146','A5','A4','male','','','','','','','','Y','','','','Y','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','Y','Y','','Y','','','','','Y','Y','Y','Y','','','A2','A6','A3','','','','','','','','A7','A8','A6','','','','','','','','','','','','',NULL,'MacOS','A1','','','Y','Y','Y','','Y','','','','','','','','Y','','','','Y','','','','A4','A3','A2','A5','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','Y','','','','','','','','','Y','','','','','','','','','','Hyprland','home-manager, nix-darwin','',''),(81,NULL,2,'en','1991315010','A5','A2','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I think I just started hearing a lot of hype about nixos as a distro, went to check it out, and got hooked on the idea of reproducibility','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A3','','','','','','','','A9','A8','A13','','','','','','','','','','','','',NULL,'I guess I\'d lean harder on containers and apt/pacman/brew/whatever. Or guix I guess idk','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A13','A15','A3','A10','','','','','','','','','','','','','','','','A19','A2','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I\'ve never really contributed upstream before and I know that the criteria for PRs on nixpkgs is pretty rigorous. I\'d like to contribute at some point though',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(80,'1980-01-01 00:00:00',5,'en','2028453445','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A7','A1','A2','','','','','','','','A2','A7','A3','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','2020: the edges of my circles began name-dropping Nix; the idea of declarative system config stuck with me but i didn\'t switch.\r\n2021: introduced nixpkgs and single-user nix into my workplace for managing our toolchain.\r\n2022/Feb: took a second approach at self-hosting (DLNA, email, Matrix, ActivityPub). kept breaking things.\r\n2022/Mar: migrated the server to NixOS for its ability to roll back to earlier configs.\r\n2022/May: ported my Arch desktops to NixOS after being familiar with its use for servers.','','','Y','','Y','','','rollbacks','reproducibility','immutability','- faster evaluation.\r\n- break large packages like webkitgtk or qtwebengine or linux into smaller atoms -- for faster rebuilds (maybe recursive nix).\r\n- better way to manage multiple deployments of the same service (`services..enable` almost always maps to a single instance of the service).\r\n- better runtime isolation of packages (few user programs need access to all of /home/).\r\n- immutable FS (or impermanence) by default.','Arch Linux or maybe something Portage-based.','Y','','','','','','','','','','sway','- Nix User Repository\r\n- NixOS Matrix Space','- Home Manager (i manage my entire system with one NixOS repo, so it was confusing to have separate system/user activations/profiles).','i\'m not confident i answered the \"Nix User Questions (not NixOS)\" section at all how you wanted me to. i use NixOS, and my use of Nix is strictly subordinate to that: if i include a `default.nix` in some project repo, that\'s *only* to help me build/deploy it on my NixOS system.\r\n\r\ni thought you were asking about Nix-the-build-system, but then one of the questions mentioned nixos-rebuild which is pretty far into NixOS territory. so when you asked about language-level support i was totally unsure where in the stack you\'re speaking about: shelling out to Perl during nixos activation? building Python packages using nix? calling nix APIs/bindings from a C++ binary?\r\n\r\ni\'m not sure where the border you\'re looking for between NixOS and Nix is supposed to be.\r\n\r\n\r\nMatrix: @colin:uninsane.org should you wish to contact me regarding anything in this survey.'),(83,'1980-01-01 00:00:00',5,'en','1153474951','A2','A3','fem','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I first heard about Nix because due to talking to other Haskell, programmers, and they recommended it as the best way to configure your Haskell toolchain. I was initially sceptical about using a whole new package manager just for my Haskell projects, but after some distro hopping on my personal laptop I\'ve decided to finally give NixOS a try.\r\nIt was quite difficult at first, since I have not quite wrapped my head around the fact how fundamentally different NixOS from other regular distributions. I was also being confused by flakes, and whether to use them from the start, or not, and how to use them best. But eventually things started to fall into place, and I understood both how NixOS and packages in Nixpkgs work.\r\nNowadays I don\'t use a linux machine as a personal computer, but I do use nix for building my various software projects, managing my user files with home-manager and nix-darwin, and have also deployed custom NixOS LXC and docker images for work use. I\'ve also ended up making a couple contributions to Nixpkgs.','Y','','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','','A2','A8','A5','','','','','','','','A8','A14','A10','','','','','','','','','','','','',NULL,'','A6','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A2','A1','A15','A17','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A2','','Y','','Y','','','','','Stability, and ease of updates','Reproducibility, I can move one system configuration from one physical machine to the next with minimal changes','Declarability, when looking at a system I have not touched in a long time, I can easily see what was done to it by looking at it\'s module configuration.','','','Y','','','','','','','','','','','','',''),(84,'1980-01-01 00:00:00',5,'en','1601972608','A5','A4','fem','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Interesting concept, like the immutable aspect of system and package management.','','Y','','','','','','Y','','','','','','Y','Y','Y','Y','Y','Y','','A2','A7','A1','','','','','','','','A9','A13','A5','','','','','','','','','','','','',NULL,'Guix.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A15','A9','A20','A14','A13','','','','','','','','','','','','','','','','A2','A13','A15','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','Y','','Y','','','','','Immutable package installs','Atomic upgrades','Simplified system configuration management','I\'d make the nix language easier to understand and have more examples on the web to help learn how to use the language easier.','Guix','Y','','','','','','','','','','','','',''),(85,'1980-01-01 00:00:00',5,'en','600722090','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','bored','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A7','A2','A1','','','','','','','','A8','A5','A13','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A15','A3','','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','','DWM','','',''),(86,'1980-01-01 00:00:00',5,'en','1906749192','A5','A4','male','','Y','','Y','Y','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Reproducible builds. Reproducible system. Documented system. Sane defaults.','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A14','A5','A6','','','','','','','','','','','','',NULL,'Bash Scripts (or Guix if that existed)','A4','','','','Y','Y','','','','','','','','','','','','','','','','','I rolled my own with Python once...','A2','A3','A4','A13','A21','A15','A1','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I\'m almost getting there. I have contributed a little Nix code to the wiki.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was using Ubuntu and I couldn\'t remember all the things I tweaked on my system, wasting a lot of time on that stuff. I understood I needed NixOS for a documented reproducible system. It was also good for Haskell development. I wanted to switch from Ubuntu, but held off because of analysis paralysis for a few years, justifying it on not wanting to learn a new DSL for it. But I finally got started with a (Linode) server. An old laptop. Then another laptop to prove to myself I could use it to access my Windows work desktop. Then my daily driver. Now I trust it for everything, pretty much. I need to work out secrets management, though.','Y','','Y','','','','Personal Computing','All my system and user-space configuration in one place, under version control. I have a changelog for my system because it\'s in version control, I know when I installed what and with proper comments, why.','I have access to everything in Nixpkgs. **All the things**. Switching to Emacs 29 was a simple one line tweak to my services. And removing it would be a simple easy task. I can install anything I want and remove it just as quickly.','Rollbacks are quick, but I never have to use them. Yet there they are reassuring me in my boot menu.','I would make it so that all users had full access to the information contained in three manuals (nix, nixpkgs, nixos), a discourse site, a wiki, a matrix server, and a discord server.','Guix, I suppose, or what I used to use, Bash scripts written in a functional sort of way.','Y','','','','','','','','','','Sway','I\'m still learning, so haven\'t noticed anything so far that I use regularly.','I started committing to NixOps but stopped due to the mean-spirited political postings of the main contributor on Twitter.','Nah that\'s all.'),(87,'1980-01-01 00:00:00',5,'en','249541316','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','Y','','','','','','','','Y','Documentation and samples are difficult to understand ','','','','','Y','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(88,'1980-01-01 00:00:00',5,'en','267596942','A2','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I am linux user since 2004, (Debian, Gentoo, Arch I used on personal purpose and RHEL, SLES on my job ). First time I heard about NixOS on linux related forum, and idea of reproducible build looking interesting for me. I looked some demos on NixOS site and that is great! ','','Y','','','','','Y','Y','','','','','','','','','Y','','Y','','A2','A3','A1','','','','','','','','A5','A4','A9','','','','','','','','','','','','',NULL,'In this case I am use standard distribution tools. ','A1','','','','Y','','','','','','','','','Y','','Y','','','','','','','','A4','A3','A2','A5','A17','A19','','','','','','','','','','','','','','','','A19','A4','A3','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I have no relevant nix skills at the moment, I make some packages for personal usage, but it is \"fast developed\" nix derivations. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','As I mentioned before first time I heard about NixOS on linux related forum and ideas of declarative building of system looked great for me. ','Y','','Y','','','','','Declarative system configuration ','Reproducible deployment of systems ','nix-shell environment ','I wish to add possibility to enable \"binary packages\" i.e one package - one archive like on other distributions (Arch packages, bin packages on Gentoo). I know about nix-store --export and nix-store --import, but I think possibility to have archive packages will be good for fast deployment. ','I use standard distribution tools','Y','','','','','','','','Y','','bspwm, awesome wm','I am use nix repl regularly (One of the cool and useful thing!), I think you need to add some questions related it. ','I have no such projects.','Thank you for your hard work! NixOS is awesome linux distribution! '),(89,'1980-01-01 00:00:00',5,'en','723788306','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I first started when I switch to NixOS as my main distro.','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A7','A10','A1','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'No single tool could replace it. Maybe Ansible for declarative systems. ','A2','','','','Y','Y','Y','','','','','','','','','','','','','','','','','A2','A5','','','','','','','','','','','','','','','','','','','','A2','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I used to break and have to rebuild my install. I tried to automate that and found NixOS. Ironically I don\'t need to rebuild my install since rollbacks are so easy on NixOS that I no longer need to reinstall ','Y','','Y','','','','','Declarative configuration','Easy rollback to previous generations','Huge package repository','Application stability. Especially when I tried to switch to Wayland.','Arch','Y','','','','','','','','Y','','','Home manager','','You all rock'),(90,NULL,3,'en','1631372337','A5','A3','fem','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was tired of Arch, Ubuntu, etc and managing my system/package dependencies with such fragility.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','A1','A2','A10','','','','','','','','A9','A2','A4','','','','','','','','','','','','',NULL,'','A2','','Y','','Y','Y','','','','','','','','','','Y','','','','Y','','Y','','A13','A15','A4','','','','','','','','','','','','','','','','','','','A9','A11','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','-oth-','All of these except for merge access to nixpkgs',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Tired of Arch/Ubuntu/Debian. Upgrading and maintaining systems was a nightmare.','Y','Y','Y','Y','Y','Y','','Breadth of server configuration options already available in nixpkgs','Declarative OS management','Ease of extending my config with eg modules','','Arch or Ubuntu','Y','','','Y','','Y','','','','','Wayland/Sway',NULL,NULL,NULL),(91,'1980-01-01 00:00:00',5,'en','1645503714','A5','A3','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It solves real problems of system management in an elegant and novel way. Whole classes of problems evaporate with it. Having used Chef, Ansible, Puppet, Homebrew, Apt, dnf, and others, they are all fundamentally flawed and incomplete, and always left me feeling they left things broken and hacky eventually. Nix has made doing crazy things safe and reliable, opening a whole new world of power. The learning curve is steep though.','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A10','A6','','','','','','','','A2','A12','A11','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A2','A1','A7','A15','A9','','','','','','','','','','','','','','','','','A7','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','applyPatches','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','Y','','Declarative configuration','Many built-in modules','','','No idea, the thought isn’t pleasant.','Y','','','','','','','','','','Sway','poetry2nix, nix-update, impermanence, nix-Darwin, Home Manager, ragenix, devshell, flake-parts, bundix','Digga','I love Nix!'),(92,'1980-01-01 00:00:00',5,'en','347243669','A5','A5','male','','','','','','','Y','Y','','Y','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','','Y','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A3','A1','','','','','','','','A8','A5','A12','','','','','','','','','','','','',NULL,'Containers','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A15','A2','A1','A4','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(93,NULL,NULL,'en','1560597493',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(94,'1980-01-01 00:00:00',5,'en','405489697','A5','A3','fem','','','','','','Y','','','','','Y','','','','','','Y','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducible system configs instead of pile of shell scripts','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A9','A10','','','','','','','','A10','A8','A9','','','','','','','','','','','','',NULL,'crying','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','garnix','A17','A15','A5','A2','A6','','','','','','','','','','','','','','','','','A17','','','','','','','','','','','','','','','','','','','','','','Y','','patches on top of nixpkgs','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','Y','','','','','reproducibility','configurability','extensible','First class support for sandboxing of apps so they can\'t eg access all of ~','crying','','','','Y','','Y','','','Y','','i3','home-manager','',''),(95,'1980-01-01 00:00:00',5,'en','334492608','A4','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','','','','','Y','','','Y','','','','','Y','','Y','','','','A1','A3','A9','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'Guix','A4','','','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','','Y','','','','','','','','Guix','Y','','','','','','','','Y','','','','',''),(96,'1980-01-01 00:00:00',5,'en','477396462','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A7','This starts off as I was using Rocky Linux (RHEL clone) because I use Podman for container management instead of Docker. A while later, I was introduced to Ansible and used it for a while to setup my Rocky Linux **servers**. On desktop, I use Arch Linux.\r\n\r\nA few people I follow on twitter started using NixOS in their personal capacity. I wondered why they did so. I tried NixOS and it blew my mind away. It had the expressiveness and \"stateful\" behaviour of Ansible, the modularity of Arch Linux and the rollback behvaiour [not exactly but very similar] akin to ZFS. Getting the LTS Linux kernel was a blessing on top (because I use ZFS and it doesn\'t support the latest stable releases of Linux soon enough).\r\n\r\nEver since, I\'ve been trying to migrate as much from Rocky Linux and Arch Linux to NixOS where possible. **NixOS is the only Linux distribution that I can use on Desktops and Servers.**\r\n\r\n(Though, the only reason why I haven\'t deployed NixOS on every server I own is because I need SELinux support for containerisation.)','Y','','','','Y','','Y','Y','','','','','','Y','Y','','Y','','','','A7','A10','A1','','','','','','','','A4','A6','A5','','','','','','','','','','','','',NULL,'It\'s not like I was unhappy with my prior setup. It\'s just that with NixOS, I didn\'t have to make a choice between Rocky Linux and Arch Linux based on the application. I can just tune `configuration.nix` for that particular usage and it\'s all set.','A4','','','','','Y','','','','','','','','','','','','','','','','','','A15','A2','A17','A3','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A2','','Nothing yet. I\'m still new so haven\'t gotten around the usual gotchas of NixOS and/or Nixpkgs. At the moment, I am not missing any package that was available in Rocky Linux and/or Arch Linux (including the AUR) that isn\'t available in Nixpkgs. So that\'s another reason.\r\n\r\nBut if I see a need or see something interesting to contribute to from the community posts, I will contribute! :)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Umm, I think this is a repeated question. I have replied to this already :)','Y','','Y','','','Y','','The \"stateful\" configuration of NixOS','Cross architecture support of NixOS. I have x86, ARMv8 and RISC-V machines. If I use one distro, I want it to work on all three architectures.','Rollback is quite nice to have :)','1. I want to add SELinux support so I can deploy Podman containers worry free on NixOS.\r\n2. I like the \"no release\" aspect of Arch Linux. Since NixOS can be easily rolled back to a previous working state, I would like to add a \"rolling-release\" release to NixOS. That, in my use case, will not interfere with a server deployment.','I think I mentioned this too. But TLDR: Arch Linux on desktop and Rocky Linux + Ansible on servers.','Y','','','','','','','','Y','','I\'ve yet to see a window manager equivalent to BSPWM on Wayland. But I will use that instead of KDE once I have that.','It is not a product per se and I don\'t \"use\" it regularly. But as I mentioned, I ~~need~~ want SELinux support in NixOS (like what is present in Fedora-based distributions) so I can deploy Podman containers worry free in a production environment.\r\n\r\nWhat I mean to say is, I have never in my life touched SELinux on Fedora-based systems to tinker with it and I probably never will. But what I want is the \"isolation\" that SELinux offers when I use Podman containers. I hope that I am clear.','None so far.','The previous SELinux statement might appear confusing to the survey analysts. Please reach out to me on `thefirst1322 [at] gmail [dot] com`.\r\n\r\nAlso, keep up the good work! You saved me a thousand bash scripts :p'),(97,NULL,1,'en','480743449','A3','A4','male','','Y','','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(98,'1980-01-01 00:00:00',5,'en','183152916','A1','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','live captions','','','','','','','','','','','','','Y','newbie journey','','','','','Y','Y','','','','Y','see other people configs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'didn\'t have all my packages that I use regularly and haven\'t seen other people configs yet ','easier install setup and able to clone other plasma wayland setups',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'don\'t know','don\'t know','Nixos still need better documentation especially with program overlay options. The graphical installer could be better if it lets you chose your file system type like brfts instead of ext4 and let you choose where to place the /home partition, especially when you got 2 drives. Better out of box experience on laptops.'),(99,'1980-01-01 00:00:00',5,'en','419181949','A1','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Being wanting to move to nixos for a while and managed to corrupt my drive so i took the opportunity to reformat and start my nixos journey.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A7','A2','A10','','','','','','','','A6','A9','A8','','','','','','','','','','','','',NULL,'I would still be using Arch with a mixture of dotfile managers and docker-compose.','A4','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','It\'s not software designed for usage by end users','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Being wanting to move to nixos for a while and managed to corrupt my drive so i took the opportunity to reformat and start my nixos journey.','Y','','Y','','','','','Reproducibility','Declarative Configuration','Ephemeral Root Storage','Better native docker-compose support','Arch with dotfiles','Y','','','','','','','Y','','','','','',''),(100,NULL,2,'en','1039650343','A2','A3','male','','','','','','','Y','','','Y','Y','','Y','','','','','Y','','','','Y','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It\'s the only distro in the past two decades doing something new and sensibile. ','Y','Y','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A7','A10','','','','','','','','A13','A3','A8','','','','','','','','','','','','',NULL,'Gentoo probably ','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','A15','A1','A2','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','Not enough time, too much churn in PRs, not enough documentation. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(101,NULL,1,'en','570550051','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(102,NULL,2,'en','11732809','A5','A5','fem','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','','A2','A3','A10','','','','','','','','A4','A7','A5','','','','','','','','','','','','',NULL,'Debian/Ubuntu','A4','','','','','','','','','','','','','','','','','','','','','','Nomad','A2','A22','A14','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(103,'1980-01-01 00:00:00',5,'en','781970051','A5','A5','male','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I thought I could configure everything - including app configs. This was appealing to avoid all the inconsistencies between distributions. I\'d use Mint for some things, Fedora others. So Nix and Nixos appealed as one solution and one learning curve.','','','','','','','Y','Y','','','','Y','','','','','Y','','','','A7','A1','','','','','','','','','A8','A4','A5','','','','','','','','','','','','',NULL,'I\'d try Guix, but otherwise try some method for consistency across devices such as self made scripts.','A2','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Still learning...','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Distro hopping and stumbled upon NixOS. Found it a steep learning curve, but like the concept.','','','Y','','','Y','','The ability to have common builds across devices with additional machine specific variations.','','','As s novice user, more support for learning. Also better debugging - I currently have lots of strange behaviour and I don\'t know if it is NixOS, the package, or my approach to the configuration.','I\'d try Guix, but probably Fedora.','Y','','','','','','','','Y','','','No','','Keep up the good work!'),(104,'1980-01-01 00:00:00',5,'en','1471478914','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted a sane way to manage packages and their configurations in a single place.','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','','Y','','Y','','A2','A6','A10','','','','','','','','A8','A4','A9','','','','','','','','','','','','',NULL,'Ah hahahaha. Please no. Probably go back to Debian for servers and a mishmash of asdf, brew, etc. ','A1','','','','Y','','','','','','','','','','','','','','','','','','','A9','A15','A22','','','','','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I contribute when I run into issues.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Single place to manage packages and their configs. ','Y','Y','Y','Y','','','','Single place and way to install and configure packages','','','','Debian','Y','','','','','','','','','','','','','Nix and NixOS are both awesome. Thank you to the community and leaders!'),(105,'1980-01-01 00:00:00',5,'en','2145335344','A5','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','When I started using NixOS, I picked it up to configure nixos, and then ended up using it for home-manager and my personal projects.\r\n\r\nThen I convinced my coworkers that it solves a lot of the CI problems we faced, and now use it for work as well in order to create reproducible project builds, CI testing/development environments.','Y','Y','','','','','Y','Y','Y','','','Y','','','Y','Y','Y','Y','Y','','A2','A5','A10','','','','','','','','A2','A11','A8','','','','','','','','','','','','',NULL,'I\'d build my own functional package manager using overlayfs, and use package definitions from Gentoo portage packages.','A2','Y','','Y','Y','Y','','','','','','','','Y','','','','Y','','','','','','A2','A3','A22','A15','','','','','','','','','','','','','','','','','','A2','A15','A22','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','All my desktops/laptops/servers','A2','I was a Gentoo user, and was pretty happy except for dependency conflicts in packages like cmake. Considered making a distro where every package was an overlayfs of its files and it\'s dependencies as lower layers, with some user namespace wrappers for adding stuff to system path.\r\n\r\nDiscovered nix/guix were a thing already. Played around with Guix but wasn\'t happy with it. Gave NixOS a try and was sold.','Y','Y','Y','','','Y','','Atomic updates and rollback','impermanence (wiping rootfs on boot to ensure all state is managed, and machine is in good, known state)','Reproducible system from flake in git','I would add easier sandboxing and permission control for daemons and programs, as well as tooling to start userns sandboxes with a subset of nix store paths available. I\'d like to also set programs to run as other users with lesser privileges. I would also have packages declare what files they modify/use to make it simpler to manage state, and persist state files for certain programs.','Gentoo or a custom distro','Y','','','','','','','Y','','','','impermanence, home-manager, emacs-overlay, nixos-hardware, nixgl, mach-nix, pip2nix','flake-utils, flake-parts, dream2nix',''),(106,'1980-01-01 00:00:00',5,'en','769057352','A7','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','It sounded interesting and I like playing with Linux and related projects','','Y','','','','','Y','','','','','','','','','','Y','','','','A1','A2','A6','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Debian','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Learning','N','N','I plan to switch my laptop to NixOS, from Debian + Nix',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Nix is great! As a newbie, I find it hard to find a clear starting point and path to follow in learning.\r\nI followed a guide on nixos.org to install nix on my Debian system. Then followed a guide from somewhere else to install home-manager. Then months later\r\nhad trouble with version inconsistencies between the two. I couldn\'t find a guide to help with that, eventually found help on reddit, but it was a long and tedious experience.'),(107,'1980-01-01 00:00:00',5,'en','1628823027','A4','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Found out about it through discussions on the r/unixporn server, installed NixOS to try Nix out, fell in love.','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A7','A1','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'Probably Pacman from Arch Linux','A2','','Y','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A13','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of knowledge','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Learnt about it on the r/unixporn discord server, decided to install','Y','','Y','','','','','Declarative configuration model','Reproducible system configurations','Rollbacks','Standardise the commands and improve documentation','Void or Arch Linux','Y','','','','','','','','','','AwesomeWM','','',''),(108,'1980-01-01 00:00:00',5,'en','1647745137','A5','A4','male','','','Y','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It\'s the philosophically correct approach. As an engineer for decades and a functional programmer, I understand the value of immutability, so the moment I learned of nix*, I knew I had to learn it and follow it and help it succeed.','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A2','A1','A10','','','','','','','','A5','A14','A15','','','','','','','','','','','','',NULL,'Oh God... \r\nFor os, I\'d still use Darwin, which I also use now, but for Linux distro probably Ubuntu\r\n\r\nFor packaging, probably I\'d be stuck with brew and apt 😭','A4','','','','Y','Y','','','','','','Y','','','','','','','','Y','','','','A11','A13','A15','A4','A5','A3','A9','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same as \"why nix?\"','','','Y','Y','','','','Determinism in builds ','Atomicity','Immutability & sharing/reusability ','Oh Jesus... I\'d probably replace the \"academic experimental seeming language nix\" as primary substrate for both configuration of os and packaging configuration repo language with a different, more well known or similar-looking statically typed functional language with real ide support.\r\n\r\nAnd I\'d obviously add usable, canonical docs that are helpful both as quick reference and as learning platform, side by side.','🤢🤮 Ubuntu and Mac and sadness ','Y','','','','','Y','','','','Y','','','Nixops',''),(109,'1980-01-01 00:00:00',5,'en','1621967769','A6','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','Y','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A7','','','','','','','','A8','A6','A12','','','','','','','','','','','','',NULL,'Guix','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A5','A15','','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','As a maintainer, I have zero merge rights, but all the responsibility. If I still have to wait and prod others for getting shit merged, I get discouraged and leave.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','Declarative config','Atomic activation/rollback','Package availability','Stabilize flakes\r\nHave 1st party secrets management\r\nAdd 1st party deployment orchestration','Guix System','Y','','','Y','','','','','Y','','','','',''),(110,NULL,NULL,'en','1345194667',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(111,'1980-01-01 00:00:00',5,'en','278908959','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Some “dumb” developer introduced as part of a dev environment. I thought it was dumb. Over the years, I started to see the benefits. ','Y','','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','Y','','A7','A2','A6','','','','','','','','A8','A12','A5','','','','','','','','','','','','',NULL,'Some crappy assembly of scripts. ','A4','','','','Y','Y','','','','','','','','','','','','','','','Y','','','A2','A20','A11','A9','','','','','','','','','','','','','','','','','','A2','A11','A10','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','Deterministic upgrades and rollbacks','Easy of deployments','Deterministic configuration ','Remove all non-flake options other than nix-shell.','','Y','','','','','','','','','','Sway','Poetry2Nix','Digga',''),(112,'1980-01-01 00:00:00',5,'en','146864680','A5','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I saw someone post about their NixOS configuration and I found it fascinating since it seemed to configure things with far less effort than my manual steps on other Linux distributions. After learning more about Nix and the many problems that it solves, I jumped in!','Y','Y','','','','','Y','Y','','Y','Y','','','Y','Y','Y','Y','Y','','','A1','A3','A7','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'I would still be using Docker and continuing to be frustrated with its many flaws.','A4','','','','Y','Y','','','','','','','Y','Y','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','The NixPkgs repository is very large and it can be difficult to know whether some changes are safe or not until hours or days later. It is also very difficult to find what to change or where to add new things. Even more difficult is learning about the large amount of infrastructure already in the repository. Documentation would help a lot.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I saw someone talking about configuring their NixOS system and thought it was fascinating. I installed it on my new Framework laptop at the time and fell in love immediately! Declarative system configuration is what drew me in and I stayed because of the large package repository, easy rollbacks, and how NixOS made managing multiple systems a breeze when paired with flakes.','Y','','Y','Y','Y','','','Declarative system configuration','Safe modifications thanks to rollbacks','The module system and how easy it is to add new modules','Home Manager would be first-class, allowing for user home configuration out of the box.\r\nNaming for module options, functions, etc would be standardized. Either camelCase or kebab-case. Right now it\'s a mix and can be difficult to remember (or guess) which is right.\r\nDoc comments would be standardized in a way that makes them both easier to write and parse. Generated documentation for pkgs.lib would then be more feasible.\r\nAn easy, standard solution for secret management that would work out of the box for many users. Enabling declarative secrets would bring serious deployment capability to NixOS. Right now the best we have is DetSys\'s Vault Agent module which isn\'t quite perfect.','Arch and I would be manually installing the OS, packages, and configuration files (Stow).','Y','','','Y','','','','Y','','','','Snowfall Lib & Snowfall Flake\r\n\r\nhttps://github.com/snowfallorg','','NixOS is an incredible leap forward from all of the other computing experiences I\'ve had in my life. I\'m very excited for the work being done to make it even better.'),(113,'1980-01-01 00:00:00',5,'en','1619306108','A2','A5','male','','','','','','','','','','','','','','','','','','Y','','Y','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A6','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'','A6','','Y','','Y','Y','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(114,'1980-01-01 00:00:00',5,'en','1527707372','A5','A3','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I\'m write software in a functional language for my day job and I\'ve seen the stability and simplicity that immutability and atomic updates can bring to complex systems. When I interact with software of any type I want it to work for me, not me for it. That means if I have to manually handle breaking changes or restart my system or fix a problem that I didn\'t immediately cause, I\'m unhappy. I\'m willing to pay a large cost in learning a new system if it will give me stability, and Nix has promised and delivered on that stability.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A7','A1','A2','','','','','','','','A5','A14','A3','','','','','','','','','','','','',NULL,'Guix','A4','','','','','Y','','','','','','','','','','','','','','','','','','A20','A5','A1','A9','A2','','','','','','','','','','','','','','','','','A20','A5','A1','','','','','','','','','','','','','','','','','','','Y','','Y','','A1','','Reproducible builds for the JVM seems to still be early days, and I\'m not at all proficient with Nix.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I wanted a stable (read - won\'t break on update) system. Atomic rollbacks brought me in, but I stayed for the declarative setup.','Y','','Y','','','','','atomic rollbacks','declarative system configuration','reproducible builds','I\'m pretty self-conscious about disk efficiency. My nix store on my personal machine is greater than 500GB and I\'m not sure how to make that number go down. Storage is relatively cheap but I don\'t want to have to feed another terabyte to the store just to keep going.','Guix, maybe Fedora Silverblue.','Y','','','','','','','','','','i3wm','','Flakes - I\'ve started using the web gui for package search because once I enabled the flakes command a `nix search nixpkgs` invocation would start downloading megabytes of something.','Thank you for the stability - I feel like every other operating is moving towards more invasive and less stable software, with NixOS I know it will Just Work tomorrow.'),(115,'1980-01-01 00:00:00',5,'en','154944209','A2','A3','male','','','','','','','','Y','','','Y','','Y','','','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducible environments of Spring Boot environments for local development and CI. \r\n\r\nI hated that e.g. JDK, npm, yarn, … had to be globally installed on the CI servers and shared by all our projects. ','Y','','','Y','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','A2','A4','A10','','','','','','','','A8','A9','A1','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','Y','Y','','','','A5','A1','A15','','','','','','','','','','','','','','','','','','','A1','A19','A8','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Personally I was using Arch but not satisfied with the ability for configuration. \r\n\r\nAt work we were maintaining manually configured CentOS machines which we are to replace. ','Y','Y','Y','Y','','','','Declarativity','Rollback','Reuse ','','','Y','','','Y','','Y','','Y','','','','','',''),(116,'1980-01-01 00:00:00',5,'en','260821652','A5','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'m a control and neat freak.\r\n\r\nWas tired of Ansible recipes and cluttered scripts.','Y','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','Y','Y','','A1','A7','A2','','','','','','','','A4','A8','A6','','','','','','','','','','','','',NULL,'Ansible, Debian','A2','','','','Y','Y','','','','','','','','Y','','Y','','','','Y','','','','A9','A3','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','Reproducibility ','Ease of configuration','','Make Nix language more consistent and extend the stdlib','Ansible & Debian','Y','','','','','','','Y','','','','agenix\r\nhome-manager\r\nnix-lsp\r\nalejandra ','cachix',''),(117,'1980-01-01 00:00:00',5,'en','1055013468','A5','A4','male','','','','','','','','','Y','','','Y','','','','','','','','','','','','','','Y','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Changed computer','New language',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(118,'1980-01-01 00:00:00',5,'en','1223204479','A1','A3','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Declarative system management looks cool in NixOS. Then I tried on Mac and saw that Nix beats Homebrew in terms of package management convenience.','Y','Y','','','','','Y','','','','','','','Y','Y','Y','','','Y','','A2','A3','A10','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'Homebrew/pacman for package management.\r\n\r\nArch for NixOS.','A2','','','','Y','Y','','','','','','Y','','','','','','','','','','','','A3','A15','A13','A1','','','','','','','','','','','','','','','','','','A13','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Lack of time to do so, more personal thing. I find that Nixpkgs very welcoming to contributions otherwise compared to other repos.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Discovered declarative package management and wanted to manage dotfiles consistently across reinstalls. e.g. for window managers, widgets, desktop, and just underlying apps/daemons','Y','','','','','','','Declarative config management','Flake configuration','--','Way better API documentation, requiring less \"view from source\"\r\n\r\nBetter support for stage 1 init for Plymouth, etc.','Arch Linux','Y','','','','','','','','','','XMonad','Home-manager','',''),(119,'1980-01-01 00:00:00',5,'en','1523150868','A2','A2','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','got interested in reproducibility and started using nix','','Y','','','','','Y','','','','','','','Y','','','Y','','Y','','A2','A7','A1','','','','','','','','A5','A8','A3','','','','','','','','','','','','',NULL,'ansible, ig','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A17','A13','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','lack of skill set and responsibility','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','i\'m just starting to use it right now, again, because of reproducibility','','','','','','','vms','reproducibility','declarativeness','package availability','add a stable branch, say, with 2 years of support or more','rhel or its clones','Y','','','','','','','Y','','','awesomewm','home-manager, impermanence, sops','disko','thanks for your hard work, and wish this project to prosper'),(120,NULL,1,'en','1880480327','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(121,'1980-01-01 00:00:00',5,'en','2069774743','A5','A3','male','','Y','','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I heard great things about it, and decided to do an install on an old laptop. I took a few weeks to get comfortable, and then installed it on everything ','','Y','','Y','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A2','A6','','','','','','','','','','','','',NULL,'Probably pacman','A1','','Y','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A1','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I have previously. Ever time, it\'s super slow and painful. I rather just add a flake.nix to the source package and import than go through the hassle of getting it in nixpkgs ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using nixos with nix.','Y','','Y','','','','','declarative','Configurable amnesia','','More aggressive GC, stable Flakes, network changes without rebuild','Arch','Y','','','','','','','','','','Hyprland, xmonad, openbox','Flake utils? Rnix? Rather I have things with dependencies to eco-system projects.','deploy-rs, just use nix rebuild now.\r\n\r\nNix without flakes. I don\'t use it. Not even sure I\'d understand fully how to anymore','Yeah! I love Nix ❄️❄️❄️'),(122,'1980-01-01 00:00:00',5,'en','718464454','A2','A4','male','','','','','','','','Y','Y','','','','Y','','','','','Y','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Reproducibility','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A10','A5','A1','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Arch','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A3','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Reproducibility','Y','','Y','','','','','Declarative configuration','','','Reproducible distributed cross building','Arch','Y','','','','','','','Y','','','','','',''),(123,NULL,2,'en','939038145','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Recommendation from a friend. Then it got difficult, I switched back to Arch, only to discover to my horror that Arch I now find imperative operating systems terrible ','','','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A7','A10','A1','','','','','','','','A7','A5','A8','','','','','','','','','','','','',NULL,'Fedora','A4','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A4','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(124,'1980-01-01 00:00:00',5,'en','1060673895','A2','A3','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A9','A7','','','','','','','','','','','','',NULL,'Virtualenv and containers','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because I want a Linux System which I can declaratively configure. Ansible, Salt and Puppet ar just cheap afterthoughts with a lot of [maintenance] problems','Y','','','','','','','Declarative Configuration','Composability (e.g. one configfile can be used for a whole cluster, or just a specific config can be included, etc.)','Reproducibility','- Add apparmor or SELinux functionality\r\n- make flakes & nix-command stable\r\n- Add fully automated CVE triaging\r\n- fix the documentation mess','Debian/RHEL and Ansible for deployments.','Y','','','','','','','','','','XMonad','home-manager\r\nmusnix\r\nnixos-hardware','simple-nixos-mailserver',''),(125,'1980-01-01 00:00:00',5,'en','1209341656','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','First class zfs support and reliable automatic updates made me try nix for my NAS.','','','','','','','','Y','','','','','','','','','','','','','A7','A3','A5','','','','','','','','A6','A7','A5','','','','','','','','','','','','',NULL,'arch','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','i still have to figure out how to create a package.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','Y','','','','','automatic updates','zfs support','','easier to understand language','arch','Y','','','','','','','','','Y','','','',''),(126,'1980-01-01 00:00:00',5,'en','1479970191','A1','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','ex FreeBSD user, just really like the possibility of using nix to build OS for my daily use','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','Y','','A2','A3','A6','','','','','','','','A6','A9','A8','','','','','','','','','','','','',NULL,'FreeBSD','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A7','A9','A2','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','really liked nix wanted to try nixos','Y','Y','Y','Y','','','','ability to rebuild system from any nixpkgs commit','declarative configuration','uptodate packages','improved NixOS manual, ZFS as default filesystem','FreeBSD','Y','','','','','','','Y','','','','bundix','','keep up the good work !'),(127,'1980-01-01 00:00:00',5,'en','1347359564','A2','A3','male','','Y','','','Y','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Declarative configuration, even of single repo dependencies ','Y','','','','','','Y','Y','Y','','','','','','Y','Y','Y','Y','','','A2','A1','A9','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'Homebrew','A1','','','','Y','Y','Y','','','','','','','','','','','','','Y','','','','A2','A1','A5','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Packaging my Python apps is tedious since I need to update it manually for every version. The package itself is released via semantic-release in GitHub Actions after merging PRs.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','Declarative configuration','Hardware support','','Merge the options of nixos and nix-darwin where possible.','Ubuntu','Y','','','','','','','Y','','','','poetry2nix, flake-parts','devenv',''),(128,'1980-01-01 00:00:00',5,'en','1481535285','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','N','N','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I liked the idea of reproducibility. I liked the idea of isolating the installation, even though I\'ve never had conflicting packages with any other package manager. So I decided to give it a try;','Y','','Y','','','','','reproducibility','declarative configuration','','I would have thought of using Haskell at the very beginning of the project rather than introducing a completely new language, but I don\'t think it can be changed at this point. And it\'s not such a big deal as I try to avoid using it as much as possible anyway','Arch','','','','Y','','','','','','','Wayland River','home manager','nix-du: it was failing with an error','I try to configure my system using Nix language as little as possible, and not because it\'s a bad language, but rather because I just don\'t want to stick with it. so I use Nix to link config files from my dotfiles directory to places where programs expect them (before Nix I used Stow for this) and to configure stuff I can\'t configure natively. I also try to use Nix for plugin management as I don\'t want to have multiple package managers on my system. For example, I install neovim plugins with Nix and I would like to do the same for Zsh plugins and Minecraft mods, but I will never rerwrite my existing configs in Nix.'),(129,'1980-01-01 00:00:00',5,'en','236316857','A2','A5','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','Y','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A1','A2','A7','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'openSUSE','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A5','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','Make it more consistent, remove legacy for more simplicity','openSUSE','Y','','','','','Y','','','Y','Y','','search.nixos.org','agenix and similar. I don\'t think that is the right approach to secrets management. Secrets are not config. ','NixOS is great!'),(130,'1980-01-01 00:00:00',5,'en','1868107104','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Be able to try things with confidence I won\'t break anything, self-documenting system changes ','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A2','A5','A10','','','','','','','','A9','A4','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A17','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','New laptop, wanted to fully control the system','Y','','','','','','','Easily documentable system config','','','Better Nix interfaces with choosable backend.\r\nAbility to define a parametrized module in a file, and \'import\' it multiple times with arguments.\r\nBetter integrate Nix and NixOS module eval system.\r\nBetter isolate Qt programs, do not leak QT_PLUGIN_PATH in user environment if it\'s not useful!\r\nAbility to manage multiple profiles from a single NixOS config.\r\nBetter support to install the latest GUI apps, without incompatibilities, and maintain them up to date.','A stable distrib\' with Nix','Y','','','','','','','','Y','','','','','You rock (:'),(131,'1980-01-01 00:00:00',5,'en','160715067','A2','A4','male','','','Y','','','','Y','','','Y','','','','','Y','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','hint by work colleague','','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','','','','A7','A1','A2','','','','','','','','A9','A8','A12','','','','','','','','','','','','',NULL,'','A4','','','','','Y','Y','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','hint by work colleague','Y','','','Y','','','','rollback','declarative system','','','maybe Fedora?','Y','','','','','Y','','','Y','Y','','','',''),(132,'1980-01-01 00:00:00',5,'en','1908141310','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Forensic investigator','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Reproducible environments as a replacement for python venvs (specifically Nix shells, Nix flake devshells). It was the most sane way to easily pin all project dependencies to me, or Nixify academic projects with poor reproducibility, and patch specific programs. Nix also made it very straightforward to self package programs that were otherwise unavailable for my job.\r\n\r\nAdditionally, creating portable executables that I can i stall with dpkg or run as appimages on other distributions (specifically forensic Linux distro live images). Often some tools were missing and Nix was the easiest way to add them to my toolkit.','','Y','','Y','','','Y','Y','','','','','','','Y','Y','Y','Y','Y','','A2','A10','A5','','','','','','','','A1','A6','A12','','','','','','','','','','','','',NULL,'Probably Guix, although I am not a fan of lisp personally it is the next closest thing. If that did not exist, I might look into static linking and scripts to a lesser extent recreate what Nix offers.','A2','Y','','Y','Y','Y','Y','Y','','','','','','Y','','','','','','','','','I am not a developer by profession so I don\'t use CI, but Hydra looks most interesting if I had to pick.','A2','A3','A4','A15','A17','A22','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I do not believe I have the availability or commitment to be a maintainer, which it seems if I want to upstream a derivation or module, that is what is expected. I do closely follow Nix and NixOS development and in my opinion have a good understanding of the ecosystem, though.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','The idea that I can reproduce my entire system with all its configuration from a few config files was mindblowing to me and I was instantly sold on the idea. Now I don\'t even want to use anything else, whenever I have to use other distros or BSDs it feels like taking a step back.','Y','','Y','','','Y','','Reproducibility','Rollbacks','Declarative system configuration','Better support for security updates in response to CVEs. I want to be able to have something like partial updates or checking to see if there are vulnerable packages and only update those packages, but I cannot imagine how this would look or work in the context of Nixpkgs and NixOS. The way it is now is not great, IMO.\r\n\r\nI would also like to see a restructuring of module options w.r.t. X and Wayland environments, it does not make sense to me that the DEs are under services.xserver while standalone Wayland compositors are just services. It would be awesome to see a more unified way to configure a graphical desktop keeping in mind both Wayland and X support.\r\n\r\nAdditionally, I would like to see user environment management similar to home-manager, as it is quite awkward using it in single user systems with the separation between modules.','Probably GNU Guix, but it probably wouldn\'t exist if NixOS didn\'t either. In which case, I would not know. Tools like Ansible and Terraform do not fulfil the same function to the same ability for me.','Y','','','','','','','Y','','','Wayfire','Impermanence, home-manager, sops-nix, NixOS-WSL','',''),(134,'1980-01-01 00:00:00',5,'en','160304891','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Park Aide ','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A1','','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A14','A8','A5','','','','','','','','','','','','',NULL,'','','','','','','','','','','','','','','','','','','','','','','','','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I started using NixOS because the concept seemed interesting, and that concept was implemented an a good way so i kept using it','','','Y','','','Y','','','','','','','Y','','','','','','','','','','Sway','','',''),(133,'1980-01-01 00:00:00',5,'en','823735647','A1','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','declarative configuration','','','','','','','Y','','','','','','','','','Y','Y','','Y','','A1','A9','A10','','','','','','','','A5','A13','A4','','','','','','','','','','','','',NULL,'','A2','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','A5','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','declarative configuration','roolback','overlay','Add file manager as etc','','Y','','','','','','','Y','','','','','',''),(135,'1980-01-01 00:00:00',5,'en','404308044','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','','','Y','','','','Y','','Android(using nix on droid)','','Y','Y','Y','','Y','','A2','A1','A9','','','','','','','','A8','A9','A10','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','Reproduceble os: combined with rollbacks and git history of my config lets me hack my system fearlessly','Declarative config: allows me to keep everything about my system in one place one, git repo','Nixos options: allows me to quickly enable and configure services and programs','Faster eval times or keeping eval state in memory so subsequent evals of ayatem can be faster.\r\nThis would let me experiment with my config faster','Porably fedora or some rolling relaese and maybe with something like ansible','Y','','','','','','','','Y','','Hyprland','Home manager,\r\ncomma,\r\nnix-any-shell,\r\nnix-on-droid','','Thanks for everyone working on nix ecosystem'),(136,'1980-01-01 00:00:00',5,'en','998477286','A2','A5','male','','','','','','','','','','','','','','','Y','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','Community work','A4','NixOS','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A7','A1','A9','','','','','','','','A2','A13','A6','','','','','','','','','','','','',NULL,'Maybe some other CI language like Ansible.','A2','','','','Y','Y','','','','','','','','','','Y','','','Y','','','','','A2','A3','A1','A17','A18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Community work','A4','Looking for an free, open, save and reducible system.','Y','','Y','','','','','Reproducible builds','Declarative system management','Stateless system','Integrate home-manager','Perhaps Debian or Fedora','Y','Y','','','','','','','','','Hyprland and Sway','Home-manager with Flakes','','Of course THANK YOU!'),(137,NULL,1,'en','1240320224','A2','A2','male','','','Y','','','Y','','','','','Y','','','','','','','','','','','','Y','Y','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138,'1980-01-01 00:00:00',5,'en','371977933','A5','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using it first to deploy Prometheus/Alertmanager. Then I started using it to manage development servers and user home/dotfiles. In addition I started using it to replace my personal Archlinux machines. The declarative and version controlled nature of flakes is what really convinced me of NixOS\'s advantages.','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A1','A10','A2','','','','','','','','A2','A8','A6','','','','','','','','','','','','',NULL,'Guix :) Ansible or similar DevOps tools. Docker/podman for development environments. ','A2','','Y','','Y','Y','','','','','','','','','','','','','','','','','','A10','A1','A2','A5','','','','','','','','','','','','','','','','','','A2','A5','A1','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','I do contribute some but most of my work regarding nixpkgs involves the many lang2nix projects which often are completely separate from nixpkgs or would conflict with how nixpkgs manage language libraries.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as my answer in the Nix section, I used NixOS before using Nix on other OS.','Y','','Y','Y','','','','Declarative and reproducible configuration.','Large and extensible package library (nixpkgs)','Easy to deploy on physical, virtual, and container environments.','Add first-class secrets and state management (impermanence) support. Merge/improve Nix-on-nix containers. ','Guix :) Likely Arch for personal use and Fedora Silver blue for work. Development environments would likely be docker based instead of Nix devshell.','Y','','','Y','','','NixOS Autoupgrade','','','','Sway','yarn2nix, agenix, home-manager, composer2nix, devos/digga.','',''),(139,'1980-01-01 00:00:00',5,'en','502514653','A1','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Idempotency is not enough. A lot of stuff in my professional work has to be able to go from 0 to running in one smooth motion. So I\'m used to EVERYTHING as code and full automation of stuff. Nix enables that. Primarily though, I was sick of Devcontainers. I hop between repo contexts a LOT more than the average dev. So having the ability to go between fully fledged, pinned, working environments was a game changer. Containers were too brittle and not fully featured enough for stuff like attaching debuggers, or passing auth through.','Y','Y','','Y','Y','','Y','','Y','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'Chezmoi, Ansible/Chef/Puppet, Docker/Podman','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','A15','A6','A7','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','It\'s been really hard to learn and get confident with.\r\nWithout some documentation on what the mechanisms are and where to put stuff it\'s confusing to try and reverse engineer existing Nix projects','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Devcontainers weren\'t cutting it. I hop repos and contexts a LOT for work.\r\nAlso I\'m tired of polluting my o/s and winding up with system dependency hell','Y','Y','','','','','','Reproducible development environments','Short-term shell contexts with packages available','Reconfiguring my entire machine out of a flake','Maybe NixLang is a little too sharp a tool. Feels like you have to write a lot of boilerplate to get stuff going, it\'s difficult to communicate stuff like input schemas to consumers.','Ansible/Puppet/Chef, Docker/Podman, Chezmoi','Y','','','','','','','','','','','poetry2nix','Terranix','Love you guyssssss'),(140,'1980-01-01 00:00:00',5,'en','359503485','A2','A3','male','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A7','A1','','','','','','','','A12','A8','A1','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A5','A1','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','to have a known and immutable system state','Y','','Y','','','','','declarative system configuration','configuration abstraction layer with good defaults','bootloaders for past generation in case sth. breaks','','','Y','','','','','','','','','','swaywm','mobile NixOS','',''),(141,'1980-01-01 00:00:00',5,'en','1888625704','A5','A2','-oth-','Demiboy','','','','','','','','','','','','','','','','','Y','','','','','Y','','Hobbyist programmer','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','Y','','A1','A7','A6','','','','','','','','A5','A6','A3','','','','','','','','','','','','',NULL,'A variety of tools, like apt and dotbot','A1','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A2','A17','A15','','','','','','','','','','','','','','','','','','','A1','A15','A17','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'N','N','More time to set it up',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Home-Manager\r\nnixpkgs-fmt\r\nNix User Repository','nix-env (use Home-Manager instead)','You\'re doing a great job.'),(142,NULL,1,'en','2117756872','','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','Y','Settings, can be applied with GUI, but they don\'t save. For example, of KDE. If it\'s still actual (correct).','','','Y','Sometimes software that was developed for mutable distributions, needs to be patched to build and run on NixOS. I would like to see guides on this. By the way, it would appeal people to become maintainers and packagers, I think. There are many hacks been implemented in packages in Github Nixpkgs, but not commented still there.','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(143,'1980-01-01 00:00:00',5,'en','1069001610','A5','A5','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','General computing ','A1','I used to use ansible to manage my desktop. Automation for uniform configuration as code. ','','Y','','','','','Y','Y','','Y','','','','Y','','','Y','','','','A2','A1','A10','','','','','','','','A15','A6','A4','','','','','','','','','','','','','I would love to see the gui installer put down an setup using flakes, home-manager, and associated opinionated structure. \r\n\r\nIt would also be amazing to get an opinionated hyprland as an installation option. ','Linux with ansible. ','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A15','A2','','','','','','','','','','','','','','','','','','','A9','A15','A1','','','','','','','','','','','','','','','','','','','','Y','','','-oth-','I’m too new to nix to be contributing ng at this point. Need more experience. ',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Config as code for my desktops. ','Y','','Y','Y','','','','Automation ','Fast roll backs','','Opinionated docs on the “right way” to do things. There are a billion ways to do the same thing. Very overwhelming for a newcomer who just wants to get a system up and running. \r\n\r\nGUI installer using flakes, home manager and opinionated structure from the get go. \r\n\r\nNice to have - hyprland as an option in the gui installer. ','Linux w/ ansible. ','Y','','','','','','','Y','','','Hyprland ','None yet. ','I’m too new. ','Once you get over shaving a yak for 1-2 month, it really starts to shine. But many give up before getting there. That’s why I harp on the opinionated install. Haha. '),(144,'1980-01-01 00:00:00',5,'en','1714025013','A2','A4','male','','','Y','','Y','Y','Y','Y','','Y','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','My distro hopping journey lead from Gentoo to NixOS some day.','','Y','','','Y','','Y','','Y','Y','','','','','Y','Y','Y','Y','','','A2','A7','A8','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A13','A2','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','Atomic rollbacks','Declarative configuration ','Rolling release ','An easy way to just start traditional binaries without hassle ','Gentoo','Y','','','','','','','','','','EXWM (emacs)','','',''),(145,'1980-01-01 00:00:00',5,'en','786175395','A7','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','I initially heard about nix on the linux unplugged podcast and was interested to learn more about it.','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A1','A2','A8','','','','','','','','A4','A1','A5','','','','','','','','','','','','',NULL,'I would’ve continued using arch.','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Time in my personal life.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I heard about nixos on the unplugged podcast and was curious about the immutable nature and the ability to roll back to a working configuration as I had a tendency to make changes just before an important event.','','','Y','','','','Desktops and laptops','Reproducibility ','Declarative configuration allowing for a record of my previous configurations','Ability to quickly and efficiently manage my machines through shared configuration.','n/a','I would continue using arch linux','Y','','','','','','','Y','','','','n/a','n/a','Please continue doing wonderful work, it’s wonderful to see such a project being loved by the linux community.'),(146,NULL,1,'en','2048879244','A1','A2','male','','Y','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(147,NULL,2,'en','932700159','A5','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','Y','','Y','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A3','A7','','','','','','','','A8','A9','A13','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','Y','','','','','','','','','','Y','','','','','','A2','A15','A22','A8','A3','A4','A17','','','','','','','','','','','','','','','A15','A2','A22','','','','','','','','','','','','','','','','','','','','Y','Y','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(148,'1980-01-01 00:00:00',5,'en','397859414','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to test it for my Haskell projects after I saw other people using it.','','Y','','Y','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A10','A6','','','','','','','','A10','A14','A13','','','','','','','','','','','','',NULL,'Probably single purpose build tools like stack, pip, etc.','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A2','A1','A4','A11','A15','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was already using nix and just wanted to try it','Y','','Y','','','','','Reproducible builds ','OS configurations','Development environments','','FreeBSD, maybe guix','Y','','','','','','','','Y','','xmonad, qtile','Home manager','',''),(149,'1980-01-01 00:00:00',5,'en','630607557','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','chrome os, android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I have a lot of different machines (including virtual machines) that I use. I regularly switch amongst them or build new ones. So I liked the idea of being able to reproduce my configuration as I switch machines. I also liked the idea of having greater control over what was on the machine and what gets installed.','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A2','A10','','','','','','','','A9','A8','A14','','','','','','','','','','','','',NULL,'Arch','A4','','','','Y','','','','','','','','','','','','','','','','','','','A11','A2','A15','','','','','','','','','','','','','','','','','','','A11','A13','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I have several machines at home including virtual machines. I liked the idea of being able to carry my configuration across machines.','Y','','','','','','','','','','','Arch','Y','','','','','','','Y','','','sway','','',''),(150,'1980-01-01 00:00:00',5,'en','1893839984','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I started using nix because I was looking for an alternative to homebrew. Once I saw how incredibly useful nix is I started using NixOS to configure a vm on my desktop as well as my home server. Finally I switched to using NixOS as my daily driver.','Y','','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A7','A6','','','','','','','','A6','A12','','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I would like to see a more detailed guide on how to contribute.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Once I saw the benefits of nix I immediately wanted to declaratively configure everything. I tried out NixOS in am vm, then used it to configure my home server and finally switched to using it as my daily driver.','Y','Y','Y','','','','','Declarative configuration','Rollbacks','Extensibility ','Built in support for handling secrets without having to commit them (even an encrypted version). Maybe they could be read from a password manager instead.\r\nAlso better integration with home-manager and a built in and easy to use deployment tool with automatic rollback support.','MacOS and maybe linux','Y','','','','','','github:pinpox/lollypops','','','','Hyprland, River','Disko is very helpful when installing NixOS on a new host, I also use home-manager and nix-darwin.','','Thanks!!!'),(151,NULL,1,'en','601068549','A2','A4','male','','','','','','Y','','','','','Y','','','','','','Y','','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(152,NULL,2,'en','1198725574','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend of mine was a contributor to GNU/Guix and got me interested in its properties. I also contributed to it for a while before deciding to check out Nix as the origins of the fork. I liked that Nix and it’s ecosystem was a lot more mature (and less dogmatic) than the GNU world and the rest is history','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A8','A12','A11','','','','','','','','','','','','',NULL,'I’d stop using computers and become a goat herder because I can’t stand other tools anymore','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','My first foray at seriously using Linux on the desktop. I knew I’d want to explore different technologies (eg desktop environments) and NixOS’s module system seemed like a fantastic way to go about it!','Y','','Y','','','','','','','','','Probably some kind of “immutable base image” distribution and a bunch of flatpaks','Y','','','Y','','','','','','','Sway','','',NULL),(153,NULL,4,'en','801036281','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL),(154,NULL,1,'en','192808408','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(155,NULL,2,'en','107555471','A2','A2','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','a friend of mine thought it would be interesting to me, i checked out it and i stuck, i remember when i was amazed that compiling emacs on two separate machines produces the exact same binary','','','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','Y','Y','','A2','A1','A3','','','','','','','','A8','A6','A11','','','','','','','','','','','','',NULL,'probably arch linux','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A13','A15','A3','A4','A1','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','laziness and time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(156,NULL,1,'en','1471948906','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(157,NULL,1,'en','353864089','A2','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(158,'1980-01-01 00:00:00',5,'en','398682844','A2','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was tired of the Ubuntu mess in wsl and wanted to try something radically different.','Y','Y','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A1','A3','A2','','','','','','','','A4','A6','A2','','','','','','','','','','','','',NULL,'bazel for builds, Ubuntu for the OS','A2','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','A15','A1','A9','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','Viewing a diff for the configuration change','Clean rollbacks','','Some way to manage secrets, too. Magic-wand-wise, a transparent integration with vault.','Ubuntu','Y','','','','Y','','','','','','','flake-utils: literally everywhere\r\nnixhelm: all over the production\r\nfenix and crane: for rust\r\ndevenv: in many shells (but almost always it\'s flake based)','all the python wrappers. Nothing really covers the 100% use case and there\'s always some python module that makes me wish I used Ubuntu.',''),(159,'1980-01-01 00:00:00',5,'en','480045049','A2','A3','fem','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Arch Linux with paru','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A9','A2','','','','','','','','','','','','','','','','','','','A9','A15','A1','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','My daily driver','Declarative configuration','Easy to use modules for many things','Large package repository','Use Flakes by default','Arch Linux','Y','','','','','','','','','','Hyprland','Lanzaboote, Home Manager','','Thanks for the great work!'),(160,'1980-01-01 00:00:00',5,'en','254311460','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','Y','Y','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A1','A7','','','','','','','','A2','A4','A12','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','Y','','','','','Y','','','','',''),(161,'1980-01-01 00:00:00',5,'en','1946475996','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','Y','','','A2','A1','A3','','','','','','','','A14','A5','A6','','','','','','','','','','','','',NULL,'Ansible, containers','A1','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','A9','A2','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Bad documentation to start contributing ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Declarative configuration ','Y','','','','','','','Declarative configuration ','Reproducible builds','Nixpkgs ','','Any Linux distro with ansible and containers','Y','','','','','','','','','','hyprland wm','','',''),(162,'1980-01-01 00:00:00',5,'en','1724135677','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend told me about it','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'Guix or Arch','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','Y','','A9','A15','A4','A3','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','A friend told me about it','Y','','Y','','','','','Single configuration for entire system','Atomic updates and rollbacks','Easily extending/modifying the used packages and modules','Improve eval time, add helpful stack traces','Guix or arch','Y','','','','Y','Y','','','','','Xmonad','Everything from mic92, impermanence, disko','Nixops',''),(163,'1980-01-01 00:00:00',5,'en','38227888','A5','A4','male','','','','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','','','','','Y','','','','','','','','Y','','Y','','','','A7','A1','A2','','','','','','','','A3','A13','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','A2','A6','A15','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','','','','','','','','','','','','','',''),(164,'1980-01-01 00:00:00',5,'en','2082089651','A2','A4','fem','','Y','','','','','','','Y','','','','','','Y','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Inflexibility of package management in Debian GNU/Linux.','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','','','','A1','A2','A4','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'dpkg + containers + adhoc scripts','A2','','','','Y','Y','','','','','','','','Y','','','','Y','','Y','','','','A4','A3','A15','A2','A18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','On my Debian system, more and more packages were from Nix and it stopped making sense to maintain the underlying distribution.','Y','','','','','','','Declarative and reproducible configuration.','','','Faster updates, e.g. less things to download with every (unstable) update.','Debian','Y','','','','','Y','','','','','Sway','nix-output-monitor, nix-tree, nixpk.gs, nixpkgs-review, nix-direnv','lorri',''),(165,'1980-01-01 00:00:00',5,'en','1886310929','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A2','I wanted to try a new Linux Distro and a Friend told me about NixOS so I tried it and stayed','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A3','A7','A1','','','','','','','','A9','A8','','','','','','','','','','','','','',NULL,'Kubuntu or another Linux Distro','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A5','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Too little knowledge with nix','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','','','','','','Declarative configurations','','','','Kubuntu','Y','','','','','','','','Y','','Hyprland','','',''),(166,NULL,1,'en','2080486789','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','Y','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(167,'1980-01-01 00:00:00',5,'en','1864905823','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','','Y','','','','A1','A3','A2','','','','','','','','A12','A5','A1','','','','','','','','','','','','',NULL,'','A4','','Y','','','','','','','','','','','','','','','','','','','','','A2','A10','A18','A1','A9','','','','','','','','','','','','','','','','','A10','A2','A18','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','','Y','','Y','Y','','','','','','','','debian','Y','','','','','Y','','','','','sway','nixos.wiki','Flakes',''),(168,NULL,1,'en','1612712608','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(169,NULL,1,'en','1082308821','A1','A4','male','','','','','','','Y','','','','','','','','','','Y','','','','','','','Y','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(170,'1980-01-01 00:00:00',5,'en','437476846','A5','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A7','','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A4','A2','A9','A14','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(171,'1980-01-01 00:00:00',5,'en','893455052','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I above all use Nixos than Nix itself.','','','','','','','Y','','','','Y','','','Y','','','','','','','A2','A7','A1','','','','','','','','','','','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Skills and above all, time.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','Gaming, but with difficulties 😅','A2','I heard about Nixos on a social network, then I read some articles and watch some review on YouTube.\r\nI was impressed by declarative direction, roll-back possibilities an d the huge number of packages.','','','','','Y','','My daily computer','Déclarative','One file to rule them all (easier to deploy)','Rollback feature','I would love to have a graphical installer for Nix packages.\r\nIdeally, I would love a Gnome Software extension: Gnome Software could deal with flatpak packages and Nix packages.','Archlinux or Fedora, I guess.','Y','','','','','','','Y','','','','None','None','Great environment, thank you!'),(172,'1980-01-01 00:00:00',5,'en','779021756','A2','A6','male','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Y','','','A1','Linux user since 1995. Using Gentoo since 2004. Started using guix on on laptop since 2021, but found the quirks frustrating. Switched to Nix/NixOS, and now making quick progress. ','','Y','','','','','Y','','','','','','','','','Y','Y','','','','A1','A10','A7','','','','','','','','A8','A14','','','','','','','','','','','','','',NULL,'Maybe Guix, but probably stay with Gentoo ','A2','','','','Y','Y','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Still learning! I do plan to contribute once I have the ability','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Linux user since 1995. Using Gentoo since 2004. Started using guix on on laptop since 2021, but found the quirks frustrating. Switched to NixOS, and now making quick progress. ','Y','','Y','','','Y','','Declarative build','Adaptability','','','Possibly Guix, but more likely stay with Gentoo','Y','','','','','','','','','Y','Hyprland','','',''),(173,NULL,NULL,'en','1168093184',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(174,'1980-01-01 00:00:00',5,'en','32040321','A2','A5','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It came with NixOS.','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A14','A12','','','','','','','','','','','','',NULL,'Arch Linux and Docker images for projects probably.','A4','','','','Y','','','','','','','','','','','','','','','','','','','A15','A2','A3','A13','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','It\'s an intimidating monolith, and the channels system where everything needs to be baked in the monolith rubs me wrong tech-architecture wise. I still don\'t really understand the Nix language environment either, and mostly code by copy-pasting and modifying. Flakes seems like it has a better idea for how to do decentralized packaging where I can make a Nix-friendly project but not be on the hook for maintaining the Official Nixpkgs Whatsit from then on.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was using Arch Linux and getting tired of having to set up my Linux box to be just right after every fresh OS install (I\'d always forget bits and spend the next weeks getting papercuts) and started looking into Ansible to automate the process. Dropped the project for a few months and when I went back to my Ansible reference config bookmark it had a readme saying \"project abandoned, I\'m doing this with NixOS instead\".','Y','','','','','','','Reproducible system configuration','Reproducible dev environments','Throwaway installs for rarely used programs','Change the language. Not sure into what exactly, but this can\'t be the best we can do. It\'s got a lot of good ideas not found elsewhere, but the programming ergonomics are not making me happy.','Arch Linux','Y','','','','','','','','','','i3wm','','','I still got caught answering the Nix page as if was about NixOS, didn\'t notice the parenthetical. Seriously, how many people do you get who actually use Nix as a separate thing and don\'t just think of it as \"the thing that\'s under NixOS\"? Just put NixOS page first in the survey and then ask about non-NixOS Nix next, the people who use Nix but not NixOS know they\'re the odd ones out and other people will be happy because they thought they were talking about NixOS on the first page anyway.'),(175,NULL,2,'en','1406528722','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was first interested in managing dotfiles, and came across Home-Manager. I found it *way* too complicated. But in the same time frame, I was a distro-hopper and heard about NixOS (probably on some subreddit), and made the connection between the two. So I installed NixOS to play around, and gave up. Later, I started to get interested in the reproducibility aspects for work, and tried Nix again. I\'ve been using it ever since.','Y','','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','','A2','A6','A7','','','','','','','','A6','A5','','','','','','','','','','','','','',NULL,'As a package manager, probably Homebrew on MacOS and Pacman on Linux as I was an Arch user. To manage dot files and configurations, probably Git and a lot of homemade scripts. Same goes for CIs.','A2','Y','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A15','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time mostly. I packaged one app, but I cannot consider myself as an active maintainer.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(176,NULL,1,'en','23078090','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(177,'1980-01-01 00:00:00',5,'en','1850613577','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Have to work with CentOS 7 and Nixpkgs is a god sent for getting access to up to date softwares.','','Y','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A8','A4','A14','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','A13','','','','','','','','','','','','','','','','','','','A9','A13','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I had an older laptop that I wanted to convert into a home server and a friend of mine told me about NixOS. Since then I never regretted it. \r\nLater I also switch my wsl install from Ubuntu to NixOS. ','Y','','Y','','','','','Declarative OS configuration','Modular (with flakes)','Reusable ','','I’d still use Ubuntu server','Y','','','','','','','','Y','','','home-manager ','',''),(178,NULL,NULL,'en','1162511653',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(179,'1980-01-01 00:00:00',5,'en','2080166928','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','love the idea of declarative configuration for building software','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A10','A1','','','','','','','','A8','A4','A5','','','','','','','','','','','','',NULL,'not sure tbh.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','A2','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A1','','not confident enough with the language to upstream anything at the moment','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','fell in love with the logo, then fell in love with the language','Y','','Y','','','','','flakes','mono repo system configuration','home-manager?','i would stabilize flakes and 3.0','probably arch, if i had to guess','','','','Y','','','','','','','Hyprland, river','home-manager, sops-nix. deadnix, statix, and alejandra, just to name a few.','none that i can really think of tbh.','ty for the awesome language and distro!'),(180,'1980-01-01 00:00:00',5,'en','1284575283','A2','A2','male','','','','','Y','Y','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A7','A6','A11','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A15','A2','A1','A3','A17','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Experience','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','Reproducibility','Easy configuration','Remote-target','SELinux','Fedora','Y','','','Y','','','nixos-anywhere ','Y','','','','sops-nix, imperance','','Thank you for this amazing ecosystem '),(181,'1980-01-01 00:00:00',5,'en','1623992427','A2','A5','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','After 15 year using macos, I drifted away from Apple. Before I used macos I was a Debian user, but I was now looking for an OS where I felt I was 100% in control and not depending on updates or ecosystem quirks. After some adventures with Arch and Void I landed at NixOS. I’m very happy I made the move and invested the learning. It’s difficult, I still not feeling comfortable in the NiX language, but the platform as whole is great.','','','','','Y','Learning to put Nix on containers','Y','Y','','','Y','','Learning to use Nix on my pinephone','','Y','Y','Y','Y','Y','','A1','A3','A5','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'Dont wanna think about it.','A4','','','','Y','','','','','','','','Y','','','','','','','Y','','','','A1','A9','A15','A3','A7','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','Y','Nur','-oth-','I help with satelite projects nur search and home manager option search',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','SameI told earlier','Y','','Y','Y','','','','Reproducability','Declaritive configuration','Developers shells','I would make the language more estatic appealing. I would let Nix feel like Ruby','Some edgy Linux distro','Y','','','','','','','Y','','','','Home manager','',''),(182,NULL,1,'en','115695943','A5','A4','male','','','','','','Y','Y','','','Y','Y','','','','','Y','','','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(183,'1980-01-01 00:00:00',5,'en','23574866','A5','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','','','','Y','','','','','','','Y','','Y','Y','','Y','','A3','A7','A1','','','','','','','','A3','A9','A4','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A5','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(184,NULL,2,'en','383524529','A1','A4','male','','','','','','','','','','Y','Y','','Y','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Got into dependency hell with Arch, and thought i would give NixOS a try in a VM. Discovered it was more than packaging, the first time I tried a rollback, I was sold :D','','','','','','','Y','','','','','','','Y','Y','','Y','','','','A7','A2','A1','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'Arch','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','A1','A17','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','The formality of contributing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(185,NULL,3,'en','597565353','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(186,'1980-01-01 00:00:00',5,'en','1359806788','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','An interest in reproducibility and a desire to make my system builds declarative ','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A8','A4','A6','','','','','','','','','','','','',NULL,'Ubuntu + some sort of dotfile management','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Still not fully understanding the nuances of packaging ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','As with nix','Y','','Y','','','','','Declarative system builds','Well abstracted modules','','Better docs ','','Y','','','','','','','','','','Hyprland ','Agenix','pip2nix\r\n',''),(187,'1980-01-01 00:00:00',5,'en','648526557','A2','A3','male','','','Y','','','Y','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','A colleague recommended it','','Y','','','Y','','Y','Y','','','','','','Y','','','Y','','','','A1','A8','A7','','','','','','','','A6','A1','A4','','','','','','','','','','','','',NULL,'Archlinux and guix','A1','','','','Y','','','','','','','','','','','','','','Y','','','','','A7','A9','A13','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I did a couple small patches ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','A colleague recommended it ','','','','Y','','','','Rollback','Frequent updates','','Add secret support','Archlinux or guix','Y','','','','','','','','','','Hyprland','','',''),(188,'1980-01-01 00:00:00',5,'en','1816423289','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A7','A3','','','','','','','','A1','A8','A6','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A2','A4','A11','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(189,'1980-01-01 00:00:00',5,'en','1857221861','A2','A2','male','','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I was using Fedora Silverblue before. I like reproducible operating systems, but changing the base image of Silverblue was too tiresome, so I switched to NixOS and learned Nix along the way. Now I\'m using the latter for all my projects.','','','','','Y','','Y','','','','','','','','Y','Y','Y','','','','A1','A2','A7','','','','','','','','A9','A8','','','','','','','','','','','','','',NULL,'If it\'s for packages, then I would probably stick with the traditional Linux packages. If it\'s for development environments, then it would probably be OCI containers.','A2','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','Woodpecker','A3','A15','A22','','','','','','','','','','','','','','','','','','','A22','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','','','It\'s my main OS','A1','I was using Fedora Silverblue before. I like reproducible operating systems, but changing the base image of Silverblue was too tiresome, so I switched to NixOS and learned Nix along the way. Now I\'m using the latter for all my projects.','Y','','','','','','','Reproducibility','Atomic upgrades and rollbacks','An ability to switch from one configuration to another without rebooting','It\'s fine as it is, really.','Fedora Silverblue, I\'ve been using it before. I\'m not sure about Guix, though.','Y','','','','','','','Y','','','','','Tools like `julia2nix`.',''),(190,NULL,NULL,'en','1889142002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(191,'1980-01-01 00:00:00',5,'en','1671222268','A2','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Problems with using missing runtime libraries','A good (and easy) solution to the library problem',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'I used home-manager for all my dotfile management','Devenv',''),(192,NULL,NULL,'en','720581057',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(193,'1980-01-01 00:00:00',5,'en','1491706866','A2','A3','male','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was attracted to reproducible development environments after coming from the mess Python scientific libraries. Furthermore, my homelab interest made me look for declarative options for managing and deploying my \"infrastructure\".','','Y','','Y','Y','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','A2','A1','A7','','','','','','','','A8','A4','A5','','','','','','','','','','','','',NULL,'Ansible, Docker, maybe guix','A2','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Declarative system management for a homelab.','','','Y','','','','','Declarative ','Reproducible ','Immutable ','Add better flakes integration ','Guix maybe? Debian with Ansible. Arch','Y','','','','','','','Y','','','','disko,sops-nix','deploy-rs',''),(194,'1980-01-01 00:00:00',5,'en','1818207131','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','Y','','','','','','','','Y','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'When something doesn\'t work it\'s very hard to make it work. If a package is missing it\'s not always trivial to package it yourself.','If new features that improve usability would be introduced. If there was a fallback option for things that are not already available in NixOs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Home manager','Nix and NixOs are really opinionated sometimes. Even though this makes sense it\'s very hard to use when working with projects that are not going to be packaged or use nix flakes. For example (at least from my understanding) it\'s not easy to get the default python experience with using pip or the default cargo experience in Rust. FhsUserEnv is an alternative but doesn\'t always work. To use nix I need some assurance that if things don\'t work the nix way I can fallback into something that allows to have my work done.'),(195,'1980-01-01 00:00:00',5,'en','705717524','A2','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Because of NixOS','','Y','','','','','','Y','Y','','','','','','Y','','Y','','','','A1','A3','A6','','','','','','','','A6','A4','A14','','','','','','','','','','','','',NULL,'I wouldn\'t I think','A2','','','','Y','','','','','','','','','','','','','','','','','','Gitea Actions','A1','A15','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','The imposter syndrome maybe, I\'m quite new to functional programming and OSS participation','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','For the immutability and everything coming with it. Because of the induced stability and the willingness to learn a new technology. I decided to migrate all my selfhosted services and my personal computers to nix, it allows common configuration.','Y','Y','Y','','','','Gaming PC','Configuration of the system with the NixOS modules','Sharing configuration between different systems','Immutability and reproducibility','I would improve the user documentation to be more accessible, I think it is possible to use nixos without being a developer, but the documentation is steep for non-technical peoples','GNU Guix or Fedora Silverblue','Y','','','Y','','','','Y','','','Hyprland','','',''),(196,'1980-01-01 00:00:00',5,'en','2080979656','A2','A2','fem','','Y','','','','','','','','','','','','','Y','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','As an ansible replacement essentially ','','Y','','','','','Y','Y','Y','Y','','','','','','','Y','','','','A7','A2','A1','','','','','','','','A12','A2','A1','','','','','','','','','','','','',NULL,'Archlinux and Fedora','A3','','','','Y','Y','','','','','','','','','','','','','','Y','','','Woodpecker, Forgejo/Gitea Actions','A15','A9','A2','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','As an ansible replacement ','Y','Y','Y','','','','','Atomic Rollbacks','Declarative config','Extendability','Faster evaluation time ','','','','','','Y','','','Y','','','','Attic (NixOS cache)','deploy-rs, NixOps, Morph',''),(197,'1980-01-01 00:00:00',5,'en','1166530430','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I heard about Nixos from it from a podcast(Linux unplugged, Jupiter broadcasting) and tried it out.\r\nI like the stability while still being very customisable and use it on my private machines\r\nI also love having own development environments for every project.\r\nI do this for my hobby project with nix flakes and nix-direnv','','Y','','','','','Y','Y','','','','','','Y','Y','','','','','','A1','A3','A10','','','','','','','','A6','A5','A4','','','','','','','','','','','','',NULL,'Dnf, npm various dev tools','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','A10','','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time, complexity off the project','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Recommended by a podcast (Linux unplugged, Jupiter broadcasting)','Y','','Y','','','','','Reproducible system','Great support for declarative dev environments','Uptodate packages','I would add low efford builtin secret management tools with integrations for managing secrets in password managers.\r\nI also would add having alternate input sources for nix flakes (having oci containers repos or or the vscode extension repo as input, or automated tools that regularly generate flakes from sources like that, to have automated updates)','Fedora, Arch','Y','','','','','','','Y','','','','Nix-direnv, home-manager, ','Lorri',''),(198,'1980-01-01 00:00:00',5,'en','993067002','A2','A4','male','','','','','','Y','Y','Y','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A1','A2','A7','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'Not sure ','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A15','A14','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','','','Y','Y','','','','Declarative configuration ','Atomic rollbacks','','Upstream home-manager, or generally, add per-user configuration support (including systemd services etc, not just packages)','Arch Linux','Y','','','','','','','','','','Sway ','Poetry2nix \r\nHome-manager\r\nFenix\r\nCachix \r\nNix-direnv','Nixops \r\n',''),(199,'1980-01-01 00:00:00',5,'en','1704611342','A2','A3','male','','','','Y','Y','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I originally found Guix through Nix and used that. Eventually migrated to Nix because I wanted to use it for more personal devices, and the experience was ready on Nix, not on Guix.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A2','A1','A5','','','','','','','','A8','A12','A1','','','','','','','','','','','','',NULL,'Flatpak, OCI containers, probably end up writing something myself too.','A4','','Y','','Y','Y','','','','','','','','','','','','Y','','','','','','A21','A5','A2','A1','A22','A15','A3','','','','','','','','','','','','','','','A21','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I started using NixOS shortly after making the move to Nix. Within days of using Nix, I decided to switch.','','','Y','','','','personal devices','declarative configuration','reproducibility','broad package/service availability','','Arch Linux, Pop!_OS, or Ubuntu','Y','','','','Y','','','','Y','','','','',''),(200,'1980-01-01 00:00:00',5,'en','2037655810','A8','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted to manage my dot files more declaratively ','Y','Y','','Y','','','Y','Y','','','','','','Y','Y','Y','Y','Y','Y','','A1','A2','A8','','','','','','','','A3','A8','A13','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A9','A15','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','To manage my dot files more declaratively ','Y','Y','Y','','Y','','','Reproducible builds ','Dev environments','Binary cache','Better typescript monorepo support','Docker, terraform, ansible','Y','','','','','','sops-nix','','','','Leftwm, sway','flake-utils','dream2nix','Keep up the good work'),(201,'1980-01-01 00:00:00',5,'en','207299078','A2','A2','male','','','','','','','','','Y','','','Y','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Having every things centralized is a huge things for me','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A10','A7','A1','','','','','','','','A8','A5','A4','','','','','','','','','','','','',NULL,'Arch','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A2','A5','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of knowledge','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Having every things (config) in one place is à use things','Y','','Y','','','','','Centralization of the config','Reproducibility ','Configurability','Add a stantarized way to config system.','Arch','Y','','','','','','','','','','Hyprland ','','',''),(202,'1980-01-01 00:00:00',5,'en','760741609','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','A GUI way to manage config, flakes files etc. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(203,'1980-01-01 00:00:00',5,'en','2017955213','A2','A2','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','A colleague recommended it. Mostly nix shells and Home-Manager got me hooked.','Y','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A3','A14','A6','','','','','','','','','','','','',NULL,'Some dotfile manager and direnv hacks somehow.','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A15','A1','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I put most of my tools into flakes so I don\'t really see the need to put them into nixpkgs.','N','N','I\'m not really a Linux guy so not sure.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-darwin \r\ngomod2nix','',''),(204,NULL,NULL,'en','253191837',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(205,'1980-01-01 00:00:00',5,'en','1354091121','A2','A3','male','','','','','','','','Y','Y','Y','Y','','','Y','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','nix flakes are currently the best available option to pin the required dependencies for an project across various Linux distributions...','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A9','A7','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'Depending on the Task:\r\n- Python: Miniconda / Micromamba\r\n- Dependencies for Projects: Container (Docker) eventually with some lock files for specific dependencies\r\n- System Setup: Ansible, Bash scripts, git bare repositories with config files, ...\r\n- Package Installation: pacman, apt, ...\r\n- There are probably more for me, but these do not come to mind spontaneously','A1','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','A15','A4','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','To many open pull requests.','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A2','Reproducible Setup of Home Server','','','Y','Y','','','','Reproducible Setup','Binary caching','Atomic upgrades','Add cuda packages to binary cache','Arch Linux + bash scripts + git + ansible + ...','Y','','','Y','','','','','','','Hyprland','nixos-search','None','Thank You for the great nix ecosystem.'),(206,NULL,NULL,'en','1753091021',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(207,NULL,NULL,'en','414949883',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(208,'1980-01-01 00:00:00',5,'en','671389008','A3','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A14','A5','A15','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A11','A20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','','','','','','','','','','','','','','Y','','','','','','','','','','i3, xmonad','','',''),(209,'1980-01-01 00:00:00',5,'en','33738024','A2','A3','-oth-','','','','','','Y','Y','','','','','','','','Y','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','out of curiosity for a stateless system','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A7','A1','A2','','','','','','','','A14','A6','A7','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','ADHD, burnouts','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','it was the most logical way to try nix','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','','','the \"gender identity\" option in the first page is weird. \"male\" and \"female\" aren’t gender identities at all. \"man\", \"woman\", \"other\", \"i prefer not to tell\" are'),(210,'1980-01-01 00:00:00',5,'en','996828251','A2','A3','-oth-','Agender','Y','','','Y','','','','','','','','','','','','','Y','','','Y','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using NixOS because I wanted a declarative Linux distro, and Nix was just part of that.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A7','A10','A1','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'If nothing Nix-like was available, I would just fall back to direnv on Manjaro.','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A15','A10','A1','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','Local \"pkgs\" folder that just contains the updated or new packages','A2','','I haven\'t found anything that I need to package myself yet, but I did contribute by updating some print drivers.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I tried NixOS a few times over the years and never really got anywhere. It felt like it needed too much configuration, and it was all in a very different way, so I kept hopping elsewhere instead. Then I tried it when I had some free time and I really liked it and ended up switching all of my machines over to it.\r\n\r\nNixOS also offered some particularly desirable features for my home server: centralised system configuration, trivial containerisation of services, and lots of services available directly via options.','Y','','Y','','','','','Centralised system configuration','Wide range of packages available ','The ability to do updates in the background without it affecting the currently running system','Documentation to help newbies get going and know how to configure a system. I honestly felt lost!','I\'d probably still be on Majaro','Y','','','','','','','','','','i3wm','','',''),(211,NULL,NULL,'en','1905165539',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(212,'1980-01-01 00:00:00',5,'en','1208327930','A2','A3','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because arch broke my tex installation a day before a deadline.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A4','A1','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Because arch broke my tex setup right before a deadline.','Y','Y','','Y','','','','Declaritiveness','Atomicity','Reproducability ','Impurity. Flakes and tools like krops are the way to go!','Probably something really stable like CentOS/etc. Maybe Debian, but not sure.','','','','','','','krops','','Y','','','krops','','Less people with merge access please, improvement of workflows. But monorepo is the way to go IMO!'),(213,'1980-01-01 00:00:00',5,'en','131291942','A5','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','At previous company I promoted to package our python app (+ dependencies) using virtualenv + pip instead of building RPMs. This would allow our app to not be tied to specific version of the system (for example we had to generate brand new RPMs and test them when we were migrating to the next major version of CentOS).\r\n\r\nWhen presenting the solution, one argument was that the old approach also allowed to reference non python dependencies, which was a valid point. This led me to look for solutions to that which is how I found Nix.\r\n\r\nI never implemented it there (our solution was to use CMS to install these), as well... Nix has a very steep learning curve so it took me couple years before I mastered it enough to suggest it somewhere. Since then I started to use it for creating reproducible environment and also for building projects that I owned. I still feel though like despite that it is hard for others to start using it.','Y','','','','Y','','Y','','Y','','','','','','Y','Y','Y','Y','','','A2','A8','A6','','','','','','','','A2','A11','A5','','','','','','','','','','','','',NULL,'Probably docker, and in places I still do and I hate it.','A1','','','','Y','Y','','','','','','','','Y','','','','Y','','','','','','A2','A1','A9','A15','','','','','','','','','','','','','','','','','','A1','A9','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I did few contributions whenever I found an issue, but day to day I use nix to build things. Though whenever I made PR it always feels like difficult to get that PR merged ... I wish that could be improved somehow.\r\n\r\nThere\'s also cycle that I noticed, but unfortunately I don\'t see a good way to solve it.\r\n\r\nFrom perspective of person like me, who unfortunately the only experience with Nix is trying to sneak it in my $dayjob I have limited resources.\r\n\r\n- whenever I find an issue that I can solve, I can make a PR\r\n- that PR often might wait forever, unless I find somebody to help me\r\n- nixpkgs has this issue because there\'s still not enough contributors for the amount of packages\r\n- I can\'t merge, because I\'m not trustworthy\r\n- I could build reputation by reviewing other PRs\r\n- unfortunately I would get into trouble if I spent my work time reviewing nixpkgs packages\r\n- majority of issues that I find are relatively quickly fixed, I actually feel like there\'s less of them recently, not sure if there was some kind of change or I just got more familiar with Nix and more likely use the beaten path?','N','N','It\'s simply my workplace. My desktop is Mac so can\'t run there (the closest thing is nix-darwin). I still managed to get Nix for building, but using custom OS is not an option.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- direnv\r\n- nix-direnv\r\n- poetry2nix\r\n','NixOps - it looks like it is great for POC and maybe hobbyist use, but not practical in company. It would be great if it perhaps could spill up CloudFormation or even Terraform and allow for more complex setups (like with AutoScaling Group), but it doesn\'t look like it was meant to be used that way.\r\nlorri - not updated as much, no flake support',''),(214,'1980-01-01 00:00:00',5,'en','290172323','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','I heard about it at a conference (euro python). Looked into it briefly last year. Then decided to take alook at it again, after a few bad updates on Arch linux. The nixpkgs repo was comparable to the AUR. So I jumped straight in. I love the idea of declaratively configuring my system from a single repo, which is what I\'v wanetd to setup for a while now.','Y','Y','','','','','Y','','','','','','','','','','Y','','','','A2','A7','A1','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'N/A','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Looked into nix, jumped straight into nixos to learn nix.','Y','','','','','','','declarative configuration','atomic rollback','','','','Y','','','','','','','','','','Hyprland','','',''),(215,'1980-01-01 00:00:00',5,'en','1357294568','A8','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I wanted to expand my dotfiles to fully declarative, reproduceable systems','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A14','A4','A8','','','','','','','','','','','','',NULL,'Docker images','A4','','','','Y','Y','','','','','','','','','','','','','','','','','Bitbucket pipelines, Teamcity','A1','A10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I do not feel experienced enough to contribute, but intend to soon.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was using nix and home-manager on a few systems, then decided the benefits would be worth replacing all of my Linux environments with NixOS.','Y','','Y','','','','Personal computer','Composeable systems using flakes','Ease of configuration using Nixos options','Multi-platform support','Easier ways of using package versions','Arch, flatcar, TrueNAS','Y','','','','','','','','Y','','','','Digga','Keep it up, this project is life changing. I look forward to contributing more.'),(216,'1980-01-01 00:00:00',5,'en','967176753','A2','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A9','','','','','','','','A4','A5','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Fun','Y','','Y','','','','','','','','','','','','','','','','','','','','','','',''),(217,NULL,1,'en','176566566','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(218,'1980-01-01 00:00:00',5,'en','1991863152','A1','A3','male','','','','','','Y','','','Y','','','','','','','','Y','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','Y','','','','','Y','Y','','','','Y','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'EndeavourOS + BTRFS snapshot + Docker Container','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A9','A3','A4','A15','','','','','','','','','','','','','','','','','A2','A9','A3','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Poor Documentation','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','I was too tired to deal with the problems caused by the lack of reproducibility on other Linux distros.\r\nFor the details, check out https://thiscute.world/en/posts/nixos-and-flake-basics/','Y','','Y','','','Y','','flakes','nix-command','cross-platform support','make the documentation better, and make the flakes & nix-command stable.','docker container + btrfs snapshot','Y','','','','','','','','','','i3 & hyprland',' linux kernel, nixos-generator, impermanence, lanzaboote','build custom linux kernel, corss-platform build',''),(219,'1980-01-01 00:00:00',5,'en','1551490405','A2','A2','-oth-','None','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I started using Nix because of the ability to manage my Computers in a declarative manner.','','Y','','','','','Y','Y','','','Y','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'Pain and suffering','A3','','','','Y','Y','','Y','','','','','','','','','','','','','','','Forgejo Actions','A15','A3','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I have for now not had any need to contribute.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Managing Computers in a declarative manner.','Y','','Y','','Y','','','Declarative environments','Smooth upgrades','','First-party support for managing secrets.','Pain and suffering','Y','','','','','','','','Y','','sway','- home-manager\r\n- nixos-hardware\r\n- NUR\r\n- fenix\r\n- crane','None so far.','Thank you for making Nix/OS so awesome.'),(220,'1980-01-01 00:00:00',5,'en','1668813346','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','Musician','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','It had been under my radar for almost a decade and I finally got a use case (and the sufficient tech and Linux experience to not die while trying it).','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A1','A2','A9','','','','','','','','A14','A8','A3','','','','','','','','','','','','',NULL,'Arch and Docker ( if Nix didn\'t exist, probably Guix wouldn\'t either)','A1','','','','Y','Y','','','','','','','Y','','','Y','Y','','','','','','','A2','A15','A1','A13','A3','A4','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Same as Nix. I wanted to learn it full stack. Managing dependencies at OS level helps me develop reliable workshops and art installtions.','Y','','','','','','','Rollbacks','Declarative configuration','','','Arch + Docker/Podman','Y','','','','','Y','','Y','','','Hyprland','Devenv, Cachix, Dream2Nix, microvm, jupyenv, home-manager','flox, doomemacs-nix',''),(221,'1980-01-01 00:00:00',5,'en','1085072004','A2','A3','male','','','Y','','','Y','Y','','','Y','Y','','','Y','','','Y','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','More sane way of building software with complex dependency graphs than bespoke shell scripts','','','','Y','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A2','A10','A3','','','','','','','','A8','A4','','','','','','','','','','','','','',NULL,'Shell scripts and Dockerfiles','A4','','','','Y','Y','','','','','','','','','','','','','','','','','Azure devops CI','A6','A3','A2','A15','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','Y','','','','Declarative configuration of the entire system','No configuration drift between the .nix files and what\'s currently running in production','Extensibility of the module system with e.g. new services','Remove all the duplicate packages - e.g. on one of my servers /run/current-system refers to two instances of openssl, util-linux, boehm-gc. On my desktop it\'s worse.','Ansible eternal pain hellscape','Y','','','','Y','','','','Y','','','search.nixos.org (especially the options search), the and the nixos/nixpkgs manual','nix-env',''),(222,'1980-01-01 00:00:00',5,'en','804074971','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I was done with debian and arch, and quirks with linear package management. I heard, that in nix dependencies are very well-managed, and that it\'s an OS for \"power users\". I also heard of declarative package management. So one day I just went with dual booting, and in a few days I made a new clean install','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A8','A5','A1','','','','','','','','','','','','',NULL,'Fedora Silverblue or Gentoo','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A15','A12','A6','','','','','','','','','','','','','','','','','','A13','A2','','','','','','','','','','','','','','','','','','','','','Y','','My own derivations','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I started using Nix as part of NixOS, so the story is the same as with nix. Dependency management and declarative configuration is how NixOS was sold to me','Y','','','','','','','Declarative configuration','Sandboxing and isolation of environments','Dev tooling: nix shell and develop','CA derivations\' hashes could be stored in nixpkgs and cache could be distributed over people/users of NixOS to basically reduce the costs of maintenance to almost 0 and make the OS more secure (as it\'d be impossible to inject malicious binaries in cache.nixos.org).\r\n\r\nI would also remove old commands like nix-shell, as well as channels, and move everything to flakes.','Fedora Silverblue or Gentoo','Y','','','','','','','','','','i3','','',''),(223,'1980-01-01 00:00:00',5,'en','1908237870','A5','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','At my previous job we shipped a Linux distro (arm + x86) using portage. I was spoiled by having a source based dev environment where cross compilation actually worked well.\r\n\r\nI wanted to replicate that at my new job, but without wrangling chroots.','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A5','A10','A1','','','','','','','','A5','A13','A8','','','','','','','','','','','','',NULL,'Portage or buildroot','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A15','A3','A4','A2','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','Once I got comfortable enough with Nix the language and dealing with nixpkgs, getting systems onto NixOS was inevitable.','Y','','Y','Y','','','','declarative configuration ','atomic rollbacks','','make it dead easy to manage a system with a flake-first workflow. either i should be able to add a new system to an existing git repo, or the installer should at least be able to make a git repo with a flake.','gentoo or arch','Y','','','','','','','','','','','alejandra\r\nmicrovm.nix\r\nattic binary cache','',''),(224,'1980-01-01 00:00:00',5,'en','1185585426','A2','A3','male','','Y','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Read an article somewhere on reproducible builds and theory behind Nix. Tried NixOS — turned out to be the most stable Linux distribution I used. Then I implemented test pipelines at work using Nix packages.','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','','Y','','','','A2','A1','A7','','','','','','','','A3','A9','A2','','','','','','','','','','','','',NULL,'For work (CI, deployment) — probably Docker / Podman. For macOS package management — homebrew? For Linux package management I really don\'t know: probably language-specific (poetry, npm) and a lot of pain.','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','A1','A3','A4','A15','A17','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I do from time to time, but unfortunately don\'t have enough time. But I would be happy buying more NixOS merch, if it were available in my country.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','The same story as Nix package manager.','Y','Y','Y','','','','','Atomic builds','Single source of truth for configuration','Pre-packages services','I would make it mostly-statically-linked. Of course, GPU drivers, nsresolv from glibc, etc. still would need to use dynamic link, but most libraries can be linked statically. Considering Nix build process, there isn\'t much difference in practice from current practice.','If it didn\'t exist, I would probably stopped at Gentoo / Arch. If it stopped existing now, it would be Ubuntu or Debian.','Y','','','','','','','Y','Y','','sway','home-manager\r\npoetry2nix\r\nnpmlock2nix','','Language support and interaction with language-native package managers was a major pain point for Nix. But with poetry2nix and npmlock2nix it became good enough to use it unobtrusively in those work projects which can\'t be completely moved to Nix. I also use poetry2nix in new projects.\r\n\r\nRecent \"nix run\" breakage was unfortunate: I got used to `nix run nixpkgs....` instead of `nix-shell -p`.\r\n\r\n'),(225,NULL,1,'en','172989659','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(232,'1980-01-01 00:00:00',5,'en','31359657','A1','A4','male','','','','','','','','','','Y','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','For open source','A3','A friend/colleague told me about it. I was already a long time Linux user. It took a while but I eventually made the leap. The other distro installs on my various personal computers were eventually deleted.','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A9','A6','','','','','','','','A5','A13','','','','','','','','','','','','','',NULL,'Is there an alternative?','A2','','','','','','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','-oth-','I organize Summer of Nix 2023',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','','','','A3','A friend/colleague told me about it.','Y','','Y','','','','','I get to keep my software and configs','I get to have the same software and configs across computers','Friggin\' rollbacks','ZFS as default filesystem. Are there licensing issues?','Thank god for NixOS. I wouldn\'t like to think about that.','Y','','','','','','','','','','Sway','home-manager','','Thank you for your work. Feel free to contact me @mightyiam:matrix.org'),(227,NULL,1,'en','237980663','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','Y','','N','N','','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(228,'1980-01-01 00:00:00',5,'en','585657872','A5','A4','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A7','A5','A1','','','','','','','','A12','A8','A3','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A10','A3','A15','','','','','','','','','','','','','','','','','','','A10','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','','','','','','','','','Y','','','','','','','','Y','','','','',''),(229,NULL,2,'en','1501403431','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I started using nix because almost all linux distros I\'ve tried have been more or less the same and have suffered from the same problems. I always end up making a list of all the packages I have installed as a way of backing up the system, and I end up relying on things like docker instead of the actual operating system so I can keep track of all the changes I make to everything. Though I think containers are cool, they\'re certainly not for everything, and I like that NixOS achieves a lot of the benefits of containers (in terms of reproducibility) without forcing me to make workarounds to punch holes in security when things don\'t work the way I want (flatpak). Right now, my impressions of nix right now are that it\'s a super cool technology, but it\'s hard to understand. I have ideas for what to do with it that I\'m excited about, but I don\'t always know how to do them, and I\'m often left scrounging for bits of working code that I only partially understand to copy-paste. There have been times when I\'ve thought about giving up Nix because it\'s been so frustrating and I want to go back to where I can just make whatever changes I want to my system without having to worry about reproducibility. I think what would help solve problems like this the most are the development of tools like language servers that offer code completions and tell me when I mess up (and sometimes how to fix it). Anyway, I\'m rambling at this point. There you go, the story of my Nix(OS) journey until this point.','','Y','','','','','Y','Y','','','','','','','Y','','','','','','A1','A10','A2','','','','','','','','A6','A5','A8','','','','','','','','','','','','',NULL,'The AUR and a text file. It\'s not automated like Nix, but the AUR is huge (although it\'s not as big as nixpkgs, I find I\'m almost always more likely to find what I\'m looking for there). The text file would be to keep track of changes I make to my system, but I probably wouldn\'t be the best at updating it.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A15','','','','','','','','','','','','','','','','','','','','A15','A4','','','','','','','','','','','','','','','','','','','','','Y','Y','PR\'s, then waiting for them to get merged','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(230,'1980-01-01 00:00:00',5,'en','143045651','A5','A2','-oth-','Non-binary/questioning','Y','','','','','Y','Y','Y','','','','','','','','','Y','','','','','Y','','','Y','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Declarative operating system configurations, to track changes made to my computers and easy re-installation.\r\n\r\nEasier compartmentalization of school projects which use a variety of languages, toolchains, and versions.','Y','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A5','A13','A4','','','','','','','','','','','','',NULL,'If this includes Guix, then Fedora Silverblue, or Opensuse MicroOS, for isolated immutable installations.','A4','','','','','','','','','','','','','','','','','','','','','','','A3','A4','A11','A2','A15','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Immutable operating system installations with git-trackable configurations.','Y','','','','','','','Atomic transactions and rollbacks','Isolated development environments','Modules making it easy to set up services','Unify NixOS and home-manager. ','Fedora Silverblue or OpenSuSE MicroOS.','Y','','','','','','','','Y','','','Home-manager','',''),(231,'1980-01-01 00:00:00',5,'en','510926204','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducible dev shells at work.','Y','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A6','A1','','','','','','','','A8','A12','A5','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','Sourcehut','A1','A13','A15','','','','','','','','','','','','','','','','','','','A1','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','No more managing dotfiles with symlinks, and more stuff captured in version control.','Y','','Y','','','','','Reproducibility','','','More Nix than NixOS, but smaller downloads when small changes cascade through derivations.','Arch','','','','','','','All buggy for me','','','','Sway','flake-utils, agenix ','','Stabilise flakes, improve documentation, and improve macOS stability/ease of use to take over the dev world with dev shells.\r\n\r\nI’d love if a significant CI platform like GitHub Actions then added native support for dev shells, like they have for Docker…'),(233,'1980-01-01 00:00:00',5,'en','1354833757','A2','A5','male','','Y','','','','Y','','','','','','','','','Y','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','For reproducibility and capacity to compose complex software stack for distributed platforms','','Y','','','','','Y','','','','','','testbed platform (Grid5000, HPC clusters)','Y','Y','Y','Y','','','','A10','A2','A1','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','Y','','','','','Y','','Y','','','','A2','A18','A15','A3','A4','A7','A21','A10','A9','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','Y','','NUR','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','Reproducibility and capacity to compose large and complete software stack for distributed platform','Y','','','','','','testbed plateform (Grid5000) and HPC clusters','Reproducibility','Composability','','','','Y','','','','','','Nixos-compose (https://github.com/oar-team/nixos-compose)','Y','','','','','',''),(234,'1980-01-01 00:00:00',5,'en','1968921949','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','It started with Matija Suklje who introduced it to Cyberpipe hackerspace and Domen Kozar who then further introduced into hackerspace along with Rok Garbas, he did guide me on how to package my first package into nixpkgs.','Y','Y','','Y','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','Y','','A10','A2','A9','','','','','','','','A6','A8','A2','','','','','','','','','','','','',NULL,'Flatpak, sandboxing and cry','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A15','A17','A1','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I locked myself out of FreeBSD, at the same time Rok Garbas mistakenly overwritten his boot partition with NixOS, so I followed.','Y','Y','Y','Y','','','','Declarative configuration','Rollbacks','Stability','- Interchangeable service manager (Swapping between Systemd, initrd, ...).\r\n- Service abstraction layer (so that systemd services would not depend directly on the systemd)','Fedora and cry','Y','','','','','','','','','','sway','I use basic stuff and develop my own solutions (upaas, nixmy, ...)','Nixops, Hydra',''),(235,'1980-01-01 00:00:00',5,'en','707113047','A2','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','For an OSS project, I wanted a way to document the public server configuration.','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A3','A6','','','','','','','','A8','A5','A3','','','','','','','','','','','','',NULL,'Debian, and Homebrew on macOS','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A15','A9','A10','A8','A22','A2','','','','','','','','','','','','','','','A1','A9','A10','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','For an OSS project, I wanted a way to document the public server configuration.','','','Y','Y','','','','Declarative configuration','Atomic deploy','Build-time configuration checks','A more accessibility / intuitive language, or just an easier onboarding in general for new users.','Debian','Y','','','','','Y','','','','','','nix-darwin, home-manager, direnv','Nixops',''),(237,'1980-01-01 00:00:00',5,'en','2074583224','A2','A3','-oth-','NB','','','','','Y','','','Y','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','','Y','','A2','A3','A7','','','','','','','','A4','A14','A8','','','','','','','','','','','','',NULL,'Arch Linux/Pacman','A4','','','','Y','Y','','','','','','','','','','','Y','Y','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','Declarative System Config','','','I‘d add types for better checking and error messages','','','','','Y','','','','','','','Herbstluftwm ','crane','',''),(236,NULL,2,'en','1090744772','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(238,'1980-01-01 00:00:00',5,'en','834047282','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A4','','','Y','','','Y','','Y','Y','','','','Y','','Y','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A8','A6','A1','','','','','','','','','','','','',NULL,'I\'d likely be on Silverblue and Toolbx ','A1','','','','Y','Y','','','','','','','Y','','','Y','','Y','','Y','','','','A3','A2','A13','A14','A15','A1','A6','A5','','','','','','','','','','','','','','A5','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Came to replace Arch Linux on my home lab back in 2019','','Y','Y','','','Y','','Integration with other Nix features (custom packages, flakes, profiles, etc.)','Modularity of config system (writing my own NixOS builders for instance)','Robust upgrade mechanism.','I\'d add easier Nix store overlaying, set root or etc as tmpfs by default so NixOS can coexist with another installed distribution non-destructively','Likely Silverblue or a custom OSTree-based system','Y','','','','','Y','','Y','Y','','Pantheon','sops-nix, cachix','','check out github:nixie-dev/nixie and tell me what you think :)'),(239,'1980-01-01 00:00:00',5,'en','1313800270','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A9','A5','A4','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','Y','','','','','reproducible configuration of services','no need to care about unused packages, gc will clean it up','configuration is in one place only','','Arch Linux','Y','','','','','','','','','','herbstluftwm','home-manager','',''),(240,NULL,2,'en','1626401170','A2','A3','male','','','','','','','Y','','Y','','Y','Y','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','A3','A2','A7','','','','','','','','A4','A8','A9','','','','','','','','','','','','',NULL,'Guix','A2','','','','Y','Y','','','','','','','Y','','','Y','','','','','','','','A15','A22','A4','A3','','','','','','','','','','','','','','','','','','A22','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(241,'1980-01-01 00:00:00',5,'en','74237480','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A8','A5','A13','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','','Y','','','','','','','','','','Y','','','Y','','','','','','','i3, sway','','',''),(242,'1980-01-01 00:00:00',5,'en','78229712','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','RaspberryPI in my 3d printer','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A5','A2','A8','','','','','','','','','','','','',NULL,'Arch Linux with AUR','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A9','A1','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted a more stable system eith stateless configuration and version control','Y','','Y','','','','','Declarative configuration','Generations','Mixing stable and unstable channels','','Arch Linux','','','','Y','','','','Y','','','','home-manager, agenix','',''),(243,'1980-01-01 00:00:00',5,'en','1820379933','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','Y','','Y','Y','','','','Y','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A4','A8','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A15','A9','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','Y','','','','','','','Y','','','','','Y','','Y','','','','sops-nix','',''),(244,NULL,2,'en','1945419429','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Friends migrated their systems from arch to nixos, i followed','','','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A7','A1','A2','','','','','','','','A8','A7','A9','','','','','','','','','','','','',NULL,'Arch','A4','','','','Y','','','','','','','','','Y','','','','','Y','','','','buildbot','A2','A1','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(245,'1980-01-01 00:00:00',5,'en','833867043','A2','A4','male','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','Y','','','','Y','','Y','','','','','','','','Y','','Y','','','','A6','A2','A9','','','','','','','','A8','A3','A4','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A9','A1','A15','A4','A2','','','','','','','','','','','','','','','','','A9','A15','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-darwin \r\nHome Manager\r\nflake-parts','',''),(246,'1980-01-01 00:00:00',5,'en','519107142','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','I\'ve heard about the Nix ecosystem a while back, was always interested diving into the system it provided, but never got to it. A few weeks ago I was looking up Nix related things, blogs and stuff and my interest peaked. One day I decided to bite the bullet and replaced my Arch with a NixOS from 0','','','','','','','Y','','','','','','','Y','Y','','Y','','','','A7','A10','A1','','','','','','','','A8','A6','A3','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Inexperience. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I\'ve heard about the Nix ecosystem a while back, was always interested diving into the system it provided, but never got to it. A few weeks ago I was looking up Nix related things, blogs and stuff and my interest peaked. One day I decided to bite the bullet and replaced my Arch with a NixOS from 0','Y','','','','','','Gaming PC','Declarative configuration','Build rollbacking','Flakes','','Probably would have stayed on Arch','Y','','','','','','','','','','hyprland','home-manager\r\ndirenv','',''),(247,'1980-01-01 00:00:00',5,'en','1063488278','A2','A2','male','','','','','','','','','','','Y','Y','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I had already used nix before with nix darwin on my macbook, I liked the idea of having a reproducible config and also being able to have development environments and not needing to install things “globally”. Few of my friends were already using nixos and I was going to try a different distro anyway.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A5','A1','A2','A4','A3','A17','','','','','','','','','','','','','','','A13','A7','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I lack the time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I had already used nix before with nix darwin on my macbook, I liked the idea of having a reproducible config and also being able to have development environments and not needing to install things “globally”. Few of my friends were already using nixos and I was going to try a different distro anyway.','Y','','','','','','','','','','','Arch Linux most likely','','','','','','','','Y','','','Sway','','',''),(248,'1980-01-01 00:00:00',5,'en','87996311','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A7','A3','A2','','','','','','','','A4','A6','A5','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','Y','Y','','Y','','','','Y','','','','A2','A10','A5','A15','','','','','','','','','','','','','','','','','','A5','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','Y','Y','Y','','','','Reproducible systems','Atomic upgrades and rollbacks','Software availability ','A native secret integration ','Probably arch','Y','','','','','','','','','','Sway','Comma, lanzaboote','NixOS mobile ',''),(249,'1980-01-01 00:00:00',5,'en','936846663','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Zimbatm and Flokli were contracted for DevOps on a project I was working on and introduced Nix.','Y','','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A1','A2','A6','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'Ubuntu/apt','A2','','','','Y','','','','','','','','','','','','Y','','','Y','','','','A9','A15','A5','','','','','','','','','','','','','','','','','','','A5','A19','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It seems the logical next step after seeing what Nix could do.','Y','Y','Y','Y','','','','','','','','Ubuntu','Y','','','','Y','Y','','Y','','','','A fair number of projects from nix-community, most of the tools that Mic92 maintains like sops-nix','',''),(250,'1980-01-01 00:00:00',5,'en','813216140','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A friend showed it too me. Before I was using Ubuntu and Ansible for my personal systems. After his demonstration I switched all my systems to NixOS within a year.','','','','Y','','','Y','Y','','','','Y','','','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A8','A14','A6','','','','','','','','','','','','',NULL,'Containers, Ubuntu and Ansible.','A4','','','','Y','','','','','','','','','','','','','','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A2','','I still have a hard time understanding how everything works in Nix.\r\nBesides elisp I haven’t really used a functional language before and even that only to do basic configuration.\r\nHowever I’m getting better at it.\r\nRecently I looked at fixing the Hydra for an Emacs package and I wasn’t able to understand how the packages get built and what the proper way would be to update that single package because there was some sort of tooling to update all the packages at once. There wasn’t a README or similar which would have explained how things so I had to stop.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as with Nix, recommended by a friend.','Y','','Y','','','Y','','Declarative configuration including removal of changes','Remote build and push for aarch64-linux','Binary cache','Flakes ;)\r\n\r\nIt would be nice to have something easy like `steam-run` to run non-Nix binaries but that feels a bit more official/professional.\r\nMaybe even combine it with `appimage-run` so that you can just point it to the binary like `foreign-run ./something`.\r\nWith a module you could maybe configure which ecosystem it supports.\r\n\r\n```\r\nforeign-run = {\r\n enable = true:\r\n appimageSupport = true;\r\n genericSupport = true;\r\n};\r\n```','Containers, Ubuntu and Ansible.','Y','','','','','','','','','','qtile','home-manager','','Thank you!'),(251,'1980-01-01 00:00:00',5,'en','122583963','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Because of NixOS.','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A1','A7','A10','','','','','','','','A8','A4','A6','','','','','','','','','','','','',NULL,'Docker most likely. It sandboxes really well and is easy to deploy.','A2','','','','Y','','','','','','','','','','','','','Y','','','','','','A2','A15','A3','A4','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I\'m currently still learning and setting up my nixos environment. I did already package two applications for personal use, but I don\'t think they are up to par with other packages in nixpkgs.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I started because I got frustrated setting up my arch install after a complete wipe. I failed to write down a couple of workarounds/hacks and wanted something self documenting.','Y','','Y','','','','Personal PC','Complete self documenting set up','Customizability - Setting up the Config the way that makes sense to me','Being able to sync changes to multiple machines','Some kind of impurity into flakes. I doesn\'t have to allow everything, but I would like to be able to define a few variables which are being pulled from \"the outside\", such as platform, secrets','Arch, because of their user repository','Y','','','','','','','','','','Hyprland, LeftWM','','','Would love to know the results of this survey, so make sure to publish it somewhere I can find it (I came from reddit, but I check nixos.org -blog regularly as well)'),(252,NULL,1,'en','811931740','A2','A4','fem','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(253,'1980-01-01 00:00:00',5,'en','919505744','A8','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','Consistent development environments between devs. Was sick of using the language package manager for dev packages then shell scripts and hope for system packages and the language itself. Python in particular.','Y','Y','','','','','Y','','','','','','','Y','Y','Y','','','','','A2','A3','A8','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'Shell scripts and docker','A6','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A13','A11','A12','','','','','','','','','','','','','','','','','A11','A12','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','Y',NULL,'There was just too much friction for getting things done. So many packages/tools expect Linux to behave a particular way and nixos is different. I’m not passionate enough about reproducible systems to push through it. Back to Arch + nix package manager.','If I needed reproducible systems for hobby or work and docker wasn’t the right fit I would return to NixOS. But a reproducible personal developer machine isn’t worth the friction.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','The onboarding to nix was needless difficult. There is too much focus on the language. The language is easy to learn. It’s the inconsistent documentation around the different command line tools and features like flakes that send you around in circles. It took me so long to learn how to generate my first flake and once I did it was simple.'),(254,'1980-01-01 00:00:00',5,'en','134338302','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','Y','','Y','','Y','','','','Y','Y','','','','A2','A1','A4','','','','','','','','A2','A11','A8','','','','','','','','','','','','',NULL,'Gentoo or Arch.','A2','','Y','','Y','Y','','','','','','','','','','','','','','','','','Garnix','A9','A2','A15','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','Y','','Y','','','','','','','Y','','','Y','','','','','Y','','Hyprland','','',''),(255,'1980-01-01 00:00:00',5,'en','1385415105','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Was using Homebrew on Ubuntu for a long time to get the latest (or unavailable) cli tools that I wanted to use but Homebrew has its own quirks and I\'ve finally started to look into Nix and then made the switch as it seems to be better suited for my needs.','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A1','A7','A2','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'Homebrew on Ubuntu','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','So I can declaratively describe my system and not have any configuration drift. Also atomicity and rollbacks.','Y','','Y','','','','','Atomic upgrades','Rollbacks','Declarative configuration','','Ubuntu probably','Y','','','','','','','Y','','','','Home-manager, nil','',''),(256,'1980-01-01 00:00:00',5,'en','1860051292','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','','','','','','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'Guix, spack or conda','A4','','','','Y','Y','Y','','','','','','','','','Y','','','','','','','','A4','A2','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I have contributed PRs before, but rarely do that nowadays due to:\r\ntime, permission to merge (reviewing PRs without actually being able to merge them is not satisfying)\r\n\r\nThings that don\'t work I now often just fix locally in an overlay.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','','','','','','Git versionable','Guaranteed to match the defined state','Never borked.\r\nSystem does not \"degrade\" over time (previously I thought operating systems sometimes need to be completely reinstalled to get them into a proper state again)','','Ubuntu ','Y','','','','','','','','Y','','','home-manager, agenix','',''),(257,'1980-01-01 00:00:00',5,'en','2078770253','A2','A2','fem','','Y','','','','Y','','','','','Y','','','','','','','Y','','','','','Y','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','Y','','','A2','A7','A4','','','','','','','','A14','A2','A12','','','','','','','','','','','','',NULL,'arch','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A9','A1','','','','','','','','','','','','','','','','','','','A9','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','','Y','','','','atomic rollbacks','configuration modules','vm image generation','faster evaluation','','Y','','','','Y','','','','','','','','',''),(258,'1980-01-01 00:00:00',5,'en','657485395','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','','Y','','','','','Y','Y','','Y','','Y','','','Y','Y','Y','','Y','','A7','A2','A1','','','','','','','','A8','A6','A12','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A13','A14','A3','A2','A4','','','','','','','','','','','','','','','','A13','A15','A14','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','Y','','Y','Y','','Y','','','','','','','Y','','','','','','nixinate','','','','sway','','',''),(259,'1980-01-01 00:00:00',5,'en','1304960861','A2','A4','male','','','','','Y','Y','Y','','','','Y','','','','','Y','','Y','','','','','','Y','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted to have reproducible builds and to manage my development environments/dependencies. Also to manage .config via home-manager for multiple machines','','Y','','Y','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','home-manager','A2','A7','A9','','','','','','','','A8','A6','A14','','','','','','','','','','','','',NULL,'nothing comparable','A1','','','','Y','','','','Y','','','','','','','','','','','','','','','A2','A4','A13','A15','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','many conflicting conventions/ways to do things, lack of documentation, feeling lost in the codebase','Y',NULL,NULL,NULL,NULL,'A1','','','','home server','A3','I was and am managing a personal server with little time for it. Having a single point of truth in a declarative way saves time and lifts the burden of remembering in which config file I changed what.','','','Y','','','','','declarative configuration','automatic and atomic updates/rollback','managing systemd containers','Add automatic network configuration for systemd-containers, secrets management','ansible','Y','','','','','','','','','','','','NixOps','Thank you for nix! Not perfect, sometimes hard to use, hard to learn. But nothing like it!'),(260,NULL,2,'en','240892254','A2','A2','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','Terraform and Azure was in a poor state, but nixos did everything well','','Y','','Y','Y','','Y','Y','','Y','','','','','Y','Y','Y','Y','','','A2','A3','A5','','','','','','','','A3','A11','A2','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','Y','','Y','','Y','','','','A15','A2','A3','A1','A5','','','','','','','','','','','','','','','','','A5','A10','A1','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(261,'1980-01-01 00:00:00',5,'en','1572804822','A2','A3','male','','','','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','','','','','','','','','Y','','','','A6','A1','A2','','','','','','','','A5','A9','A8','','','','','','','','','','','','',NULL,'','A4','','','','','Y','','','','','','','','','','','','Y','','Y','','','','A2','A1','A7','A9','A10','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','N','Time and proton support ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(262,NULL,NULL,'en','679343358',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(263,'1980-01-01 00:00:00',5,'en','1633483896','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I started using Nix because I started using NixOS.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','Y','Y','','A2','A7','A10','','','','','','','','A4','A3','A9','','','','','','','','','','','','',NULL,'Docker','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A10','A1','','','','','','','','','','','','','','','','','','','','A10','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Don\'t know where to start on contributions and almost everything I need is already packaged.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I started NixOS because I wanted to be able to manage my OS as code and make sure I could safely evolve it. It started Linux with Ubuntu and Arch, I tried Exherbo which is not that far from Nix on reproducibility but it did not filled my desire of low/high level configuration as code. ','Y','','Y','','','','','Declarative system configuration','Rollbacks / Versionning','Images','I don\'t know, I am clearly satisfied with it!','Archlinux','Y','','','','','','','Y','','','','','',''),(264,'1980-01-01 00:00:00',5,'en','569640764','A2','A4','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','','','','','Y','','','','','','','Y','Y','','Y','','','','A3','A1','A2','','','','','','','','A8','A5','A13','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','','','','','','','','','Make Nix less confusing/obscure. Streamline common use cases','','Y','','','','','','','Y','','','','home-manager, disko','',''),(265,'1980-01-01 00:00:00',5,'en','253432014','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','','','','ChromeOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Was interested by the notion of being able to define a whole system by code.','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A4','A3','A8','','','','','','','','','','','','',NULL,'PKGBUILD from Arch Linux as it’s the most sane approach to build packages.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','Drone','A9','A7','A1','A2','A15','','','','','','','','','','','','','','','','','A7','A1','A20','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Reproducible systems. Had to try 3 times and only after taking lots of to read through the documentation did I really understand how it worked and not to fight the system but really use it to define each of my projects.','Y','','Y','Y','','','','Modules','Nix','','Cleaner pre-packaged desktop environments like KDE. Lots of little things aren’t working or not as polished as Fedora would for example.\r\n\r\nI don’t use those desktop myself but it would be easier to get people interested.','Arch Linux as it’s the most up to date while being the least battery included.','Y','','','','Y','','','','','','AwesomeWM','','Hydra','Documentation, documentation, documentation.\r\nAnd a more modern CI that isn’t related to Hydra would be fantastic.'),(266,NULL,1,'en','236763415','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(267,'1980-01-01 00:00:00',5,'en','1442295207','A2','A3','male','','','','','','','','','','Y','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','NixOS configurability','','','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A7','','','','','','','','A8','A6','A7','','','','','','','','','','','','',NULL,'arch','A1','','','','Y','','','','','','','','Y','','','','','','','','','','','A4','A3','A1','A2','A5','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','configurability','custom self-made patch maintenance','','','arch','Y','','','','','','','','','','i3','','','<3'),(268,'1980-01-01 00:00:00',5,'en','1014648966','A2','A2','-oth-','','Y','','','','','','','','','Y','Y','','','','','','Y','','','Y','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A1','I used arch but i broke it or it broke i don\'t know.\r\nI started to look for a different distro to use and i came across nixos, now it is a part of my desktop ','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A1','A2','A3','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'i would probably use arch or a debian based (if you are talking about the package manager than pacman or apt )\r\n','A4','','','','','','','','','','','','','','i havent delved into any experimental features','','','','','','','','i dont know what a ci is so i dont think i use any','A4','A3','A13','A1','A6','A5','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I don\'t think i have enough knowledge to contribute yet.\r\nBut i am looking for ways to learn and start contributing mainly update packages that i use or even develop new packages','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Like nix i broke arch and then decided to switch to NixOs and the rest is history','','','','','','','','The packages system','The reproducibility','The imutability','I honestly just want better learning ressources so i can learn some more ','Arch or a debian based','','','','','','','','','','','I3wm','I do not know','Everything i started using i kept using','I really really really like NixOS.\r\nEver since i started using NixOs it has become my main distro.\r\nI am currently looking for ways to contribute to the community\r\nI really thank you all for this amazing distribution and all your efforts into making it something unique.\r\nI will keep using it for a long time :)'),(269,'1980-01-01 00:00:00',5,'en','1942696960','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','I have too little time to try new things','I wish I had more time to not be afraid to find myself in a situation where I desperately need to do something right now, but can\'t figure out how','Y','','','','','Y','Myself having enough free time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A3','','','','For trying out new things','A1','I have seen people talking about nix and saying they use nixos, and the novel approach nix takes seemed compelling to me, particularly that the packages are reproducible, I think this is good and important for free software and open source, because it allows for agreeing on what that source code compiles to and if it\'s good, because the source is good. So I decided to install nixos to make myself learn nix. In times where I have enough free time, I reboot to it. I know I can just use nix on my main operating system, but that would probably just result in me not using it at all. I consciously chose to have a little bit of a controlled locking: I have to reboot to my main os when I\'m in nixos, so there\'s some additional incentive for me to actually try and study and troubleshoot without just giving up immediately. I opted for that, because there are usually periods of my life when I\'m free and when I\'m not free. So far I haven\'t been in nixos much, tho I invested at least 1 hour of my life into it.','','','','','','','Daily driver laptop','Reproducibility','Having different versions of the same library installed and used simultaneously','Making it possible to have a single config for the whole operating system and user environment to easily bootstrap new machines','I would add the ability to install it without an internet connection from the official ISO image, currently the default graphical installer requires that the device has internet connection.\r\nI would also add some out of the box experience interactive tutorial on how to use it and why it\'s a good way to do things.','I\'m still using archlinux most of the time and rarely boot into nixos. I would just always use arch, probably.','','','','','','','','','Y','','','','','When I first started out with nixos, I used the KDE edition ISO image, and it had wrong associations or something: when I opened links in whatever the present browser was (and it wasn\'t firefox, some KDE thingy), for some search engines (I don\'t remember which, maybe Google or Bing, or something else) it would open the website\'s HTML code in Okular instead of, well, opening the search result\'s url in the browser. I still don\'t know why that was sometimes happening. Also, I still don\'t remember how I installed firefox and if that was the preferred way to do it. I also couldn\'t see a youtube embed in discord, so I wanted to do `dog youtube.com` just to see if it fetches the youtube\'s ip address at the very least, and the name of the package was not entirely obvious, something like `bind` or something. I fetched the youtube\'s ip address and then the embed worked, as far as I remember. Maybe that was a coincidence, and also maybe my internet service provider had some issues with their censorship system or something and blocked youtube temporarily.\r\nAnd thank you very much for working on a thing as important as nix!'),(270,'1980-01-01 00:00:00',5,'en','1409049655','A3','','-oth-','Tux','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','Y','','','','','Y','Y','Y','','','Y','','Y','Y','Y','Y','','Y','','A2','A1','A4','','','','','','','','A8','A4','A14','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A2','A3','A4','A5','A6','A7','A9','A10','A13','A15','A22','A19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','Y','Y','Y','','Y','','','','','','','Y','Y','','','','','','','','','Hyprland','','',''),(271,'1980-01-01 00:00:00',5,'en','1573651037','A2','A3','male','','Y','','','','','Y','','','','','','','','','','','Y','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Some people say it was life-changing on hackernews, so I tried it.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A5','','','','','','','','A8','A9','A3','','','','','','','','','','','','',NULL,'Maybe docker, but it would be very sad.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','woodpecker','A15','A2','A4','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','Y','','','','','','','','','','Y','','','','','','','','','','','home-manager','',''),(272,'1980-01-01 00:00:00',5,'en','1554918279','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','Y','','','','','','Y','','','','','','','','','Y','','','','A7','A1','A6','','','','','','','','A14','A8','A9','','','','','','','','','','','','',NULL,'ansible','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I use nixos for the homelab server - i got sick of manual steps so i automated all with nixos','','','Y','','','','','Declarative Configuration ','Rollbacks','Easy upgrades','Make it possible to nixos-rebuild offline.','Ansible and a lot of swearing','Y','','','','','','','Y','','','','None. I try to use nixpkgs','Home-manager. NUR.\r\n\r\nI cannot use it on the desktop',''),(273,'1980-01-01 00:00:00',5,'en','7676148','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I wanted to have a better package manager.','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A6','A8','A9','','','','','','','','','','','','',NULL,'Pacman/Paru','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A4','A3','A1','A2','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I don\'t think my Nix code is very clean. That being said I might contribute soon.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I wanted to have a configuration that I could quickly apply to any new computer.','Y','','','','','','','Flakes/Reproducibility','The extensibility (overlays, etc.)','The filesystem','Better support for secrets','Arch Linux even though it isn\'t similar to NixOS because I\'m experienced with it.','Y','','','','','','','','','','Hyprland','','','Great language and operating system'),(274,'1980-01-01 00:00:00',5,'en','1079971837','A2','A4','male','','Y','','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','perfectionist','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A7','A2','A1','','','','','','','','A8','A3','A12','','','','','','','','','','','','',NULL,'fedora silverblue','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A11','A1','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','','','','','reproducibility','rollback','Declarative configuration','add types to nix','fedora silverblue','Y','','','','','','','Y','','','','home-manager','All python related projects (mach-nix, dream2nix) do not work!',''),(275,NULL,1,'en','1981299934','A6','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(276,'1980-01-01 00:00:00',5,'en','1151932556','A2','A6','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','','z/OS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Heard about it on Linux Unplugged podcast, a lot! Finally gave in and had to check it out','','','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A3','','','','','','','','A14','','','','','','','','','','','','','','',NULL,'dnf','A4','','','','Y','','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'m too new / inexperienced','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Same as Nix above','','','','','','','Personal desktop','No compromises needed, I can do everything in NixOS (with a bit of effort to set up) than a \"normal\" Linux distro','Declarative configuration','','I\'m too new and still learning to be able to give a good answer','Fedora Silverblue','Y','','','','','','','Y','','','','','',''),(277,'1980-01-01 00:00:00',5,'en','1515544931','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','','','','A1','A3','A7','','','','','','','','A8','A2','A6','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','','Y','','','','Declarative system configuration','(Mostly) reproducible systems','Atomic rollbacks','Add a graphical software center\r\nSpeedup rebuild times\r\nImprove tools for writing system configs\r\n','Guix','Y','','','','','Y','','Y','','','','nixos-generators\r\nmach-nix','dream2nix (but will revisit)',''),(278,'1980-01-01 00:00:00',5,'en','554194213','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted an immutable configurable distribution after getting dissolutioned with ansible/puppet, tried ostree but didn\'t like it so settled on nixos.','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A8','A6','A14','','','','','','','','','','','','',NULL,'OsTree','A4','','','','Y','Y','','Y','','','','','','','','','','','','','','','','A4','A1','A3','A15','A2','A10','','','','','','','','','','','','','','','','A15','A10','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time...','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Needed a declarative package manager and thought doing the OS as well was logical.','Y','','Y','Y','','','','Easy, declarative configuration','Flakes','Rollback, forward','Improve documentation, particularly configuring a system with flakes. Perhaps a best practices guide.','Fedora Silverblue','Y','Y','','','','','','','','','SwayFX','','Finding NixOps 2.0 difficult to keep moving with and am going to exit to something else soon.',''),(279,NULL,1,'en','1687002555','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(280,'1980-01-01 00:00:00',5,'en','1386523419','','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','Y','An application settings, can be applied with GUI, but they don\'t persist or addons, themes, plugins (, mods ?) can\'t be downloaded and used (of KDE Plasma, as for example), if it\'s (still) correct.','','','Y','I didn\'t do packaging work. Sometimes software that was developed for mutable distributions, needs to be patched to build and run on NixOS. I don\'t understand when such \"hacks\" are needed. Lastly, to elaborate: the \"hacks\" (called there as such by their purpose) are seen in not a relatively little amount of packages over Github Nixpkgs, but are not commented throughout the code, usually, and the \"hacks\" are different because of: the certain software and the certain knowledge of the packager. It might have impact on some people who are entering the packaging (as they encounter these patches without comprehension of them).','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'1. I couldn\'t apply (install) KDE addons.\r\n2. There is no official driver for a certain discrete audio-card.\r\nSo, in comparison to MS, the Linux distributions might look fragmented by their composition. \r\nBut I think NixOS has a potential to impact the situation.\r\n3. I think that I don\'t know where to expect bugs from when using software packaged for NixOS. Have the maintainers or packagers done enough the right patching?\r\nSteam (for example Steam) got another \"add X dependency to BuildInputs\" commit?\r\n-----------------\r\nIt looks like that there are many different ways to package one (especially GUI?) application. Which package to choose as a template when one would try to package another software?\r\nSoftware usually can\'t update itself, for example, browsers or a game, because it doesn\'t follow the standard of Nix reproducibility.\r\n\r\nTo solve these problems, developers should be the packagers of their software, I think. They should want to package for NixOS. And NixOS is interesting, \"appealing\".\r\n\r\nAbout documentation. There is Guix which documentation is maybe not full and it is expected from the learners to already have a certain knowledge of packaging or that they are being able to research (which I doubt a beginner would appreciate), but written in the manner delightful to read, at least where I read it.\r\n\r\nI think NixOS is a big leap forward in Operating Systems:\r\n- it\'s development is open\r\n- it\'s community has progressive purposes and has some freedom and time to decide the future of the OS!\r\n(thanks to besides it not being commercial?)\r\n- it is ecological in many ways (by it\'s actions, not by any marketing or words), i.e. it feels that:\r\n = it\'s not meant to degrade people minds and hearts or litter our Planet Home.\r\n = it\'s not meant to rise the unemployment rate\r\n = it values anything real more, than anything virtual (digital). It makes value time, life, ...\r\n = it doesn\'t make me want to waste time sitting in front of PC. Thank you.\r\nIt\'s calming.\r\n\r\nI wish Nix packages would be mainstream as Deb and RPM are, that developers would package their software on Nix. So, Chrome, Firefox and (or) other popular software products would use it as one of the methods of their software distribution methods on their web pages.','... If a certain discrete audio-card and popular high-quality user programs would support Linux as a \"\"first-class citizen\"\", of course it would be great.\r\n\r\nI think NixOS should become more popular to make developers (who develop, for example, for Windows) pay attention to it. Some ways to reduce fragmentation, I suppose:\r\n- market the NixOS to users from other Linux distributions, so they get transfered to it\r\n- market the NixOS to and work with developers of existing popular projects (KDE, Gnome and others), so they would develop their software on NixOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','The \"Home-manager\". I wish it could clear dotfiles after a program uninstall.','Could something like /nix/store/ be implemented for the \"Home-manager\", so each dotfile could have own hash and each program could have own immutable dotfiles?\r\nThank you and thanks to the moderators of Discourse very much!'),(281,'1980-01-01 00:00:00',5,'en','29861367','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Security researcher','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Declarative specification, large package repository','','Y','','','','','Y','Y','','','','Y','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A9','A14','A6','','','','','','','','','','','','',NULL,'Pacman','A4','','','','','Y','','','','','','','','','','Y','','','','','','','','A2','A3','A9','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Declarative system configuration, 6 month release interval','Y','','Y','','','Y','','Declarative system configuration','Atomic upgrades (i.e. nixos-rebuild boot)','Binary caching','','Arch Linux (or Guix, by now)','Y','','','','','','','Y','','','','','',''),(282,'1980-01-01 00:00:00',5,'en','1801964022','A2','A2','male','','','','','','','','','','Y','Y','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I had been using pop! os for about a year, and accidentally deleted my dm. Not knowing how to fix it, I turned to discord. A friend at the time was a nixos user. Although he told me I shouldn\'t jump into it with that little linux experience, I ignored his advice and went straight into nixos. The biggest hurdle was partitioning, as a beginner like me at the time didn\'t know how to partition for dual booting properly.','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A10','A2','A7','','','','','','','','A11','A2','A8','','','','','','','','','','','','',NULL,'Guix perhaps?','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Every time I tried cloning the repo it took 10+ mins on my bad internet. I need to look into how to only clone the latest commit','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','same story as how I started using nix','Y','','Y','','','','','Declarstive configuration ','Extensibility (I can create custom modules which tune configurations across multiple apps and services)','Reproductible builds','- I\'d love for the nixos, nix and home-manager to be merged into a single cli','- guix','Y','','','','','','','','','','xmonad & hyprland','home-manager, impermanence, stylix','','home-manager *needs* a better option search method. I know a website exists already, but it\'s far from perfect (I can\'t specify the search as a query param for example)'),(283,'1980-01-01 00:00:00',5,'en','814972689','A2','A3','male','','','','','Y','','Y','','','','','','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A10','A12','','','','','','','','','','','','','',NULL,'','A4','','Y','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(284,'1980-01-01 00:00:00',5,'en','278098009','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started using Nix because almost all linux distros I\'ve tried work in more or less the same way and suffer from the same problems. I always end up making a list of all the packages I have installed as a way of backing up the system, and I end up relying on things like docker instead of the actual operating system so I can keep track of all the changes I make to everything and to make configuration easier. Though I think containers are cool, they\'re certainly not for everything, and I like that NixOS achieves a lot of the benefits of containers (in terms of reproducibility and ease of configuration) without forcing me to make workarounds to punch holes in security when things don\'t work the way I want (unlike flatpak and docker).\r\n\r\nRight now, my impressions of Nix are that it\'s a super cool technology, but it\'s hard to understand. I have ideas for what to do with it that I\'m excited about, but I don\'t always know how to execute them, and I\'m often left scouring the internet for bits of working code to copy-paste and not learning much. There have been times that I\'ve thought about giving up on Nix because it\'s been so frustrating and I want to go back to where I can just make whatever changes I want to my system without having to worry about reproducibility. I think what would help solve problems like this the most are the development of tools like language servers that offer code completions and tell me when I mess up (and sometimes how to fix it). Anyway, I\'m rambling at this point. There you go, the story of my Nix(OS) journey until this point.','','Y','','','','','Y','Y','','','','Y','','Y','Y','Y','Y','','','','A1','A10','A2','','','','','','','','A14','A6','A5','','','','','','','','','','','','',NULL,'I would probably just use normal package managers and build tools, which mostly rely on bash.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A15','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','PR\'s and waiting for them to get merged...............','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started using NixOS because almost all linux distros I\'ve tried work in more or less the same way and suffer from the same problems. I always end up making a list of all the packages I have installed as a way of backing up the system, and I end up relying on things like docker instead of the actual operating system so I can keep track of all the changes I make to everything and to make configuration easier. Though I think containers are cool, they\'re certainly not for everything, and I like that NixOS achieves a lot of the benefits of containers (in terms of reproducibility and ease of configuration) without forcing me to make workarounds to punch holes in security when things don\'t work the way I want (unlike flatpak and docker).\r\n\r\nMy first exposure to Nix was when trying to make a reproducible environment for audio production (for multiple people to use) and I kept going.','Y','','Y','','','Y','Desktop/laptop','A stable system.\r\n\r\nNixOS is built like a tank. There\'s an interpreter that yells at you when something is messed up! I love that it lets you do crazy things (e.g. changing desktop environments) without having to worry about whether you followed all 10 steps of a guide to the T.','Configurable packages.\r\n\r\nThe fact that you can override parts of packages and have it build is amazing. Going further, I love that this lets you grant first-class system-level support to any application, regardless of whether it\'s in the repos. Not to mention the fact that you can configure services through a single configuration language.','A manageable system.\r\n\r\nHaving everything in one place is so nice! If something gets updated, I don\'t need to apply a fix by hand or re-install a configuration file (or worse, find out the hard way something\'s broken). This work is left to package maintainers, which takes the burden off the users to keep track of things like this. I think about distributions like Arch Linux, where most people have more or less the same system plus or minus a few tweaks. Yet to get there, everyone has to repeat the same to build that system. Nix takes care of that for you and does it in a reproducible way.','Have more resources for learning how to get from any idea to implementation. (Documentation.) Right now, the only resource I know of is the community, which works all right for the most part, but it\'s not good in every case.\r\n\r\nComing from a background of never having used functional programming prior to using Nix, after 6 months I still find it impossible to know where to start with most things without asking for help somewhere. Search engines aren\'t great about finding resources for how to do things in Nix and neither are large language model AI chatbots. I can tell there are things out there to teach me what I want, but I\'m usually not able to find them when I need them. If I had a magic wand to change something about NixOS, I would make really good learning resources and guides for how to do a wide variety of things that most NixOS users will need to do at some point, so everyone can be given a fair introduction to the system. Guides would include things like how to setup your system and how to extend it to do some common things that more knowledgeable users all do but might be hard for a new user to pull off even if they want to. The manual is great and all, but it\'s so big that I think I would die before I got to the end of it. It needs to be broken up into chunks that are digestible and applicable for new users.\r\n\r\nOnce people have a strong understanding of Nix, they will know where to go. Right now, I think educating new users is the most important thing Nix(OS) can do.','I would probably use an arch-based distro. The AUR might technically have less software than nixpkgs, but more often than not, I find the software in it is more relevant to what I\'m trying to find. If I can\'t find something in nixpkgs, there\'s almost always an AUR package calling my name and trying to make me switch back to Arch.','Y','','','','','','','Y','','','','- envfs','','This was a fun survey, not gonna lie. Good questions! It was actually really helpful for me to think out loud about some of these things, and your list of Nix features and improvements was very good and exciting! I hope we can eventually see all of them! Also, what are \"granular incremental builds\"? Sounds cool.'),(285,NULL,2,'en','755175103','A2','A2','male','','','','','','','Y','','','Y','','','','','','','','Y','','','','','Y','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A15','A2','A1','','','','','','','','','','','','','','','','','','A13','A15','A2','','','','','','','','','','','','','','','','','','','','Y','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(286,NULL,NULL,'en','850280218',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(287,NULL,1,'en','358763248','A2','A3','male','','Y','','','Y','','Y','','','','','','','','','Y','','Y','','','','','','','','','','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(288,'1980-01-01 00:00:00',5,'en','1187396538','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Stumbled upon it on Reddit and got curious about reproducibility as I had to migrate my setup a couple of times between different machines and it was a pain. ','','','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A7','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'Whatever is the default package manager from my current OS','A4','','','','Y','','','','','','','','','','','','','','','','','','','A10','A13','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Lack of time and lack of information about how to contribute. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducible builds got me intrigued. ','Y','','','','','','','Reproducibility','Everything in code','Amount of supported packages and services','Add secure boot and better secure defaults.\r\n\r\nFinalize flakes and encourage everyone to use them. ','Debian or fedora or arch or osx.','Y','','','','','','','','','','Sway','','','Thank you for doing what you are doing. Have a great day!'),(289,'1980-01-01 00:00:00',5,'en','1466254170','A2','A4','-oth-','non-binary ','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Tried it 10 years ago. Back then it was just too rough around the edges. Flakes make nix much better. There is more and better documentation. So it feels like the right time to start using nix.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A4','A9','','','','','','','','A8','A5','A9','','','','','','','','','','','','',NULL,'I built a similar system a decade ago. I built it specifically because nix was not as mature back then.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','A10','A1','A4','A3','','','','','','','','','','','','','','','','A1','A10','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Other people seem to be quicker at fixing issues/ updating packages','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','Y','','','','','atomic deploy ','no clutter ','you know what is actually deployed ','atm I\'d use the magic wand to keep nixos as it is','probably debian as it is well supported ','','','','Y','','','','','','','','home-manager','',''),(290,'1980-01-01 00:00:00',5,'en','573504114','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Had a colleague who tried it out, and then, my archlinux broke down, I gave it a go','','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','Y','','A7','A8','A2','','','','','','','','A12','A9','A14','','','','','','','','','','','','',NULL,'Same concepts, written with Haskell','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A1','A13','','','','','','','','','','','','','','','','','','','','A1','A13','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same as nix','Y','','Y','','','','','Reproducibility','Unified configuration, in code','Fresh packages','Onboarding documentation (written, video, audio, you name it)','Archlinux','Y','','','','','Y','','','','','xmonad, hyprland','','',''),(291,'1980-01-01 00:00:00',5,'en','1905772464','A5','A3','male','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','Because I started using nixos.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A8','A5','A9','','','','','','','','','','','','',NULL,'Docker images, or shell scripts','A1','','','','Y','Y','','','','Y','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I only learned how to use flakes, so I thought having a flake.nix in my CLI utility repository was good enough for now (im new).','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','My current main computer that Ive been running Ubuntu on for 3.5 years has been having space issues recently. Its so hard for me to manage software using apt that I dont do a good job purging old software. I came to nix because I could 1 to 1 manage the software installed on my system that I wanted to keep around, knowing I could garbage collect all the random things I just tried for fun. In short, I use nixos on my laptop to have 1 to 1 coorespondence with packages installed and a list in a text file.','Y','','','','','','','Declarative installed packages','Declarative services','','Easy way to explore packages, options, etc from the command line. That is, a cli alternative to the website.','Some script that maintains a list of apt packages in a text file that would install/uninstall for me. I believe there exists installers, but nothing that removes packages that arent listed.','Y','','','','','','','','','','xmonad','','','I wish there was a page on the docs that just talked about the schema for what a \"derivation\" is. I know theres mkderivation and mkshell, but as a programmer, I want to know the actual attribute set schema like I can see for flakes. Im shocked there isnt a docs page explicitely titled \"derivation\" to explain the concept and schema outright.'),(292,'1980-01-01 00:00:00',5,'en','560751299','A2','A3','male','','','','','','Y','','','','','','','','Y','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I kept hearing about it and was very interested in the immutable/declarative system ideas and infrastructure as code. I first tried nix by itself but had a hard time \"getting it\". I took the plunge and installed NixOS, where the one \"configuration.nix\" to describe the whole system made sense to me and what I was looking for.','','Y','','','Y','','Y','Y','Y','','Y','','','','Y','Y','Y','Y','','','A2','A9','A10','','','','','','','','A8','A2','A13','','','','','','','','','','','','',NULL,'A configuration system like puppet or ansible.','A2','','','','Y','Y','','','','','','','','Y','','','','Y','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I could not get the declarative experience I was expecting from nix with just the package manager, so I tried the full NixOS instead. It \"sold\" it for me and helps to understand how to get declarative environments outside of NixOS as well, which I couldn\'t manage at the beginning.','Y','Y','Y','','Y','','','declarative system (packages and services/modules) from one configuration','being able to rollback to a know good state, both with the generations and through git (with flakes)','abstract the configuration of services, e.g. to get a webserver with ACME certificates','I would remove channels and make flake with lock files the default. I would replace the nix language with a more general purpose typed configuration language.','Configuration management system like puppet','Y','','','','','','','Y','','','','poetry2nix, agenix, nixos-generators','Briefly tried home-manager and direnv but haven\'t put enough time to really use it.',''),(293,'1980-01-01 00:00:00',5,'en','299217874','A2','A3','male','','','Y','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','A friend told me about it. I was looking to switch from Ubuntu to something else because snap pissed me off.','','Y','','','','','','Y','','Y','','','','Y','','','Y','Y','','','A7','A2','A10','','','','','','','','A8','A5','A4','','','','','','','','','','','','',NULL,'Back to Ubuntu ?!','A5','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A1','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Time an better knowledge about nix lang','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','Y','Y','','','','','','','Make flakes stable and improve the rebuild switch Cli output, make it better readable\r\n','','','','','','','','','','Y','','','','','communicate more to your community about incoming changes and proposals '),(294,'1980-01-01 00:00:00',5,'en','536149837','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Easy to contribute to nixpkgs, high number of packages, rollbacks independent of filesystem.','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A9','A10','','','','','','','','A8','A5','A13','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Immutable but configurable, declarative.','','','','','','','','','','','Nix language','Arch, Fedora Silverblue','Y','','','','','','','Y','','','','','',''),(295,'1980-01-01 00:00:00',5,'en','412430373','A2','A2','male','','','','','','','Y','','','','','','Y','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A2','','','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A7','A2','','','','','','','','A14','A5','A3','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','A2','A19','A13','','','','','','','','','','','','','','','','','A2','A19','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Lack of free time','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','Y','','','','','','','','','','Y','Y','','','','','','','Y','','','','',''),(296,NULL,0,'en','828621508','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(297,NULL,2,'en','1076039662','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','N','N','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(298,NULL,1,'en','264393996','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(299,'1980-01-01 00:00:00',5,'en','400424713','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','more packages (and installed NixOS, so no choice :D)','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A3','A9','','','','','','','','A8','','','','','','','','','','','','','','',NULL,'Guix, I guess','A4','','','','','Y','','','','','','','','','','','','','','','','','','A1','A5','','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','','','','creating MRs','A1','','I already do','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Declarative system configuration sounded intriguing','Y','','Y','','','','','declarative system configuration','declarative home configuration','a lot of packages for self hosting','Remove: Problems when running non-nix binary on NixOS','Guix','Y','','','','','','','Y','','','LXQt with Openbox','simple nixos mailserver','','Sometimes I miss some documentation for selfhosted apps: \r\nfor example If I still have to add postgresql config for the service to run \r\nor nginx config one probably wants (took me quite some time to figure out for seafile) \r\n \r\nJust a little more info regarding a module when searching on https://search.nixos.org/options'),(300,'1980-01-01 00:00:00',5,'en','1250042042','A2','A4','-oth-','','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','manage dev envs\r\nmanage multiple machine configuration from single place','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A4','A5','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','nothing, i try to when i can','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','all configurations in a single place, atomic updates','','','','','','','','flake system config','build-vm','','- add more and better documentation!\r\n- boot entry manager - easy ability to rename entries, pin from GC, remove certain ones manually\r\n- default hardware config should cover everything a \"layman\" may need: microcode, video drivers, opengl.\r\n- nixos configuration diff or something like that. see diff between existing system configuration, see diff between existing generation and a flake file','fedora','Y','','','','','','','','Y','Y','','','','great work! thank you, everything envolved!\r\n'),(301,'1980-01-01 00:00:00',5,'en','1886514086','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Decided to try NixOS for declarative configuration','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A1','A2','A7','','','','','','','','A12','A8','A2','','','','','','','','','','','','',NULL,'Ansible, kubernetes, cloud-init','A2','','','Y','Y','Y','Y','Y','','','','','','Y','','','Y','','','Y','','','','A9','A15','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Decided to use declarative OS','Y','Y','Y','Y','','','','Declarative Modules','Binary cache','Nixpkgs','Add security tools for audit, add integrated secret management ','Ansible, cloud-init, kubernetes ','Y','','','','Y','','','','','','hyprland','Ethereum.nix, home-manager, flake-parts, devshell, devenv, agenix/ragenix,nixos-anywere','Deploy-rs','Need to improve nix as a language - make it more user friendly, need to improve a security field - it\'s hard to sell NixOS to security team (no security scanning, no audit tools)'),(302,NULL,2,'en','1174053408','A8','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','To configure my laptop in a reproduceable way.','','Y','','','Y','','Y','Y','','','','Y','','Y','Y','Y','Y','Y','','','A2','A3','A1','','','','','','','','A5','A8','A12','','','','','','','','','','','','',NULL,'Guix perhaps','A1','','Y','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(303,'1980-01-01 00:00:00',5,'en','243151058','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','Y','','','Y','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to share configuration (vim, awesomewm, etc) between my different machines. ','Y','Y','','','','','Y','','','Y','','','','','Y','Y','Y','','','','A2','A3','A8','','','','','','','','A2','A8','A6','','','','','','','','','','','','',NULL,'Guix','A2','','','','Y','Y','','','','','','','','','','','','','','Y','Y','','','A15','A1','A2','A17','A9','A22','','','','','','','','','','','','','','','','A15','A2','A17','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Not clear how much effort','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted an os that was completely configurable with code.','Y','','','','','','','Rollbacks','Configuration with flakes','Easy to add new/custom packages','First class flake support','Guix','Y','','','','','','','','','','awesomewm','Rust overlay\r\nCrane to build rust','',''),(304,'1980-01-01 00:00:00',5,'en','69264393','A2','A2','-oth-','lol','','','','','','','Y','Y','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','It was all the rage in our local hackspace','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A6','','','','','','','','A5','A13','A14','','','','','','','','','','','','',NULL,'Flatpak, Docker','A2','','','','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','Because fuck Ubuntu server.','','','Y','','','Y','','Configuration sharing','Modules that do the heavy lifting for me','History management','Overriding modules somehow','Docker? Nothing?','','','Y','','','','','Y','','','','nom, morph, home-manager, nixfmt, direnv/direnv-nix, nix-tree, npins, patchelf, moz-overlay, nixGL','niv, nixpkgs-fmt, alejandra, nur',''),(305,'1980-01-01 00:00:00',5,'en','2011197247','A2','A2','-oth-','any','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','At work I do C++ Dev with some python bits. The existing development approach is to install and rely on system packages to build the software. But the dev machines use a different OS than the prod machines, so version inconsistencies cause headaches. I\'ve been using Nix to manage build environments locally, with the hopeful goal to eventually present it as a solution to the team if/when I can get in a mature state. Currently the blocker is being able to bundle several executables and a Python C++ shared library into the current distribution package: a Python wheel. Nix\'s shared library links doesn\'t work reliably with this however.','','Y','','','','','Y','Y','','Y','','','','','Y','','Y','','','','A7','A9','A2','','','','','','','','A3','A8','A4','','','','','','','','','','','','',NULL,'Guix sounds closest in approach. But I probably would not have heard of it and begrudgingly used something like Ansible. ','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','A3','','','','','','','','','','','','','','','','','','','A2','A4','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I have raised a few PRs. It\'s mostly difficult to\r\n1. Find out the best packaging practices (e.g. documentation. Reviewers are helpful but disagree amongst themselves)\r\n2. Getting reviews and approval\r\n3. Maintaining the packages separately while developing them. I will typically implement them in my own Flake with an overlay, but to raise them as a PR I need to fork nixpkgs, copy things over, and follow the rest of the nixpkgs bits. Syncing between my Flake and the nixpkgs branch is tedious.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted to create a reproducible system configuration under proper version control. I was unsatisfied with the typical solutions (ansible et all) from seeing them used in corporations. Nix\'s approach sounded novel and more solid.','','','Y','Y','','','','Atomic upgrades and rollbacks','Reproducible deployments','Declarative configuration','Ability to temporarily make configuration mutable during testing. Like systemd overrides, but for individual service configuration files. E.g. copy files to /etc instead of symlinking to /nix/store','GNU Guix or just give up and use Ansible','Y','','','','','','sops-nix','','','','','poetry2nix\r\nsops-nix\r\nnixGL to run nixpkgs apps on non-NixOS','mach-nix (didn\'t like it\'s approach of downloading huge indexes of Pypi)\r\nNixops (was using it while testing out secrets deployment. It didn\'t seem to work with a NixOS VM, so I gave up on it)\r\n','For gender question, the typical options IMO should be man, woman, non-binary, other. Male/female is sex.\r\n\r\nI would like to see some guides into gradually adopting Nix in companies. Some developer relations stuff. Marketing to make Nix seem more professional and appealing when trying to get management on board. Some recommended companies offering Nix consulting and support.'),(306,'1980-01-01 00:00:00',5,'en','2076455275','A1','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I searched for a dotfiles manager that can keep my dotfiles insync across 3 computers and *also* manage related packages, while being flexible enough to adhere to unique properties of individual machines (eg. no steam on the work PC).\r\n\r\nThis search made me gain interest in home-manager, which also made me start learning nix.','Y','','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A7','A2','A10','','','','','','','','A6','A2','A13','','','','','','','','','','','','',NULL,'Probably still pacman on Arch Linux, maybe I would have migrated to brew, also apt and/or yum at work.','A2','','Y','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A15','A1','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','After using Nix + Home-Manager on Arch Linux on 3 machines for a while (~6 months) the BTRFS on all of these ran into an error that was well known back then and is unfixable.\r\n\r\nOut of curiosity I first replaced my personal machine with NixOS and played with it for a weekend, when Covid struck and Germany went into the lock-down and I had to dig into NixOS quickly to make my personal laptop suitable for work from home.\r\n\r\nAfter the first week I felt proficient enough to switch from a WSL on the work computer (which I used via RDP for some things) with a NixOS VM, which I continued to use after the lockdown, when being physically in the office.\r\n\r\nBeing able to just roll back after having done errors in the config was what I really enjoyed in the learning process, much different to Arch Linux, where small mistakes can be hard to impossible to be undone.','Y','','Y','','','','','Declarative Configuration','Atomic rollback','Package customisability (eg. override and overrideAttrs)','Builtin secrets management, that could also work for non-file secrets, unlike sops- or age-nix which require that one can pass a path to the secret.','Probably still Arch Linux, but not with BTRFS :D','Y','','','','','Y','','','','','awesome WM','* flake-parts\r\n* dream2nix\r\n','* flake-utils\r\n','Thanks for the work put into the survey!\r\n\r\nStill some suggestions for the future:\r\n\r\n* I think \"Development Environments (nix-shell, nix shell)\" should have been \"Development Environments (nix-shell, nix develop)\" and \"nix develop\" should be dropped from the \"Building and packaging software\".\r\n* Some languages are missing, and as you clearly can\'t serve everyones needs, perhaps add a free form field where poeple can add their languages if missing above? (in my case Erlang and Elixir are missing which are the most important actually)\r\n* I wish there was a \"magic wand\" question in the \"nix\" section, not only in the NixOS section\r\n\r\n'),(307,'1980-01-01 00:00:00',5,'en','1334154378','A8','A4','male','','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Was looking for a way to manage my dot files and heard about home manager. Started learning that, then saw a video by DistroTube about NixOS. Dived into that on an old laptop, and have been slowly replacing all my old workflows with nix.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','nixos-shell, but need to get into doing containers.','A2','A3','A1','','','','','','','','A5','A13','A3','','','','','','','','','','','','',NULL,'Git dot files and Ansible ','A2','','','','Y','','','','','','','','','','','','','','','','','','','A4','A15','A2','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Don\'t feel I have a good enough grasp on the nix language. Still takes me far too long to do some things, and I\'m certain it\'s not the best way','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Same as above with nix','Y','','','','','','','Ease of experimenting.','Deployability of shared environment ','Ease of set up. Especially remembering some esoteric config months later.','Not sure if this is a thing but ability to add flake inputs in modules ','Probably Endeavor ','Y','','','','','','','','Y','','Hyprland, newm','','',''),(308,NULL,1,'en','1937332730','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(309,NULL,2,'en','1683019865','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Went to NixOS meetup, liked immutability of it and how nice it was to maintain over time.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A2','A7','A10','','','','','','','','A8','A3','A4','','','','','','','','','','','','',NULL,'Guix. Or if no nix inspired distros: Fedora.','A2','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A7','A5','A2','A6','A14','A1','A15','','','','','','','','','','','','','','','A5','A7','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(310,'1980-01-01 00:00:00',5,'en','692649431','A2','A2','male','','','','','','Y','Y','','','','Y','','','','','','','','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I was experimenting with immutable linux distros and after testing fedora silver blue I have moved to nixos and currently it works very well.','','','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A3','A8','A11','','','','','','','','','','','','',NULL,'Fedora core os for servers and silver blue on desktop mostly relying on distrobox and podman.','A4','','','','Y','Y','','','','','','','Y','Y','','','','','','Y','','','','A15','A3','A2','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','NUR','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','Rollback','Flakes','Wide variety of packages in both nixpkgs and NUR.','Improve the documentation, because some things are extremely hard to figure out for example I hade spend a lot of time learning about packaging binaries.','Fedora silver blue / core os and podman.','Y','Y','','','','','','Y','','','','','',''),(311,'1980-01-01 00:00:00',5,'en','1645541367','A2','A4','male','','Y','','','','','','','','','','','','','Y','','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','FS slices for package replacement in Linux From Scratch aren\'t easy to manage in the context of config file conflicts, package conflicts in deb/rpm are just annoying, consequences of interuppting a typical OS update are annoying, too.\r\n\r\nSaw an article about an early NixOS version, tried out.','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A1','A10','A9','','','','','','','','A15','A2','A12','','','','','','','','','','','','','Much more orthogonality and more consistent CLI access for separate steps (like derivation handling).\r\n\r\nBetter build scheduling.','Guix; it it doesn\'t exist either — whatever Julia uses for its binary package handling as it also seems to need separate-prefixing. Failing that, probably GoboLinux would be more popular.VC','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Separate makeExtensible package set, importing the deps','A5','',NULL,'N','Y',NULL,'· systemd is ill-suited for my laptop use patterns\r\n· module system as it is used creates more complexity than it resolves\r\n· for setups where I can tolerate systemd, I can as well use minimal «provided» Debian (Mobian, VPS image) and install Nix on top; Debian stable is fine for booting a kernel\r\n\r\n«System instantiation is a Nix package» is valuable, but I can do better without NixOS. \r\n\r\nConfig generators are valuable but there are hacks to import the specific ones I need without dealing with the rest of the NixOS.','· pluggable init systems\r\n· splitting the single module namespace where everything can spaghetti-modify everything\r\n· simple overrides for everything: it is faster for me to learn how to write three lines of shell to do a thing during boot, than to make NixOS generate them',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Common Lisp support in Nixpkgs','',''),(312,'1980-01-01 00:00:00',5,'en','303277775','A2','A3','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Needed a new Laptop.\r\nAnnoyed by changes introduced in Windows 11.\r\nWanted to try to use Linux outside a VM.\r\nThe declarative nature of Nix and Nixos was appealing.','','','','','','','Y','','','Y','','','','','Y','','Y','','','','A2','A7','A10','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'The default application manager of whatever distro i use instead of Nixos.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','A6','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','All software I use is already packaged and usually up-to-date.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Needed a new Laptop.\r\nAnnoyed by changes introduced in Windows 11.\r\nWanted to try to use Linux outside a VM.\r\nThe declarative nature of Nix and Nixos was appealing.','Y','','','Y','','','','Declarative configuration','Atomic deployment and rollback','Package and Module configurability','Fix the following issue: https://github.com/NixOS/nixpkgs/issues/180175','Some other Linux distro, probably either Ubuntu or Arch.','Y','','','','','','','','Y','','','- home-manager\r\n- nur: provides Firefox extensions\r\n- nixos-generators: custom install iso\r\n- tuxedo-nixos (https://github.com/blitz/tuxedo-nixos): Never merged into nixpkgs due to upstream frequently using EOL versions of node and electron\r\n- nixos-vscode-server (https://github.com/nix-community/nixos-vscode-server): The Remote-SSH extension freqently broke otherwise. Perhaps unnecessary once https://github.com/NixOS/nixpkgs/issues/180175 prevents regressions\r\n- agenix\r\n- peerix (https://github.com/cid-chan/peerix) \r\n- nil (https://github.com/oxalica/nil)\r\n- nvd\r\n- nix-diff\r\n- nix-du','When looking for deployment tools I considered bento (https://github.com/rapenne-s/bento) as its pull model was much more appealing than the rest, but due to the low number of personal Machines, I never deployed it, and manually ran nixos-rebuild instead.',''),(313,NULL,1,'en','2135371930','A2','A3','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(314,'1980-01-01 00:00:00',5,'en','690967428','A2','A4','male','','','','','','Y','','','Y','','Y','','','','','','','','','','','Y','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Stumbled upon a YT video by DistroTube which made me very interested on the descriptive and repeatable approach. Some time later, I started using it for setting up dev environments.','','Y','','','Y','','Y','','Y','','','Y','','Y','Y','Y','','Y','','','A2','A8','A1','','','','','','','','A4','A9','A5','','','','','','','','','','','','',NULL,'Docker + Dockerfile for CI/CD\r\nUbuntu for base OS','A1','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Still learning Nix but I do want to contribute sometime.','N','N','More time! It\'s a bit of a time investment to reconfigure everything as I would like, but I will do a full switch eventually.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-','-','I love NixOS concept but too much bad software (proprietary mostly) relies on the Linux Filesystem standard and having certain files in certain places. It would be great to have the possibility of a \"hybrid\" NixOs in which one could more easily to accommodate these types of requirements.'),(315,'1980-01-01 00:00:00',5,'en','1430669434','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A12','A5','','','','','','','','','','','','',NULL,'building/ci: ad hoc solutions, docker\r\ndistro: Arch Linux\r\ndistro(server): dunno','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A1','A2','','','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','','Y','','','A2','','the repo being too big to contribute to with bad internet','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','Y','Y','','','','','declarative configuration','reproducability','rollbacks','','Arch Linux, ?? on servers','','','','Y','','Y','','Y','','','','','',''),(316,'1980-01-01 00:00:00',5,'en','1835645907','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A1','One of my personal projects is a langauge server, so it should integrate well with a wide variety of editors/IDEs. \r\n\r\nMy dream is to be a `nix run …` command away from spinning up an environment pre configured with library version X, server version Y and editor version Z for demos and testing\r\n\r\nI’m still working towards that dream however… ','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','nix run','A2','A3','A10','','','','','','','','A14','A5','A10','','','','','','','','','','','','',NULL,'Hard to say… containers and/or shell scripts perhaps ','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Knowledge and understanding. I have contributed a patch before but it was a trivial change - applying a known fix to a related issue on a different package. ','N','Y',NULL,'It was a silly issue really - couldn’t figure out how to partition my disks with the tools available on the install ISO. \r\n\r\nThat was before the new installer was available mind. ','Not sure. I’ve since settled on using Nix on top of Fedora Kinoite, it seems to work well for what I need, so I see no reason to change for the time being. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None',''),(317,'1980-01-01 00:00:00',5,'en','680927375','A2','A3','-oth-','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I wanted to keep a list of installed and requested packages that I could sync between machines','Y','Y','','','','','Y','Y','','','','','Cloud VM','','Y','Y','Y','','','','A10','A7','A1','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'Macports and/or pkgsrc','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','I didn’t like having to remember how I set up Arch when I reinstalled it, nor the breaking updates','','','Y','','','','Cloud VM','Declarative configuration','Service modules','Atomic system updates','systemd','Arch or Gentoo','Y','','','','','','','','Y','','','','NixOps',''),(318,'1980-01-01 00:00:00',5,'en','347895823','A2','A2','male','','','','','Y','Y','Y','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I started using Mint, later switched to Arch and slowly became more and more annoyed with how messy config files tend to be and the difficulty in reproducing my system configurations across my three devices, then switched all my systems to NixOS and has since used Nix for work and school work.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A7','A2','A9','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'Docker and/or ansible','A1','','','','Y','Y','','','','Y','','','','','','','','Y','','Y','','','','A20','A13','A2','A1','A17','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','','A2','','Have nothing concrete to add / some additions would be too major for a single developer (better Julia support for instance)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Switched to NixOS due to frustrating config files and irreproducible configurations across multiple systems.','Y','Y','Y','Y','','','','Atomicity and the system being very robust to becoming bricked like other bleeding edge distributions (Arch, etc.)','Reproducibility','Easy to set up configs','Standardise the CLI, remove duplicate ways of doing the same thing, and writing exhaustive documentation for Nix and NixOS','Ansible or Docker','Y','','','','','','','','','','xmonad','','Mach-nix and other tools for managing Python, since they tend to break',''),(319,'1980-01-01 00:00:00',5,'en','617361763','A2','A4','male','','','','','Y','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Automated and Reproducible development environments','Y','Y','','','','','Y','','Y','','','','','','Y','','Y','','','','A2','A6','','','','','','','','','A8','A5','A3','','','','','','','','','','','','',NULL,'Docker','A1','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A2','A19','A1','','','','','','','','','','','','','','','','','','','A19','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time. ','N','Y',NULL,'Using nixos requires more buy-in from a team than just nix alone. Packaging own applications can be tricky (gradle builds, etc). Hence, i focus more on popularising nix for development environment. ','Once nix is more established in teams',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(320,'1980-01-01 00:00:00',5,'en','687214196','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Declarative management and reproductible builds are sexy','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A2','A7','A1','','','','','','','','A15','A5','','','','','','','','','','','','','','Consistency between tools, indicate clearly in docs what command is deprecated, what is THE WAY to do something','OpenSUSE','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Clear documentation on how to do it, also most software I use is already well maintained by more competent people','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Always looking for a CLEAN way to manage my Linux and stumbled upon NixOS while doing research. The declarative and rollback ability sold it to me, as well as the already impressive number of packages','','','','','','','Desktop','Ease of use','Package availabity','Stability','Remove unecessary overlaps (ex: flake vs channels)','OpenSUSE','Y','','','','','','','Y','','','','','','Thank you for this amazing piece of software that makes Linux easy and fun to use'),(321,'1980-01-01 00:00:00',5,'en','628716539','A2','A3','male','','','','','','','Y','','','','','','Y','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','I love the reproduceability and portability of my configurations. ','Y','','','','','','Y','','','','','','','Y','','','Y','','','','A2','A7','A10','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'Homebrew on MacOS, Pacman on Linux','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A19','','','','','','','','','','','','','','','','','','','','','A19','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','High learning curve.','N','Y',NULL,'I decided to stick with a home-manager flake until I learn enough to manage an entire NixOS machine and the co figuration repository. ','Flakes stable, better IDE and intellisense for Nix.\r\nSupport for JetBrains products in packages. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Thank you so much for your efforts!\r\nI really wish to see Nix become even more mainstream!'),(322,'1980-01-01 00:00:00',5,'en','1491274582','A2','A2','','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I didn\'t want to reconfigure my server setup for a specific project all the time when I reinstalled, and I\'m bound to give that project to another person sometime in the future. So I wanted to have a way to actually _describe_ the system rather than having a mutable furball, and once someone on Discord told me about NixOS, it all went {down,up}hill from there.','','Y','','','','','Y','','','Y','','','','','Y','','Y','','','','A2','A7','A10','','','','','','','','A2','A4','A14','','','','','','','','','','','','',NULL,'Most likely I\'d be in a weird mix of ansible and custom solutions.','A2','','','','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A2','','- High count of PRs in the sense of \"my additions are not that interesting and are just more noise\"\r\n- No clear directions on how a PR should be structured\r\n- Not clear if third-party-but-actually-not-since-they-have-merge-access software should be used or not (see: nixpkgs-review)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Was annoyed about having to set up servers all over again for a reinstall, and I didn\'t want to present someone with a mutable furball once they\'d need to take over the project. Whoops, I heard about NixOS on Discord, and here we are, with an extra module for the project we\'re using.','Y','','','Y','','','','Declarative configuration','Atomic upgrades','(if done right) No hidden surprises','Somehow make it possible to cache or communicate profile-guided packages, so I don\'t have to rebuild the same package like the kernel which is built using `fastStdenv` on every individual machine, which are all very similar setups.','Ansible and custom hacky scripting solutions.','Y','','','','','Y','','','','','sway','nix-index (and I\'d _love_ to have this integrated in Nix itself)','Flakes. But seeing that they praised and almost enforced from the community while being unstable, I wasn\'t exactly sure if I wanted to rely on them.',''),(323,NULL,1,'en','553747727','A5','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(324,NULL,2,'en','1577498039','A2','A3','male','','','','Y','Y','','Y','','','','','','','','','Y','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','For reliability, my Linux system broke 3 times in one month after the Arch project knowingly pushed the system-breaking changes to release without a warning.','Y','Y','','Y','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A10','A7','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'Immutable container-centric operating systems and DevOps processes. ','A2','','','','Y','','','','','','','','','','','','','','','Y','','','','A2','A13','A15','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(325,NULL,1,'en','1588646237','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(326,NULL,1,'en','552557446','A1','A2','-oth-','prefer not to answer','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(327,'1980-01-01 00:00:00',5,'en','1365880358','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A3','A9','A10','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'Arch or Alpine','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','','Hyprland','','',''),(328,'1980-01-01 00:00:00',5,'en','1797185296','A2','A2','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','for example, override package versions if I use channel (not flake)','','','','','','','Y','there isn\'t graphical package installation/config editor as official package','','','Y','flakes are experimental, but recommended by most users to use','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'- flake uncertainty\r\n- no graphical applications to install packages/setup the system\r\n- some options only through nix files which screws up some graphical applications','If everything I have described above is corrected',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Keep up the good work! You are very interesting to watch and I am looking forward to more exciting news from the project'),(329,'1980-01-01 00:00:00',5,'en','1544248554','A5','A4','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','Y','','','','','','Y','','','','','','','','','Y','','','','A7','A10','A1','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'debian','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A3','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(330,NULL,1,'en','573786631','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','Android','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(331,'1980-01-01 00:00:00',5,'en','1186973731','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Wanted to distrohop from Void since xbps had (has) pretty limited versatility when it comes to building packages (wine WoW is not a thing there). I was considering Alpine, but then I found out about Nix (don\'t remember how) and decided to give it a spin on Void. Wasn\'t particularly great, so I decided to install NixOS directly. Never looked back.','','','','','','','Y','Y','','Y','','','GitHub CI','','Y','Y','Y','','','','A2','A3','A10','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'Alpine or Arch.','A2','Y','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A3','A4','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Same story as Nix.','Y','Y','Y','Y','','','','Declarative configuration','Rollbacks','Easy installation using flakes','Better type errors. Reading walls of stack traces and getting no definitive answer as to what\'s going wrong is time-consuming.','Alpine or Arch.','Y','','','','','','MatthewCroughan/nixinate','','','','Hyprland','Home Manager, nix-direnv, Cachix, agenix, lanzaboote','','Keep up the good work! Nix will thrive!'),(332,'1980-01-01 00:00:00',5,'en','346264586','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A8','A9','A14','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(333,'1980-01-01 00:00:00',5,'en','615652450','A2','A3','male','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I didn\'t understand what people meant by a functional, immutable OS... So i tried, understood, and became addicted ;)','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','Y','','A2','A3','A10','','','','','','','','A4','A13','A11','','','','','','','','','','','','',NULL,'There no replacement really..','A4','','Y','','Y','Y','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','A3','A4','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was curious about what a functional OS was. So i tried, understood, and I\'m hooked!','Y','','Y','Y','','','','Declarative conf that you can share between many machines','Easy to personalize everything, OS, conf, software packaging, and even the software itself.\r\nAll while still being able to update everything easily ','Lots of packages and up to date','Content addressed store and better error messages','Probably archlinux with aur, but that\'s so far away from nixos...','Y','','','','','','','Y','','','','The ability to patch packages and still be able to update them.\r\nHome-manager!\r\n','','Thanks for everything '),(334,NULL,1,'en','119667209','A2','A3','male','','','','','','','','','','','Y','','','','Y','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(335,'1980-01-01 00:00:00',5,'en','1727699983','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I was made to use NixOS on a new desktop build, so I started using Nix for most of my projects.','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A5','A6','A9','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A3','A15','A13','A5','A4','A17','A21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I\'m not really proficient enough to make meaningful/useful contributions.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I built a new desktop then tried to install Arch on it but there were a large number of IO related issues. A friend of mine had been using NixOS for about a year, so I installed that and everything worked.','Y','','Y','','','Y','','Modular declarative system configurations. It makes configuring a large number of slightly different devices very easy.','Reproducibility.','Well-documented service and application configuration.','','Debian with Nix if that still exists in the hypothetical. Arch otherwise.','Y','','','','','','','','','','i3wm','','',''),(336,'1980-01-01 00:00:00',5,'en','451695686','A2','A2','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted to have a way to put my /etc in git, and reuse it across machines. Tried Ansible, didn\'t stick for workstations, then I discovered Nix and stuck with it since. ','Y','Y','','','Y','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A7','A6','','','','','','','','A6','A8','A9','','','','','','','','','','','','',NULL,'Probably Ansible or equivalent','A4','','Y','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A2','A9','A15','A3','A1','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted a way to put my /etc in git. Tried Ansible, which didn\'t stick, ended up discovering NixOS, never looked back','Y','','','','','','','Cross-machine usability (and cross-platform)','Stability','The fact that it\'s Nix based','Secrets management\r\nI used to use nixos for my personal servers, but I dont want to have to go through the trouble of writing a nice and clean nixos module on a Friday evening when I just want to start a Minecraft or Factorio server to play with friends, so I went back to debian ','Debian for servers (which I currently do, see previous question)\r\nArchLinux for workstations ','Y','','','','','','','','','','i3','poetry2nix\r\nrust-overlay\r\nnix-darwin\r\nhome-manager\r\nsoxin (which I develop)','Basically all of the deployment tools',''),(337,'1980-01-01 00:00:00',5,'en','253482438','A8','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','The declarative and functional nature is very appealing when dealing with system configuration and development for my work.','','','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A2','A7','A10','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'Bash scripts + Docker I guess?','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A3','','','','','','','','','','','','','','','','','','','','A15','A2','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time and lack of experience','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Started on Arch because I was got fed up with Windows. Moved over to NixOS after I heard about its declarativity.','Y','','','','Y','','','Declarative configuration model','Reproducible system configurations','Rollbacks','Fully functional, mature GUI configuration editor','Probably Arch, maybe Guix?','Y','','','','','','','','','','SwayWM, newm','','','I <3 Nix and NixOS :D\r\nThank you to everyone in the community who works on this project!'),(338,'1980-01-01 00:00:00',5,'en','386087232','A2','A3','male','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Followed a fairly traditional journey to Linux. Windows -> Ubuntu -> Arch -> NixOS. Experienced frustration with how the system was managed until I found Nix.','Y','Y','','Y','','','Y','','','','','','','Y','Y','Y','Y','Y','','','A1','A2','A8','','','','','','','','A3','A5','A14','','','','','','','','','','','','',NULL,'Honestly can\'t really imagine not using it. Would just be distro package manager and random configs','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Pretty sure I\'m too stupid','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Same as prev, was introduced to Nixos and hence Nix','Y','','','','','','','Entire system configuration as code','Stable','Ease of use once understood ','','Nix-darwin','','','','','','','','Y','','','Hyprland / BSPWM','Devenv.nix\r\n','Poetry2nix. Mainly due to devenv.nix providing fantastic abstractions and consistently works. This is most likely due to problems with python and it\'s ecosystem however.','Thank you as always and appreciate the hard work.'),(339,'1980-01-01 00:00:00',5,'en','1707070550','A2','A2','male','','Y','Y','','','Y','Y','','','','','','','','','','Y','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','As a natural consequence of using NixOS.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A10','A4','A2','','','','','','','','A8','A9','A11','','','','','','','','','','','','',NULL,'Probably something based on OSTree.','A2','','','','Y','Y','','','','','','','','Y','','','Y','Y','','','','','','A13','A9','A5','A2','A4','A3','A1','','','','','','','','','','','','','','','A5','A9','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','People on the internet tried to bully me into using NixOS. I installed it in a VM to try it out so I could tell them things aren\'t as great as they advertised. Things were as great as they advertised.','Y','Y','Y','Y','','','','Fully declarative OS management, \"as Code\"','Managing anything from app deployments to OS upgrades through git push, truly the GitOps way','NixOS Tests','I would make services multi-instance capable, e.g. instead of services.nginx.enable giving you one systemd service for nginx, you could have multiple, similar to what services.redis does. I would also try to make services more self-contained, so it would be possible to build them independently from any full NixOS configuration, making it possible to easily deploy them via systemctl link, essentially a replacement for systemd-portabled that can use the Nix store instead of juggling filesystem images.','I would probably still be working on a custom distro that does something similar to what NixOS does.','','','','','','Y','Hercules CI Effects runNixOS, \"nix system\" from Nix Super','Y','','','','Agenix, Lanzaboote, flake.parts','devenv, due to its --impure requirement, will probably revisit',''),(340,'1980-01-01 00:00:00',5,'en','1609571497','A2','A3','-oth-','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','','','Y','Y','','Y','Y','','','','','','','Y','Y','Y','Y','Y','','A7','A9','A6','','','','','','','','A12','A2','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','sway','','',''),(342,NULL,NULL,'en','1358120812',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(341,'1980-01-01 00:00:00',5,'en','1806810344','A2','A3','male','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','The ideas behind Nix/NixOS looked interesting. I got a new laptop from work I used to experiment with it (NixOS), eventually migrated all of my devices.','Y','','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A7','A1','','','','','','','','A6','A7','A2','','','','','','','','','','','','',NULL,'Probably containers.','A4','','','','Y','Y','','','','','','Y','','','','','','Y','','','','','','A6','A2','A3','A9','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I started using Nix with NixOS, so the previous answer applies.','Y','Y','Y','Y','','','','Declarative configuration','Module system','Easy sharing of configuration between machines','Better support for minimal systems ala NixNG, secure boot (I\'ve yet to try lanzaboote).','Guix. If that doesn\'t count, probably Arch or Void, although around 2019 when I left, the Void community had some issues. Not sure how things are right now.','Y','','','Y','','','','Y','','','','home-manager, nix-index, nil, noogle, nixos-generators, flake-parts, haumea, nix-direnv','flake-utils: replaced by flake-parts, lorri: replaced by nix-direnv',''),(343,NULL,NULL,'en','936780585',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(344,NULL,2,'en','561053450','A2','A2','male','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','Y','','','Y','','Y','','Y','','','Y','','Y','Y','Y','Y','Y','','','A7','A2','A10','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','Y','Y','','','','Y','','','','','','A2','A13','A3','A15','A14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(345,'1980-01-01 00:00:00',5,'en','445180365','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','to keep my configurations reproducible','','Y','','','','','Y','Y','','','Y','','','','Y','Y','Y','Y','Y','','A2','A1','A7','','','','','','','','A2','A12','A6','','','','','','','','','','','','',NULL,'macOS','A2','','','','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','it was more stable than macOS once configured','Y','','Y','','Y','','','declarative system configuration','reproducible builds','rollbacks','strongly typed Nix','macOS','Y','','','','','','','Y','','','','home manager, easy-purescript-nix, mobile-nixos','',''),(346,'1980-01-01 00:00:00',5,'en','1800425730','A2','A3','fem','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','','','','','Y','','Y','','','','','','','','Y','','Y','','','','A2','A7','A10','','','','','','','','A8','A7','A14','','','','','','','','','','','','',NULL,'Ubuntu with distrobox ','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I need to get more familiar with the Nix language to do so','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','The declarative nature of Nix, absolute game changer for me','Y','','','','','','','Reproducibility','Expressiveness','','','Ubuntu with distrobox','Y','','','','','','','Y','','','','','','Option to create a flake config from the installer, although being it experimental.\r\n\r\nAlso having a suggested way to build the flake config for nixos'),(347,NULL,1,'en','102391245','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(349,'1980-01-01 00:00:00',5,'en','438351551','A2','A2','male','','','','','Y','Y','Y','','Y','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','','','Y','','','Y','','Y','','','','','','','','Y','Y','Y','Y','','','A2','A5','A10','','','','','','','','A4','A3','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','dwl','','',''),(348,'1980-01-01 00:00:00',5,'en','1376556979','A2','A3','male','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A6','','','','','','','','A8','A14','A3','','','','','','','','','','','','',NULL,'','A2','','','Y','Y','','','','','','','','','','','','','','','','','','','A2','A15','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','','','Y','','','','','','','','Y','','','','','','','','','','hyprland','','',''),(350,NULL,2,'en','1185804765','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I started using Nix because I was tired of the very slow onboarding on my distro of choice at the time when reinstalling my system (archlinux). At this point I had a dotfiles repo, a length wiki about the Archlinux installation rom the archiso and some scripts to tie it up all together.\r\nNixOS was generally brought upon when discussing the Archlinux installation process in the /r/archlinux subreddit. I decided to jump on it when I had some time (3-day week-end) and haven\'t looked back since. I\'m now using NixOS on all my systems and all the installations are kept in a common github repository. Re-installing a system is as easy as going through the minimal NixOS setup and running \"nixos-rebuild\"!','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A10','A7','A3','','','','','','','','A9','A8','A6','','','','','','','','','','','','',NULL,'Linux distro: I would use Archlinux\r\nPackage managing: a mix of pacman/pip/pyenv/pipenv/dotfiles repo/stow/scripts','A1','','','','Y','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','A21','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don\'t know the basics of packaing/updating/testing a package in nixpkgs. For example for a simple package update, is it as simple as bumping a version somewhere? How do I easily test the new version on my fork?','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(351,'1980-01-01 00:00:00',5,'en','802283206','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A3','','Y','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'Guix or Arch','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A15','A3','A1','A13','','','','','','','','','','','','','','','','','','A13','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(352,NULL,1,'en','322925226','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(353,'1980-01-01 00:00:00',5,'en','636107980','A2','A3','male','','','Y','Y','Y','','','','','','','','','','','Y','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Found out about nix from DistroTube the YouTuber, and have always wanted to be able to centrally configure a system in one place, without dot file hell. That’s what drew me in.\r\n\r\nThe fact that nix-unstable is as up to date as Arch&AUR most of the time, but I’ve not had breakage yet. That’s what’s going to keep me!','','','','','','','Y','','','','','','','','','','Y','','','','A10','A1','A7','','','','','','','','A14','A5','A13','','','','','','','','','','','','',NULL,'Probably Arch+dot files+config scripts','A2','','','','','','','','','','','','','','','','','','','','','','','A9','A21','','','','','','','','','','','','','','','','','','','','A9','A21','','','','','','','','','','','','','','','','','','','','','','','','A1','','Learning curve with Nix language to make and maintain custom expressions ','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Was introduced by YouTuber DistroTube, who also did a video on GNU Guix. I wanted the ability to centrally control and configure my system from one place rather than ‘dot file hell’. That’s what got me into trying it.\r\n\r\nI’ve had three runs at using Nixos, keeping it for longer and longer times before hopping.\r\n\r\nThe unstable channel is as up to date as Arch&AUR and I’ve had no update related breakages yet. That’s what’s keeping me into nix.','Y','','','','','','As lightweight desktop OS on old laptop','Unstable has 99% of packages I ever search for','0 Desktop environment bugs caused by updates','Centralised config, with many options','I would add in a simple interface for finding the options available to a package. If the wand is powerful enough, I’d actually want a GUI app which serves all those options graphically.','Arch + install script ','Y','','','','','','','Y','','','Hyprland ','','Home manager\r\n- it fails consistently on my system, and when I can get it to install packages, as soon as I try to update them it breaks\r\nI’ve tried to debug it at length but have given up and just use plain Nixos config to set packages','Thanks for doing such an excellent job, and creating such a cool but also extremely useful technology.\r\n'),(354,'1980-01-01 00:00:00',5,'en','298623077','A8','A4','','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','I own a mug which reads \"Use Nix for Literally Everything\"','A4','I was annoyed at tools like Ansible where asking for a configuration change and then deleting the ask caused software to be left behind. I was annoyed at Gentoo for needing manual `emerge -e world` when you changed CFLAGS. Nix solved both of these problems, and it looked like people were taking the time to do things right.','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A9','A4','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'Probably a really sad Rube Goldberg contraption of containers to try and get some kind of build isolation.','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A13','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Declarative configuration done right. I was sick of rebuilding my personal machines every N years.','Y','Y','Y','','','','','Declarative Configuration','','','','Gentoo','Y','','','','','Y','','','','','i3','haskell.nix','',''),(355,NULL,1,'en','121085559','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(356,'1980-01-01 00:00:00',5,'en','1743648392','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','Y','','Y','','','','','Y','','Y','','','','','A2','A8','A9','','','','','','','','A8','A3','A5','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A14','A2','A1','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(357,'1980-01-01 00:00:00',5,'en','633705891','A2','A4','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A7','A9','A10','','','','','','','','A8','A9','A15','','','','','','','','','','','','',NULL,'','A4','','','','','Y','','','','','','','','','','','','','','','','','','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(358,'1980-01-01 00:00:00',5,'en','294422965','A1','A3','male','','','','','','','','Y','','','','','','Y','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted to install something not supported on the ancient Debian version we use at work. ','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','','A2','A3','A9','','','','','','','','A8','A12','A2','','','','','','','','','','','','',NULL,'I guess nothing','A1','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A2','A1','A9','A15','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','The complexity of things I want to package, such as font-bakery for python','N','N','I do want to try it for a homelab, I just have to build it',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nix with Racket via dream2nix. It’s very cumbersome at the moment, would be nice to see improvements ','',''),(359,'1980-01-01 00:00:00',5,'en','1363683735','A5','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A7','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'Arch Linux or maybe look at Fedora Silverblue ','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','Y','','','','','','','','','','','','','','','','','','Y','','','','',''),(360,'1980-01-01 00:00:00',5,'en','964397060','A2','A3','male','','Y','','','Y','','','','Y','','','','','','','','','Y','','','Y','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','Y','','','Y','Y','','','Y','Y','Y','Y','Y','','A2','A1','A6','','','','','','','','A8','A2','A5','','','','','','','','','','','','',NULL,'bazel','A4','','','','Y','','','','','','','','','','','Y','','Y','','Y','','','','A2','A4','A17','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','Y','Y','','Reproducibility','Declarative system configuration','Remote management','Make flake feature the default','Arch linux','Y','','','','','','','','','','i3wm','poetry3nix','mach-nix',''),(361,NULL,2,'en','1192190866','A2','A3','male','','Y','','','','','Y','Y','Y','Y','','','','','Y','','','Y','','','Y','','Y','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Originally? It was just too difficult to manage my GHC toolchain versions and Nix was super helpful for that. :)\r\nA few months later, I used more and more Nix packages so I tried to use NixOS on a server to set-up my mailserver etc.\r\nSince it was super easy and maintainable, a year later I moved to full-time NixOS :)','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A8','A4','A14','','','','','','','','','','','','',NULL,'Probably Homebrew / Debian packages; Docker. Would be a sad life though.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A11','A4','A2','A1','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Nothing worthwhile to contribute, sadly.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(362,'1980-01-01 00:00:00',5,'en','2175751','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','Found NixOS while looking for a Linux Distro and saw Nix. I found the principles around Nix to match what I was looking for and it seemed to solve a lot of problems I\'ve had.','Y','','','Y','','','Y','','','','','','','','Y','','','','','','A2','A3','A1','','','','','','','','A8','A4','A5','','','','','','','','','','','','',NULL,'Distrobox or similar','A1','','','','Y','Y','','','','','','','','','','','','','','','','','Non','A4','A3','','','','','','','','','','','','','','','','','','','','A4','A3','','','','','','','','','','','','','','','','','','','','','','','Non','A2','','lack of knowledge on how to package software and the complexity of the Nix language. ','N','Y',NULL,'Found it tricky to set up and I haven\'t had time to try again ','Better documentation, especially for flakes ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(363,NULL,NULL,'en','1821717984',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(364,'1980-01-01 00:00:00',5,'en','1769410912','A2','A5','male','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I was looking for an OS that would work well with some lxd containerized apps. NixOS helped me build an OS with all the apps installed and configured, with relatively easy deployment. Something that could be easily destroyed and redeployed. ','Y','Y','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A6','A2','','','','','','','','A14','A4','A8','','','','','','','','','','','','',NULL,'lxd and ansible','A1','','Y','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','It is really hard to learn how to write packages with python dependencies if you are a beginner. I am really trying!','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','Y','','','','','Flexibility ','Reproducible ','Build cache','A gui wizard for creating boilerplate .nix','Lxd and ansible. ','Y','','','','','','','Y','','','Hyperland and bspwm ','','','Please focus on users that are not programmers so it lowers the barrier of entry. It is also important to decide that flakes are to become 1st citizen or not. There are a lot of documentation dispersed and going on different directions. '),(365,'1980-01-01 00:00:00',5,'en','1280345134','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','A guy on a discord server kept talking about it. He kept posting blog posts and other materials. I looked at it and it looked cool so I tried it. The zero to Nix guide was really good.','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','','A1','A2','A3','','','','','','','','A5','A14','A3','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','Y','','Y','','','','A4','A6','A12','A2','A1','','','','','','','','','','','','','','','','','A12','A15','A4','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','N','Better learning resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(366,'1980-01-01 00:00:00',5,'en','876390663','A5','A3','male','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I was performing analysis of next-generation sequencing data and found myself annoyed at the lack of reproducibility in “install this Python package but first install this C library,” so I turned to Nix for a better way to manage dependencies.','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A4','A5','','','','','','','','','','','','',NULL,'Guix?','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A21','A2','A4','A3','','','','','','','','','','','','','','','','','A21','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I wanted to try something new for my VPS, particularly something declarative so I could not have to remember a million tiny details next time I set it up.','Y','','Y','','','','','Declarative system configuration','Type-checked modules','Rollbacks','I would stabilize flakes as the way of configuring the system.','Probably Arch? Maybe Debian for some cases.','Y','','','','','','','','','','','home-manager','',''),(367,'1980-01-01 00:00:00',5,'en','2025924783','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A2','','','Y','','','','','Y','','','Y','','','','','','','Y','','','','A2','A10','A1','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'Freebsd, arch','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A2','','','','','Y','','','','','','','','','Y','','','','','','','Y','','','','','',''),(368,'1980-01-01 00:00:00',5,'en','2001942316','','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It was an improvement over Gentoo.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A6','A2','A1','','','','','','','','A11','A15','A6','','','','','','','','','','','','',NULL,'Tup','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Better than Gentoo.','Y','','Y','','','','','Declarative configuration and package selection.','','','Init system agnosticism.','Genode, OpenBSD.','Y','','','','','','','','','','sway','','',''),(369,'1980-01-01 00:00:00',5,'en','1884220157','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','need reproducible dev setup','','Y','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A2','A1','A3','','','','','','','','A6','A8','A14','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','lack of knowledge','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','','','','more documentation, more packages, better cli','','Y','','','','','','','','','','hyprland','','',''),(370,'1980-01-01 00:00:00',5,'en','1668678572','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A6','','','','','','','','A8','A9','A2','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','','flake-parts','flake-utils','Ask about sentiments towards Nix consultancies next year.'),(371,'1980-01-01 00:00:00',5,'en','1451622409','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A2','It got recommended to me by a fellow student to solve dependency issues','','','','Y','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A5','A9','','','','','','','','','','','','',NULL,'Docker','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','A1','A13','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Did not have the need except for niche packages','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A2','I decided to try it after playing with Nix a bit. I was looking for a linux distro for my laptop and after breaking few Debian instals i decided to try NixOS','Y','','Y','','','','','Declarative environment','Stability','','- add a warning when installing a package with environment.systemPackages that is available as programs.package-name instead.\r\n- make some best practice recommended ways of writing and modularising configuration.nix.\r\n- built in configurable generations trimmer (eg. keep all younger than x, and at least y)','Debian','Y','','','','','','','','Y','','','','',''),(372,'1980-01-01 00:00:00',5,'en','1600126943','A2','A4','male','','Y','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','','','','','','ProxMox','','Y','','Y','','Y','','','Y','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','Y','','','','','','A6','A10','A4','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','','Y','Y','Y','','','','','','','','','Y','','','','','','','','','','','','',''),(373,'1980-01-01 00:00:00',5,'en','1228703921','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','NixOS was recommended to me by a friend, I started using it because I found the promise of a reproducible environment appealing.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A1','A7','A10','','','','','','','','A7','A8','A3','','','','','','','','','','','','',NULL,'Another Linux distribution.','A4','','','','Y','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I\'m not very good with the Nix language.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started using it the same time I started using Nix, it was recommended to me by a friend.','Y','','','','','','','Reproducible environment','Centralized configuration','Atomic updates','I would change Nix to have better error messages','Linux Mint','Y','','','','','','','','Y','Y','','','',''),(374,'1980-01-01 00:00:00',5,'en','588538864','A5','A3','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','Y','','A2','A7','A10','','','','','','','','A8','A2','A12','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A13','A15','A3','','','','','','','','','','','','','','','','','','','A15','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I have contributed, but it is a pain. PRs sit open for an extreme amount of time, even in an approved state.\r\n\r\nNixpkgs itself is full of broken and out of date derivations that I have to override, but fixing them upstream has too much friction.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','','Y','','','','','','','Y','','','Y','','','','','','','Xmonad','','Nixops',''),(375,'1980-01-01 00:00:00',5,'en','1167425710','A2','A2','male','','','','','','','','','','Y','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','More powerful replacement for docker as deployment tool.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','','','','','A7','A8','A2','','','','','','','','A13','A6','A15','','','','','','','','','','','','',NULL,'podman / custom build scripts / docker-compose','A1','','','Y','Y','Y','','','Y','','','','','Y','','','','','','Y','','','','A1','A15','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I needed an ability to ~safely~ update configuration of remote host.','Y','','Y','','','','','Declarative configuration','Reversible upgrades','Reusing same configuration for multiple servers','- Tool for Initial deployment to VPS or best practice for doing that.\r\n- Apps deployment best practice (something like https://github.com/astro/skyflake)\r\n- Refactor module system','k8s / docker-compose / CI scripts','','','','Y','','','','','','','','flake-parts\r\nnix-tree\r\ndevenv\r\nragenix\r\nmanix','',''),(376,'1980-01-01 00:00:00',5,'en','1319626409','A5','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started using Nix so I could describe my entire OS with a single .nix file. This seemed like a huge improvement in the management of my personal computers.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','Building container images (arion)','A7','A2','A10','','','','','','','','A8','A2','A4','','','','','','','','','','','','',NULL,'I would have to take a deeper look at some of the other package managers which try to do what Nix does... but such a reality sounds like a bad nightmare to me.','A4','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A15','A1','A17','','','','','','','','','','','','','','','','','','','A15','A17','A1','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','The idea behind single configuration file with high level abstractions (NixOS options) to configure your OS was amazing to me. Instantly sold.','Y','Y','Y','Y','','','','Reproducible','Declarative','Reliable','Improve the speed of evaluating/building systems.','I don\'t know of anything similar. The premise of this question terrifies me ;-)','Y','','','','Y','Y','','','Y','','','arion, sops-nix','',''),(377,NULL,1,'en','855409337','A2','A3','male','','','Y','','','Y','','','','','','','','','','','Y','','','','','','','Y','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(378,'1980-01-01 00:00:00',5,'en','1933152666','A2','A4','male','','','','','','Y','Y','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Development shells, specifically for Perl projects that needed different package versions.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A8','A9','','','','','','','','A9','A8','A7','','','','','','','','','','','','',NULL,'Debian APT and Docker','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','Azure Pipelines','A13','A15','A4','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','patches','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Mainly because of declarative containers and reproducible installation.','Y','','Y','','','','','Declarative configuration','Declarative containers','Fix-point merging with imports','Rename system.stateVersion to system.compatibilityVersion or something that confuses people less.\r\n\r\nImprove evaluation speed.','Debian','Y','','','Y','','','','','','','xmonad or hyprland','- Cachix\r\n- cachix-action (GitHub)\r\n- flake-utils\r\n- Home Manager\r\n- install-nix-action (GitHub)\r\n- Naersk\r\n- nix-direnv\r\n- nix-top\r\n- nixfmt\r\n- nixos-hardware\r\n- NUR\r\n- sops-nix\r\n- update-flake-lock (GitHub)','Lorri (switched to nix-direnv)','Good work with the survey!'),(379,'1980-01-01 00:00:00',5,'en','1670043097','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','Y','','A2','My school is using it for projects ','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A4','','','','','','','','A8','A5','A9','','','','','','','','','','','','',NULL,'GUIX','A4','','','','Y','Y','','','','','','Y','','','','','','','','','','','','A2','A15','A6','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Don\'t have much time right now','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(380,NULL,1,'en','961002090','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(381,NULL,1,'en','2047110893','A2','A4','male','','','Y','Y','','','Y','','','','Y','','','','','','','Y','','','','Y','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(382,NULL,2,'en','1234375356','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(383,'1980-01-01 00:00:00',5,'en','683909011','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Had dependency problems with cabal so I switched my Arch install to NixOS','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A3','A2','','','','','','','','A8','A14','A3','','','','','','','','','','','','',NULL,'Arch and package managers for languages I use','A4','','','','','','','','','','','','','','','','','','','','','','','A13','A2','A14','','','','','','','','','','','','','','','','','','','A4','A2','A13','','','','','','','','','','','','','','','','','','','','','','','A2','','I will start during Summer of Nix :)','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Arch had dependency problems for my Haskell builds so I switched to NixOS','Y','','','','','','','No dependency hell','nix-shell','automatic memory management','Use some more sane language than nix.\r\n\r\nFeature for updating things in place for devices with little memory.','Arch','Y','','','','','','','','','','i3','','',''),(384,'1980-01-01 00:00:00',5,'en','1763315995','A5','A5','male','','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','When I changed jobs, I wanted to set up the new OSX laptop with the same software and configuration on both. Home-manager and nix-darwin looked like a great way to do this but the learning curve has been very steep. I\'ve had to uninstall and reinstall many times after I get into some broken state.','Y','','','','','','Y','','','','','','','','Y','','Y','','','','A3','A10','A1','','','','','','','','A8','A5','A9','','','','','','','','','','','','',NULL,'I\'ve tried many tools over the years and none are great for synching software and configuration across machines. In the past, I\'ve tried unison, got repositories, gnu stow, but nix has been the best so far. I feel like if nix leaned into home-manager and nix-darwin for personal machine config across machines, it would fill a missing niche and become really successful and popular.','A1','','','','','Y','','','','','','','','','','','','','','','','','','A20','A5','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Not knowing flakes which seems like the new thing and not knowing the process around contributing.','N','N','When I get the opportunity to develop on a Linux laptop. Right now, our company is completely OSX.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager\r\nnix-darwin\r\n','','The nickel language looks interesting from a types and error message perspective. I hope it doesn\'t lead to a fractured ecosystem like flakes seems to have done.'),(385,'1980-01-01 00:00:00',5,'en','1221922366','A2','A3','male','','Y','','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Originally, I and my friends/colleagues had set on trying out NixOS to manage a shared devbox, as an alternative to Archlinux+AUR. We had rather soon reverted the decision and moved back to Archlinux, due to unapproachable level of complexity, inconsistent documentation, and, most importantly, our particular use-cases not being supported by anyone. I\'ve been, however, using NixOS as my daily driver ever since, because it provided me with the means to contain the state, and because the distribution supported the option of deviating from maintainers\' decisions using local overlays.','','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','Y','','A9','A10','A2','','','','','','','','A2','A1','A5','','','','','','','','','','','','',NULL,'I\'d be suffering with archlinux and conda','A2','','Y','','Y','Y','','','','','','','','','','','Y','','','Y','','','','A4','A2','A15','','','','','','','','','','','','','','','','','','','A15','A9','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Same story as for Nix','Y','','Y','','','','','\"Containing the state\": however dirty I make the environment, I can later discard most of the garbage by removing a few of lines in the config','Making systemd almost usable','Declarative containers','1. I\'d have it so you could define several instances of any service, without falling back to containers\r\n2. I\'d make it possible to `nixos-rebuild switch` to a new nixpkgs revision without breaking driver-related libraries in `/run/opengl-driver`','Same as with Nix: I\'d suffer with archlinux and conda','Y','','','','','','','','','','sway+lightdm','nix-init','poetry2nix, numtide/devshell',''),(386,'1980-01-01 00:00:00',5,'en','355455272','A2','A4','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Reproducibility, wanted to learn something new','','','','Y','','','Y','','','','','','','','','Y','Y','','','','A2','A1','A3','','','','','','','','A4','A10','A6','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Experience, once I\'m more comfortable with the language and tooling I probably will.','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','Y','','','','','','','Reproducibility','Package availability','Common language to configure files','','Arch','Y','','','','','','','','','','Hyprland','','',''),(387,'1980-01-01 00:00:00',5,'en','56179958','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','A friend recommended NixOS and the descriptive nature was very appealing to me.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Nothing, really. Have not yet made any useful changes.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','Declarative system definition','Rollback','Customizability','','Arch','Y','','','','','','','','','','xmonad','','','Keep up the great work! Thanks.'),(388,NULL,1,'en','1736698376','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(389,'1980-01-01 00:00:00',5,'en','1803999563','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Nix with home-manager on Linux distro was mostly a \"trying out\" experiment as an additional package manager.\r\nPinning, rollbacks, sane dependency management and package configurations were nice extras.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A7','A2','A1','','','','','','','','A4','A5','A8','','','','','','','','','','','','',NULL,'- GUIX, if it didn\'t consider unfree packages as second class or I could live without them.\r\n- regular FHS distro otherwise, distro package manager for system packages and programming language specific tools for everything else.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Not enough experience with Nix language and Nixpkgs functions.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Switch to NixOS was related to a time when on my personal machine (Ubuntu LTS) major upgrade broke a lot of things (pip, libreoffice, python-related dependencies), realistically the easiest way to fix it was going to require full reinstall from scratch.','Y','','Y','','','','','declarative package and configuration management','rollbacks','ability to use impermanence (wiping out root from unnecessary state after each boot)','Add better error messages.\r\nCurrently some errors related to nix language while trying to rebuild (syntax errors, etc.) sometimes require looking through a list of random looking traces. And hopefully one of them points out something that you can recognize from your configuration and figure out what\'s wrong.','- GUIX, if it didn\'t consider unfree packages as second class or I could live without them.\r\n- regular FHS distro otherwise, distro package manager for system packages and programming language specific tools for everything else.','Y','','','','','','','','','','bspwm','home-manager, nix-direnv, nix-init, crane','',''),(390,NULL,NULL,'en','705488693',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(391,'1980-01-01 00:00:00',5,'en','1226705757','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Configuration through a single .nix file is what drew me to the idea. I was tired of manually installing OS, or trying to use my hacked together shell scripts. Nothing was ever exactly like I needed it. NixOS fixed that immediately and I eventually moved any leftover non-NixOS devices to running Nix package manager.','','Y','','','Y','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','Y','Y','','A2','A1','A7','','','','','','','','A5','A4','A6','','','','','','','','','','','','',NULL,'Likely GNU Stow or Git Annex or just GNU Guix (Altho that came after Nix, so...)','A2','','','','Y','Y','','Y','','','','','','','','Y','','','','','','','','A13','A22','A15','A9','','','','','','','','','','','','','','','','','','A22','A13','A15','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Confidence','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I distro-hopped from Ubuntu, Arch, Debian to lighter Void or Alpine. Realized that systemd was not actually that bad so looked to get back into a distro that included it and spotted NixOS. Never looked back.','Y','Y','Y','Y','Y','Y','','Flakes','Configuration','Reproducibility','Software manager that works specifically with Nixpkgs/NixOS that integrated configuration options in a GUI.','Force myself to learn Scheme/Guile and use GNU Guix','Y','Y','Y','Y','Y','','','Y','','','Hyprland','Home-Manager','krops, sops-nix','Doing great work folks. Keep it up. If we could get some of the package managers to create some step by step documentation on how they specifically brought packages to nixpkgs, that would be a great learning resource for those like myself who wish to contribute but just arent exactly sure we can do it right.'),(392,'1980-01-01 00:00:00',5,'en','1601595654','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A7','Heard about several people online using nix to set up complex development environments. ','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A10','','','','','','','','A4','A8','A14','','','','','','','','','','','','',NULL,'Combo of ansible, docker and dotfiles','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A9','A15','A2','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','skill','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','','Y','','','','','','','portable declarative environment','','','','pop-os or arch','Y','','','','','','','','','','sway','','',''),(393,'1980-01-01 00:00:00',5,'en','1512797412','A2','A3','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','I heard about Nix from my friend and I found it quite interesting.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A7','A9','','','','','','','','A2','A8','A14','','','','','','','','','','','','',NULL,'Archlinux ','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A5','A19','A9','','','','','','','','','','','','','','','','','','','A5','A19','A15','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Nothing ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','Declarative configuration','Image generations','','I\'d add more documentation and human-readable errors','Archlinux ','Y','','','','','','','','','','Sway ','nix-ld, nix-direnv','',''),(394,'1980-01-01 00:00:00',5,'en','264888778','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A3','','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'Arch Linux and/or Docker','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A13','A5','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A2','','Many things are already there (yay!), but when it’s not there, it’s the lack of good documentation/how-to guides.\r\n\r\n For example, what are the conventions (adding parameters etc.)? You have to figure out it by looking to other packages most of the time. I know that “new-package.enable” should be used as in the rest of the packages, but other things require research.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','Y','','','','','Reproducible environment','Rollbacks','','*CONSISTENT* Documentation and guides','Arch linux','','','','','','','','','','','i3wm / sway','','','NixOS rocks! Ty all who contributes!'),(395,'1980-01-01 00:00:00',5,'en','2096805694','A1','A2','male','','Y','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A4','A12','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','A11','A4','A3','A2','A1','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Not familiar with the rules for contribution. I only have small patches for updated versions or manually pull plugins for vim.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','reproducibility','declarative configuration','','first-class secret management','','Y','','','','','','','','Y','','','','',''),(396,NULL,2,'en','452801324','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Ubuntu upgrade crashed my system. Couldn\'t work for a full day. Apt scripst collection was getting ridiculous.','','Y','','','','','Y','','','','','','','','','','Y','','','','A7','A1','A8','','','','','','','','A3','A14','A5','','','','','','','','','','','','',NULL,'Guix','A4','','','','','','','','','','','','','','','','','','','','','','','A7','A1','A17','A2','','','','','','','','','','','','','','','','','','A7','A1','A17','','','','','','','','','','','','','','','','','','','','','Y','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(397,'1980-01-01 00:00:00',5,'en','93742372','A5','A5','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','Daily driver','A2','Heard about it on the PodCast \'Linux Unplugged\' and want to test it. I have converted all my workstation devices over, and I am in the process of migrating my servers to NixOS.','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A8','A5','','','','','','','','','','','','','',NULL,'I was a long-term Arch user before trying to leverage ansible to do what NixOS does by default. ','A2','','','','','','','','','','','','','','','','','','','','','','','A2','A3','A4','A9','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Time and understanding the parts well enough to contribute.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I heard about it on the PodCast \'Linux Unplugged\' and decided to give it a go. It totally replaced my Arch Linux/Ansible set up I was trying to use.','Y','','Y','','','','','Declarative config','Role-back','Package selection','...? I am still learning NixOS and Nix, so I am not sure yet. I know I do not know everything, but I do not know enough to challenge why something is done the way it is. Give me a few more months.','I would use Arch w/ Ansible scripts','Y','','','','','','','','','','sway','','','Thank you for taking your time and energy to develop a secure, (fairly) easy to use OS.'),(398,NULL,1,'en','1401405991','A8','A5','male','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(399,'1980-01-01 00:00:00',5,'en','57445685','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','It\'s what runs NixOS','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A5','','','','','','','','A8','A1','A4','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I\'m a new Nixling, as soon as I get comfy with the ecosystem and good practices of the language I\'ll be sure to submit something, already have a few packages that I think need changes.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Converted from Guix after a long tough decision, because of the much larger community and backing, also general higher speed of development and ZFS support. Originally came to declarative systems because I love to tinker and customize but didn\'t want to lose my progress whenever I changed machines.','Y','','Y','','','','','Declarative system','Single language to configure everything on the system','Same system on multiple machines','Probably a cleanup of the codebase. Refactors and stuff.','GuixSD','Y','','','','','','','Y','','','','Dotenv, Nixified-ai, nix-tree, nur-packages, emacs-overlay, a ton of other occasionally useful tools in flake repos','nix-env tbh I just reconfigure or create a shell, my user profiles are completely empty','Thank you for all the hard work, you\'re the best. I adore how great y\'all\'s project has become.'),(400,'1980-01-01 00:00:00',5,'en','1568861413','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A13','A4','A6','','','','','','','','','','','','',NULL,'Fedora Silverblue. You can rebase to a custom container image, which lets me keep atomic updates. See https://ublue.it/ for an example','A2','','','Y','Y','Y','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Most packages that I need are already available','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','','','','','','Atomic, safe updates','Infrastructure as code','Package availability','Add good types to the Nix language.','Fedora Silverblue','Y','','','Y','','','','Y','','','','Alejandra (formatter)','Impermanence',''),(401,'1980-01-01 00:00:00',5,'en','212173837','A2','A6','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I\'m intrigued by declarative configurations for entire operating systems and applications.','','Y','','','Y','','Y','Y','','','','','','','Y','','Y','','','','A2','A3','A7','','','','','','','','A8','A6','A13','','','','','','','','','','','','',NULL,'Fedora blue, or arch.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A13','A17','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Lack of knowledge/confidence.','N','Y',NULL,'Lack of secure boot support (very hard at present!), Plus company uses Ubuntu.','Secure boot support baked in.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(402,'1980-01-01 00:00:00',5,'en','1032954608','A6','A3','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I came across its philosophy it made sense so I started using it. I have been down the FP rabbit hole, so it was easy to buy what nix was selling.\r\n\r\nDeclarative dotfiles management is great.\r\nRollbacks - great\r\nReproducibility - great. (A couple of times I had to set up new machines and I can just get to the current working setup in a few hours, this used to take days to weeks earlier)\r\nI absolutely love direnv + nix combo.','Y','','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A8','A4','A3','','','','','','','','','','','','',NULL,'That is a loaded question. Nix eliminates the use of quite a few tools\r\nI am answering this question as a mac user (primarily)\r\nFor the package management needs - probably brew (I do use it sometimes when a package is not available on nixpkgs)\r\nWill need to manage multiple language tooling for versions etc, pyenv, nvm, rustup etc.\r\nSome kind of dotfile manager too.\r\nI still won\'t get a lot of things lice declarative management -> most likely I would have gone towards puppet, chef, or some other tool.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A13','A17','','','','','','','','','','','','','','','','','','A2','A15','A17','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Tried to contribute a couple of times.\r\nThe first PR was reviewed and merged after ages. (Probably after a year or more than that)\r\nOne time I tried to contribute the terraform treesitter support that I was using in my config, so I asked around in the NixOS unofficial discord and got no response at all.','N','Y',NULL,'I was working mostly using a desktop then I switched to mac for work so I had to stop using NixOS','As soon as I use a work machine that is not a Mac I will use NixOS on it. I will use NixOS if I don\'t plan to game on that device.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A few packages from NUR (firefox plugins)\r\nflake-utils\r\nrust-overlay','poetry-to-nix\r\nWay too many issues to get this working in a pragmatic sense.','I am not a fan of writing bash. I think nix expression language should be capable enough that we don\'t have to use bash all over the place.\r\n\r\nLastly, it is one of the best projects ever and I thank everyone who has ever worked on it.'),(403,'1980-01-01 00:00:00',5,'en','1762886535','A5','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','Y','Y','','Y','','','','','Y','','Y','','Y','','A2','A7','A4','','','','','','','','A5','A12','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','Y','','','','','','','','','Cirrus','A2','A1','A9','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','','','','',''),(404,NULL,1,'en','1200338066','A1','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(405,'1980-01-01 00:00:00',5,'en','1815973020','A2','A4','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I need a reproducible system to setup a compute cluster. I am using NixOS ever since and never looked back.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'gentoo, containers.','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A2','A4','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','Declarative configuration','Simple configuration via modules','','','gentoo','','','Y','','Y','','','Y','Y','','','','Nixops',''),(406,'1980-01-01 00:00:00',5,'en','689559932','A2','A2','male','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','I found the concept of nix/nixos very intriguing.','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A7','A2','A1','','','','','','','','','','','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A11','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','nothing','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','','','Y','','','atomic upgrades and rollback','packagr availability ','reproducibility','','','Y','','','','','','','','Y','','Hyprland','','',''),(407,NULL,1,'en','549478444','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(408,'1980-01-01 00:00:00',5,'en','969962191','A2','A2','male','','','','','','','','','','Y','Y','Y','','','','','','','','','','','Y','','','Y','Y','','','','','N','N','Y','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(409,'1980-01-01 00:00:00',5,'en','1817290887','A3','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(410,'1980-01-01 00:00:00',5,'en','1089143973','A4','A2','male','','','','','','','','Y','','Y','','Y','Y','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','My friend told me about NixOS long before I started using Linux. After I finally made the switch and got comfortable (and irritated) with debian based distros, I decided to checkout NixOS and really liked the idea. ','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A10','A9','','','','','','','','A6','A3','A2','','','','','','','','','','','','',NULL,'Arch or Fedora','A2','','','','Y','Y','','','','','','','','','Evaluable flake inputs. Custom patch. ','','','','','','','','','A1','A2','A4','A6','A17','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','My friend told me about NixOS long before I started using Linux. After I finally made the switch and got comfortable (and irritated) with debian based distros, I decided to checkout NixOS and really liked the idea. ','Y','','','','','','','Pure and correct packages across my entire pc. ','Being able to make my pc entirely declarative. ','Development environments. No conflicts. ','I really don\'t like how flake inputs work and how limiting flakes are. I hope you resolve these before making them stable..\r\n\r\nNot sure what I\'d change exactly, though.. But I\'d probably start by making flake inputs evaluable.','Arch or Fedora','Y','','','','','','','','','','Hyprland','My own project, \"combined-manager\".\r\n\r\nI also use \"nix-super\", a fork of nix, so I could have evaluable flake inputs.\r\n\r\nI also use home manager','','Awesome distro'),(411,NULL,1,'en','1881429710','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(412,NULL,1,'en','347183417','A2','A2','fem','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(413,NULL,3,'en','125921885','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(414,'1980-01-01 00:00:00',5,'en','1559262883','A5','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','Y','','','','','','','','','Y','','','','A1','A2','A7','','','','','','','','A6','A14','A8','','','','','','','','','','','','',NULL,'Probably arch & controlled by ansible. Not the same but best approximation. ','A2','','','','Y','','','','','','','','','','','','','','','','','','','A9','A7','A5','A2','A1','','','','','','','','','','','','','','','','','A9','A7','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','Descriptive config','Versionable','Atomic','Make flakes stable/official ','Arch & anisble','Y','','','','','','','Y','','','I3','Flake utils plus','',''),(415,'1980-01-01 00:00:00',5,'en','770132303','A1','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','Y','Y','','','','','Y','Y','','','','','','Y','','','Y','','','','A1','A2','A6','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A4','A3','A17','A8','A11','A5','A9','','','','','','','','','','','','','A8','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A5','','Y','','Y','','','','','','','','','','','','','','','','','','','','','','',''),(416,'1980-01-01 00:00:00',5,'en','588652359','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Wanted declarative configuration on a minimal system & it looked fun','','','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'Docker, arch','A2','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A2','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Knowing how to build software and setup flakes for building software.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Arch broke :(','Y','','Y','','','','','Declarative machine config','Reproduceable config','Package availability ','Better documentation','Arch','Y','','','','','','','','','','Hyprland','Home-manager, Fenix, sops-nix','','I love this project '),(417,'1980-01-01 00:00:00',5,'en','1724196442','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A6','A3','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','','','','','','','','','','','','Y','','','','','','','exwm','','',''),(418,'1980-01-01 00:00:00',5,'en','542534738','A4','A2','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was using Ubuntu for about 7 years before switching to NixOS. I decided to switch when an update broke my OS. I found about GNU Guix first and I started using it, but I couldn\'t find the software I want. Then I found Nix, and been using it since then.','','','','','','I have Windows 11 as dual-boot. I use it for gaming, but rarely.','Y','','','','','','University Servers (for academic research)','Y','Y','Y','Y','','','','A7','A2','A1','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'I wanted to say GNU Guix, but that probably wouldn\'t exist without Nix.\r\nMaybe VoidOS. Not as powerful as Nix, but I think it\'s the best alternative to Nix and GNU Guix.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A2','A7','','','','','','','','','','','','','','','','','','','A1','A15','A5','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','The same reason I started using Nix. I started using them together.','Y','','','','','','','Configurability (there are options for everything).','Functional OS (My OS is a function of my configuration file). I just need to backup my config file and I\'m good.','Atomic updates and rollbacks. NixOS never broke since I started using it. When any issue happens, I just rollback.','I will add first class support for sandboxing and permissions.','Same answer for Nix.','Y','','','','','','','','','','Qtile','Home-manager. Flakes.','Doom Emacs Overlay. Rust Overlays.','Thank you for all the work you do!'),(419,'1980-01-01 00:00:00',5,'en','1926741768','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','For work','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','','A2','A1','A8','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','Y','','A13','A1','A21','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','For work','Y','','Y','','','','','Declarative system','Rollbacks','','Integrated home-manager','Arch Linux','','','Y','','','','','','','','Xmonad','Home-manager\r\nHaskell.nix','',''),(420,NULL,NULL,'en','1598350863',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(421,NULL,2,'en','71905948','A5','A3','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','Home configuration with home manager ','A3','Nix was the natural progression for my dotfiles and system configuration. I initially started with a bare got repo and checking in my dotfiles, to Ansible to have some system state and then to nix and nixos.','Y','','','Y','','','Y','','','','','','','','Y','Y','Y','','','','A2','A3','A9','','','','','','','','A4','A10','A5','','','','','','','','','','','','',NULL,'I moved from Ansible to nix I would go back to Ansible or salt. I work in the games industry so I have to work with windows I would probably move to salt. From what I remember it has better windows support','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A4','','','','','','','','','','','','','','','','','','','A15','A1','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(422,'1980-01-01 00:00:00',5,'en','1584108849','A2','A3','male','','Y','','','Y','Y','Y','','','','','','','','','Y','','','','','Y','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','','','','A4','was fed up with ubuntu breaking up, wanted to be able to reproduce my setup declaratively. Heard about it from friends and tweag','','','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','Y','','A2','A7','A5','','','','','','','','A9','A8','A3','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','Y','','','','Y','','Y','','','','A13','A17','A21','A2','A1','A3','','','','','','','','','','','','','','','','A13','A17','A1','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','fed up with distribution updates breaking system and having to reinstall. apt breaking mid update leaving unusable system. python hell','Y','Y','Y','','Y','','','atomic update','reproducibility','rollback','I would remove the experimental flags from nix','guix','Y','','','Y','','','','','','','sway','home-manager','nixops is a joke. Could be the best thing but in 5 years the project actually got worse','let\'s make flakes the default, and why the hell do we gate features behind experimental flags ? such a pain'),(423,NULL,NULL,'en','1915568531',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(424,NULL,1,'en','1223313612','A5','A4','male','','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(425,NULL,1,'en','2090904817','A2','A3','male','','','','','','','','','Y','','','','','','','Y','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(426,'1980-01-01 00:00:00',5,'en','853796252','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','Y','','','','','Y','Y','Y','','','','A1','A9','A7','','','','','','','','A4','A10','','','','','','','','','','','','','',NULL,'Ansible and Saltstack','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','Woodpecker','A15','A4','A1','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','','','','','','','','','Y','','','','','','','Sway','sops-nix\r\nhome-manager','',''),(427,'1980-01-01 00:00:00',5,'en','562110708','A2','A4','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','Y','','','A2','A1','A3','','','','','','','','A8','A3','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','Declarative config','Rollbacks','Remote deployment','','','Y','','','Y','','','','','','','Hyprland','','',''),(428,'1980-01-01 00:00:00',5,'en','1936444567','A5','A4','male','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','There\'s something about declarative configuration that I am particularly attracted to. I\'m guessing I was reading about nix on reddit/HN and once I \"got the point\" of nix I became very interested. Initially used it for a year on my MacBook. Very recently I\'ve switched my home server to NixOS from arch and am super happy. I\'ve also started using nix on my work MacBook and my company\'s \"personal VM\" that they provide in the cloud.','Y','Y','','','','','Y','Y','','','','','','','','Y','Y','','','','A2','A1','A6','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'Arch/homebrew','A5','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I contributed my first package recently. The gasket driver.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I\'ve been using it on my Mac for a while. Decided to give NixOS a shot for my home server. Switched from arch.','','','Y','','','','','Declarative system configuration','','','Nothing specific but just making the box language more intuitive somehow. It took a long time to accomplish some simple things like running a private repo python package on a schedule. End result was worth it though.','Arch','Y','','','','','','','','','','','Home manager ','',''),(429,'1980-01-01 00:00:00',5,'en','488677701','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A4','A12','A6','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A15','A2','A5','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','Y','','','','','Declarative configuration ','Rollbacks','Available packages','Add content addressable derivations so that rebuilds don\'t take so long','','Y','','','','','','','Y','','','','Home-manager\r\nSops-nix','',''),(430,'1980-01-01 00:00:00',5,'en','9343305','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I heard about NixOs somewhere online a couple years ago and thought it sounded very cool, so I decided to try it out.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'Maybe Guix. Likely whatever package manager my distro uses','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A4','A2','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I’m not really a developer.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I heard about it online somewhere a couple years ago and thought it looked really cool. What convinced me to actually try it was watching one of Andrew Kelly’s Zig development videos where he was using Nix and NixOs and it looked really nice.','','','','','','','','Declarative configuration','Home manager','Flakes','Better documentation/learning resources. It’s really hard to get into Nix/NixOs. Also using something like Scheme instead of Nix would be really nice. The only thing stopping me from using Guix is that it doesn’t work very well.','Maybe Guix. Probably Arch.','','','','','','','','','','','Awesome','','',''),(431,'1980-01-01 00:00:00',5,'en','1086415496','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','N','N','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','need stability',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sway','-','we need strict types ... badly'),(432,NULL,2,'en','64908453','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I initially heard about Nix when I was trying to learn functional programming. Since I had been using multiple DevOps tools and was already sold on the functional mindset, the idea sounded amazing. Once I tried it, I quickly went all in with it, including NixOS. First on my personal computer (migrating from Gentoo managed through Ansible), on my work computer and finally on all my machines. Including servers and a Raspberry Pi.\r\nAt the same time, I turned all my software projects into flakes.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A7','A2','A10','','','','','','','','A4','A12','A1','','','','','','','','','','','','',NULL,'Ansible\r\nDocker\r\nFrustration','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A11','','','','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(433,'1980-01-01 00:00:00',5,'en','910957586','A3','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A while ago, I\'ve watched a video by wolfgangschannel where he configured his server using Ansible (which I\'ll find very interesting) and that got me thinking what else could I do in a declarative way. So there I was surfing the web and i be stumble upon NixOS (which I\'ve never heard of) and all the ways you could configure it in a declarative form.','','Y','','','','','Y','Y','','','','','','Y','','','Y','','','','A7','A1','A2','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'Ansible + any other immutable distro ','A1','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A5','A17','A15','A13','A3','A2','A1','','','','','','','','','','','','','','','A17','A5','A15','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I can\'t figure the Nix language just yet. I\'ve seen a few videos and a read a few guides but everytime its slightly different. I\'ll love to have a well structured and up to date guide on how to configure and develop','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Like i said before. I\'ll learn by a video and that got me into nixos.','Y','','Y','','','','','Declarative configuration ','Immutable file system','Snapshots','A GUI installer (don\'t know if there\'s one yet)','Tumbleweed','Y','','','','','','','Y','','','Hyprland, Bspwm','Home-Manager, Cachix','I\'ve tried to use an overlay for Neovim because the stable package was old and I didn\'t like the fact that I\'ll be using Neovim Nightly (I like bleeding-edge but love stability)','Keep up the good work, love the distro. Don\'t forget the pain of documentation! '),(434,'1980-01-01 00:00:00',5,'en','1916498594','A4','A2','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I saw a lot of recommendations about using Nix for Haskell development on the Haskell subreddit, saw the introduction video on the NixOS site and thought it was nice and kept it in the back of my head.\r\n\r\nLater, I was searching for a Linux distribution to use. The reality was every distribution I tried highlighted more properties I care about and cannot ignore about my distribution of choice - and, remembering my search about Haskell development back then, I was looking into Nix and NixOS to find out they satisfied those properties. I was experimenting in WSL (Ubuntu) with Nix I then tried NixOS. ','','','','Y','','','Y','','','','','','','','Y','Y','Y','','','','A2','A7','A10','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'I would probably use Bazel and a lot of containerised software and environments','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A2','A17','A15','A11','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Lack of familiarity with the Nix ecosystem and lack of knowledge about Nix which I try to improve.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','After using Nix, I wanted my workflow to integrate better with it and be better affected by its design and philosophy.','Y','','','','','','','Reproducibility ','Declarativity','Ecosystem ','I am afaird I don\'t have anything insightful to say.','Hard to say, I guess some immutable OS of some kind ','','','','','','','','','','','i3','home-manager','','Thank you for everything :)'),(435,'1980-01-01 00:00:00',5,'en','1048582597','A5','A6','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','hobbyist','','','Y','','','nixos','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','long time Debian user, decided (after an unrelated computer hardware failure that required rebuilding my system) that it was time to explore again, advantages (replicable configuration of everything of importance to me, rollback possibility, worthwhile investment skill-set) enough to make switch permanent','','','','','','nixos','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'Debian still probably','A2','','','','Y','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Primarily time. But I note that my language of choice D for development is not even mentioned on your language list :-p','Y',NULL,NULL,NULL,NULL,'A1','','','','solely','A3','tried it, preferred possibilities it gave, ... configure zsh, starship, tmux, i3, printers, development environments, (mpd, vimpc, ncmpcpp whatever) etc. once and sorted for (any machine for) all time\r\n(i do not use homemanager)','Y','','Y','','','','','configuration (of work environment)','development infrastructure (even for my so far, extremely poorly supported language D)','extensibility','proper support for D (dlang) add gdc continue to support ldc (ensure dub continues to work with nix tools)\r\n','might not have moved from Debian, else Guix','Y','','','','','','','','','','i3 tmux etc. (ad hoc/ bespoke)','','','please do not rule out other, minority communities... it is hard (as a developer) to have REALLY STRONG preferences for different relatively specialized communities (languages/tools) that have little intersection ... try NixOS (Nix Flakes); D (dlang); Doom Emacs (org-mode, vim bindings) ... etc. but avenues for them to grow should be encouraged (and certainly not be obstructed) please.'),(436,'1980-01-01 00:00:00',5,'en','1333631965','A5','A4','male','','Y','','','Y','','','','','','','','','','','','','Y','','Y','Y','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','Y','','','Y','','Y','Y','','','','','','','Y','','Y','','Y','','A2','A6','A1','','','','','','','','A6','A8','A14','','','','','','','','','','','','',NULL,'Guix ','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A22','A15','A13','','','','','','','','','','','','','','','','','','A2','A22','A15','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I found out about it inhaler news and it seemed like a great fit for what I wanted in a distribution and now I’m hooked','Y','','Y','','','','','Single repository of complete configuration ','Safe rollback','Excellent community and package support','Maybe have. An easy installation gui, bsd kernel support (I’d love a nixos openbsd router), systemd optional? ','Probably a container management Linux distro on servers and vanilla Ubuntu on my laptop','Y','','','','','Y','','','','','i3','Agenix','I struggled with using systemd-based networking ','I love nix. How can I best help the community with my skills and time?'),(437,'1980-01-01 00:00:00',5,'en','546688481','A4','A4','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','A colleague nerdsniped me','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A5','','','','','','','','A8','A4','A5','','','','','','','','','','','','',NULL,'Arch','A4','','','','Y','','','','','','','','','','','','','','','','','','','A9','A15','A2','','','','','','','','','','','','','','','','','','','A2','A9','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Merges take ages','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','Reproducible systems','Declarative system config','','Better, more up to date, nixpkgs','Arch','Y','','','','','','','','','','Xmonad','home-manager','pip2nix poetry2nix etc','I love nix 💕 '),(438,'1980-01-01 00:00:00',5,'en','1897658335','A5','A3','male','','','','','Y','','Y','','','','Y','','','','','Y','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','','A2','A3','A7','','','','','','','','A5','A8','A11','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','Y','','','','','Y','','Y','','','','A2','A15','A1','A11','A5','','','','','','','','','','','','','','','','','A15','A5','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Utilities to test changes are expensive to run.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I asked my brother for the new meme operating system. Now hundreds of hours of development later, I also drink the Nix kool-aid.','Y','Y','Y','','','','','Reproducible environments','Configuration as code','Nix language for customizing configuration ','','Arch','Y','','','','','Y','','','','','i3','','',''),(439,NULL,NULL,'en','917901719',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(440,'1980-01-01 00:00:00',5,'en','42731923','A2','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','','Y','','','','','','A2','A3','A1','','','','','','','','A2','A15','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A3','A4','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Direnv\r\nNix-direnv','Lorri',''),(441,'1980-01-01 00:00:00',5,'en','1021618283','A5','A3','male','','','','','','','Y','','','Y','Y','','','','','','Y','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','Y','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A1','A6','A2','','','','','','','','A14','A6','A8','','','','','','','','','','','','',NULL,'','A4','','','','','Y','','','','Y','','','','','','','','Y','','','','','','A1','A5','','','','','','','','','','','','','','','','','','','','A5','A1','','','','','','','','','','','','','','','','','','','','','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','Y','','','','','','','betrer docs','','Y','','','','','','','','','','i3','','',''),(442,'1980-01-01 00:00:00',5,'en','1528835233','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A7','A2','A1','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'guix','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A15','A13','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Complexity and having to take future responsibility after contribution','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','Y','Y','','','','','Atomic rollbacks','Rolling release','Reproducible environment','Replace the nix language with a Haskell DSL. Better errors, more sensible structure','guixsd? Debian unstable?','Y','','','','','','','Y','','','','','',''),(443,'1980-01-01 00:00:00',5,'en','2043925998','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','Colleague and podcasts talked about it','','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Yay','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','','Y','','','','','','','','','','Better docs','Arch','Y','','','','','','','','','','','','',''),(444,'1980-01-01 00:00:00',5,'en','260513458','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A7','','','','','','','','A14','A8','','','','','','','','','','','','','',NULL,'Continue to use Debian, or maybe try Guix.','A4','','','','','','','','','','','','','','','','','','','','','','','A9','A2','A15','A1','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','Y','','','','','Package availability','Ease of system configuration','Customization','','Debian or maybe try Guix.','Y','','','','','','','','','','','Home manager','',''),(445,'1980-01-01 00:00:00',5,'en','932829374','A8','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','Y','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted to know what a purely functional OS was like. I was sick of bad scripts and reinstalling Debian.','','','','Y','','','Y','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','A1','A2','A5','','','','','','','','A12','A13','A3','','','','','','','','','','','','',NULL,'Guix','A1','Y','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A1','A15','A4','A3','A13','','','','','','','','','','','','','','','','A9','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Privacy','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','','','Declarative configuration','Rollback','Atomic upgrade','Add editor support for refactoring. Replace nix language with nickel.\r\nRemove all other 2nix tools and use dream2nix.\r\nBetter document idioms, e.g. settings and generators, handling secrets etc.','Guix','Y','','','','','','','','','','sway, arcan','Standard, dream2nix','flake-parts, mynixos.com','Thank you'),(446,'1980-01-01 00:00:00',5,'en','208026555','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','systems architect','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A6','I wanted declarative configuration.','Y','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','','','Y','','A2','A3','A6','','','','','','','','A8','A6','A2','','','','','','','','','','','','',NULL,'Debian, Bazel/buck2, gnu stow, guix.','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A1','A2','A21','A9','A10','A7','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','','N','Y',NULL,'I switched to Mac hardware.','On servers: truly easy, pain free nixos installation + easy remote management from macOS + good SELinux support on the server.\r\n\r\nOn desktop: maaaaaybe eventual support for Apple silicon laptops? Or maybe being really easy to run virtually on top of macOS, like an even better version of https://www.tweag.io/blog/2023-02-09-nixos-vm-on-macos/?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tutorials to share with colleagues to help them understand nix, supporting tooling like nix-tree, deploy-rs, nickel, terraform…','','Great work getting the RFC process moving last year + I’d really like to see that continue to improve!\r\n\r\n(Also, while I know that there’s more to do to stabilize flakes, perhaps including source tree support… flakes have completely taken over how I use nix and I would really like to see them continue to be developed and improved!)'),(447,NULL,NULL,'en','1437744246',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(448,'1980-01-01 00:00:00',5,'en','200400075','A2','A3','male','','','','','Y','','Y','','','','','','','','','Y','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I needed a reliable package management tool that can be used to replicate environments across different computers running different operating systems. ','Y','Y','','Y','','','Y','Y','','','','','','','Y','','Y','','','','A2','A3','A7','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Container-based solutions.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','inhouse made solutions','A2','A13','A15','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','The lack of good documentation and relevant resources makes it hard to even know where to begin. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Main os on personal computers','A2','I needed a reliable and replicable system that I can use on both personal and work computers with minimal changes. I made a decision to switch to NixOS after Arch Linux 3 times in one month knowingly pushed system-breaking changes release without notifying the community, breaking my working computers in a way not even sophisticated rollback configuration can mitigate. NixOS turned out to be the ultimate solution to having an up to date working and personal systems without compromising on reliability. ','Y','','Y','','','','','Reliability.','Ability to have a replicable, modular OS via configuration project managed with Git.','Ability to separate concerns and modify system options with overlays, flakes, and home manager.','The lack of good documentation and comprehensive learning resources makes learning, understanding, and contributing to nix ecosystem a challenge even for an experienced software developer. ','A container-centric immutable distribution like Vanilla OS ','Y','','','','','Y','','','Y','','','','',''),(449,'1980-01-01 00:00:00',5,'en','775698754','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A7','','','','','','','','A9','A8','A11','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A9','A13','A3','A15','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','','','Rollbacks','Easy configure ','','','','Y','','','','','','','Y','','','','','',''),(450,NULL,2,'en','888847','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A9','','','','','','','','A6','A8','A4','','','','','','','','','','','','',NULL,'Flatpack','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A5','A2','','','','','','','','','','','','','','','','','','','A5','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(451,'1980-01-01 00:00:00',5,'en','2034093375','A5','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','home-manager was a much better solution than managing all of my dotfiles with gnu stow. I started by moving all of that stuff into home-manager while I was using POP-OS personally and MacOS for work.\r\n\r\nI was enamored by the ability to check a reproducible config into git. So I switched full time into Nixos shortly after.','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A9','','','','','','','','A9','A8','A4','','','','','','','','','','','','',NULL,'guix i guess.','A2','','','','Y','','','','','','','','','Y','','','','','','Y','','','sourcehut’s build','A15','A2','A1','','','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Nothing. Every time I find something I’ve wanted to fix and had time/energy to do it, someone’s already made a patch and I realized I just had to update my nixpkgs pin.\r\nI have made patches to nix-community projects though ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started with home-manager on POP-Os and MacOS. I liked the declarative config and was sick of making tweaks in GUIs repetitively. So I tried out nixos and never went back. For me it’s superior in every way.','Y','Y','Y','Y','','','','declarative ','Reproducible ','Massive community packing up almost everything I have ever wanted ','Flakes or something similar is the default and everyone uses it ','Guix i guess','Y','','','Y','','','','','','','Sway','home-manager\r\ncachix\r\ndevenv.sh\r\ndeploy-rs \r\nnix-doom-emacs','nixops\r\npoetry2nix\r\nmach-nix','I love nix and community around it 😍'),(452,'1980-01-01 00:00:00',5,'en','1304534934','A5','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Got a new Mac, didn\'t want to use homebrew','Y','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A3','A10','','','','','','','','A14','A13','A4','','','','','','','','','','','','',NULL,'A therapist','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A2','A3','A4','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','My boot drive for my home NAS died, so instead of reinstalling Ubuntu, I went with NixOS to set up services and regain access to data','Y','','Y','','','','','service modules','Atomic upgrades','','','Arch for desktops, Ubuntu for servers','Y','','','','','','','','','','','Nix Darwin ','',''),(453,NULL,1,'en','1479975369','A5','A4','male','','','','','','','','','','','','','','','Y','','','Y','','','Y','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(454,'1980-01-01 00:00:00',5,'en','695488482','A5','A6','fem','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','In 2021 I had purchased a Framework laptop (batch 1) and needed an OS. I wanted to run zfs. Graham Christensen had just posted some great articles about his [installing NixOS and zfs to his Framework](https://grahamc.com/blog/nixos-on-framework/). I saw that nix had matured a lot since I had last considered it. That was all I needed to give it a try; it worked better than I expected. I love having access to the latest software. Being able to bisect config changes with git made finding a working kernel (for Intel\'s AX210 wifi) reasonably easy. Being able to roll-back on boot removed all concern for breaking my OS -- freeing me to experiment and learn much more than ever before.','','Y','','','','','Y','Y','Y','','','','','','Y','','Y','','','','A2','A6','A1','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'Ubuntu.','A2','','','','Y','','','','','','','','','','','','','','','','','','Azure DevOps (unfortunately)','A15','A4','A3','A17','A2','A1','A6','','','','','','','','','','','','','','','A15','A4','A3','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Time. I still spend too much of my free time figuring out how to use nix just to get the behaviors I want for my own systems. I do not yet understand nix well enough to contribute code. At least now I have enough understanding to contribute helpful Discourse answers.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','As I wrote for nix.','Y','Y','Y','','','Y','','declarative, comprehensive configuration','roll-back at boot','multi-platform','Interactive, source-level debugging of flakes (as with gdb). As a programmer, I am used to learning a code-base by inspecting how code executing changes the state of the system. Let me set a break point to see the parameter values passed to a function. Let me step through code execution to see how that execution mutates the system. I believe these capabilities would flatten the curve, making learning nix significantly easier for anyone with programming experience.','Ubuntu.','','','','','','','','','','Y','i3','documentation','nix-repl','Thank you (and all contributors) for all your hard work! I hope one day to join the effort.'),(455,'1980-01-01 00:00:00',5,'en','1955862172','A3','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','Music/Video','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Well, I don\'t like flatpaks, so I wanted to avoid using them the best I could. First, I landed on Arch, but the problem with it was the godforsaken package manager (handling optional dependencies is annoying as all hell), so when I saw that nix/nixos/nixpkgs had incredible amounts of packages, I was immediately captivated. My start with it wasn\'t the easiest, multiple hopping between Fedora, Arch and NixOS, until eventually I settled with NixOS when I learned how to manage it. Luv it.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A1','A7','A10','','','','','','','','A5','A3','A4','','','','','','','','','','','','',NULL,'I would use Arch, but wouldn\'t really enjoy it. Or perhaps Guix? But Guix is way too into only FOSS stuff, and it has a very very very small repository... Honestly, because of NixOS, I\'m hesitant to move to MacOS, because beyond the hardware, I really really like NixOS.','A1','','','','','','','','','','','','','','','','','','','','','','','A4','A15','A19','','','','','','','','','','','','','','','','','','','A1','A15','A19','','','','','','','','','','','','','','','','','','','Y','','','','A1','','My experience with the language is not good enough for me to feel comfortable to contribute. I have written my own derivations, but I still need more experience. Plus better documentation for how stuff is done wouldn\'t hurt. Some functions and things are impossible to figure out unless you read the nix source code @ the nix github or nixpkgs github.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','[Pasted from the same question earlier] ]Well, I don\'t like flatpaks, so I wanted to avoid using them the best I could. First, I landed on Arch, but the problem with it was the godforsaken package manager (handling optional dependencies is annoying as all hell), so when I saw that nix/nixos/nixpkgs had incredible amounts of packages, I was immediately captivated. My start with it wasn\'t the easiest, multiple hopping between Fedora, Arch and NixOS, until eventually I settled with NixOS when I learned how to manage it. Luv it.','Y','','','','','','','Package availability and configurability\r\n','Declarative configuration, be it for the system, or projects thru shell.nix.','Modules! They are amazing. Easy configuration....','Better documentation definitely. And stabilizing the new nix cli. And error messages, they are obscure...','Arch, but wouldn\'t be happy. Perhaps I\'d just move to macOS. No, I wouldn\'t use Windows. I have self esteem.','Y','','','','','','','Y','','','','home-manager, rnix-lsp, nix-index','None really. ','Thanks for all the stuff you do fellas. I really hope NixOS keeps growing and getting better and more usable each year. It has finally finished my distrohopping habits. '),(456,'1980-01-01 00:00:00',5,'en','468905655','A5','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I used Nix for the first time when I started using NixOS, I hadn\'t heard (or really understood) either until I went in face-first.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A7','A1','A3','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'If Nix+Nixpkgs the package manager didn\'t exist, I\'d probably be using Flatpak. If Nix the OS didn\'t exist, it\'d probably be Fedora Silverblue. If Nix the language didn\'t exist then my life would not be that radically different.','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Maintaining packages sounds extremely confusing and frustrating. I have built a few packages from source myself, and I have never enjoyed the experience lol','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I have faux OCD about my filesystem being \"dirty\", but can handle nuking a home folder if I need to, so I really loved the idea of immutable distros. I initially started with Fedora Silverblue, just because I already liked Fedora, but gave NixOS a shot because I was curious what the differences were. I\'ve been pretty consistently in love with it since then!','Y','','','','','','','Immutability','configuration.nix','Tight integration with Nixpkgs','I would just make learning how to configure NixOS easier. The documentation can be downright frustrating at times. I spent a few full entire 8+ hour days trying to understand Flakes so I could rollback the version of GNOME I was using, but even setting up a simple up-to-date config is just confusing for a simpleton like me.','Fedora Silverblue','Y','','','','','','','Y','Y','','','','Flakes','I love NixOS very much and I have no intention of leaving the project any time soon. Just wanna say thanks for making a distro that FINALLY doesn\'t make me wanna distrohop <3'),(457,NULL,1,'en','1449029129','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(458,NULL,1,'en','31837981','A2','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(459,NULL,1,'en','758237592','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(460,NULL,1,'en','1129800288','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(461,'1980-01-01 00:00:00',5,'en','1507407958','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','To spawn a dev shell','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A7','A1','A9','','','','','','','','A5','A14','A10','','','','','','','','','','','','',NULL,'Fedora Silverblue','A4','','','','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','knowledge of nix, I never really understand what I\'m doing','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','To be able to tweak my system config without fear','Y','','Y','Y','','','','Rollbacks','Reproducibility','Up to date software','Nix, the language, is painful to use. Why isn\'t there an official auto-complete tool?','Fedora Silverblue, probably','Y','','','','','','','','Y','','','','','Thank you!\r\nAbout the survey, even after more than a year of \"daily use\" (but not \"daily tweaking\"), I still consider myself a \"nix/nixos beginner\" and some of the questions confused me and I might have answered NixOS stuff in the Nix section.\r\n\r\n'),(462,'1980-01-01 00:00:00',5,'en','1807565331','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Friend of mine was a contributor to GNU/Guix and got me interested in its properties. I also contributed for a while before deciding to try Nix as it’s origin. I found the Nix ecosystem to be a lot more mature (and less dogmatic) and I stuck around','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'I would probably stop using computers and become a goat herder because I’ve lost patience for all other package management tools','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','When I went down the path of installing my first “proper Linux desktop” I decided to use NixOS due to its ease in trying out different services or desktop environments without having to copy scripts out of a wiki. Liked it so much I use it on all my personal machines ','Y','','Y','','','Y','','Declarative configurations and atomic rollbacks','Leveraging all the work that has gone into writing modules for services and programs','The freedom and ease to patch and pin specific services ','Native secrets management would be cool! I use agenix which is great but it does have some sharp edges','Probably some kind of “immutable OS distro” with a bunch of flatpaks','Y','','','Y','','','','','','','Sway','crane, agenix, cachix','naersk - too difficult to wrangle for advanced use cases\r\ndeploy-rs - cross compiling for aarch64-Linux too slow, deployments can be finicky (turns out nixos-rebuild works well enough for me)',''),(463,'1980-01-01 00:00:00',5,'en','521581127','A2','A4','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','I’ve been lurking on immutable OS for years.\r\nI’ve been extremely impressed by erase your darling.\r\nSo I finally took the plunge with nixos and impermanence. (Not very straight forward for a newbie but I managed it thanks to “tmpfs as root” post.','','','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A10','','','','','','','','A5','A7','A14','','','','','','','','','','','','',NULL,'Fedora silverblue or pacman','A4','','','','','','','','','','','','','','','','','','','','','','','A1','A9','A17','','','','','','','','','','','','','','','','','','','A1','A17','','','','','','','','','','','','','','','','','','','','','','','','A1','','Time and knowledge ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','For immutability with impermanence and the desire to have a clean state on each reboot','Y','','','','','','','Immutability ','Impermanence ','Declarative configuration of the OS','Old and unhelpful docs (sorry) which is quite bad compared to archlinux wiki','Fedora silverblue or pacman ','Y','','','','','','','Y','','','Sway or hyprland ','impermanence ','','Make docs for using modern desktop and impermanence easier for newcomers.\r\n\r\nCreate a section (or provide tools) to easily track config in Git.\r\n\r\nIf possible or makes sense, allow for better sandboxing or separation of dev tools. There’s a lot of risk of supply chain attacks with modern development due to 1000s dependencies being installed. If nixos could create some sandbox easily to install them without worries that would AWESOME\r\n\r\nThanks for your work as well <3'),(464,'1980-01-01 00:00:00',5,'en','1147791609','A5','A3','male','','','','','Y','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was getting a second computer and wanted to easily maintain a similar system on both. Then, as I read more about it, I realized it could help me avoid system drift, and I got excited about the idea of isolated dev environments. ','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'Arch Linux, possibly with Ansible','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A3','A1','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Getting more than one machine meant I needed a solution to maintain a base state between machines as well as avoid system drift. Dot files repo wasn’t nearly enough control, so I came to Nix! And found solutions to other problems along the way, like dev environments. ','Y','','Y','','','','','Declarative system state','Reproducible dev environments','Same management of package versions','ArchWiki quality documentation around flakes. Please. And stabilize it for heavens sake, get everyone on board so we can shift all the documentation towards it. ','Arch Linux. ','Y','','','','','','','','','','Sway','Home manager, Mozilla rust overlay, dream2nix (although it needs a lot of work but I love the promise of it)','cargo2nix','Documentation as a first class citizen - the more users you have, the more money and effort and time makes the whole ecosystem better for everyone, and the documentation around flakes is actively driving people away. We want to onboard people to flakes, but there isn’t even an official installation doc (at least that is visible) on how to install from a flake. You gotta discover the flake flags for yourself!\r\n\r\nI don’t want that to sound too harsh though. Thank you to everyone who contributes and I try to do my part to add PRs where I can!'),(465,'1980-01-01 00:00:00',5,'en','1084993134','A4','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A1','I believe immutability and declararivity is easier in the long run.','','','','','','','Y','','','','','','','Y','','','Y','','','','A7','A2','A1','','','','','','','','A5','A4','A13','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A1','A15','A2','A17','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I don’t know how. Nix lang and all.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Immutability, declarativity and all.','','','','','','','','Being able to declare an OS','Nothing breaks if you don’t touch','Being able to move my config to another machine easily','I’d add a GUI to manage the system configuration. Everyone would take a GUI over manually editing configuration.nix any day, even us devs.\r\nI’d make it so that it would not miss any configuration options of packages.','Just Arch','Y','','','','','','','','','','Cinnamon','','','Build a GUI for configuration and see adoption skyrocket.'),(466,'1980-01-01 00:00:00',5,'en','329646359','A5','A3','male','','Y','','','Y','','Y','Y','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A10','','','','','','','','A8','A9','A7','','','','','','','','','','','','',NULL,'Debian','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','A3','A13','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Haven\'t found the time just yet.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','','','','','','','','','','Y','','','Sway','','',''),(467,NULL,NULL,'en','56841561',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(468,'1980-01-01 00:00:00',5,'en','598284481','A2','A3','fem','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A7','A6','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','The idea of having a Linux system as code with everything configured with my preferences done it for me. So last Christmas I had time to mess around and installed NixOS on an old laptop to see what the fuss was about. Long story short, I then wipe the drive of my main personal laptop and replaced the old system whith NixOS and it works like a charm :)','Y','','','','','','Personal laptop','System as code','Generations','You can try packages whiteout installing them ','I would add way more documentation and ressources to understand flakes and advanced possibilities of NixOS','I guess a Fedora with scripts to copy my dotfiles ','Y','','','','','','','','','','Hyprland','','','Thanks you for Nix and NixOS! \r\nI didn\'t understood all the possibilities of nix yet but enought to know that you\'re awesome guys!\r\nKeep up the good work :)'),(469,'1980-01-01 00:00:00',5,'en','1067254964','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','Y','','Y','','A7','A2','A3','','','','','','','','A5','A14','A1','','','','','','','','','','','','',NULL,'ansible, dev containers','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A15','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','local packages','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted to deploy my server without ansible. A former colleague had talked about nix, so I gave it a shot','Y','','Y','','','','','mostly declarative management','atomic rollbacks','','Add: a GUI for configuration.nix\r\nChange: Improve documentation (arch linux has the best documentation)\r\nRemove: nix-lang from the homepage - it\'s very confusing','ansible','Y','','','','','','','','Y','','','','NixOps - honestly, the documentation didn\'t get me far\r\nnix command and nix flakes - what are they even and why do they exist? nearly all related documentation is from third parties and everything seems cobbled together','The survey wasn\'t clear on the difference between nix and nixos. Atomic deployment and rollback was mentioned in the nix section and so was nixos-rebuild.\r\n\r\nThank you for your efforts and looking at the last survey, I hope documentation makes bigger visible strides'),(470,'1980-01-01 00:00:00',5,'en','295784947','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend was very enthusiastic about it and shared it with me. Then tried it and loved it :)','','Y','','Y','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A1','A6','A7','','','','','','','','A6','A14','A1','','','','','','','','','','','','',NULL,'guix','A2','','','Y','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A1','A2','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Repeatability','shareable','Just works','A magic LSP server that helps a lot in editor','guix or debian','Y','','','Y','','','','','','','i3vm','terranix ','',''),(471,'1980-01-01 00:00:00',5,'en','1360800399','A2','A3','male','','','','','','','Y','Y','','','','','Y','','','Y','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A2','A9','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','garnix.io','A15','A2','A19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(472,'1980-01-01 00:00:00',5,'en','18177757','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','System as conf, easy dev environment','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A13','A4','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A9','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','','','','','','Y','','','','','','','sway','home-manager','',''),(473,NULL,1,'en','808463712','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(474,NULL,1,'en','101028004','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(475,'1980-01-01 00:00:00',5,'en','1674652330','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Failed Gentoo install... figured I\'d try out NixOs instead.','','Y','','','','','Y','','','','','','','Y','','Y','Y','','','','A1','A7','A10','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'Gentoo, hopefully.','A2','','','','Y','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A1','','Just started with Nix.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Failed Gentoo install... same answer as before.','Y','','','','','','','','','','Add documentation like the Gentoo handbook where there is a step-by-step guide to using it instead of having most of the information on one large page and other bits of information elsewhere.','Gentoo','Y','Y','','','','','','','Y','','','','',''),(476,'1980-01-01 00:00:00',5,'en','2115330374','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','i am linux user since my childhood, but i left to OpenBSD later, i was forced to go back to linux during my carrier as sysop, when i left company i have been using OSX awhile and then moved back to linux Manjaro but, then i found NIX installed \"home-manager\" in manjaro and i felt in love and moved to NixOS completely, i love it thank you','','Y','','','Y','','Y','','','','','','','Y','Y','','Y','Y','','','A2','A1','A3','','','','','','','','','','','','','','','','','','','','','','',NULL,'Manjaro or some kind of BSD ','A4','','','','','','','','','','','','','','','','','','','','','','','A4','A1','A22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','workstation','A3','same as i wrote in NIX section','','','','','','','workstation','','','','i am happy :) ','manjaro or BSD','Y','','','','','','','','','','bspwm','maybe filesystem','','it is best operating system i have ever used... my dream machine'),(477,NULL,1,'en','1866641054','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(478,'1980-01-01 00:00:00',5,'en','2050174201','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','Y','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','Y','','Y','','','Y','Y','','Y','','Y','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A8','A9','A10','','','','','','','','','','','','',NULL,'pacman and appimages, snaps, … and manual configuration.','A3','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A4','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Too few maintainers that actually review and merge PRs','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','','Y','Y','','Y','','reproducibility ','central configuration and packagemanagement','flakes','home-manager merged into nixpkgs, cli to modify module options.','Arch Linux','Y','','','','','Y','','Y','','','','home-manager, nur','nix-env','cuda integration (especially for ml python projects) right now is a pain.'),(479,NULL,1,'en','14327837','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(480,'1980-01-01 00:00:00',5,'en','1637533133','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','Security researcher','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','For use on my personal server. Instantly hooked. ','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A10','A7','A1','','','','','','','','A4','A6','A8','','','','','','','','','','','','',NULL,'GNU Guix','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Don\'t want to shit up the repo with my noob code. Will contribute when I feel like it would be a net positive for the community','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','For my home server','Y','','Y','','','','','Reproducibility ','Configurability','Package availabilify','Better error messages. Wayyyyy better','GNU Guix','Y','','','','','','','Y','','','Hyprland','','','i love nixos more than air'),(481,'1980-01-01 00:00:00',5,'en','804368006','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I use Nix today primarily for reproducible development environments, but also for managing my NixOS system.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A7','','','','','','','','A4','A5','A8','','','','','','','','','','','','',NULL,'Potentially Guix? Or Ansible to manage my system. And containers for development environment needs.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A9','A1','A18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I liked the promise of not needing to rebuild my system every time I re-installed it. When my Arch Linux system broke after updating when my disk was nearly full, I decided to finally make the move to NixOS. I started building a basic config in a VM, then once I was somewhat comfortable with it, reinstalled my system and applied my config from the VM. Everything transferred over!\r\n\r\nI eventually threw out my config and switched it for a community one I found on GitHub which had flake support. I think adapted that to my needs, converted more machines to Nix and now I\'m a happy enthusiast!','Y','','','','','','','Reproducible system.','Atomic upgrades/rollbacks.','A single configuration that can be used across multiple machines.','Much better documentation. Remove old documentation from the NixOS wiki and more tightly integrate the wiki and the manual.','Guix or Ansible.','Y','','','','','','','Y','','','','','','This system is amazing. Keep focusing on making it more approachable and it\'ll take over the world.'),(482,'1980-01-01 00:00:00',5,'en','1656019115','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A6','A2','A8','','','','','','','','','','','','',NULL,'Docker, docker-compose, ansible ','A4','','','','Y','Y','','','','','','','','','','','','','Y','Y','','','','A2','A20','A9','A4','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Nothing, I contribute too','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','Reproducibility','Declarative configuration ','Reuse of configuration ','Finish work on nixos containers v2','','Y','','','','','Y','','','','','sway','Home manager, ragenix','',''),(483,'1980-01-01 00:00:00',5,'en','122019031','A2','A3','male','','','','','','','Y','','','','','','','Y','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because it allowed me to easily patch software that I want to install.\r\n\r\nI\'ve then discovered all the other benefits and got addicted.','','Y','','','','','Y','','Y','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A3','A5','A14','','','','','','','','','','','','',NULL,'Maybe gentoo or guix. But I know guix only because nix exists..\r\n\r\nProbably some Debian like Ubuntu... But it would feel unsatisfying','A1','','','','','Y','','','','','','','','','','','','','','Y','','','','A10','A1','A3','A7','','','','','','','','','','','','','','','','','','A10','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I\'m not feeling comfortable. Also I\'ve the feeling there is too much going on,so adding further small packages upstream would create an overhead that\'s not worth it. I already tried and closed the PR.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I\'ve learned nix and replaces my macos on a Macbook Air with NixOS cause that felt way better.','','','','','','','private laptop','Configuration of the system.','Using a previous setup in case an update breaks','','','Probably some Debian derivate.','Y','','','','','','','','','','i3wm','home-manager and phps','',''),(484,NULL,1,'en','459072940','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(487,'1980-01-01 00:00:00',5,'en','1051231128','A5','A5','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Finally heard about it and knew it was for me immediately. Started with home-manager on my existing ubuntu installation until I had most things setup, then migrated to nixos on all my machines.','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A10','A7','','','','','','','','A14','A9','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A1','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Knew it was for me when I heard about it. Not sure why I hadn\'t heard of it before, I\'ve been a programmer for over 20 years. I\'ve always wanted to have all my configuration source controlled and reproducable and just been using horrible shell scripts before, so it was a no brainer.','Y','','Y','','','','','reproducibility','package availability','','I wish the language were more accessible. I don\'t come for a functional background and found it hard to get going and still consider myself a novice after 3 or 4 years.','guix, maybe, but would that be around if not for nixos? probably unhappy on ubuntu or arch.','Y','','','Y','','','','','','','sway','home-manager, did you ask about that? that is huge for me and really helped me migrate to nixos as I could slowly gain confidence with the nix language and packaging things without being blocked while I couldn\'t figure things out.\r\n\r\ndirenv.. which is probably how i found nixos','','I\'m so much happier with my computers after having found nixos. It was amazing to find a community so full of people that have many of the same computing values as I have; I just wish I could have found ya\'ll sooner!'),(485,'1980-01-01 00:00:00',5,'en','395405382','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','Y','Y','','','Y','','','Y','Y','Y','Y','','','A2','A5','A8','','','','','','','','A12','A11','A10','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','Y','Y','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','','','Y','','Reproducible','Declarative','','','','Y','','','','','Y','','Y','','','','','',''),(486,NULL,2,'en','478267260','A2','A2','male','','','','','','','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Tired of having to manage my dotfiles without a proper build system ','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A8','A5','A4','','','','','','','','','','','','',NULL,'No idea ','A1','','','','Y','','','','','','','','','','','','','','','','','','','A2','A1','A3','A4','A6','A5','A9','A12','A19','A22','A15','A17','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(488,'1980-01-01 00:00:00',5,'en','876708417','A2','A2','male','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','Declerative system','Rollbacks','','','Guix','Y','','','','','','','Y','','','','','',''),(489,'1980-01-01 00:00:00',5,'en','2132559303','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','Y','','','Y','','','','','','','Y','','','','A2','A7','A9','','','','','','','','A8','A12','','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','Y','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','Y','AwesomeWM','','',''),(490,NULL,2,'en','1313545599','A5','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','Y','Y','','Y','','','Y','','Y','Y','','Y','','Y','Y','Y','Y','','Y','','A6','A7','A4','','','','','','','','A9','A5','A4','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','Y','','','A13','A3','A4','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(491,'1980-01-01 00:00:00',5,'en','1312663650','A2','','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','Y','','','Y','','','','','','','','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','A1','','','','','','','','','','','','','','','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(492,'1980-01-01 00:00:00',5,'en','18187853','A5','A3','male','','','','','','Y','','','','','Y','','','','','','Y','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A6','A1','A2','','','','','','','','A8','A6','A10','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','A1','A9','A3','A4','A15','','','','','','','','','','','','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','Reproducibility','','','Add windows support','Ubuntu','','','','','Y','','','','','','','','',''),(493,'1980-01-01 00:00:00',5,'en','2122346327','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducibility','','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','','Y','','A7','A2','A5','','','','','','','','A8','A9','A11','','','','','','','','','','','','',NULL,':(','A4','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A13','A2','A1','A22','A15','A3','','','','','','','','','','','','','','','','A13','A2','A1','','','','','','','','','','','','','','','','','','','Y','','Y','','A2','','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','System configuration all in one place, no more forgetting what that workaround that made that package work was.','Y','Y','Y','Y','','Y','','Centralised system configuration','Atomic upgrades and rollbacks','Transparency in how Nixpkgs/NixOS is structured so I can hack it to work as needed','The option to use s6 instead of systemd (this would be especially useful for embedded devices and servers).','Idk Gentoo?','Y','Y','','','','Y','','','','','xmonad','Hydra, poetry2nix, npmlock2nix','haskell.nix mainly due to its reliance on IFD and partly due to the lack of binary caches. node2nix mainly due to how frequently I\'d need to hack a node module to honour `NODE_PATH` and partly due to its reliance on IFD.','Thanks :)'),(494,'1980-01-01 00:00:00',5,'en','82828542','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Had encountered it a couple of times in projects that use it and had been wanting to try it out for a while, and once I did I quickly fell in love with how nice it is to be able describe an environment for a given context and know it\'ll just work. No more fragile setup scripts to ensure the python scripts in my dotfiles have a virtualenv to run in; just use nix-shell as a shebang and it\'ll _just work_! ','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','Y','','A2','A3','A6','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'The same thing I used before, which was Arch Linux, ASDF to manage environments for projects, lists in README files with the package names you need on various distributions, and some custom scripting to glue it all together.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A1','A15','A9','A5','A7','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Just haven\'t got around to it yet. I have some things in my dotfiles that I intend to contribute, but I need to sit down and create PRs for those.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Once I had seen how I could use Nix to improve the reproducability of my setup I wanted to extend this further. I had already partially automated setting up a new personal machine with my dotfiles, including a list of packages needed, but this was perpetually out-of-date. The idea of moving to a system where my dotfiles could be the source of truth for my system instead of a loose description that I had to manually keep in sync was very appealing, so I took the plunge. It\'s been great so far!','Y','Y','Y','','','Y','','Reproducability.','Convenience.','','','Arch Linux.','Y','','','','Y','','','','','','i3','home-manager, nix-darwin','',''),(495,NULL,4,'en','1240816155','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','N','','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(496,'1980-01-01 00:00:00',5,'en','2121497394','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','Y','','A2','A6','A1','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'Homebrew and Ansible','A2','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','Y','','','','','reproducibility ','stability','fun','improve documentation ','….windows?','Y','','','','Y','','','Y','Y','','','sops-nix, home-manager','',''),(497,'1980-01-01 00:00:00',5,'en','2034115544','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My MacBook installation was somehow f** up, so I decided to define the new setup with nix. And shortly ditched the macbook in order to install NixOS on a new laptop. Best decision ever. ','Y','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A9','','','','','','','','A4','A2','','','','','','','','','','','','','',NULL,'Ubuntu','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A2','A1','A5','A11','','','','','','','','','','','','','','','','','A1','A5','A11','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I have no clue, if whatever I would submit would just be blamingly not-according-to-current best practices, since it feels like they change a lot. Or are just not clear enough to me to learn, somewhere. I. E. Any PR from my side would for sure lead to am extensive discussion on how to do it right.\r\n\r\nIn essence: feat to blame myself with half-wisdom. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Oh, did already. Had a new laptop, needed to choose a distro. ','Y','','Y','Y','','','','Declarative system spec','Automatic, continuous Updates','Reusable part\'s for other systems ','Add, proper error messages!!\r\nSomething that gives at least a clue instead of 10000 lines. ','Ubuntu ','Y','','','Y','Y','','','','','','Xmonad ','divnix/Std, divnix/hive ','Nvidia Support',''),(498,NULL,1,'en','1494156492','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(499,'1980-01-01 00:00:00',5,'en','70051390','A2','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Heard about it in a discord, looked into it and needed a project so i installed it on my laptop','','','','','','','Y','','Y','','','','','','','Y','Y','','','','A2','A7','A9','','','','','','','','A9','A8','A5','','','','','','','','','','','','',NULL,'apt or pacman','A2','','','Y','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A2','A5','','','','','','','','','','','','','','','','','','','A15','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Heard about it on a discord, looked interesting and needed a project','Y','Y','Y','','','','','Declarative system','Near complete unbreakability (atomic rollbacks/updgrades)','','Better support for offline usage/installation/rebuild','Mint or arch','Y','','','','','','','','','Y','','home-manager, (r)agenix, lanzaboote, jetbrains-updater, disko, nixos-hardware','',''),(500,'1980-01-01 00:00:00',5,'en','234148570','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I needed some old versions of libraries.','','Y','','','','','Y','','','','','','','','Y','Y','Y','Y','Y','','A1','A2','A6','','','','','','','','A8','A13','A9','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','Y','','','','','Y','','Y','','','','A1','A15','A3','A4','A2','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Arch install was broken after 2 years of packaging weird software, so i needed smth more stable','Y','','','','','','','Really stable system','Easy access to old versions of programs','Rollbacks','Fix the opengl stuff.\r\n\r\nAdd a history for the config file, maybe by being forced to check it into a local git repo.','Arch probably, maybe ubuntu or alpine.','Y','','','','','','','Y','','','','fenix\r\nflake-utils\r\nany-nix-shell\r\nThe huge binary cache\r\n\r\n','Nixops 1,\r\nNixops 2,\r\nEverything that does not support flakes,\r\nThe nixos docker image,\r\nNix on darwin\r\n','The nix programming language is one of my least favorite PLs and it is always consistently a bad experience to use it.\r\n\r\nIm no expert but I feel like an optional Typesystem like in TS help a lot. Also maybe remove or unify syntax of constructs with weird syntax like with, inherit or let.\r\n\r\nI really like the concept of a lazy functional language but hate the current implementation.'),(501,'1980-01-01 00:00:00',5,'en','858323060','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was running Arch and wanted to use nix package manager to be able to temporarily install runtimes/compilers for languages I don\'t usually use. I needed to do this for work when looking at client codebases, etc. Once I learned how nix was achieving this I got more and more into it and started using it for everything.','Y','Y','','','','','Y','Y','','','','Y','','Y','Y','Y','Y','Y','','','A10','A2','A7','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'for packages I would create containers and mount my required directories into them. As an OS I would look into Fedora Silverblue or return to Arch.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A15','A17','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','When I learned how the nix package manager was doing what it does, I started to see how it could apply at the OS level. I decided to dive right into it and installed it on my work laptop over a weekend. After a few days I realized how much I appreciated the declarative approach to all of this and I installed it on the rest of my machines too.','Y','','Y','','','Y','','Reproducibility - my UX for everything is the same no matter which machine I am using. This is really helpful when jumping between my work and personal machines.','Rollbacks - configuring complicated things like jumping from KDE to sway was made really comfortable knowing I could jump all the way back to my KDE configuration without any issue','Community - the NixOS community is thriving and is attracting so many like-minded people. It\'s always a pleasure to discuss Nix on reddit or mastodon and it feels great to be a part of such an active project and community.','','Probably Fedora or Arch.','Y','','','','','','','','Y','','sway','home-manager, agenix, homeage. nix-darwin','','Thanks for all your work!'),(502,'1980-01-01 00:00:00',5,'en','627379600','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A10','','','','','','','','A5','A6','A4','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Github requirement','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','configuration as code','reproducible','stability','','','Y','','','','','','','','','','','','',''),(503,'1980-01-01 00:00:00',5,'en','1553986382','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Was curious, moved on from gentoo (too inconsistent/timeconsuming/custom) and debian (boring, slow to get new stuff)','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'bash/debian/ansible/docker. depends on use case.','A2','','','','Y','Y','','','','','','','','','','','','','Y','Y','','','','A15','A5','A2','A19','A9','A1','A11','A12','','','','','','','','','','','','','','A5','A15','A2','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','reproducible across machines','dev shells','many things packaged','easier to way to handle things not set up for nix/nixos (eg bazel, steam, etc)','debian?','Y','','','Y','','','','','','','sway','agenix/ragenix; impermanence?','',''),(504,'1980-01-01 00:00:00',5,'en','1068314702','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','','','','','','Y','','','','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','','','',''),(505,'1980-01-01 00:00:00',5,'en','217407156','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','Y','','','','','','','','','Y','','','','A2','A1','A9','','','','','','','','A14','A4','A13','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I feel like problems I encounter would require a deeper technical understanding of the problems and nix itself to contribute properly. I am also uncertain, if things I do get to work are worth documenting or if they would be \"bad style\". As for packaging software, I usually was in luck and it was already packaged (also, I doubt I would\'ve managed to package something myself)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I came across NixOS during distrohopping and I was intrigued, in part because I was learning some Haskell at that time. ','Y','','Y','','','','','Declarative system management','Package availability and unified way of installing and managing all software','Rollback capabilities','- Native, simple and unified secrets management for configuration files\r\n\r\n- A simple way to run binaries compiled for other distros (imagine e.g. something the complexity of MATLAB or some Linux native games. Especially proprietary software that is unlikely to be packaged already or not widely used is difficult to use). Tools like nix-ld go in the right direction, but in my experience don\'t work out-of-the box.\r\n\r\n- Faster updates. Probably just a cost of the design principles, but updates for flakes are so slow, when the entire system is being rebuilt every other time','Probably an Arch derivative, potentially would look into Ansible as well','Y','','','','','','','','Y','','Hyprland, but only experimentally','','','I appreciate the effort that is invested into Nix and NixOS by so many people and it is really nice to see this survey again. Glad that you stay in touch with the casual users in the community!'),(506,NULL,1,'en','1116865058','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(507,'1980-01-01 00:00:00',5,'en','1816910525','A2','A3','-oth-','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A10','A2','A3','','','','','','','','A13','A4','A8','','','','','','','','','','','','',NULL,'Docker, ansible','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(508,'1980-01-01 00:00:00',5,'en','1856088215','A5','A4','-oth-','enby','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','tired of hard to reproduce software setups','','Y','','','','','Y','','','','','','virtual machines','Y','Y','Y','','','','','A6','A5','A7','','','','','','','','A1','A10','A5','','','','','','','','','','','','',NULL,'vagrant','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I have contributed issue reports and small fixes to nixpkgs.\r\n\r\nThe difficulty of fixing cross compiling support for a language-specific compiler and its runtime has been a barrier to me making larger contributions.','N','Y',NULL,'I use Qubes OS exclusively now, and there is no NixOS TemplateVM for Qubes OS, and I lack the expertise with Qubes or NixOS to understand how to make one myself.\r\nAdditionally, inheritance of the nix store between TemplateVMs and AppVMs in Qubes OS is an unsolved technical challenge separate from the challenge of creating a NixOS TemplateVM image.','If there were a NixOS TemplateVM for Qubes OS, I would start using it for some AppVMs.\r\nIf there were also a solution that allowed the AppVM\'s nix store to reuse the TemplateVM\'s nix store in a space efficient manner, I would switch to using NixOS for almost all TemplateVMs and AppVMs.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Please improve the support for building nixpkgs (or any other derivation) from sources offline.\r\nI have wasted so much time trying to figure out how to do that, only to continually be wrong about what is and is not necessary, and this feels like something Nix should just be able to do out of the box.\r\nI work with a lot of virtual machine images on a space-constrained system, so for archival purposes being able to efficiently save the minimum necessary to rebuild and tweak my overlays offline is critical to me, and I would much prefer to rebuild all of nixpkgs than to rely on a bunch of opaque binaries that cannot be reproduced locally either due to link rot or nondeterminism.\r\n\r\n\r\nI haven\'t tried this yet, but my current hope for building my own overlays from sources is this project, though there is absolutely no way I would have ever been able to piece together the how of how to do this on my own:\r\nhttps://tildegit.org/solene/nixpkgs-mirror-tarballs\r\nIt\'s totally not obvious that one would go for fetchurl invocations instead of just searching for all fixed-output derivations and all content addressed derivations in the expression, and the find-tarball.nix script & its contemporaries aren\'t easy to find for someone using search engines to look for prior work on this to reuse rather than reinvent.'),(509,'1980-01-01 00:00:00',5,'en','395447916','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','','Y','','','Y','Y','','','','Y','Home router','','Y','Y','Y','','Y','Generating config files for systems not managed by Nix','A2','A7','A5','','','','','','','','A8','A1','A9','','','','','','','','','','','','',NULL,'Probably Docker/Podman.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A15','A6','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','Applying patches to nixpkgs within my system flake.nix','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','All personal computing','A3','I used a few Vyatta on a few routers, and I really enjoyed declaratively configuring a system. I also have a functional programming background (mostly Haskell). I was frustrated with Ubuntu on my home machines, so I switched to NixOS and never looked back. I wish I had known about and understood it earlier.','Y','','Y','','','Y','Home router','Cross-compilation of packages and whole systems','Patching some packages while still using binary cache for others','NixOS Containers','Add tooling to more easily run software not in nixpkgs, especially closed-source software like games. I\'m thinking something like steam-run, but that hasn\'t worked for me.\r\n\r\nThis is more Nix proper, but: Some kind of substitution rules so that cross-compiled outputs could be used in lieu of natively compiled outputs, and vice-versa. Or more generally, some changes to cut down on the amount of local compilation needed for users who want to build for different architectures.','Guix, or maybe Gentoo.','Y','','','','','','nix build SD images for RPis','Y','','','','Projects: nixos-hardware, Lanzaboote, impermanence, home-manager (although home-manager is much less important to me than it seems to be to most folks).','','As an occasional contributor, it\'s frustrating that PRs take so long to merge. Some of my PRs have sat unreviewed for months, despite posts on the Ready For Review thread. These delays discourage me from spending more time contributing. At the same time, although I am an experienced software engineer, I don\'t know how to contribute to code reviews to improve the review backlog situation. There seem to be undocumented standards that experienced reviewers know to check, so I cannot confidently put my approval on anything - and doing so doesn\'t seem to help anybody. I suggest firstly having experienced reviewers spend some time documenting what budding reviewers should look for, or perhaps setting up an apprenticeship program; and secondly providing some visibility into how reviews done by aspiring reviewers can help the process. For example, maybe committers should prioritize (or only merge) PRs that have an approval from a non-commiter. In brief, we should invest in a better on-ramp for nixpkgs contributors and reviewers.'),(510,NULL,1,'en','860080611','A4','A1','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','arcolinux',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(511,'1980-01-01 00:00:00',5,'en','1325882389','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','hackability and reproducibility','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A2','A3','A10','','','','','','','','A6','A12','A8','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','curious and idealistic','Y','','Y','Y','','','','declarative','hackable','reproducible','add better typing','Guix','','','','','','Y','','','','','Xmonad','','','Thank you for this survey'),(512,NULL,1,'en','1032858705','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(513,NULL,NULL,'en','882642327',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(514,NULL,1,'en','1175970452','A2','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(515,'1980-01-01 00:00:00',5,'en','993987109','A2','A2','-oth-','agender','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','nix-shell was a killer app. Reproducible development environments proved really necessary quickly. ','Y','Y','','Y','','','Y','','Y','','','','','','Y','Y','Y','Y','Y','','A2','A1','A6','','','','','','','','A8','A13','','','','','','','','','','','','','',NULL,'I would struggle in many ways, but probably would use some arcane bash tool for containerized dev environments. Obviously guix doesn’t count here. ','A1','','Y','Y','Y','Y','','','','','','','','','','','Y','','','Y','','','','A13','A1','','','','','','','','','','','','','','','','','','','','A13','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','lack of time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','nix for my OS','Y','','','','','','','configuration being reproducible ','rollbacks in config ','','Flakes by default ','Debian, probably. Gentoo? ','Y','','','','','','','','','','bswpm ','flake-parts!','',''),(516,'1980-01-01 00:00:00',5,'en','1775129623','A1','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A8','','','','','','','','A13','A11','A12','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A15','A1','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','','','','','','','Y','','','','','','','','','','xmonad','stacklock2nix, nix-output-monitor, purifix, purenix','haskell.nix',''),(517,NULL,NULL,'en','1672298187',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(518,'1980-01-01 00:00:00',5,'en','1005395845','A5','A2','-oth-','non binary','','','','','','','','','','','','','','','','','Y','','','','','','','cable technician','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I was bored of arch linux, and had heard a friend talk about how much they loved nixos. I switched to nixos and started using nix for my programming projects then.','','','','','','','Y','Y','','','','Y','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A8','A9','A14','','','','','','','','','','','','',NULL,'I would probably either just use other linux package managers (pacman), or I might give guix a shot.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A15','','','','','','','','','','','','','','','','','','','','A13','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I\'ve actually been working on getting a package ready for a pr :)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','Y','','Declarative system configuration','Rollbacks','','','arch linux','Y','','','','','','','','','','sway','Home Manager','nix-direnv',''),(519,'1980-01-01 00:00:00',5,'en','408052938','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was very impressed by the way in which, on NixOS, system configuration, update management and reproducibility are handled','','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A7','A3','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'I\'m not an expert, maybe Ansible, btrfs for snapshot and rollback, idk','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I\'m not a developer and I would feel unsuitable or of little use','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Same answer that I said before for Nix','Y','','','','','','','All config in one place','Easy updates','reproducible','perhaps I would try to simplify some aspects','Same answer that I said before for Nix','','','','','','','','Y','','','','','','you already know this, but I would like to underline the lack of complete, user-friendly and up-to-date documentation. I understand that it is a complicated thing, but I think it is very important, above all to make the work you are doing better appreciated.'),(520,NULL,1,'en','895675053','A5','A3','male','','','','','','','','','','Y','','','Y','','','','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(521,NULL,1,'en','460955311','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(522,NULL,-1,'en','1213196548','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(523,'1980-01-01 00:00:00',5,'en','1495647861','A5','A4','male','','','','','','Y','Y','Y','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','Y','','A2','A6','A10','','','','','','','','A2','A11','A4','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A2','A13','A4','A15','A9','A3','','','','','','','','','','','','','','','','A2','A15','A13','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','Time','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A5','','Y','','Y','','','','','Declarative systems ','Atomic upgrades / rollbacks','','','Arch','Y','Y','','','','Y','','Y','','','','','',''),(524,'1980-01-01 00:00:00',5,'en','382717167','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Kept breaking normal distros when labbing at home','','Y','','','','','Y','Y','Y','Y','','','','Y','','','Y','','','','A1','A2','A7','','','','','','','','A8','A5','A13','','','','','','','','','','','','',NULL,'I don\'t wanna think about it!','A2','Y','','','Y','Y','','','','','','','Y','','','','','Y','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','ADHD','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because I kept breaking Manjaro','Y','Y','Y','Y','','','','Declarative things','Loads of packages','','Types, editor support','McDonalds','Y','','','','','Y','','','Y','','Want to use something with declarative configuration','disko, home-manager','','Thanks for making Nix, Nickel and Nixpkgs! <3'),(525,'1980-01-01 00:00:00',5,'en','489740092','A5','A3','-oth-','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A3','For access to libraries and compilers on NixOS','','','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A7','A10','A3','','','','','','','','A6','A12','A2','','','','','','','','','','','','',NULL,'pacman most likely, having come from Arch Linux','A2','','Y','','Y','Y','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Uncertainty of what/how to contribute','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Wanted to experiment with isolated package prefixes with LFS, then discovered NixOS which provides that and more, and more robustly.','','','','','','','Personal daily driver','Atomic updates and rollbacks','User-level package installation','Declarative configuration','The dependency on systemd ','Most likely Arch','Y','','','','','','','','','','i3','','',''),(526,'1980-01-01 00:00:00',5,'en','863903800','A1','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','','Y','','','','','','','','','Y','','','','A1','A2','A3','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A15','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(527,NULL,4,'en','852520484','A7','A5','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','N','N','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(528,'1980-01-01 00:00:00',5,'en','617161901','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','As a casual user, I need some premade config file without taking the time to understand every single line','','','','','','','','','','','Y','Waiting for a user friendly GUI with pre-made base configs','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Same as the previous reasons','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(529,NULL,NULL,'en','1976676682',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(530,'1980-01-01 00:00:00',5,'en','555309464','A5','A4','male','','Y','','','','Y','Y','Y','','Y','Y','','','','','','','Y','','','Y','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Wanted declarative management and OS-agnostic names for packages installed in my user profile (my \"dotfiles\", as it were). Old solutions put the configuration files in the right spot but couldn\'t reliably handle installing the packages on all the systems I needed them on, so I started looking at home-manager for professional use and NixOS at home.','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A6','A1','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'Guix, personally, I guess? Professionally, I would be using Ansible/Puppet and a bunch of ad hoc scripts','A4','','','','Y','Y','Y','','','','','','','','','','','Y','','','','','','A15','A2','A5','A14','','','','','','','','','','','','','','','','','','A1','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was tired of ad hoc configuration of my personal machines that quickly lost cintext and became out of date. NixOS promised to fix that (and I think it mostly does these days!)','Y','','Y','','','Y','','Reproducible, generational builds and installs','Hardware profiles (with nixos-hardware)','Easily handled deployment scenarios (with tools like deploy-rs or krops)','Improve the documentation and stabilize flakes, alongside some flake improvements (Lazy copying of files to the store, for instance)','If Guix still existed, probably Guix. Otherwise, I would probably go back tk Void or Crux for my personal machines.','Y','','','Y','','','','Y','','','river','devenv.','',''),(531,'1980-01-01 00:00:00',5,'en','501962620','A2','A4','male','','','','','','','Y','Y','','','','','','','Y','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','Y','','','Y','','','','Y','','Y','','','','A1','A3','A10','','','','','','','','A6','A5','A4','','','','','','','','','','','','',NULL,'Guix, Pop_OS','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I want to contribute an eclipse plugin, but have to check legal stuff first','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','Y','','','reproducability','','','','','Y','','','','','','','Y','','','Phosh','','',''),(532,'1980-01-01 00:00:00',5,'en','1902776728','A5','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I read about Nix in multiple blogs from developers I looked up to, and decided to take the plunge with a new laptop. The onboarding process was relatively smooth, with the only big hurdle being understanding the current recommended practices (as there are many sources which still viewed flakes as “experimental”, when they seem to be the accepted future for system configurations). I really enjoyed the configuration and use experience of my new system, and it naturally followed that I eagerly followed NixOS development and championed it to coworkers and friends alike.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A8','A14','A4','','','','','','','','','','','','',NULL,'Arch Linux','A4','','','','Y','','','','','','','','Y','','','','','','Y','Y','','','','A15','A13','A4','','','','','','','','','','','','','','','','','','','A13','A4','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Most of the software I develop are already available via nixpkgs.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I started my journey with Nix and NixOS after stumbling across a passionate blog post. After getting inspired and reading more about all its advantages, I decided to take the plunge with a new laptop I had gotten. The onboarding process was very smooth, and I found the declarative configuration a breath of fresh air from the absolute chaos my Arch machine had become. With more use, and a deeper dive into the internals of Nix and NixOS, I fell in love with the distribution, the philosophy, and the community. I use NicOS on my main development machine now, and use Nic and flakes for reproducible build environments and dev shells for my personal software projects.','Y','','','','','','','Declarative, reproducible system configuration','Large package collection with ease of installation','System rollback','I would love for flakes to become the de facto standard across the board, as their odd position as experimental really confused me when starting.','Most likely Arch Linux.','Y','','','','','','','','','','Sway','','','Thanks for continuing to make such a great operating system and package manager! While I found the process simple, the chief complaint I have heard about Nix/NixOS is that there is a the steep learning curve. Any additional documentation or feature stabilization (so that there is less confusion as to the “blessed” way to do things) would help the ecosystem greatly.'),(533,'1980-01-01 00:00:00',5,'en','184637070','A5','A4','male','','','','','Y','','Y','Y','','','Y','','','','','','','Y','','','','','','Y','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','Coworker rabbitholed on it, bludgeoning it into his daily workhorse through brute force. He sorted all the core nixos stuff, mainly i3 and espanso hotkeys. He made it through learning homemanager and pulled me in for the shift towards digga. We recently ported our configs to use hive/std/colmena and are stoked about the flexibility and the coherent 30k ft view from the filesystem, the file layout is intuitive now.','','','','Y','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A10','','','','','','','','A8','A6','A11','','','','','','','','','','','','',NULL,'Debian and docker','A1','','','','Y','Y','','','','','','','Y','','','Y','Y','','','Y','','','','A15','A9','A2','A6','','','','','','','','','','','','','','','','','','A15','A9','A2','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Imposter syndrome','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Tired of maintaining a memorized set of setup steps for after wiping and reinstalling debian','Y','','Y','','','','','Rollback ','Idempotent builds','Declarative configuration ','Flakes, std, hive and colmena get official support ','Debian and docker ','Y','','','Y','Y','','','','','','i3','Std and Hive','Digga','I love you all 🤗'),(534,'1980-01-01 00:00:00',5,'en','379530043','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I saw a cool rice using nixOS','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'Guix 🙃','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A2','A1','','','','','','','','','','','','','','','','','','','A13','A2','A1','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Haven\'t had a need to package software yet. I plan to contribute.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I saw a cool nixOS rice.','Y','','Y','','','','','Rollbacks','Reproducability','','Allow builtins.currentSystem to work in the builder to remove the need for flake-utils.\r\n\r\nDepracate the old `nix-` whatever commands such as `nix-env` and replace them with the new 2.0 commands like `nix develop`\r\n\r\nIntegrate home-manager into vanilla NixOS.\r\n\r\nHave Nix/NixOS come with flakes and nix-commands enabled by default (everyone is already using them)','ArchLinux (btw) 🤡','Y','','','','','','','','','','Sway','nix-init\r\nhome-manager\r\nflake-utils','','❄️ Gang'),(535,NULL,2,'en','1732839007','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I needed an OS configuration tool and had little experience using any. Tried Ansible and Salt and hated them. Tried Nix and hated it less :-)','','','','Y','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A10','A1','','','','','','','','A8','A3','A9','','','','','','','','','','','','',NULL,'bash scripts and ansible','A5','','','','','Y','','','','','','','','','','','','','','Y','','','','A6','A1','','','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','At work we upstream anything that makes sense, but one of my colleagues usually does that work.\r\n\r\nFor my personal stuff nothing\'s come up worth contributing.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(536,'1980-01-01 00:00:00',5,'en','1418523670','A5','A4','male','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','To make my development environment and build dependencies reproducible.','Y','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A7','A3','','','','','','','','A12','A2','A11','','','','','','','','','','','','',NULL,'GNU Stow (for home-manager), home grown scripts (for dev shells), Bazel.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A1','A2','','','','','','','','','','','','','','','','','','','A13','A15','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Burdens of maintaining packages up-to-date (without proper toolings).','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Realized that NixOS provides better declarative configurations and reproducibility than Ubuntu.','Y','','','','','','','Reproducibility (including atomic updates and rollbacks).','Declarative (more modular and higher level system configurations, hence version-controllable).','Package availability (most packages I need are in nixpkgs, and I can create packages if needed).','Slightly better configuration language and abstraction (nickel).','Ubuntu/Debian.','Y','','','','','','','Y','','','','home-manager, impermanence, flake-utils-plus (and flake-utils), devenv (pre-commit-hooks.nix), lanzaboote','nix-doom-emacs (revert back to vanilla doom-emacs, as its emacs version was too old)','Better integration of Nix with Bazel/Buck would be great.'),(537,NULL,1,'en','2112874485','A2','A6','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(538,'1980-01-01 00:00:00',5,'en','133500530','A5','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I saw a few IRL friends adopt it and noted some of the tradeoffs. I tested NixOS in a VM and eventually came up with a migration plan from a Gentoo architecture to a NixOS architecture. Migrated and it\'s worked out well. I have my concerns with NixOS - no cohesive vision or direction but certainly it has some nice technical tradeoffs. I am unsure if I can get enterprise adoption on a system that becomes EOL every 18 months.','Y','Y','','','Y','','Y','Y','Y','','','','','','','Y','Y','','','','A2','A6','A5','','','','','','','','A6','A8','A9','','','','','','','','','','','','',NULL,'GUIX has a lot of overlap for development workflows.\r\n\r\npkgsrc, portage, homebrew/linuxbrew prefixes combined with direnv or another environment manager.','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','A1','A7','A9','A17','A18','','','','','','','','','','','','','','','','A2','A18','A11','','','','','','','','','','','','','','','','','','','','Y','','old style overrides because it just works','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','same story','Y','','Y','','','','','QA testing provided by nixos-release branches','NixOS configuration as a replacement for ansible','Decent package selection though it should be slimmed down','Delete about 25% of the least utilized packages from nixpkgs. We need to increase quality of nixpkgs.','Custom distribution built with Gentoo, pkgsrc, and/or linuxbrew.','Y','','','','','','','','Y','','awesomewm','direnv, poetry2nix, flake-utils, some homegrown scripts to keep me away from nix\'s inconsistent CLI design.','Briefly assessed home-manager and it seemed like a lot more work than synchronizing home dirs between hosts and dealing with file update conflicts (it\'s really not that scary and easy to resolve, even if you use a DE).','Nix and NixOS needs direction and vision to build a cohesive product that is mature and understandable to the lay person.'),(539,'1980-01-01 00:00:00',5,'en','1751597037','A5','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','tired of arch linux install scripts, remembering everything i changed, state changing over time etc','','Y','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A10','','','','','','','','A6','A4','A2','','','','','','','','','','','','',NULL,'i don\'t want to think about life without nix. i have no idea how i managed with imperative environments','A2','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','declarative','Y','','','','','','','declarative config','containers','virtual machines','sound support in nixos-rebuild build-vm','this question makes me uncomfortable i dont wanna go back to the stone ages','Y','','','','','','','','','','hyprland','stylix','disko','declarative disk partitioning built-in\r\n\r\nhttps://github.com/nix-community/disko/blob/master/docs/quickstart.md\r\n\r\nway too many commands\r\n\r\njust let me nixos-install the flake i want and auto-setup partitions without all of this curl disko editing mess'),(540,'1980-01-01 00:00:00',5,'en','216391454','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','because I can create a dev environment (with direnv) for my projects without installing packages system or user wide.','','Y','','','','','Y','','','','','','','','Y','','','','','','A1','A7','A3','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'maybe apt, because thats where i came from','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A6','A5','','','','','','','','','','','','','','','','','','','A15','A6','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','i havent given much thought to it','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','i wanted to find a better alternative to ubuntu, because i didnt feel comfortable to install packages which could break the system easily. ','Y','','','','','','','rollback','shell environments','flakes','declarative flatpaks\r\nperfect vr support','ubuntu or arch','Y','','','','','','','','','','Hyprland','','nix develop because i still dont understand what i need it for when i have nix shell with direnv',''),(541,'1980-01-01 00:00:00',5,'en','561301878','A5','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Easy dependency management, configuration as code, and an interest in trying out me (to me) technologies.','','Y','','','Y','','Y','Y','Y','','Y','','','Y','Y','Y','Y','Y','','','A1','A2','A8','','','','','','','','A6','A8','A7','','','','','','','','','','','','',NULL,'Gentoo and many, many, scripts.','A2','','Y','','Y','Y','','','','Y','','','','','','Y','','Y','','Y','','','','A13','A2','','','','','','','','','','','','','','','','','','','','A2','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','Y','Y','','Y','','','Configuration as code','Easy rollback on boot','','','Gentoo','Y','','','Y','','','','','','','XMonad / Sway','','',''),(542,'1980-01-01 00:00:00',5,'en','42012497','A7','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A2','I liked the thought of different type of package manager. The ability to rollback the system to a prior state along with installing everything declaratively was different and interesting.','Y','Y','','Y','','','Y','','','','','','','Y','','','Y','','','','A1','A2','A6','','','','','','','','A14','A5','A9','','','','','','','','','','','','',NULL,'Gnu guix ','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'m sort of a beginner and don\'t have in depth programming skills ','N','Y',NULL,'I didn\'t fully understand how it would work with other package managers like npm and anaconda ','I\'d like to get back to it when I have more time and be able to try flakes ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Good job guys! Improve the docs and provide up to date learning resources and I think adoption would increase.'),(543,NULL,1,'en','1540753931','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(544,NULL,NULL,'en','1643464911',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(545,'1980-01-01 00:00:00',5,'en','2077604717','A2','A3','male','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A1','A7','A5','','','','','','','','A8','A12','A2','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A4','A15','A2','A1','A9','A5','','','','','','','','','','','','','','','','A1','A5','A9','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','Y','','','','','','','','','','','','','Y','','','','','','','home-manager, agenix','morph, nixops',''),(546,NULL,1,'en','409329749','A1','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(547,'1980-01-01 00:00:00',5,'en','2002470820','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I initially heard about Nix when I was trying to learn functional programming. Since I had been using multiple DevOps tools and was already sold on the functional mindset, the idea sounded amazing. Once I tried it, I quickly went all in with it, including NixOS. First on my personal computer (migrating from Gentoo managed through Ansible), on my work computer and finally on all my machines. Including servers and a Raspberry Pi.\r\nAt the same time, I turned all my software projects into flakes.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A7','A2','A10','','','','','','','','A4','A12','A1','','','','','','','','','','','','',NULL,'Ansible\r\nDocker','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A11','','','','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I initially heard about Nix when I was trying to learn functional programming. Since I had been using multiple DevOps tools and was already sold on the functional mindset, the idea sounded amazing. Once I tried it, I quickly went all in with it, including NixOS. First on my personal computer (migrating from Gentoo managed through Ansible), on my work computer and finally on all my machines. Including servers and a Raspberry Pi.\r\nAt the same time, I turned all my software projects into flakes.','Y','Y','Y','Y','','Y','','Reproducibility','Atomic upgrade/rollback','Declarative configuration','','Gentoo deployed with Ansible','Y','','','Y','','','','','','','Xmonad','sops-nix\r\nsimple-nixos-mailserver\r\ndevenv','NixOps\r\nnix-doom-emacs','Nix is in the rare category of tools that the more I use it, the more I like it.\r\n\r\nTo whomever may read this, thank you for making/working on this survey and have a nice day ;)'),(548,'1980-01-01 00:00:00',5,'en','820479892','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was tired of my unstable arch install and wanted a declarative configuration for my whole system. I could never get into Guix because I don\'t like Lisp, so Nix seemed like the best option. At first, I struggled. The documentation is there, but often lacked key info I needed to develop my configuration. For a while, I gave up and installed everything as a user (nix-env). After a couple months, I decided to commit to migrating my system to a flake config, and it stuck! Since then I\'ve been using it to manage my system, dotfiles, vps, and environments for all my dev projects. I even wrote my first nix package recently :)','','','','','','','Y','','','','','','VPS','','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A5','A4','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A13','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','See answer to the question about Nix; I switched directly to NixOS.','Y','','','','','','VPS','Declarative system config','Rollbacks','Ability to try new features quickly and easily','Better docs','Artix','Y','','','Y','','','','Y','','','','N/A','N/A','Awesome project! I hope to be able to contribute more to the ecosystem as my knowledge of Nix gets better :)'),(549,NULL,NULL,'en','865356069',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(550,'1980-01-01 00:00:00',5,'en','23255976','A5','','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Watched a Youtube video about it.','Y','Y','','Y','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A9','','','','','','','','A5','A6','','','','','','','','','','','','','',NULL,'Ubuntu','A4','','','','Y','','','','Y','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Nothing','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Youtube video','Y','','','','','','','declarative config','package availability','fearless upgrades','better docs','ubuntu','Y','','','','','','','','Y','','','cachix','',''),(551,'1980-01-01 00:00:00',5,'en','429168413','A5','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','Loved the idea of declarative, reproducible configs to basically have a self-documenting setup that could be nuked and recreated trivially.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A7','A10','','','','','','','','A8','A9','A3','','','','','','','','','','','','',NULL,'Ansible or something.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A17','A15','','','','','','','','','','','','','','','','','','','A2','A15','A17','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Don\'t know enough yet; also, I think that in the future, each upstream project should just ship their own flake and then Nix should be used as the one package manager to rule them all (with dependency resolution and all).','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','Declarative reproducible config','Atomic rollbacks','Impermanence','Stabilize flakes, CLI. Make dream2nix stable. Make nixpkgs obsolete by having all upstream projects use flakes, then make Nix a general-purpose package manager too (with dependency resolution and all).','Arch/Gentoo','Y','','','','','','','','','','qtile','Impermanence, disko, home-manager','Dream2nix (not ready yet)',''),(552,'1980-01-01 00:00:00',5,'en','881660494','A5','A2','male','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I started with NixOS.','Y','','','','','','Y','','','Y','','','','Y','Y','Y','Y','','','','A9','A2','A6','','','','','','','','A5','A12','A11','','','','','','','','','','','','',NULL,'Not Guix, because I need nonfree software. Probably Pacman on Arch and Homebrew on macOS? Although neither come anywhere close to Nix.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A3','A5','A2','A21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I contribute occasionally, but it\'s not my main involvement with Nix ecosystem. I am limited on time, and Nix has almost all the packages I need, so I don\'t have any need to contribute new packages. I guess I could do maintenance stuff, but again, free time is the issue.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','I used to constantly distrohop, and always felt that my system would end up in a less clean / messy state, with me not knowing what files are where and what\'s been installed. When I found out that I could erase $HOME and root on every boot with NixOS, I was hooked. Plus I like programming and computer science and found using a programming language interesting.','Y','','Y','Y','','','','Declarative, reproducible configuration','Atomic rollbacks and safety of my configuration always working and never in a broken state','Easy customizability and extending of packages. No messy PKGBUILDs laying around.','I\'d make the wiki official and able to compete like Arch wiki.','Arch, I guess.','Y','','','','','','terraform-nixos','Y','Y','','Hyprland','','NixOps because its so broken, unmaintained, and bad flake support.',''),(553,'1980-01-01 00:00:00',5,'en','785648720','A8','A2','-oth-','503 Service Unavailable','','','','','','','Y','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','I\'d been interested in a reproducible system for a long time, but while the Arch build system seemed to be the best among the established distros (and I was running an Arch-based OS), it was imperfect and not worth the hassle. Nix was a greater hassle and had a steep learning curve, but offered more benefits.','','Y','','','Y','','Y','','Y','','','','','Y','Y','Y','','','Y','','A7','A2','A1','','','','','','','','A1','A9','A6','','','','','','','','','','','','',NULL,'Arch build system','A4','Y','Y','','Y','Y','','','','','','','','','','','','Y','','','','','','A6','A15','A4','A1','','','','','','','','','','','','','','','','','','A19','A6','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','Y',NULL,'Refuses to boot, probably disk failure','As soon as I have free time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Cachix','Robotnix','<3'),(554,'1980-01-01 00:00:00',5,'en','291402936','A6','A2','male','','','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Hype','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A10','A6','A1','','','','','','','','A9','A8','A12','','','','','','','','','','','','',NULL,'Arch Linux','A4','','','','','','','','','','','','','','','','','','','','','','','A9','A4','A20','A2','A3','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','','','','A2','','Y','','','','','','','More mirror cache repo','Verbose command line interface','','I would add verbose command line interface','Arhc linux','','','','','','','','Y','','Y','','','',''),(555,'1980-01-01 00:00:00',5,'en','1014721068','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was interested in a way to reliably maintain my settings and programs in git for when I setup a new computer or wanted to play with a new tool. ','Y','Y','','Y','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A7','','','','','','','','A5','A4','A3','','','','','','','','','','','','',NULL,'Probably a combination of homebrew/pacman/flatpak/distrobox with an immutable core OS, bundled with ansible or bash scripts.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I’m not sure how to add tests and run enough of them on all architectures. Also, when I get a non-nixpkgs program working it feels like a hack. I could probably figure it out, but I haven’t dedicated the time.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','Declarative configuration','Atomic deployment and rollback','Nixpkgs software and NixOS options availability','Make home-manager a core feature of the OS instead of an add-on','Another immutable distro with home-manager','Y','','','','','','','','','','i3','nix-darwin, NixOS-WSL, disko, nix2vim','','Very appreciative of the community and this incredible project!'),(556,'1980-01-01 00:00:00',5,'en','1735232347','A3','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','main operating system (nixos)','A7','','','','','','','','Y','','','','','','','Y','','','Y','','','','A1','A7','A10','','','','','','','','A9','A5','A14','','','','','','','','','','','','',NULL,'Opensuse Tumbleweed','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Technical knowledge and other duties ','Y',NULL,NULL,NULL,NULL,'A1','','','Y','daily drive ','A1','high amount of precompiled kernel and software, making it more interesting than Arch\'s aur and easier to install software. \r\nThe automated generations boot entries allows for a relatively safe tinkering, the only other distro that offers something similar, out of the box, is btrfs snapshots with Snapper in Opensuse, obviously they are two vastly different technologies but allows for that same safety feeling that almost none of the major distributions offers.','','','','','Y','','','nixpkgs huge amount availability ','rollback (generations) bootloader entries by default','the ability to test a program in a temporary shell','Default and official GUI programs integrated with Plasma allowing to manage nixos-generations and bootloader associated configs. \r\nAlso, an unified software management center, similar to synaptic (in advance mode) or Discover (easy mode) would be interesting. Currently, the closest I know of is the unofficial libadwaita app nix-software-center maintained by vlinkz on Github.','Opensuse Tumbleweed or Arch','Y','','','','','','','','Y','','','','','Just that feels truly good using Nixos-plasma '),(557,'1980-01-01 00:00:00',5,'en','1479249160','A2','A3','male','','','','','','','','','Y','','','','','','Y','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was getting suggestions to use NixOS for some time, and when I was switching my job, I just bit the bullet and migrated from Gentoo to NixOS. I immediately introduced it in a new job to ensure everyone uses the same development environment.','','','','','Y','','','','Y','','','Y','','','Y','Y','Y','','Y','','A2','A3','A6','','','','','','','','A8','A9','A1','','','','','','','','','','','','',NULL,'Multiple other tools including: docker, bash, ansible..','A3','Y','','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','With new work, I just installed it and migrated all my systems over time. It was a suggestion from my friends. I also tried NixOS as an alternative firmware for embedded in the previous workplace but that was just an investigation of it.','Y','Y','Y','','','Y','','Ability to rollback and manage system description with git','Distributed deployment (prepare and deploy on and to different machines)','Cross-compilation support','I would improve cross-compilation a lot, but that is mostly just an issue of nixpkgs, not NixOS itself. I would also reduce the memory needed to evaluate NixOS but that is probably an issue of Nix, not NixOS again.','Probably what I was using previously. That is my homebrew version of Gentoo for development PCs, Alpine Linux for embedded boards, and OpenWrt for network devices.','','','','','','Y','','','','','sway','agenix','',''),(558,'1980-01-01 00:00:00',5,'en','950918867','A8','A2','fem','','','','','','','','','','','','','','','','','','','','','','','','','not in tech','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','Gaming PC','A1','Distrohopped from Arch for better config management','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A10','A1','A7','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'I\'d probably still be on Arch or possibly guix','A2','','','','','','','','','','','','','','','','','','','','','','','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','Gaming PC','A2','','','','Y','','','','','','','','','','Y','','','','','','','','','','bspwm/dwm','','',''),(559,'1980-01-01 00:00:00',5,'en','657316291','A6','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Because i wanted to settle on something future proof and something that paysoff in future work. I find that nix is advancing that traditional linux.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'Archlinux as an DIY guy.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A21','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Understand nix. Surely it aint easy, so there is a learning to be done.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','For an future advancing distro which could pay-off in some way','Y','','','','','','','Config to rule \'em all','Reproducibilty and unifies lots of stuffs','Could be the best software/os to work with anywhere. Like commercially people should implement nix for work','Unnecessarily download the exisiting packages whenever i update channels and rebuild system.\r\nMany people dont want to try nixos because of requiring high bandwidth for upgrades.','Archlinux as an DIY guy.','Y','','','','','','','','','','Hyprland','','',''),(560,'1980-01-01 00:00:00',5,'en','122352602','A2','A3','male','','Y','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Come with NixOS','','','','','Y','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A2','A7','','','','','','','','A5','A14','A3','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A20','','','','','','','','','','','','','','','','','','','','A2','A20','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Packaging software correctly seems very complicated. Might look into it with more time. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','(Doom) Emacs got me interested in configuration my environment through a configuration file. I saw his easy it was to share and sync my Emacs configuration, and was getting frustrated that the same was not true for my non-Emacs environment. ','Y','','Y','','','','','','','','','Guix','Y','','','','','','','Y','','','Qtile, Hyprland','agenix, home-manager','',''),(561,'1980-01-01 00:00:00',5,'en','1025424461','A5','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I needed a cluster-wide package manager for a mesos cluster before Docker was pervasive, and nix fit the bill perfectly ','','Y','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A9','','','','','','','','A5','A9','A8','','','','','','','','','','','','',NULL,'Debian packages, which would be painful\r\nAnd maybe freebsd ports?','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A2','A9','','','','','','','','','','','','','','','','','','','A1','A2','A13','','','','','','','','','','','','','','','','','','','Y','','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was so fed up with puppet and chef and debian packages. NixOS managed to replace all of them and it was a miracle.','Y','','Y','','','','','Declarative system configuration','Atomic upgrades/rollbacks','Reproducibility ','Commercial software makers maintaining nix derivations for their own stuff','Maybe arch Linux? Or ChromeOS, no joke','Y','','','','','','','Y','','','','home-manager','kubenix',''),(562,'1980-01-01 00:00:00',5,'en','864204723','A2','A4','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','Y','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Started using at work to solve software packaging problems in a better way, then started using it at home. ','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A1','A2','A4','','','','','','','','A8','A7','A5','','','','','','','','','','','','',NULL,'Arch at home, likely something home-grown at work ','A4','','','','Y','Y','','','','','','','','Y','','','','','Y','Y','','','','A4','A2','','','','','','','','','','','','','','','','','','','','A5','A2','A4','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Got into it after using Nix','Y','','Y','','','','','Modules','Rollback','Mixing stable and unstable packages and modules','Remove the channel concept, people should use flakes now','Arch','Y','','','','','','','','','','I3','','',''),(563,'1980-01-01 00:00:00',5,'en','211169808','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','Y','','','','A2','Reproducible builds for mobile robots.','','Y','','','','','','','Y','Y','','','Robots','','','Y','Y','','','','A2','A7','A5','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'apt','A2','','','','Y','','','','','','','','','','','','','Y','','','','','','A2','A4','A3','A15','A1','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','We need a declarative os with atomic updates for our mobile robots','Y','Y','','Y','','','robots','declarative ','atomic upgrades/rollbacks','multiple versions of packages','Smooth and final transition to flakes and better canonical documentation.','Ubuntu','Y','','','','','Y','','','','','none','','','Nix and NixOS can play a (big?) role in robotics'),(564,'1980-01-01 00:00:00',5,'en','1702897839','A2','A4','male','','','','Y','','','','','','','','','','','','Y','','Y','Y','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Colleagues introduced me. It\'s also part of my job to know how it works. ','','','','','Y','','Y','','','','','','','','Y','Y','Y','Y','','','A2','A3','A1','','','','','','','','A3','A9','A13','','','','','','','','','','','','',NULL,'Anaconda or pip or docker','A1','','','','Y','','','','','','','','','','','','','','','','','','','A13','A2','A3','','','','','','','','','','','','','','','','','','','A2','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Everyone around me used it','Y','','','','','','','Declarative config','Reproducibility','','','Ubuntu','Y','','','','','','','Y','','','','','',''),(565,'1980-01-01 00:00:00',5,'en','1424474517','A1','A2','fem','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Ran out of things to tinker with my Linux machines, saw some folks talking about NixOS, jumped into it. I can\'t even remember what I did in the beginning, but it was probably just a NixOS config.','','','','','Y','','Y','','Y','Y','','Y','','','Y','Y','Y','','Y','','A2','A1','A9','','','','','','','','A1','A8','A3','','','','','','','','','','','','',NULL,'Some ad-hoc scripts for machine and dev environment setup. I used to keep a repo with config files and a script to symlink them into places.','A1','','Y','','Y','Y','','','','','','','','Y','','','','','','Y','','','Woodpecker','A15','A4','A3','A2','A13','A19','A1','','','','','','','','','','','','','','','A22','A19','A1','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Lack of time (I did send some patches, and they got merged. But I am by no means an active contributor).\r\n','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Ran out of things to do with my Linux machines.','Y','Y','Y','Y','','Y','','Up-to-date, but pinnable and binary-cached packages from Nixpkgs.','Full-system rollback.','QEMU integration (NixOS containers and NixOS tests).\r\n\r\nThey are not only useful for Nixpkgs, but also for my projects that require full desktop environments to be tested.','Add declarative configuration for KDE Plasma.','Ad-hoc shell scripts for installing and configuring systems.','Y','','','','','','','','Y','','Qtile','disko.','home-manager. Keeping two dependencies (nixpkgs and home-manager) turned out to be worse than just making everything global for me.',''),(566,'1980-01-01 00:00:00',5,'en','1283646194','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Friends migrated to nixos,i followed','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A7','A2','A3','','','','','','','','A8','A3','A6','','','','','','','','','','','','',NULL,'Pacman ','A4','','','','Y','Y','','','','','','','','','','','','','Y','','','','buildbot','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Friends mitgrated to nicos, i followed','Y','Y','Y','','','','Laptop ','Reusing configuration from others','A dingle config file, no fiddling in /etc','Easy remote deployments','Secrets Management from first hour','Arch at home, ubuntu at work','Y','','','','','','krops','Y','','','','Disko','','Cheers to the last years release managers (dasj,hexa), nixpks became much more stable wrt updating'),(567,NULL,NULL,'en','676017273',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(568,'1980-01-01 00:00:00',5,'en','1443759924','A2','A3','fem','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','Y','','Y','','','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started with NixOS, not really understanding what Nix was.','','Y','','','','','Y','Y','','Y','Y','','','Y','Y','','Y','','','','A2','A7','A1','','','','','','','','A9','A8','A14','','','','','','','','','','','','',NULL,'distrobox','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','After trying Guix, which was too limiting for me due to their libre software requirements.','Y','','Y','Y','Y','','','Clean system, all the time','Declarative configuration','NixOS modules in nixpkgs. I never have to write anything myself','The ability to run binaries downloaded from the internet','Guix','Y','','','','','','bento','Y','Y','Y','','','- peerix, but it\'s not maintained and not working very reliably, but it does a job without alternative\r\n- deploy-rs, but it\'s pushing a whole closure so it\'s not always practical\r\n- Arion, but it seems unmaintained and wasn\'t reliable','Thanks for the survey \\o/'),(569,'1980-01-01 00:00:00',5,'en','1506975516','A2','A3','male','','','','','','','','Y','','','','','','','','','','Y','','Y','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A2','A9','A1','','','','','','','','A9','A8','A14','','','','','','','','','','','','',NULL,'','A4','','Y','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A4','','','','','','','','','','','','','','','','','','','','','A2','A1','A14','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','','','','Declarative configuration','Rollbacks','','','CoreOS ?','Y','','','','','Y','','Y','','','','- home-manager\r\n- agenix\r\n- simple-nixos-mailserver','- devenv','Nix rocks!'),(570,'1980-01-01 00:00:00',5,'en','1695611959','A6','A2','male','','Y','','','','','','','','Y','','','Y','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I began to use Nix right when I start my first day at using NixOS.','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A7','A2','A3','','','','','','','','A5','A6','A9','','','','','','','','','','','','',NULL,'I might be using anything that depends on the programming language used or the development ecosystem specific ones.','A2','','','','','Y','','','','','','','Y','','','','','Y','','','','','','A1','A19','A15','A5','A10','A4','','','','','','','','','','','','','','','','A1','A22','A4','','','','','','','','','','','','','','','','','','','Y','','Y','','A1','','The size of the project is big, it really makes me think that I need to spend more time with Nix before I can be confident enough to actively contribute. My professional experience is limited to web development in general.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','At one point in my life, my hard drive was broken to death and became no longer usable. Usually, when such things happened, I\'d typically take that as an opportunity to jump between Linux distribution that I would find to be interesting to try at the time. But this time, there\'s something different, something that I have come to understand after my years of distro hopping, is that I need a very specific feature to exists, something that I came to learn from NixOS that I have not been able to have since.\r\n\r\nThere are some other distributions that I know that tries to achieve similar things with different technical implementations that I did not like much, but NixOS, is well performing at what it does for years since. So with that in mind, despite the limited amount of documentation and feedback to refer to when I first tried it, I went all in to give my best to understand and use it since to look no further.','Y','','','','','','','','','','','It\'s very likely that I would either use Debian SID, or Arch based Linux Distribution.','Y','','','','','','','','Y','','','Mostly sites like search.nixos.org and the forums (discourse, reddit).','','With all due respect, thanks. I really wanted to contribute but at the same time I felt powerless to understand the entire Nix ecosystem.'),(571,'1980-01-01 00:00:00',5,'en','1325636310','A2','A5','male','','','','','','','','','','','Y','','','','','','','Y','','','','Y','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Mainly two reasons; \r\n- I love functional programming\r\n- After using mostly Debian and Ubuntu for 2 decades, I got annoyed with the time spent setting up machines to config. I also got tired of Ansible and SaltStack. Nix seemed to solve all my issues already in the base system (+home-manager)','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A6','','','','','','','','A8','A14','A6','','','','','','','','','','','','',NULL,'Guix, Debian or Ubuntu, Fedora Silverblue','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A12','A6','A1','A22','A2','','','','','','','','','','','','','','','','','A12','A22','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','It\'s something I\'d like to do once I understand it better','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','Stability','Configuration Management with Flakes and Git','No annoying pop-up dialogs for OS stuff','Better darwin support, smaller closures for containers','Guix, Debian/Ubuntu, Fedora Silverblue','Y','','','','','','','Y','','','','Home Manager','LnL7/nix-darwin',''),(572,'1980-01-01 00:00:00',5,'en','1093592628','A2','A5','male','','','','','','Y','Y','','','','','','','Y','','','Y','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A3','A6','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'A combination of Docker (dev envs) and Ansible/Puppet (system setup)','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','A3','A15','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','More documentation','','Y','','','','','','','','','','i3','Home Manager','',''),(573,'1980-01-01 00:00:00',5,'en','2133750511','A2','A3','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking for a solution for deterministically reproducible python environments for Jupyter Notebooks for my project at work','','Y','','','','','Y','','','','','','','','Y','','','','','','A2','A9','A4','','','','','','','','A2','A8','A14','','','','','','','','','','','','',NULL,'My most usual use-case is per-project configuration and nix-shell, so I guess I would use docker or just suffer','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A3','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I guess I still don\'t use intensively enough to understand what I want to contribute','N','N','I don\'t know, curiosity I guess',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(574,'1980-01-01 00:00:00',5,'en','1883772851','A2','A4','male','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I work for a company that\'s heavily invested in Nix, so I had a strong incentive to use it for all kinds of work projects.','','Y','','','','','Y','','','','','','','','Y','Y','Y','Y','','','A2','A1','A3','','','','','','','','A4','A14','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','Y','Y','','','','A2','A7','A1','A21','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Colleague convinced me to','Y','','','','','','','Safe updates and easy rollbacks','Declarative system configuration','Stability','','Ubuntu','Y','','','','','','','Y','','','','Home manager','nix-direnv','While Nix is sometimes annoying, it\'s a fascinating technology and makes life often much easier. Thanks to everyone involved in this effort!'),(575,NULL,NULL,'en','1785335858',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(576,'1980-01-01 00:00:00',5,'en','210745018','A2','A4','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A1','','','Y','','','Y','','Y','Y','','Y','','','','Y','Y','','Y','Y','','','A7','A9','A10','','','','','','','','A13','A9','A8','','','','','','','','','','','','',NULL,'Debian + Ansible','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A4','A19','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','Y',NULL,'- out of date/incomplete documentation\r\n- missing hardware support','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(577,'1980-01-01 00:00:00',5,'en','1367555113','A2','A7','male','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','I had to use 2 versions of BOOST so having nix do this for me in 2 different projects seemed like the only solution at the time.','Y','Y','','','','','Y','','','Y','','','','Y','Y','','','','','','A3','A1','A10','','','','','','','','A5','A10','A15','','','','','','','','','','','','',NULL,'I have no idea','A1','','','','Y','','','','','','','','','','','','','','','Y','Y','','','A13','A21','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'N','N','I suppose if it had support for excel but I really am used macOS and Windows and wouldn\'t really wish to spend time moving.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The chat channels. I find these now confusing. I used to get really high quality help.','','Can the language be typed? It would really help understanding what functions do and with error messages.'),(578,'1980-01-01 00:00:00',5,'en','1487166588','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Reproducible dev shells (nix-shell) for the team, following bugs we had because of different versions of software.','','Y','','Y','','','Y','','Y','Y','','','','Y','Y','Y','Y','','Y','','A3','A1','A7','','','','','','','','A3','A6','A10','','','','','','','','','','','','',NULL,'Guix','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A1','A2','A5','A7','A11','A15','','','','','','','','','','','','','','','A13','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','A Ubuntu upgrade crashed halfway through, I lost everything.\r\nThen I had to reinstall absolutely everything, and it took me like a week.','Y','Y','','Y','','','','Safe upgrade & rollback','System configuration for many services (NixOS options)','','Less disk consumption/easier analysis of why the Nix store is so big. I have to garbage collect every week or so because the Nix store takes most of my disk, yet it is not easy to understand what roots cause what.','Guix','Y','','','','','','','','','','I3','','',''),(579,'1980-01-01 00:00:00',5,'en','358512992','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I initially started using NixOS on my personal desktop computer so I can more easily manage my system configuration.','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','Y','','A2','A7','A9','','','','','','','','A8','A9','A2','','','','','','','','','','','','',NULL,'I\'d probably still use language-specific tooling & docker/podman. As for NixOS, I\'d likely still use Fedora.','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A6','A1','','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I\'ve been using davious distributtions before and friend recommended NixOS and the concept sounded so much better, especially for people with an dev or sysadmin background.','Y','Y','Y','','','','','Declarative OS configuration','Reproducibility','Easy customizability','Improved RISC-V support, built-in secrets management','Likely still Fedora','Y','','','Y','','','','Y','','','','home-manager, flake-utils, search.nixos.org, crane','naersk (switched to crane)',''),(580,NULL,1,'en','2038849477','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Pilot','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(581,'1980-01-01 00:00:00',5,'en','916594259','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I joined a company that uses Nix extensively. Using Nix wasn\'t mandatory but I figured I\'d learn anyway, so I converted my main dev machine to NixOS.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A2','A7','','','','','','','','A13','A9','A5','','','','','','','','','','','','',NULL,'Some other linux distribution.','A2','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A1','A2','A9','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I sent a couple of PRs but they never got any response','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I started using NixOS at the same time as I started using Nix, and for the same reason.','Y','','Y','','','','','declarative configuration','portable configuration (i.e. most of my configuration can be applied to multiple machines seamlessly)','','So I haven\'t thought through the design and implications of this at all, but sometimes I want to \"fiddle\" with my running system to resolve a problem that I don\'t yet know how to fix. With NixOS, I usually have to rebuild the system multiple times before I figure out what I need to do. It would be cool if I could just edit the config files live (with an easy roll-back to the declarative configuration when I break something).','Some other linux distribution','Y','','','','','','','','','','hyprland','oxalica/rust-overlay and direnv','',''),(582,'1980-01-01 00:00:00',5,'en','1231169210','A2','A3','male','','Y','','','','','','','Y','','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','Y','Y','','','Y','Y','Y','Y','','Y','','A7','A2','A4','','','','','','','','A2','A11','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A4','A14','A2','','','','','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','Y','','single configuration input','atomic deployment and rollbacks','reproducibility','','','Y','','','','','','','','','','sway','','NixOps, morph',''),(583,NULL,1,'en','18092577','A2','A5','male','','','','','','','Y','','','','Y','Y','Y','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(584,NULL,1,'en','1620986609','A2','A2','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(585,'1980-01-01 00:00:00',5,'en','1141036030','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Started using it around 2018/2019 to get a haskell-language-server matching the ghc version in the project.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','','A7','A2','A1','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Arch for the developer workstation\r\nRedHat in production servers probably.','A4','','','','Y','Y','','','','','','','','','','Y','','Y','Y','','','','','A15','A1','A19','A9','A13','A5','','','','','','','','','','','','','','','','A1','A19','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','since 2018/2019 getting haskell-language-server matching ghc version in project. Then I got curious about NixOS, too. I think its very convenient after getting through the learning curve and if you don\'t need stuff not already packaged / provided by NixOS modules.','Y','Y','','','','','','Declarative system configuration / sharing of configuration between different configurations','Documentation via search.nixos.org and the nixos options','Easy reproducibility','better error messages\r\nbetter evaluation guaranties\r\n\r\nOne way to implement that, might be:\r\n\r\nAdd static typing to the nix language or if nickel-lang seems good (have not looked at it in detail, yet) turn nixpkgs into nickel-lang.','Probably Arch / RedHat and their package managers ... also lots of docker','Y','','','Y','','','','','Y','','Plasma + Awesome','oxalica/rust-overlay\r\nhttps://github.com/input-output-hk/haskell.nix\r\nnaersk\r\n','',''),(586,'1980-01-01 00:00:00',5,'en','886172302','A2','A4','male','','Y','','','Y','','Y','','','','','','','','','Y','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I liked functional languages like Haskell since longer and found the principle of NixOS appealing. I was using Gentoo at the time and heard that NixOS was at least as configurable as Gentoo. Also, the community made a sympathetic impression.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','','','','A9','A10','A1','','','','','','','','A6','A8','A4','','','','','','','','','','','','',NULL,'No idea if anything else seriously exists. Possibly Guix','A3','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A13','A15','A2','A21','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same story as Nix','Y','Y','','Y','','','','Reproducible systems','Modular, functional system configuration','','* Separate packages (nixpkgs) and module systems (NixOS)\r\n* Improve error messages for modules','Gentoo','Y','','','','','','','','Y','','','Home manager\r\nLanguage-specific overlays\r\nnixos-hardware','I looked at nixops and then found the documentation to be too sparse to work with it reliably','Consider allowing more answers in the drag & drop priorisation questions next time'),(587,NULL,2,'en','82665991','A2','A2','male','','','','','','Y','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A7','A6','','','','','','','','A7','A2','A5','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A3','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(588,'1980-01-01 00:00:00',5,'en','7053598','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','','A2','A3','A9','','','','','','','','A8','A9','A2','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','Drone CI','A13','A7','A2','A5','A9','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','To store a reproducible configuration of my home server in a single repository.','','','Y','','','','','Declarative configuration','Rich module system','Reproducible','','','Y','','','','','','','','','Y','','','',''),(589,'1980-01-01 00:00:00',5,'en','1369841171','A2','A3','male','','','','','','Y','Y','Y','Y','','','','','','','','','Y','','','','','','','','','','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Watched a few videos from NixCon, fell in love.\r\n\r\nMostly because home manager.','','Y','','','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','Y','','A1','A2','A10','','','','','','','','A10','A8','A4','','','','','','','','','','','','',NULL,'Guix','A4','','Y','Y','Y','Y','Y','','','','','','Y','','','Y','','Y','Y','Y','','','','A13','A15','A3','A2','A4','A9','A14','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Started using Nix, switched to NixOS a week later','Y','Y','Y','','Y','Y','','Reproducibility','Easy to maintain other people\'s computers','','','Guix','Y','','','','','','','Y','','','','nixos.org, home-manager, snowflakeOS','',''),(590,'1980-01-01 00:00:00',5,'en','816745462','A2','A3','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','','','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Easy to setup desktop and laptop in exactly the same way as well as making reinstalling machine more easily.\r\nLater on reproducible builds for work.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A8','A14','A4','','','','','','','','','','','','',NULL,'I\'d still be using Ubuntu and probably more containers.','A4','','','Y','Y','Y','','','','','','','','','','','','Y','','','','','','A3','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','Most of the time I don\'t need to','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Want the same environment on all my machines. Also makes it easy to reinstall.','Y','','','','','','','Configuration files describing an entire system','','','The nix channels seem redundant. If I use Flakes then what\'s the point of having them besides not getting useful feedback when commands aren\'t found.\r\nI\'d also appreciate having a Microsoft Defender for Endpoint for Linux package to comply with work policies (I currently don\'t comply).','Ubuntu (work) or Arch (home)','Y','','','','','','','Y','','','','','',''),(591,'1980-01-01 00:00:00',5,'en','1716202291','A5','A2','-oth-','Nonbinary','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I found the flexibility of configuration and easy creation of dev environments quite useful.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A5','A13','A4','','','','','','','','','','','','',NULL,'I don\'t have an alternative to Nix','A2','Y','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Flexible system configuration','Y','','','','','','','','','','Documentation','Arch Linux','Y','','','','','','','','','','sway','fenix, flake-utils','',''),(592,'1980-01-01 00:00:00',5,'en','902081710','A2','A2','male','','','','','','','Y','','','Y','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','','','','','','Y','Y','','','Y','','','Y','','Y','Y','','Y','','A2','A1','A6','','','','','','','','A2','A12','A6','','','','','','','','','','','','',NULL,'GUIX','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A19','A5','','','','','','','','','','','','','','','','','','','','Y','','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A4','','Y','','Y','','','','','Declarative','Reproducible','Abstract','Perl/Bash activation scripts','Arch, Alpine or GUIX','Y','','','','','','','Y','','','i3/sway','','','Thanks :)'),(593,'1980-01-01 00:00:00',5,'en','589070371','A3','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','Y','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','Y','Y','','A3','A2','A1','','','','','','','','A12','A5','A3','','','','','','','','','','','','',NULL,'Ad hoc shell scripts ','A4','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A4','A2','A3','A9','A13','A15','','','','','','','','','','','','','','','','A15','A2','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','Y','','','','','','','','','','Y','','','','','Y','','','','','','','',''),(594,NULL,NULL,'en','357928037',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(595,'1980-01-01 00:00:00',5,'en','1133541628','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','In my opinion, one of the great advantages of Open Source is that it blurs the line between ‘producers’ and ‘consumers’ of software, allowing a diverse audience to participate in its evolution. However, that only works when the software you run on a day-to-day basis is close to the latest version, otherwise the ‘gap’ with ‘upstream’ becomes hard to bridge.\r\n\r\nFor that reason, after more than a decade on Debian, I was ready to distro-hop to a ‘rolling release’ distro. After a brief attempt at Arch, which I didn’t find too collaboration-friendly, I decided to give NixOS a try.\r\n\r\nTo be honest, I kinda thought this departure from FHS ‘could never work in practice’. However, I was quickly impressed by the quality of nixpkgs, how easy it was to run nixpkgs-unstable and switch back to a previous profile in case of breakage, and the way the ‘monorepo’ approach to packaging aids wide collaboration.\r\n\r\nThis was about 4 years ago, since then I’ve become a nixpkgs maintainer and committer and am still extremely happy with Nix - and excited by its still-untapped potential.','','Y','','','','','Y','Y','','Y','','Y','','','Y','Y','Y','Y','','','A2','A10','','','','','','','','','A3','A6','','','','','','','','','','','','','',NULL,'guix','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A11','A5','A2','A10','A15','A9','','','','','','','','','','','','','','','','A2','A10','','','','','','','','','','','','','','','','','','','','','','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','In my opinion, one of the great advantages of Open Source is that it blurs the line between ‘producers’ and ‘consumers’ of software, allowing a diverse audience to participate in its evolution. However, that only works when the software you run on a day-to-day basis is close to the latest version, otherwise the ‘gap’ with ‘upstream’ becomes hard to bridge.\r\n\r\nFor that reason, after more than a decade on Debian, I was ready to distro-hop to a ‘rolling release’ distro. After a brief attempt at Arch, which I didn’t find too collaboration-friendly, I decided to give NixOS a try.\r\n\r\nTo be honest, I kinda thought this departure from FHS ‘could never work in practice’. However, I was quickly impressed by the quality of nixpkgs, how easy it was to run nixpkgs-unstable and switch back to a previous profile in case of breakage, and the way the ‘monorepo’ approach to packaging aids wide collaboration.\r\n\r\nThis was about 4 years ago, since then I’ve become a nixpkgs maintainer and committer and am still extremely happy with Nix - and excited by its still-untapped potential.','Y','','Y','Y','','Y','','Declarative build','Customizability (including applying patches etc)','','','','Y','','','','','','','','','','volare, notion','','',''),(596,'1980-01-01 00:00:00',5,'en','301604344','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Was draw in by the possibility to declare my entire operating system in one file. Tried to look into it many times but seemed very complicated. So after a year I finnaly took the time to look all over the internet to learn the details about nix and nixos. Learning curve was extremy steep, but once you get past the initial moutain of learning nix language, how basic packages are build, what flakes are, what modules are and what home-manager is, after that I am really pleased with the system and seems much more cleanly constructed than it seemed at first.','','','','Y','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A7','A1','A2','','','','','','','','A14','A8','A4','','','','','','','','','','','','',NULL,'Arch/Fedora for distribution, normal packaging tools for the given programming language.','A4','','Y','','Y','Y','','Y','','','','','','','','','','','','','','','','A2','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time commitment currently.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Wanted to try to have the abillity to declare my operating system in a git repository.','Y','','Y','','','','','Declartive systems and ability to share modules between systems in the same repo','Package availability','Rollbacks','Better error messages and better module documentation. Have each module have its own documentation and not just documentation per option.','fedora/arch','','','','Y','','','','Y','','','Hyprland','Systemd services and service isolation.','',''),(597,NULL,NULL,'en','1657273746',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(598,'1980-01-01 00:00:00',5,'en','2121062825','A2','A2','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','Everything','A3','I wanted a declarative package manager for my 3 devices and there was not really an alternative.','','Y','','Y','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','Configuring switches ','A7','A3','A4','','','','','','','','A8','A9','A2','','','','','','','','','','','','',NULL,'I don\'t know 😵‍💫 some half assed Debian unstable things','A2','','Y','Y','Y','Y','','','','Y','Y','','Y','','','Y','','','','Y','','','','A9','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','Pull requests','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I needed something declarative which you can easily extend','Y','Y','Y','Y','','','','Declarative configuration ','Extendability ','Atomic updates ','- ca-derivations\r\n- module system for package options\r\n- improve performance ','Debian unstable while being unhappy about it','Y','','','','','Y','','','Y','','','microvm.nix, NixOS-WSL, nil, comma, many more','home-manager','🏳️‍🌈'),(599,'1980-01-01 00:00:00',5,'en','607263398','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','Y','','Y','','Y','','','','','Y','Y','Y','Y','Y','Y','','A2','A8','A10','','','','','','','','A8','A2','A6','','','','','','','','','','','','',NULL,'Docker and custom scripts','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A20','A1','A2','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','','Y','','','','','','','Add secrets support\r\nFlakes only\r\nNixos containers without sudo\r\n','Probably Archlinux','Y','','','','Y','','','','','','Sway','clj-nix','devshell\r\nflake.parts',''),(600,'1980-01-01 00:00:00',5,'en','719278025','A2','A2','male','','','','','','Y','Y','','Y','','','','','','Y','','Y','Y','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','The band\'s rig is set up with it 😉','A4','Went into the LISP and SmallTalk machine rabbit hole, found some obscure forum about LISP machines, someone was talking about Nix. Haven\'t looked back since.','Y','Y','','Y','Y','','Y','Y','Y','Y','','Y','In Ear Monitoring rig.','Y','Y','Y','Y','Y','Y','','A9','A1','A4','','','','','','','','A4','A11','A13','','','','','','','','','','','','',NULL,'I\'d say Guix… But I\'d probably just go back to Arch + AUR + lots of bash scripts. Since that\'s most familiar.','A7','Y','Y','Y','Y','Y','','','','Y','','','Y','Y','','Y','','','','Y','Y','Y','','A15','A2','A1','A7','A4','','','','','','','','','','','','','','','','','A5','A10','A6','','','','','','','','','','','','','','','','','','','','Y','','','-oth-','I help where I can 😅',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same story as with Nix, I went all in.','Y','Y','Y','Y','','','','The module system','The packaged services','The weirdly active Minecraft community','A way to \"dynamically\" upgrade systems. I don\'t like the fact that NixOS is an \"all or nothing\" type of system. Either everything builds, or everything fails. For a workstation, this is okay, but for a server? I don\'t like it when I can\'t upgrade a service that\'s unrelated to another one that just so happens to be failing.','Again, Arch.','Y','','','Y','','Y','','Y','','','','home-manager, nixos-hardware, Musnix','A lot of the secret management systems, like sops-nix. Not that I don\'t like them, just took too long to understand.','Keep up the amazing work!'),(601,'1980-01-01 00:00:00',5,'en','1990250490','A3','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','It\'s my main daily distro','A2','A friend recommended it','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Archlinux','A4','','','','Y','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','Main daily distro','A2','','Y','','Y','','','','','Repeatable builds','All configuration in one place','','Add more documentation and learning material','Archlinux','Y','','','','','','','','','','i3','','',''),(602,'1980-01-01 00:00:00',5,'en','641942132','A3','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Switched to NixOS from Arch Linux in search for reproducibility and to avoid breaking the system with a config change (root on tmpfs).','','Y','','','','','Y','Y','','','','','','','Y','','Y','','Y','','A2','A3','A1','','','','','','','','A8','A7','A1','','','','','','','','','','','','',NULL,'Some combination of devcontainers and pacman, probably.','A3','','','','Y','Y','','Y','','','','','','','','','','','','Y','','','','A9','A2','A4','A1','A17','','','','','','','','','','','','','','','','','A1','A9','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','root/home on tmpfs','modules/declarative config','easy package patching','better/more streamlined systemd initrd boot support\r\nbetter [graphical/user] containers\r\ncryptsetup-suspend support\r\nAppArmor\r\nnixpkgs-to-flatpak tool, or some translation layer from nix to flatpak/ostree\r\nmeasuring','Probably Arch Linux','Y','','','','','','','','Y','','','flake-utils-plus, home-manager, agenix, nixvim','deploy-rs, devos',''),(603,NULL,2,'en','2075875716','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A3','A9','A1','','','','','','','','A4','A12','A2','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','A4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(604,'1980-01-01 00:00:00',5,'en','595040792','A2','A5','male','','Y','','','','','Y','','','','','','','','','','','Y','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It\'s been a while, but I think that the trigger was Nixos solved a problem I\'ve always been having but never really could articulate before. I\'ve been experimenting with all kind of scripts and stuff to try and minimise the amount of work needed to install a new computer and me feeling at home with it. When I had a job working closely with other people who already used Nix, I let myself convince easily, and could use their help for onboarding.','','Y','','','','','Y','','Y','','','','','','Y','','Y','Y','','','A1','A2','A3','','','','','','','','A8','A9','A10','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A14','A13','A1','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A5','Nixos was my entry into Nix, so see infra.','Y','','','','','','','Declarative system configuration','','','','','Y','','','','','','','Y','','','','','',''),(605,'1980-01-01 00:00:00',5,'en','2146564880','A5','A4','male','','Y','','','','','','','','','Y','','','','Y','','','Y','','','','','','Y','Philosopher','','','Y','','','Android (kill me now)','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I tried it as a toy, a curiosity. That\'s what I do with software: I fiddle with it. I realized that my way of doing things on Arch, ultimately, was untenable by comparison. I have a complex specification of my system, and I want something that lasts.','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A1','A10','A7','','','','','','','','A1','A12','A15','','','','','','','','','','','','',NULL,'Counterfactuals are hard problems, as I don\'t understand how the world might really look like if this ecosystem didn\'t obtain. It has clearly influenced the world. Arch Linux, Guix, Debian, Silverblue, and, really, distrobox. I\'d containerize much harder.','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'m new, but I can say I think it\'s is too centrally controlled. I\'d be willing to share what I do in P2P environments (the reliance upon tools like github seems insane to me). I also find that doing things the Nix-way isn\'t obviously correct. I\'ve got a dozen bullshit hacks I have to use to get what I could easily have up and running on a more traditional distro. Nix provides a base layer for me, but synchronizing `/home` is how I move plenty of my configuration (and my software) .','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','I know the file I\'m editing to change my system, and I can reproduce or roll it back easily. Iterative development is fearless and fast, even if painful, unintuitive, and poorly documented in some respects. ','Software configuration is often much easier in NixOS. Packagers sometimes have sane or better defaults with simple options that make it so hours of work can be saved. Note, however, fighting against an official package sucks.','The package repo is relatively large and up-to-date. ','I wish it were easier to override packages out of the box. The barrier to entry is higher than it should be here. Meshing with the rest of the GNU/Linux ecosystem is also too painful; there\'s still too much software that I can\'t really get running well on my system. ','Prolly Arch','Y','','','','','Y','','','','','i3','','','Thank you. Please move toward P2P distributions. Ideally, I could walk up to a machine, enter my password into Argon2, use that key to join an encrypted swarm that downloads my secrets, including my config, and installs the system from there. '),(606,'1980-01-01 00:00:00',5,'en','643952009','A2','A2','fem','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I used ubuntu/pop-os/raspbian/debian-server before and got annoyed with updates breaking things, outdated packages, etc and gave it a try since it was referenced on basically every github README as a up-to-date package source','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A3','A7','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'a mix:\r\nwork: ubuntu\r\ndesktop: fedora or arch\r\nlaptop: arch or gentoo\r\npi: raspbian','A2','','','','Y','Y','','','','','','','','','','','','','','','','','Gitea Actions','A15','A2','A17','A1','A5','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','i dont know the process and maintaining a NUR kind of works','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','Add a easy method for packaging qt (python) and electron (js)','','Y','','','','','Y','','','','','i3wm','','',''),(607,NULL,2,'en','368829256','A2','A2','male','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A3','A2','A1','','','','','','','','A6','A3','A13','','','','','','','','','','','','',NULL,'Guix ','A7','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A4','A17','A1','A15','A19','A25','','','','','','','','','','','','','','','','A4','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(608,'1980-01-01 00:00:00',5,'en','626104593','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Security Engineer','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','Because it is powering NixOS.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A9','','','','','','','','A2','A6','A4','','','','','','','','','','','','',NULL,'Guix.\r\nOr shell scripts...','A1','','','','Y','Y','','','','','','','','','','','','','','','','','builds.sr.ht','A1','A7','A2','A15','A14','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','True reproducibility, broader support of packages and services than Ansible.','Y','','Y','Y','','','','Reproducible','Declarative','','Add vulnerability information to derivations.','Guix.','Y','Y','','','','','','','','Y','','','Cross compilation for old devices.',''),(609,'1980-01-01 00:00:00',5,'en','1734900385','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A3','A1','','','','','','','','A2','A4','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A15','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','Reproducible configuration','','','','Arch Linux','Y','','','','','','','Y','','','','','',''),(610,NULL,1,'en','1983842608','A2','A6','male','','','','','','Y','Y','Y','','','Y','','Y','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(611,'1980-01-01 00:00:00',5,'en','2104567896','A2','A3','male','','Y','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Friend told me about that, and I was interested be NixOS and it\'s configuration using one config file. This the best way of managing servers','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','','Y','','','','A2','A10','A7','','','','','','','','A3','A8','A12','','','','','','','','','','','','',NULL,'containers, make','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','gitea actions','A2','A6','','','','','','','','','','','','','','','','','','','','A2','A6','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Better knowledge of nix language','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Because of my friend told me, and I like the way of managing servers','Y','','Y','Y','','','','Configuration of server in one file, truth of source','Reproducible server configuration ','Atomic update and rollbacks','','Ansible, containers ','Y','','','Y','','','','','','','sway','Home-manager','',''),(612,'1980-01-01 00:00:00',5,'en','788425417','A2','A3','male','','Y','','','','Y','Y','Y','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Devops simplification','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A1','A2','A8','','','','','','','','A3','A4','A8','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A6','A2','','','','','','','','','','','','','','','','','','','','A6','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','Y','','','','','','','','','Y','','','Y','','','','Y','','','','','',''),(613,'1980-01-01 00:00:00',5,'en','171773006','A4','A3','male','','Y','','','','','','','Y','','','','','','','','','Y','','','Y','','Y','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I got sick of configuring my machines over and over again without the assurance that I can revive my setup easily in case of of crisis..','','','','Y','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A6','A2','','','','','','','','A5','A4','A1','','','','','','','','','','','','',NULL,'Guix','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','A1','A7','A5','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Same story as with Nix','Y','','Y','','','','','Modules','The pure nix lib','','Improve all documentation infrastructure..','Guix','Y','','','','','','','Y','','','','direnv with \'use nix\'','','Best of luck in finding alternatives to the cache.nixos.org issue.'),(614,'1980-01-01 00:00:00',5,'en','931455174','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','A2','A7','A1','','','','','','','','A11','A8','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A1','A3','A2','','','','','','','','','','','','','','','','','','A15','A1','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','','','','','','- service plurality (more than one instance of a service)\r\n- explicit module imports for faster evaluations\r\n\r\n- get rid of all-packages.nix (that\'s nixpkgs, I know)','either horrible container monstrosities, or horrible ansible monstrosities','Y','','','','','Y','','','','','sway','nix-diff, kolloch/crate2nix, sops-nix, flake-parts, disko, direnv','lots of abandoned/half-baked 2nix \"solutions\", lorri','if the opencollective funds gain a more expensive purpose (full-time docs person, nixpkgs gardening) instead of just infra, the donations might grow to match demand (within limits). right now, there isn\'t much of a point in contributing (or if there is, it\'s very intransparent)'),(620,'1980-01-01 00:00:00',5,'en','1797269429','A2','A4','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Pure, reproducible package management and system configuration. The theory is clearly superior.','','','','','','Only use NixOS','Y','Y','','','','Y','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A9','A8','A5','','','','','','','','','','','','',NULL,'Arch Linux, maybe Guix','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A3','A4','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Lack of understanding of the Nixpkgs architecture. Lack of understanding of the Nix language and familiarity with functional concepts in general. Oops, bash! everywhere.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Superior theory for how to configure systems.','Y','','Y','','','Y','','Version-controlled system configuration','Version-controlled home profile management','Atomic upgrade/rollback','Make it _simpler_, somehow?','Arch Linux, maybe Guix.','Y','','','','','Y','','','Y','','','','',''),(616,NULL,1,'en','1642126898','A2','A3','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(617,NULL,1,'en','818266199','A7','A4','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(619,'1980-01-01 00:00:00',5,'en','213883462','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Used Gentoo, got burned by impurities during upgrades, decided to build own system with snapshots, isolated builds and reproducible upgrades. Found NixOS that does exactly that, using Nix for as much of package management as I can ever since.','Y','','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A6','A1','A2','','','','','','','','A10','A11','A2','','','','','','','','','','','','',NULL,'I\'d build build isolation and reproducibility system on top of Gentoo.','A7','','','','Y','Y','','','','','','','','Y','','Y','','','','Y','','','','A1','A9','A15','','','','','','','','','','','','','','','','','','','A15','A1','A9','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','Y',NULL,'I got disappointed in Linux on desktop in general, nothing NixOS-specific. I still find it great for servers though!','After staying in Apple ecosystem for a long time, I am sure switching back to Linux will be too painful. But that\'s not NixOS\'s fault.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://github.com/stephank/yarn-plugin-nixify - really like the approach of integrating into language ecosystem\'s package manager to generate necessary Nix bits instead of hacking around it\r\nhttps://github.com/LnL7/nix-darwin - nice to use for macOS system configuration','divnix/std (sneakily rebranded to paisano-nix) - had to use for work, never liked it at all. Chaotic development, no backwards compatibility, breaking flake conventions with poor replacements',''),(618,'1980-01-01 00:00:00',5,'en','1985477538','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I found the concept of describing the system in a central place interesting, so I tried it out and keep using it.','','','','','','','Y','','','','','','','','','','Y','','','','A2','A7','A1','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Not enough time for contribution','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I found the concept of describing the system in a central place interesting, so I tried it out and keep using it.','Y','','','','','','','Central point for configuring the system','Atomic rollback for recovering from mistakes','','','Arch Linux ','Y','','','','','','','','Y','','Hyprland','','',''),(621,'1980-01-01 00:00:00',5,'en','1508620795','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A few years ago I was using homebrew on Mac. A few co-workers started to use Nix as they got new Macs from work and were talking about it. The project sounded interesting and a few months later when I was leaving that company I thought it would be a good idea to give Nix a try on fresh hardware. The new company I was joining allowed us to work on our computer so I installed NixOS on my desktop. I never looked back :)\r\n\r\nI started using Nix because of its package management capabilities (I started with nix-env), gradually moved to configuring my system via configuration.nix and nix-channels and ended up managing all of my machines from a single flake repo.','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A6','A9','','','','','','','','A8','A1','A6','','','','','','','','','','','','',NULL,'First, I would shed a tear, second I\'d probably stick to homebrew on Mac and whatever package manager came bundled with the Linux distribution I was using','A7','','','','Y','','','','','','','','','','','','','','','Y','','','','A1','A15','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','It\'s intimidating. I submitted a patch once and I ended pointing the PR at the wrong branch which pinged a bunch of people that shouldn\'t have been notified. If I\'d find a bug directly in a package hosted on nixpkgs I\'d probably try to submit a patch but right now I prefer maintaining my own flakes for custom packages.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same story as before :)','Y','','Y','','','','Raspberry Pis','reproducible configs. I can take a config on one machine and move it to another one ','nixos generations','package availability','I\'d clean up the confusion that\'s nix-channels, nix-env, nix profile and nix flake. It\'s hard to explain to new joiners and even I don\'t understand how they relate to each other','probably Arch','Y','','','','','','','','Y','','','home-manager, nix-darwin, agenix','I don\'t think I\'ve abandoned anything so far','Keep up the good work :)'),(622,'1980-01-01 00:00:00',5,'en','1008672620','A2','A3','male','','Y','','','','Y','Y','','','','','','','Y','','','Y','Y','','','','Y','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'Hard liquor','A7','','','','Y','Y','','','','','','','','','','','Y','','','Y','','','','A13','A2','A15','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','Reproducible builds','Declarative builds','Shared builds across machines','Even better test support ','Arch linux ','Y','Y','','','','Y','','','','','Xmonad','home-manager, agenix','Hydra','Thanks for the survey, looking forward to the results.'),(623,'1980-01-01 00:00:00',5,'en','245796664','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was using macOS and found that using Docker to encapsulate and run databases for development was eating a lot of my memory and being very slow. I wanted a way to run multiple database versions and to launch them concurrently in a single shell window. So I used Nix to setup a version-controlled shell environment with all the tools I needed. I later switched to a Linux laptop where it seemed obvious to use NixOS. ','','','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A2','A1','A5','','','','','','','','A6','A8','A14','','','','','','','','','','','','',NULL,'Guix','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A20','A1','A5','','','','','','','','','','','','','','','','','','','A20','A5','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted to experiment with using Linux as a desktop for daily development work, and I wanted a system which I could break and easily revert changes to without having to remember what I changed. I don\'t have the patience to manually configure things. ','Y','Y','Y','Y','','','','Declarative configuration','Atomic deployments and rollbacks','Ease of configuring complex components (e.g. services.bluetooth.enable)','Automatic software upgrades which integrate with flakes. Support for application isolation (e.g. installing flatpak applications). Secure boot. ','Guix','Y','','','','','','','','','','Sway','flake-utils, home-manager, emacs-overlay, jkxyz/uno','NixOps, morph','I think that search.nixos.org is a great documentation interface and it should be placed front and center. It could be improved by integrating examples of common package overrides, or configuration setups, which are community-curated in the style of clojuredocs.org. \r\n\r\nNixOS has the potential to be the most user-friendly Linux distribution. '),(624,NULL,1,'en','570046862','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(625,NULL,1,'en','351666786','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(626,'1980-01-01 00:00:00',5,'en','1618956478','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I started using Nix to configure NixOS','Y','Y','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A6','','','','','','','','A3','A5','A8','','','','','','','','','','','','',NULL,'Poetry for Python packaging, Docker','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','A9','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Lack of time, but I contribute to Nix community otherwise: I maintain a flake library and try to contribute to other flakes when I can (jupyenv, poetry2nix).','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Being interested in functional programming, having a troubled Arch install and a month of time before the 1st year of Bachelor degree (that was 2020), I installed and configured a flake NixOS setup using @balsoft\'s configuration and the help of NixOS telegram chat (I\'m Russian). One year after that, I made a flake library, base16.nix, which is now a foundation of a ~popular Stylix library (200 stars xD). One year ago I\'ve also installed Nix on my gf\'s M1 Mac, to share my JupyterLab and LaTeX flake (we study at the same uni program).','Y','','','','','','','Very easy to configure / install anything on my laptop ','Configuration is declarative','','Faster build & switch times, other wishes are more Nixpkgs focused: more packages, better Python and Linux/M1 Mac compatability.','Arch','Y','','','','','','','','','','Hyprland','home-manager\r\nflake-parts\r\npoetry2nix\r\njupyEnv\r\nbase16.nix','',''),(628,'1980-01-01 00:00:00',5,'en','1101478570','A2','A3','male','','','','','','','Y','','Y','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','For the benefits of nix-env, mainly installing recent versions of tools on old distros like Ubuntu LTS and having a reliable and quick way to install tools I use often in any distro.','Y','Y','','','','','Y','','','','','','','Y','Y','','','','','','A1','A2','A3','','','','','','','','A4','A8','A12','','','','','','','','','','','','',NULL,'A horrendous mix of shell scripts and notes in Markdown files.','A6','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A2','A15','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I have already done so in the past, one or two package updates I think, and want to get involved again. Already started reading the contributing docs.','N','N','More free time 😅 I really want to get into it for managing my self-hosted services.\r\nI\'m also considering hopping to it from Manjaro on my main Linux Worstation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Thank you fir all your work! I really want to start contributing more. I\'m reading the thesis right now and it\'s amazing, it seems like if flakes can get stabilized and the UX -especially errors - improves sufficiently, nix will be the future of software deployment!'),(629,'1980-01-01 00:00:00',5,'en','971761797','A2','A2','male','','','','','','','Y','','','','Y','','','','','','','Y','','','Y','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','reproducibility, functional paradigma, declarative configuration of everything','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A2','A1','A10','','','','','','','','A8','A4','A14','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A5','A6','A4','A2','A3','A13','','','','','','','','','','','','','','','','A4','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','learning the language, grasping how to write packages','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','','','','','arch','Y','','','','','','','','','','i3','','',''),(630,'1980-01-01 00:00:00',5,'en','1542794565','A2','A2','male','','','','','','','','Y','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A1','I use NixOS, so it\'s a bit rare to use Nix outside NixOS. It\'s always good to have a cross-distro package manager with a massive repository that is good for both GUI and CLI software that isn\'t Flatpak or Snap','','Y','','','','','Y','','','','','','','Y','','','','','','','A1','A6','A5','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'Native package manager and Flatpak (which I already use)','A2','','','','','Y','','','','','','','','','','','','','','','','','','A7','A9','A15','A4','A17','','','','','','','','','','','','','','','','','A7','A9','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'m new to NixOS and Nix (a few months of experience), so I don\'t know how to package software yet for nixpkgs','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','As a lover of Debian testing, Arch, etc (base distros specifically) I found out about NixOS on Youtube and I knew I had to give it a try. Once i found out about the magic of NixOS, I immediately loved it.\r\nHere\'s what I like about NixOS:\r\n\r\nDeclarative and reproducible configuration of your system\r\n. A distro with a massive package repository and both a stable and unstable channel\r\n. Temporary isolated package installation with nix-shell\r\n. Nix generations are pretty cool for system safety\r\n. The installation method is flexible because there\'s both a manual CLI installation and a live image with Calamares, but both can give you the same system setup due to the declarative nature\r\n. The base system install is quite minimal, that\'s a cool alternative to Arch and Void\'s minimalism\r\n. The Linux kernel has multiple versions in the repository! Some other packages do too, such as ffmpeg and Ruby!\r\n\r\nAnd of course the most important aspect:\r\n. Nice logo','Y','','Y','','','','','Declarative and reproducible nature and configuration.nix','Massive repository with both stable and unstable channels with multiple Linux kernels and multiple versions of certain other software like Ruby and ffmpeg','Very flexible: minimal install setup, and both Calamares and manual CLI installation available','. Add an official open source alternative to steam-run and appimage-run made by the NixOS team\r\n. Improve the documentation, especially documentation for packaging software yourself or patching it','Debian testing, Arch, possibly Void, OpenSUSE and Fedora','Y','','','','','','','','Y','','Cinnamon','','',''),(631,NULL,2,'en','1432093178','A4','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was using Arch beforehand. I tried to create a script that will reproduce my system configuration and then I found nixos had already solved that problem. ','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A3','A4','','','','','','','','','','','','',NULL,'Arch','A4','','','','Y','','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(632,'1980-01-01 00:00:00',5,'en','2058499727','A2','A3','male','','','','','','Y','Y','','','Y','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','Y','','','','','Y','','','','','','','Y','Y','Y','','','','','A2','A8','A6','','','','','','','','A13','A8','A6','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(633,'1980-01-01 00:00:00',5,'en','688001920','A2','A3','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Was frustrated with Arch linux, but Ubuntu felt too complex when trying to organise anything. NixOS gave me peace of mind because of rollbacks.','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A2','A7','A5','','','','','','','','A8','A11','A2','','','','','','','','','','','','',NULL,'Probably Ubuntu, but I never would have went this deeply into open source.','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A13','A24','A2','A1','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','See my Nix answer','Y','','Y','Y','','','','Declarative system management','Module system with assertions','High reproducibility','Remove the scriptey networking system in favor of systemd-networkd','Probably Ubuntu','','','','','','Y','','','','','Sway','home-manager\r\nnixos-hardware\r\nnixos-mailserver\r\nagenix\r\ncrate2nix','Nixops\r\ncarnix',''),(634,NULL,1,'en','1692206548','','A2','-oth-','Non-binary','Y','Y','','','Y','','','','Y','Y','Y','Y','Y','','Y','Y','','','','Y','','Y','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(635,'1980-01-01 00:00:00',5,'en','329396827','A5','A4','male','','','','','','Y','Y','','','','Y','','','','','Y','Y','','','','','Y','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','When the startup that Graham Christensen was working at imploded and laid him off, I hired him for a small contract gig to demo Nix and port one of our work systems to use it. ','Y','Y','','','','','Y','','Y','','','','','Y','Y','','','','','','A2','A3','A1','','','','','','','','A5','A13','A4','','','','','','','','','','','','',NULL,'Custom per project','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A7','A5','A1','A15','A25','','','','','','','','','','','','','','','','','A7','A5','','','','','','','','','','','','','','','','','','','','','','','I don’t and would like better docs for this','A2','','Docs on the process. Introductions to maintainers. ','N','N','We are evaluating it for our prod systems',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Bundix, Fenix','flake-utils ',''),(636,'1980-01-01 00:00:00',5,'en','774129755','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','Y','Y','','Y','','Y','','','','','Y','Y','Y','Y','','','','A2','A1','','','','','','','','','A10','A5','A14','','','','','','','','','','','','',NULL,'','A1','','','','','','','','','','','','','','','','','Y','','','','','','A13','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','A1','','Tried once with a PR, went through numerous nitpickings from PR reviewers, at the end someone else with merge rights pushed their own package instead of improving mine, so I just abandoned any effort.','N','N','Really, do not know. I do not have any tasks that would require full NixOS instead of a \"Linux Distro + nix\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'HomeManager is a blast, I highly recommend it to all linux users.','',''),(637,'1980-01-01 00:00:00',5,'en','781738657','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I transitioned to a Linux desktop as a primary environment after strongly disliking the Windows 11 ecosystem. After using Arch Linux as a desktop and Ubuntu as a server, I learned about NixOS from the Linux Unplugged podcast. I\'m a big fan of declarative systems like terraform, so I hopped into NixOS and found it fit well with my needs. My server and dekstop environments were transitioned over.','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A8','','','','','','','','A8','A2','A6','','','','','','','','','','','','',NULL,'I guess dpkg or pacman.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','AWS CodeBuild','A1','A2','A15','A5','','','','','','','','','','','','','','','','','','A1','A6','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','Declarative system definitions','Up-to-date packages','Extensible system configuration (flakes)','The \"re\"-install process, for someone who has an existing NixOS definition (in a flake, in a git repo) that they want to use, is painful. It would be nice to document/support how to do that well in the manual.\r\n','Arch Linux','Y','','','','','','','','Y','','','','',''),(638,'1980-01-01 00:00:00',5,'en','452161765','A2','A4','male','','','Y','Y','','Y','Y','','','Y','Y','','','','','Y','Y','Y','','Y','','Y','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was interested in the declarative and pure configuration.','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'I used Debian and Ansible. Maybe Guix, but it wouldn\'t exist without Nix.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','done,woodpecker,gitea actions','A9','A1','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I have sent a PR, nobody has reviewed it','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was interested in the declarative and pure configuration.','Y','Y','Y','Y','','','','declarative configuration','simultaneous install of different versions','package availability','More polish, especially documentation','Debian and ansible, as before, or maybe Guix, but it wouldn\'t exist without Nix.','Y','','','','','','','','','','xorg + notion','','','thank you!'),(639,'1980-01-01 00:00:00',5,'en','1150834398','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Home manager is irreplaceable','Y','','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A6','A2','','','','','','','','A8','A14','A4','','','','','','','','','','','','',NULL,'Chezmoi for dotfiles, homebrew for pkg management','A1','','','','Y','','','','','','','','','','','','','','','','','','','A9','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','N','N','If i had to use linux',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(640,'1980-01-01 00:00:00',5,'en','454717496','A5','A1','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','My dad recommended NixOS, so I installed it, and it has been great!','','','','','','','Y','','','','','','','','','','Y','','','','A1','A6','','','','','','','','','A14','A5','A3','','','','','','','','','','','','',NULL,'Pop!_OS or Linux Mint, maybe Vanilla OS','A2','','','','Y','','','','','','','','','','','','','','','','','','','A13','A2','A17','A3','','','','','','','','','','','','','','','','','','A13','A17','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I don’t know how, trying to figure out how though!','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','My dad recommend it, and I was having issues with Pop!_os so I switched.','Y','','','','','','','Ease of installing packages','Being able to define my system from one file','Flakes','I would add a dedicated update command where it would update cercian system packages to a specific channel. ie. nixos-update ','Vanilla OS','Y','Y','','','','','','','','','Xmonad','Home Mannager','','I love NixOS! Keep up the good work!'),(641,'1980-01-01 00:00:00',5,'en','298521730','A3','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I was looking for an alternative to arch linux package manager, nix offers pretty much everything pacman has and more because i can save my whole configuration in a file and even break it down into modules which is amazing. Nix works really well for me.','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A1','A7','A2','','','','','','','','A5','A14','A3','','','','','','','','','','','','',NULL,'I would probably use pacman or look for another declarative option like gnu guix.','A2','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A2','A3','A1','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don\'t feel qualified enough to contribute there yet, maybe one day.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','The idea of making a declarative configuration caught my attention, also the rollbacks out of the box are a life-saver. Especially because I have a nvidia gpu card, I\'ve had so many problems on other linux distributions because of the drivers, which didn\'t happen with NixOS.','Y','','','','','','','Declarative configuration','Nix flakes','Packaging','Honestly i think NixOS is on a pretty good path but if I could change something, that would be it\'s documentation. It was really hard to understand how things work at first because the documentation seems outdated. Improving it and providing learning resources would help new users switch to NixOS, I\'m 100% sure most people don\'t switch because they don\'t understand what\'s happening, I\'m saying this from experience.','I would probably stay on Arch linux or try GNU Guix.','Y','','','','','','','','','','Hyprland','','',''),(642,'1980-01-01 00:00:00',5,'en','1149049502','A2','A4','male','','Y','Y','','','Y','Y','','','','','','','','','','','Y','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','A7','A2','A1','','','','','','','','A8','A9','A3','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A13','A2','A1','A5','A4','A10','A21','','','','','','','','','','','','','','A5','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','','','','','Probably Guix, or still Debian?','Y','','','','','Y','','','','','xmonad','nix-index, comma, sops-nix, home-manager, flake-utils-plus','',''),(643,'1980-01-01 00:00:00',5,'en','1839020284','A5','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Heard about its benefits online, was tired of re-installing operating systems.','','','','','','','Y','','','','','','','Y','Y','','','','','','A2','A7','A3','','','','','','','','A15','A12','A6','','','','','','','','','','','','','nix-modules from the nixcon talk \"Nix modules: Improving Nix\'s discoverability and usability\"','Gentoo and docker','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Slow PR approval and even slower RFC process for anything significant I\'d add','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Tried of re-installing operating systems, wanted nix','Y','','','','','','','Reproducible environment','','','Add secure boot support, fix Plymouth password prompts.','Gentoo and docker','','','','','','','','','','','Sway','Impermanence, home-manager','',''),(644,'1980-01-01 00:00:00',5,'en','2052179612','A2','A4','male','','','Y','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A3','A1','','','','','','','','','A5','A9','A8','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(645,'1980-01-01 00:00:00',5,'en','270919094','A3','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My current employer already used it to manage their development environments. After learning it, I began using it for my personal projects as well in that capacity and then started managing my personal machines using home-manager.','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A3','A1','','','','','','','','A8','A4','A14','','','','','','','','','','','','',NULL,'Ansible/Chef and lots of dockerfiles.','A1','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','A13','A25','A1','A2','A15','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Time availability and a greater understanding of the ecosystem.','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(646,'1980-01-01 00:00:00',5,'en','2021329945','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was looking for a way to reproducably declare my setup in general for my personal and work systems. Then I tempered nix and it looked promising.','Y','Y','','','','','Y','Y','','','','','','Y','Y','','','','Y','','A2','A3','A7','','','','','','','','A5','A6','A9','','','','','','','','','','','','',NULL,'I was using toolbox which allows creating adhoc containers with access to home directory. ','A4','','','','','','','','','','','','','','','','','','','','','','','A5','A11','A15','A19','A14','A7','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','','N','N','I will try NixOS when I have time to change my personal OS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(647,'1980-01-01 00:00:00',5,'en','1288352454','A2','A5','male','','Y','','','','','','','','','','','','','','','','Y','','','','','','','inventor','','','Y','','','','N','N','','','','Y','I wanted a souce based distribution, that was easyer to upgrade then gentoo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I just tool you, but here I will repeat.\r\nI want a source based distribution that is easier to upgrade than Gentoo.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Non, I am currently, trying NixOs. I usually use Gentoo, but that is stated to feel old.','non',''),(648,NULL,2,'en','120707520','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(649,'1980-01-01 00:00:00',5,'en','409232802','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A7','A1','','','','','','','','A14','A8','A10','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I heard from a friend of mine and I liked the idea of a whole declarative system.','Y','','','','','','','Declarative','','','better documentation\r\nstable flakes','arch linux','','','','','','','','Y','','','','','',''),(650,NULL,1,'en','934112768','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','SecOps','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(651,'1980-01-01 00:00:00',5,'en','118061944','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Started using it for NixOps several years ago, and then more recently NixOS took over my desktop.','','','','','Y','','Y','Y','','','','','','','Y','Y','Y','','Y','','A10','A7','A3','','','','','','','','A12','A6','A15','','','','','','','','','','','','',NULL,'For devops, probably Terraform, but when I chose NixOps I didn\'t look back so who knows what I\'d pick today.\r\nFor desktop, I switched from Arch Linux.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A3','A2','A15','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Got sick of maintaining my personal repository of package patches and ad-hoc infrastructure for applying them when I upgraded my distro. NixOS lets me customize what I want in a modular and declarative way, which is awesome.','Y','','Y','','','','','Easily overriding packages','Rollbacks','Single place to go for configuration','Improving support for programs that expect things in places that NixOS doesn\'t put them.','Arch Linux','Y','Y','','','','','','Y','','','','Home-manager. It\'s great and should be a first-class part of NixOS.','I am this close to giving up on flakes. They are so heavyweight for humble use cases and it\'s constantly unclear to me when I encounter a frustration whether this is an intended part of the design or a temporary drawback to be tolerated until things stabilize. And this is coming from someone who thought all the fuss about the Nix learning curve was much exaggerated. I can\'t help but feel something much simpler, like a design just for pinning channels, could have occupied this niche and been polished and adopted much faster. If the community took a hard turn in that direction, I would be delighted (but I\'m not holding my breath).','Nixpkgs, specifically, has an enormous ongoing human maintenance cost, and the only sustainable way out of that hole is investing in automation infrastructure. Central pieces of the existing automation infrastructure seem critically undermaintained, to the point where not only are the maintainers not actively improving on them, but contributions from non-maintainers are being ignored. This is, in my estimation, the single biggest long-term threat to the Nix ecosystem, and it deserves far more attention than I think it is getting. If automation can\'t grow as Nixpkgs does, it will eventually collapse under its own weight, even if it continues to attract human contributors.'),(652,'1980-01-01 00:00:00',5,'en','1496008859','A5','A3','male','','Y','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I wanted to use home-manager for it\'s reproducible developer environments.','','Y','','Y','','','Y','Y','','','','','','Y','','','Y','','','','A2','A7','A3','','','','','','','','A8','A14','A9','','','','','','','','','','','','',NULL,'Docker and tools like poetry & virtualenv for python. I\'m not aware of other tools that provide the same functionality as home-manager.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A21','A15','','','','','','','','','','','','','','','','','','','A2','A21','A25','','','','','','','','','','','','','','','','','','','','Y','','','A2','','The knowledge to do it right or the use-case.','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','For experimentation. I wanted to try a NixOS dual-boot on a surface pro 4.','Y','','Y','','','','','Reproducible builds.','All setup & build steps are in version control, so I never have to remember how to get something working on a new install.','nix shell & nix run.','Overall CLI & community stability. I use flakes almost exclusively, but would switch to vanilla nix if the community decided it was the best way forward. It\'s maybe a bit confusing when there are 2 different ways of doing things.','A debian based OS.','Y','','','','','','','Y','','','Hyprland','devenv, poetry2nix','','I\'ve really enjoyed the past 6 months with nix. A few issues that could be resolved, but overall a very positive experience. Thanks everyone!'),(653,'1980-01-01 00:00:00',5,'en','210470370','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','','','','','','','','Y','Y','','','','','','Y','Y','','Y','','Y','','A1','A2','A7','','','','','','','','A14','A7','A5','','','','','','','','','','','','',NULL,'Fedora Kinoite','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A5','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(654,'1980-01-01 00:00:00',5,'en','987937533','A5','A5','male','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A1','Arch user, fascinated with being able to script a build and reproduce across machines and periods of time.','','Y','','','','','Y','','','','','','','','','Y','','','','','A1','A10','A7','','','','','','','','A13','A14','A4','','','','','','','','','','','','',NULL,'Clear Linux or Fedora Silver Blue','A1','','','','Y','Y','','','','','','Y','','','','Y','','','','','','','','A2','A17','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Lack of knowledge','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','Arch user who wanted a reproducible scripted system. I hated having to rebuild my arch system time and again, some packages that existed before didn\'t or got renamed and merged without notification, so the build would fail or the packages I needed would have to be searched. NixOs promised to make that process easier. The only issue was with learning the Nix programming language and interacting with programming libs.','Y','','','','','','','Reproducibility','Community','NUR','Easier way at setting systemD processes on inital boot. Better documentation for optimization of CPU arch. It\'s clear NixOs is targeted at servers, but it would be great to have a section dedicated for workstations/laptops configurations.','Clear Linux or Fedora Silver Blue','Y','','','','','','','','','','Hyprland','I\'m a beginner, but Neovim and VSCode are a must use for me. I find myself using Lua, Node, and Python quite a bit and have run into some issues with interating with the libs.','','I love the concept. Excited to get into it more and eventually replacing my Arch instance with NixOs completely.'),(655,'1980-01-01 00:00:00',5,'en','1599834311','A5','A5','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','Engineering manager','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Desired a declarative system for server management. Now running my personal laptop using NixOS. Use at work for dev tooling (Mac OS via devenv.sh)','Y','','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A3','','','','','','','','A14','A8','A5','','','','','','','','','','','','',NULL,'Arch (came from Arch)','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A7','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','Declarative/repeatable configuration','nix develop','','Probably Nix the language','Arch','Y','','','','','','','','','','Cinnamon','devenv','',''),(656,'1980-01-01 00:00:00',5,'en','726108227','A5','A2','male','','','','','','','','','','','','','','','Y','','','Y','','','Y','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I really like the idea of a declarative system, which would allow me to rebuild my entire system with relative ease if necessary. The notion of having to rebuild a system from scratch (previously used Arch Linux) was daunting, and having Nix as a safety net (i.e. how can I quickly rebuild my system the way I want it if my hard drive breaks or my laptop is stolen, etc..) is the reason I like NixOS. It\'s also really nice to not have to worry about an update breaking my system, since I can just rollback. This has been especially true for my Emacs configuration, since before, updates would often break my Emacs config, and since Emacs is such an integral part of my workflow, I was always wary of updates. Now, it doesn\'t matter, since I can rollback if I need to get work done, or fix the breaking changes in my config if I don\'t need to get work done!','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A2','A7','A1','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'I would still be using Arch Linux, since Arch is very customizable (like NixOS) and I have a very opinionated system/workflow.','','','','','Y','','','','','','','','','','','','','','','','','','','A25','A2','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I feel like I have barely scratched the surface with understanding Nix as a language, and only have the bare minimum knowledge to write a working system configuration with flakes.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I started using NixOS because I like to have a declarative system configuration and like the ability to rollback in case an update breaks something!','Y','','','','','','','Declarative configuration','Atomic upgrades and rollbacks','','I would want a NixOS wiki on par with the Arch Wiki. Coming from Arch, I find NixOS to be lacking in documentation.','I would still be using Arch Linux.','Y','','','','','','','','','','XMonad','Home manager (very important to my setup)','',''),(657,'1980-01-01 00:00:00',5,'en','971319532','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','by extension of using NixOS','','','','','','','Y','Y','','','','','','Y','','','Y','','','','A7','A2','A1','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'custom bash scripts','A4','','','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','personal time outside of work :(','Y',NULL,NULL,NULL,NULL,'A1','','Y','','peronal travel laptop','A1','I was watching an old DJWare video, and became interested in a OS that was configured, by a config file. Prior I was using Alpine as my personal daily driver, and it is great, however the ability to replicate configs in a single file is what converted.\r\nhttps://www.youtube.com/watch?v=jJg1HI4gLXs','Y','','Y','','','','','reversible changes','package/option depth, and width','user environment isolation for testing','A option in the GUI install to modify the configuration.nix, or an option to import a configuration.nix from some source, git, nfs, etc...','Alpine Linux','Y','','','','','','','Y','Y','Y','CLI','At this point I am only using NixOS on a few machines, and am working to convert one of my home servers','','While the manual is very helpful, I do think the documentation needs some work. For example, there are a number of packages that can be installed, however the correct way to use them, is via an option to enable it. If there was a note one a package that there are option requires, that would be nice. However with that example, it might be a requirement for package maintainers.'),(658,NULL,NULL,'en','1121907795',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(659,'1980-01-01 00:00:00',5,'en','1820803541','A2','A2','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A2','because its used at the company i work for','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A4','A11','','','','','','','','','','','','',NULL,'LANGUAGE SPECIFIC BUILD TOOLS for development and DOCKER for deployment','A1','','','','Y','Y','','','','','','','','','','','Y','','','','','','','A13','A1','','','','','','','','','','','','','','','','','','','','A1','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Laziness/time involvement\r\n&\r\nI define packages as flakes','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A1','I wanted to declare my computer configuration once, for good. It seems easiest to do with nixos. Other than that I hope for the experience to not be much different from other linuxes and I have no attachment to the previous distribution (manjaro) that I used.','Y','','','','','','','Declarative configuration of system services (systemd, audio, desktop)','','','','For configuration: git tracked configs, (ala https://www.atlassian.com/git/tutorials/dotfiles)\r\nFor OS: some arch distribution with an installer','','','','','','','','Y','','','','home-manager, nix-melt','npmlock2nix, node2nix',''),(660,'1980-01-01 00:00:00',5,'en','1377197943','A2','A6','male','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Discovered nixos a year ago, installed it on my new computer and never regret it.','','','','','','','Y','','','','','','','Y','Y','','Y','','','','A3','A7','A1','','','','','','','','A6','A14','','','','','','','','','','','','','',NULL,'Fedora silverblue','A4','','','','','','','','','','','','','','','','','','','','','','','A10','A1','','','','','','','','','','','','','','','','','','','','A10','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Not yet skilled enough with nix language','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','Y','','','','reproductibility','','','','','Y','','','','','','','Y','','','','','',''),(661,'1980-01-01 00:00:00',5,'en','1094243216','A5','A2','male','','','','','','','','Y','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','','','','','Y','Y','','','Y','','','Y','','Y','Y','','Y','','A1','A9','A7','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A4','A2','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','Y','','','','','','','','Y','','','','','','','Y','','','','','',''),(662,NULL,1,'en','2029429728','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(663,NULL,1,'en','1353404098','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(664,'1980-01-01 00:00:00',5,'en','1016141347','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','','','','','','Y','','Y','','Y','','A10','A1','A2','','','','','','','','A6','A3','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A13','A1','','','','','','','','','','','','','','','','','','','A7','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','Holistic configuration','Stability of the stable channel','Ability to mix-and-match from unstable','Magically fix the icons ecosystem in gnome and provide default icons if no set is installed.\r\n\"nixos-rebuild switch with kexec\"','Arch Linux','Y','','','','','','','','Y','','','regular: home-manager, nixos-shell, terranix, sops-nix, disko, nixos-hardware, nix-direnv','NUR','Awesome work, thank you'),(665,'1980-01-01 00:00:00',5,'en','769088771','A2','','male','','','','','','Y','','Y','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','Y','','','','Y','Y','','Y','','','','A2','A7','A1','','','','','','','','A4','A5','A2','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','atomic upgrades, rollback','declarative configuration','','throw away the nix language and create something more sane, typesafe and not necessarily functional','','Y','Y','','','','','','','','','sway','home-manager','',''),(666,'1980-01-01 00:00:00',5,'en','1936322434','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','Mitchell hashimoto keeps saying it is awesome, and it is! watching \"what nix can do\" talk by Matthew sold me 100%','','Y','','Y','','','Y','','','','','','','','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A6','A8','A3','','','','','','','','','','','','',NULL,'maybe wolfios ','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A1','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','have not yet found something I use that is not yet packaged, otherwise I would ','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','wanted to try it on my personal laptop','Y','','','','','','','config in code ','easy to recreate system','','a better way to browse configuration options, with examples','fedora','Y','','','','','','','Y','','','','','',''),(667,NULL,1,'en','474147410','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(668,'1980-01-01 00:00:00',5,'en','1751138189','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I have been using Arch Linux on 4-5 personal systems for over 10 years (laptops, desktops, servers, routers, etc.). In the long run, it was a lot of work to maintain these many very heterogeneous installations. I have tried to change this. First with ansible, then with puppet. I wasn\'t that happy with any of them. Nix with flakes, however, hit the sweet spot of how I can administrate a few private systems declaratively from a central git repo.','','Y','','','','','Y','Y','','','','','Router','','Y','Y','Y','','','','A2','A10','','','','','','','','','A8','A14','A13','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A3','A4','A15','A18','A25','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I have no interest in participating in projects that use github unless necessary.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I have been using Arch Linux on 4-5 personal systems for over 10 years (laptops, desktops, servers, routers, etc.). In the long run, it was a lot of work to maintain these many very heterogeneous installations. I have tried to change this. First with ansible, then with puppet. I wasn\'t that happy with any of them. Nix with flakes, however, hit the sweet spot of how I can administrate a few private systems declaratively from a central git repo.','Y','','Y','','','','Router','Declarative configuration of an environment/system','A useful functional language that is not so complicated to learn','The ease with which I can augment the system from the outside, be it by extending the module system for myself or by modifying packages or even writing my own.','','Arch Linux.','','','','Y','','','','','','','Herbstluftwm','','','Thanks for nix/nixos.'),(669,'1980-01-01 00:00:00',5,'en','244466513','A2','A2','male','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','','','','','','Y','','','','','','','','Y','Y','Y','','Y','','A3','A2','A1','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'','A1','','Y','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A15','A25','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','declarative system config','bootstrapping new installs with same config','','TYPE SYSTEM FOR NIX','','Y','','','','','','','','','','Hyprland','nil\r\nnixd\r\n','rnix-lsp\r\n',''),(670,'1980-01-01 00:00:00',5,'en','346748974','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Main reason is a config files system - can easily tell when something was changed by me and reverse if needed','','','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A7','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'probably debian','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A5','A15','A1','A9','','','','','','','','','','','','','','','','','','A5','A15','A9','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Not really understanding how that works','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','','','','','','',' .nix files contain all information about system -> could easily see what was changed from earlier version','Package availability and configurability','Rollbacks','add more and better documentation','debian ','Y','','','','','','','','','','Hyprland','','',''),(671,'1980-01-01 00:00:00',5,'en','835535385','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','','Y','','','iOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I’d used Ubuntu from its beginning, but I find the immutability of Nix appealing. I’m tired of the looming complexity that grows out of unmanaged state. It might sound counterintuitive but I find simplicity in Nix.','','','','','','','Y','','','','','','','','Y','','Y','','','','A1','A3','A10','','','','','','','','A12','A6','A8','','','','','','','','','','','','',NULL,'Containers on Fedora SilverBlue','A4','','','','','','','','','','','','','','','','','','','','','','','A1','A15','A7','A2','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Nothing; I do contribute. You only let me pick one answer above.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','See my answer for Nix. I’m using Nix only as a consequence of using NixOS. You asked about Nix first so I gave you the NixOS answer there.','Y','','','','','','','Avoiding mutable state','Ease of overriding packages','Ease of using ad hoc development environments','Application sandboxing','Fedora SilverBlue','Y','','','','','','','Y','','','','Community forum, Matrix space, popular third-party channels such as nixos-hardware, Rust overlays, community vscode-extensions, feedback about the documentation and learning resources','',''),(672,'1980-01-01 00:00:00',5,'en','851136511','A5','A5','male','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','Y','','Y','','','Y','Y','','','','','','Y','','','Y','','','','A7','A1','A2','','','','','','','','A6','A14','A10','','','','','','','','','','','','',NULL,'','A3','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','Y','','','','','','','','','','','','','','','','','','','','Hyprland','','',''),(673,'1980-01-01 00:00:00',5,'en','608351196','','A2','-oth-','Non-binary','','Y','Y','','Y','Y','','','','','','Y','Y','','Y','Y','Y','','','','','Y','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A3','I\"m so high because Jan Misali','Y','','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A1','A3','A6','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'EndeavorOS','A2','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','Y','Y','Y','','','','A20','A24','A15','A13','A14','A12','A22','A26','A23','A17','A19','A11','A2','A5','A6','A18','A7','A9','A8','A10','A4','A13','A20','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I\'m scared.','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','i\'m so high because Jan Misali','Y','Y','Y','Y','','','','Flakes','Packages','Jan Misali','Improve the configuration lang to make it into a scheme like Gnu/Guix','Maybe Gnu/Guix but likely Endeavor ','Y','Y','','Y','','','','Y','Y','','Hyprland/AwesomeWM','','Channels','Jan Misali.'),(674,'1980-01-01 00:00:00',5,'en','1191238289','A5','A2','male','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was sick and tired of not understanding the state of my Ubuntu machine and so I decided to use NixOS for it\'s declarative nature and stability. ','Y','','','','','','Y','','','','Y','','','Y','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'I probably would use containers to keep everything isolated and declarative.','A1','Y','','','Y','Y','','','','','','','','','','Y','','','','','','','','A2','A11','A3','A5','A13','A25','','','','','','','','','','','','','','','','A2','A11','A22','','','','','','','','','','','','','','','','','','','','Y','','','A2','','The contribution document is long as hell and it looks very tedious to submit to nixpkgs. I\'m also afraid I\'ll get yelled at.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','','','','','','Declarativeness','Not having to interface with systemd directly','Full integration with nix','A fully integrated backup system and home-manager built in (not too big of a deal).','Ubuntu','','Y','','','','','','','','','sway','','poetry2nix. Poetry is fine on its own, nix is fine on its own. Both of these together make for very hard to debug issues.',''),(675,'1980-01-01 00:00:00',5,'en','715092431','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A7','I want to create replicable environments on all my laptops.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A10','A9','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'apt, snap, stow','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','lack of experience','N','N','more free time to try it out :)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Keep up the good work :)'),(676,'1980-01-01 00:00:00',5,'en','551303047','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My broken work laptop had to go to repair repeatedly, and they erased the system every time. NixOS helped me to set up a working system quickly. Later I started using nix shells for dev environments.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A3','A1','','','','','','','','A4','A6','A14','','','','','','','','','','','','',NULL,'Bundles and bundles oft shell scripts and dot files.','A1','','','Y','Y','','','','','','','','Y','','','','','','','','','','','A1','A20','A13','A25','','','','','','','','','','','','','','','','','','A20','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Lack oft time. I contribute if I stumble upon sth.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Needed to repeatedly set up my laptop after repairs.','Y','','','','','','','Configure my system from a single source oft truth','Rollback','Big package repo','Pinpoint versions of individual packages by just adding a version number','Tougj choice... Something from Arch and lits oft backups?','Y','Y','','','','','','','Y','','Xmonad','','',''),(677,'1980-01-01 00:00:00',5,'en','758739566','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I was aware of Nix because of recommendations by various Haskeller programmers. At my previous job, we deployed to Linux while development was split between Linux and MacOS users. I was immensely frustrated with the unreliability of the Python and Docker ecosystems, and trialed Nix to solve my issues. From there, I went on to use NixOS for my development laptop and MacOS with Home-Manager for my non-development laptop. ','Y','','','','','','Y','','Y','Y','','','','','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'MacOS','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A2','A1','A8','','','','','','','','','','','','','','','','','','A8','A2','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Knowledge','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','I started using Nix on MacOS and ran into endless problems. I bought a framework laptop to run NixOS on for developing personal projects and to better understand Nix and Linux as a whole. Now I use that and my original Mac w/ Home-Manager, and have a better understanding of the whole ecosystem.','Y','','','','','','','Declarative System Configuration (under version control)','Ad-Hoc Environments','Reliable and Available Packages','Basically make it like SnowflakeOS with a beginner-friendly GUI so I can recommend it to newcomers and colleagues.','MacOS','Y','','','','','','','Y','','','','Home-Manager','- Nix-Darwin - I like my current workflow and would re-incorporate it if i could use it as a module to Home-Manager or NixOS\r\n- haskell.nix - never works for me\r\n- anything with npm doesn\'t work for me',''),(678,'1980-01-01 00:00:00',5,'en','515613113','A1','A2','male','','Y','Y','','','Y','Y','Y','Y','Y','Y','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','Y','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','','A2','A7','A8','','','','','','','','A1','A11','A6','','','','','','','','','','','','',NULL,'','A2','','','Y','Y','Y','','','','','','','','','','Y','','Y','','Y','','','','A15','A1','A6','A5','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','Y','Y','Y','','Y','','Atomic updates','Multiple package versioning','Declarative systems','','Silverblue','Y','Y','','','','','','','Y','','','Dream2nix','All the secret management flakes, theyre too finicky',''),(679,NULL,2,'en','116781580','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A5','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(680,NULL,NULL,'en','1831202861',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(681,'1980-01-01 00:00:00',5,'en','1233115180','A2','A4','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Nix style package management just makes sense.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A3','A7','A10','','','','','','','','A13','A8','','','','','','','','','','','','','',NULL,'Guix? Perhaps more likely a ton of stateful scripts on top of Arch Linux.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A3','A14','','','','','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Arch systems just degrade over time and I needed something more manageable.','Y','','Y','','','','','Infinite rollback','configuration.nix ','Ephemeral nix shells','- add a type system to Nix (a. k. a. issue #14)\r\n- easy incremental builds for custom (Git) kernels','','Y','','','','','','','','','','awesomewm','patchelf\r\n\r\nI find myself using it everywhere.','','Keep up the good work and sorry I no longer contribute as much as I would like to.'),(682,NULL,2,'en','854581111','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I wanted to try NixOS, so I used Nix on Alpine Linux to build an ISO for a Raspberry Pi 4.\r\nSince then, I\'m using Nix exclusively on NixOS.\r\n\r\nI was initially a bit put off by the immense RAM usage by `nix-env -qa`, but I simply stopped using `nix-env` once I figured I could use flakes instead and search with `nix search`.\r\n\r\nAfterwards, I also used my own Hydra instance to automatically rebuild some of my projects.\r\n\r\nIt\'s very cool to still be able to use `nix shell` and `nix develop` *while* I\'m upgrading NixOS.','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A10','A3','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'For ephemeral environments I would probably use distrobox. For an easy-to-use cross-language build system, there is no alternative I know of.','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','My Debian server was starting to get too hard to manage. I wanted my configuration to be all in one place to reduce the mental burden.\r\n\r\nI had a Raspberry Pi 4 waiting to get properly configured (with a new operating system), and I tried NixOS. I eventually also installed NixOS on my laptop (a little more than a month later). I really like being able to put all my configuration in Git.\r\n\r\nMy own Hydra instance is much more useful than things like DroneCI, since Hydra lets me keep the outputs, and since testing a build locally is a simple `nix build`.\r\n\r\nNow, I can\'t stop using NixOS. Applying overlays and patches on packages is very useful in ways I could not even imagine when I was using Debian.','Y','Y','Y','','','','','Letting me put ALL of my system\'s configuration in Git','Applying custom overlays to add new packages, change dependencies of existing ones, and apply patches to fix some problems that can\'t wait for upstream.','Custom service modules, making me learn to love SystemD.','I would make the whole thing use less RAM. `nix search` is much better than `nix-env -qa` because of the eval cache, but the initial run still uses a lot (3GB).','Probably some messy setup of docker-compose for my services and maybe Ansible for the whole system.','Y','','','','','','','','Y','','','agenix','nix-env',''),(683,'1980-01-01 00:00:00',5,'en','1508279418','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','As a dev, immutability has become a must for most of what I do... hence Nix was just a natural consequence of that.','Y','','','Y','','','Y','','','','','','','Y','Y','','Y','','','','A2','A3','A7','','','','','','','','A12','A5','A8','','','','','','','','','','','','',NULL,'Guix ;)','A7','','Y','','Y','Y','','','','','','','','','','Y','','','','','','','','A13','A1','A15','','','','','','','','','','','','','','','','','','','A13','A12','A1','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','Text based configuration of my system, which is highly reproducible','Easy rollback of system','All the benefits of nixpkgs','','Some flavor of linux','Y','','','','','','','','','','Mac','','',''),(684,NULL,4,'en','1021990068','A5','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I don\'t remember exactly it was a long time ago. I came across it somewhere and it was obvious this is the way software/systems should be managed. I\'ve been using it off and on since then depending on how much time I had to spend futzing with things not fully working.\r\n\r\nFor my company, I\'m using it because I\'m personally a fan of nix, and because Obelisk/reflex-platform uses it.','','','','','','','Y','','','Y','','','','Y','Y','Y','Y','','','','A7','A9','A1','','','','','','','','A5','A4','A6','','','','','','','','','','','','',NULL,'apt or equivalent, docker, ansible or something','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A2','','','','','','','','','','','','','','','','','','','','A13','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I don\'t quite know the nix language well enough. Exactly what the process for contributing is is a bit unclear/intimidating.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','see answer for nix, it\'s the same for me.','Y','','','Y','','','','Atomic updates/deploys with rollbacks','ability to configure most of my system in one place in the same language (even if I don\'t really like said language ...)','most of the things I need are already packaged','Replace nix with something more strongly typed that gave better error messages','some other linux. I haven\'t kept up, but probably a debian derivative.','','','','','','','obelisk deploy','Y','','','xmonad (though I need to find a wayland compatible replacement)','Obelisk, reflex platform','Home manager - I\'ll probably go back to this my config broke at some point and I just haven\'t gotten back to getting it working.',NULL),(685,'1980-01-01 00:00:00',5,'en','1080958291','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A8','A9','A1','','','','','','','','','','','','',NULL,'GNU/Guix or ArchLinux','A4','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A1','A15','A4','','','','','','','','','','','','','','','','','','','A1','A4','A19','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','A friend pitched NixOS to me on the basis of ad-hoc environments and reproducible builds. The prospect of sharing NixOS modules between our configurations became enticing as well as the simplified install process Nix affords.','Y','','Y','','','','','Reproducible builds','Ad-hoc environments','Flakes','First class IPFS support.','GNU Guix or ArchLinux ','Y','','','','Y','','','Y','','','Hyprland, XMonad','nixos-generators, hive, std, home-manager, nix-doom-emacs, nil, arion, disko','digga, rnix-lsp',''),(686,'1980-01-01 00:00:00',5,'en','2095457183','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started working at a Haskell consultancy (MLabs) that was primarily focused on Cardano at the time, and all of the Cardano tooling used nix.','','','','','','NixOS only','Y','Y','','','','','','','Y','Y','Y','Y','Y','flakes','A11','A1','A2','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Ubuntu or MacOS','A7','','Y','','Y','Y','','','','','','','','','','Y','Y','','','Y','','','','A13','A1','A2','A25','','','','','','','','','','','','','','','','','','A1','A15','A13','','','','','','','','','','','','','','','','','','','','','','','A2','','I don\'t really understand nix very well. I use it for work, but a lot of it is making very small changes and hoping nothing breaks.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I want to learn more about nix, and was attracted by the promise of rollbacks.','Y','','Y','','','','','Declarative configuration','Roll backs','','I would remove (censor) all bad documentation and decide on a single accepted, didactic way of explaining things.','Ubuntu.','Y','','','','','','','','','','Sway','','',''),(687,'1980-01-01 00:00:00',5,'en','531374303','A2','A3','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','','','','','','','','Y','','','','','','','Y','','','','','','','A2','A1','A7','','','','','','','','A12','A14','A8','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A4','A15','A1','A2','','','','','','','','','','','','','','','','','','A4','A13','A15','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(688,'1980-01-01 00:00:00',5,'en','1324077640','A2','A4','male','','Y','','','','','','','Y','','','','','','Y','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','managinf family computers','A4','Windows 7 EOL was approaching and for the upgrade I considered Debian and Arch (possibly Void). Having done some work with Yocto before, NixOS instantly appealed as my distro of choice. Never regretted since.','','Y','','Y','','','Y','','','','','','','','Y','Y','Y','','','','A2','A7','A9','','','','','','','','A2','A8','A12','','','','','','','','','','','','',NULL,'Uh, depends on the task .. bundlewrap, bazel, bitbake, ...','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A26','','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','','Y','','upstreaming :) ','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','personal/family desktops/laptops','A4','Uh, same as nix. I just dived right in.','Y','','','','','','','rock stable','prebuild systems on one machine, then push them to laptops','','','Debian, Arch. Not Guix (too many parentheses).','Y','','','','','Y','','','Y','','LXQt','home-manager (using it on Ubuntu), guides for setting up the DE in home-manager on Ubuntu are a bit lacking (e.g. how do i configure sway and launch it from Ubuntu\'s greeter?)','','Thank You! Being part of the Nix(OS) community has been a joy from the beginning!\r\n\r\nRegarding the survey: You could have asked about the different doc ressources and means of communications. I\'m sure there are people that are not aware of nix.dev or the Matrix rooms.'),(689,'1980-01-01 00:00:00',5,'en','1824656250','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','It seemed like a good idea.','Y','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A7','','','','','','','','A8','A4','A6','','','','','','','','','','','','',NULL,'N/A','A7','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A17','A25','A15','','','','','','','','','','','','','','','','','','','A15','A17','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','It seems the projects I want to work on already have maintainers, and I am unsure how to self-insert, etc.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Good idea.','Y','','','','','','','Flakes are portable, simple, small, and easily stored in git repos and work with the underlying OS.','Much of the OS can be easily configured through the language and put into small files.','It\'s easy to restore previous configurations if I mess up / something is messed up.','I am unsure what channels do.','mac/windows/fedora','Y','','','','','','','Y','','','','N/A','Channels.','I\'m enjoying it.'),(690,'1980-01-01 00:00:00',5,'en','711144582','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','they maintain packages that can be installed outside of the usual filesystem hierarchy','','Y','','','Y','','Y','','','','','','','Y','','Y','','','','','A1','A9','A10','','','','','','','','A9','A5','A12','','','','','','','','','','','','',NULL,'Gentoo prefix maybe','A4','','','','','Y','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A6','',NULL,'N','N','new features that appeal to me somehow',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','need better built in tools for creating a binary cache. `nix copy` is behind a feature flag. post build hook has a lot of foot-gun examples'),(691,'1980-01-01 00:00:00',5,'en','544808839','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','Y','','','Y','','Y','','','','','','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A8','A4','A6','','','','','','','','','','','','',NULL,'','A2','Y','Y','Y','Y','Y','','','','','','','Y','','','','','','','Y','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','','','','','','Declarative configuration','Reproducibility','','','Guix or Arch','Y','','','','','','','','','','River','','',''),(692,'1980-01-01 00:00:00',5,'en','596824970','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I heard about it through the Haskell community.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A4','A11','','','','','','','','','','','','',NULL,'Docker','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I don\'t really know where to start. Also most things I want are already available.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','When my Arch Linux installation on my personal PC broke during some upgrade I decided to switch.\r\n','Y','Y','','','','','','Reproducible dev/build environments','Declarative system configuration','Fearless updates','Add typing to the Nix language\r\nAdd flawless incremental building a la Bazel','Arch Linux','Y','','','','','','','','','','Sway','','',''),(693,'1980-01-01 00:00:00',5,'en','821691248','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','','funder','','','Y','','','android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','Easier development environments. Quick switch between software versions.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','nix flake','A5','A7','A2','','','','','','','','A8','A12','A4','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','woodpecker','A15','A1','A2','A4','A3','A5','A13','A17','A18','A25','','','','','','','','','','','','A5','A25','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I offered easy switching between software versions.','Y','Y','Y','Y','','','','easy system management','quick switching between versions','reproducible environment','- move to a FOSS git hoster such as codeberg.\r\n- configure data folders and backups as core feature\r\n- configure monitoring and alerts as core feature\r\n- make nix-shell and `nix develop` use sandboxes to e.g. prevent network access','guix','Y','','','','','','','','Y','','','nix flake','home manager, nixops, nix containers','I would love to contribute but my dislike for GitHub makes this very hard.'),(694,NULL,1,'en','699241551','A2','A4','male','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(695,'1980-01-01 00:00:00',5,'en','1054785645','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Arch computer broke','','Y','','','','','Y','','','','','','','','','','Y','','','','A1','A2','A7','','','','','','','','A4','','','','','','','','','','','','','','',NULL,'Arch','A4','','','','Y','','','','','','','','','','','','','','','','','','¯\\_(ツ)_/¯','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I don\'t know how','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Arch computer broke','Y','','','','','','','','','','more packages, working packages','arch','Y','','','','','','','','Y','','','','',''),(696,'1980-01-01 00:00:00',5,'en','1768301360','A3','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','NixOS','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A7','A1','','','','','','','','A5','A4','A6','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I dont know enought of nix to do it, but maybe in the future','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Im learning it to replace my Arch Linux installation thinking on more stability, the reproducibility is a big bonus since i generally work on my desktop but sometimes need to travel and work from my laptop, so not needing to maintain two systems and just run one command to have all the packages and configuraions sync is aweasome.','Y','','','','','','','Generations and roll back','Reproducibility','Being declarative','A more complete and organized documentation and some type of support for secrets such as passwords and ssh keys','Probably continue on Arch','Y','','','','','','','','','','Hyprland','None','None','Thanks for all the effort of making something different'),(697,NULL,NULL,'en','1504802293',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(698,'1980-01-01 00:00:00',5,'en','969800852','A5','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A6','','','','','','','','A14','A9','A8','','','','','','','','','','','','',NULL,'Guix, Docker','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A13','','','','','','','','','','','','','','','','','','','A3','A13','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Declarative configs','Remote builds','Share configs with work machines, MacOS','Single up-to-date, reliable, comprehensive source for configurations with examples','Debian, Alpine','Y','','Y','','','','','','','','Sway','','',''),(699,NULL,NULL,'en','546988307',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(700,'1980-01-01 00:00:00',5,'en','1169378317','A1','A4','male','','','','','','','Y','','','','Y','Y','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Frustration with difficult reproducibility of work projects','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'guix if it could somehow exist without nix\r\notherwise, probably one of the immutable-base-plus-images distros like Vanilla or Blend','A7','','','','Y','','','','','','','','','','','','','','','Y','','','sourcehut builds','A15','A1','A13','A25','','','','','','','','','','','','','','','','','','A15','A22','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Migrated from arch after frustration with reproducibility','Y','Y','Y','Y','','','','Reproducibility','Declarative config','Optional bleeding-edge versions','Remove channels, use flakes as primary entrypoint by default','guix if available or an immutable-base distro','Y','','','','','','','','','','Sway, Hyprland','cachix\r\ndiscourse\r\ngithub.com/nixpkgs\r\n','nixops\r\nold haskell and rust packaging utils (carnix, etc)',''),(701,'1980-01-01 00:00:00',5,'en','153012684','A8','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','','','','','','A2','A10','A1','','','','','','','','A13','A5','A8','','','','','','','','','','','','',NULL,'ansible/salt\r\nguix','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A11','','','','','','','','','','','','','','','','','','','','A13','A11','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Was previously using ansible to manage rhel servers, configuration would regularly break and would need constant maintenance ','Y','','Y','','','','','Declarative system configuration','Ease of use around setting up services','Easy rollback','Better tooling support around editors (things like nil being first class) \r\nA strongly typed alternative configuration language ;D ','Some rhel derivative and ansible ','','','','','','Y','','','','','','home-manager\r\nnil','',''),(702,'1980-01-01 00:00:00',5,'en','1785756717','A1','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted a way to declaratively manage my operating system so that I could easily switch between machines','Y','Y','','','Y','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A3','','','','','','','','A1','A8','A12','','','','','','','','','','','','',NULL,'Probably just containers & devcontainers + arch pacman based package management ','A7','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A1','A2','A3','A4','A15','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted a declarative way to manage my machines and ensure they have similar state','Y','','','Y','','','','Being able to configure an entire system from one clear location (can follow imports etc)','Being able to roll back to previous stable configurations','Being able to easily configure and package new applications','A better configuration editor to make it more beginner friendly (essentially adopt SnowflakeOS\'s approach, with more developer resources)','Something Arch based, or maybe fedora silverblue / opensuse','','','','','','Y','','Y','','','','flake-parts, nil, poetry2nix, crane, nix-tree, snowflake os (software center and configuration editor) , cachix','mach-nix, arion','Thanks for all the hard work!'),(703,NULL,1,'en','438462300','A5','A4','male','','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(704,'1980-01-01 00:00:00',5,'en','1775729916','A5','A5','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was frustrated with Homebrew’s shortcomings, and was intrigued by a build system aiming for idempotency. And as a Haskell fan, I was intrigued by the nix language. ','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A9','','','','','','','','A4','A14','A5','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','Y','','','','Y','','','','','','A15','A9','A13','','','','','','','','','','','','','','','','','','','A15','A9','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A3','I liked the ability to configure the whole system for a single DSL. Also I found it to be immediately reliable and packages plentiful and up-to-date. ','Y','','Y','','','','','','','','','','Y','','','','','','','','','','','nix-darwin','devshell project',''),(705,'1980-01-01 00:00:00',5,'en','449382015','A5','A2','male','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','needed reproducibility for my code and configurations','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'conda, stack, cargo','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A13','A15','A21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','most of the stuff i need is already available','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A2','','Y','','','','','','','Determinism','Install all configs with one command','most software already available','','archlinux','Y','','','','','','','','','','xmonad','','',''),(706,NULL,1,'en','466456076','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(707,'1980-01-01 00:00:00',5,'en','1807163949','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','','','To maintain my system','A1','Friends told me it\'s great, tried in VM, really liked it, switched.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A9','','','','','','','','A5','A8','A1','','','','','','','','','','','','',NULL,'Lame package managers and containers.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A17','A2','','','','','','','','','','','','','','','','','','','A3','A4','','','','','','','','','','','','','','','','','','','','','','','','A1','','It\'s a bit intimidating for someone like me who doesn\'t really code that much.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Same story as for Nix','Y','','','','','','','Reproducibility and being able declare system config','Experiment with system quicker','','More friendly FHS compatibility.','Definitely not Guix\r\nProbably Arch or Fedora','Y','','','','','','','Y','','','','Nixvim','','I find this Nix/NixOS thing really cool! Thank you to everyone who took part in this!'),(708,'1980-01-01 00:00:00',5,'en','68571203','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','Infrastructure engineer','','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I love functional/declarative programming, especially Haskell. I also desire reproducible builds.','Y','Y','','','Y','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A4','A8','','','','','','','','A9','A6','A2','','','','','','','','','','','','',NULL,'Kaniko, brew, dpkg','A7','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','A9','A15','A13','','','','','','','','','','','','','','','','','','A1','A19','A13','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A2','It\'s superior to using Ansible for config management.','Y','','','','','','','Programmatic config management','Easy atomic rollback','Raspberry Pi 4 support','Add better secrets management','Ubuntu Server\r\nFreeBSD','Y','','','','','','','','','','None -- NixOS is used on a headless RPi4, I prefer wayland and i3wm','','Channels\r\nHydra','Thank you for all your hard work!'),(709,NULL,0,'en','719836082','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(710,'1980-01-01 00:00:00',5,'en','2130498674','A1','A3','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','','','','','','Y','','','android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','interested in functional programming, I changed my computer and decided to try NixOS on the new one.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A9','A5','A14','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I mainly hack things for me when I don\'t find something in nixpgs that I need, but I don\'t know enough about the codebase/best practices to publish my packages.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','interested in functional programming, I changed my computer and decided to try NixOS on the new one.','Y','','','','','','','nothing is breaking when updating','it is easy to add a package (but the repo has mostly everything I need)','declarative configuration makes it easy to replicate my configuration on another computer','','I was using Solus before. If NixOS disappeared now, I would probably use Fedora.','Y','','','','','','','Y','','','','','','Thanks to everyone involved in the project!'),(711,NULL,NULL,'en','677448516',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(712,'1980-01-01 00:00:00',5,'en','1066453068','A5','A3','male','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducible python environments for machine learning','Y','Y','','','','','Y','','','Y','','','Development vms','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A2','A5','A8','','','','','','','','','','','','',NULL,'','A1','','Y','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A2','A15','A13','A3','A4','','','','','','','','','','','','','','','','','A2','A15','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'N','Y',NULL,'Not supported at work, better (less buggy) gpu driver support on aws','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nixpkgs-upkeep','',''),(713,NULL,NULL,'en','1675625786',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(714,NULL,1,'en','2106011965','A2','A4','male','','','','','','Y','','','','','Y','','','','','','Y','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(715,'1980-01-01 00:00:00',5,'en','1030312935','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A7','A3','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'Fedora Silverblue','A4','','','','','','','','','','','','','','','','','','','','','','','A9','A5','A15','','','','','','','','','','','','','','','','','','','A9','A5','A15','','','','','','','','','','','','','','','','','','','','','','','A1','','Skill issue','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','','','','','','Declarative configuration','Rollbacks','ZFS support','Stabilize Flakes, add support for ZFSBootMenu','Fedora Silverblue','Y','','','','','','','Y','','','','','',''),(716,'1980-01-01 00:00:00',5,'en','182552169','A7','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Tutor','Y','','','','','','N','N','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Windows became to slow on my old laptop. ','Y','','','','','','','Not applicable ','Not applicable ','Not applicable ','The ability install Microsoft 365 (office) ','Guix','','','','','','','Not applicable ','Y','','','','Microsoft 365 (office) ','Microsoft 365 (office) ','- Please add Microsoft 365 (office) \r\n- create a certification program for learning Nix and Nixos eg: Nix certified developer, NixOS certified administrator, etc\r\n'),(717,'1980-01-01 00:00:00',5,'en','1855162465','A2','A4','male','','','','','','Y','','','','','Y','Y','','','','','','Y','','','','','','','','Y','','','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Once I started using NixOS, I began using nix on both working PCs and servers.','','Y','','','','','Y','Y','','Y','','Y','','Y','Y','Y','Y','','Y','','A7','A1','A4','','','','','','','','A12','A4','A14','','','','','','','','','','','','',NULL,'Probably pacman for package managing and some automation tool like ansible for configurations.','A4','','','','','Y','','','','','','','','','','','','','','','','','','A1','A3','A10','A13','A2','A9','','','','','','','','','','','','','','','','A1','A3','A10','','','','','','','','','','','','','','','','','','','','','Y','','A1','','Not enough time. Also, community is mostly active in IRC and I don\'t use IRC anymore, so it\'s harder to get any advice.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Gaming, leasure','A5','I bought a new laptop and I was already looking at NixOS and even tried it once before. With that new laptop I decided to use NixOS as a main OS. I still use the same laptop and the same installation with regular updates and upgrades.','Y','','Y','Y','','Y','','Atomic builds. I find this feature very vital for my servers and less vital but still important for working PCs as well. ','Reliability. I get the same build with the same nix config and need not to worry about misconfiguration. ','Up to date packages and option to use older packages.','Each time I need to add a package or option I look into nixos web page for the correct name and if the package is available. In 2023 there should be a tool and/or editor plugin for that.\r\n\r\nI\'d also make nixops less dependent on old and insecure packages.','Arch','Y','Y','','','','','','','','','i3wm','','nixops because of dependence on old insecure packages that makes it harder to build a system. ','I use the lenovo laptop with wifi and BT on the same module. It\'s quite often that NM and BT services become less stable and sometimes even completely break. Once I had to install an older version of Linux kernel just to deal with it. I see two problems here: bad QA for a key component, and the way the bugfix is delivered. If a critical bug like this is fixed, the fix must be available right now for build/rebuild utils, ignoring any cache.'),(718,NULL,2,'en','1460420482','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I don\'t remember 😭','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A2','A5','','','','','','','','A8','A6','A14','','','','','','','','','','','','',NULL,'Is there an alternative? Guix maybe?','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A24','A1','A23','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','Only just diving into flakes','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(719,NULL,NULL,'en','1937152280',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(720,'1980-01-01 00:00:00',5,'en','1235672007','A2','A3','fem','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','Y','Consultant','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Guix didn\'t have proprietary packages. I used guix to keep my laptop setup mostly identical to my desktop, except for the differences in hardware.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A5','A10','A7','','','','','','','','A6','A5','A14','','','','','','','','','','','','',NULL,'Guix, or a lot of bash scripts','A1','','','','Y','Y','','','','','','','Y','','','Y','','','','','','','Drone (no nix specific stuff)','A15','A13','A3','','','','','','','','','','','','','','','','','','','A13','A3','A15','','','','','','','','','','','','','','','','','','','Y','Y','','PRs','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Guix didn\'t have proprietary packages. I used guix to keep my laptop setup mostly identical to my desktop, except for the differences in hardware.','Y','Y','Y','Y','','','','Reproducible','Declarative','Reliable','I\'d make the language either a lisp or haskell, I dislike having to learn the nix language (who needs another dsl in their life). I\'d make the tooling more intuitive, and less fractured. I\'d have easy to understand and find for beginners documentation.','Guix and bash scripts.','Y','','','','','Y','','','','','XMonad','nix-index','home-manager (still exists in some places but I informally consider it under deprecation in my configs).','The Nix community being welcoming and respectful to diverse people has been a huge reason for me telling everyone I know about it and for wanting to contribute back to the project, instead of keeping it a open secret that I use it (like e.g. cloudflare).'),(721,'1980-01-01 00:00:00',5,'en','853085871','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','Y','','Y','','','','','Y','','Y','','','','A2','A3','A7','','','','','','','','A6','A5','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','Y','','','','','','','','','','','A3','A2','A15','A22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','sway','','',''),(722,'1980-01-01 00:00:00',5,'en','900813412','A1','A4','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','One messed up Ubuntu upgrade and I couldn\'t take it anymore','','Y','','','','','Y','','','','','','','','','Y','Y','','','','A7','A2','A1','','','','','','','','A1','A8','','','','','','','','','','','','','',NULL,'Guix','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','After one failed upgrade on Ubuntu I couldn\'t take it anymore','Y','','','','','','','Fearless tinkering with rollbacks','Reproducible builds and configuration','Configuration with a simple text file in version control','Give me a GUI for everything like installing packages','Guix','Y','','','','','','','Y','','','','','','the Matrix server is truly helpful'),(723,'1980-01-01 00:00:00',5,'en','418210505','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A1','Brew sucked and I wanted a better package repository + installer.','Y','','','','','','Y','','','','','','','Y','','','','','','','A1','A6','','','','','','','','','A14','A5','A3','','','','','','','','','','','','',NULL,'brew','A6','','','','Y','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','The packages I need are already there.','N','N','Nothing, I have 3 different friends you tried using it for 6+ months and gave up because of the horrendous documentation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Please make nix more approachable.\r\n\r\nThe packages repository is great, the declarative aspect is great, but:\r\n- The language is hard to grasp with no good LSP\r\n- The documentation is questionable\r\n- The learning resources are inexistant or outdated'),(724,NULL,NULL,'en','977157335',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(725,'1980-01-01 00:00:00',5,'en','1249133900','A2','A2','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using nix with nixos ','Y','','','','','','Y','Y','','Y','','','','','Y','Y','','','Y','','A1','A3','A7','','','','','','','','A5','A8','A3','','','','','','','','','','','','',NULL,'','A3','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A2','A1','A3','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I used Debian with ansible before and it was very frustrating. A friend of mine (nixos commiter) showed me nixos as alternative.','Y','','Y','Y','','','','Config Management / Modules','Rollback ','','Better Documentation, easier modules, better integration with binaries from outside the nix world (in the direction of nix-ld)','ansible with Debian or arch','Y','','','','Y','Y','','','','','Sway','home-manager, sops-nix, nixos-hardware, search.nixos.org, noogle.dev, nixos.wiki','','Thank you <3'),(726,NULL,2,'en','470880150','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I used to distro-hop a bit, but always got annoyed by something in the \"mainstream\" distros. Being a fan of functional programming I finally tried NixOS and never looked back. ','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A14','A8','A13','','','','','','','','','','','','',NULL,'I have no idea, hopefully it continues to exist ;)','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A11','A15','','','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I\'m not sure how to properly add a package do nixpkgs, but I haven\'t spend to much time trying to look into it',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(727,'1980-01-01 00:00:00',5,'en','1803572432','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Avoiding system-wide dependencies in a work-related subpath of my filesystem ','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A3','A5','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'Docker images','A4','','','','Y','','','','','','','','Y','','','','','','','Y','','','','A10','A15','A13','','','','','','','','','','','','','','','','','','','A10','A15','A5','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Lack of experience with the nix language: it\'s complicated and messy to work with ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Setting up a home lab server ','','','Y','','','','','Stability','Reproducibility','Atomic upgrades','Remove the nix language, replace it with any pre-existing pure functional language ','Docker','Y','','','','','','','','','','','','Freecad: building it leads to a broken/segfaulting program ',''),(728,'1980-01-01 00:00:00',5,'en','1469644165','A5','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','Y','','','Y','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','','Y','','A10','A2','A3','','','','','','','','A2','A12','A10','','','','','','','','','','','','',NULL,'maybe Gebtoo?','A2','','','','Y','Y','','','','','','','','Y','','Y','','','','','','','','A15','A4','A2','A5','A1','A25','A3','A6','A17','','','','','','','','','','','','','A2','A1','A6','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','Y','Y','Y','Y','','Y','','','','','','','Y','','','Y','','Y','','','Y','','','','',''),(729,'1980-01-01 00:00:00',5,'en','1539540421','A1','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A3','I love reproducible things, as I\'m a SA/SRE. The concept is very important.','Y','Y','','','','','Y','Y','','','','','','','','','Y','','','','A1','A2','A10','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'I don\'t know, before I working in Yahoo!, there was a great tool call yinst/ignor, in some aspect, it could make the system configuration reproducible either, it impressed me a lot. After leaving Yahoo!, there is no tool could realy make things reproducible, docker? No. until I found Nix two years ago.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','no','A9','A1','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Most of time, the software in nixpkgs is enough for me for daily usage, as I only use the most common tools. Unless I meet some issues and overlays could not help, I would try contributing.','N','N','Whole system control by Nix',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NO.','NO.','Great job, great community.'),(730,NULL,NULL,'en','496307920',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(731,'1980-01-01 00:00:00',5,'en','1133440549','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Heard about it through a group of friends, liked the idea of a fully declarative OS.','','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A10','A7','','','','','','','','A4','A9','A6','','','','','','','','','','','','',NULL,'Archlinux, for the simplicity of packaging and the AUR','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A15','A17','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','A1','','Difficulties understanding the nix language, and the helpers found in the nixpkgs repository.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Through friends','Y','','Y','','','','','Declarative configuration','Ability to roll back versions','','Magically resolve linking issues when using binaries','Archlinux','Y','','','','','','','','Y','','','','',''),(732,'1980-01-01 00:00:00',5,'en','1812639106','A2','A2','-oth-','Non-Binary','','','','','','','','','','Y','','','','','','','Y','','','','','Y','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','Y','','','Y','Y','','Y','','Y','','','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A9','A8','A10','','','','','','','','','','','','',NULL,'Ansible','A7','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A1','A15','A6','A9','A13','A12','A2','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','Arch Linux and Fedora','','','','','','Y','','','','','','NixOS-WSL','',''),(733,'1980-01-01 00:00:00',5,'en','403561505','A1','A4','male','','','','','','Y','Y','Y','','','','','','','','','Y','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','As a replacement for homebrew after it fell apart yet again. Probably triggered by one of Xe\'s posts.','Y','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','A2','A6','A1','','','','','','','','A6','A9','A2','','','','','','','','','','','','',NULL,'Alcohol','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A3','A2','A7','A9','A15','A25','','','','','','','','','','','','','','','','A25','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','Y','','','','','Service management','Versioning','','Provide a nicer way of doing relational database configuration / initial stand-up. Separate instances or user management would be nice too.','Saltstack / packer','Y','','','','','','','','','','','','','It would be great if you contributed the nix documentation automatically to devdocs.io'),(734,NULL,2,'en','34974063','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','Y','','','N','N','','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(735,'1980-01-01 00:00:00',5,'en','288989133','A2','A3','male','','','','','','Y','Y','','Y','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I read on Mastodon how easy it was to setup a new instance using nixos, and I fell down the rabbit hole','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A7','A6','','','','','','','','A5','A6','A14','','','','','','','','','','','','',NULL,'I\'ve used docker for development environments, but I hated it every second\r\n','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A3','A9','','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Same as Nix','','Y','Y','','','','','Declarative and versioned environment','Ease of managing multiple machines','Ease of configuration via NixOS modules','','','Y','','','Y','','','','','','','','','',''),(736,'1980-01-01 00:00:00',5,'en','1244481277','A2','A3','male','','Y','','','Y','','','','','','','','','','','','','Y','','','Y','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','As I started to use NixOS, I learnt about Nix and now use it for more and more things such as development environments.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'Python\'s virtualenv for Python development environment.\r\nMy distro package manager/repository for the rest.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started to hear about it and was intrigued by the declarative configuration part.\r\nThe ability to entirely configure my system (and home programs) was really appealing.\r\nThen I learnt about all of the other benefits along the way.','Y','','Y','','','','','Declarative and reproducible system configuration.','Minimal source based distribution.','Nixpkgs repository for packages.','Enhance the documentation so that I can get all my friends to use it.\r\nOther than this, I find the distribution to be very nice in its current state.','Probably Arch.','Y','','','','','','','Y','','','Sway','I use home-manager and Nixvim (a tool to which I contribute that lets you configure Neovim with Nix).\r\nI also use agenix to manage my secrets.','','Nix is an amazing technology and I hope it will continue to strive.\r\nThank you to the countless contributors/maintainers/team members/companies that collaborate to make Nix what it is <3'),(737,'1980-01-01 00:00:00',5,'en','472441831','A2','A3','male','','Y','','','','','Y','','','','','','','','','','','Y','','','Y','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A5','A13','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A25','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(738,'1980-01-01 00:00:00',5,'en','1318198399','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','','Y','','','','','Y','','Y','','','','A3','A10','A4','','','','','','','','A14','A6','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A17','A9','A15','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','','Y','','Y','Y','','','','','','','','','','','','','','','','','','','','','',''),(739,NULL,1,'en','1300852311','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),(740,'1980-01-01 00:00:00',5,'en','1260541183','A1','A3','male','','','','','','','','','','','','','','','','Y','','Y','','','','','','','Database developer','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','','','','','','','','Y','','Y','','Y','','A1','A3','A2','','','','','','','','A2','A6','A4','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','A2','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(741,'1980-01-01 00:00:00',5,'en','89187607','A2','A3','fem','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','recommended by a friend','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A7','A2','A3','','','','','','','','A8','A5','A4','','','','','','','','','','','','',NULL,'Debian','A7','Y','','','Y','Y','','','','','','','','Y','','','','Y','','','','','','A15','A2','A10','','','','','','','','','','','','','','','','','','','A15','A2','A10','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','recommended by a friend','Y','Y','Y','Y','','','','rollbacks','declarative configuration','','','Debian','','','','','Y','Y','','','','','i3 / sway','','','meow :3'),(742,NULL,1,'en','198245004','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(743,'1980-01-01 00:00:00',5,'en','1503224381','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I was looking for a good package manager with lots of available software.','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A6','','','','','','','','','A8','A11','A3','','','','','','','','','','','','',NULL,'AUR','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A4','A5','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','A1','','no need necause it\'s already really good maintained','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Tried the package manager first and wanted to try the os.','Y','','','','','','','lots of packages','stability','personalization','less storage space usage','some other gnu/linux distro','Y','','','','','','','','Y','','i3','','','You\'re doing a great job.'),(744,'1980-01-01 00:00:00',5,'en','1538766968','A2','A4','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Friend showed me.','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A4','A9','','','','','','','','','','','','','',NULL,'Debian. Or Guix if it existed.','A2','','','','','Y','','','','','','','','','','','','Y','','','','','','A2','A15','A3','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Friend showed me.','Y','Y','Y','','','','','','','','','','Y','','Y','','','','','Y','','','','','nixops','good job'),(745,'1980-01-01 00:00:00',5,'en','1322652169','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A6','','','','','','','','A8','A4','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','A13','A3','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','Y','','','','','','','','','','','','','','Y','','','','Y','','','nixos-hardware\r\nDisko','',''),(746,'1980-01-01 00:00:00',5,'en','711499582','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducibility of desktop system, long term reproducibility of haskell projects.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A10','A1','','','','','','','','A12','A6','A2','','','','','','','','','','','','',NULL,'all the other ones are pretty much rehashed versions of the same thing, so whichever one is stable and has a big list of maintained packages','A2','','','','Y','','','','','','','','','','','','','','','','','','','A11','A13','A7','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','Reprooducible OS, OS as code','','','virtualized /home to make all my computers the same','','','','','','','','','','','','i3','','',''),(747,NULL,NULL,'en','1923688701',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(748,NULL,2,'en','1927892547','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Saw a few YouTube videos / Reddit posts about it - thought it looked really cool, especially as someone who enjoys customizing my desktop','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A9','','','','','','','','A8','A9','A14','','','','','','','','','','','','',NULL,'Arch or Artix Linux','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A25','','','','','','','','','','','','','','','','','','','A15','A24','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don\'t have the time (school)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(749,'1980-01-01 00:00:00',5,'en','2080237721','A2','A5','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','Y','','Y','','Y','','','','','Y','Y','','Y','Y','','','A3','A7','A8','','','','','','','','A6','A14','A9','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','Y','','Y','','','','A9','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','As I‘m unfortunately not using Nix/NixOS in my profession, there is very limited time beside job, family and all the rest 😬','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','Roll back changes','Stable system even within „unstable“','Hyprland and Pantheon integration','Improve documentation ','Fedora','Y','Y','','','','','','','','','Pantheon or Hyprland','','','Thank you!\r\nKeep up the exceptional work'),(750,NULL,2,'en','1704009525','A2','A5','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','debian was always too old and I was curious','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A2','A8','A9','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','A13','A18','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(761,'1980-01-01 00:00:00',5,'en','1696944270','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','Reproducible and documented server configurations.','','Y','','','','','Y','Y','','Y','','','HTPC','','Y','','Y','','','','A2','A3','A1','','','','','','','','A14','A8','A12','','','','','','','','','','','','',NULL,'Arch Linux','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A10','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Reproducible and documented server configurations','','','Y','Y','','','','Reproducible, declarative, documented system configuration','Portability of configuration snippets','Able to use different versions of the same package','Use Flakes by default','Ansible on Debian?','Y','','','','','','','','','','','nixos-hardware\r\nnixified.ai\r\nsimple-nixos-mailserver','','Keep up the good work!'),(752,'1980-01-01 00:00:00',5,'en','511338051','A2','A2','fem','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I used to distrohop a lot, and before Nix I was using bedrock Linux in order to satiate my curiosity about different distributions, package managers and so forth. Brl didn\'t (doesn\'t? I don\'t know?) support nix or the nix package manager but I\'d seen some stuff about nix online, as well as some of Wil T\'s tutorials) and was intrigued by it: I wanted to try it out. At the time, I had gotten most of the use I was going to get out of brl (mainly using an arch stratum) so I decided to install NixOS, try it out and replace it with Arch if I didn\'t like it. I\'ve never looked back.','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A2','A7','A1','','','','','','','','A8','A5','A9','','','','','','','','','','','','',NULL,'Guix, if that still existed without nix...\r\n\r\nIn reality, I would probably have hopped to VanillaOS (assuming that etc...) and be using it on my laptop with Proxmox VE on my servers','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','Garnix CI (https://garnix.io)','A1','A2','A4','A15','A6','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','NUR (https://github.com/nix-community/NUR)','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I started using NixOS at the same time as nix, please refer to that question','Y','','Y','Y','','','','premade configuration options to extremely quickly get reasonable defaults that I can still later extend','declarative configuration with nixos-rebuild and tools such as deploy-rs','configuration is easy to version control and rollback if needed','NixOS tooling is quite fragmented and some of it is deprecated with no clear alternative (e.g. NixOps). ','Same as with the nix answer, I almost always use Nix and NixOS together','Y','','','Y','','','','','','','swaywm','home-manager','NixOps',''),(753,'1980-01-01 00:00:00',5,'en','2137398611','A5','A3','-oth-','nonbinary man','Y','','','','','','','','','','','','','Y','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A10','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'a mainstream linux distro such as fedora or arch, and GNU stow with a git repo','A2','Y','','','Y','Y','','','','','','','','','','','','','','','','','','A17','A25','A1','A15','A9','A2','A13','','','','','','','','','','','','','','','A17','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','i dont yet know much coding','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','reproducible system configuration','atomic updates/generations','package availability','the ability to declaratively install flatpaks etc, even if impurely','fedora, arch, or guix','Y','','','','','','','','','','awesomewm, hyprland','nix-doom-emacs','disko',''),(756,'1980-01-01 00:00:00',5,'en','388479258','A2','A3','-oth-','NB','','','','','Y','Y','','','Y','Y','','','','','Y','Y','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It was one of those things that just clicked, like my first experience with vim. Someone showed me :w, then :q, then told me you could combine them as :wq and I\'d never used another editor since.\r\nI installed NixOS, edited my config file to configure ssh and nginx, and decided I\'m never going back. I\'ve never regretted it, and even for the desktop it\'s ended up being by far the most stable experience I\'ve ever had on Linux.','Y','Y','','Y','','','Y','Y','','Y','','','','Y','Y','','Y','','','','A1','A4','A6','','','','','','','','A8','A6','A7','','','','','','','','','','','','',NULL,'Gentoo for its slots system, most likely. Various other ad-hoc installations, probably some sort of an instrumentation system like k8s, maybe dokku for simpler stuff?','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A7','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as Nix','Y','','Y','Y','','','','Declarative config','Rollbacks','The language itself, metaprogramming, generative configs','Zoop, everything is now flakes (or something else, as long as everything is it). Also, nixops is updated ...','','','Y','','','','','','Y','','','','','',''),(755,'1980-01-01 00:00:00',5,'en','1893012762','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Liked the idea, tried it and never went back to anything else.','','','','','Y','','Y','','','','','','','Y','Y','','Y','Y','','','A1','A2','A10','','','','','','','','A5','A6','A3','','','','','','','','','','','','',NULL,'Probably BlendOS','A7','','','','Y','','','','','','','','','','','','','Y','','','','','','A9','A6','A7','A1','','','','','','','','','','','','','','','','','','A6','A9','A7','','','','','','','','','','','','','','','','','','','','','Y','','A1','','I honestly don\'t know how to do it.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Like the idea, tried it, still ussing it.','Y','','Y','','','','','Declarative configuration','Declarative package manager','Declarative configuration','All package are in a container and can be set to run from any distro (à la dristrobox) and any and all config option are declarative for all packages.','BlendOS','Y','Y','','','','','','Y','','','NSCDE','None.','None.','Please add support to NSCDE nativelly.\r\nDo that and you\'ll be the best distro ever made.'),(760,'1980-01-01 00:00:00',5,'en','987329564','A8','A4','male','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I am working towards having my machines defined once and not having to configure anything again','Y','','','','','','Y','','','','','','','Y','','','','','','','A7','A10','A1','','','','','','','','A14','A5','A6','','','','','','','','','','','','',NULL,'Ubuntu/fedora with ansible','A4','','','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Time, skills','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','',''),(757,'1980-01-01 00:00:00',5,'en','1823617691','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Fed up with Ubuntu, wanted a more stable and reproducible solution. ','','Y','','','','','Y','','','Y','','','','','Y','Y','Y','','Y','','A7','A1','A2','','','','','','','','A15','A5','A1','','','','','','','','','','','','','Content addressable store by default. Reduce the resources required for patching openssl / glibc / other low-level lib. ','Ubuntu','A4','','','','','Y','','','','','','','','','','','','Y','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Slow approvals ','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Fed up with Ubuntu. Possibility to rollback. ','Y','','','','','','','Reliability ','Reproducibility ','Declarative syntax','','','Y','','','','','','','','','','Cinnamon','','',''),(758,'1980-01-01 00:00:00',5,'en','1418031714','A2','A4','-oth-','','','','','','Y','Y','','Y','','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I like configuration management, infrastructure as code, tangible configuration. And functional programming (former Common Lisp developer). Nix is embodiment of configuration as code.\r\n\r\nAlso, isolated, locked, and fully reproducible per-project development environments <3','','','','','','','Y','Y','Y','','','','','','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A8','A6','','','','','','','','','','','','','',NULL,'Ansible/Chef/Puppet','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I like configuration management, infrastructure as code, tangible configuration. And functional programming (former Common Lisp developer). Nix/NixOS is embodiment of configuration as code.','Y','Y','Y','','','','','','','','','ansible/chef/puppet','','','','Y','','','','','','','Hyprland','Home Manager, nix-direnv, sops-nix, Alejandra, Statix','NixOps – seems abandoned','Thank you! <3'),(759,NULL,1,'en','964572269','A2','A4','male','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(762,'1980-01-01 00:00:00',5,'en','1225080520','A2','A3','male','','','','','','','Y','','','Y','','','','','Y','','','','','','','','','','','','','','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','Y','','','','','','Y','','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''); -INSERT INTO `limesurvey_survey_2023` VALUES (763,'1980-01-01 00:00:00',5,'en','1121162504','A2','A3','male','','','','','','','Y','','Y','','Y','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Friend recomended','','','','','','','Y','','','','','','','Y','Y','Y','','','','','A1','A3','A2','','','','','','','','A5','A4','A13','','','','','','','','','','','','',NULL,'Arch pacman','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A15','A4','A1','A3','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Friend recommended ','Y','','','','','','','Declarative, reproducible config','Ease if changing kernel version, and other options','Hassle frew rollback','Add better documentation, more explicit error messages\r\n\r\nRemove: decrease the possible ways to use nix ( at least officially). For example having flakes and other ways to manage packages introduces confusion and not helful. There should be way less and recommended solutions to use nix so there is less confusion and easier learning curve','Arch ','Y','','','','','','','','','','Sway','','','Please better documentation and more coverage and up to date articles on wiki. Also we shold stop introducing new solutions or extensions of nix like flakes and try to improve and perfect what we have now. Instead of having another wrapper around nix we should make nix better, more understandable, more stable and easier to use.'),(764,'1980-01-01 00:00:00',5,'en','218871459','A5','A3','male','','Y','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','','','','','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A12','A11','A2','','','','','','','','','','','','',NULL,'guix','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A3','A2','A9','A1','A13','A14','A21','A4','','','','','','','','','','','','','A14','A11','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','Y','Y','Y','','','','','','','','','','','Y','','','','','','','xmonad','dream2nix, home manager, nix top, nix du, fup, ','',''),(765,'1980-01-01 00:00:00',5,'en','202050892','A5','A4','male','','','','','','','Y','','','Y','Y','','','','Y','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','After years of using asdf version manager to install tools and runtimes, got tired of having different problems across developer\'s environments. So we introduced Nix to get all of us the exact same development environment.','Y','Y','','Y','','','Y','Y','Y','','','','','Y','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A2','A6','A4','','','','','','','','','','','','',NULL,'asdf-vm','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A11','A15','A22','A24','','','','','','','','','','','','','','','','','','A11','A15','A22','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','snowfallorg/lib\r\n\r\n','',''),(766,NULL,1,'en','734616799','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(767,'1980-01-01 00:00:00',5,'en','807397470','A5','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','been aware of it for years, started experimenting with nixos personally to evaluate if it was a good solution to packaging issues at work. now use nix in all software development and run nixos on all my personal devices','','','','','','','Y','','','Y','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A4','A5','A8','','','','','','','','','','','','',NULL,'likely docker for packaging environments and Ansible for building os images. These are the tools nix replaced for me','A2','','','','Y','Y','','','','','','','','','','','','','','Y','Y','','','A9','A15','A2','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','evaluation for use at work','Y','','','Y','','','','reproducible os images','centralized human readable configuration ','safety of making large or tricky os changes','document and exploration of nixos options should be much better. flakes should be stabilized, default enabled, and better integrated into nixos. more of the os should be read-only/ephemeral by default. config in /etc/nixos feels out of place as it generates the world around itself.','likely debian/Ubuntu/arch with tools like Ansible/docker for provisioning environments','Y','','','','','Y','','Y','','','sway','home manager ','',''),(768,'1980-01-01 00:00:00',5,'en','1445938718','A2','A2','male','','','','','','','','Y','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','When I learned about Nix, it was very similar to what I imagined would be an ideal package manager, after my experience with Gentoo, Ubuntu and Antergos (Arch). So I naturally quickly switched tobit.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A7','A5','A10','','','','','','','','A11','A2','A8','','','','','','','','','','','','',NULL,'Guix. And if Guix didn\'t existed, likely portage (gentoo).','A1','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A15','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','daily driver','A4','For the same reason I started to use Nix: It is very similar to what I imagined would be the ideal package manager.','Y','','Y','','','','','Configuring the systems with programmable and unified files in a declarative way','Overriding packages','Installing/testing software with no worry about breaking stuff (rollbacking at worst)','','GuixSD, and if not for it, Gentoo.','Y','','','','','','','','Y','','','simple-nixos-mailserver, that I use (and is very convenient) to host my emails.\r\nNixpkgs of course\r\nA pletora of flakes for various things.','NixOps. Too complicated when I can just use nixos-rebuild and specify an ssh deployment remote server.\r\nsoong2nix. Just a POC that would be really good if it could compile Android.','I was a bit confused about what to put in the Nix and what to put in the Nixos section. I put pretty similar result for both most of the times, as I use both Nix and Nixos at the same time.'),(769,'1980-01-01 00:00:00',5,'en','383969977','A2','A4','male','','','','','','','','','Y','','','','','','','Y','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Started using Nix on CentOS as a solution for our internal software delivery. This never took off but I still use it and later started using NixOS at work as well.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','Y','','A7','A9','A1','','','','','','','','A8','A7','A2','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','Y','','','Y','','','','','A4','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','Atomic updates rollbacks','Declarative','','','','Y','','','','','','','Y','','','','','',''),(770,'1980-01-01 00:00:00',5,'en','570417748','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A10','A9','','','','','','','','A9','A4','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(771,'1980-01-01 00:00:00',5,'en','1231801181','A2','A6','male','','','','','','','','','','','','','','','','','','','','','','','','','robot programmer','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Installed NixOS','','','','','','','Y','','','','','','','','','','Y','','','','A9','A7','A6','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A25','A7','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','no','-oth-','to configure nixos',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','investigating the reproducability','Y','','','','','','','','','','','','Y','','','','','','','','','','JWM','','',''),(772,'1980-01-01 00:00:00',5,'en','1394922995','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I heard about it online. I had been using Fedora Kinoite with container and flatpaks but found the difficulty in altering the base image constraining. I decide to switch to nixos as it offered declarative config with adjustability. ','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A10','A7','','','','','','','','A9','A5','A6','','','','','','','','','','','','',NULL,'Containers like toolbox on an immutable base with flatpaks for user apps.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','It offered the benefits of immutability and such without being difficult to adjust.','Y','','Y','','','','','Configurability','Reproducibility','Extensibility','Simplify flakes slightly to allow for replacing configuration.nix with a flake by default. Then deprecating channels and the old nix-Command commands.','Fedora Kinoite ','Y','','','','','','','','Y','','','Sops-nix\r\nHome-manager\r\nDisko\r\nImpermanence','',''),(773,'1980-01-01 00:00:00',5,'en','1964370289','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','Y','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A3','I wanted to install NixOS and I fell in love with the whole nix ecosystem','','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A2','A7','','','','','','','','A7','A5','A8','','','','','','','','','','','','',NULL,'Docker, ansible, flatpak, terraform','A4','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','ConcourseCI','A15','A9','A2','A1','','','','','','','','','','','','','','','','','','A1','A15','A9','','','','','','','','','','','','','','','','','','','','','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was an old arch user that was fed up with its instability and willing to easily contribute to my OS. NixOS was the only distro with the same/bigger amount of packages easily available, very stable, looking like a toy (Being able to *code* your os conf was really appealing) and with a clear/easy contribution workflow','Y','','Y','','','','','Stability','Huge package set','Reproducibility','Support for SELinux','Fedora Sericea','Y','','','','','','','','Y','','Sway','Flake-parts to easily build flake','',''),(774,'1980-01-01 00:00:00',5,'en','1586351376','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A2','A3','A7','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Homebrew, Docker','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A5','A7','A13','A14','A20','','','','','','','','','','','','','','','','','A1','A20','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','Y',NULL,'Because i work on a mac','If I had a Linux machine, I would definetly use NixOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(775,'1980-01-01 00:00:00',5,'en','516385933','A4','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','I wanted a system that did not break and forced me to be organized ','','Y','','','','','Y','','','Y','','','','Y','Y','','Y','','','','A2','A1','A9','','','','','','','','A6','A13','A9','','','','','','','','','','','','',NULL,'Guix because it is also declarative ','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A22','A2','','','','','','','','','','','','','','','','','','','A22','A4','A19','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I wanted a declarative system that didn\'t break and didn\'t require me to package everything by myself (lots of pre included packages)','Y','Y','','','','','','Declarative system management','Reproducability','Ease of use, consistency (everything in Nix, no 27462 different languages to configure tools)','I would allow NixOS to be configured with other languages, such as Python ','Guix, because it is basically the only other declarative os','Y','','','','','','','','Y','','','fenix and nil','','Thank you all for the best OS ever! ♥️'),(776,'1980-01-01 00:00:00',5,'en','1940972130','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Desire to have virtualenvs for all projects, not just Python.','','Y','','','','','Y','','Y','','','','','','Y','Y','Y','','','','A1','A3','A9','','','','','','','','A9','A5','A13','','','','','','','','','','','','',NULL,'I\'d probably be clobbling together a lot of Docker containers with tools instead.','A4','','','','','','','','','','','','','','','','','','','Y','','','TeamCity','A9','A4','A3','A20','A2','A1','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Frustration with yet another ArchLinux upgrade failure, and wanting a more declarative system.','Y','','Y','Y','','','','atomic rollbacks','declarative configuration','large package selection','add: secure boot\r\nchange: nix language','Probably still ArchLinux, but maybe I would have ventured into a BSD by now?','Y','','','','','','','','','','herbstluftwm','nixos-generate','remote builders',''),(777,'1980-01-01 00:00:00',5,'en','1883087214','A2','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I learnt about it through the HPC group at Grenoble university who regularly organises meetups about Nix and Guix.','Y','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A6','','','','','','','','A5','A9','A6','','','','','','','','','','','','',NULL,'Guix','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A13','A14','A15','','','','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Learning resources ','Y',NULL,NULL,NULL,NULL,'','','Y','','','A2','Saw it mentioned on Twitter, got intrigued ','Y','','','','','','','Declarative configuration ','Up-to-date desktop packages','Swift upgrades and rollbacks','A GUI to discover and edit configuration options','Debian','Y','','','','','','','Y','','','','nixos-hardware, home-manager, nix-darwin','','Keep up the good work, you\'re awesome!'),(778,'1980-01-01 00:00:00',5,'en','759446131','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','N','N','Y','','','','too many ways to do the same thing (flakes?)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','good, stabilized tooling and docs, one way to do things, documentation or example to start off when migrating from debian, especially when you have 100% debian in your cluster',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(779,'1980-01-01 00:00:00',5,'en','54150884','A2','','male','','Y','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A1','A10','A2','','','','','','','','A5','A13','A6','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','Y','Y','','','','Y','','','','','','A15','A22','A24','A23','A20','A26','A2','','','','','','','','','','','','','','','A22','A15','A24','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','Declarative System','Hassle-Free installation of software','','','','Y','','','','','','','','Y','','','','',''),(780,'1980-01-01 00:00:00',5,'en','1827917481','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started using Nix through NixOS because of the centralization of the configuration and the possibility to deploy a system with a couple of commands. I was using Debian, and while I was very happy about it, it was always trouble to switch between computers because of the configuration part of the process. With NixOS, all the hassle disappeared.','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'I would use something like Ansible.','A4','','','','','','','','','','','','','','','Y','','','','','','','','A15','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I switched from Debian with NixOS 22.11 because of the reproducibility and the centralized configuration, which make it a lot less troublesome to deploy the same configuration on a new machine.','Y','','','','','','','Centralized configuration','Reproducibility','Easily extensible','The standard library: it feels a bit chaotic, with functions available from builtins or lib, not available everywhere, and I sometimes get lost about it. And the corresponding documentation, which I would prefer to be more easily searchable, instead of being part of a huge web page that must be text-searched with a lot more information.','Debian','Y','','','','','','','','','','Sway/i3','home-manager\r\nimpermanence\r\nnix-prefetch','I don\'t remember any','Thanks for the great work, it is a real pleasure to use NixOS as a daily driver. It takes some time to get used to the Nix language (especially how to use it with NixOS/nixpkgs), sometimes due to outdated examples or difficulty to find the information (a lot of resources, I find it difficult to get the most relevant for my case) , but when you get a grasp on it, it feels really powerful for system administration.'),(781,'1980-01-01 00:00:00',5,'en','876957427','A4','A2','male','','','','','','','','','Y','','','Y','','','','','','','','','','','','','','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(782,NULL,2,'en','1079825969','A6','A4','male','','','','','Y','','','','','','Y','','','','','','','Y','','','Y','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducible desktop/laptop setup','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A1','A2','A9','','','','','','','','A12','A8','A6','','','','','','','','','','','','',NULL,'Ansible for some things. ','A4','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A9','A4','A2','','','','','','','','','','','','','','','','','','','A2','A9','A4','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(783,'1980-01-01 00:00:00',5,'en','1908859646','A2','A2','male','','','','','','','Y','Y','Y','Y','Y','','Y','Y','','','','Y','','','','','Y','Y','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(784,'1980-01-01 00:00:00',5,'en','728698341','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Flakes and declarative builds were definitely the biggest reason for me. Also the fact that it\'s a single tool for almost everything; that simplifies things a lot.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'Don\'t even want to think about that.','A7','','','','Y','Y','','','','','','','','','','','Y','','','','','','','A2','A17','A25','','','','','','','','','','','','','','','','','','','A2','A17','A25','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Still figuring out the language. Documentation also.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Same as nix. Declarative builds and flakes mainly.','Y','','Y','','','','','Isolation','Consistency','Boot speed','Make it better documented. As far as that goes trying to put all the documentation for everything in like a single page would be great.','Probably Arch.','Y','','','','','','','','','','i3','Alejandra is pretty good. flake-parts, flake-utils, NUR, home-manager.','neovim overlay','Doing a great job with these and keep going!'),(785,'1980-01-01 00:00:00',5,'en','1932005932','A2','A5','male','','Y','','','','Y','Y','Y','','Y','Y','Y','Y','','Y','','','Y','','','Y','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','- Transparency and reproducibility\r\n- Portability\r\n- Large number of available packages','','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','','A1','A2','A8','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'Vagrant, Ansible, Puppet/Chef','A4','','','Y','Y','Y','','','','','','','Y','','','','','','Y','','','','','A1','A7','A3','A4','A17','A2','A5','','','','','','','','','','','','','','','A1','A7','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'N','Y',NULL,'Not stable enough - losing too much time debugging issues when things go wrong.','I already have a NixOS VM that I try to maintain and see how stable it is throughout time before committing - it works well, but not well enough - needs rock-solid stability like Debian and Fedora.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The problem with the Nix ecosystem is that there are TOO MANY projects - it needs concentrated effort on a few that work well, instead of many that don\'t.','','I already mentioned this, but maybe it\'s worth repeating. For Nix to succeed, it needs first and foremost stability: few tools that just work and good documentation that shows the orthodox way to do things - these days it seems everyone starts their own half-though project that gets abandoned after a short while, and while it\'s great for hacking, it\'s not very productive.'),(786,'1980-01-01 00:00:00',5,'en','1213917707','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','it is the de-facto need for nixos','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A10','','','','','','','','A3','A13','A5','','','','','','','','','','','','',NULL,'Probably Guix, although the syntax of it seems impossible.','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I like declarative systems and nixos seems to be the best one so far.','Y','','Y','','','','','Declarative Configuration','Able to revert stuff easily','Stability','Make declaration less optional and have a \"recommended\" way of doing things. Modifying a package can be done literally 10+ different ways.','Probably guix or arch','Y','','','','','','','','','','Awesomewm','Home Manager ','Nixops','We need documentation, or god forbid even support a new syntax, for mere mortals who doesn\'t come from functional programming background.'),(787,'1980-01-01 00:00:00',5,'en','1077080468','A2','A2','male','','','','','','','Y','Y','','Y','','Y','','','','','','','','','','','Y','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A2','I wanted to try something new ','Y','Y','','','','','Y','','','','','','','Y','Y','','','','','','A1','A7','A2','','','','','','','','A3','A10','A6','','','','','','','','','','','','',NULL,'Arch or gentoo probs','A1','','','','','','','','','','','','','','','','','Y','','','','','','A15','A4','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Flatpak :^)','A2','','My own laziness (:','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A2','','Y','Y','','','','','','Huge Package Repo','Immutable FS ','Rollbacks and easy rice stealing :^)','Add Rust support for the .nix files :^)','Artix or Gentoo most likely','Y','','','','','','','Y','Y','','','','',''),(788,NULL,2,'en','2045526980','A2','A4','male','','','','','','','','','','','','','','','','Y','','Y','','','','','','','Freelance Solution Architect','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','Y','Y','','','A2','The main reason is: because I can have the exact same system across all my machines, with certainty. All the other strengths of Nix too, obviously, but this is the main one.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','Y','I want to automate everything. I\'m not there yet because I still have to nearn Nix but this is what I want to use it for.','A1','A7','A2','','','','','','','','A14','A5','A1','','','','','','','','','','','','',NULL,'ArchLinux and Terraform/Ansible','A4','','','','Y','','','','','','','','','','','','','Y','','','','','','A1','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','-oth-','Sorry but this poll is weirdly made. I had to choose \"Yes I use Nix\" because the initial question included \"NixOS\", but I don\'t really use Nix, I use NixOS. I want to learn Nix but the ressoures are not that great to be honnest. What we need is a wiki as great as the one for ArchLinux.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(789,'1980-01-01 00:00:00',5,'en','885280317','A2','A2','male','','','Y','','','','Y','Y','','Y','Y','Y','Y','','','','','Y','','','','','Y','Y','','','','Y','','','Gentoo','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Work requires it.','','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','Y','Y','easier to tell for what we do not use it (for taxes)','A5','A6','A10','','','','','','','','A5','A11','A14','','','','','','','','','','','','',NULL,'Gentoo','A2','','','','Y','Y','Y','Y','Y','','Y','','','','','','','','Y','Y','Y','','','A3','A4','A22','A19','A5','A15','','','','','','','','','','','','','','','','A1','A15','A10','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','If it was not required for work I\'d use Gentoo on my work laptop etc.','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','I wanted to see how good Nix interavcts with me if I\'m using full OS instead of standalone PM.','Y','','','','','','','System config','Reproducible','Hard to maintain','Portage','Gentoo','','','','Y','','Y','','','Y','','Arcan + Durden','zig-overlay','IDK','If only such manpowers and hype were given to Gentoo... It suffers from lack of contributors a lot.'),(790,'1980-01-01 00:00:00',5,'en','939331601','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','N','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(791,'1980-01-01 00:00:00',5,'en','787605413','A2','A4','male','','','','','','Y','Y','Y','','','Y','','','','','','','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Having the same environment across different Operating Systems, without the need to virtualize or use containers.','Y','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A1','A2','A9','','','','','','','','A9','A8','A6','','','','','','','','','','','','',NULL,'Dockerfiles, *sigh*','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A3','A4','A15','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducibility. It is addictive to add more machines to your personal setup and have them with bells and whistles one command away (nix-install --flake ...). Defining your system in a declarative way is a superpower.','Y','Y','Y','','','','','Reproducibility','Declarative','Composable','Nix/NixOS/nixpkgs are good as they are, evolving them is fine. However, I would focus on a *layer* on top of it, that is approachable by everyone in a trivial fashion, but that at the same time keeps all Nix/NixOS/nixpkgs properties.','Highly imperative-driven fur-balls of state in the form of OpenSUSE, Ubuntu, or something of the sorts.','Y','','','','','','','Y','','','','home-manager, sops-nix','--','I\'d like to check stuff like NixOps and similar; but I\'m doing nixos-rebuild manually on all my machines, all of them taking a flake as an input that is stored in my GitHub account.'),(792,'1980-01-01 00:00:00',5,'en','1335911149','A2','A3','male','','','','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','Y','','','','','','','Y','Y','','','','','','A2','A6','','','','','','','','','A14','','','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A8','A4','A22','','','','','','','','','','','','','','','','','','A8','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(793,'1980-01-01 00:00:00',5,'en','1305247124','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','nixos, reproducible development environment','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A4','A3','A6','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A25','A13','A14','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','declarative os','Y','','','','','','','','','','','','','','','','','','','','','','','','',''),(794,'1980-01-01 00:00:00',5,'en','1273341881','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I played around with Unix systems for a while, but was frustrated by the volatility of my work. Every setup I had would require continuous maintenance. I found nix to completely free this overhead. Declaring my own system in a language gave me a stability I\'ve only been dreaming of. It scales across machines and architectures, and saves me a lot of time and effort. Nix is Linux done right.','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A5','A8','A1','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','','','','','','','','','','','','','','','Y','','','','A2','A4','A13','','','','','','','','','','','','','','','','','','','A2','A4','A13','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','Y','','','','','Declarative and reproducible OS configuration','Stable packages for Linux desktop','Modularity and configuration re-use across systems','I would provide better documentation and search engines for OS/package configuration settings\r\nI would also provide much better support for Wayland','Guix','Y','','','','','','','','','','Hyprland','','','Thank you for your efforts. You are really making a difference '),(795,'1980-01-01 00:00:00',5,'en','455881043','A2','A2','male','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I thought the concept of declarative configurations was very appealing.\r\nHeard from it from a friend.','Y','Y','','Y','','','Y','','','','','','','','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A4','A8','A10','','','','','','','','','','','','',NULL,'Not Linux.\r\nNo seriously.','A7','','','','Y','','','','','','','','','','','','','','','Y','','','','A22','A15','A13','','','','','','','','','','','','','','','','','','','A24','A22','A8','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Having nothing that\'d be well placed in nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Friend introduced me to it, loved the idea of declaractive configurations.','Y','','','','','','','Declarative Configuration','Dependency Management','Reproduceability','Add: A transpiler, that transpiles to Nix.','Windows only.','Y','','','','','','','','','','river, xmonad','-','nix-channels, because nix-flakes were much more comfortable to use.','You do god\'s work, seriously, thank you so much!'),(796,NULL,1,'en','891876292','A2','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(797,NULL,2,'en','2019800435','A2','A3','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Wanted to be able to manage a server declaratively.\r\nI also ran in an situation where I would need two versions of the same library , which is complicated on arch','','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','','A1','A2','A8','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Arch, with AUR','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A4','A9','A1','','','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Working on building and deploying closed source software ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(798,'1980-01-01 00:00:00',5,'en','93607381','A2','A4','','','','','','','Y','Y','','','Y','Y','','','','','Y','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Heard of it through a friend.','Y','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A6','A2','A12','','','','','','','','','','','','',NULL,'guix. but if not, classical config mgmt ala puppet and containers on arch.','A4','','','','','','','','','','','','','','','','','','','','','','','A1','A5','A15','A2','A11','A9','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Friend.','Y','','Y','','','','','Snapshot/rollback','Configurability if the system','All the advantages of nix+nixpkgs','- Standardized support for secrets\r\n- Content addressable store and package signing \r\n- Better security story\r\n- Generally improved UX, such as debuggability of derivations and modules','Guix or Arch','Y','','','','','','','','','','Awesome','','',''),(799,'1980-01-01 00:00:00',5,'en','2081576294','A5','A5','male','','','','Y','','','','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Bumped into NixOS on some random YouTube video. Tickled by the idea of a Linux system that could be captured in a config file & rolled back to a previous consistent state in case of problems. Currently using NixOS on personal machines; I think I might find uses for it at work once I get smart enough about it.','','Y','','Y','','','Y','','','','','','','Y','','','Y','','','','A2','A1','A7','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Fedora, maybe Silverblue.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don\'t know how. I\'m still struggling to learn enough to make my personal machines do what I want. I\'d like to contribute to Nixpkgs, but I\'m not smart enough yet (and it\'s unclear how to progress).','Y',NULL,NULL,NULL,NULL,'A1','','Y','','As daily driver','A2','See answer from previous Nix section.','Y','','','','','','','Declarative / reasonably complete & reproducible system config','Rollback to previous / known-good generations','','Right now? Clear, comprehensive, high-quality documentation & learning materials.','Fedora, maybe Silverblue.','Y','','','','','','','Y','','','i3/sway curious','Home-manager is a central part of my Nix experience. I\'m currently trying to figure out how to get emacs-overlay working; this is also fairly important to me.','None.','Thank you for bringing Nix/NixOS into the world! Despite a significant amount of frustration trying to figure things out, I\'m still really excited by Nix/NixOS.'),(800,'1980-01-01 00:00:00',5,'en','1160883004','A5','A4','fem','','','','','','Y','Y','','','','Y','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was at a Haskell workshop in 2014 where the instructor switched configuration from one version of GHC to another with one command and from that point I was hooked. ','Y','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A9','','','','','','','','A6','A2','A12','','','','','','','','','','','','',NULL,'Whatever was native to the BSD I was using, probably. ','A6','','','','Y','Y','','','','','','','','','','Y','','Y','','Y','','','','A1','A15','A13','A11','A23','A7','','','','','','','','','','','','','','','','A23','A24','A11','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','My kids\' laptops','A5','I needed Nix on Linux and I didn\'t want to compromise on principles by shoving Nix on Fedora or whatever I would be using. ','Y','','Y','Y','','','','Declarative system + user configuration in code','Binary substitution/cache','Ability to choos own adventure (using stable versus unstable channels)','Native, industrial strength, yet extensible secrets management mechanisms. ','A BSD, probably DragonflyBSD. ','Y','','','','','','','','','','Sway','','NixOps. We are no longer on speaking terms and in 2016-2017 I did try to make it make sense. (It works ok for tiny scenarios but not what I needed.)','Keep up the great work.<3'),(801,'1980-01-01 00:00:00',5,'en','1594237436','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','haskell packages on gentoo','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A5','A1','A2','','','','','','','','A13','A8','A5','','','','','','','','','','','','',NULL,'gentoo','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A25','A3','','','','','','','','','','','','','','','','','','','A3','A4','A13','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','nix language is hard because no types','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','tired of maintaining two gentoo machines','Y','','Y','','','','','declaritive','source based','haskell packages ','I would fix all the theming issues','gentoo ','Y','','','','','','','','','','LXQT','','',''),(802,NULL,1,'en','1488075651','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(803,NULL,NULL,'en','1627417842',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(804,NULL,NULL,'en','46665229',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(805,NULL,NULL,'en','225687205',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(806,'1980-01-01 00:00:00',5,'en','1413972412','A1','A2','male','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','YouTube video about NixOS I watched last year was really interesting. And I found home manager is hero for me ( as dotfiles freak). ','Y','Y','','Y','','','Y','','','','','','','Y','Y','Y','Y','','','','A6','A2','A7','','','','','','','','A8','A4','A6','','','','','','','','','','','','',NULL,'arch linux and asdf','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A17','A25','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','YouTube video ','Y','','','','','','','','','','','arch linux','Y','','','','','','','','','','i3','','',''),(807,NULL,2,'en','372071887','A2','A5','male','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','Consultant ','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','','','','','','','Y','','Y','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','','','','','','','','','','','','','','','',NULL,'Gentoo portage','A4','','Y','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(808,'1980-01-01 00:00:00',5,'en','542161535','A4','A2','male','','','','','','','Y','','','Y','','','','','','','','Y','','','','','Y','','','Y','Y','','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(809,'1980-01-01 00:00:00',5,'en','1900423213','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducible configuration of complete Linux systems, so NixOS brought me to Nix.','','Y','','','','Android via nix-on-droid','Y','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','A7','A2','A10','','','','','','','','A8','A12','A11','','','','','','','','','','','','',NULL,'guix','A4','','Y','','Y','Y','','Y','','','','','Y','Y','','','','Y','','Y','','','','A2','A15','A1','A10','A9','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Declarative configuration','Y','Y','Y','Y','Y','','','Declarative Configuration','ZFS Support (for rollbacks)','Systemd integration','Make the minimal closure smaller, getting rid of the perl requirement, dashboards for package upgrades.','guix-sd or fedora silverblue','Y','','','','Y','','','Y','','','','direnv-flakes, nixos-anywhere, dream2nix, floco, others','doom-nix',''),(810,NULL,2,'en','91085026','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A1','A3','A7','','','','','','','','A2','A12','A5','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(811,NULL,NULL,'en','1620215739',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(812,'1980-01-01 00:00:00',5,'en','1119361108','A2','A3','male','','','','','','','','','','','','','','','','','','','','','Y','','','','Security Engineer ','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted an reproducible OS. ','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A10','A2','','','','','','','','A6','A9','A14','','','','','','','','','','','','',NULL,'Debian','A1','','','','','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Time and complexity of the repo.\r\nAnd I\'m not a good nix writer yet. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted a reproducible desktop OS. ','Y','','','','','','','Declarative configuration','Going back in time ','Share configuration with others ','Better ressources to learn NIX','Debian','Y','','','','','','','','Y','','','The website/documentation ','Secrets managements options ',''),(813,'1980-01-01 00:00:00',5,'en','833297523','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A1','A3','A2','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A13','A5','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','Y','Y','','','','Declarative configuration','Common configuration language for various programs','','','','Y','','','','','','','Y','','','','home-manager\r\nsearch.nixos.org\r\nstatus.nixos.org\r\nhttps://nixpk.gs/pr-tracker.html','',''),(814,'1980-01-01 00:00:00',5,'en','940764771','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','I had three computers and managing their config was difficult as was keeping them in sync. Instead of using chef or puppet I moved from Ubuntu to nixOS’s declarative syntax to specify the packages and configuration. System config is all I’ve learned so far but it’s been incredibly helpful. ','','','','','','','Y','Y','','','','','','','','','Y','','','','A1','A9','A7','','','','','','','','A14','A5','A6','','','','','','','','','','','','',NULL,'Chef','A4','','','','','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Need to learn more. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','','','','','Chef+Ubuntu','Y','','','','','','','Y','','','','','',''),(815,'1980-01-01 00:00:00',5,'en','253396861','A2','A3','male','','','','','','','','','Y','','','Y','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','With imperative configuration it is easy to lose track of your work, and that kept happening to me. Since Nix serves both as a source of truth and allows me to document things in the code itself, Im less likely to forget how or why a certain part was configured. Its more useful than keeping a separate journal for that.','','','','','Y','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A2','A10','','','','','','','','A8','A6','A2','','','','','','','','','','','','',NULL,'System package manager, spack','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A4','A22','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as with Nix, for a single source of truth configuration.','Y','Y','','','','','','Configuration-as-code','Sharing configuration between multiple machines','Ease of packaging, extending packages, and overriding packages','- Incremental builds, as hacking on larger things like Linux is a pain because of the recompilation time.\r\n- A way to add private flake inputs','Another Linux distribution','Y','','','','','','','','','','river','','',''),(816,NULL,NULL,'en','81050778',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(817,'1980-01-01 00:00:00',5,'en','564762202','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','','','','','','','','Y','Y','Y','','Y','','A2','A3','A9','','','','','','','','A3','A4','A12','','','','','','','','','','','','',NULL,'docker, asdf','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A21','A2','A15','A17','A4','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','awesonewn','','',''),(818,'1980-01-01 00:00:00',5,'en','1381416761','A2','A5','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Bad influence by friends. ','Y','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','A7','A2','A6','','','','','','','','A4','A8','','','','','','','','','','','','','',NULL,'Ansible ','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A18','A4','A17','A15','A26','','','','','','','','','','','','','','','','A26','A9','A17','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','For home server initially ','Y','','Y','Y','','','','Rollbacks ','Declarative config ','Big package catalog ','Stabilize flakes','Ansible ','Y','','','','','','Hey','','','','Nimdow ','','',''),(819,'1980-01-01 00:00:00',5,'en','441350862','A2','A4','male','','','','','','Y','Y','','','','','','','','','Y','Y','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','I wanted my home server to be easy to maintain and liked the idea of a declarative configuration file for configuring the entire machine that NixOS brought, and I invested some time in getting familiar enough with it that I could get something running on a Raspberry Pi. It kept running for years and was eventually upgraded to more powerful hardware.\r\n\r\nI\'ve recently started embracing Nix more on the MacOS laptop I use for work in order to reap the benefits there as well.','Y','','','','','','Y','Y','','','','','','Y','','','Y','','','','A1','A2','A9','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'Probably Arch Linux and Homebrew','A4','','','','','','','','','','','','','','','','','','','Y','','','','A2','A9','','','','','','','','','','','','','','','','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','On a Raspberry Pi I wanted to use it as a small home server with minimal maintenance, and I liked the idea of the declarative configuration format.','','','Y','','','','','Declarative configuration','Modules to ease the configuration of various services','Automatic updates and garbage collection','A stable, rolling-release option would be grand','Arch Linux','Y','','','','','','','','','','','Agenix for encrypting secrets and Home Manager','I tried out Nixops once but didn\'t immediately get it to work so dropped it',''),(820,NULL,1,'en','570216782','A2','A3','male','','','','','','Y','Y','Y','','Y','Y','','','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(821,'1980-01-01 00:00:00',5,'en','449593474','A4','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','','','','','','Y','','Y','','','','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A6','A5','A8','','','','','','','','','','','','',NULL,'If Nix didn\'t exist, I suppose Guix wouldn\'t exist either, so that doesn\'t count. I wolld probably still be using Pacman. ','A2','','','','Y','Y','','','','','','','Y','','','','','Y','','','','','','A2','A20','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','','','','','','Declarative system configuration','Rollback support','Pacbage availability','','Archlinux, as GuixSD wouldn\'t exist either. ','Y','','','','','','','','Y','','','','',''),(822,NULL,NULL,'en','2085546888',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(823,NULL,NULL,'en','244011312',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(824,NULL,1,'en','1046032311','A2','A3','male','','','','','','','Y','Y','','','','','','','','Y','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(825,NULL,-1,'en','87685334','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(826,'1980-01-01 00:00:00',5,'en','344883147','A1','A5','male','','','','Y','Y','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','It was annoying to setup development environment and daily tools especially when I buy a new computer.','Y','','','','Y','','Y','','','','','','','Y','','','Y','','','','A1','A7','A9','','','','','','','','A8','A10','A14','','','','','','','','','','','','',NULL,'homebrew','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A2','A13','A15','A21','A25','','','','','','','','','','','','','','','','','A13','A25','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Nix seems to have multi layer concepts for me and it is difficult to fully understand those concepts.','N','Y',NULL,'I didn\'t have much knowledge about Nix at that time and it was too difficult for me to use NixOS easily.','If I have enough free time to try NixOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'No.','No.','I read a blog post about Nix in Japanese language, which I can\'t find the URL, it made me some insights about Nix idea. The important thing about Nix might be a document about concept related to Nix. Nix is complex system but I feel if the complex concepts are well organized or well presented, it would have been much easier for me to start using Nix. I now regularly use Nix but I don\'t think I fully understand important thing, it is nice for me to have a well organized concept document.'),(827,'1980-01-01 00:00:00',5,'en','1118694936','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Read about it on a blog and was fascinated about it','','Y','','','','','Y','Y','','','','Y','','','Y','Y','Y','','','','A2','A10','A6','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A2','A4','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','That one time i wanted to change something there was already an open PR with a long discussion without a result','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Read about the erase your darlings setup and config drift was and not knowing what i configured anymore were previously reasons why i reinstalled linux','Y','','Y','','','Y','','Reproducibility','Only requiring nix store to boot','','Configuring KDE plasma (panels, wallpaper) is difficult\r\n\r\nBetter support for building Raspberry Pi sd images and then continue updating using the same config','Arch Linux because of the AUR','Y','','','','','','','','Y','','','home-manager\r\nplasma-manager\r\nsops-nix\r\ncomma\r\n','',''),(828,'1980-01-01 00:00:00',5,'en','730765606','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Looked for a tool that could help with automating my Mac beyond what Brew could offer.\r\nEventually expanded into trying NixOS.','Y','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','','A2','A7','A1','','','','','','','','A4','A12','A3','','','','','','','','','','','','',NULL,'Probably some combination of Puppet and Ansible for servers.\r\nAnd just Brew and shell scripts for my Mac.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A4','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'','Y','Y','','','A2','Became comfortable with Nix on my personal machines, wanted to explore using it for servers.\r\nAlso the automation capabilities of NixOS appealed to me. ','Y','','Y','Y','','','','Remote building capabilities - can build a machine \'image\' ahead of time, resulting in very fast deployments.','Strong ecosystem - haven\'t needed to create many custom pkgs/modules, and when I do, I can find examples online.','Customization - outside of some \'core\' services, the system can be customized as desired','It would be nice if the \'disko\' and \'impermanence\' projects were eventually collapsed into NixOS, and officially supported.\r\nEven with \'disko\', disk management has always been a pain point.','Probably Debian for stability.','Y','','','','Y','','','','Y','','','* impermanence - most of my production machines are \'stateless\'.','* disko - loved the idea, but the documentation just wasn\'t there.',''),(829,'1980-01-01 00:00:00',5,'en','1808354737','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','Y','','','Y','','Y','Y','','','','Y','Y','Y','Y','','','','A6','A1','A2','','','','','','','','A4','A5','A8','','','','','','','','','','','','',NULL,'Docker','A1','','','','Y','Y','Y','','','','','','','Y','','','','','','Y','','','garnix.io','A10','A9','A1','A15','A5','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','Y','Y','','','','Deployments using Colmena','Everthing is in Nix code','Provision a lot of machines','','Debian','Y','','','','Y','','','Y','','','','Devenv','',''),(830,'1980-01-01 00:00:00',5,'en','148747586','A8','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I got tired of having different machines with different configurations. I just wanted a single configuration I could customise and migrate across. A nix flake system configuration makes this quite fun and easy to accomplish that doesn\'t feel.. \'hacky\'.','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A3','A2','A7','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'PopOS or Gentoo','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Imposter syndrome - perceived lack of skill.\r\nI find writing in Nix difficult.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I watched a youtube video of matthewcroughan who showed some features of nix.\r\nI gave it a go as a test run, then quickly fully migrated my entire home lab over.','Y','','Y','','','','','Rollback support','Configuration file stored in git repository','Temporary environments','Better documentation with nix derivations.\r\nMore examples of custom python modules, more examples of custom compiled software, etc.','PopOS, Debian or Gentoo','Y','','','','','','','Y','','','','Home manager','I tried getting nixos onto my old Oneplus 6. I failed with reasons I don\'t understand why.',''),(831,'1980-01-01 00:00:00',5,'en','1108819215','A2','A4','male','','','','','','','Y','Y','Y','','Y','','','Y','Y','','','Y','Y','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','Teach to students/employees','A4','I got towards nix via the haskell bubble on twitter in ~2016. I was amazed that all projects that have a shell.nix file provide a single-command workflow to simply start working with the right toolchains and deps. After reading more about it i decided in the same month to start using NixOS on my personal laptop to ramp it up quickly and use all the advantages: Congruent sys administration, declarative whole-system description, dependency management, etc. etc. ','Y','Y','','Y','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','Y','','A2','A7','A1','','','','','','','','A3','A2','A9','','','','','','','','','','','','',NULL,'This is very hard to imagine because there is nothing comparable. Probably still docker and a lot of hard alcohol to ease the pain.','A4','','','','Y','Y','','','','','','','','Y','','Y','Y','Y','','Y','','','','A13','A2','A4','A15','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Teach to students/employees','A5','What nix does with packages was completely unbelievable to me, and NixOS is basically applying the same strategy at building whole-system images/top-level closures. It enables declarative, congruent system administration. I can now test exactly the same system unit configurations as the ones that i deploy on real HW. No more stupid docker compositions.','Y','Y','Y','Y','','Y','','Declarative System Configuration','Mixing in my own modules with nice auto-documentation etc.','Remote-zapping of new configs over old configs without risk','I would love to have my own list of module imports that starts from zero, so i can choose which modules i actually have to deal with. Also, i would like to make all modules files \"side-effect free\" regarding their changes on the system config by just importing - no module should change anything in the system config when you only import it. this could maybe be tested automatically? Only profiles should enable things when importing them.\r\nOn top of that, it should be possible to build strictly smaller systems.','Different distros for different purposes, and hard alcohol to ease the pain.','Y','','','','','','','Y','','','','Nixos-anywhere, nixos-hardware, IOHK\'s haskell.nix, horizon haskell, crane','',''),(832,NULL,NULL,'en','758626772',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(833,'1980-01-01 00:00:00',5,'en','1878298408','A2','A3','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I ran into an old program that needed an old library to build, and it hard in other distro to have multiple versions of the same library ','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A2','A1','A8','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Archlinux with AUR','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A4','A9','','','','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Working with closed source software','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Native support of nix\r\nDeclarative configuration of whole OS','Y','Y','Y','','','','','Declarative configuration of the whole OS ','Reproductible build','The whole configuration is in a file with comments ','','Archlinux with ansible, deploy more with Kubernetes','Y','','','','','','','','','','i3','Home Manager, direnv, rust tooling (Fenix, crane)\r\n\r\nNot regularly, but I really like disko','',''),(834,'1980-01-01 00:00:00',5,'en','645305318','A2','A2','male','','','','','Y','','','','','','','','','','','Y','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I wanted to share my LaTeX notes in a more reproducible way. I also use Nix for a weird JSON config generator; started to just get more comfortable in the language, but loved it, and I find it now much better than YAML or other custom DSLs.','Y','Y','','','','','Y','','','','','Y','','Y','Y','Y','','','Y','','A2','A8','A1','','','','','','','','A12','A2','A6','','','','','','','','','','','','',NULL,'Makefile and defensive testing','A4','','Y','','Y','Y','','','','','','','','','','','','','','','','','','A2','A25','A21','A17','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','N','I\'m open to trying it! Just need to find the time :)\r\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(835,'1980-01-01 00:00:00',5,'en','401148034','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Separate my project workspaces with different environments to easily switch between them without any impact to my system.','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A1','A3','','','','','','','','A8','A9','A2','','','','','','','','','','','','',NULL,'Vagrant','A1','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A13','A2','A1','A19','A11','','','','','','','','','','','','','','','','','A2','A19','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time and take responsibility','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Setup a raspberry pi reproducible','','','Y','','','','','Modules','home-manager','reproducible','','debian','Y','','','','','','','','','','','','nixops',''),(836,'1980-01-01 00:00:00',5,'en','1548798619','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(837,'1980-01-01 00:00:00',5,'en','1019295333','A2','A4','male','','','','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Functional Programming + a lot of DevOps experience','','Y','','Y','','','','Y','','','','','','Y','','Y','Y','','','','A2','A7','','','','','','','','','A6','A10','','','','','','','','','','','','','',NULL,'A whole bunch of shell scripts','A4','','','','Y','','','','','','','','','','','','','','','','','','','A11','A2','','','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A5','','','','Y','','','','','Functional','','','','','Y','','','','','','','','','','','','','1. Nix is the superior answer to containers/K8s for a lot more use cases. We need to increase our marketing and influence in that space.\r\n2. Nix on Cloud '),(838,'1980-01-01 00:00:00',5,'en','1753505992','A5','A2','male','','','','','','','Y','Y','','','Y','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A1','It makes life much easier for getting through reinstalls due to flakes. So copying an entire server over isn’t very hard.','','Y','','Y','','','Y','Y','','','','','','Y','Y','','','Y','','','A2','A3','A6','','','','','','','','A10','A14','A6','','','','','','','','','','','','',NULL,'Likely Debian as it was what I used before.','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A1','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Haven’t had a reason to.','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Because my home server is using nixOS, so running a WSL environment makes it easier to test and deploy flakes.','Y','','Y','','','','','Flakes','Dev environments','Atomic installation.','N/a','Debian','','','','Y','','','','','','','No desktop env or window manager.','','',''),(839,'1980-01-01 00:00:00',5,'en','928481084','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','For home-manager & then NixOS','Y','','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A14','A9','A8','','','','','','','','','','','','',NULL,'brew on macOS with custom dotfiles management','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A17','','','','','','','','','','','','','','','','','','','','A15','A17','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','Reproducibility','Backup & Sync','Code-as-OS','Better documentation & Starter guide. Possibly config generation with support for choosing between X11/Wayland, PulseAudio/Pipewire, etc...','Arch','Y','','','','','','','','','','i3','nix-darwin/home-manager','-',''),(840,'1980-01-01 00:00:00',5,'en','2092137843','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','SecOps','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Reproducible Linux systems','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A8','A9','A14','','','','','','','','','','','','',NULL,'Probably Arch with Pacman and language specific package managers like Cargo.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A13','A2','A3','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Reproducible Linux configurations, specifically user configurations with home-manager','Y','','Y','','','','','Reproducible systems','Simple installation of services in configuration','Rollbacks','A simple method for building the system using optimizations. ','CachyOS','Y','','','','','','','Y','Y','','i3, Hyprland','flake-parts, flake-utils-plus, nil, home-manager, nur','nix-darwin (stopped having to use macos)',''),(841,'1980-01-01 00:00:00',5,'en','1589045681','A2','A5','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','They use it a the computer center I use for my research work. It took me time to get use of it, but I\'m now using it for pretty much all my research projets.','Y','Y','','','','','Y','','Y','Y','','','','Y','Y','','','','','','A2','A1','','','','','','','','','A9','A8','A14','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A3','A25','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'N','Y',NULL,'Too complex.','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Direnv\r\nNUR','',''),(842,'1980-01-01 00:00:00',5,'en','1505215274','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started using Nix and NixOS like 8 years ago after seeing the \"nix\" word in hackage and google it. I ended up reading some posts about NixOS and decided to give a try, and never went back.','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A2','A6','A8','','','','','','','','','','','','',NULL,'Fentanyl is a popular alternative, right? XD\r\n\r\nJokes aside, I don\'t know an alternative to Nix. I would need multiple tools, docker, cabal, npm, apt-get... and that wouldn\'t be the same.','A1','','','','Y','','','','','','','','','','','','','','','Y','Y','','','A13','A1','A25','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I was planning on making a PR for a CLI for hyper.sh (a serverless container platform) when the project was shut down. I\'ll check how I can contribute in the future to nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I discovered Nix and NixOS at the same time, I saw some nix version something in hackage and I google that. That was the start.','Y','','Y','Y','','','','Declarative configuration: having my config in a git repo, comments and so have been a game changer for me.','Reproducible system configurations (being able to run the nixos config in another machine or a VM).','Atomic upgrades and rollbacks','','I guess I would be using Arch Linux.','Y','Y','','','','','','','','','Xmonad','Nixops, flake-utils, nix-filter, comma, microvm.nix....','','Thank you Nix/NixOS developers for such an amazing job.'),(843,NULL,1,'en','2050639353','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(844,NULL,4,'en','1832744316','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL),(845,'1980-01-01 00:00:00',5,'en','448904465','A5','A2','fem','','','','','','','Y','','','','','','Y','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Distro-hopped because tmpfs on root and liked \"nix run\"','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A7','A2','A6','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'Probably docker / absolve','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A15','A9','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Same as prev','Y','','Y','Y','','','','declarative configuration','Tmpfs on root','ZFS support','I would make it possible to view the configration that the system was built from (with intact directory and file structure)','Gentoo Linux','Y','','','','','','','','','','Swaywm','','',''),(846,NULL,1,'en','1739449650','A5','A3','male','','','','','','','Y','','','Y','Y','Y','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(847,'1980-01-01 00:00:00',5,'en','981348319','A2','A3','male','','','Y','','Y','Y','Y','','','Y','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A8','A12','A9','','','','','','','','','','','','',NULL,'Guix','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A1','A2','A3','A4','A5','A6','A9','A15','','','','','','','','','','','','','','A1','A2','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','declarative configuration','amount of packages','configurability','better flatpak support (probably only useful for some of the more cursed software)','arch linux','Y','','','Y','','','','Y','','','hyprland','home-manager','',''),(848,'1980-01-01 00:00:00',5,'en','328773813','A2','A3','fem','','','','','','','Y','Y','','','','','Y','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','installed nixos','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A7','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A6','A15','','','','','','','','','','','','','','','','','','','','A6','A15','','','','','','','','','','','','','','','','','','','','','','','','A1','','No clear explanation on how to package software, from reading nixpkgs it\'s done in all manner of way and nothing seem consistent. I tried to create packages but failed to find what was missing to have the package working, error message were not helpful + documentation and example are too few to really understand correctly how to do it.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','- wanted to switch from manjaro\r\n- wanted to have nixos rollback\r\n- being able to git os configuration','Y','','','','','','','able to git system config','rollback','','i would add nixos own sandbox system something similar to firejail but entirely made in for the nix lang','arch linux','Y','','','','','','','','Y','','','','',''),(849,'1980-01-01 00:00:00',5,'en','251626432','A3','A4','male','','','','','','','','','Y','','','','','','','','','','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I use multiple machines and until Nix I had used scripts to sync all setups; Nix seemed as a step on the right direction.','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','A3','A8','A9','','','','','','','','A8','A13','A12','','','','','','','','','','','','',NULL,'Scripts','A2','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A15','A9','A3','A1','A19','A5','A2','A4','','','','','','','','','','','','','','A1','A9','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','After moving to Nix I moved to NixOS.','Y','','Y','Y','','','','reproducability','convenience','flexibility','Nicer Docker Compose management','Scripts','Y','','','','Y','','','','','','i3','home-manager and disko','\r\naria',''),(850,NULL,1,'en','1173174222','A3','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(851,'1980-01-01 00:00:00',5,'en','1131694387','A1','A5','male','','','','','','Y','Y','','','Y','Y','','Y','Y','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducible, reliable. As a replacement for tools like nvm, rvm, rbenv, asdf, rtx, docker ','Y','Y','','Y','','','Y','','Y','','','','','Y','Y','','','','','','A2','A1','A3','','','','','','','','A8','A13','A14','','','','','','','','','','','','',NULL,'docker, saltstack','A1','','','','Y','','','','','','','','Y','','','','','Y','','Y','','','','A5','A1','A19','A7','A9','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Knowledge and environment','N','N','Easier and lower learning curve',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Hydra','None',''),(852,NULL,NULL,'en','206028508',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(853,'1980-01-01 00:00:00',5,'en','214002073','A2','A3','male','','','','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Heard about it from a friend, and really liked the idea of having a file that describes the packages I have installed. Well, NixOS allows me to describe more than just the packages, and I like it a lot :)','','Y','','','Y','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A9','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Containers, devcontainers, github codespaces, native per-system setups','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A11','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','Declarative configuration','Configuration in git','Configuration shared between machines','Make flake-evaluation, i.e., during `nixos-rebuild *` and `nix develop`, faster :) ','Arch Linux','Y','','','','','','','Y','','','Hyprland','Home-manager','','NixOS is great! :)'),(854,'1980-01-01 00:00:00',5,'en','909940063','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was fascinated by the philosophy behind Nix, namely reproducible package management implemented through a functional language. I decided to give it a try and it stuck (although the learning curve wasn\'t too flat).','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A7','A6','','','','','','','','A4','A6','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','A13','A15','A6','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Time.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was fascinated by the idea of defining the configuration of an OS declaratively in a reproducible manner with atomic upgrades on top. I gave it a go and it stuck.','Y','','Y','','','','','Declarative configuration','Reproducibility','Atomic upgrades (rollbacks)','I\'d add a standard way to install a specific package version without the need to figure out the exact commit of Nixpkgs that provides it.','No idea, probably Debian.','Y','','','','Y','','','','','','XMonad','','I used to use NixOps, unfortunately at some point its maintenance was close to non-existing (which is understandable), and I didn\'t have the time to contribute, so I moved on to colmena.','Nothing but a huge \"thank you\" for the amazing work you\'re doing! Hats off!'),(855,'1980-01-01 00:00:00',5,'en','1926656787','A2','A2','fem','','','Y','','','Y','Y','','','Y','Y','Y','Y','Y','','Y','Y','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Interested at the concept, wanted to give it a try.','','','','','','','Y','Y','','Y','','','','','','','Y','','','nix flakes','A6','A10','A2','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Docker','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A10','A6','A1','A17','A2','','','','','','','','','','','','','','','','','A10','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Lack of knowledge, and learning resources','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','Same as Nix: Curious about the concept, especially reproducibility.','Y','','Y','Y','','','','Fast rebuilds','Rollback abilities (+ built into grub)','','Built-in configuration options list, basically https://search.nixos.org/options but locally','Docker','Y','','','','','','','','Y','','','','','Thanks for the amazing job <3'),(856,'1980-01-01 00:00:00',5,'en','1157471603','A2','A3','male','','','','','','Y','','','','','Y','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','Y','','','','','Y','Y','','','Y','Y','','','','Y','Y','','','','A2','A10','A7','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','Y','','','Rollout','Configurable os','','Documentation without flake version','','Y','','','','','','','Y','','','','','',''),(857,'1980-01-01 00:00:00',5,'en','633837586','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Having one configuration file to find all my configuration in.','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A1','A10','A6','','','','','','','','A8','A6','A10','','','','','','','','','','','','',NULL,'Arch Linux with AUR.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Having one configuration file to find all my configuration in.','Y','','','','','','','One configuration file for all configs','Easily being deployed on a new machine','Rollback to previous version','Better KDE configuration in configuration.nix','Arch Linux','Y','','','','','','','','Y','','','nixos-hardware','',''),(858,NULL,2,'en','1242027041','A5','A3','male','','','','','','','','','','','','','','','','','','Y','Y','','','Y','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Heard the Linux Unplugged podcast talk about it a lot, and at the same time I was learning how to use ansible. I tried it out on a laptop, and never looked back. Now every machine I run from desktop, laptop, to server, runs nix.','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A10','A7','A2','','','','','','','','A6','A14','A4','','','','','','','','','','','','',NULL,'Probably arch or ubuntu with an ansible configuration controlling everything.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','At the moment I just write packages and import the nix file into my configuration.nix','A2','','I\'m honestly really shy and afraid of submitting bad code on top of that. I have packaged a few applications myself but have not shared them to the repo.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(859,NULL,1,'en','1011468075','A5','A6','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(860,'1980-01-01 00:00:00',5,'en','912629675','A2','A6','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Once you use kubernetes for a while and its declarative nature you want that everywhere. And having used and ./configure\'d endless packages (installed into /usr/local/bin) over the years I get fed up with doing the same thing time and time again. I looked at Ansible and that wasn\'t for me. And then I discovered Nix. And now I find it a drug. Some days I bash my head against the wall (hello infinite recursion) and the days where I spin up a VM and have my complete development environment available is magic! It would be great if macOS could get some additional love. Thanks to all the Nix developers - the whole shebang! make me very happy.','Y','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A2','A1','A4','','','','','','','','A6','A9','A5','','','','','','','','','','','','',NULL,'./configure; make; make install\r\nThen shake my fist! And curse. ','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A3','A9','A15','','','','','','','','','','','','','','','','','','','A8','A15','A22','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time and experience. Mostly the latter. Though the former is always in a problem. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Once I had played around with home-manager on top of $DISTRO I began to see the light. I wanted more. And if more meant completely declarative system then there was no going back from that.','Y','','Y','','','','','Complete system definition.','Modern kernel','Rollbacks','systemd-networkd. \r\ndocumentation\r\nexamples\r\n','Fedora Silverblue.','Y','','','','Y','','','Y','','','','emacs-overlay\r\nhome-manager','nix-sops','Nix/NixOS really changed the way I think about building systems. I\'d also encourage the community to decide whether flakes are go or no-go. I\'ve poured a tonne of effort into understanding flakes and it would be nice to know whether they will be adopted formerly. Thank you to all the people and volunteers that make Nix feasible.'),(861,'1980-01-01 00:00:00',5,'en','1873569878','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','To use reflex-platform project for frontend haskell development','','Y','','Y','','','Y','','Y','Y','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A4','A2','','','','','','','','','','','','','',NULL,'Docker','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time availability','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Seemed like the logical next step on nix path, also helped with distro hopping','Y','Y','','Y','','','','Declarativity','Rollbacks','Ease of deployment','','Wsl with home manager','Y','','Y','Y','','','','Y','','','','home-manager, deploy-rs','Nixops, morph',''),(862,'1980-01-01 00:00:00',5,'en','223496875','A2','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','Y','','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','','','','','','','','','','A14','A6','A5','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','No good documentation or learning resources on how to contribute to Nixpkgs','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Home-manager','Flox',''),(863,NULL,NULL,'en','820002795',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(864,'1980-01-01 00:00:00',5,'en','1394129594','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A5','A8','A13','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A11','','','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Mostly everything was already there','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was switching distros from time to time looking for something that would work for me, being a functional programming enthusiast I finally tried NixOS and never looked back','Y','','','','','','','Declarative configuration','Atomic upgrades + rollbacks','Reproducability','Add a static type system to Nix (boring answer, I know)','I honestly don\'t know, nothing comes close','Y','','','','','','','','','','i3','home-manager, cachix','','Thank you'),(865,'1980-01-01 00:00:00',5,'en','378899899','A5','A4','male','','','','','','','','','','Y','Y','','','','','','','Y','','Y','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Got tired of dependency hell on other distros','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A11','','','','','','','','A14','A8','A3','','','','','','','','','','','','',NULL,'Guix? docker containers? Not sure','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Learning curve, difficulty of getting help','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','','','','','','Declarative, reproducible system configuration','Package availiability','','- Better tutorials\r\n- Less dogmatism in programming language build chain (i.e. figure out an official path to bootstrap, e.g., a non-reproducible Python environment with Nix and work inside of that)','Ubuntu with docker containers? Guix? Not sure','Y','','','','','','','','','','xmonad','','niv',''),(866,'1980-01-01 00:00:00',5,'en','369154340','A2','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Was curious and Debian was always stale','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A9','','','','','','','','','','','','','','',NULL,'Debian, Arch, Void, Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A18','','','','','','','','','','','','','','','','','','','','A13','A18','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','','','','declarative, replay-able software and configuration','','','add i386 and other platforms\r\noptionally make a tiny installation (without dbus, without systemd)','','Y','','','','','Y','','','','Y','xmonad','','home-manager',''),(867,'1980-01-01 00:00:00',5,'en','1111825921','A5','A5','male','','','Y','','','Y','Y','','','','','','','','','','Y','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using Nix by running NixOS.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'Some combination of apk (Alpine builds), docker-compose, Ansible, and chezmoi.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','- Time coupled with learning curve.\r\n- Something that sufficiently bothers me that I feel compelled to fix it.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Hardware support -- I was an Arch Linux user, but had an old Mac laptop I needed to get working, including its proprietary webcam. The instructions for getting the camera it to work on NixOS were trivial so I figured I\'d give it a try and haven\'t left.','Y','','Y','','','','','Things work. Figuring out the right options or translating over from other systems can sometimes be confusing, but once configured (which is usually simple) everything I\'ve tried just works, both at the module and package level.','Consistent deployment across multiple boxes (both workstations and servers).','Much simpler to maintain configuration across package and system upgrades. (No more constant merging of changed configuration files in /etc.)','','Alpine Linux (or maybe fall back to Arch)','Y','','','','Y','','','Y','','','Sway, Hyprland, River','I read Discourse frequently and use search.nixos.org all the time.','','I have been very impressed with Nix, NixOS, and the community around it.\r\n\r\nThanks for putting the survey together and all the effort it is going to take to sort through all the replies.'),(868,'1980-01-01 00:00:00',5,'en','446323686','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I found the immutability and reproducibility parts very attractive. Before switching to NixOS I had been using Debian for more than 10 years but found found myself often limited by the package manager (eg. not being able to have multiple versions of the same package, not being able to roll back easily, not being able to easily test a package without installing it system wide, and not having a way to back up my configuration).','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A3','A4','A14','','','','','','','','','','','','',NULL,'Now that I’ve used Nix it would be really hard to go back to something else. I guess I’d try Guix or another distribution that allows declarative configuration.','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as the Nix question.','Y','Y','','Y','','','','Declarativeness','Reproducibility','Number of packages available','I would make it possible to run NixOS on a CI (allowing me to create the test/build environment declaratively). i would also add a built-in way to manage multiple servers with NixOS (instead of scripting my `nixos-rebuild` invocations).','See the Nix answer.','Y','','','','','','','','','','qtile','','','Thank you!\r\n\r\nAbout the questionnaire, I think it would be nice to not be asked the same questions for Nix and NixOS.'),(869,NULL,NULL,'en','96869202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(870,'1980-01-01 00:00:00',5,'en','1963523979','A4','A3','-oth-','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','Y','','Y','','','','','Y','','Y','','','','A1','A2','A3','','','','','','','','A5','A6','A2','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','Y','','','','','','','','','','','Y','','','','','','','','sway','nix-direnv','',''),(871,'1980-01-01 00:00:00',5,'en','1193154835','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','RPA developer','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','For a long time, I was annoyed by how difficult it can be to reproduce your Linux installs and how much stuff can accumulate on your system after a while. I was introduced to Nix by Burke Libbey\'s introductory videos on YouTube 2 years ago, and have been slowly interating my NixOS config ever since.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A7','A10','A2','','','','','','','','A8','A2','A4','','','','','','','','','','','','',NULL,'Probably Fedora Silverblue / Flatpaks','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A5','A2','A3','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','See the same question about Nix','Y','','','','','','','Version controlled system state','Rollbacks','Package configurability','Flatpak-like sandbox permissions for packages','Probably Fedora Silverblue','Y','','','','','','','','','','i3wm','home-manager, impermanence, cachix','nixos-rebuild build-vm (my config doesn\'t really work with it anymore)',''),(872,NULL,NULL,'en','751643249',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(873,'1980-01-01 00:00:00',5,'en','1222689024','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A2','A1','A7','','','','','','','','A8','A2','A4','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A3','A4','A13','A22','','','','','','','','','','','','','','','','','','A2','A9','A22','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','Y','','','','','','','','','','','','','','Y','','','Y','','','','','',''),(874,NULL,3,'en','996447647','A5','A2','male','','','','','','','Y','Y','','Y','Y','','Y','','','','','Y','','','','','Y','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I liked the idea of reproducibility.','Y','Y','','Y','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A7','A3','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Something like Silverblue','A2','Y','Y','','Y','Y','Y','','','','','','','','','','','','','Y','','','','A4','A3','A17','A2','A9','A15','A13','A22','A24','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I overwrote my Void Linux partition on accident while distro hopping and just liked the idea of reproducibility so much I kept using it','Y','','Y','','','','','Reproducibility','Rollbacks','Ad-hoc environments','The legacy commands','Silverblue','Y','','','','','','','','','','LeftWM, River',NULL,NULL,NULL),(875,'1980-01-01 00:00:00',5,'en','1415336146','A2','A4','male','','','','','Y','Y','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because I wanted to manage my systems declaratively.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A3','A2','','','','','','','','A8','A9','','','','','','','','','','','','','',NULL,'No idea. I guess the Guix package manager? I do not think there is a good alternative.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A1','A15','A2','A4','','','','','','','','','','','','','','','','','A1','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Again, I wanted to manage my systems declaratively. I started using Nix and NixOS simultaneoulsy.','Y','','Y','','','','','Declarative system management.','Smooth updates; when I have a problem, others usually have the exact same problem, and together it is easy to solve.','','- Have a stable rolling release channel which requires less manual intervention.','Again, I think I would try Guix OS; but maybe I would end up going back to Arch Linux again.','Y','','','Y','','','','','','','Custom setup with XMonad','Flakes, flakes, flakes. (You asked about them, but well, I use Flakes for all of my projects including the system configurations).','Many XXX2Nix tools.\r\nNixOps.\r\nColmena.','Thanks a lot for your work!'),(876,'1980-01-01 00:00:00',5,'en','1058512298','A2','A2','fem','','Y','','','','','','Y','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Demo of nix-shell -p','','Y','Y','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A10','A5','A6','','','','','','','','A2','A3','A1','','','','','','','','','','','','',NULL,'Meson, Guix','A2','','','','','Y','','','','','','','','','','','','','','','','','https://spectrum-os.org/git/infra/about/','A15','A3','A7','A14','A18','','','','','','','','','','','','','','','','','A15','A7','','','','','','','','','','','','','','','','','','','','Y','','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','nix-darwin was frustratingly impure.','Y','Y','Y','Y','','','','Declarative configuration','Rollbacks','Up to date packages','Add a migration framework for module state.','FreeBSD or Guix','Y','','','','','Y','','','','','sway, weston','nixos-hardware, nix-output-monitor','lorri',''),(877,'1980-01-01 00:00:00',5,'en','1015745095','A2','A3','-oth-','Chaos','Y','','','','','Y','','Y','','','Y','','','Y','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted to impress a girl','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','Y','','A2','A1','A10','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'I would use a \"normal\" Linux distribution, whatever package manager comes with the programming environment I\'m using, and I\'d maybe use ansible for deploying and managing server state','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A24','A5','A17','A18','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A2','','I do sometimes contribute things to nixpkgs but having a PR open for weeks and not really getting any useful feedback is frustrating. I understand why it happens but eh. I\'m also not so much the kind of person who wants to maintain a Linux distribution. I used to do it a lot more, but as my time and energy is limited, I tend to focus on trying to fix problems in my own projects, before taking on tasks in nixpkgs.\r\n\r\nGenerally a lot of things in nixpkgs are _fundamentally_ broken (and flakes don\'t really automatically make them better) and so, \"better things are possible\", but they require an intense amount of work and I\'m not capable of providing it, so I just don\'t do anything.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I got sick of my Ubuntu/Fedora/Arch Linux server breaking and NixOS seemed like the perfect choice for it.\r\nAt some point I thought doing NixOS on my development machine was a good idea but after about 3 years of suffering I went back to Arch Linux','Y','','Y','Y','','','','Atomic Rollbacks','Being able to test a configuration in a VM before applying it','Configuration stability','I would separate a lot of the internals of modules and the public API and make it easier for breaking changes to be warnings before they turn into errors, then I would increase the stability guarantee for configuration to maybe 2 years, while also backporting security updates and the likes for that long for a stable release.','Arch Linux server with LXC/ docker containers probably. Maybe ansible for managing deployments','Y','','','','','Y','','','','','','home-manager and niv. I really love niv. It\'s kinda straight to the point, exactly what I want and none of the fluff of flakes','I started using flakes for everything and then peddled back and am now only using them for some things. They feel overblown and weird','Boop'),(878,'1980-01-01 00:00:00',5,'en','600575967','A2','A5','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A6','A1','','','','','','','','A4','A9','A14','','','','','','','','','','','','',NULL,'','A5','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','Declarative config all the way','Best practice for services, etc','Safe upgrades','Better language, faster compilation, nicer less elitist UX','Arch','','','','','','','','','','','Bspwm ','','',''),(879,'1980-01-01 00:00:00',5,'en','203973724','A2','A3','male','','','','','','Y','Y','','Y','','Y','Y','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I encountered NixOS on hackernews while writing my thesis in 2015. I was immediately taken in by the promise of managing dotfiles and declarative configuration and I tried using it as a daily driver. Unfortunately the learning curve was too high so I had to uninstall again in order to finish my thesis on time. The next couple of years I tried a couple of times more until it stuck. Now I use NixOS for all my machines and Nix for almost all development environments.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A8','A9','A14','','','','','','','','','','','','',NULL,'docker, terraform, virtualenv, maybe other stuff idk','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A24','A1','A13','A3','A5','','','','','','','','','','','','','','','A15','A24','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I have contributed a few times, and every time my changes sat for a long time unmerged, were nitpicked to death, and I was asked to change stuff unrelated to what I wanted to contribute. Meanwhile I see lots of people with merge rights just merge their stuff instantly without review. For these reasons I usually keep the stuff I would have considered contributing in my local flake instead.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','','','Declarative configuration','NixOS modules for services','Atomic upgrades and rollback','Stabilize flakes, ','','Y','','','Y','','','','','','','XMonad','oxalica Rust overlay\r\nnil (nix language server)\r\n','NixOps (because it was killed during the rewrite, it seems so stupid to me to deprecate the old version, spend all that effort on the second version and then not releasing anything. I think the best course of action is to declare it unmaintained so it doesn\'t draw attention away from other similar projects.)\r\nNiv (obsoleted by flakes)\r\n',''),(880,'1980-01-01 00:00:00',5,'en','1015993466','A2','A3','male','','','','','','','Y','Y','','','Y','','','Y','','','','Y','','Y','','','','','','','','Y','','Y','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','failed to install it and getting my server to run','','','','','','','','','','','Y','documentation is sometimes a bit weird and not to the point','','','','','','','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','mic92 & makefu','','','Y','','','','','config in one place','easy','ZFS','better docs','FreeBSD','Y','','','','','','','','','','no gui','n/a','n/a','nope'),(881,'1980-01-01 00:00:00',5,'en','1715488821','A5','A3','fem','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','Declarative stuff is interesting.','','Y','','Y','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','','A2','A10','A1','','','','','','','','A8','A5','A10','','','','','','','','','','','','',NULL,'PKGBUILDs and bash','A2','','','','Y','Y','Y','','','','','','','Y','','','','','','Y','','Y','','A15','A13','A25','','','','','','','','','','','','','','','','','','','A15','A1','A13','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','It\'s declarative!','Y','Y','Y','Y','','','','Declarative ','Reproducibility ','Sharability','First class source-level generatable documentation ala `cargo doc`','Make my own os','Y','','','','','','','','Y','','','','Most of them, but documentation is always miserable.','Please stabilize flakes and improve documentation!'),(882,'1980-01-01 00:00:00',5,'en','230575332','A2','A3','-oth-','Non-binary','','','','','','Y','','','Y','Y','Y','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The typical story: A friend \"coerced\" me. ;)','','','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'Debian probably. Maybe devuan.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A1','A13','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A2','','The review process is horrible. My usual experience goes something like this:\r\n\r\n* First your PR gets ignored for extremely long time.\r\n* Then someone reviews it who does not have merge rights.\r\n* Then someone with merge rights come and nit-pick something small and mostly unrelated.\r\n* You answer immediately and fix pretty quickly.\r\n* It gets ignored for another few days\r\n* Then it gets merged, unless someone else with merge rights comes and asks for another unrelated nit-pick.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same answer as for nixpkgs, as I started using both at pretty much the same time:\r\n\r\nThe usual story: A friend \"coerced\" me ;)','Y','Y','Y','Y','','','','','','','','Probably debian. Maybe devuan.','Y','','','Y','','Y','','','','','xmonad','','',''),(883,NULL,4,'en','2135357755','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','N','Y','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(884,NULL,NULL,'en','255556285',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(885,'1980-01-01 00:00:00',5,'en','1873754689','A5','A4','male','','Y','','','Y','','Y','Y','Y','Y','Y','','','','','Y','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Installed nixos','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A7','A3','A2','','','','','','','','A8','A3','A6','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A13','A3','A4','A9','A2','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Installed it','Y','','','','','','','Declarative package management','Deterministic environment','','','','','','','','','','','Y','','','','','',''),(886,NULL,1,'en','501441241','A5','A3','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(887,'1980-01-01 00:00:00',5,'en','1483176999','A2','A4','male','','','','','','','','','Y','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A5','A3','A4','','','','','','','','','','','','',NULL,'pacman, OCI containers, apt','A7','','','','Y','','','','','','','','','','','','','','','','','','','A15','A2','A24','A23','A9','A3','A4','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Nothing! I\'m just in the learning period and didn\'t need anything that wasn\'t already packaged yet.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','After more than 10 years on arch, I was tired of not knowing/remembering how/why things were installed on my laptop, plus wanted to see how well it fits to package software. ','Y','','','','','','','Source of truth of installation/configuration in a declarative config file','Rollbacks/reconfiguration','Nixpkgs/Community packages','Better docs','Arch','Y','','','','','','','','Y','','sway','crane for rust packages','','<3'),(888,'1980-01-01 00:00:00',5,'en','741858753','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A3','I started to use Nix at university because my master\'s thesis was about usage of Nix for CI/CD.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A3','A6','A4','','','','','','','','','','','','',NULL,'Docker','A4','','','','','','','','','','','','','','','','','','','Y','','','','A2','A1','A5','','','','','','','','','','','','','','','','','','','A2','A1','A5','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I do not have enough free time.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to have option to replicate my OS setup easily, eg. when I buy a new laptop.','Y','','Y','','','','','OS description in one file','Option to generate virtual machine, ISO file, container and so on from one configuration.nix','Option to do simple rollback','I would add NixOS options whisperer into my text editor.\r\n\r\nI would also add some GUI app for managing NixOS generations. I think that it would be helpful to see the difference between generations and to have option to mark some generations as non-deletable when garbage collector is executed.','Ubuntu','','Y','','','','','','Y','','','','nixos-generators','Flakes',''),(890,NULL,2,'en','2105573850','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A2','A1','A7','','','','','','','','A14','A4','A8','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','Y','','','','A2','A15','A17','','','','','','','','','','','','','','','','','','','A17','A15','A2','','','','','','','','','','','','','','','','','','','Y','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(889,NULL,1,'en','850085592','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(891,NULL,NULL,'en','896759099',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(892,'1980-01-01 00:00:00',5,'en','16878614','A5','A3','male','','','','','','','Y','Y','Y','Y','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','When I started to watch the Haskell community it kept coming up, and at the time I happened to want to switch off of my current distro (not sure what I was on), I used arch for a while and the lack of stability was an issue for me, and I used Ubuntu and something lead to me having to reinstall, I hate that, so I was between Fedora and NixOS, and I chose NixOS because I felt it was interested and aligned with principles from the Haskell echo systems that I came to value. From there I started to used nix more on its own.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A11','A3','A12','','','','','','','','','','','','',NULL,'Package native systems','A1','','','','','','','','','','','','','','','','','','','Y','','','','A13','A15','A25','','','','','','','','','','','','','','','','','','','A13','A15','A6','','','','','','','','','','','','','','','','','','','','','','','A1','','Did not need too yet','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Like I said for nix. Got word about nix/NixOS from the Haskell community, was switching distros at the time. I liked that arch was rolling and did not I never had to reinstall, but it would break for me. I liked that Ubuntu was stable and polished, but hated upgrades. I was looking at Fedora and NixOS, and NixOS seemed more interesting, and shared some principles I valued. It felt like arch but configuration was something that the community could maintain, not me. So it could have the polish of Ubuntu.','Y','Y','','Y','','','','Decorative configuration','Congruent configuration','Immutability','Some kind of across the board hook for all login managers to launch a completely user configurable desktop environment with a fallback to a system configurabile desktop environment. \r\n\r\nSo I have use NixOS of configure systems and provision users with a default desktop environment, but then allow themselves to configure there user environment completely using home-manager or whatever they like.\r\n\r\nIt\'s as if the os if the BIOS and the user shell/environment is the os.','I guess I would try Fedora next, does not sound like that would have solved my problem.','Y','','','','','','I have a shell.nix file next to my system configuration that wraps nixos-rebuild to use the config file in the repo.','','','','Sway','niv\r\nnix-thunk\r\nHome-manager\r\nnixos-hardware\r\ngenerate-firefox-addons\r\n','','nix on windows and nix as a build system (like basil) are the most important for adoption.'),(893,'1980-01-01 00:00:00',5,'en','1267294413','A2','A4','male','','','','','','Y','Y','Y','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Nix challenge on the linux unplugged podcast.','','Y','','Y','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A2','A8','A7','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','A4','A15','A9','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','Rollback','Immutable OS','Declarative config','Would make it easier to look up why dependency X is included in the build.','','Y','','','Y','','','','','Y','','Sway','','',''),(894,'1980-01-01 00:00:00',5,'en','1660424305','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A8','A4','A5','','','','','','','','','','','','',NULL,'Arch','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A25','A2','A15','','','','','','','','','','','','','','','','','','','A2','A25','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','Y','','','','','Declarative system management','Reproducibility of builds','','Simple packaging','Arch','Y','','','','','','','','','','Hyprland','','',''),(895,'1980-01-01 00:00:00',5,'en','1464656168','A7','A4','male','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Environnment reproduction','','Y','','','','','Y','','Y','Y','','','','','Y','','','','','','A1','A2','A3','','','','','','','','A5','A4','A7','','','','','','','','','','','','',NULL,'Docker','A7','','','','','','','','','','','','','','','','','Y','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A2','','','N','Y',NULL,'Missing latest KDE packages','Having a kind of rolling release with latest KDE packages ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-she','N/A','Good job guys ☺️'),(896,'1980-01-01 00:00:00',5,'en','1969648916','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I originally came for declarative package management. I later discovered how nice dev shell + direnv can be working on different machines. That was the main reason I stuck with nix. ','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A4','A3','','','','','','','','','','','','',NULL,'pacmanfile( a declarative wrapper if pacman) for package management, containers for development env. \r\n','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I\'m not very knowledgeable, and don\'t really have a specific issue I know I can solve','N','Y',NULL,'Had to compile the kernel for my hardware','When I get a \"normal\" hardware that wouldn\'t need a custom kernel',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(897,'1980-01-01 00:00:00',5,'en','1817847494','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I got tired of having to babysit config files and redoing things if I ever had to reinstall my OS. Having a reproducible configuration makes using the computer much easier and more satisfying.','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A2','A1','A10','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'Ansible','A2','','Y','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Horrible documentation for beginners. Becoming \'responsible\' for new packages.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted a versatile OS that is simultaneously up-to-date with sane defaults for configurations and does not regularly break like other rolling release distributions of Linux.','Y','','Y','','','','','Reproducible configuration','Atomic rollbacks','Package sandboxing','Add a GUI for controlling everything in configuring NixOS.\r\n\r\nChange package creation & approval times in nixos-unstable. Currently it can take days or weeks to be approved and available.\r\n\r\nRemove all legacy documentation online and start from the ground up.','Arch Linux','Y','','','','','','','','Y','','','','',''),(898,'1980-01-01 00:00:00',5,'en','1648961110','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I greatly prefer using gui software for as much as possible. Nix does not have a great gui tool for installing packages, so I decided to use something else.','If one of the gui focused projects like SnowflakeOS reached a stable release.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(899,'1980-01-01 00:00:00',5,'en','376396939','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Comes with NixOS','','Y','','','','','Y','Y','','Y','Y','','','Y','Y','','Y','','','','A2','A1','A8','','','','','','','','A14','A6','A1','','','','','','','','','','','','',NULL,'Very scripted Arch','A3','','','','','Y','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','badly','A1','','Nix is arcane magic','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I set aside a weekend to switch my server from arch to Nixos, as I wanted a minimal base to run containers that I could reliably auto upgrade and redeploy. It took me 3hrs. ','Y','','Y','Y','','','','Single file Configuration.nix ','Tons of modules to configure software in the same language','Rollbacks','First class support for Dhall or even yaml, as Nix is unnecessary complex for the act of declaring a system configuration (hardly use any of its language features, I just enable modules or declare configs)\r\n\r\nRebuilds without internet access or correct time are nigh impossible too','Arch with lots of scripts','Y','','','','','','','','','','sway','','Nixops. It\'s near abandoned, other deploy tools are incredibly obtuse and have no documentation or examples','Thanks a lot for NixOS!'),(900,'1980-01-01 00:00:00',5,'en','2108597865','A5','A3','-oth-','🤷','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','To use NixOS','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A7','A1','','','','','','','','A6','A5','A4','','','','','','','','','','','','',NULL,'pikaur or paru','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A10','A4','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','not knowing NEL or nix packaging well enough','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I had been trying to set up everything I used in Ansible, which was not really ideal. NixOS\' declarative config, especially in combination with impermanence, appealed to me for cruft prevention and portability. Copied a friend\'s flake and rebuilt it to suit me.','Y','','Y','','','','','declarative system config','package availability to rival AUR','','Add secure boot support, better documentation for NEL','Arch or an Arch derivative, and Ansible','Y','','','','','','','','Y','','awm','impermanence','',''),(901,NULL,NULL,'en','1477470996',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(902,'1980-01-01 00:00:00',5,'en','1168565474','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','Just as a ','A2','same as how I discovered NixOS','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A7','A2','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'I\'d likely still be using arch and its derivatives','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A6','A15','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','home usage (gaming etc.)','A2','I found out about it, I think via a DistroTube video, and decided to try it on my machine. i found it rather complicated, so I switched back to using arch.\r\nSeptember last year, I discovered SnowflakeOS, and I have been using that install ever since.','Y','','','','','','','Stability without compromises','freshest package repo on repology','declarative','I would integrate external projects (i.e. home-manager or snowfall lib)','Arch and its derivatives','Y','','','','','','a wrapper called snow made by VlinkZ','Y','','','sway','','',''),(903,'1980-01-01 00:00:00',5,'en','971876423','A2','A2','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I moved my Raspberry Pi to NixOS to try it out. From there it quickly \"infected\" my other headless machines until I finally installed it on my desktops as well.','Y','Y','','','','','Y','Y','','Y','','Y','','Y','Y','Y','Y','Y','Y','','A1','A2','A10','','','','','','','','A2','A4','A12','','','','','','','','','','','','',NULL,'Ansible/Terraform','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','Y','','','','Declarative and reproducible system configuration.','Remote deployment tools (Colmena/deploy-rs)','Nixpkgs','','Arch Linux','Y','','','Y','Y','','','','','','Sway','Home-Manager','NixOps, as I wanted a stateless solution',''),(904,'1980-01-01 00:00:00',5,'en','1739433467','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Job required using an older version of a package provided by Arch repositories. So, I packaged it with Nix.','','','','','','','Y','Y','Y','','','','','','Y','Y','Y','','Y','','A1','A9','A3','','','','','','','','A12','A2','A6','','','','','','','','','','','','',NULL,'pack','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A5','A13','A1','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','home-manager was a \"gateway drug\" for configuring system using nix and also Arch become too boring to use.','Y','','Y','','','','','Declarative environments.','Ease of configuring.','Fresh software.','','Arch','Y','','','','','','','','Y','','','','',''),(905,'1980-01-01 00:00:00',5,'en','135612381','A2','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A2','A9','','','','','','','','A8','A4','A5','','','','','','','','','','','','',NULL,'Guix','A1','','','','Y','','','','','','','','','','','','','','','','','','','A3','','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','','','','','My tears to cry','Y','','','Y','','','','','','','i3','','',''),(906,NULL,1,'en','1445064371','A2','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(907,NULL,2,'en','1640509291','A8','A2','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Became interested in Nix from hearing about declarative package/system management, and gradually learnt more from there.','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A2','A6','A1','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(908,'1980-01-01 00:00:00',5,'en','941686465','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I’ve started using nix as my daily driver at work in order to have a fully reproducible setup, then I used it to generate k8s resource definitions for one of our applications. Nowadays I use it on my personal computer, mistype with sevens and got managing a server I use to host a few small things. $day job does not allow use of nix but I would other wise use it there if possible','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A6','A2','A7','','','','','','','','A8','A4','','','','','','','','','','','','','',NULL,'Guix? ','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A2','A7','','','','','','','','','','','','','','','','','','','A7','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','Y',NULL,'Switched to macos','Migrating my desktop computer, but I’ve got no time for that atm',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Devenv, nixbuild , home manager, colmena','',''),(909,'1980-01-01 00:00:00',5,'en','367111955','A5','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','NixOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I liked the declarative config and seems harder to break than Arch Linux. Home manager and a single config for my Mac and Linux machines sealed the deal.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A6','A7','','','','','','','','A8','A4','A6','','','','','','','','','','','','',NULL,'She’ll scripts with softlinking I used the last 10 years before discovering nix.','A7','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A1','A17','A15','A4','A9','','','','','','','','','','','','','','','','','A15','A17','A2','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Wanted something more stable than Arch Linux that was easy to rollback and with declarative config','Y','','Y','','','','','Atomic changes with flakes ','Reproductive builds ','Declarative config','Replace the language with something better. The existing one is really hard to learn and not intuitive. The error messages are also horrible.','Arch Linux','Y','','Y','','','','','Y','Y','','Hyprland','','','Love nix. Improve the docs stabilize flakes and improve debugging messages so more can adopt it.'),(910,'1980-01-01 00:00:00',5,'en','911135166','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Everything is broken. Nix brings a bit of sanity into this world.\r\n\r\nI can fix problems myself (think: overlays), without having to rebuild / re-package dependent libraries / packages manually.\r\n\r\nI have a consistent dev env for my projects, not risk project does not build anymore if I get back to it after three weeks. Also, builds locally, builds on CI.','Y','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A1','A2','A7','','','','','','','','A6','A8','A2','','','','','','','','','','','','',NULL,'Maybe guix.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','Y','','','A11','A13','A2','A1','A4','A3','A5','','','','','','','','','','','','','','','A11','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I want to have up-to-date packages, and also want to be able to put control my system configuration declaratively.','Y','','','','','','','declarative system configuration','rollback','','','Some other immutable linux distribution perhaps.','Y','','','','','','','Y','','','sway, xmonad','cachix, nil','',''),(911,NULL,2,'en','1542604153','A2','A5','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A7','A1','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'Debian based','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(912,'1980-01-01 00:00:00',5,'en','2038138413','A2','A2','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','My colleagues were using it.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'Docker (Deployment / development environments)\r\nGentoo (Operating System)','A7','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A2','A3','A1','A5','A9','A15','A19','A14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Never found something that needed a PR.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Same as Nix.','Y','','Y','','','','','Declarative','Atomic','','More documentation.','Gentoo','Y','','','','','','','Y','','','Sway','','',''),(913,'1980-01-01 00:00:00',5,'en','336237626','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was shown and told about NixOS and how easy it was to set up a new computer if you lost your old from just the configuration files, then I wanted to try it for myself and have found it to be a really smart way to set up a computer and install new software.\r\n\r\nI haven\'t gotten around to using nix the package manager directly in projects. But that is my next step.','','','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A10','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A25','A20','A13','A24','A22','','','','','','','','','','','','','','','','A1','A25','A20','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I feel like I am not good enough to do it as of yet. Maybe a beginner\'s guide or someone being available to teach how to do it would help me get started.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Because my friend showed me how cool it was to share a config file between multiple computers and if you lose your laptop it is really easy to get back up and running.','Y','','','','','','','Reproducible OS, so I can always get a new computer up to speed really fast.','Declarative config. Being able to specify how I want the computer to be set up.','Easy installation and configuration of a plethora of packages','Better secrets handling, so I can safely specify variables that are unreadable without a password or some other secret.','Guix','Y','','','','','','','','','','Hyprland','','',''),(914,NULL,1,'en','1837946278','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(915,'1980-01-01 00:00:00',5,'en','926062686','A8','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Electrical Engineer','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','Y','','','Y','','Y','','','','','','','Y','','','','','','','A1','A6','','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I\'m still learning the nix Eco-system, i feel i need to understand it better before i can contribute in a meaningful way.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','As a linux user that takes the time to get my main home system \"just right\". I\'m usually reluctant to rebuild my main personal machine, even though i tend to hack and slash my way through my machine with different development tools. In time I\'ll have different versions of tools installed. some cleanly installed/uninstalled, others not... :-) I should do a better job of tracking things, but in the end I\'m usually interested in getting a task done. So my main machine often suffers from my multiple project methods.\r\n\r\nNix seems to give me the power to return my machine back to \"just right\", without spending a ton of time . I can modify a toolset do my work and not be afraid since i can roll back. I\'m only at the beginning of my journey but I\'m excited to see what i can do with this.','Y','','','','','','','configuration.nix','rollbacks','nix','I know nix is aimed at developers but i would like to see some more user friendly method for non-programmers to configure the configuration.nix (and similar files). not everyone knows that a missing bracket can break everything','Arch, Fedora, possibly Void','Y','','','','','','','','Y','','','','flakes, i found them confusing to start out with decided to go back to basics and try flakes later.','Thanks for the hard work!'),(916,'1980-01-01 00:00:00',5,'en','1349930667','A1','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A10','A1','','','','','','','','A8','A9','','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','','Sway','','',''),(917,'1980-01-01 00:00:00',5,'en','334664172','A2','A2','male','','Y','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','','','Y','','','','Y','Y','Y','','Y','','A1','A9','A6','','','','','','','','A10','A1','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A14','A15','A4','A3','A2','','','','','','','','','','','','','','','','','A8','A12','A22','','','','','','','','','','','','','','','','','','','','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','','Y','','','','','','','','Y','','','','','','','Y','','','','','',''),(918,'1980-01-01 00:00:00',5,'en','1340222404','A2','A3','male','','','','','','','Y','','','','','','Y','','','Y','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','A friend told me about it. I enjoy having a single text configuration for all of my machines.','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A6','A1','A2','','','','','','','','A4','A8','A9','','','','','','','','','','','','',NULL,'git + dotfiles, maybe GNU Stow; I might try out guix but lack of non-free software make it too much of a hassle','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A2','','','','','','','','','','','','','','','','','','','','A25','A5','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Same as nix','Y','','Y','','','','','Declarative, modular configuration','','','Maybe try to make nixos-rebuild a bit faster. Some kind of nix LSP could be also useful (show hints from schema of nixos config values). Make flakes stable.','Arch','Y','','','','','','','Y','','','','home-manager\r\ndevenv.sh\r\nnix-darwin\r\noxalica/nil','tadfisher/android-nixpkgs\r\nnix-community/nixpkgs-wayland',''),(919,'1980-01-01 00:00:00',5,'en','1017237124','A2','A3','-oth-','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','','Y','','A7','A1','A9','','','','','','','','A12','A9','A11','','','','','','','','','','','','',NULL,'','A5','Y','','','','Y','','','','','','','','','','Y','','Y','','','','','','A15','A9','A3','A4','A2','A1','A10','A5','A18','A7','A23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','Y','','','','','','','','','','','','Y','','','Y','','','','flakes\r\nnixops',''),(920,'1980-01-01 00:00:00',5,'en','1617947068','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A post in r/unixporn of someone using NixOS','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A8','A6','A14','','','','','','','','','','','','',NULL,'Arch and Ansible','A1','Y','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Post on r/unixporn','Y','','Y','','','','','Declarative system','Rollbackable derivations','','Declarative way to format and mkfs the discks','Arch and Ansible','Y','','','Y','','','','','','','Away','home-manager,\r\ndigga,\r\narion','hercules-ci,\r\ncachix',''),(921,'1980-01-01 00:00:00',5,'en','628528029','A5','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','Y','','','','','Y','Y','','','Y','','','','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A9','A11','A2','','','','','','','','','','','','',NULL,'Docker, Kubernetes, makefiles','A4','','','','','Y','','','','','','','','','','','','','','','','','','A1','A15','A3','A4','A2','A5','A14','','','','','','','','','','','','','','','A1','A5','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','Y','','','Configuration management','Declarative configuration','','','Docker, Kubernetes','','','Y','','','Y','','Y','','','Emacs','sops-nix, emacs-overlay','','Thank you!'),(922,NULL,2,'en','1579165716','A2','A3','male','','','','','','','Y','Y','Y','Y','Y','','Y','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Coming from Haskell','Y','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','Y','','A1','A2','A6','','','','','','','','A8','A12','A11','','','','','','','','','','','','',NULL,'Containers','A2','','Y','','Y','Y','','','','','','','Y','','','Y','','','','Y','','','','A13','A12','A4','','','','','','','','','','','','','','','','','','','A13','A12','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(923,'1980-01-01 00:00:00',5,'en','792112663','A2','A4','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I looked for a robust alternative with a sandbox to Gentoo\'s package manager.','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A2','A3','A5','','','','','','','','A9','A12','A6','','','','','','','','','','','','',NULL,'Gentoo','A7','Y','Y','','Y','Y','','','','','','Y','','','','Y','','','','Y','','','','A15','A4','A3','A13','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Was the maintainer of Gentoo linux distribution. Was interested in sandboxing and precise dependency tracking that `nix` provides. Used `nix` sporadically for a few years on top of Gentoo. Then switched to NixOS 2 years ago.','Y','','Y','','','','','Declarative system configuration','Atomic rollbackable updates','Binary cache for most of packages','It would be nice to have a hermetic plugin system for NixOS to avoid breakages caused by library version mixing (in opengl or glibc-nss): https://github.com/nixpkgs-architecture/issues/issues/15','Gentoo','Y','','','','','','','','','','sway on wayland, no DE','','',''),(924,'1980-01-01 00:00:00',5,'en','1380982100','A2','A3','male','','','','','','','','','','','Y','','Y','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I liked the declarative concept and specifying all my configs in a central location. I also wanted to get rid of Homebrew on macOS and have heard about Nix before. The concept of just using \"nix run\" and \"nix shell\" also intrigued me.','Y','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'Homebrew on macOS and configuring everything by hand like a caveman.','A1','','','','Y','Y','Y','','','','','','','','','','','','','','','','','A2','A1','A9','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I maintain a private repo where I have packaged some software with Nix for myself but I\'m not sure about the quality + maintaining it in the future.','N','N','More free time ;)\r\nI have tried NixOS in a VM and I plan to replace Ubuntu on my VPS with NixOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-darwin & home-manager','','Please improve the documentation, especially for nixpkgs libs! Plus with more examples and easier to understand explanations.'),(925,NULL,1,'en','1577853825','A8','A2','male','','Y','','','','','','','','','','','','','Y','','','','','','','','Y','','Developer, FPGA','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(926,'1980-01-01 00:00:00',5,'en','2078114545','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','Y','','Y','Y','','','','','','','Y','','Y','Y','','','A2','A3','A8','','','','','','','','A8','A5','A11','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','Y','','','','','','','','','','','','Y','','','','A1','A2','A15','A9','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','','','','','','','','','','Y','','','','','','','Y','','','hyprland','','',''),(927,'1980-01-01 00:00:00',5,'en','1750267054','A2','A3','-oth-','enby','','','','','','Y','','','','','','','','','Y','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It was heavily used at my previous company, and I\'d been curious to try it out for some time.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A1','A7','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'- Some other linux distro (instead of NixOS)\r\n- Global install and ad-hoc environments (instead of nix shell)\r\n- I would do as little devops work as I possibly can','A4','','Y','','Y','Y','','','','','','','','Y','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was curious to try it out, and my previous company had a lot of happy users, so I did the switch when I joined them.','Y','','Y','','','Y','','Declarative system configuration','The large number of modules with great defaults','Ease of deployment and rollback','- Make `nixos-rebuild` much faster/incremental, to make config changes a lot easier to prototype\r\n- Improve error messages in Nix and the module system\r\n- Add native support for secrets\r\n- Improve the UI around binary caches with flakes','Some other less good linux distro','','','','','','Y','','','','','sway','- devenv\r\n- nix-locate','',''),(928,NULL,1,'en','919401592','A2','A3','male','','','','','','','','','','Y','Y','','','','','','','Y','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(929,'1980-01-01 00:00:00',5,'en','226402428','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','','','for fun','A1','I want to use nixos, so I start using nix :)','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A1','A2','A7','','','','','','','','A14','A5','A3','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A15','A2','A17','','','','','','','','','','','','','','','','','','','A15','A2','A22','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I want to try a new distro after using few mouth archlinux, but the reproduction of archlinux is painful and boring at that time I bought a new ssd which I have to reinstall and reconfig OS on, however I read an article about nixos, I really like the idea of nixos, so I get nixos on my new ssd to find ultimate experience.','Y','','','','','','','rollback, so I can play with a lot dangerous option which hard to other distro.','easy to start, just use gui installer and edit configration.nix, easy to manage my config.','set up develop enviroment with nix develop and nix-shell','more friendly to beginner','archlinux','Y','','','','','','','','Y','','','no','no','long live nix!'),(930,'1980-01-01 00:00:00',5,'en','142667372','A6','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','Y','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','It\'s absolutely mad that my typescript projects have better dependency management than what I can do at the operating system level. Thankfully I found Nix, which I am rolling out on all my machines.','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','Y','','A2','A7','A3','','','','','','','','A5','A9','A14','','','','','','','','','','','','',NULL,'Are you trying to make me feel bad?\r\nProbably apt...','A1','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A1','A17','','','','','','','','','','','','','','','','','','','','A17','A1','A15','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Learning curve and personal time, it will probably happen. If the learning resources were better, more accurate and up to date then I\'d get there sooner. I have trouble consuming fragmented information where imprecise or contradictory wording creates incorrect assumptions, this kills time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','There were a lot of things wrong with my workflow. I set out to fix them and stumbled on nix and nixos. The selling point became clear immediately and I have no reason to look back.','Y','Y','Y','','','','','As with nix','','','I draw a blank, need more time with it because at the moment it\'s absolutely amazing.\r\nFor nix lang, it would be nice to get types and complete lsp','Continue with debian for workstation for some semblance of boring sanity and alpine for containers for not thinking too much about them.','Y','Y','','','','','','Y','','','Playing around with bspwm since i can match it with yabai on macos, and hyprland','','','Keep going, you\'re all doing the right thing. This is how things are meant to be done, and most friends I\'ve given the elevator pitch have bought in for a good reason.'),(931,'1980-01-01 00:00:00',5,'en','2028217108','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Cybersecurity Engineer','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','Former heavy user, now mostly helping other and maintaining Nixpkgs package','A2','','','','','Y','','Inside VMs','Y','','','','','','','','Y','','Y','','','','A3','A2','A1','','','','','','','','A10','A4','A8','','','','','','','','','','','','',NULL,'Cry with standard package manager (probably DNF or Emerge)','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A4','A2','A1','A15','A24','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'N','Y',NULL,'I came back to Windows','The thing is, I do a lot of small experiments here and there, and each projects requires at least 10, regularly 30 minutes to put in a derivation. For long projects, the benefits FAAAR outweighs the time... But when you want to compile a loose IOCCC contribution, writing a default.nix is too long',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DeterminateSystems\' alternative installer. Really nice','NixOS WSL Image. Always out of date, and really brittle','I really like Nix and NixOS... But the \"just works\" experience of Windows is hard to match. I just really with there was an alternative to ephemeral shells on Windows'),(932,'1980-01-01 00:00:00',5,'en','1903092668','A4','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','N','N','Y','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','knowing how the package manager works or having a guided experience',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','great project but you desperately need better and more importantly simpler documentation'),(933,'1980-01-01 00:00:00',5,'en','313514018','A5','A2','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Developer, firmware','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The maintainer of Doom Emacs, which I use, mentionned that he wanted a system similar to nix for rollback. His dotfiles were public which used nixos and then I went down the rapit hole','','Y','','','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','CI, similar to Development enviroments','A3','A2','A1','','','','','','','','A8','A9','A10','','','','','','','','','','','','',NULL,'Containers, shell scripts, dotfiles manager','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A1','A4','A6','A14','A3','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Nothing, I contribute a bit. The complexity sometimes prevents me from writing the package but I try to get help on the discourse/matrix','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Setted up my computer using home-mamager but I wanted and opengl applications failed to launch, so I still depended on my dristo package manager. Thus I migrated to nixos to have a fully declarative OS','Y','Y','Y','','','Y','','Declarative environment','Reproductible os builds','Rollbacks','Vscode often has issues with manually installed extensions when using fhs. And some extensions are not available. So either have them all available or fix vscode when using fhs. ','Opensuse since it has good support for rollback. ','','','','Y','','','','','','','i3','','Nixops since it doesn\'t seem to support flakes. ','Flakes are the only way I use nix. It makes more sense in my head and it was how I grasped nix. \r\n\r\nI feel like there is too many derivatives and ways to do things. Devenv vs nix develop, Riff vs nix run, nixops vs deploy-rs and others, digga vs divnix/std vs handroll. It feels like the official tools have a void and the community tries to fill it. I personally only use pure nixos/flakes, but I was confused at first as to why so many tools exists. '),(934,NULL,1,'en','871102990','A2','A3','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(935,'1980-01-01 00:00:00',5,'en','35659240','A2','A3','male','','','','','','','','','','Y','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','Y','Y','','Y','','Y','','','Y','','Y','','','','A7','A2','A3','','','','','','','','A13','A8','A6','','','','','','','','','','','','',NULL,'Debian or Arch, probably','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A25','A1','','','','','','','','','','','','','','','','','','','A25','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Declarative, atomic, functional? It was love at first sight','Y','','Y','Y','','Y','','Atomic, declarative, clean handling of packages','Immutable store strongly discourages undocumented hacks','Immense package repo','Better documentation, statically typed language','Debian or Arch','Y','','','','','Y','','','Y','','','home-manager\r\nagenix','nixops (because python 2)','💜'),(936,'1980-01-01 00:00:00',5,'en','1976854574','A2','A2','-oth-','None Binary ','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I talked to some people, they showed me nix, then I got a new laptop and thought it would be fun to try nixos out. After using it for a few months I found a few packages were missing from nixpkgs and asked a more knowledgeable user: \"how do I package stuff\" they showed me how to package $application and helped me upstream it. That escalated and now I maintain >30 packages.','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','Y','','','A2','A7','A3','','','','','','','','A6','A13','A5','','','','','','','','','','','','',NULL,'OCI Images ','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','Woodpecker','A2','A1','A15','','','','','','','','','','','','','','','','','','','A2','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','For Infra at places I volunteer ','A2','See why I started using nix.','Y','Y','Y','Y','','Y','','Declarative System State ','Generations','Being able to easily add packages to the offical repo.','Make State Management for modules a no-problem','Docker-Compose and Ansible ','Y','','','Y','Y','','','','','','Sway','Home-Manager\r\nSops-Nix\r\nNix-init ','','Thanks for all the hard work '),(937,'1980-01-01 00:00:00',5,'en','945436324','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','Since I started using NixOS I consider software without a Nix package to be a pain, and so I package everything I need.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A10','A3','','','','','','','','A11','A8','A9','','','','','','','','','','','','',NULL,'I would write Nix again from scratch in Zig.','A4','','','','Y','Y','','Y','','','','','Y','','','Y','','','','Y','','','https://github.com/input-output-hk/cicero','A22','A15','A9','','','','','','','','','','','','','','','','','','','A1','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','As an intermediate beginner with linux, I was very frustrated with the state of other operating systems and how easy they were to break by, for example, simply updating a package. This almost made me lose interest in computers for a short while, until a friend of mine sent me a link to NixOS. Thank you!','Y','Y','Y','Y','','','','declarative configuration','composable configuration (the module system)','atomic deployment and rollback','Maybe make all service modules support multiple instances.\r\nAnd then write a highly-available distributed scheduler that deploys services from NixOS modules to a network of NixOS machines.\r\n\r\nOther than that... Maybe replace systemd? It\'s pretty good as it is.','Probably Gentoo, but I\'d pay someone to bring it back.','Y','Y','','Y','Y','Y','','','','','Sway','flake-parts, treefmt, alejandra, impermanence, (r)agenix, disko, nixos-images, home-manager-shell, nixos-shell, flake-programs-sqlite, NUR, github:StevenBlack/hosts, github:input-output-hk/spongix','flake-utils, flake-utils-plus, NixOps, disnix(os) / dysnomia, Hail','While I have seen a few more jobs that work with Nix/NixOS than years back, they still feel rare. We need to drive industry adoption so we can more easily find a place to work that is not depressing.\r\n\r\nFor that, key issues are, in my experience:\r\n\r\n1. Long and unpredictable evaluation times (especially when there is no alternative to IFD). This is a real pain for companies writing Haskell, which seem to have a tendency to like Nix.\r\n\r\n2. (Relating to the first point) Cache locality. We have a large cache but our builds still take a long time because the have to fetch huge amounts of data if they are scheduled on a machine that happens not to have stuff cached locally in its nix store. Adding more caches is problematic as sequentially requesting a missing path from them all still takes a while. We are currently trying to write a scheduler that runs nix builds on the machine with most store paths in its local cache.\r\n\r\n3. Developer experience. I don\'t primarily mean the Nix language but all the small gotchas along the way. Are you a trusted user? Are permissions on your netrc file correct? For all users you run nix builds as? access-tokens doesn\'t suffice, you still need a netrc for remote HTTP stores. Have you enabled a gazillion experimental features? Here, just copy most of this flake — oh, but it doesn\'t support your system, you need to add another output. ...'),(938,'1980-01-01 00:00:00',5,'en','1234351585','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A former colleague of mine told me about a new Linux distribution, that was purely functional and had configuration management built-in. I found that interesting, so I installed it alongside ArchLinux. Maybe a month later it became my primary operating system both at work and at home.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A5','A4','A9','','','','','','','','','','','','',NULL,'ArchLinux, pacman, and ansible','A1','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','','','','','','Declarative configuration management','Atomic upgrades and rollbacks','Interactive shell (flakes)','More comprehensive documentation for Flakes','ArchLinux, pacman, and Ansible','Y','','','','','','','','','','startx, i3','','',''),(939,'1980-01-01 00:00:00',5,'en','1294151380','A2','A4','male','','','','','','','','Y','','','Y','','Y','','','','','Y','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','Y','Y','','Y','','','Y','Y','','','','','','Y','','','Y','','','','A1','A6','A3','','','','','','','','A4','A3','A1','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','Y','','Y','','Y','','A1','','','','','','','','','','','','','','','','','','','','','A1','A8','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','Sway','','',''),(940,NULL,2,'en','1454130425','A5','A3','male','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Been a while now, but it really wasn\'t anything special. Just was using Arch Linux and Ansible for a time, and pretty unhappy with it. Found out about Nix at random and starting building a NixOS VM on my machine. Once I got it to where I thougth I could use it as a daily driver, I installed it on bare metal and the rest is history.','','Y','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','Y','CI','A2','A4','A9','','','','','','','','A2','A6','A15','','','','','','','','','','','','',NULL,'Just some traditional package manager, and docker, et al. for work','A2','','','','Y','Y','','','','Y','','','Y','','','','','','','Y','','','Standard Action','A15','A1','A11','A9','A13','A24','','','','','','','','','','','','','','','','A11','A15','A1','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(941,'1980-01-01 00:00:00',5,'en','1584777452','A8','A2','male','','Y','','','','','','Y','','','','','','','Y','','','Y','','','','','Y','','Developer, FPGA','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','Y','','','','','Y','Y','Y','','','','','A2','','','','','','','','','','A3','A11','A2','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A4','A5','A15','','','','','','','','','','','','','','','','','','','A4','A5','A15','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','Y',NULL,'Broken and out of date packages.','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(942,'1980-01-01 00:00:00',5,'en','833003899','A2','A2','male','','','','','','','','','','Y','','Y','Y','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A8','A6','A14','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','System configuration','Reproducible builds','Software availability','Pinning versions of dependencies in flakes similar to package.json/cargo.toml.\r\nBetter language server.\r\n','Fedora with dotfiles.','Y','','','','','','','Y','','','','','',''),(943,'1980-01-01 00:00:00',5,'en','2037128317','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Got annoyed about macOS, liked functional programming from Haskell','','Y','','','','','Y','','','','','','','Y','','Y','Y','','Y','','A7','A10','A1','','','','','','','','A13','A9','A8','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Was annoyed at macOS, liked functional programming from Haskell','Y','','','','','','','Declarative configuration','Openness and ability to customize','Continuous community maintenance','Improve the quality of modules. A lot of modules are of mediocre quality and could use a rework.','','','','','','','','nixus','','','','xmonad','','',''),(944,'1980-01-01 00:00:00',5,'en','1991285311','A5','A5','male','','','','','','','','','','','Y','','','','','','Y','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Found it distro-hopping.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A10','','','','','','','','A6','A8','A3','','','','','','','','','','','','',NULL,'saltstack','A1','','','','Y','','','','','','','','','','','Y','','','','','','','','A9','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Lack of time and familiarity with the inner-workings of nix (some good tutorials may exist already, but I haven\'t seen them yet).','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','distro-hopping','Y','','Y','','','','','declarative system config','declarative nix containers','rolling release','Ad-hoc development made easier (without the need for a dev shell). Also, an effective jail for nix containers to protect the host OS.','Arch Linux most likely.','Y','','','','','','have explored just about all of these','Y','','Y','i3WM','none','none','Nix/NixOS are awesome. Keep up the good work!'),(945,'1980-01-01 00:00:00',5,'en','44056553','A5','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Many software build and distributions systems are not reproducible (enough). I got too annoyed with build procedures that would fail due to reproducibility issues, caused by things like dependency hell, dead URLs of dependencies, under-specified build environments, and lack of versioning control.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A11','A2','A7','','','','','','','','A8','A9','A13','','','','','','','','','','','','',NULL,'Some sort of container-based build scheme that I may need to make myself.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','* Stabilize flakes plz\r\n* Nix the language is often confusing. It has a steep learning curve, with many unusual (to me) design choices (e.g. Essential functions are split between `builtins` and `nixpkgs.lib`; some functions use currying as parameters, some use attrsets, some use both; there are several ways to import another nix module, each with their own idiosyncrasies (`import other.nix`, imports = [other.nix], callPackage other.nix))\r\n* nixpkgs is slow to accept pull requests, especially some that appear trivial such as adding an additional attr to an existing `config.option`','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I am a longtime, and still am, Arch Linux user. I began the switch to NixOS when I hit dependency hell and unclean chroots much too often when building various things through Arch Linux\'s build tools; the promises of reproducibility and well-specified build inputs were attractive.','Y','','','','','','','Reproducibility','Well-specified dependencies and build inputs','Declarative configuration','Do not create a totally new domain-specific language (DSL) and instead do something like how Guix uses Scheme. This mitigates many, many papercuts (e.g. there will be an existing documentation ecosystem; easier adoption process; leverage a mature language with better-known behavior)','Arch Linux','Y','','','','Y','','Hive','','','','Hyprland','Home Manager, Standard, devshell, disko, crane','',''),(946,'1980-01-01 00:00:00',5,'en','1979052853','A8','A6','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','The organisation I work for already had a heavy Nix infection and I am not always able to avoid it.','','Y','','','','','Y','Y','','','','','CI','','Y','Y','','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'Debian (AFAIAC, its much less trouble than NIx).','A7','','','','','','','','','','','','','','','Y','','','','Y','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I think the ideas behind Nix are great, but the implementation is poor. \r\nNIx language is also IMO poor.','N','Y',NULL,'Prefer Debian','Hell freezing over.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(947,NULL,NULL,'en','1536194472',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(948,'1980-01-01 00:00:00',5,'en','173953098','A8','A5','male','','','','','','','Y','','Y','','','','','','','','','','','','','','','','Security consultant','','','Y','','','SmartOS (Illumos)','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because I needed to learn how to configure NixOS. Using nix for personal project builds came (slightly) later','','Y','','','','','Y','Y','','','Y','','','','Y','Y','Y','Y','','','A1','A2','A10','','','','','','','','A6','A4','A5','','','','','','','','','','','','',NULL,'For os configuration, ansible\r\nFor software projects build, cargo','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A18','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I\'ve made a few small PR\'s but it\'s mostly a skill issue, to a lesser degree that PR\'s can take a long time to get attention and be merged.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because I was tired of stale software and big release jumps, and wanted to get back to a more rolling release setup ','Y','','Y','','Y','','','Declarative configuration, consistency across multiple machines, single configuration method rather than many files with different syntax','Current software, rolling release, easy rollbacks in case of rare problems','The ability to find, adopt and adapt customisations and tweaks shared by others easily','More consistent and opinionated patterns on how things should be done, and tooling to lint and help maintain this consistency across the nixpkgs repo and incoming PRs.','ubuntu or gentoo with a bunch of ansible config','Y','','','','','','','Y','','','','','',''),(949,'1980-01-01 00:00:00',5,'en','1514745277','A5','A3','-oth-','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','My most esteemed colleagues directed me to Nix for its killer feature set in Developer Experience','','Y','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A2','A3','A5','','','','','','','','A8','A6','A13','','','','','','','','','','','','',NULL,'Arch Linux ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','A7','A5','','','','','','','','','','','','','','','','','','A9','A7','A2','','','','','','','','','','','','','','','','','','','','','','','A2','','Need to learn how to contribute and where','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Once I saw the unstoppable force of the Nix language in a developer environment context, I looked into NixOS. Just learning that it was a fully Declarative OS was enough to switch me immediately from 10y+ of Arch','Y','','','','','','','declarative','Source AND binary distribution ','Rollback in time (even at boot)','Change nixos-rebuild to require root or a --force flag\r\nMake takeover scripts fully fledged so that any Linux can be injected with NixOS (existing ones are bad)\r\nAdd more support for complex LVM & LUKS setups','Arch Linux','Y','','','','','','','Y','','','','Home-manager','','Keep up the great work. '),(950,'1980-01-01 00:00:00',5,'en','473352359','A2','A3','male','','','','','','','Y','Y','Y','','','','','Y','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','First, to manage C++ dependencies / development environments, I mean C++ libraries (best alternatives was Conan or CMake\'s CPM) AND tooling (best alternatives was distro packages managers).\r\nNow I work on creating a self hosted media server cluster FULLY as code, based on NixOS + Hashicorp stack.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A2','A7','A1','','','','','','','','A6','A7','A14','','','','','','','','','','','','',NULL,'APT, CMake\'s CPM, Ansible','A7','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','To create a self hosted media server cluster based FULLY as code, based on NixOS + Hashicorp stack.','Y','','Y','','','','','OS as code','large nixpkgs content','','- Add real override possibility for NixOS modules, like it is for derivations\r\n- Add support for other init systems, regular systemd alternatives but above all distributed ones like Hashicorp Nomad or svanderburg/disnix','Ansible and Kubernetes I guess','','','','Y','','Y','nixos-anywhere','Y','','','Mate','Disko is a pearl, I also use sops intensively, thus sops-nix','','Thank you'),(951,'1980-01-01 00:00:00',5,'en','1487361399','A5','A2','-oth-','Non-binary','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','because i wanted to use nixos','','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'whatever package manager comes with the distro i would have hypothetically chosen','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','bitter hatred for microsoft, utter refusal to use github','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','general desire to break away from windows and begin using linux (software freedom being the motivator). had an ABSURD amount of time to deliberate on a distro; eventually became seduced by the idea that i could define nearly everything about my system and user environment with a handful of files and pretty much never have to do it again. not being condemned to dependency hell is also nice although that\'s technically a feature of nix','Y','','','','','','','configuring my system with my silly little configuration flake','nix in general (aforementioned dependency hell, but also being able to nix-shell -p a program when i just need to borrow it for a bit)','the rollbacks that i have not needed to use YET','more modular monitor hotplugs, mostly? currently managing this with autorandr service. in my case, i\'ve got a pen display could be connected to different ports or different devices, and my understanding is that i\'d have to write a profile for each possible configuration thereof; it\'d feel more \'correct\' if i could somehow define my pen display\'s output configuration once and import it as a module.\r\n\r\nalso, the ability to manage opentabletdriver profiles. otd profiles are in json and could hypothetically be simple to nixify but i haven\'t found motivation to do this for myself in my own cfg yet...','bedrock, if not silverblue/kinoite','Y','','','','','','','','','','bspwm','','','i use nixos btw'),(952,'1980-01-01 00:00:00',5,'en','632715456','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Curiosity.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A9','','','','','','','','A4','A8','A9','','','','','','','','','','','','',NULL,'GNU Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','The logo.','Y','','','','','','','Configuration','Package availability','Generations','','Guix','Y','','','','','','','','','','Hyprland','','',''),(953,'1980-01-01 00:00:00',5,'en','1024855575','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','i heard about Nix right after learning to package a project of mine in dpkg\r\npackaging that project in Nix straightened out a lot more about the project than dpkg did\r\nand since the project is a daemon, i ended up writing a module for it and switching to NixOS','','','','','','','Y','Y','','','','Y','','Y','Y','Y','Y','','','','A1','A3','A9','','','','','','','','A9','A14','A1','','','','','','','','','','','','',NULL,'probably still dpkg\r\nif it (and Guix) disappeared today, maybe snap or docker','A2','','','','','Y','','','','','','','','','','','','','','','','','','A15','A25','A3','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','i packaged a project of mine which straightened out that project a lot\r\nsince the project is a daemon, i wrote a module for it, that also improved the project a bunch','Y','','Y','','','Y','','configuration management','the condensed know-how of thousands of contributors','ease of contributing','runtime sandboxing (like snaps?)\r\nRFCs 140 and 101 (more of a nixpkgs change than a NixOS change)','probably debian, or maybe something ostree based','Y','','','','','','','','','','','nix-channel-monitor','','i was hoping for more questions to guide the documentation development'),(954,NULL,1,'en','1980248280','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','Y','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(955,NULL,1,'en','1909346188','A2','A3','male','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(956,'1980-01-01 00:00:00',5,'en','1291009527','A2','A3','male','','Y','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Declarative','','','','Y','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A11','A8','A6','','','','','','','','','','','','',NULL,'I guess arch','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A4','A1','','','','','','','','','','','','','','','','','','A4','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Declarative','Y','','Y','','','','','Slim','Easy nix integration','','Declarative Disk formatting with config (Disko)','Arch I guess','Y','','','Y','','','','','','','sway','Sops, generators, ','',''),(957,NULL,NULL,'en','491926281',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(958,'1980-01-01 00:00:00',5,'en','1507563992','A2','A5','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','Learning the nix way','A1','Started using automation at work and was wondering if Nix can help me develop my automation and infrastructure-as-a-code skills.\r\nI Love the ideas behind Nix/NixOs, and decided to give it a go, so far so good, more or less :P','','Y','','','','','Y','Y','','','','','','','','Y','Y','','','','A1','A10','A6','','','','','','','','A14','A8','A9','','','','','','','','','','','','',NULL,'I\'m coming from traditional linux approach, and package managers that I have been using for decades by now...','A4','','','','Y','Y','','','','','','','','','','','','','','','','','none atm','','','','','','','','','','','','','','','','','','','','','','A25','A2','','','','','','','','','','','','','','','','','','','','','','','','A1','','Knowledge of nix ;-)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','to learn it','A1','I started looking into automation and nixos seem lika a good idea/way to automate os deployment.','Y','','Y','','','','','automation and the idea of having my os defined as code','amount of available packages','Finally I will be able to put it in git and have control over what I do with it (I hope)','no Idea, using NixOS not that long to understand its shortcomings, so far I\'m the limitation and my knowledge of the system... perhaps some documentation I have found bit confusing at the time specially around flakes and the new way but I\'m getting there slowly and I accept that, huge thanks at the same time.','Arch and Debian','Y','','','','','','','Y','','','hyprland','None yet','None yet','Yes, Thank you,\r\nI appreciate the time and effort everyone puts into os projects and although I\'m at the receiving end of the things I understand what it takes to maintain it and push things forward, so It is me/us users who owe you huge thank you from me.\r\nThanks'),(959,'1980-01-01 00:00:00',5,'en','541122194','A8','A5','male','','','','','','Y','','','Y','','Y','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because trying to do a clean, repeatable install with Debian, Arch or Fedora was still a bit of a hack and required too much TLC after the fact, Homebrew\'s take-over of /usr/local eventually just made me mad, and the myriad of nvm, rvm, sdkman, etc never worked exactly the same in the same team of Dev\'s.','Y','Y','','','','','Y','Y','Y','','','Y','','Y','Y','Y','Y','Y','Y','','A2','A3','A10','','','','','','','','A14','A12','A3','','','','','','','','','','','','',NULL,'Debian','A7','','','Y','Y','Y','','','','','','','','Y','','Y','','','','Y','','Y','','A15','A9','A1','A20','A2','A13','A7','A24','','','','','','','','','','','','','','A15','A9','A5','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','Declarative + Functional language foundation','Hermetic + repeatable guarantees','','Readability of the Nix language can be challenging sometimes, even if you read it every day.','Debian','Y','','','','','Y','','Y','','Y','','Communities, like nixos-hardware, emacs, nixos-generators','',''),(960,'1980-01-01 00:00:00',5,'en','724862081','A2','A3','male','','','','','','','','','','','','Y','Y','','','','','Y','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Heard about it in some chat randomly. Tried out home-manager. Then switched to NixOS when I upgraded my pc.','','Y','','Y','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A3','A7','','','','','','','','A4','A8','A3','','','','','','','','','','','','',NULL,'proxmox','A2','','','','Y','','','','','','','','Y','','','','','','','','','','','A15','A2','A17','A1','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I am not confident the packages I needed to built myself have enough users to warrant contributing them to nixpgs.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I rebuild my PC and was already using home-manager.','Y','','Y','','','','','easy rollbacks','easy configuration compared to ArchLinux','ZFS on root was unproblematic to set up','','proxmox','Y','','','','','','','Y','','Y','sway','','dream2nix',''),(961,'1980-01-01 00:00:00',5,'en','1568053848','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','Declarative dev environments and super fast CI with cool caching. ','','Y','','Y','','','Y','','Y','Y','','','','','Y','Y','Y','Y','','','A3','A2','A7','','','','','','','','A5','A3','A10','','','','','','','','','','','','',NULL,'Alpine Linux apk','A5','','','','Y','','','','','','','','','','','','','Y','','','','','','A24','A23','A1','A6','','','','','','','','','','','','','','','','','','A24','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I was maintaining package updates, but now mostly think this all should be completely automated.','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A4','Ability to rollback.','','','','Y','','','','Ability to rollback (even if never used)','','','','Alpine Linux','Y','','','','','','','','','','','','','Keep the friendly spirit. That\'s all we need.'),(962,'1980-01-01 00:00:00',5,'en','1703969133','A2','A4','male','','','','','','','Y','Y','','Y','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A5','A4','A6','','','','','','','','','','','','',NULL,'Debian with Guix.','A4','','','','','','','','','','','','','','','','','','','','','','','A1','A5','A9','A7','A10','','','','','','','','','','','','','','','','','A13','A22','A14','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','','Guix','Y','','','','','','','','','','Sway','','',''),(963,'1980-01-01 00:00:00',5,'en','1390181410','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted unified configuration across different linux machines, have experience with saltstack & ansible, but knew the pitfalls of external configuration management and NixOS solved these problems.','','','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A1','A2','A9','','','','','','','','A12','A8','A9','','','','','','','','','','','','',NULL,'Probably a mixture of ansible with arch linux.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','Buildbot','A2','A15','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as with nix.','Y','Y','Y','Y','','','','Module system','Package availability','Binary cache','','Arch Linux','Y','','','Y','','','','','','','Sway','','',''),(964,'1980-01-01 00:00:00',5,'en','1025830041','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I became a DevOps and was managing several services with Ansible, Docker and Terrraform.\r\nOne day I read a blog post on https://news.ycombinator.com/ about Nix and got interested.\r\nThe idea of a DSL for service and system management hooked me a lot.\r\nI migrated all my personal machines to NixOS.\r\nI also found a new job offering to work with Nix, because it was hard to convice and sell nix to people in my previous company.','','Y','','','Y','','Y','Y','Y','Y','','','RaspberryPI4','Y','Y','Y','Y','','','','A1','A2','A7','','','','','','','','A3','A6','A7','','','','','','','','','','','','',NULL,'Guix > Ansible/Terraform > Docker','A2','Y','','','Y','Y','','','','','','','Y','','','Y','','Y','','Y','','','Cicero','A15','A3','A25','A13','A24','A1','A20','A19','A11','A5','A8','A21','A23','A22','A17','A14','A2','A9','','','','A1','A11','A20','','','','','','','','','','','','','','','','','','','Y','Y','Y','importing my own modules','A2','','As developer, when I develop an environment for a repository I use a nix flake, so it is repository specific logic written in nix, which doesn\'t make sense to contribute.\r\nAs admin/devops, I use nix for deploying services. The software I want to use is most of the time already packaged as service.\r\nWhen I really want to use something which is not already packaged, I will try to contribute but other contributers are already pretty fast.\r\nAs system-user installing software, most of the time when I hack on my configuration.nix and override a package, this is my personal configuration, which also doesn\'t make sense to contribute.\r\nIf I would use nix as a programming language, then I would have better reasons to contribute.\r\nBut the language-server for nix only helps writing flakes and configurations, for actual programming the IDE support is lacking compared to programming languages. For example: Jump to definition and autocompleting/suggesting after typing a \'.\', are the most important features to learn and use a programming language. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','managing my infrastructure','A3','Same story for nix.','Y','Y','Y','Y','','','RaspberryPi4','Reproducibility','Everything is code','On restart, I can choose which generation I want to run.\r\nReally helps if you somehow managed to lock yourself out of your system.','Setting nix.conf via configuration.nix is inconsistent.\r\nFor example when setting netrc-file or access-tokens and using a flake.nix which fetches from multiple private artifact hosters, I ran in multiple problems.\r\nRunning nix build always resulted in a 401 at some point.\r\nHowever when I ran \'nix build --access-tokens \"tokens\" it fixed the problem and afterwards I could run \'nix build\'.\r\nI garbage collected the /nix/store, restarted the nix-daemon and even restarted my machine before none of this was fixing the problem.\r\nMy only quess was that something inside the nix-daemon was stuck, maybe even inside the db of the nix-daemon.\r\n\r\nI would love to have a guide which explains me how to debug this kind of problem inside the nix-daemon itself, or access to the nix-db to find and delete a locking row manually.\r\nBut the inconsistently also happened when I was trying to set all the distributed builder settings for a nix-daemon on a machine, which should act as a general builder for my network.\r\n\r\nAlso the experience of using javascript/typescript with flakes on professional gigs always resulted in not using nix for javascript development.\r\nI know there is documentation for javascript here: https://github.com/NixOS/nixpkgs/blob/master/doc/languages-frameworks/javascript.section.md\r\nWith all the privacy on our projects we are fetching a lot from private endpoints, so we tried to use fetchYarnDeps to get all the packages we wanted but the offlineCache which is generated by fetchYarnDeps transforms \'-\' to \'_\' and adds some weird naming. \r\nIf you run mkYarnPackage and mkYarnModules afterwards, they won\'t care about all the dependencies in yarn.lock and will only use what is required by package.json, which just doesn\'t work when you are using a project with multiple subprojects.\r\nThe weird naming from fetchYarnDeps also doesn\'t allow to reuse the fetched files as node_modules to run \'yarn\' directly.\r\n I was trying to hack something together over the course of several day but ended up not using nix for this project and using a container made in 1day. ','Guix > VoidLinux/FreeNAS/Gentoo > Debian/ArchLinux','','','','','','Y','wrapping nixos-rebuild --target-host','','','','Xmonad','flake-utils, Hydra, nil, nix-direnv, nix-tree, nixos-generators, home-manager, vulnix','NixOps, rnix-lsp','NixOS really made me eager to try administration, because before I didn\'t wanted to deal with impurity.\r\nIt would be great if NixOS manages to be controlled by voice.\r\nI think the next paradigm shift happens when we leave our keyboard behind.\r\n\r\nKeep doing great work and see you soon.'),(965,'1980-01-01 00:00:00',5,'en','384110990','A2','A4','male','','','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','Y','','','no_std','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A coworker introduced it at work. He was the Evangelist. From there it spread into our projects and then as NixOS in people\'s laptops, mine included.','','Y','','','Y','no_std','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','','A2','A4','A1','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'Maybe bob or something with docker.','A4','','','','Y','Y','','','','','','','','','','','Y','Y','','Y','','','','A15','A4','A13','A3','A2','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','We first used it in projects at work. Then it became convenient to use NixOS as well. I started with my private laptop and then later also used it on my work laptop. We also slowly migrated our IT away from Ansible/Ubuntu to using deploy-rs/NixOS','Y','Y','Y','Y','','Y','','Package configurability (override, patches, ...)','Deterministic environment ','Recent GNOME desktop ','I would try to find a Nix enthusiast from the GNOME project to work on GNOME bugs.','Fedora for laptops, maybe Ubuntu for servers','Y','','','Y','','','','Y','','','','Hercules CI, cachix, nixbuild.net','Hydra',''),(966,'1980-01-01 00:00:00',5,'en','2048973408','A2','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Seems logical as it is part of NixOS.','','Y','','','','','Y','Y','','','Y','','','','Y','','Y','Y','','','A2','A1','A3','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'git','A3','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A15','A5','A1','A20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I am contributing, but obviously using nix best describes my involvement.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I started with Debian in 1996 as it seemed the most pure Linux distribution. In 2010 I started to use Puppet professionally, became a big fan of declarative configuration management. In 2016 I discovered NixOS - with an integrated configuration management system much more powerful than Puppet - and replaced all my Debian.','Y','','Y','','Y','','','Reliable and atomic configuration management','Huge amount of software available','Rolling release','I would add up to date documentation.','Debian.','Y','','','','','','','Y','','','Sway','','NixOps, about a year ago. I just could not get even the smallest thing done with NixOps. It seemed in an in-between state with not much happening.','<3 Nix & NixOS'),(967,'1980-01-01 00:00:00',5,'en','152235580','A2','A3','male','','Y','','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','','','','','','','','Y','','','','','','','','Y','','Y','','','','A1','A7','A3','','','','','','','','A4','A5','','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A25','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','The reproducibility of personal configurations.','The ease to extend package with overlays','The ability to easily mix stable features and cutting edge packages with flakes','I would make it easier to understand and debug configurations errors.','Arch Linux','Y','','','','','','','','','Y','leftwm','Home-Manager','',''),(968,'1980-01-01 00:00:00',5,'en','657762052','A2','A3','male','','','','','','','Y','Y','','Y','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Nix was the deployment and packaging solution for work project. Developers 99% of time didn\'t need to touch it, but over time my curiosity increased, a colleague of mine and active community member explained to me how it works, so then I decided to use it as my go-to package and environment manager','Y','Y','','','Y','','Y','','Y','','','','','Y','Y','Y','Y','','','','A2','A5','A1','','','','','','','','A6','A7','A2','','','','','','','','','','','','',NULL,'a mix of asdf + docker + something like bazel (in certain circumastances)','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','custom','A1','A11','A15','A25','','','','','','','','','','','','','','','','','','A1','A11','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time constraints, projects I need in nixpkgs either can\'t be there (legal), are already present in nixpkgs or are available with flakes','N','N','macOS-quality desktop environment for Linux or need to maintain own server ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'flake-related utils: flake-utils, numtide devshell, source filtering, etc.','various 2nix projects for JS/TS integrations, they all are somewhat flawed in presence of workspaces','Nix\'s language performance is also causing problems in workspaces with many interdependent packages; \r\nHaving a way to define multiple packages in a single repo using flake-like syntax, where each always depends on the latest version of others would be nice.'),(969,'1980-01-01 00:00:00',5,'en','1248935605','A2','A3','male','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','Y','Y','','','','','Y','','','','','','','','','','Y','','','','A11','A10','A6','','','','','','','','A6','A5','A14','','','','','','','','','','','','',NULL,'dotfiles','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','A1','A22','','','','','','','','','','','','','','','','','','','Y','','','','A1','','High barrier to entry, hard to understand','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-darwin, home-manager','',''),(970,'1980-01-01 00:00:00',5,'en','1634647178','A2','A3','male','','','','','','Y','Y','Y','','','Y','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was tired of bricking Arch Linux, and of old software in Debian','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A2','A6','A7','','','','','','','','A10','A11','A2','','','','','','','','','','','','',NULL,'Docker','A4','','','','Y','Y','Y','Y','','','','','','','','Y','','','','Y','','Y','we have this Cicero experiment at IOG','A1','A2','A3','A4','A9','A13','A15','A18','A23','A25','A11','','','','','','','','','','','A11','A5','A19','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Was tired with bricking Arch Linux / too old software in Debian','Y','Y','Y','Y','','','','No way to brick the OS – can rollback from boot menu','Write once and forget (almost), it won\'t break','Reproducibility','Windows support','Debian + VMs / Docker','Y','','','Y','Y','','nix-darwin','','','','i3','','','fingers crossed for it taking the world'),(971,NULL,2,'en','1839586425','A2','A1','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','Daily driver ','A1','I wanted a stable system with newer packages than debian but not the bleeding edge of arch so i choose nixos ','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A6','A1','A10','','','','','','','','A5','A14','A10','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','idk nix language ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(972,NULL,3,'en','789887035','A2','A3','male','','Y','','','','Y','','Y','','','Y','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','Y','','','Y','Y','Y','','','','','','Y','','Y','','','','A2','A7','','','','','','','','','A5','A8','A10','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A1','A4','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(973,'1980-01-01 00:00:00',5,'en','578622408','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','The main reason that I started using Nix is NixOS. I wanted to have a clean, reproducible system with a lot of packages available. I can easily garbage collect, change desktop environments, and do whatever without leaving a bunch of unused dependencies behind. That is how this distribution really differs from the \"regular\" ones.','','','','Y','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'ArchLinux, more specifically the offical Arch repository as well as the Arch User repository (AUR).','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A15','','','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','The amount of knowledge required, I do not have the motivation.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted to be able to manage multiple machines, declaratively in a single git repository. I have a personal computer and a laptop, and I can easily have both share the same configuration with tiny differences. Another thing I really like is the garbage collector. I can replace my desktop environment for example, rebuild and remove (all) left behind dependencies / store paths to have a clean system again. I also see it having really great potential for servers, in fact I once used it. And in my opinion you do not need one of these third party deployment tools. NixOS has everything you need.','Y','','','','','','','Declarative system management, sometimes one option enables so many other options which is just awesome because a lot of effort is taken off of you','Flakes for `nix run`, `nix develop`, `nix build` and passing git repositories to rebuild with a specific configuration','Garbage collection and store optimisation to clean up the system','Much better documentation for the modern way of doing things. There is for instance Zero To Nix, which is great, but it does not go in depth and only covers a very few things. Really extend the NixOS manual with the modern way and easy to understand explanations following best practices and written by experts. I really love NixOS and I think not much is missing, besides documentation. Imagine it had as great documentation as ArchLinux, that would be incredible.','ArchLinux','Y','','','','','','','','','','SwayWM, configured via home-manager','home-manager','','Thank you for developing Nix and NixOS, it is really a blessing and I hope it gets maintained more and more and eventually gets great docs (probably the biggest pain point with using these tools at the moment).'),(974,'1980-01-01 00:00:00',5,'en','1696691721','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I heard a little bit about nix without understanding what it is, and one day, I wanted to try something new, and then I give it a try.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A14','A9','A8','','','','','','','','','','','','',NULL,'As OS : arch-linux\r\nAs Packet Manager : pamac, or maybe flatpak','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I\'m a beginner, and I\'m still learning about nix, so for now, I\'m not sure I understand everything. Today, if I had something to propose, I\'m not sure to do it correctly, so I prefer to wait and to learn more.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I tried Nix on an archlinux distribution, and I fill that I would have a better integration with Nixos ( for example desktop icons when I install a new application, etc... ).\r\nNow, that I tried Nixos, I really like :\r\n- the configuration of all my OS in a file\r\n- the feeling that I reinstall all my system each time I made a change. Thx to that, I don\'t have to think on how to reinstall my system, I use to do it and it\'s really simple.\r\n- I can save all my OS versions in git ','Y','','','','','','','The reproductibility','The configuration of a whole \"stack\" by only one option ( for example, I want to enable fingerprint, I just enable it with one option and that\'s ok)','The save of the different version of my OS','I don\'t use it since enough time to be able to answer.','I would have stay on Manjaro.','Y','','','','','','','Y','','','','None','None',''),(975,'1980-01-01 00:00:00',5,'en','1022348911','A2','A4','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I saw it tooted as \"functional programming made OS\". I wanted to prove that the claim was nonsensical. Here I am, 6ish years later.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A3','A14','A8','','','','','','','','','','','','',NULL,'Debian + pip + cargo + cabal + praying that nothing breaks ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A25','A5','A4','A14','','','','','','','','','','','','','','','','A15','A5','A2','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Sloth','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','In order to prove it can\'t possibly work…','Y','','Y','','','','','','','','','Debian','Y','','','','','','','','Y','','','home-manager','',''),(976,'1980-01-01 00:00:00',5,'en','1711654006','A2','A2','male','','','','','','','Y','Y','Y','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Started getting into Haskell and tried https://ihp.digitallyinduced.com which uses Nix. After that I used Nix primarily for dev shells','','Y','','Y','Y','','Y','Y','Y','','','Y','','','Y','Y','Y','Y','Y','','A2','A3','A1','','','','','','','','A2','A10','A3','','','','','','','','','','','','',NULL,'Maybe a manual approach?','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A15','A1','A9','A3','A4','A2','','','','','','','','','','','','','','','A13','A1','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Can\'t select 2 answers :(','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The only logical next step from Nix','Y','','Y','','','','','Programming a system with a language','Sharing parts of a system','Reproducible systems','+ Multiple init systems (nice to have)\r\n+ State management (e.g. snapshotting state folders before updates / rollbacks of services)\r\n+ Support more Systems / Archs (Windows, BSDs, Embedded)\r\n+ Better Module System via Types / LSP / better REPL\r\n','Arch / Gentoo / *BSD','Y','','','Y','','','','','','','XMonad','NixOS: Impermanence','','Great work!'),(977,NULL,2,'en','686870405','A2','A3','male','','','','','','','','','','','','Y','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Every time I reinstalled a linux-based OS I had to remember 20 steps in order to get things as I wanted. Drivers/packages etc and I kept forgetting things and dreaded reinstalling.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A8','A14','A4','','','','','','','','','','','','',NULL,'Probably a Setup.md file that describes in plain English any workarounds I needed to do, or drivers I needed to install per machine.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A22','A2','','','','','','','','','','','','','','','','','','','A2','A6','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I don\'t want to have the responsibility for maintaining packages for now - any overlays and patches to upstream packages I hack very dirtily as well just so it works for me.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(978,'1980-01-01 00:00:00',5,'en','1088313377','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','If I remember correctly, I found it randomly, liked the concepts and thus decided to use it (at the time I was a student, so I could afford to change Linux distributions on a whim)','','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','','','','A10','A3','A1','','','','','','','','A3','A8','A6','','','','','','','','','','','','',NULL,'Probably language specific infrastructure for shells, and a dotfile manager for configuration','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A14','A4','A25','A13','A22','','','','','','','','','','','','','','','','A14','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','Same as nix','Y','','','Y','','','','Declarative configuration','Ease of configuration (simple-nixos-mailserver)','Rollbacks','','Probably a dotfile manager','Y','','','','','','','','','','Bspwm, xmonad','Home-manager, simple-nixos-mailserver, nixvim, stylix, nil, alejandra','',''),(979,'1980-01-01 00:00:00',5,'en','12028580','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','A an old colleague of mine was running nix about 7-8 years ago. I gave it a go on my laptop at the time, but switched to macos later.\r\n\r\nFast forward many years, and I started running a desktop server at home. I tried ubuntu, and other distros, but nix popped a few times on hackernews, and I put it on my machine, and stuck with it.','','Y','','','','','Y','Y','','','','','','','','Y','Y','','Y','','A1','A7','A10','','','','','','','','A9','A14','A5','','','','','','','','','','','','',NULL,'Fedora.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I don\'t know where to begin with creating my own derivations.\r\n\r\nI find the ecosystem a bit overwhelming. I don\'t know a good way to iterate on a package development.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','Y','','','','','Nixos-rebuild and rollback','Nixpkgs','Flakes','I would add LSP support.','Fedora?','Y','','','','','','','','Y','','','','','Thanks!'),(980,'1980-01-01 00:00:00',5,'en','2053326169','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A7','A2','A6','','','','','','','','A2','A12','A8','','','','','','','','','','','','',NULL,'I would use what I used before I started using Nix which was containers for everything.','A4','','','','Y','Y','','','','','','','Y','','','','','Y','','Y','','','','A15','A1','A20','A7','A5','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','Y','Y','','','POS','Atomic deployment','One configuration language for everything','Very customizable','I would reduce the memory and processing power needed for evaluation.\r\nAnd I would add an integrated way of dealing with secrets (agenix works ok for now). ','Debian and containers','Y','','','','','Y','','Y','','','','','',''),(981,NULL,2,'en','1742766520','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Certifier','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I wanted to try a different distribution when I needed to do a reinstall due to a fundamental change in my setup.','','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A10','','','','','','','','A5','A3','','','','','','','','','','','','','',NULL,'Arch still','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A22','A9','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don\'t feel comfortable with my knowledge of the language yet',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(982,'1980-01-01 00:00:00',5,'en','676774991','A2','A3','male','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A5','A6','A11','','','','','','','','','','','','',NULL,'System management: homebrew/chezmoi \r\nBuilding: Docker, Make','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A15','A9','A2','A4','A3','','','','','','','','','','','','','','','','A13','A15','A9','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','Y',NULL,'I used it for work but company policy forced me to use macOS','Easy generation of ready to use VMs for aarch64 (like, passing a flake for my config, just run the image without going through an installation process with partitioning, etc and do work there)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(983,NULL,1,'en','258850811','A6','A3','fem','','','','','','','','','','Y','Y','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(984,'1980-01-01 00:00:00',5,'en','229763886','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was telling to my colleague about how unsatisfying it was for me to configure my spare laptop since every time I tried to do something with it I remembered that I did not install a piece of software, or forgot to configure something the way it is configured on my primary laptop. My colleague then told me about his NixOS setup and how he can copy his configuration to his spare laptop in case of emergencies and be up and running in no time.','','Y','','','Y','','Y','Y','','','','','','Y','Y','','','','','','A1','A2','A7','','','','','','','','A9','A3','A6','','','','','','','','','','','','',NULL,'Dockerfile','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I don\'t know what I can and cannot contribute, and who to contact in case I need my contributions to be reviewed.','N','Y',NULL,'I\'d like to use NixOS to host home services (paperless, monica, mealie, game servers) in LXC containers on Proxmox. Can\'t get `nixos-rebuils switch --target-host ...` to work with my configuration. I lack the knowledge to solve this issue.','More troubleshooting documentation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-devcontainer','',''),(985,'1980-01-01 00:00:00',5,'en','436469528','A2','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','','','','','','Y','','','','','','','','Y','Y','','','Y','','A1','A2','A9','','','','','','','','A8','A9','','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','A15','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','','',''),(986,'1980-01-01 00:00:00',5,'en','83458284','A8','A3','male','','','','','','','','Y','','','','Y','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking for a distro to best suit my desktop needs when I realised half the work I was doing while switching was attemping to recreate the same system over and over. I had read all the hype about NixOS and reproducibility, but I didn\'t really begin to understand the desire for it. It eventually occurred to me that this might be a solution to some of my problems. Despite my reIuctance towards SystemD, I resolved to give it a try, and after a few attempts and a fair bit of reading, I had a basic environment up and running. After struggling a little with the lack of immediacy around searching and installing packages compared to dnf or paru etc, I realised everything I did was meaningful and permanent, and the impact of what I had just achieved hit me; my machine was now an abstract entity, able to be raised from the dead perfectly intact, no matter the issue. After a few painful distro hops and mediocre package manager experiences, that *really* meant something. It gave me a sense of being bulletproof, and the freedom to experiment however I wanted without regrets. Now, every desktop and server I have any influence over (bar one, long story) is now on NixOS, and I don\'t expect that to change as long as this distro keeps kicking.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A8','A9','A13','','','','','','','','','','','','',NULL,'Guix, if I could ever get it to install. My previously mentioned SystemD aversion lead me to try it a few times first, but I was not well acquainted with Lisps, nor did I enjoy having to bundle my own nonfree firmware into the install ISO (which didn\'t work anyway). GNU\'s reputation for excellence once again shines through.\r\n\r\nFailing that, I would probably wing it with a minimal Alpine setup or something.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','Woodpecker','A15','A2','A3','A4','A25','A1','A13','A22','','','','','','','','','','','','','','A2','A15','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','1. My derivations are probably not up to standard (not that I recall finding a standard when I looked, tbh).\r\n2. Many are rewrites or do-overs of existing packages which either aren\'t (well) maintained, or to use some specific branch/bleeding edge patch/etc.\r\n3. I don\'t really trust myself to become a maintainer as I don\'t know a good way of regularly querying a bunch of git repos to see when they\'ve released/updated new things. Nix is already a junkyard of abandoned maintainership which I\'ve experienced occasional frustration over, I don\'t want to contribute to that.\r\n4. Extremely based developers including a flake.nix and sometimes even a binary cache, meaning I don\'t need it in Nixpkgs anyway (and can overlay it if I do).\r\n5. Usually the thing shows up on Nixpkgs eventually anyway so my dodgy and typically outdated once off derivation can be abandoned.\r\n6. I\'m an idiot and still don\'t know how to write a module properly.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wrote my NixOS story in the Nix box. C\'mon, man. I get it, they\'re different. But the same question twice?','Y','Y','Y','Y','','','','Reproducible machines and environments','Dev shells (especially with direnv)','Telling Arch users with bricked systems to \"just roll back a generation, it should be fine\"','Death to the old ways. Flakes are all you get from now on.\r\n\r\nSomewhere along the line, packaging Python libraries becomes slightly less awful (though it\'s the Python packaging ecosystem\'s fault, mostly).','See Nix section answer.','Y','','','','','','','','Y','','Hyprland','I know home-manager isn\'t official, but you should probably ask more about it. And by the way, home-manager /should/ be an official part of Nix. This is one thing Guix does sanely and correctly in comparison.','None. I delight in beating my head against the wall until a thing works. That\'s how I managed to do flakes.','I want a NixOS hoodie. A nice thick one with a big print.'),(987,'1980-01-01 00:00:00',5,'en','745251964','A2','A4','male','','','','','','','','','','Y','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','Y','(some time ago) I did not get firefox extensions to work','','','','','','','','','Y','Y','','','Y','Y','I\'ll try it again anyways, because I think its a fundamentally great approach!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I did not get firefox extension to work (some time ago)','I\'ll try it again anyways as soon as my new notebook arrives (Star Labs Starfighter). I think nix is a great approach and I like its rollback capability and defining the system completely via config. Managing lots of machines centrally would be a great thing for the future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Your doing a great job! I think nixos is the future of linux'),(988,'1980-01-01 00:00:00',5,'en','172283210','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','private: at the begin as replacement for Homebrew, later for system and user configuration (nix-darwin + home-manager)\r\n\r\nwork: building some examples how to build a package, a configuration module, NixOS configuration and deployment. I am currently building a POC (a shell env for macOS, Linux and WSL) at the request of colleagues.','Y','Y','','Y','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A3','A10','','','','','','','','A4','A8','A6','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','A1','A10','A5','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Expertise, courage :)','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','Y','','Y','','','','','declarative configuration','rollback in the case of problems after upgrade','','','none. No distro that I have tried since 2000 has been able to convince me for a longer period of time for desktop use. after more than 10 years of RISC OS (1988-2002) and macOS (since 2002), the desktops could not fulfil my expectations.\r\n\r\nI have only used NixOS headless so far.','Y','','','','Y','','','','','','','nix-darwin, home-manager, disko, flake-parts, devenv','',''),(989,'1980-01-01 00:00:00',5,'en','2086248030','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','','','','Y','','','Y','','','','Y','Y','Y','','','','','A2','A3','A1','','','','','','','','A14','A5','A2','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A6','',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(990,'1980-01-01 00:00:00',5,'en','979378504','A4','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','','','Daily driver - everything','A7','I have been always tempted to hope on linux and stop using windows for many reasons mainly performance and customization. was chatting with a friend who uses linux as his dev environment. and he mentioned his struggle on trying to make nixos work. after he explained to me what nixos is briefly. me begin me the next night I downloaded nixos and started to learn literally everything. I didn\'t even know what a dotfile means. yes literally eveything. and slowly nixos started growing in me the further I try to configure and change stuff to my liking. I cant imagine going or hopping to any other distro and losing my config.nix file where i can change stuff on the fly switch reboot and have a fail safe generation because I\'m bound to break something. I know every single comment or video where ever is warning the masses to not use nixos if they are new to linux. But I beg to differ. use nixos if you are new to linux because you will never be able to break anything. <3 NixOs','','','','','','','Y','','','','','','','Y','','','Y','','','','A2','A1','A10','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'cant really imagine nixos without nix. flatpaks maybe as that would be the only option','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I dont think I have the necessary skills ','Y',NULL,NULL,NULL,NULL,'A1','','','','Daily driver','A1','Same story in nixpkgs 🤦','Y','','','','','','','customization','flakes','backup generation','to get a better wiki. to have examples in options page show all sub options would help new linux babies like me GREATLY ','probably arch?','Y','','','','','','','','','','Hyprland','none','none','Thank you for NixOS '),(991,'1980-01-01 00:00:00',5,'en','1219083432','A1','A2','male','','Y','','','','Y','Y','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','A close friends of mine recommends me of NixOS and I was fascinated. ','','Y','','','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','','A2','A1','A4','','','','','','','','A8','A1','A11','','','','','','','','','','','','',NULL,'','A3','','','','Y','Y','Y','Y','','','','','','Y','','Y','','','','Y','','','','A15','A2','A9','','','','','','','','','','','','','','','','','','','A9','A1','A5','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','Y','Y','','Y','','declarative configuration','testing changes without fear','distributed/remote build','Add better documentation.','A bunch of ansible modules.','Y','','','','Y','','','','','','sway','nil (the lsp), nvfetcher, sops-nix, lanzaboote, disko','',''),(992,'1980-01-01 00:00:00',5,'en','1523809530','A2','A3','male','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Colleague of mine promoted it within our corp.','','Y','','','Y','','Y','','','','','','','','Y','','','','','','A2','A3','A1','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'Docker, poetry','A4','','','','Y','','','','','','','','','','','','','','','Y','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(994,'1980-01-01 00:00:00',5,'en','340671289','A5','A2','male','','Y','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','','','','','','','Y','','Y','','','Y','Y','Y','Y','','Y','','A1','A2','A6','','','','','','','','A8','A11','A14','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','Y','','Y','','Y','','A15','A3','A2','A1','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','Y','Y','','','','','','','','','','','','','Y','','','','','','Sway','','',''),(995,'1980-01-01 00:00:00',5,'en','854314350','A2','A3','male','','','','','','','','','','','Y','','','','','','Y','Y','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Found it through the Haskell community ','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','','','','A2','A7','A10','','','','','','','','A4','A6','A15','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','Y','','','','A2','A7','A13','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I am not sure how to get my packages in to nixokgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Found it through the Haskell community. Fell in love with the declarative approach that reminded me of Junos.','Y','Y','Y','Y','','Y','','Determinism ','Upgrade-ability ','Control ','Better networking support, no scripts that frequently break.','I have no idea. Nothing comes close.','Y','','','','','Y','','','','','Sway','','',''),(996,'1980-01-01 00:00:00',5,'en','148969558','A2','A3','male','','','','','','Y','','Y','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','wanted to declaratively configure my system','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A2','A8','A7','','','','','','','','A4','A5','A3','','','','','','','','','','','','',NULL,'universal blue, container based linux system','A1','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','learning curve, not enough time','N','Y',NULL,'AMD 6650 XT making flicker artifacts','Fix for AMD 6650 XT making flicker artifacts',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(997,'1980-01-01 00:00:00',5,'en','456406122','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','DPO / CISO','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','heard of it on Linux Unplugged podcast, and coming from microos wanted to try it','Y','Y','','','','','Y','','','','','','','Y','','','','','','daily driver, non-dev!','A1','A2','A7','','','','','','','','A5','A2','A4','','','','','','','','','','','','',NULL,'homebrew, generic linux','A4','','','','','','','','','','','','','','','','','','','Y','','','','A2','A1','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','heard of it on linux unplugged podcast, wanted to try. ','Y','','Y','','','','','declarative config','versioning / generations','portable os config','add documentation and better \"non-dev\" support\r\nchange: dont focus on flakes: make onboarding and config easier, flakes can be a power user feature but there\'s a gap to fill in the linux workstation landscape and you\'re losing it\r\nremove: flakes as the \'be-all-and-end-all\", nixos is very powerful and can be used for all kinds of purposes, it\'s just unbelievably (and stupidly so) hard to learn as there is 0 documentation that makes sense','Opensuse microOS (still do) and/or vanilla OS','Y','','','','','','','Y','Y','','','home-manager','flakes; way to complicated, too technical and adds zero value','just keep doing what you\'re doing, maybe focus on \"regular\" users a bit more and you\'ll do fine'),(998,NULL,NULL,'en','1618887276',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(999,'1980-01-01 00:00:00',5,'en','836549563','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','','Y','','','','','','Y','','','Y','','','','Y','Y','Y','Y','','','','A2','A6','A1','','','','','','','','A9','A5','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','garnix','A13','A9','A25','A1','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Mostly that the nix community in general has a certain lack of taste, so I know to expect unproductive bikeshedding or denial of rather apparent issues. I know it\'d be a hugely frustrating experience engaging more thoroughly with the project -- there\'s no useful coherent direction, and just doing my own thing would add to the mess. So I limit myself to providing fixes for obvious bugs.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','','Y','','','','','','','A straightforward way to redeploy automatically without granting root ssh access. (E.g. a module for deploy-only ssh access, or some kind of pull-integration with e.g. github actions).','I used Guix before, but it was too slow. Probably Debian.','Y','','','','','Y','','','','','','','',''),(1000,'1980-01-01 00:00:00',5,'en','482887754','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Only when using NixOS.','','Y','','','','','Y','Y','','Y','','Y','','','Y','','Y','','','','A7','A2','A1','','','','','','','','A6','A9','A5','','','','','','','','','','','','',NULL,'Use the tedious process of running into every missing package after I do a reinstall.','A4','','','','','Y','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Haven\'t found something to contribute yet :)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','At first a few years ago (in 2016 maybe) at the recommendation of a colleague.\r\nWhile I did like the philosophy of nix/nixos, it didn\'t work out for me then.\r\nNow I use NixOS on my personal devices and I love it.','Y','','Y','Y','','','','actually declaratively configure all systems in one place (using colmena)','Ability to not accrue unwanted state/configuration (I \"erase my darlings\").','One single consistent configuration language (nix) for all software on the system (though not 100% for everything)','Secret management kinda sucks now; or at least, it doesn\'t integrate well with the way I\'d like to use it.\r\nI\'m using sops-nix for a few things, and that works fine enough. \r\nBut I\'d like nix to integrate with my my passwordmanager, without having to put all the relevant passwords into sops-nix and having to actively maintain that in case a password changes (e.g. my work decides the WIFI password needs changing).\r\n\r\nAlso debugging can be quite frustrating, finding out what breaks a build. Usually it\'s directly related to a change, so that\'s no problem.\r\nBut right now for example, I run into \" Invalid package attribute path \'qt6Packages qt6ct\' \", and I don\'t think I use any Qt packages.','I used Arch Linux before, so probably that.\r\nUsing different shell scripts for managing differences between machines.\r\nMaybe something like ansible, though I prefer something that\'s actually declarative :). \r\nBefore NixOS I tried to keep a lot of stuff in systemd (user) services.','Y','','','','Y','','','','','','sway','I use NixOS on a Raspberry Pi 4B (not sure if that\'d count as embedded :p).\r\nSetting up cross-compiling was kinda complicated so I gave up and just waited a bunch while the Pi did a full nixos-rebuild the first time (the downside of ZFS :\'-) )','flakes, I couldn\'t get into it at the time. I\'d be nice to be able to integrate flakes one file at a time (I have no idea if that\'s possible; I haven\'t looked into it that much).','Keep up the amazing work! I really love the philosophy of NixOS, and the community is super helpful.\r\nI would recommend it to everyone if it didn\'t have such a steep learning curve :\'-) '),(1001,'1980-01-01 00:00:00',5,'en','884966987','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','At Demant we make hearing aids. We need to have reproducible build environments. Docker has been used for a long time but updating old containers is not always working correctly. Developers also make a lot of tools, some may have conflicting dependencies. That\'s when I heard about Nix and tried it out. Now Nix is installed everywhere, through we are working up to deploying NixOS for test setups and workstations.','','Y','','','','','Y','','Y','Y','','','','','Y','','Y','','','','A1','A2','A7','','','','','','','','A1','A6','A12','','','','','','','','','','','','',NULL,'Git and docker plus a bunch of adhoc crappy scripts.','A4','','','','','','','','','','','','Y','','','','','Y','','','','','','A2','A3','','','','','','','','','','','','','','','','','','','','A2','A5','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'ve always feared to update my Debian and hesitant to try out new fancy kernel features due to breakage. With Nix and git, i can reinstall even if everything on disk gets corrupted, and cross pollinate with other users on GitHub.','','Y','','Y','','','','Reproducible','Tweakable','Declarative','A way to easily run proprietary binaries. We have a compiler from Synopsis which currently has to run from Docker. It would be nice to let bubblewrap take OCI containers and run. Like nix Autobahn but more official and robust without guessing libraries.','Docker, podman','Y','','','','','','','','','Y','','Comma\r\nNixos-generators','Dream2nix\r\nPoetry2nix also has some baked in assumptions and fragile heuristics.','I\'ve been thinking about a ninja to nix converter. That would be cool '),(1002,NULL,NULL,'en','133901675',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1003,'1980-01-01 00:00:00',5,'en','318015605','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','Y','','A2','A9','A6','','','','','','','','A2','A8','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A13','A15','A3','','','','','','','','','','','','','','','','','','','A13','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Fairly classic AFAIK:\r\n - used Arch Linux before, already started using Nix as a package manager for reproducible dev envs\r\n - growing annoyance by difficulties in sharing configuration between different/new machines in a unified fashion\r\n - a friend finally recommending NixOS as a concrete motivation','Y','Y','Y','','','','','Declarative system specification','Package availability in nixpkgs ','Rollbacks','decrease the download size of upgrading a non-trivial NixOS system\r\n(not strictly NixOS-related, but most pressing in this context)','Going back to Arch Linux, or trying out sth Nix-like (i.e. guix)','Y','','','Y','Y','','','','','','i3',' - attic\r\n - nvfetcher\r\n - statix, deadnix\r\n - nix-output-monitor\r\n - comma','',''),(1004,'1980-01-01 00:00:00',5,'en','2004017955','A2','A2','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','Programming Hobbyist','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','When I started using NixOS.','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A3','A5','','','','','','','','A8','A3','A12','','','','','','','','','','','','',NULL,'I would probably still be using my system package manager of a rolling release linux distribution, and to manage my configuration files I\'d use a setup with GNU Stow and symlinks.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A15','A25','A24','A6','A11','A12','A5','A2','','','','','','','','','','','','','A6','A5','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I was using Arch linux as my daily driver and was interested in the declarative nature of NixOS, the idea of having all of my system configuration declared in a single place instead of being cluttered through the system was cool. Not having to keep a list of tweaks I did to my system really appealed to me, so I tried it in VM and after that went successfully I started using NixOS as my main system.','Y','','','','','','','Declarative nature of system configuration.','Single source of truth for all my system (all system configuration and home configuration (using home-manager) live inside of a single git repo), this along with the declarative nature of NixOS allows me to use tmpfs as root to be able to have an uncluttered system that doesn\'t accumulate cruft.','Easy development environments/shells.','Stabilize flakes (or whatever it evolves into while stabilizing) and make it the recommended way to use NixOS, since I think flakes are a really cool feature (stating flake inputs inches Nix/NixOS towards what I love, increased reproducibility by being declarative instead of ad-hoc like channels), but the split ecosystem between flakes and non-flakes is an awkward situation and doesn\'t allow the full development force of the Nix community ecosystem to be unified under a recommended way to do things.\r\nImproving language specific packaging would also be good (some of them are already good, but some languages that are used less within the Nix community leave a little to be desired).','A rolling release distribution (probably Arch).','Y','','','','','','','','','','XMonad ','The nixpkgs binary cache is really nice and combines the power of a source distribution with the ease of use (and speed of downloading updates :P) of a binary distribution, search.nixos.org is indispensable to discover packages in nixpkgs and nixos options, nix-community/home-manager is really cool since it extends the NixOS concept of declarative config to the user\'s home, and nix-community/impermanence is very nice for making tmpfs as root easier to use.','','I really love Nix and NixOS, sometimes they\'re a pain to deal with (packaging obscure applications with byzantine build systems), but they provide a super impressive technical solution to packaging and dependencies (Nix) and system configuration (NixOS) that brings sanity to the otherwise insane world of packaging (imperative build systems that are different for each distribution, python dependency hell, etc.) and system management (things such as editing random dot files, which will surely be forgotten when reinstalling :), or the accumulation of cruft that a system with updating), that makes it so I don\'t see myself returning to regular linux distributions and packaging anytime soon. Thanks to everyone working on Nix, I really love it <3 '),(1005,NULL,2,'en','1537355487','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','','','','A4','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A3','A10','','','','','','','','A8','A4','A12','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','','','','A4','','Y','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1006,'1980-01-01 00:00:00',5,'en','977156013','A5','A2','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using Nix after being annoyed with all of the individual tools for managing packages and dependencies per-language and per-system. This started by installing Nix on Fedora Silverblue (which was not straightforward at the time). I started using Nix to first manage my global user dependencies (shells, tooling, etc) and for project dependencies (compilers, toolchains, etc).\r\n\r\nNix made my life a lot easier after I learned how to use it and ensured that I was able to get the latest versions of dependencies in one place rather than dealing with 20 different tools that are used relatively infrequently.','Y','','','','','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','','A1','A7','A2','','','','','','','','A6','A2','A8','','','','','','','','','','','','',NULL,'I previously lived in a world where Nix didn\'t exist, I don\'t know how I would survive without it.\r\n\r\nI would likely go back to using an assortment of individual tools or trying to rely on the native OS package manager for the packages that are available for it.','A2','','','','Y','Y','Y','','','','','','','','','','','','','Y','','','','A9','A1','A10','A15','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I started using NixOS after getting annoyed with Fedora Silverblue and it\'s relatively unstable package management, on top of the need to constantly reboot or replace default packages in order to get what I would consider to be basic features provided by other Linux distributions, such as hardware accelerated H.264 encode/decode (due to patent issues). While using Fedora Silverblue I was also using Nix to manage my global user packages and to develop software with local dependencies, so I was already familiar with Nix before switching to NixOS. My main interest with NixOS was the availability of Nix (and nixpkgs) and the declarative and reproducible nature of the OS itself. Being able to share an OS config that can be closely reproduced, especially when managing a fleet of machines is a dream come true.','Y','','Y','Y','','','','Atomic upgrade and rollback','Declarative configuration','Reproducibility','','I would likely switch back to Fedora for desktop/lab use and RHEL (or one of it\'s derivatives) for production servers.','Y','','','','Y','','','Y','','','','','',''),(1007,NULL,1,'en','1599936407','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1008,NULL,NULL,'en','1435903613',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1009,'1980-01-01 00:00:00',5,'en','1834994509','A5','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','Y','','','','','','Y','','','','The best way of doing things (flakes, pointing to a specific revision for actual reproducability) was never the official way','I think I was oversold on unifying configuration. Too often there\'s an impedence mismatch where the options someone has contributed are great, but all of the other options you just put into a config string, at which point why not put everything in the config string','Y','','','','','','flakes stabalized',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Was consistently frustrated by all the asterisks on the things that were the reasons I tried NixOS. Reproducability? Yeah, but only if you pin to a specific commit of nixpkgs, which nothing does by default. Unified config? Sorta, if you want a basic nginx server it\'s fine and dandy, if you want to use any interesting options than just stuff your nginx config in this string and call it good. And also the config for the only user on my system is separate from the system config? What\'s home manager? I\'m already learning a new language I can\'t learn that too. Swap config while running? Well yes but actually no. The thing that starts/stops systemd services is specific to systemd and nothing else changes live unless it can be done by adding/removing files','I don\'t know. Stabilize flakes, have the courage to make the good option the official and the default. Make compile times hurt a little less.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none','Tried to use just nix as a build manager but didn\'t really like it, not enough benefit to justify not using the usual in whatever ecosystem (cargo for rust, rubygems/bundler for ruby) though I don\'t have any C or C++ projects',''),(1010,'1980-01-01 00:00:00',5,'en','1041662335','A3','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking for a better language to write YAML/JSON config files\r\nI started with evaluation to JSON, then using as developer environment, and then now is my OS.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A2','A3','A1','','','','','','','','A8','A12','A4','','','','','','','','','','','','',NULL,'BMHATK.\r\nI would like to say Guix but to honest is hard to know that nix exists, guix is even harder, maybe docker but, I don\'t have HPC at work.\r\nFor my initial use case, wirte JSON/YAML, I\'d use CSS.','A4','','','','Y','Y','','','','','','','','Y','','','','Y','','Y','','','','A1','A2','A26','','','','','','','','','','','','','','','','','','','A26','','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started with sugar, then alcohol, then cannabinoids, ..., and finally NixOS\r\nNo more anxiety symptoms since then. Except when I had to enable flakes, no sure why isn\'t enabled by default.','Y','','','','','','','Declarative configuration','rollback','Start stop of related services','Support for other init systems\r\nEnough money to invest in marketing like canonical does\r\nEnough time to invest in security/LTS like Red Hat does','ArchLinux','Y','','','','','','','','','','Enligthenment','DevShell, DevEnv, DevBox, Flox','',''),(1011,'1980-01-01 00:00:00',5,'en','1918259770','A3','A2','male','','','','','','Y','','','','','Y','','','','','','Y','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A7','A3','','','','','','','','A8','A9','A11','','','','','','','','','','','','',NULL,'','A7','','Y','','Y','Y','','','','','','','','Y','','Y','','','','Y','','','','A15','A13','A10','A3','A1','A2','A17','','','','','','','','','','','','','','','A10','A2','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','Y','Y','Y','','','','Declarative configurations','Great abstractions for managing services','','Not exactly NixOS, but I\'d factor out the module system, and integrate home-manager together with nixpkgs, have it as a first class citizen.','Probably MicroOS or Fedora Silverblue','Y','Y','','Y','','Y','','','','','Hyprland, Sway','Hydra, home-manager','NixOps','Keep up the great work! I love the direction we\'re moving torwards, and how the community is growing.\r\n\r\nI hope I can get even more involved and help out more and more! I think it\'s a matter of time until Nix becomes a mainstream technology stack.'),(1012,NULL,1,'en','614930233','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1013,NULL,2,'en','397180448','A8','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Read about it on /r/programming, and fell in love with the idea and ecosystem','','Y','','Y','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A3','A8','A7','','','','','','','','A14','A13','A1','','','','','','','','','','','','',NULL,'SUSE','A1','','','','Y','Y','','','','','','','Y','','','','','Y','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Time constraints (kids) but i have contributed a couple small patches before',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1014,'1980-01-01 00:00:00',5,'en','1548022669','A2','A3','male','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I first used it on ArchLinux, because I liked the development environments.','','Y','','','','','Y','','','','','','','','Y','','','','','','A1','A2','A7','','','','','','','','A12','A8','A4','','','','','','','','','','','','',NULL,'Guix','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A4','A2','A15','A9','A22','A1','','','','','','','','','','','','','','','A15','A4','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','90% - time\r\n10% - i still have to learn how to build a package of my own properly, the documentation is not very clear.\r\n','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My path was: Windows (10 years) -> Arch Linux (8 years) -> NixOS (1 year and 6 months).\r\n\r\nWhat hooked me initially was the configuration part: change something, a new generation is born and you can always go back.\r\nNow, the development environments is what keeps me on NixOS. Every project I work on in the company now has a flake.nix\r\n\r\nA very big bonus point of NixOS: 6 months ago I changed my work laptop, I just cloned a repo, ran the nix install from the flake and after 1 hour I everything was back. I just copied the KDE config files from the old one, and that was it.','Y','','','','','','','Development shells','Generations','Home manager','For my use case, it\'s pretty good. I just miss the ca derivations.','Guix','Y','','','','','','','','Y','','','N/A','N/A','Thank you!'),(1015,'1980-01-01 00:00:00',5,'en','1073288662','A2','A4','male','','','','','','Y','','Y','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','','','','','','','','Y','','Y','Y','','','A2','A8','A1','','','','','','','','A11','A2','A8','','','','','','','','','','','','',NULL,'docker/podman','A4','','','','','','','','','','','','','','','','','','','','','','concourse ci with nix generated containers','A15','A4','A17','A2','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','reproducibility','configuration of the whole system','','','','Y','','','','','','','','','Y','i3','','',''),(1016,NULL,3,'en','126651250','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1017,NULL,NULL,'en','1567772446',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1018,'1980-01-01 00:00:00',5,'en','565138521','A8','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A3','','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A6','A14','A4','','','','','','','','','','','','',NULL,'Nothing','A5','','','','Y','','','','','','','','','','','Y','','','','','','','','A9','A13','A6','A2','A3','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Gradual increasing frustration with Microsoft and Windows. Can\'t upgrade to Windows 11, decided to move early.\r\nExperienced (ex-)Linux user, already use NixOS on the server so decided to use it for my destop too','Y','','Y','','','','','Rollbacks','Reproducibility','Large package set','More tests - manual testing at the current rate of change isn\'t sustainable','Debian','Y','','','','','','','','','','Budgie','age-nix for secrets management','Dotnet tooling is under documented. Still managed to hack something together but it wasn\'t an easy process','Thanks for the work you do. It means a lot.'),(1019,'1980-01-01 00:00:00',5,'en','1624406090','A2','A5','male','','','','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','Y','Y','','','A3','Doing a package manager in a functional programming style convinced me. Haskell packages are automatically included in Nix.','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','','A1','A7','A3','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'Debian','A4','','','','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','A13','A3','A4','','','','','','','','','','','','','','','','','','','','','','','A4','',NULL,'N','Y',NULL,'Over the years I tried again and again, but I always hit a roadblock relatively quickly and cannot get help.\r\nI have installed NixOS on a machine, but then USB-Ethernet adapter is no longer supported, although it worked throughout the installation. The LightDM login prompt does not show up anymore, although it worked once after the installation.\r\nNixPkg installation on Debian does not work in any way. I have installed nix-bin package, but then nix-env and nix-shell and most other nix commands cause the machine to kill all sessions. This only happens on an AMD machine, not on an Intel one. Alternatively I tried to chroot into a NixOS installation from Debian but got an incomprehensible error message about making the chroot directory private.\r\nNixOS Discourse was no help so far.\r\nMy Haskell packages are automatically included in NixOS, which is great. But some of them did not work out-of-the-box. It was very hard to get help to fix them. Eventually, I got most help by trying to submit pull requests.\r\n','Better documentation, better help.\r\nFlatpak documentation is a good example. It explains for every build system (autoconf, cmake) how to configure a package.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','It would be great if Nix would work on just any major OS, that is, MacOS, MS Windows, Debian etc. Such that I can concentrate on one packaging system. It seems that with WSL we finally also got Windows support. I have not tried, though. I invested some time in Flatpak, but Flathub dropped i386 (i.e. 32bit) support recently. And flatpak does not support CLI programs well, because you have to add desktop ballast to any program. And its sandboxing limits user data to the HOME directory, whereas it does not encapsulate safely anyway.'),(1020,'1980-01-01 00:00:00',5,'en','2033139514','A2','A4','male','','Y','','','','','Y','','','','','Y','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','','','','','','','Y','','','','','','A1','A3','A7','','','','','','','','A8','A5','','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A13','A3','','','','','','','','','','','','','','','','','','','','A13','A3','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1021,'1980-01-01 00:00:00',5,'en','1080864533','A8','A6','-oth-','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','','','Y','','','','','','','Y','','','','A1','A7','A9','','','','','','','','A5','','','','','','','','','','','','','','',NULL,'Arch','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I don\'t have (or want) accounts on Microsoft ecosystems such as GitHub','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','Y','','','','','','','','','Y','','','','','','','Y','Y','','','','','I find it really annoying that Eelco and many of the other developers of Nix are only interested in flakes but are using the nominally \"still experimental\" status of flakes to avoid the responsibility of documenting them fully in the official manuals. '),(1022,'1980-01-01 00:00:00',5,'en','1319873994','A2','A3','male','','','','','','','Y','Y','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started my first job as a Haskell developer and the team was using Nix there.','','','','','','','Y','','Y','','','','','','Y','Y','Y','','','','A3','A2','','','','','','','','','A8','A4','','','','','','','','','','','','','',NULL,'Honestly no clue, never cared too much about what my package manager is. Nix is just so useful with the shells that that\'s my go to. So I guess something that also supports these kind of dev shells?','A4','','','','Y','','','','','','','','','','','','','','','','','Y','','A13','A1','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','','','','A2','','Limited understanding of how to.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Gaming','A3','People at a new job were using it, and the job also used Nix, so I thought it would be convenient to use as my colleagues would be able to support me and I would have Nix already installed. I also just really liked the idea of NixOS (at least how those same people sold it to me, and they were right). I\'ve been using it ever since.','Y','','','','','','','Being able to add comments to my OS configuration. It\'s so useful I can comment why I installed a certain app, or why I configured something like I did.','Easy overview of what exactly is installed on my system (and combined with the comments why it is installed).','Being able to share my config over multiple computers with minimal effort. I have a desktop I don\'t use very often because I\'ve been out of the country a lot lately, but whenever I\'m home I just git pull and rebuild, and my system is fully up to date. I don\'t have to remember what software to install and where, it\'s all just there.','Add: Make home-manager a first-class part of it\r\nRemove: The need for semicolons (yea silly one, can\'t really think of anything else that I would remove, but I\'m hardly an expert so I don\'t actually know the weird edge cases, so don\'t listen to me here)','I\'d probably still be on Ubuntu. That\'s where I started using Linux, and I never found that stuff like Arch was really interesting enough to switch to because it doesn\'t do anything fundamentally different than Ubuntu. I tried NixOS because it\'s fundamentally different, even though it\'s perhaps harder to use. Or I would have tried some other declarative OS, but haven\'t looked into any yet.','','','','','','Y','','Y','','','','','',''),(1023,'1980-01-01 00:00:00',5,'en','108402524','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Easy to replicate and maintain, rollback, large pkg repo.','','Y','','','','','Y','Y','','Y','','','','','Y','','Y','','','','A2','A1','A7','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'GNU Guix','A1','','','','Y','Y','','','','','','','','','','','','','','','','','none','A3','A2','','','','','','','','','','','','','','','','','','','','A22','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of knowledge and time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','Large repo','Maintainability (declarative conf)','Rollback','NIX lsp with completion and linter for noxos options.','GNU Guix','Y','','','','','','','','','','sway','home-manager','','Doing great overall.'),(1024,'1980-01-01 00:00:00',5,'en','690318601','A2','A2','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','it\'s cool','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A8','A13','A4','','','','','','','','','','','','',NULL,'gentoo','A1','','','','Y','Y','','Y','','','','','','Y','','Y','','Y','Y','Y','','','','A2','A15','A17','A20','A24','','','','','','','','','','','','','','','','','A2','A15','A17','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','lazyness','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','it\'s cool\r\n','Y','Y','Y','Y','','','','Declarativity, specifically with a very expressive programming language','','','','Gentoo maybe? not sure, used arch before','Y','','','Y','','','','Y','','','hyprland, river, swayfx','','','Love you guys and what you\'re doing, keep it up <3'),(1025,'1980-01-01 00:00:00',5,'en','1042698991','A5','A2','male','','','Y','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A3','A friend in my dorm was using NixOS, and I figured I\'d try it out. Nix came with it.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A3','A5','A1','','','','','','','','A7','A8','A5','','','','','','','','','','','','',NULL,'Presumably Docker, or something similar.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A3','A1','A15','A13','','','','','','','','','','','','','','','','','A13','A14','A23','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Poor documentation, inconsistencies in best practices, and the desire to not be a maintainer of yet another thing.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','A friend in my dorm was using NixOS, and I figured I\'d try it out. Now I\'m stuck with it, because other choices seem worse.','Y','','Y','','','','','Declarative, file-based description of most of the software on my laptop.','Ease of trying out various programs without them clobbering too much global state.','','I would add better program/environment isolation support, something along the lines of what Spectrum is working on, or similar to QubesOS. I would make any small program integration inconsistencies go away. And I\'d like for NixOS modules to not feel... as esoteric or awkward as they do.','Presumably something ostree based.','Y','','','','','','','Y','','','','','','Thank you all for creating and working on NixOS, I truly appreciate it!'),(1026,'1980-01-01 00:00:00',5,'en','1496202365','A6','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A7','A5','','','','','','','','A7','A4','A13','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','Y','','','','','','','','Y','','Y','','','','','','A15','A22','A9','A13','A24','A2','','','','','','','','','','','','','','','','A15','A22','A9','','','','','','','','','','','','','','','','','','','','','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','','','','','Fedora Silverblue','Y','','','','','','','Y','','','','','',''),(1027,'1980-01-01 00:00:00',5,'en','430918948','A8','A3','fem','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','','Y','Y','','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','A2','A7','A10','','','','','','','','A13','A8','A2','','','','','','','','','','','','',NULL,'','A1','','','Y','Y','','','Y','','','','','','','','Y','','Y','','','','','','A8','A9','A15','','','','','','','','','','','','','','','','','','','A22','A17','A19','','','','','','','','','','','','','','','','','','','','Y','','','A1','','It\'s hosted in GitHub. If it was in some other src hosting service like GitLab I would have considered','N','N','SELinux support',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Consider moving to (self-hosted) Gitlab. Use Hetzner instead of S3 🤧'),(1028,NULL,1,'en','1565818999','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1029,'1980-01-01 00:00:00',5,'en','1714349116','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I had interest in packaging stuff, previously used paludis on Gentoo. Then I discovered Nix*, started to use Nix packages first, then full NixOS and ever since (for about a decade now).','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A9','A1','A2','','','','','','','','A9','','','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A3','A17','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','composition: import from a bunch of custom expressions','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I had interest in packaging stuff, previously used paludis on Gentoo. Then I discovered Nix*, started to use Nix packages first, then full NixOS and ever since (for about a decade now).','Y','','','','','','','rollbacks - it\'s easier to experiment when earlier \"systems+configs\" remain available reliably','lots of packages in good shape; things relatively often just work out of the box','FLOSS','I see a challenge in organizing the community, NixOS project\'s infrastructure, etc. Adapting to relatively fast growth of the community isn\'t easy.','Another Linux distro surely, but hard to guess which.','Y','','','','','','','','','Y','xmonad','','I haven\'t stopped, but `nix profile` turned out quite disappointing for me (in particular when compared with `nix-env`).',''),(1030,'1980-01-01 00:00:00',5,'en','1182035928','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','A2','A7','A1','','','','','','','','A8','A4','A11','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A24','A15','A1','A2','A10','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','atomic configuration changing','service and application configuration','very quick system reinstallation','','Arch ','Y','','','Y','','Y','','','','','sway','nix-index, comma, nixpkgs-review, nix-any-shell','',''),(1031,'1980-01-01 00:00:00',5,'en','669696773','A2','A3','male','','Y','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A2','Reproducible build!!','','','','','Y','','','','Y','Y','','','','','Y','','','Y','','','A2','A7','A5','','','','','','','','A13','A14','A6','','','','','','','','','','','','',NULL,'I don\'t know but fortunately exist.....','A1','','','','Y','','Y','Y','','','','','','','','Y','','Y','','','','','','A15','A4','A3','A9','','','','','','','','','','','','','','','','','','A3','A4','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Not a fan of Debian but I like their developer selection model, which happens in DebConf with Web-of-trust, contract signing and endorsement from existing 3 developers at least instead of radom people calling themselves NIX DEVELOPER','N','N','Good security model in package manager, Bad security in OS itself, Security through obscuriry is an excuse. Linux distros in general is insecure (Android, QubesOS amd ChromeOS are not Linux distros) [1] but Flatpak, wayland etc are making a good progress. Whonix lead criticized NixOS for this reason[2]. Fedora good track pf adopting state-of-art security model for example early adopter of secure boot in Linux, NTS support, FDE with LUKS2 and argon2id, selinux support, Wayland by default etc\r\n[1] https://madaidans-insecurities.github.io/linux.html out-of-date but most points still stands\r\n[2] https://www.whonix.org/wiki/Dev/Operating_System#NixOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Thanks for taking this survey. I hope you peeps will improve NixOS security'),(1032,NULL,2,'en','158069001','A5','A3','male','','Y','','','','','','Y','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I actually started by playing with NixOS before I started using Nix by itself for projects. It started with me needing to get work projects running on my NixOS desktop which required me to learn how to setup development environments using Nix.','','Y','','','','','Y','','','','','','','','Y','','','Y','Y','','A2','A7','A1','','','','','','','','A8','A6','A10','','','','','','','','','','','','',NULL,'Likely a combination of containers and the native package manager','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A4','A3','A15','A2','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Frustrated with Gentoo\'s Portage breaking all the time and giving cryptic error messages, I was looking for something that would give me the same flexibility. NixOS happened to fit that bill perfectly and then some.','Y','','Y','','','','','Declarative system config','Ease of rollback','The ease of adding custom packages to the environment','','Likely some combination of ansible and Debian. ','Y','','','','','','','','','','i3','','',''),(1033,'1980-01-01 00:00:00',5,'en','331253835','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','It seems like the one way to do it properly.','','Y','','Y','','','Y','','','','Y','','','Y','Y','','Y','','','','A1','A10','A2','','','','','','','','A4','A5','A6','','','','','','','','','','','','',NULL,'Arch','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A25','A17','','','','','','','','','','','','','','','','','','','A25','A17','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Need to go to like Nix.camp to get like a deepdive to learn how to, as I have not a good clue, and it feels a bit daunting to do alone.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Commit to fully learning nix.','Y','','','','','','','Configurable home-manager modules','Set certain things at boot, which is easier and transferable to other devices with the same set-up','Have all the configurations in a single place.','I\'d add more options and modules for the specific software I use. For example, set the numlock enabled at boot in the TTY. And other small nitpickings. ','Arch','Y','','','','','','','','','','Sway','Nix-shell-info. And various things to make learning about nix easier within the shell.','Certain programs I did use on Arch, but i am unable to get working in Nix.','To have like a Wayland-only ISO ready for people see how easy it is to use NixOS with Sway.\r\n\r\nI get that people use KDE and Gnome, but I find that Wayland is well-supported within Nix, and it would be nice to see it showcased so others might try it.'),(1034,NULL,NULL,'en','1028021328',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1035,'1980-01-01 00:00:00',5,'en','1138026953','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A colleague pointed out NixOS to me. At first Nix (the language) caused me to disregard it, but after a while the benefits of NixOS pulled me in anyway. Building my system config necessitated learning the language, and after I while I also started contributing to nixpkgs.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A9','','','','','','','','','','','','','',NULL,'Ansible','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'ve had a growing preference for declarative systems for years, due to the amount of manual work involved with managing workstations and servers. This resulted in working with Ansible, dotfiles directories and even QubesOS disposable VMs. NixOS seems to be the culmination of my story, at least for now.','Y','','Y','','','','','Declarative system configuration','Shared configurations between systems','Mostly stateless systems (leveraging impermanence)','I would make the Nix language much simpler, to make it easier for new users','Fedora Silverblue or some other immutable Linux OS','Y','','','','','','','','','','Qtile','home-manager, impermanence, agenix, lanzaboote, disko, devenv','',''),(1036,'1980-01-01 00:00:00',5,'en','1616621454','A2','A2','-oth-','non-binary','','','','','','Y','Y','Y','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because it was what came with NixOS','','Y','','','','','Y','Y','','','','Y','','','Y','Y','Y','','Y','','A6','A2','A3','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'Ansible, Docker, etc','A2','Y','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A3','A5','A4','A1','','','','','','','','','','','','','','','','A15','A2','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I liked what it provides, and it was the better option out of NixOS and Guix','Y','','Y','','Y','Y','','declarative system configuration','flexible module system','easy rollbacks','Better ways to keep parts of config private (this is DIFFERENT from secrets). Right now there\'s git-crypt (broken on non-dirty git trees), just adding your files to gitignore (broken because Nix simply checkouts the git repo to Nix store without the files, although you can make Nix treat it as a path by removing .git (file URLs are broken altogether at the moment)), and finally the option I went with is using a Nix plugin, but I really wish I didn\'t have to.\r\n\r\nAlso I often wish there were better ways to run multiple instances of a service.\r\n\r\nAnd a small pet peeve - nixos-rebuild --flake ... --target ... uses the build host\'s hostname when choosing the nixosConfiguration to build, while imo it should use target host\'s hostname.','If Nix still existed, somebody else probably would\'ve built an OS on top of it. Otherwise, Arch or Gentoo for personal devices, Arch or RHEL-based distros for servers. ','Y','','','','','','','','','','sway','home-manager, nix-init, nix-output-monitor, nix-plugins, comma, nix-gaming','nixpkgs-wayland (everything I want is already packaged in nixpkgs)','I love Nix, thanks to everyone who keeps making it better :3'),(1037,'1980-01-01 00:00:00',5,'en','1445590802','A1','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Other','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','Y','','','','','','Y','','','','','','','','','','','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1038,NULL,NULL,'en','711224823',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1039,'1980-01-01 00:00:00',5,'en','399294166','A5','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Was distro hopping heard about nixos on Linux Unplugged. Gave it a shot and it stuck','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'Probably popos. ','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','Y','','','','','','','','','Ubuntu','Y','','','','','','','Y','','','','','',''),(1040,NULL,2,'en','2046180215','A2','A3','male','','Y','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','My internship advisor gave me a laptop with nixos installed. I use it since then.','','Y','','Y','','','Y','','','','','','','Y','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A8','A2','A5','','','','','','','','','','','','',NULL,'probably arch linux','A7','','','','Y','','','','','','','','','','','','','Y','','Y','','','','A2','A15','A4','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','NUR','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1041,NULL,1,'en','506022027','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1042,'1980-01-01 00:00:00',5,'en','1449259222','A2','A3','male','','Y','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was looking for a more efficient replacement of Dockerfile','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A8','A11','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','buildbot, garnix','A2','A15','A9','A3','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','','','','','','Memory evaluation overhead','archlinux','Y','','','','','Y','','','','','sway','nixos-anywhere\r\ndisko\r\nnix-update','',''),(1043,NULL,1,'en','1905463444','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1044,NULL,1,'en','2080385962','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1045,'1980-01-01 00:00:00',5,'en','26178194','A2','A5','male','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A2','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A10','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','Y','','','','','','','','A2','A3','A15','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don\'t know how to contribute','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','herbstluftwm','','',''),(1046,'1980-01-01 00:00:00',5,'en','788187687','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Employer choose Nix.','','Y','','','','','Y','Y','Y','Y','Y','','','Y','','Y','Y','Y','Y','','A1','A2','A7','','','','','','','','A1','A8','A11','','','','','','','','','','','','',NULL,'Guix, maybe, but that\'s a Nix fork, so it feels like dodging the question.\r\n\r\nGentoo or FreeBSD Ports, maybe?','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A3','A4','A5','A15','A13','A2','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Employer choose NixOS.','Y','Y','Y','Y','','','','The nixos/tests/ test suite: It is a pile of proofs that hundreds of services are in a working state and is simultaneously example configuration for them.','Keeping all a machine\'s configuration in one git repo (with meaningful, reviewable commit diffs)','Boot-time rollback to previous known-good state. I don\'t often use it, but it\'s so freeing to know it\'s there if I need it.','Better binary trust. Mostly, this is having multiple, independent build farms that publish their built-artifact hashes, having binary-cache fetches check that a configurable set of build farms agree on the hash before fetching it, and having an exception process for packages that can\'t yet be built reproducibly enough for this. The rest is making the stdenv bootstrapping binary as small and legible as possible.','Gentoo or FreeBSD?','Y','','','','','Y','https://git.scottworley.com/auto-upgrade-with-pinch','Y','','Y','','The public Hydra server with all the build logs. This is great for determining how long something has been broken.','I can no longer run \"nixpkgs-review rev HEAD\" like the PR template directs me to because it runs out of RAM and is killed before it can complete. My computer has 8GB of RAM.\r\n\r\nI stopped trying to use flakes because there was a bug where flake inputs could not be used in `restrict-eval = true` mode because Nix was incorrectly referring to the input *source* rather than the fetched copy in /nix/store/ after fetching it. I\'d link the issue here, but this survey has an \"Oops, you took to long, so we threw away all your answers\" misfeature that\'s already bitten me once, and I couldn\'t locate the open issue quickly enough.','Survey folks: Thank you for running this survey.\r\n\r\nNix community generally: Thank you for all your contributions.'),(1047,NULL,1,'en','1006124604','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1048,'1980-01-01 00:00:00',5,'en','821459230','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','N','N','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1049,NULL,1,'en','260941252','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1050,'1980-01-01 00:00:00',5,'en','2039820549','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','N','N','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I have yet to begin to use it regularly. I am struggling w/ configurations and struggling to get into using NixOS. I love that idea, but having a hard time to translate example into my own practical use. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1051,'1980-01-01 00:00:00',5,'en','646172148','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','System configuration in a file sounds cool. :)','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','Y','','','A1','A2','A9','','','','','','','','A12','A13','A5','','','','','','','','','','','','',NULL,'Guix ;)','A2','','','','Y','Y','','','','','','','','Y','','Y','','','','Y','','','','A7','A1','A15','A9','A2','A3','A17','','','','','','','','','','','','','','','A7','A12','A6','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Declarative system configuration rabbit hole.','Y','','Y','Y','','','','Declarative system configuration','Atomic updatws','Rollbacks','Update Nix module system pls.','Guix ;)','Y','','','Y','','','','Y','Y','','sway, bspwm','','',''),(1052,NULL,2,'en','610130657','A5','A5','male','','','','','','','Y','','','','','Y','','','','','','Y','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to avoid the manual upgrade process associated with switching from one Ubuntu release to another. I wondered if Nix could replace Docker for some use cases.','','','','Y','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A1','A6','A7','','','','','','','','A14','A3','A4','','','','','','','','','','','','',NULL,'Ubuntu ','A1','','','','','Y','','','','','','','','','','','','','','','','','','A13','A1','A18','A9','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','I cargo culted a default.nix that I import into my configuration.nix. Is that an overlay?','A2','','I don\'t understand Nix and derivations and community conventions well enough.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I thought it would be easier to maintain than periodic Ubuntu upgrades.','Y','','Y','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1053,NULL,1,'en','1425409112','A2','A2','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1054,'1980-01-01 00:00:00',5,'en','873497201','A5','A3','male','','Y','','','Y','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I hate bitrot. I have found nix extremely painful/annoying and notably flawed, but not nearly as annoying as hearing \"well it worked on my machine\". Nix still has a long way to go but I hope I can help get it there over the next 10 years.','Y','Y','','Y','Y','','Y','Y','','','','Y','Robots','Y','Y','Y','','','Y','','A2','A6','A1','','','','','','','','A15','A4','A14','','','','','','','','','','','','','1. Nixpkgs (not nix CLI or the nix language) has excessive amounts of obfuscation and complexity. It should not take weeks to figure out where \"callPackage\" is defined. Accepting PR\'s that do stuff like split up lib into pureLib and stdenv, and make things like pureLib hierarchical (instead of recursive, because it does not need to be recursive). The focus shouldn\'t be more features, it should be compressing the existing spaghetti code into a streamlined understandible format.\r\n2. Work on support for mixing multiple versions of nixpkgs. E.g. python 3.6 from a super old nixpkgs commit working with python 3.11 from the latest stable channel. This would be by using patchelf to prevent packages from ever using LD_LIBRARY_PATH\r\n3. Having a package say what it is modifying (what binaries did it add to path, what services did it start, what ENV vars did it add). E.g. the ability to just install just the \"python\" binary, not \"pip\".\r\n4. Don\'t write *more* documentation rewrite/improve/overhaul the existing documentation. Theres so much documentation and so little I actually want to read.\r\n5. Consider adding something to the name so nix will actually return more than 0 relevant Google search results. ','I would be writing my own content-addressed package manager for the rest of my life, and using docker and WASM in the meantime.','A7','','','','','','','','','','','','','','None (I use nix for stability, why would I enable an unstable feature)','','','','','','','','','A15','A7','A2','A4','A1','A3','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','Y','Directly import packages from Github urls','A6','',NULL,'N','Y',NULL,'Adding new/custom tools involves time and high cognitive load. \r\n\r\nNixOS is highly incompatible with existing tutorials; e.g. a class assignment/tutorial says do X, Y, Z by Friday. Bob does it in 1 day on Ubuntu, but I have to spent 8 days figuring just how to do X in nix. Nix has very bad support for out-of-channel packages like ROS or python 2.6 (yes both were required for class work in 2023)','Better ease of use. There needs to be a apt-get equivalent that auto-edits the nix-conf. But, because nix lang isn\'t homoiconic, that\'s going to be a major challenge/problem. So if nix would deprecate the \"with\" statement, I would use the tree sitter parser to make an analog of apt-get install, as well as a graphical interface/store which I think would make it much more practical to use NixOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nixpkgs is literally unusable for me without lazamar.co.uk/nix-versions/ I use it more than I use nix search (daily). Patchelf is fantastic. All the other nix-tools I use are tools written myself; a syntax highlighter, comprehensive dev-evironment framework, nix-lang-bundle (like a JavaScript bundler for nix code), some searching tools, some auto-rewrite tools, etc.','niv, most of the *2nix tools. ','I complain a lot, but it doesn\'t mean the work you guys do isn\'t appreciated! Thanks for making a package system that categorically outclasses all others.'),(1055,NULL,2,'en','1106617452','A2','A4','male','','','','Y','Y','','','','','','','','','','','','','Y','','Y','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','','A1','A2','A9','','','','','','','','A6','A8','A3','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','Y','','Y','','','','A2','A15','A17','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1056,'1980-01-01 00:00:00',5,'en','1090503691','A2','A4','male','','','','Y','Y','','','','','','','','','','','','','Y','','Y','','','','','Data manager','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','When I switched to NixOS.','','','','','','','Y','Y','Y','','','','','Y','Y','','Y','Y','','','A1','A2','A9','','','','','','','','A6','A3','A14','','','','','','','','','','','','',NULL,'Gentoo','A2','','','','Y','Y','','','','','','','','','','Y','','Y','','Y','','','','A2','A17','A15','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time, documentation, ideas','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I used gentoo for many years and had a sort of stable snapshot I could roll back to if things broke. But it was in in perfect solution and the build time was killing me…','Y','Y','Y','','','','','Huge package repository.','Reproducibility ','Overlays','Good support for secrets. Easy mirroring of build cache to behind company firewall','Gentoo/Arch','Y','','','','','','Homemanager','','','','Sway/notion','Home Manager','','THANKS!'),(1057,'1980-01-01 00:00:00',5,'en','2124630646','A5','A3','male','','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','Y','Y','','','N','N','','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1058,'1980-01-01 00:00:00',5,'en','87280611','A2','A3','male','','','','','','Y','Y','','','','','','','Y','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A3','A1','A2','','','','','','','','A13','A8','A6','','','','','','','','','','','','',NULL,'Probably other state-of-the-art technology that kinda solves the same problems Nix does: Ansible, Docker, ...','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A2','A13','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Most things I need are already in nixpkgs, and things I don\'t need can easily be added locally fo rmy project without having to upstream my changes','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','','','','','','Y','','','Y','','','','','','','Xmonad','','','Typed nix would be great'),(1059,'1980-01-01 00:00:00',5,'en','729786232','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','Y','','Y','','','','','','Y','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1060,'1980-01-01 00:00:00',5,'en','235716990','A2','A1','male','','','','','','','','','','Y','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','When i started using using linux i was distro hopping a lot, i kept coming back to arch but it didnt feel perfect my system always felt unopimized/too much disk usage after a while. And while searching for solutions i found nixos. I installed it and i\'m not planning to use anything else soon!','','Y','','','','','Y','Y','','','','','','','Y','','Y','Y','','','A7','A1','A3','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'ansible or docker','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A15','A2','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','i\'m bad at packaging and almost everything is in nixpkgs (except for protonge)','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','same story as previously in nix','Y','','Y','','','','','declerative','garbage colect','','allow us to use systemd alternative','arch','Y','','','','','','','','','','HYPRLAND BABYYYY','','','make infinite recursion easier to solve lol'),(1061,'1980-01-01 00:00:00',5,'en','1119737380','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','After using Ubuntu for a couple years, I liked Linux, but I wanted a way to more declaratively manage my system configuration. This path led me pretty much straight to NixOS.','','','','','','','Y','','','','','','','Y','','','Y','','','','A2','A1','A7','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','The way things work internally within NixOS is very opaque, in my opinion, and it seems like there aren\'t any good resources to go from nixpkgs \"user\" to nixpkgs \"contributor\", since the gap in understanding is quite large.','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','Same way I started with Nix. (I will copy-paste from the previous page.) After using Ubuntu for a couple years, I liked Linux, but I wanted a way to more declaratively manage my system configuration. This path led me pretty much straight to NixOS.','Y','','','','','','','Declarative configuration management','Declarative package management','Easy system rollbacks','PLEASE ADD GOOD DOCUMENTATION! I cannot stress this enough. Seriously. I really want to build my own stuff on top of Nix, but it\'s a *painful* experience. I\'ll get something that seems like it should work, sometimes basing it off design patterns in other people\'s code on GitHub. Then I\'ll try it, and I\'ll get the most obtuse error message possible which tells me nothing about what I\'ve done wrong. Half the time it\'s because my code *should* work, but as I figure out many hours later, it doesn\'t due to some non-obvious design choice or quirk in the implementation. I really do love using NixOS for most things Linux, but it hurts sometimes.','I\'d probably go back to a different Linux distribution, although I wouldn\'t enjoy it as much :(','Y','','','','','','','Y','','','','https://github.com/nix-community/nixd\r\nhttps://github.com/nix-community/nix-index\r\nhttps://github.com/nix-community/nurl\r\n^ some nice utilities\r\n\r\nhttps://github.com/gytis-ivaskevicius/flake-utils-plus\r\n^ this is very useful for multi-system configs, although I\'m still working out some of its intricacies.','https://github.com/divnix/digga\r\nI really liked the idea of this, but it was very unclear what was happening behind the scenes, and felt over-engineered. The maintainers also recently said they plan to archive the project for similar reasons.','It seems like there are a lot of makeshift strategies people have come up with to do multi-system configs (i.e. where they have one repo for all their devices and they can reuse common code, and conditionally enable features on certain hosts). It would be very cool if something like this could be integrated into NixOS. Of course that\'s a long shot, but it\'s something to think about. Have a nice day!'),(1062,'1980-01-01 00:00:00',5,'en','354425565','A2','A3','male','','','','','','','','Y','Y','','','','','','','Y','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A7','','','Y','','','','','Y','','Y','','','Y','','','Y','Y','','Y','Y','','A7','A4','A6','','','','','','','','A11','A8','A6','','','','','','','','','','','','',NULL,'GUIX','A1','','','Y','Y','','Y','Y','','','','','','','','','','','','','','','woodpecker','A3','A2','A15','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','time','N','Y',NULL,'memory hungry','better support for store bind mount',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1063,'1980-01-01 00:00:00',5,'en','665774313','A2','A4','-oth-','nonbinary','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I\'ve seen people on the Internet talking about it, and the concept sounded intriguing. Since I could install into onto my existing Linux installation, I decided to see what it was like in practice. ','','','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','','','','A7','A9','A4','','','','','','','','A8','A9','A15','','','','','','','','','','','','',NULL,'My distro\'s package manager, user-level language-specific environment managers (pyenv, nvm), ad-hoc repositories and backup archives for tracking configuration files, OCI containers. ','A1','Y','Y','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A1','A24','A26','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','After playing around with Nix on non-NixOS, I decided to install it on a home server that was running an outdated version of a distro with a long release schedule, since it needed upgrading anyway, and I figured NixOS might be better fit. I liked how well it worked there, so I switched other machines to it when similar circumstances came up. ','Y','','Y','Y','','','','Ability to deploy configurations statelessly','Ability to easily patch and roll back patches on essentially any part of the system (without having to fight a stateful package manager)','The way the NixOS module system allows specifying fairly complex service configurations involving multiple components ','','Distro package managers, ad-hoc configuration and configuration tracking, and containers.','Y','','','','','Y','','','Y','','','','',''),(1064,'1980-01-01 00:00:00',5,'en','157288203','A5','A2','male','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','A friend recommended it and I switched to nixos.','','','','','','','Y','','Y','','','','','Y','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A8','A5','A10','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A1','A15','A4','','','','','','','','','','','','','','','','','','A1','A2','A15','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','','','','','','declarative configuration','switch to different generations','','','','Y','','','','','','','','','','hyprland','','',''),(1065,NULL,NULL,'en','1793567028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1066,NULL,1,'en','1773837437','A5','A2','male','','','','','','','Y','Y','','','','','','','Y','','','Y','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1067,'1980-01-01 00:00:00',5,'en','32679445','A2','A7','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','N','','','','','A prefab Sway/Wayland setup',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I have disabled hands. i would like to try a prefab Sway setup similar to what I used standalone on Manjaro, and perhaps switch. I also need a package for nerd-dictation, which is now in AUR. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Your distro looks great! It isn\'t clear on the welcome page that is FOSS, but I assume it is. Why don\'t you say so? ;)'),(1068,NULL,0,'en','993376803','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1069,NULL,2,'en','1605005912','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Same dev environment across different OS.\r\n\r\nStarted with home manager... Then nix darwin and today I use nixOS. Everything using flakes','Y','Y','','Y','','','Y','','','','','','','Y','Y','','Y','','','','A2','A3','A6','','','','','','','','A8','A4','A9','','','','','','','','','','','','',NULL,'The saddest gigantic bash script that sets up everyhing. Hopefully pinning versions and using something similar to Stow.','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A11','','','','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I really would like to but I am slightly afraid. It is too exposure and there is lot I do not know. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1070,'1980-01-01 00:00:00',5,'en','1627992139','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I discovered Nix and Nixos with the release of 21.11 while browsing posts on HackerNews. As I\'m a system engineer working for a hosting and managed services provider, the claim to provide reliability, reproducibility and the declarative approach to Nix/Nixos drew me in immediately. Also, the sheer number of up-to-date packages was a significant bonus. As an aside, it was also an opportunity to learn new and exciting things with the nix language (that made me discover functional programming languages and haskell specifically) ! \r\n\r\nI started using Nix and Nixos at the same time, first while migrating my personal server to Nixos as an experiment in 21.11 and then definitely in 22.05. Then, I migrated my PC from Archlinux to Nixos too.','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A14','A4','A8','','','','','','','','','','','','',NULL,'There is no equivalent to Nix, but as a simple package manager I would probably get back to pacman on Arch or a derivative.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A15','A2','','','','','','','','','','','','','','','','','','','A13','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Mainly time to deep-dive into the language and to be more familiar and confident in my understanding of Nix in general. \r\n\r\nThat\'s on my TODO list though :)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I discovered Nix and Nixos with the release of 21.11 while browsing posts on HackerNews. As I\'m a system engineer working for a hosting and managed services provider, the claim to provide reliability, reproducibility and the declarative approach to Nixos drew me in immediately. Also, the sheer number of up-to-date packages was a significant bonus. As an aside, it was also an opportunity to learn new and exciting things with the nix language (that made me discover functional programming languages and haskell specifically) ! \r\n\r\nI started using Nix and Nixos at the same time, first while migrating my personal server to Nixos as an experiment in 21.11 and then definitely in 22.05. Then, I migrated my PC from Archlinux to Nixos too.','Y','','Y','','','','','Declarative approach','Atomic configuration changes','Configurability','','Guix or Arch','Y','','','','','','','','','','xmonad','search.nixos.org is awesome !\r\n\r\nAlthough not a \"product\", the nix community and its contributions are also one of the best resource that I use daily (personal/corporate blogs, forums, nix code examples, ...)','','Thanks to the Nixos Foundation and all involved in developing and maintaining Nix/Nixos and its infrastructure. These projects are invaluable.'),(1071,NULL,2,'en','1506333178','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted an OS which could be reproducibly set up from configuration in git. I made a setup with Ansible to configure Arch VMs that ran in KVM and used GPU passthrough and used that for about a year. Nix seemed like a more elegant way to do the same thing.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A9','','','','','','','','A5','A13','A2','','','','','','','','','','','','',NULL,'Instead of nix-shell: Docker containers with VScode remote. Instead of NixOS as a desktop system: Arch with Ansible.','A1','','','','','','','','','','','','','','','','','','','','','','','A1','A15','A2','A14','A4','A9','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1072,'1980-01-01 00:00:00',5,'en','304712614','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Coming from FreeBSD, QubesOS and other GNU/Linux distributions and evaluating a new distribution for my 32bit only Laptop, which I bought in 2014 without support from QubesOS. So I landed at NixOS with either the thesis from Eelco or from Domen\'s blog post (https://www.domenkozar.com/2014/03/11/why-puppet-chef-ansible-arent-good-enough-and-we-can-do-better/), i really don\'t remember it anymore.','','Y','','','Y','Android','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','Y','','A2','A3','A6','','','','','','','','A6','A1','A9','','','','','','','','','','','','',NULL,'Would switch to woodworking or other handcrafting jobs. <3','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A13','A9','A2','A3','A4','A6','A10','A18','A7','A5','','','','','','','','','','','A2','A5','A1','','','','','','','','','','','','','','','','','','','Y','Y','Y','contributing to nixpkgs','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same as using nix -> see answer there','Y','Y','Y','Y','Y','','','declarative','reproducible','community','- Improve evaluation time\r\n- remove docbook -> nixos/doc: dedocbookify #237557 \r\n- RFC42 all the modules\r\n- format all nix with something coming out of RFC101\r\n- improve all the documentation\r\n- add a news feed for contributors for changes that might be interesting for them (RFC42, new language features, deprecating of libs and so on)','I would switch to ... correct, woodworking.','Y','','','Y','Y','Y','krops','','','','i3wm','Mobile NixOS, Robotnix, home-manager, disko, nixos-anywhere, flake-compat, impermanence, NUR','','Thanks for your work <3'),(1073,'1980-01-01 00:00:00',5,'en','1535418800','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I was working on a personal project in python and most of the packages I used required system dependencies. I was looking for something that could: 1) Automate the installation of these system packages. 2) Support different operating systems and Linux distributions. 3) Pin the system packages to a specific version. This is when I learned that Nix could do all of these for me.\r\n\r\nAround the same time, I was also looking for a reproducible way to set up my dotfiles on different machines. My requirements were: 1) Support Linux and macOS. 2) No dependencies, since this will probably be the first thing I run on a new OS installation. Then I found home-manager and nix-darwin and have been using them ever since.','Y','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A6','','','','','','','','A14','A5','A3','','','','','','','','','','','','',NULL,'I would use Homebrew since it\'s cross-platform.','A1','','','','Y','Y','Y','','','','','','','','','','','','','Y','','','','A1','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','No time','N','N','What keeps me from using NixOS are possible issues that I will encounter since NixOS doesn\'t adhere to the Linux FHS. I\'ve seen a lot of these issues posted online and I don\'t want to try NixOS if it\'s going to create any new problems for me. Also, I\'m using popOS right now and while their desktop environment is the biggest advantage for me, I don\'t want to lose whatever tuning they\'ve done to the system.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I\'ve been keeping a list of possible improvements that could be made Nix so I\'ll list them all below:\r\n\r\n1. Garbage Collection - I had a lot of trouble deleting the old versions of every profile/channel on my system. Without an easy way to do this, things will quickly start to accumulate. I tried `sudo nix-collect-garbage -d`, but I still had some old profile/channel versions. I\'d also like a subcommand that lists all the current gcroots and the symlink chain for each so I can investigate why packages aren\'t being cleaned up.\r\n2. Downloading \"source\" - Most of the time when I run `home-manager switch` I get a message saying \'Fetching source\', but I do not understand what it is downloading. Maybe Nix should output why something is being downloaded so issues like this are easier to debug.'),(1074,NULL,NULL,'en','500914956',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1075,NULL,NULL,'en','1536218184',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1076,'1980-01-01 00:00:00',5,'en','1063479069','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was not happy with complie times on Gentoo Linux and not happy with fragile updates on Arch-Linux. I heard of NixOS on a podcast and decided to give it a try.','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','','','building containers using dockerTools','A9','A2','A1','','','','','','','','A12','A8','A9','','','','','','','','','','','','',NULL,'For OS I might be still using Arch, for container building normal docker build and for dev environments proot or chroot, maybe docker','A2','','Y','','Y','Y','','','','','','','','Y','','','','Y','','','','','','A9','A1','A6','A12','A15','A13','','','','','','','','','','','','','','','','A6','A12','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','1. Time or motivation to do in spare time\r\n2. Most things are already solved\r\n3. At work, my colleagues are not convinced yet use nix','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was using Gentoo for long time. I liked the rolling updates to get the latest versions of software but dealing with compiling was a pain. I tried to use Arch for a while but the updates were fragile. Then in a podcast \"binärgewitter\" someone pitched NixOS so I gave it a go and it turned out to be very practical for me.','Y','','Y','','','','','Robust updates/rollbacks','Declarative system configuration','rolling release - always most up to date software','Make updates smaller and use less disk space.','Arch Linux or Ubuntu? I might be more happy in general and more helpful to my fields and colleges which use those. I might be unhappy about reinstalling my OS every few months or having hunt down and fix config drift.','Y','','','','','','','Y','','','','','',''),(1077,NULL,2,'en','776549277','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','N','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1078,'1980-01-01 00:00:00',5,'en','1504133045','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','','','','','Y','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I needed to define a server environment statically. People mentioned it. Here we are.','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A7','A6','','','','','','','','A6','A3','A15','','','','','','','','','','','','',NULL,'Nothing, as all equivalent come from nix','A1','','','','','Y','','','','','','Y','Y','','','','','','','Y','Y','','','A24','A23','A1','A3','A15','A4','A25','','','','','','','','','','','','','','','A1','A2','A24','','','','','','','','','','','','','','','','','','','','','','never figured out how to make it work in all these years','A4','',NULL,'N','Y',NULL,'Could not figure out how to get a graphic environment running.\r\nCouldn\'t understand the FS stuff\r\nCouldn\'t find a good way to centrally manage the config.\r\nNo fast firmware update','Firmware update as fast as fedora\r\nAn installer that handle filesystem and graphic install automagically.\r\nA good story for managing the machine config remotely and secrets.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lorri\r\nHome-manager','Devenv','Figure out a user friendly way to combine nix derivations. Overlays make no sense and flake is even worse.\r\n\r\nAnd the nix interpreter memory usage is actively stopping use cases. It need a good 10x reduction.'),(1079,'1980-01-01 00:00:00',5,'en','1255399391','A4','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Finding a way of making the operating system I use declarative and reproducible.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A2','A1','A7','','','','','','','','A5','A8','','','','','','','','','','','','','',NULL,'Gentoo utilities','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1080,NULL,NULL,'en','1373597666',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1081,'1980-01-01 00:00:00',5,'en','1506539999','A2','A4','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got fed up with Homebrew and how everything gets broken with every update to a package, breaking other packages because of global dependencies with no way to roll back. So I liked the ideas behind Nix and that I can roll back too. Although the experience on macOS/Darwin is sub-optimal, yet still more stable than Homebrew IMO. ','Y','','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'a mix of homebrew/macports + ansible/salt','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A9','A17','A15','A2','A25','','','','','','','','','','','','','','','','A9','A17','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','Y',NULL,'Was hard to get it running on Apple hardware, especially setting your wifi & some random errors about harddisks ','Better support for Apple Hardware',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1082,'1980-01-01 00:00:00',5,'en','1582150069','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','NixOS :)','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A1','A5','','','','','','','','','','','','','','','','','','','A3','A4','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','native nix support','stability','','i\'d make KDE the default DE','fedora','Y','','','','','','','','Y','','','','',''),(1083,'1980-01-01 00:00:00',5,'en','1605211856','A4','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Reproducible builds essentially made configuring new servers a breeze, along with easier backups and sane versioning.','','Y','','','','','Y','Y','','Y','','','','','Y','','Y','','','','A1','A10','A6','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'traditional package management (brew on MacOS, pacman on arch)','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','A3','','','','','','','','','','','','','','','','','','','A2','A4','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Learning Resources and Documentation','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','Took the plunge and migrated my homelab to NixOS while sunsetting the hardware I had and moving to a new hardware stack. I since moved two personal servers, a production server, and a raspberry pi to nixos.','Y','','Y','Y','','','','Managing the whole environment through a single flake','more localized network management','easier reproducible user management','Make flakes the default way for OS configuration\r\nMake systemd-networkd the default networking solution','Workstation: Archlinux\r\nServer: Ubuntu LTS','Y','','','','','','','','','','text based','','',''),(1084,'1980-01-01 00:00:00',5,'en','385164921','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A1','Too many Arch installations that have to be kept up to date manually.','','Y','','','Y','','','Y','','','','Y','','','','Y','Y','','','','A4','A7','','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'Ansible','A2','','','','Y','','','','','','','','','','','','','','','','','','','A2','A15','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Nothing','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','','','','Y','','','','','','','','','','','','','Y','','','','Y','','','','','','Great work so far. But the learning curve is really steep.'),(1085,NULL,2,'en','1620932777','A5','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','To codify my operating system configuration.','','','','','','','Y','Y','','','','','','Y','','','Y','','','','A10','A1','A2','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'Arch Linux with hand-made scripts','A2','','','','Y','','','','','','','','','','','','','','','','','','','A1','A15','A17','','','','','','','','','','','','','','','','','','','A1','A15','A17','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Availability',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1086,'1980-01-01 00:00:00',5,'en','841811726','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','A University friend of mine introduced me to it because of a startup called Liqwid Labs where he now works.','','','','','','Android with Nix-on-Droid','Y','Y','','','','','','','Y','','Y','','','','A1','A10','A2','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'Docker if reproducibility on the project was important. Otherwise, just any distro, like Manjaro, and detailed instructions on packages to install for the build process.','A4','','','','Y','','','','','','','','Y','','','','','','','','','','','A2','A1','A15','A5','','','','','','','','','','','','','','','','','','A1','A15','A13','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Complexities in the correct way to package new software and making a pull request, limited or hard to find information on the process and intimidation by the size and amount of pull requests and issues of the nixpkgs repository.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','A University friend of mine introduced me to it because of a startup called Liqwid Labs where he now works.','Y','','','','','','','All-in-one-place configuration file','Reproducibility in any project','Stability','GUI tools to make nix more approachable and usable by anyone as a simple package manager. \r\nAlso, change my phone OS to nixOS and make everything work perfectly 🪄','Manjaro','Y','','','','','','','Y','Y','','','nixos-hardware. Especially for the microsoft-surface-pro-intel. But seems to break regularly, I\'d run `nixos-rebuild` with `--update-input nixos-hardware` and the surface kernel would be broken. Since pinned a version of nixos-hardware because of that\r\nNixOS nvidia-vgpu-module, to unlock vgpu in consumer nvidia cards (https://github.com/danielfullmer/nixos-nvidia-vgpu). Since it was made for such an older version I\'ve since had to make my own module (https://github.com/Yeshey/nixos-nvidia-vgpu_nixOS/tree/master)','mach-nix, for python. Tried more than once, but some python package has always been missing or giving problems.','Thank you for the amazing work!'),(1087,'1980-01-01 00:00:00',5,'en','1870944303','A2','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I was looking into different linux distributions and I really liked the concepts behind Nix/NixOS','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Gnu/Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Availability and lack of depth of documentations and learning resources','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I was looking into linux distributions and I really liked the concepts behind NixOS.','Y','','','','','','','Declarative, configuration based package management','Stability','Availability of packages','Better documentation/learning resources, and I would change the nix language to be strongly typed with good lsp support.','GNU/Guix, but if the whole concept of nix-like systems would not exist, then Fedora or Pop!_OS.','Y','','','','','','','','Y','','','','','I really like NixOS thanks for creating it and improving it.'),(1088,'1980-01-01 00:00:00',5,'en','1328277010','A3','A3','male','','','','','','Y','Y','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I come from the Haskell community and using started using Nix to simplify deployment of Haskell based applications.','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A9','A6','A2','','','','','','','','','','','','',NULL,'Shake, Buck or Bazel for building. Docker and bash profiles for providing an environment.','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A1','A2','A20','A15','','','','','','','','','','','','','','','','','A13','A2','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I\'ve done it once or twice for Haskell packages, but the packaging model makes contributing worthless, one might fix a package, but it will break again when haskell package set rolls. There\'s no point in fixing anything, it will break again and again, what\'s the point?','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I was curious for trying a fully declarative OS, I did heard about NixOS since I\'ve been using Nix for longer, so I tried it in a VM without success, what stopped me at the time was the bare bones installer and my custom keyboard layout, but I trucked on and in the end got it to work, then installed it in a home server, and been using it ever since, except for work which I still need to use Ubuntu due to enterprise policies.','Y','','Y','','','','','Declarative workstation configuration.','Rollbacks.','Switch to different configurations to try new setups easily.','Improve the documentation on the available modules, make them even easier to write, and have more modules available. Increase support NixOS for managing user-level configuration, it is odd to use both home-manager and NixOS, a single tool should do it.','Probably Arch Linux or Fedora Silverblue. As for configuration I would try to make Terraform work for my use cases some how, never Ansible.','Y','Y','','','','','','Y','','','','Home manager in Ubuntu for user level configuration.','nixfmt formats code to a style that not event Nixpkgs uses, I stopped using it.','Improve the god damn docs! stabilize the CLI and build a course or something, implement an official uninstaller. Build something to compete with Nomad and K8s, NixOps is not even close. Parsers in most languages to use Nix as a configuration language (like Dhall). A nix flavored alternative to terraform is also necessary.'),(1089,'1980-01-01 00:00:00',5,'en','1241738259','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','GHCJS hobby project used Nix. Also declarative System config.','','Y','','','','','Y','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','A2','A1','A9','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'I would go crying in a corner.','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A13','A3','A25','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','Y','','','','','','','','Y','','','','','','','','','','','https://github.com/xtruder/nix-devcontainer','','I really want this to get an updated Dockerfile: https://github.com/xtruder/nix-devcontainer'),(1090,'1980-01-01 00:00:00',5,'en','41038364','A3','A2','-oth-','','','','','','','','Y','','','Y','Y','','','','','','Y','','','','','Y','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','Documentation is unorganized and obscure','','','','','Y','','','','Y','','Better documentation, Stabilized Nix Flakes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'There is no clear way to organize multiple system configurations in a single flake, particularly the parts that sit between NixOS and home-manager (Xorg configuration for example)','Better documentation, stabilized nix flakes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1091,'1980-01-01 00:00:00',5,'en','941492081','A2','A3','-oth-','Genderqueer','','','','','','','','','','Y','','','','','Y','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','In around 2015 I wanted to have something along the lines of Infrastructure as Code/declarative configuration management tooling to manage my workstation and laptop; so I stumbled upon nix & decided to use it.','','Y','','','','','Y','Y','','Y','Y','','','Y','Y','Y','Y','','Y','','A2','A10','A7','','','','','','','','A13','A8','A6','','','','','','','','','','','','',NULL,'I do use Guix a lot, but as that’s a Nix fork… probably something like ansible at least for the configuration management part and good old dpkg/apt for packaging','A1','','','','Y','Y','','Y','','','','Y','','','','Y','','','','','','','','A15','A18','A25','','','','','','','','','','','','','','','','','','','A15','A18','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Nixpkgs usually is pretty up to date for the packages I tend to use, so there’s not much to do for me. I contribute to nix-community projects every once in a while though.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Out of the same reasons I started using nix.','Y','','Y','Y','','','','Declarative configuration','nix store instead of FHS','Rollbacks','Guile or any other scheme instead of nix as a configuration language.','Probably Debian.','Y','','','','','Y','','','','','Sway','home manager, devenv','',''),(1092,NULL,1,'en','587647736','A8','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Project Manager','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1093,NULL,0,'en','811939750','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1094,NULL,1,'en','171443601','A2','A4','male','','','','','','','Y','Y','','Y','Y','Y','','','','','','Y','','','','','','Y','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1095,'1980-01-01 00:00:00',5,'en','1388869892','A2','A3','male','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','I started using NixOS, so Nix is the way to go.','','Y','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A10','','','','','','','','A14','A5','A13','','','','','','','','','','','','',NULL,'Arch, openSUSE or Debian.','A4','','','','','','','','','','','','','','None, I\'m still learning the basics.','','','','','','','','None.','A2','A1','A6','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I\'m not a linux developer. I\'m an indie game dev wannabe, so my programming knowledge is mainly gdscript and c#.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I saw a review on the web and found it interesting, so tried it, and here we are.','Y','','','','','','','One config to rule them all.','Huge package repo which cover most of my needs.','A decently updated and stable system.','More \"options\", there are a huge amount, jet always feel like they\'re not enough and workarrounds are needed instead.','Arch, openSUSE or Debian.','Y','','','','','','','','','Y','','None, I think.','I\'m not sure.','I love you <3'),(1096,'1980-01-01 00:00:00',5,'en','462006706','A5','A4','male','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I needed to keep 3 machines in sync and consistent. Consistent settings, apps, etc. I worked at a Haskell shop for a while and they were always talking about nix, so I thought I’d try it. ','Y','','','','','','Y','','','','','','','Y','Y','','Y','Y','','','A2','A8','A3','','','','','','','','A13','A6','A2','','','','','','','','','','','','',NULL,'Guix ','A1','','','','Y','','','','','','','','Y','Y','','','','','','','','','Gitea and woodpecker','A2','A15','','','','','','','','','','','','','','','','','','','','A11','A1','A21','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time','N','Y',NULL,'It became a lot of overhead to get features working on my primary machine','I do try every few releases. hardware auto detection on first install is the big item that would help',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Home manager and nix Darwin. ','',''),(1097,'1980-01-01 00:00:00',5,'en','699110579','A2','A3','male','','','','','','','','Y','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Found it while in university and was hooked. Always liked system administration and having a fully declarative system + pinned dependencies is the holy graal.','','','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','','A2','A3','A10','','','','','','','','A12','A9','A2','','','','','','','','','','','','',NULL,'Guix, although if Nix didn\'t exist guix wouldn\'t either. Going back to arch maybe?','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','Drone','A9','A1','A15','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same story as with Nix, found in uni.','Y','Y','Y','','','','','Declarative configurations','Pinned outputs','Large repository','Having two \"ecosystems\", flakes vs non-flakes. I don\'t care which would take over really.','I guess going back to arch','Y','','','Y','','Y','','','','','riverwm','','',''),(1098,'1980-01-01 00:00:00',5,'en','159460406','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','PopOS','N','N','Y','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Dissatisfaction with my current distro PopOS. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I love the idea of a central file to configure the whole system. Keep up the good work.'),(1099,'1980-01-01 00:00:00',5,'en','1911907591','A2','A3','-oth-','applejack','','','','','','','','','','','','','','','','','','','','','','','','telecomunications specialist','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','Y','','','','Y','','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Confusing documentation. I tried it in 2019.','Better documentation or an effort to sandbox all the processes with something like bubblewrap or adding apparmor to everything.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1100,NULL,0,'en','287341934','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1101,'1980-01-01 00:00:00',5,'en','205417938','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','Y','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','Y','','','','','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A8','A12','A2','','','','','','','','','','','','',NULL,'Debian ','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','garnix','A13','A14','A25','','','','','','','','','','','','','','','','','','','A13','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','Y','','','','Declarative system description ','Lots of packages ','','','Debian','Y','','','','','','','','','','','','Niv, replaced by flakes, although I found niv to have the better UX',''),(1102,'1980-01-01 00:00:00',5,'en','300857879','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','A2','A7','A1','','','','','','','','A9','A6','A1','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A9','A7','A22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','','','','','','Y','','','','','','','','','','','','',''),(1103,'1980-01-01 00:00:00',5,'en','1771378268','A5','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','','','','Y','Y','','','Y','Y','','','Y','','Y','','','','A7','A2','A3','','','','','','','','A8','A4','','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A15','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','','Y','','Y','','Y','Y','','','','','','','Y','','','Y','','','','','','','xmonad','Flake-parts','Devos\r\nFlake-utils',''),(1104,'1980-01-01 00:00:00',5,'en','1723250053','A6','A2','male','','','','','','','','Y','','','','Y','','Y','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','For my sys configs, packages, home manager etc..','A1','Just for NixOS pretty much.. as i do manage all of my system using configuration.nix and home manager.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A10','A1','','','','','','','','A13','A8','A2','','','','','','','','','','','','',NULL,'I really liked apx as a package manager and it uses distrobox as the backend which is pretty cool. ','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Still in learning journey.. but liking nix so far','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I have been distrohopping since 10 years at this point.. and wanted immutability and reproducability.. first i stumbled upon Ublue which is based on silverblue and has a recipe.yml which i can reproduce.. but still it was very very clunky as compared to my Nix experience.. with home manager i can manage almost everything including most of my configs + packages. With configuration.nix i can simply enable stuff like zramSwap and other NixOS options which save me alot of time that I used to spend.. and best thing it is reproducable.. NixOS options and Home manager Options have been a game changer for me !','Y','','','','','','','NixOS / Home manager Options','Reproducible configs for my system and home.','Availability of packages','Make btrfs with subvolume setup the default filesystem in automatic partitioning. Most distros like Fedora Nobara Vanilla have already gone btrfs route.. subvolume setup also allows btrfs snapshots and dynamic home and root space. \r\n\r\nZRAMswap option in calamares would be nicehowever nixOS options make it easy anyway so not a huge deal.\r\n\r\nI may have many small default package knit picks but i would really like gnome tweaks by default. ','Vanilla OS.. with its apx package manager has been my second choice.','','','','','','','','Y','','','','','','Thanks for the amazing distro / tools and getting rid of distro hopping for me. Love the project ethics and work. ❤️'),(1105,'1980-01-01 00:00:00',5,'en','535195136','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I\'ve heard about it on youtube. The catch for me, especially, was the reproduciblity of system configurations. I happily using arch before, but dreaded the idea of recreating my configuration on new devices. I\'ve heard about nixos around late 2021 but only started using it late 2022. Now I\'m running it on my laptop, about to install it on my desktop, too.','','Y','','','','Android (Nix-on-droid)','Y','','','','Y','','','','Y','','Y','','Y','','A2','A1','A3','','','','','','','','A4','A9','A8','','','','','','','','','','','','',NULL,'I would continue to use arch, maybe guix i guess. I honestly don\'t think I would attempt to create install scripts because they get out of sync with your current configuration so easily.','A2','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A3','A5','A15','A13','A17','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I haven\'t found something missing, except e.g. juliaPackages, for which a PR already exists and I\'m not qualified enough to contribute.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Declarative, reproducible configuration. Solving problems only once.','Y','','','','Y','','','Declarative declaration','Impermanence','Large package ecosystem','I would greatly improve evaluation speed. I\'m using the home-manager nixos module and sometimes it seems like rebuilds do unnecessary work, so I would optimize that. Also, I would like the minimal install to include git, iwctl and nix flakes enabled by default','probably still arch, or guix','Y','','','','','','','','','','Hyprland','nix-direnv, home-manager, nix-on-droid, impermanence','',''),(1106,NULL,2,'en','218319355','A2','A5','male','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','NixOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Grew tired of breaking updates on Arch Linux.\r\n\r\n\r\nLove to have all dependencies of a project in a nix file.','','Y','','','','Android','Y','','','Y','Y','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A13','A3','A5','','','','','','','','','','','','',NULL,'Docker','A2','','','','Y','','','','','','','','','','','','','','','','','','sourcehut','A15','A19','A24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Most packages I use are already packaged',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1107,'1980-01-01 00:00:00',5,'en','1041118045','A2','A2','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Heard a lot of good stuff in Linux Unplugged podcast. I was curious about the ability to describe your Linux box with a configuration (I tried to use Ansible to do that for my previous Fedora setup, but it was painful to be honest).','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A3','A7','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'Probably Fedora (maybe Silverblue) as OS, and Distrobox/Toolbox, Flatpak for package installation. And probably Ansible (or something similar) to describe configuration','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A9','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I believe that I find almost every package I need. Also, I\'m not sure if how easy it would be to contribute - I mean, how much help I would get from community with a PR (as I don\'t feel confident with Nix language)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Heard a lot of good stuff in Linux Unplugged podcast. I was curious about the ability to describe your Linux box with a configuration (I tried to use Ansible to do that for my previous Fedora setup, but it was painful to be honest).','Y','','Y','','','','','Packages and ability to describe what I need with a language (additionally I use home-manager)','Rollbacks','Community','I would add an option in installer for disk encryption (and maybe btrfs)\r\n','Probably Fedora (maybe Silverblue) as OS, and Distrobox/Toolbox, Flatpak for package installation. And probably Ansible (or something similar) to describe configuration','','','','','','','','','','','i3','home-manager','',''),(1108,NULL,2,'en','207528141','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','','Y','','','','','Y','Y','','','','','','Y','','','Y','','','','A2','A7','A10','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'','A4','','','','','Y','','','','','','','','','','','','Y','','','','','','A2','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1109,'1980-01-01 00:00:00',5,'en','1785931858','A2','A4','male','','Y','','','Y','','','','','','','','','','Y','','','Y','','','Y','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I like immutability.','Y','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A3','A7','','','','','','','','A8','A9','A3','','','','','','','','','','','','',NULL,'Puh! A lot of stupid Ansible + OCI Images…\r\nOr guix;).','A4','','','','Y','Y','','Y','','','','','','','','','','','','','','','','A2','A24','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don‘t have any free time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Immutability and the ability to share configs and system states with other people.','Y','','Y','Y','','','','Atomic switching','Versionable System states','','ChatGPT solved a lot of my NixOS/NixLang issues. Something I suffer from a lot is Python-Package-Stuff.','Debian or FreeBSD, may be arch','','','Y','','Y','','','Y','','','','','','Love NixOS, so many things improved so much!'),(1110,NULL,1,'en','688409740','A3','A4','male','','','','','','','','','Y','','','Y','Y','','','','','Y','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1111,'1980-01-01 00:00:00',5,'en','760739341','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Tried gnu guix for a year, did not have time to learn the required information to generate a suitable system, tried packaging some software but I had not enough time for it so I came back to fedora and then I decided to try nix as it has a bigger community than guix, immediately started with flakes and home manager and I really like it.','','Y','','','Y','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A10','A7','','','','','','','','A8','A4','A14','','','','','','','','','','','','',NULL,'Guix and containers for development, fedora silverblue for workstation','A4','','','','Y','','','','','','','','','','','','','','','','','','','A15','A2','A26','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Documentation, lack of free time.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','Declarative system','Declarative dev environment with flakes','Stability','','Guix, containers for development, fedora silverblue for workstation','Y','','','','','','','','','','Hyprland','Home manager\r\njetpack-io devbox\r\nagenix','','Keep up the good work :)'),(1112,'1980-01-01 00:00:00',5,'en','1005532641','A2','A4','male','','','Y','','','Y','Y','Y','','Y','Y','','Y','','','Y','Y','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','CEO at company suggested nix for mobile builds. Every since we did that I\'ve been hooked.','Y','Y','','Y','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','','','','A1','A10','A7','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'Like 20 different package managers separately.','A1','','','','Y','','Y','','','','','Y','Y','','','','','','Y','Y','','','','A2','A1','A9','A7','A3','A4','A15','A5','A20','A26','A25','','','','','','','','','','','A9','A26','A20','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Someone at work suggested it.','Y','Y','Y','Y','','Y','','Version locking','Version overrides','Patching','Proper support for secrets.','20 different package managers.','Y','','','','','','','','','','Awesome WM','nixos-hardware','nixops\r\nhome-manager','Yes. I love Nix and NixOS, but the review process for getting packages/fixes into nixpkgs is killing me.'),(1113,'1980-01-01 00:00:00',5,'en','1126195455','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','An online friend started using it, we started it using it as replacement for Ansible-managed servers for a Linux distro\'s infra and now it\'s my main OS too.','','Y','','Y','','','Y','Y','Y','Y','','','','','Y','Y','','','','','A2','A7','A1','','','','','','','','A8','A9','A2','','','','','','','','','','','','',NULL,'Archlinux + Ansible','A2','','','Y','Y','Y','','','','','','','','','','','','','','Y','Y','','','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','Y','','Y','','','','Flakes / Reproducible environments','Atomic rollbacks','','','Archlinux','','','','','Y','Y','','','Y','','','','',''),(1114,NULL,1,'en','666955590','A5','A1','-oth-','Agender','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1115,NULL,2,'en','1562057839','A2','A2','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I did write a lot here and then my session expired and I don\'t feel like typing anymore','Y','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','Y','Y','','A3','A2','A7','','','','','','','','A8','A3','A9','','','','','','','','','','','','',NULL,'Guix','A1','','','','Y','Y','Y','','','','','','','Y','','','','','','','','','garnix','A15','A3','A1','','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Haven\'t tried it yet',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1116,'1980-01-01 00:00:00',5,'en','707378462','A5','A2','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Youtube video/others probably','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'Arch, or ubuntu/fedora','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Documentation, tutorials etc. Also lack of knowledge of nix ecosystem and conventions','Y',NULL,NULL,NULL,NULL,'A1','','Y','','For personal laptop OS','A1','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','Great job'),(1117,NULL,1,'en','1138688832','A2','A3','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1118,'1980-01-01 00:00:00',5,'en','602480803','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Engineer, Mechanical','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Started using it private for the promise of reproducibility, liked it a lot rolled out to work (WSL)','','Y','','Y','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A2','A6','','','','','','','','A14','A9','','','','','','','','','','','','','',NULL,'Debian, ansible, arch','A4','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A21','A2','A17','A3','A4','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Not enough expirience','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Reproducibility of the system configuration','Y','','Y','','','','','Reproducibility','nix (the package manager)','Something new to learn','','Arch, Debian','Y','','','','','','','','','','awesome wm','home-manager, agenix','none','Keep the good work'),(1119,'1980-01-01 00:00:00',5,'en','321855613','A2','A5','male','','','Y','','','','Y','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Of all the widely applicable Linux distributions, NixOS is the one that comes closest to my idea of how a modern operating system should be organized and configured.','','Y','','','','','Y','Y','','Y','','Y','','','Y','','Y','Y','','','A2','A1','A6','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'Proxmox, Fedora, Centos, Rocky Linux, Alma Linux, ...','A4','','','','Y','Y','Y','','','','','','','','','','','','','','','','','A6','A2','A3','A4','A9','A15','A12','','','','','','','','','','','','','','','A6','A15','A12','','','','','','','','','','','','','','','','','','','','','Y','','A1','','experience','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Of all the widely applicable Linux distributions, NixOS is the one that comes closest to my idea of how a modern operating system should be organized and configured.','Y','','Y','Y','','Y','','declarative configuration','the same OS on all devices I manage','wide selection of packages','I would add a file system designed specifically for the Nix store that would make it possible to mount any number of read-only \"sub-stores\" which would contain only packages available in profiles defined for each sub-store mount point.','Fedora, Rocky Linux, Alma Linux, ...','Y','','','','','Y','','Y','','','','','',''),(1120,NULL,1,'en','2141933915','A2','A5','male','','','Y','','','Y','Y','Y','','Y','Y','','','','','','','','','Y','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1121,'1980-01-01 00:00:00',5,'en','1813392367','A2','A2','-oth-','Prefer not to say','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Came from ArchLinux. I had enough of having to regulary update my machine and debug it during work.','','Y','','','','','Y','Y','Y','','','Y','','','Y','Y','Y','','','','A1','A6','A9','','','','','','','','A12','A8','A1','','','','','','','','','','','','',NULL,'ArchLinux and Docker','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A3','A15','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lanzaboote <3\r\nTow-Boot\r\nHome-manager','',''),(1122,'1980-01-01 00:00:00',5,'en','1373053731','A5','A3','male','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Was heavily used at a company I worked at. Once you have seen the leverage it provides, it is very hard to stop using.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A10','','','','','','','','','A15','','','','','','','','','','','','','','','Pretty excited for a nixpkgs module system. Currently, package overriding is too complex.','Maybe spack, but that wouldn\'t exist without nix 🤷','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A4','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','Y','','A2','','Time. I have contributed in the past, but working on open source + job is too much time at the computer.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','Reproducibility','','','Not much, much more interested in improvements to nixpkgs. ','Arch maybe? ','Y','','','','','','','','','','Sway','','','From my perspective, things are pretty good. The main issue I see is that nixpkgs is somewhat unwieldy, and it would be nice if it was easier to learn / use. Better override mechanisms and package sets would be nice.'),(1123,'1980-01-01 00:00:00',5,'en','1287542094','A2','A3','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A6','A1','A10','','','','','','','','A3','A8','A5','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A4','','','','','','','','','','','','','','','','','','','','A10','A1','A15','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Time and contributing seems fairly involved and complex','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','I\'d kind of like nixpkgs to be split up into smaller flakes/repos, from what I can tell nixpkgs is pretty open for large number of people to commit. It\'d be nice to have a smaller \'core\' which more restricted commit access/reviews and other repos with relaxed requirements for less important software.','','Y','','','Y','','','','','Y','','','','nixops, got harder to use over time and the last upgrade (2.0 I think?) made me move to deploy-rs',''),(1124,'1980-01-01 00:00:00',5,'en','538513374','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','a friend told me and helped me start','','Y','','','','','Y','Y','','','Y','','','Y','Y','','Y','','','','A2','A7','A3','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','a friend told me about it and helped to install','Y','','Y','','','','','declarative','fearless upgrades','','UI to edit config','Arch','Y','','','','','','','','','','Sway','','',''),(1125,'1980-01-01 00:00:00',5,'en','1147385634','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A3','A10','','','','','','','','A1','A6','A5','','','','','','','','','','','','',NULL,'Ansible, Docker','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A5','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','','','','Declarative desktop and servers with all configs stored in git','','','','','Y','','','Y','','','','','','','Hyprland','','',''),(1126,'1980-01-01 00:00:00',5,'en','1027606200','A6','A3','fem','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I fine morning my Arch Linux didn\'t boot up arbitrarily. ','Y','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','','A1','A3','A2','','','','','','','','A13','A4','A2','','','','','','','','','','','','',NULL,'','A2','','','Y','Y','Y','','','','','','','Y','','','','','','','Y','','','Garnix','A1','A4','','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','One fine morning my Arch Linux didn\'t boot up arbitrarily. ','Y','Y','Y','Y','','','','','','','','','Y','','','','','','','','','','','','',''),(1127,NULL,1,'en','1915151363','A3','A2','male','','','','','','','Y','','','Y','Y','Y','','','','','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1128,'1980-01-01 00:00:00',5,'en','498893791','A3','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Curious to try it. Heard great things about it and decided to give it a go.\r\n','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A7','A10','A2','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'Dot files in a git repo + stupid bash script; Arch Linux; ansible','A7','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','A1','','I contributed a vim plugin and it was super straightforward. I want to contribute more, but I struggle too much.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','Easy to pin a version of a package','Dev + ad hoc declarative environments','Better reproducibility then others OSes, although I faxed a few irreproducible scenarios.','Setting some basic requirements for a package to be acceptable in nixpkg, currently anything goes.','','Y','','','','','','','','','','dwm','','','Thank you and have a nice day'),(1129,NULL,NULL,'en','970346110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1130,NULL,1,'en','1515617519','A2','A2','male','','','','','','','Y','','Y','','','','','','','','','','','','','','Y','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1131,'1980-01-01 00:00:00',5,'en','1922744235','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Immutability of build process. I was looking something similar to bazel for the linux build. I migrated from Gentoo.','','','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A12','A6','A2','','','','','','','','','','','','',NULL,'Gentoo','A4','','','','Y','','','','','','','','','','','','','Y','','','','','','A11','A5','A1','A15','A9','','','','','','','','','','','','','','','','','A11','A9','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Current work policy.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Build system for prototype deployment based in PXE.','Y','Y','Y','','','','','Immutable build','Switch of profiles with flake \"nixos-rebuild switch --flake\"','Remote deployment with deploy-rs','Secure separation of the nix-store between local artifacts and remote ones. It could be great to have guarantees that the locally build files will never be transferred outside of \"my network\". ','Gentoo','Y','','','Y','','','','','','Y','i3','Integration with bazel.\r\nnix-npm-buildpackage.','','The possibility to have full provenance information on the build system is unique for nix/nixos. This could be used for example to respond very fast to any new CVE, providing a tool to detect potential vulnerabilities in any deployment.'),(1132,'1980-01-01 00:00:00',5,'en','1228733385','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I wanted a system where i do not have to worry about setting up the dependencies for a project and don\'t have to deal with conflicts.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'Probably guix','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A14','A3','A15','','','','','','','','','','','','','','','','','','A14','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','no time','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I wanted a linux distribution that is as configurable as arch but where i can the system configuration is stored centrally so I can put it in version control and reproduce my system.','Y','','Y','','','','','central system configuration','ad-hoc environments','rollback','','Probably guix','Y','','','','','','','Y','','','','','',''),(1133,'1980-01-01 00:00:00',5,'en','39090365','A2','A3','male','','','','','','','Y','','','Y','Y','','Y','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started using it at work to realize a consistent setup between development machines of different engineers, CI, and eventually production.','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A8','A4','A3','','','','','','','','','','','','',NULL,'Probably a mix of Arch Linux and Docker.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A2','A7','A9','A13','A15','A17','A26','A19','','','','','','','','','','','','','A7','A9','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I had a MacOS laptop and a Linux desktop and wanted to keep my settings in sync between them.','Y','','Y','','','','','Safe rollbacks','Declarative configurations','search.nixos.org module options as documentation','I\'d add some sort of standard for secret management.','I was using Arch Linux before, so maybe that, though I\'m not really sure.','Y','','','','','','','','','','Sway','home-manager\r\nsearch.nixos.org','Various nixos deploy tools (nix-ops, deploy-rs, I think others). In the end I learned nixos-rebuild can deploy remote machines and does everything I need, so I use that.',''),(1134,'1980-01-01 00:00:00',5,'en','99009566','A2','A6','male','','','','','','','Y','Y','','Y','Y','Y','Y','','','','','Y','','','','','','','','Y','','Y','Y','','','N','N','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1135,'1980-01-01 00:00:00',5,'en','2092131679','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','','N','N','','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I\'m not using any linux distro right now as i\'m full-time on windows.\r\nNixOS seems interesting because it can enable me to recreate my configured work environement anywhere I need it.\r\nNo hassle regarding hardware changes.\r\nTemporary shell envs also look quite neat.\r\n\r\nTo whoever reads this, have a great day ! :)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None',''),(1136,'1980-01-01 00:00:00',5,'en','271490644','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A3','A2','A1','','','','','','','','A12','A14','A13','','','','','','','','','','','','',NULL,'Whatever Guile is using.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A1','A20','A2','A3','A15','A22','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','I was interested in concepts from the functional programming community and found them applied at the operating system level with NixOS. I think that I, as a user, should be in control of my computation but I don\'t want to spend to much time maintaining the machine. NixOS strikes a good balance. ','Y','','','','','','','','','','','','','','','','','','','','','','','','',''),(1137,'1980-01-01 00:00:00',5,'en','1145605570','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I became incredibly frustrated setting up a build system for a C++ project and came across Nix which solved most of the annoyances I had with the implicit nature of most build systems. At which point I tested out Nixos and having programs just work™ meant that I have never looked back even with the difficulties of discoverability and learning resources.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A7','A2','A1','','','','','','','','A6','A14','A5','','','','','','','','','','','','',NULL,'Arch','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Confidence','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Software just works','Atomic installs and rollbacks','Safe experimentation','Integrate home manager with nixos','Arch','Y','','','Y','','','','Y','','','','Editor modes for emacs','',''),(1138,NULL,1,'en','1003805331','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1139,'1980-01-01 00:00:00',5,'en','1102494069','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','','Y','','','','','Y','Y','','','','','','','Y','','Y','','Y','','A10','A2','','','','','','','','','A3','A12','','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A15','A25','A3','A2','','','','','','','','','','','','','','','','','','A15','A25','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','Y','','Y','','','','','','','','','Fedora Silverblue ','Y','','','','','','','Y','','','','','',''),(1140,'1980-01-01 00:00:00',5,'en','725898323','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I was attracted to its declarative configuration management.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Possibly Fedora Silverblue','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A1','A3','A4','A2','A13','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of time and motivation','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I wanted an environment more integrated with nix','Y','','Y','','','','','Declarative system management','','','I would make nixos not dependent on systemd as init/service manager.','Maybe Fedora Silverblue','Y','','','','','','','','','','Hyprland','agenix','sops-nix',''),(1141,'1980-01-01 00:00:00',5,'en','60141160','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','','A7','A10','A3','','','','','','','','A5','A14','A1','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','Y','Y','','','','','','','','','','','','','','','','A13','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I don\'t know how how all of that works. For me it\'s just easier to focus on writing my own flakes and make then available for the community. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I was bored and I wanted to experiment with different linux distros. At first I was incredibly confused to the pint I had to relearn how to use a linux distro...\r\n\r\nThen I\'ve realized how powerful this concept was and now I could not think of going back.','Y','','Y','','','','','Declarative configuration.','Modules integration.','Rollbacks.','Better documentation, more modules.','Maybe Guix? But it wouldn\'t be the same.','Y','','','Y','','','','','','','Hyprland','Home-manager, home-manager makes NixOS x100 better.','','Improve the docs, this is the main showstopper for most people. We need more flakes guides, for beginners this is really difficult to comprehend since every source available assumes previous knowledge. '),(1142,'1980-01-01 00:00:00',5,'en','1484266155','A2','A3','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','NixOS. Both equally: declarative configurations and composable modules.\r\n\r\nFed up with my Arch system being messy (what\'s this systemd unit that is not even enabled for years ?) over the years. It\'s also very hard to setup, it can takes weeks before I remembered all the little things I want to install or git clone there and there.\r\nMy home directory setup was evolved and a lot clearer but Nix can help bring it to the next level.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','Manage dependencies (flakes)','A1','A9','A2','','','','','','','','A13','A4','A8','','','','','','','','','','','','',NULL,'Docker (and bigger tools that rely on it) for testing and deployment. Alcool to cope with the pain for my local machines.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A14','A25','','','','','','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Everytime I look at a screen','A4','Fed up with my previous messy system. I started using Nix because of NixOS.','Y','Y','Y','Y','','','','Composable configuration','Easy and reliable deployment','Extreme expressiveness due to the Nix language, the many NixOS options, and the elegant activationScript model.','NixOS is hugely good and I can only think of small, fixable problems except learning.\r\n\r\nNixOS documentation is very terse and shallow. Concepts like overlays and flakes are not standard (many ways of being used, have alternatives) and have undisclosed flaws (should use override instead ? well it depends). \r\nIt took me hundreds of hours to be comfortable with it even though I agree with the general idea since the beginning.','Painkillers.','Y','','','','','Y','','','','','No DE, xmonad','nix-workspaces, nix-diff, nixos-hardware, nixfmt','None yet.','Thanks for this survey! I\'m confident this will help the community !'),(1143,NULL,NULL,'en','1126093473',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1144,NULL,1,'en','204754536','A1','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1145,NULL,1,'en','1378382988','A2','A3','male','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1146,'1980-01-01 00:00:00',5,'en','1729958062','A5','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','Y','','','A2','A1','A6','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'Docker','A1','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A14','A2','','','','','','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1147,'1980-01-01 00:00:00',5,'en','167283553','A2','A5','male','','Y','','','','','','','','','Y','','','','','','','','','','Y','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I wanted a way to get around library version conflicts on macOS darwin , automate building from source and a better way to manage developer environments ','Y','','','','Y','','Y','Y','','','','','','Y','Y','','Y','','','','A6','A2','A3','','','','','','','','A9','A4','A8','','','','','','','','','','','','',NULL,'a mixture of homebrew and build scripts, templates, asdf + direnv and docker ','A6','','','','Y','Y','','','','','','','','','','','','Y','','','','','none','A2','A1','A17','A8','A3','A9','A22','A13','A14','A10','A7','A15','A18','A25','','','','','','','','A2','A22','A17','','','','','','','','','','','','','','','','','','','','','','modules','A2','','imposter syndrome and past experience of other groups.','N','N','I do plan to try it for my servers, raspberry pi and docker/vm. but will probably use them from MacOS which is my main OS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix-darwin','non yet','I would really like better support for macOS especially a replacement for nix-darwin. \r\nI have also had a lot of issues with updating my nix-darwin, home-manager and nixpkgs system I recently updated flakes and nix-build or Darwin-rebuild will fail resulting in me having to go back to the old setup. I have used flakes a lot but on machines I work from I will probably use flakes and nix-env going forward sometimes it’s handy just to install a package without a rebuild. Often when setting up a system with flakes I will end up having multiple reversions of nix the nix used to first install then as a dependency from building from my flakes.'),(1148,'1980-01-01 00:00:00',5,'en','1202096698','A2','A3','male','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started Nix because it promised truly reproductible isolated environments with atomic rollbacks. It\'s not always easy but it delivered! I don\'t see myself ever going back. :)','Y','Y','','','','','Y','','','','','','','','Y','','Y','','','flake.nix','A2','A1','A10','','','','','','','','A8','A3','A9','','','','','','','','','','','','',NULL,'Gentoo or Arch for Linux, brew on MacOS (which I still use for gui apps)','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A15','A17','A19','A5','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I didn\'t often had the need to. I would be hesitant as it doesn\'t feel easy to navigate through package definitions. It\'s easy when it\'s a simple derivation relying on stdenv. But, often a lot of arguments are required coming from language specific tooling etc. And I have always found them more or less hard to track back and understand.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same reason as Nix, I started Nix because of NixOS.','Y','','Y','','','','','Centralized declarative and reproductible definition of all my OS and packages (flake + home-manager)','Atomic rollbacks/migrations','Stability, never had an issue.','I would have loved to start immediately with flakes and home-manager. I used nix-env before because I wasn\'t aware of those initially, and it\'s really just inferior in every way. So would love if those were more tightly integrated into NixOS, part of the examples, documentation etc.','Gentoo or maybe Arc.','Y','','','','','','','','Y','','','Agenix\r\nNix-darwin\r\nFlake-utils','Nix-env','Thank you for your work, Nix and nixpkgs are amazing.'),(1149,'1980-01-01 00:00:00',5,'en','921700715','A6','A2','male','','','','','','','Y','Y','','Y','Y','','Y','','','','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was using arch before switching to nix, only problem was that I often reinstall for various reasons, sometimes just for fun to get a clean install since I play around with random stuff very often. And it was a pain getting everything I had before to be present again properly, I even wrote an installer script that installs the packages I need, and used stow for managing my dotfiles. But I could never remember to add the packages to the installer script so it was always outdated. When I found out about Nix and NixOS, it piqued my interest, so I started doing some research on what it is and how it works, then I played around with my config in a VM, took a week to learn what I needed, and migrate my config, then I made the switch. I haven\'t had the need to reinstall yet since installing NixOS, but I will for sure, and when I do, I will be in peace knowing that Nix will handle like 95% of what I need to do with just a few commands. I\'m also looking into using Nix as a replacement for building docker images, but I haven\'t looked into that much yet.','','Y','','Y','','','Y','','','','Y','','Personal VPS','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A14','A6','A8','','','','','','','','','','','','',NULL,'I would just stick with Arch + stow for my desktop, and regular docker images.','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A1','A19','A2','A4','','','','','','','','','','','','','','','','','A15','A1','A2','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I\'m still too new to Nix, but maybe one day.\r\nI do have some packages on my dotfiles flake that aren\'t available on nixpkgs, maybe I\'ll try creating PRs to have them added to nixpkgs one day, one day...','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Oops, I already wrote everything on the Nix part.','Y','','','','Y','','Personal VPS','Declarative configuration','Easy rollbacks','Compatible with most programs I tried','Secure Boot with GRUB so that I can do more customization than systemd-boot.\r\nCurrently, I\'m using Lanzaboote but I would like to have a nice GRUB theme and some config changes while having Secure Boot (which I need for things on Windows).\r\nI can\'t really think of anything else so this would be it.','An Arch-based distro, vanilla Arch when I\'m feeling like it, otherwise something like Archcraft or EndeavourOS.','Y','','','','','','','Y','Y','','bspwm, i3, Hyprland, maybe sway in the future too','I use Home Manager.\r\nI don\'t yet, but I will use sops-nix soon™️.\r\nMy config template is this github:misterio77/nix-starter-config#standard\r\nAnd I use github:fufexan/nix-gaming for some games.','None that I can remember','Nope, just thanks for this amazing technology!'),(1150,'1980-01-01 00:00:00',5,'en','798953041','A1','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','Y','','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'The lack of easy documentation, my own laziness and not mentioning exactly how to solve the bugs of Devops domains with nix','he has everything, config as a code, container, sdlc relative handeling focus on devops and more more more ...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'yes, https://github.com/nix-community/awesome-nix#devops and other','...','You are awesome, please just keep going'),(1151,'1980-01-01 00:00:00',5,'en','1493528980','A2','A7','male','','','','','','','','','','','','','','','','','','','','','','','','','retired scientist','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','An update script (LXDE -> LXQT) on Lubuntu was a disaster. ','','','','','','','Y','Y','','','','','','Y','','','Y','','','','A2','A7','A1','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','complexity','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','The upgrade script (LXDE -> LXQt) on Lubuntu was a complete disaster, and I wanted such a thing never to happen again.','Y','','Y','','','','','Fearless system hacking (mistakes easy to correct, experimentation with features easy)','Nix language + Declarative configurations makes it easy to deal with several machines in a unified manner.','rebooting almost never necessary','Add a BSD','Don\'t know anymore. I went through so many linux distributions (+ NetBSD) and now I don\'t intend to change','Y','','','','','','','','','','LXQt','','',''),(1152,'1980-01-01 00:00:00',5,'en','242515225','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Guix, probably?','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','Garnix','A15','A3','','','','','','','','','','','','','','','','','','','','A5','A11','A19','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Declarative configuration','Easy upgrades','','Secure boot','Guix','Y','','','','','','','Y','','','','home-manager','',''),(1153,'1980-01-01 00:00:00',5,'en','1728494213','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','','','','','','','','Y','','','','','','','','','','Y','','','','A1','A2','A3','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','Y','','','',''),(1154,'1980-01-01 00:00:00',5,'en','704741051','A5','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','I started using nix as a homebrew replacement. I used and contributed to guix (and still use it for personal machines) for a few years. I got hired doing nix work almost full time 1.5 years ago where we support production and ci/cd in airgapped configurations. ','Y','Y','','','','','Y','','Y','','','','Production rack units','','Y','Y','Y','Y','Y','nix-eval-jobs for ci/cd','A7','A2','A4','','','','','','','','A6','A11','A12','','','','','','','','','','','','',NULL,'Guix, but it is built on the nix store. Nothing comes close!','A7','','','Y','Y','Y','Y','','','','','','','Y','','','','','','','','Y','','A11','A13','A2','A4','A3','A25','A9','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','I started using a qemu vm from nix a few years back and, after some time using the guix distro, got a job using nixos.','Y','Y','','','','','Production rack units configured with nixos','Purely functional extension language (and library - aka the modules system)','Atomic update/rollback (to the extent possible)','','MORE MAINTAINERS','Nothing compares. Guix of course, but it is too similar to count as an alternative.','','','','','','Y','','','','','Xmonad/startx','nix-eval-jobs, nix-diff, hocker, the various rust build platforms like naersk, the emacs overlay, nil, nixpkgs-fmt, nix-darwin, cabal2nix, yarn2nix, sbtix, nix-top','Sbtix has had on-and-off support so it has been difficult and patchy for us','Thank you. I can\'t believe how much nix has done and continues to do!'),(1155,'1980-01-01 00:00:00',5,'en','1757171057','A3','A4','male','','','','','Y','','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A10','A2','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','','Hypr','','',''),(1156,NULL,NULL,'en','2069869263',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1157,'1980-01-01 00:00:00',5,'en','475554035','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I use nix as a byproduct of using NixOS. It\'s incredibly useful, but I only really started using it because I started using NixOS.','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A4','A8','A14','','','','','','','','','','','','',NULL,'Docker maybe? There\'s not really a replacement to what nix does for me.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A4','A17','A3','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I saw some people using it on r/unixporn, and thought it looked cool, especially after dealing with my own janky solutions for managing dotfiles with shell scripts on Arch. After doing a bit of research I came across the video from DistroTube, which sealed the deal.\r\n\r\nI also had dealt with dependency hell on Arch, along with constantly breaking my system, and NixOS seemed like the perfect solution.','Y','Y','','','','','','Dotfile management (home manager)','Reproducible builds (lifesaver for multiple systems)','Nixpkgs ( Its huge already, and I can extend it easily if I need something)','I would add better support for errors. Often I get errors that are very dependent on context, and if it hadn\'t been something that I\'d just changed, I wouldn\'t know where it came from. Often errors come without line numbers, and I usually spend more time hunting for where an error originated from rather than actually fixing it.','Probably arch with a bunch of shell scripts. I\'d probably be more sane as well.','Y','','','','','','','','','','Hyprland and AwesomeWM','Home manager. Its a really nice tool for working with dotfiles.','None that I can think of.','Even though they drives me insane sometimes, I love nix and NixOS. Keep doing what ya\'ll do.'),(1158,'1980-01-01 00:00:00',5,'en','953468445','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A7','Because I am a programmer and this is sick after. ','','','','','','','','','','','','','','','','','','','','','A7','A1','A9','','','','','','','','A5','A9','A8','','','','','','','','','','','','',NULL,'Flatpak ','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A25','','','','','','','','','','','','','','','','','','','A15','A2','A13','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','','','','','','','','','Documentation ','Ansible/linux','Y','','','','','','','','','','Hyprland','','',''),(1159,NULL,2,'en','1363606998','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Because i wanted a reproducible system, and with a language like nix it was a perfect match','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A7','A2','','','','','','','','A3','A8','A13','','','','','','','','','','','','',NULL,'Fedora Silverblue','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','im not that good :(','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1160,'1980-01-01 00:00:00',5,'en','802139101','A5','A3','male','','','','','','Y','','Y','Y','','Y','Y','','','','','','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I thought it would be a good desktop os for my workstation because you can just keep all your configs In a repo and if you were to lose your primary drive its no big deal to pull it down and rebuild switch ','Y','','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','','A8','A7','A2','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'Arch Linux ','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A1','A6','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','The Nix language is pretty difficult for me but Ive been trying to package a proprietary piece of software for work and it\'s been going well.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Using it for a desktop. It\'s a great resource.','Y','Y','Y','Y','','','','A version controlled configuration ','Development shells','Creating containers and build environments','Nixops is perfect with support for secrets,\r\nNix builds are fast! Especially if not much has changed between builds.\r\nThere\'s an official Nix lsp that can recommend package names and options. ','Arch linux','Y','Y','Y','','','Y','','Y','','','Hypr','','Nixops','I LOVE Nix alot I think it is a near perfect solution for a declarative OS/package manager.\r\nIf we can get better documentation and tooling nix will be an easy recommendation to use at work.'),(1161,'1980-01-01 00:00:00',5,'en','1583638202','A2','A2','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Just out of curiosity ','Y','','','','','','Y','','Y','','','','','','Y','Y','Y','','','','A10','A2','A1','','','','','','','','A14','A3','A2','','','','','','','','','','','','',NULL,'Docker for CI and package managers like brew for local development','A1','','','','Y','Y','','','','','','','','','','','','','Y','','','','Concourse ','A13','','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','','','','-oth-','I develop Nix as a build system for CI and contribute to OSS projects like devenv',NULL,'N','N','Too big of a commitment ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'I use devenv a lot','','I\'d have loved to have more examples when I was first learning Nix. The documentation is not as bad as people say, but to less skilled Nix users, examples would be a much better tool that docs'),(1162,'1980-01-01 00:00:00',5,'en','637680350','A2','A2','fem','','','Y','','','','','','','Y','','','','','','','','Y','','','','','Y','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I have no idea. I think it started with me trying to mock the OS.','','','','','','','Y','','','','','','','','Y','Y','Y','','Y','','A7','A1','A2','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'Docker','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A6','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','No idea what to contribute','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','It started as a joke. Now I\'m trans aswell.','Y','','','','','','','configuration.nix','Rollbacks','immutable','add Secureboot support, secrets support, FHS compat module','Bedrock Linux','Y','','','','','','','','Y','','','home-manager, declarative-flatpaks, nixos-fhs, direnv','',''),(1163,'1980-01-01 00:00:00',5,'en','1270605292','A8','A2','male','','','','','','','','','','','Y','Y','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A7','To learn about the ecosystem to be able to have it as a tool that i can apply to different challenges and tasks.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','Y','','A6','A1','A7','','','','','','','','A10','A5','A8','','','','','','','','','','','','',NULL,'Most likely a combination of some quality of life software and containers','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A15','A25','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A2','','intimidated','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','','','','','','','Reproducibility ','Vast availability of packages','Good developer experience (after the learning curve)','Far later down the line, I would change it to be user-friendly so everyone could use it (i.e. interfaces for a lot of the functionality), and i would either have better documentation or reduce the amount of hacky/unoptomised ways for doing the same thing','','Y','','','','','','','Y','','','','','cachix',''),(1164,'1980-01-01 00:00:00',5,'en','363772172','A5','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A6','','','','','','','','A6','A2','A8','','','','','','','','','','','','',NULL,'\r\nGuix?','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','A9','A20','A22','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(1165,NULL,2,'en','2013063624','A3','A3','-oth-','','Y','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A8','A5','A2','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','Y','','Y','','','','Y','','','','A1','A7','A14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1166,NULL,-1,'en','1863487529','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1167,'1980-01-01 00:00:00',5,'en','1049717080','A2','A2','male','','','','','','','Y','','','','','','','','Y','','','Y','','','','','Y','Y','','','','Y','Y','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I was getting bored from how often my Artix setup was crashing, so I wanted to find a \"endgame\" distro which would let me config stuff once and use it for the rest of my lifetime. Subsequently, I found about the Nix(OS) ecosystem and I fell in love with everything. I\'m quite fond of ML-like languages (Haskell, OCaml, etc) so the Nix language was a breeze to learn. I now use Nix for almost everything: dektop, laptops and phone (portable shell, editor configs) (replaced termux on phone, same story as the Artix), work for various devshells for the different projects i work for ','Y','Y','','','Y','Android','Y','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','A1','A2','A3','','','','','','','','A8','A13','A6','','','','','','','','','','','','',NULL,'I would have probably started using GNU Guix or just stick with my old distros','A2','','','Y','Y','Y','','','','','','Y','Y','Y','','','','','','Y','','','','A15','A13','A22','','','','','','','','','','','','','','','','','','','A14','A20','A11','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Free time and anxiety','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A2','Same as Nix','Y','','Y','','','','','System configuration (beyond just dotfiles)','Trivial rollbacks (through generations) after kernel upgrades','','I\'d add more integrated support for flakes and deprecate the old plain configuration.nix (can really f*** up a system if one does a `nixos-rebuild switch` without the `--flake` flag, because it uses the (probably) really old `configuration.nix`)','Probably GNU Guix','Y','Y','','Y','','Y','','','','','Only WMs','I use nix-darwin and nix-on-droid a lot','','Thank you for keeping such a great project alive'),(1168,'1980-01-01 00:00:00',5,'en','1716822685','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','I\'ve been searching for a good dotfile solution. Home manager did it for me.','Y','Y','','','','','Y','','','','Y','','','Y','Y','','Y','','','','A1','A10','A3','','','','','','','','A4','A9','A10','','','','','','','','','','','','',NULL,'Gentoo or Arch..','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I\'m not a developer.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','due to home-manager\'s capabilities.','Y','','','','','','','integrated nix package manager','ability to roll back to a working state','','','Gentoo or Arch..','Y','','','','','','','','','','i3wm','None that I would know of','None that I would know of','keep up the good work :)'),(1169,'1980-01-01 00:00:00',5,'en','605827352','A2','A2','fem','','','','','','','Y','','','Y','','','','Y','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','i wanted to be able to customize my linux installation as much as possible, and the promise of having a reproducible system sounded nice to me, so i gave nixos a try','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A2','A10','','','','','','','','A8','A14','A9','','','','','','','','','','','','',NULL,'bash scripts and/or containers','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A1','A3','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','not having much time to do it','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','Y','','','','','Configuration is (almost) all in one place and can thus easily be backed up and versioned','How easy it is to install and configure a new service','Large package repository, which can easily be extended with my own packages if needed','Stabilize flakes and make them the default way to work with NixOS','Debian and/or Ubuntu, maybe with Docker for some services','Y','','','','','','','','','','','devenv','',''),(1170,'1980-01-01 00:00:00',5,'en','387638603','A1','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','from youtube','Y','','','','','','Y','','','','','','','','','','Y','','','','A2','A7','A6','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'macos','A2','','','','Y','Y','Y','Y','','','','','','','','Y','','','','Y','','','','A1','A2','A15','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','youtube','Y','','','','','','','','','','','','Y','','','','','','kexec','','','','sway','','',''),(1171,'1980-01-01 00:00:00',5,'en','2140790989','A2','A3','-oth-','x','Y','','','','','','','','','','','','Y','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','was working on devops related stuff, read about nix and instantly decided it was the correct and proper way to do things. Have been a user and advocate ever since.','Y','Y','','','','','Y','','Y','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A9','A2','','','','','','','','','','','','',NULL,'some cursed combination of ansible, docker and make files most likely ','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A4','A3','A25','A2','A15','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','free time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','as soon as I learned about nix I instantly wanted to be all in. ','Y','','Y','','','','','reproducible environments','deep control over all aspects of my system','ability to make sweeping changes without fear','for my needs it’s basically perfect. better documentation would be nice I guess, and just a stabilised flake and modern cli too. ','arch linux for my workstation and like debian plus ansible for servers I guess. ','Y','','','','','','','','','','sway','cachix\r\nflake-parts\r\nnix-direnv/direnv\r\nhome-manager','niv & morph. stopped using because flakes and nixos-rebuild solved the same problems with less moving parts ',''),(1172,'1980-01-01 00:00:00',5,'en','710458789','A5','A2','fem','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Ease of system management, reproduceability','','Y','','Y','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A1','A7','A2','','','','','','','','A8','A13','A3','','','','','','','','','','','','',NULL,'A hodgepodge of dotfiles, meson, and probably spack','A4','','Y','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A2','A15','','','','','','','','','','','','','','','','','','','A1','A6','A5','','','','','','','','','','','','','','','','','','','Y','Y','','upstreaming things','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A fully declarative system to reduce the headache, it makes system management easier and importantly, rollbacks possible, without engineering something like a btrfs snapshot system (like Fedora Silverblue)','Y','','','','','','','Atomic updates/rollbacks','System reproduceability','Testability','Both it and nixpkgs, making them less piles of inline-bash and more scripts with Nix (so you can add true support for other implementations), additional tests and external framework for testing users\' NixOS configurations, a libvirt domain module, and SELinux tooling/options','Probably Fedora Silverblue or Manjaro. Or piles of DSC and PowerShell modules on top of Windows :(','Y','','','','','','','','','','Sway','nixos-hardware, nix-on-droid, flake-utils, nixpkgs-lib, disko, impermanence, nix-index & nix-index-database, comma, nil, sops-nix, nixvim, gitignore.nix, pre-commit-hooks.nix, nix-direnv, nixos-icons, statix, poetry2nix, nixpkgs-fmt, terranix','node2nix, napalm, vulnix, nvd, rnix-lsp, rnix-parser, nix-linter, dream2nix, nixfmt, devshells.nix, digga','I really enjoy using Nix, but while it could be broken up, so could Nixpkgs like with its lib, builders, and maybe NixOS, and the limited type system of Nix really hurts sometimes. \r\n\r\nI\'ve also had some experiences with members of the community in the past who had strong Opinions that have...colored my opinion of the ecosystem as a whole and my willingness to contribute. Most of those members have either since been banned or I\'ve managed to avoid though, so I\'m largely better and more willing to help, but dealing with \"capital \'O\' \'opinions\'\" takes _a lot_ of energy, especially when its on something largely arbitrary'),(1173,NULL,1,'en','761675845','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1174,'1980-01-01 00:00:00',5,'en','954097490','A2','A3','male','','Y','Y','','Y','Y','Y','','Y','Y','Y','','','','Y','Y','Y','Y','','Y','Y','Y','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Someone told me the pitch, I thought it was impossible, I tried out in anger, and I was wrong.','Y','Y','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','Y','Y','research and a lot of other things.','A1','A7','A6','','','','','','','','A11','A2','A7','','','','','','','','','','','','',NULL,'Guix, and if nothing like Nix existed, Gentoo probably.','A3','','Y','Y','','Y','','Y','','Y','Y','','Y','','','Y','Y','','Y','Y','Y','Y','Buildbot, Drone CI, Gitea Actions','A15','A2','A13','A1','A7','A25','A22','A6','A24','A10','A3','A4','A9','A18','A17','A21','A19','A11','A5','A8','A14','A24','A10','A22','','','','','','','','','','','','','','','','','','','Y','Y','Y','Applying patches on the top of nixpkgs','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','When I thought it was impossible and I was wrong about Nix, I used Archlinux+Nix for a while and then a day my base packages exploded.\r\nI could not fix them in a timely fashion, at that moment, I knew that time to NixOS was faster than time to fix my Archlinux setup.','Y','Y','Y','Y','Y','Y','Routers, switch (network gear).','NixOS modules','Advanced systemd usage','System agility (specializations, boot, NixOS tests, etc.)','I don\'t have a magic wand, I have merge access :P.\r\n(1) Faster NixOS modules\r\n(2) Multi-instances \"as a first class citizen\" in NixOS modules design\r\n(3) NixOS convergence solution \"ensureXXX\", state migrations, etc. (see my issue on it in nixpkgs)','Oh lord… Gentoo and quitting computers ASAP.','Y','Y','Y','Y','Y','Y','','','','','sway','lanzaboote (ok I\'m author…), nix-index, home-manager, disko, nil, nix-eval-jobs.\r\nsoon: tvix?','nixpart, flakes.\r\nsoon: cppnix?',''),(1175,'1980-01-01 00:00:00',5,'en','503842351','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','At first I was attracted by the \"one configuration to rule them all\" approach. Then I realized the power that comes from packaging / managing things with nix.\r\n\r\nNow building things without it feels dirty and fragile. ','Y','Y','','','','OpenBSD','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','','Y','','A2','A1','A6','','','','','','','','A6','A9','A7','','','','','','','','','','','','',NULL,'Something like ansible.. and I\'d cry .. every.. night..','A1','','','','Y','Y','','','','','','','','','','','','','','','','','Shell Scripts','A9','A25','A18','A7','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','See \"Why did you start using Nix\" :D','Y','Y','Y','Y','','Y','','Worry free computing. My services, configurations, packages.. all set in stone.. things only change because I change them.','','','','OpenBSD.. while crying myself to sleep..','Y','','','','','Y','','','Y','','','','',''),(1176,'1980-01-01 00:00:00',5,'en','25887833','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I got introduced by it by a friend when I was still using Arch Linux. It really resonated with me, addressing some major pain points I had with Arch, like no longer having to lookup whatever commands I figured out to use 6 months prior to fix some random issue that tended to pop up due to Arch\'s bleeding rolling release.','','','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A10','A4','','','','','','','','A11','A7','A6','','','','','','','','','','','','',NULL,'yay (Arch Linux)','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A15','A13','A10','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I have contributed a few packages in the past, however I never really been a proper active maintainer of them, though almost all of them have been picked up by others that do want to maintain them. I stopped contributing new packages or patches after some bad experiences. A few times where I was forced to apply opinions or else it would not get merged, despite being clearly opinions, because there would for example be a lot of president in similar packages already in Nixpkgs. And a few where rather than asking for clarification they went and assumed I knew nothing and spammed all kinds of \"helpful\" messages that I then felt the need to defend myself for otherwise everybody would too assume I knew nothing. Making me feel like shit, and it only lead to everybody\'s time being wasted. At some point I just figured, why bother. I am currently only contributing in the form of a few flakes.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','It is the same story as for Nix, as I started using Nix using NixOS, only later that I also started using Nix outside of NixOS. I learned of NixOS through a friend and shorty after starting using it full time as a replacement for Arch Linux. This was 2015, so I still had to package a few things myself, but with the help of that friend and the IRC channel I managed and have been a happy user since.','Y','Y','Y','Y','','','','Having artifacts in the form of Nix files representing the knowledge (setup, fixes, etc.) you have about your system','Having reproducible builds','Easy to share development setups','A more independent module system that would work with NixOS, Home Manager, but also devenv and various container technologies, like Docker. It seems a waste that every different environment needs to reinvent their modules.\r\n\r\nIt would be awesome if you could have multiple instances of some modules. Their are submodules, but some modules are setup with the assumption that there will only be one running instance.','Arch Linux','Y','','','','','Y','','Y','','','i3','extra-container','devenv (due to not having access to the existing NixOS modules)','Keep up the good work!'),(1177,NULL,NULL,'en','2128016963',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1178,'1980-01-01 00:00:00',5,'en','1079572133','A2','A4','male','','','Y','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','got sick of installing ffmpeg with homebrew and it leaving a ton of random packages around I didnt care about','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','','','','','A2','A10','A7','','','','','','','','A8','A12','A14','','','','','','','','','','','','',NULL,'homebrew, asdf','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A7','A25','','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','One person reviewed my first pr, but then no one else so it\'s just sitting there unmerged for several months now? Idk what to do','Y',NULL,NULL,NULL,NULL,'A3','Y','','','','A1','Needed to build some arm64 linux things, used a vm on my m1 macbook','Y','','','','','','','','','','','','','','','','','','','','','','none','home-manager','','make some way for PRs to not fall through the cracks for months. It\'s very discouraging. Instead I\'ve just been working on my own flakes for things instead of sending things into the official nixpkgs repo. Like why bother making things nice for that repo when it\'s just ignored forever?'),(1179,'1980-01-01 00:00:00',5,'en','80396510','A2','A2','-oth-','agender','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Nix just \"came with NixOS\" for me, and now I use it to never have to install project-specific things system wide and have a unified build and packaging system for all my software.','','Y','','','','','Y','Y','','','','Y','','','Y','Y','Y','','','','A3','A2','A7','','','','','','','','A11','A9','A13','','','','','','','','','','','','',NULL,'I have no idea. I haven\'t really looked back since I started using nix. Probably different tools per language with direnv to keep project-specific tools with the projects','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A14','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','The core problem I was trying to solve, when I ran into NixOS by chance, was keeping my occasionally used machines, like my laptop, in-sync and up-to-date with my main workstation (in terms of installed software and their configuration). NixOS looked like a way to archive what I want, with quite strong guarantees. (It turned out to be a very good choice for what I wanted from it.) ','Y','','Y','','','Y','','Being able to manage my system configuration as code in git','Declarative configuration of anything I really care about in my system','Easy rollbacks if I break my system','','I don\'t know, possibly guix or ansible to keep my system configurations synced.','Y','','','Y','','','','','','','Sway (but not the nixpkgs/home-manager modules)','impermanence, agenix, home-manager, naersk, fenix, opam-nix (tweag\'s)','',''),(1180,NULL,NULL,'en','1256398957',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1181,'1980-01-01 00:00:00',5,'en','1994751668','A3','A3','male','','','','','','','Y','','','Y','Y','','','Y','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','Y','','','','','','Y','Y','Y','Y','','','A8','A2','A3','','','','','','','','A8','A13','A3','','','','','','','','','','','','',NULL,'Container','A4','','','','Y','Y','','','','','','','','','','','','','','','','','Google Cloud Build','A15','A9','A1','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','N','System76 developing and maintaining a NixOS module that tries to match the Pop OS experience.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'direnv, Nix-IDEA, nix-mode','nix-doom-emacs',''),(1183,NULL,1,'en','1262621901','A2','A3','fem','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1184,NULL,2,'en','953645875','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','Y','Y','','','Y','','','','Y','Y','Y','','','','A1','A10','A7','','','','','','','','A12','A2','A1','','','','','','','','','','','','',NULL,'','A4','','Y','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A3','','','','','','','','','','','','','','','','','','','A15','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','Y','','Y','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(1185,'1980-01-01 00:00:00',5,'en','372653218','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','Got into linux about a year ago, started distro hopping as one does. Went from manjaro to arch and then with the recent nixos release I was finally able to get nixos working on my primary desktop/laptop (previously i had been unable to get the graphical environment to start and this issue persisted across different devices so I decided to wait until the next major release). Through using arch I had gotten comfortable with the idea of downloading software from a repository, editing dotfiles, and using the linux command line. As I was considering various linux distributions I realized that nixos/nix just seemed to have a number of innovations (declarative builds, atomic upgrades, nix-shell for isolated development environments, flakes, etc.) over and above any of the other distributions which mostly just boiled down to choosing between different package managers.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A7','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'arch and pacman','A2','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A2','A17','','','','','','','','','','','','','','','','','','','','A2','A17','A1','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Inexperience','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Got into linux about a year ago, started distro hopping as one does. Went from manjaro to arch and then with the recent nixos release I was finally able to get nixos working on my primary desktop/laptop (previously i had been unable to get the graphical environment to start and this issue persisted across different devices so I decided to wait until the next major release). Through using arch I had gotten comfortable with the idea of downloading software from a repository, editing dotfiles, and using the linux command line. As I was considering various linux distributions I realized that nixos/nix just seemed to have a number of innovations (declarative builds, atomic upgrades, nix-shell for isolated development environments, flakes, etc.) over and above any of the other distributions which mostly just boiled down to choosing between different package managers.','Y','','','','','','','reproducible builds','Atomic upgrades & rollbacks','isolated development environments (nix-shell)','i\'d probably just improve the documentation.','arch','','','','','','','','','Y','','hyprland','home-manager','n/a',''),(1186,'1980-01-01 00:00:00',5,'en','1503798267','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Previously, I used Arch Linux and openSUSE Tumbleweed for multiple years. While they are both great distributions, NixOS allows me to have my computer configuration as code. Since I need my computer for work, I don\'t want to ever again have to reconfigure something in my setup. Once something is configured, it\'s done for good. If somehow my computer isn\'t usable anymore due to hardware failure, I can bring back my setup quickly on another computer and keep working. The extra safety of being able to rollback to a previous generation at boot is really a great feature. The huge amount of packages available is also awesome.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A7','A1','A2','','','','','','','','A5','A14','A9','','','','','','','','','','','','',NULL,'openSUSE Tumbleweed or Arch Linux','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A7','A24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I did contribute to Nixpkgs, but only minor patches. Previously on Arch Linux and openSUSE Tumbleweed, I maintained a dozen packages and while there was definitely a learning curve involved into getting started with packaging for those distributions, it\'s nowhere near what one has to learn for Nixpkgs. Even after 3 years of NixOS usage, I still am fairly beginner when it comes to packaging for Nixpkgs. The documentation is often lacking, outdated or quite verbose. This is the biggest barrier to overcome as a new contributor.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','See what I wrote for Nix in the previous section.','Y','','','','','','','','','','Better documentation','Arch Linux and openSUSE Tumbleweed','Y','','','','','','','','','','i3','home-manager','','Thank you for your work!'),(1187,'1980-01-01 00:00:00',5,'en','371615907','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','','Y','Y','','Y','','Y','Y','Y','Y','Y','Y','','A8','A1','A9','','','','','','','','A12','A5','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','Y','Y','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','A15','A1','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','Y','','','','','','','Y','','','','','Y','','','','','','nix2container','',''),(1188,'1980-01-01 00:00:00',5,'en','978701339','A2','A3','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','There\'s simply nothing like it. (I\'ve known about Nix since ~2007-2008, but resisted jumping in for the longest time because it seemed like a fuss. Honestly, it is a fuss, but it\'s worth it.)','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A6','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'Probably a Bazel-like (Buck2?) for builds, and something that makes me sad for configuration management. Maybe I\'d get into Kubernetes.','A2','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A15','A1','','','','','','','','','','','','','','','','','','','','A1','A15','A9','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','See my response to the Nix question: there\'s nothing else like it. Atomic upgrades, declarative configuration, and (relatively) immutable infrastructure are priceless. Plus it\'s not built out of string-templated YAML.','Y','','Y','','','','','Reproducible declarative environments and systems','Atomic upgrades and rollback','Ease of customizing packages/services and orchestrating complex interacting setups','I would make NixOS best-in-class for security and hardening and implement pervasive containerization (including user environments). I would also remove all the Bash and Perl.','Maybe Fedora Silverblue or something on the desktop, maybe I\'d get into Kubernetes for servers.','Y','','','Y','','','','Y','','','','nix-direnv\r\nnix-darwin\r\nhome-manager\r\nflake-utils\r\noxalica/rust-overlay (though I\'ve considered fenix too)\r\noxalica/nil (also interested in nixd)\r\n(r)agenix\r\nalejandra (but I will adopt whatever RFC 0101 ends up with)\r\ndevshell\r\nimpermanence','','Process is a big problem in NixOS. The RFC procedure is intended for large controversial changes and yet ends up not working well for precisely those (e.g. Flakes, the formatting RFC). There is also a lack of clear responsibility and ownership for many things, leading to PRs getting drive-by feedback but ultimately dying on the vine (I realize that this is in part limited by available volunteer resources and don\'t hold it against anyone permanently, nor do I want to significantly lower standards to fix this). I hope that the ruptures of community trust/confidence that Flakes has lead to can be healed and that the community can be united once again (I do think Flakes are an improvement overall, despite my standard technical misgivings - poor handling of systems and attendant boilerplate, lack of value-based parameterization, unclear overlay/leaf packages divide and attendant explosion of nixpkgs imports and input overrides). I hope that processes can be improved across the board and the contributor experience gets better as a result. Despite all this, I love Nix/nixpkgs/NixOS and there\'s nothing else like it.'),(1189,'1980-01-01 00:00:00',5,'en','793316623','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','Software Architect','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I only started using Nix outside NixOS later in my nix journy. The main reason was that I wanted to review nixpkgs PRs on my notbook wich was running Archlinux.','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A7','A1','A2','','','','','','','','A9','A8','A5','','','','','','','','','','','','',NULL,'Bitbake or Brew','A3','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A15','A4','A9','A5','A2','A10','A3','A1','','','','','','','','','','','','','','A15','A2','A5','','','','','','','','','','','','','','','','','','','','','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','I wanted to run Gitlab CI with docker at scale and ran into issues with overlayfs and aufs. To try out kernel, gitlab-runner and docker patches on production systems NixOS as it allowed me to relatively safely roll out patches and verfiy the fix the issue. I then learned more about the internals an also switched my debian server to NixOS.','Y','Y','Y','Y','','','','Single configuration file for the whole system','Source based from a single git repository','Atmic Update and rollback','Make all packages have deep test coverage so that the merging of package update PRs can be automated','Debian with Ansible or GuixSD','Y','','','','Y','','','Y','Y','Y','Cinnamon','nixpkgs-review\r\n','jupyenv - couldn\'t get it working with tensorflow\r\nNixOps - no good solution for state sharing at the time\r\nhome-manager - not in nixpkgs and I wasn\'t using flakes when I tried',''),(1190,'1980-01-01 00:00:00',5,'en','41327657','A5','A2','male','','','','','','Y','','','Y','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','','Y','','','Y','','Y','Y','Y','','','','','Y','Y','','','Y','','','A5','A8','A2','','','','','','','','A14','A9','A13','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','Self-hosted WIP Projects','A1','A9','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','Y',NULL,'Not a fan of systemd','I prefer minimalistic systems. I don\'t think that is what NixOS is trying to do (which is fine).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1191,NULL,NULL,'en','1072010112',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1192,NULL,3,'en','1500796931','A2','A2','-oth-','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A2','A4','','','','','','','','','','','','','',NULL,'','A2','','Y','','Y','Y','Y','Y','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','',NULL,NULL,NULL),(1193,'1980-01-01 00:00:00',5,'en','74302712','A7','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','','','','','','','','','','','','time to learn',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Couldn\'t get my GDM config working via Login Manager Settings Flatpak','Having the time to figure it out and configure GDM via dconf/gsettings',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1194,NULL,NULL,'en','994798415',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1195,'1980-01-01 00:00:00',5,'en','1370289089','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I heard Nix could compile Haskell projects more reliably than Cabal, then I got interested in switching from Arch to NixOS.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A9','A1','A7','','','','','','','','A8','A3','A6','','','','','','','','','','','','',NULL,'Docker','A1','','','','Y','Y','','','','','Y','','Y','','','Y','','','','Y','','','Semaphore','A1','A9','A15','A3','','','','','','','','','','','','','','','','','','A1','A15','A9','','','','','','','','','','','','','','','','','','','Y','','','applyPatches','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','','','Leverage community configurations to quickly get going','Compartmentalized configuration','Rollbacks','Better secret support','Ubuntu','Y','','','','','','','Y','','','','agenix\r\ncargo2nix\r\n','',''),(1196,'1980-01-01 00:00:00',5,'en','910919924','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','4ish years ago, I was trying to automate setup of both servers and pcs, trying to find a way to reduce a lot of the duplicated work and centralize things as much as possible. Lo and behold, I came across a distrotube video on nixos (the very first one he posted, tho by that point the video was like a year old). Nixos was basically what I wanted, just designed 100x better than what I could come up with :p','','Y','','','','','Y','Y','Y','','','Y','','Y','Y','Y','Y','Y','Y','','A6','A2','A10','','','','','','','','A15','A8','A13','','','','','','','','','','','','','Better (or at least more tested) cross compilation support','Guix, if that even exists in this hypothetical, otherwise some arch based system with a whole lotta ugly custom scripts on top','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','drone','A15','A2','A4','A3','A9','A18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time, and the sheer size of the project can be a bit daunting too.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','','','Y','','Whole system cross compilation support','Declarative configurations','Extensibility / modularity','','','Y','','','','','Y','','','','','hyperland','Home manager, vulnix, impermanence, agenix','','Keep being awesome (:'),(1197,'1980-01-01 00:00:00',5,'en','1162117374','A5','A2','-oth-','Non-binary','','','','','','Y','','','','','','','Y','','','','Y','','','','','Y','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','i first started using nix at the recommendation of a friend. for years i had been using dotfiles in a bare git repo, install scripts, ansible playbooks, etc. to keep my systems clean and easy to setup, as well as third party repos and flatpak for a lot of desktop apps. i was a bit hesitant to leave this at first, since nix(os) seemed pretty complicated and it would be yet another package manager i had to deal with. after making a nixos configuration for wsl though, my views changed up very quickly. i realized that all of these tools, repositories, and scripts i was using before could all be replaced by nixos; and since then, i haven\'t really stopped using it. i love how easy it is to customize my system, share configurations between them, override packages to have exactly what i want, and have any package i could ever need in one place. it\'s really been a game changer for me and i don\'t see myself leaving it anytime soon','','Y','','Y','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','','A3','A1','A2','','','','','','','','A5','A9','A10','','','','','','','','','','','','',NULL,'i would most likely use bare git repos to manage dotfiles and things like ansible and bash scripts to manage systems. i would also probably go back to using docker for most of my deployments','A2','','Y','','Y','Y','','','','','','','Y','Y','','','Y','','','Y','','','','A2','A15','A4','A1','A26','A9','A5','','','','','','','','','','','','','','','A1','A15','A26','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','i started using nixos and nix around the same time for similar reasons. ansible and random bash scripts worked for my devices previously, but having a way to declare everything i want in one centralized repository really appealed to me. i quickly found out about nixos modules, and once i saw how easy it was to setup services with them, i almost immediately switched all of devices to them. getting rid of all of these random tools - or replacing others like docker - was a massive benefit to me, especially for server management. it\'s awesome having a reliable system that i can control with basically just a git repository :)','Y','Y','Y','','','','','declarative management','package availability ','stability','i would add the ability to edit what some modules. i\'ve found myself creating my own modules to sort of wrap others, so it\'s not a major issue - but it\'d be very nice if if there was an official, supported method.','i would probably use RHEL/rocky linux. they\'re the only other distros i really enjoy managing and what i had used for years before nixos.','Y','','','Y','','','nixinate','Y','','','','home-manager, lanzaboote, and flake-parts are the main ones. they\'re all amazing projects and make writing stuff with nix and using it a lot better.','flake-utils, crane, naersk, and dream2nix are the only few projects i used for a bit but stopped. i felt the first three were a little pointless given the tools in nixpkgs, and with dream2nix i didn\'t enjoy the amount of abstraction - though i do see how it\'s very useful for those who are less familiar with nix or very large, complicated projects.',''),(1198,NULL,NULL,'en','84850767',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1199,'1980-01-01 00:00:00',5,'en','1816550166','A5','A2','-oth-','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Someone told me about it I found it interesting.','Y','','','','','','Y','','','','','','Virtual Machines','Y','Y','','','','','','A1','A6','A7','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A15','A17','A8','A1','','','','','','','','','','','','','','','','','A8','A17','A1','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','','Y','','','','','','Virtual Machines','Reproduceability','Amazing package manager ','Great customizability ','','','Y','Y','','','','','','Y','','','','','',''),(1200,NULL,1,'en','1902197855','A5','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1201,'1980-01-01 00:00:00',5,'en','410481130','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A1','A2','A8','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','Y','','Y','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A1','A11','A10','','','','','','','','','','','','','','','','','','','','','','newScope','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','','','','','','Y','','','','','Y','','','','','dwm','','',''),(1202,NULL,2,'en','238647729','A5','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A2','A7','','','','','','','','A14','A8','A5','','','','','','','','','','','','',NULL,'Arch','A4','','','','','','','','','','','','','','','','','','','','','','','A15','A17','A3','A2','A13','A14','A5','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I don\'t know how to',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1203,'1980-01-01 00:00:00',5,'en','442197907','A2','A4','-oth-','why?','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','NixOS','A2','Someone told me about NixOS, and it sounded exciting to me. It kinda follows that I started using Nix as well.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A5','A10','A1','','','','','','','','A14','A8','A9','','','','','','','','','','','','',NULL,'I would use Arch btw, I would probably do a bunch of shell scripting.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Skill, lazyness, lack of confidence.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','Daily driver','A3','This person was telling me all about it and I got super excited.','Y','','','','','','','Configurability','Reproducibility','package availibility','I would add documentation. A lot of it.\r\n\r\nI would change the store from: \r\n/nix/store/cwjdwjlyrwlqziybi04yyf5alqmc56vr-cudatoolkit-11.7.0.drv\r\nto:\r\n/nix/store/cudatoolkit-11.7.0.drv-cwjdwjlyrwlqziybi04yyf5alqmc56vr','I would use Arch btw.','Y','','','','','','','','','','sway','home-manager','well I tried home-manager, then I stopped, but then I started again.',''),(1204,'1980-01-01 00:00:00',5,'en','2008913325','A2','A3','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Stability stability stability','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'Portage','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','frankly, laziness, i know...','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Stability','Y','','','Y','','','','rollback','reproducibility, duh ;) ','package-availability','honestly pretty happy with the current state, the more i think about it','Gentoo','Y','','','','','','','Y','','','Hyprland','dont know right now','dont know right now',''),(1205,NULL,1,'en','963621472','A2','A5','male','','','Y','','','','Y','Y','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1206,NULL,1,'en','1214914705','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1207,'1980-01-01 00:00:00',5,'en','2135792619','A2','A2','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted a better dot file management solution for my Arch Linux setup, which ended up with moving to full NixOS + home-manager setup','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','Y','','A1','A3','A7','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'Probably Arch Linux, Ubuntu and Github Actions combined with Docker and lots of crap shell scripts','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A6','A1','A2','','','','','','','','','','','','','','','','','','','A6','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Same as Nix','Y','','Y','','','','','Easy configuration management','Easy access to any packages I need in scripts that’s then portable and reproducible','Great rollback support','','Docker, k8s, Terraform and Ansible on Ubuntu and Arch Linux systems','Y','','','','','','','','','','sway','','',''),(1208,NULL,1,'en','417380383','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1209,'1980-01-01 00:00:00',5,'en','1278198542','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I kept hearing people saying how amazing Nix was on online forums like Reddit and HackerNews, and then tried myself.','Y','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A6','A5','','','','','','','','','','','','','',NULL,'Ansible','A4','','','','Y','','','','','','','','','','','','','','','','','','','A23','A24','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Things mostly work for me, and as such have not had the need to contribute much.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Heard NixOS evangelism on online forums like reddit and hackernews, decided to try for myself.','Y','','','','','','','Declarative Configuration','Rollbacks','','','Ansible','Y','','','','','','','','','','i3','nix-direnv, home-manager, nix-darwin','lorri',''),(1210,NULL,NULL,'en','355352224',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1211,NULL,NULL,'en','1306011672',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1212,'1980-01-01 00:00:00',5,'en','1587150329','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','N','N','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Already planned to test it',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1213,'1980-01-01 00:00:00',5,'en','1193214378','A2','A2','fem','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','A friend recommended it to me and it looked very promising. Now I\'m about 3 months in and I can\'t stop.','Y','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A6','A4','A14','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A1','A2','A5','A6','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','','','','','','','','','','Y','','','','','','','','','','Hyprland (wayland)','','',''),(1217,NULL,NULL,'en','1502222349',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1215,'1980-01-01 00:00:00',5,'en','991662989','A2','A2','-oth-','non binary','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1218,NULL,NULL,'en','1203598856',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1216,'1980-01-01 00:00:00',5,'en','99230780','A2','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I started to use Nix cause I switched to NixOS','','Y','','','','','Y','Y','','','Y','','','Y','Y','Y','Y','','','','A1','A7','A2','','','','','','','','A14','A6','A5','','','','','','','','','','','','',NULL,'Ansible ','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Being very new to nix and programming in general\r\n','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Doing what I want to do with ansible was starting to become painful, as well as me getting confortable with Arch on my PC and Fedora on my laptop','Y','','Y','','Y','','','Configuring all of my computers with a single file','Having multiple generations for rollbacks','','A way to declarably manage flatpaks and KDE','Ansible ','Y','','','','','','','','Y','','','','',''),(1219,NULL,1,'en','535842937','A2','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','N','N','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1220,'1980-01-01 00:00:00',5,'en','1394036202','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Switched to NixOS, which sort of requires using Nix from time to time.','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A7','A3','A10','','','','','','','','A14','A8','A3','','','','','','','','','','','','',NULL,'Arch, probably. With a lot of cabal sandboxing.','A4','','','','','','','','','','','','','','','Y','','','','','','','','A13','A7','A3','A4','A14','','','','','','','','','','','','','','','','','A13','A7','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Not familiar enough with Nix, and especially with good coding practices for Nix. Afraid I\'ll pollute the waters with bad code/waste people\'s time.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','Daily driver','A4','Been running linux on my daily driver since 2011, first Ubuntu and then Arch. Eventually got tired of things breaking in Arch -- dependency hell -- and went looking for alternatives. NixOS sounded like a good fit because I already had experience with functional programming in Haskell and OCaml. Tested it out, haven\'t looked back.','Y','','Y','','','','','Atomic updates & rollbacks (updates are safe)','Sandboxing (nix-shell) for development projects','Stable configuration','Add some helper tools to make packaging programs not already in nixpkgs easier, enough that I\'d have confidence in the code being good enough to contribute upstream','Arch','Y','','','','','','','','','','XMonad','','',''),(1221,NULL,1,'en','621144949','A2','A3','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1222,'1980-01-01 00:00:00',5,'en','1923966719','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Constantly breaking my installs because I like to tinker, nix let me mess around and have an easy way to restore things.','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A10','A2','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'I previously used Arch for about 4 years, but I switched to Nixos from about 6 months of Gentoo. ','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A21','A13','A6','A25','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don\'t think I know nix well enough to contribute well.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','already answered','Y','','Y','','','','','','','','nix-profile and nix-env don\'t really need to exist, flakes shouldn\'t be experimental either','gentoo','Y','','','','','','','','','','i3','direnv','','just wanna give my personal kudos to nobbz and gerg for being such great help in getting me started with nixos'),(1223,NULL,NULL,'en','1659253217',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1224,'1980-01-01 00:00:00',5,'en','419148510','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','Y','','','','','','','','Y','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A8','A6','A10','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A13','A22','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','Y','','','','','Declarative system configuration','','','','guix','Y','','','','','','','Y','','','','https://devenv.sh/\r\nhttps://github.com/nix-community/impermanence\r\nhttps://github.com/nix-community/home-manager','',''),(1225,'1980-01-01 00:00:00',5,'en','1107889043','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A1','A3','A7','','','','','','','','A4','A5','A9','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','Y','','','','','','','','','','','A4','A2','A3','','','','','','','','','','','','','','','','','','','A15','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Stuff works or I\'m not sure how to fix it','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','Config sharing between devices','Abstractions using options','Rollbacks','Add better firewall options,','Arch or derivate?','Y','','','','','','','','','','Xmonad, i3/sway','home-manager, sops-nix','',''),(1226,'1980-01-01 00:00:00',5,'en','1596971075','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','Y','Y','','','Y','','','','Y','Y','Y','','','','A1','A10','A7','','','','','','','','A12','A8','A2','','','','','','','','','','','','',NULL,'Homebrew, pacman, paru, custom shell scripts','A4','','Y','','Y','Y','Y','','','','','','','','','','','','','','','','','A2','A3','A15','','','','','','','','','','','','','','','','','','','A15','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','Y','','Y','','','Fearless tinkering','The ability to patch any package','Keeping configuration files in sync on all devices','','Arch Linux and macOS','','','','Y','','','','','','','Phosh','mobile-nixos, home-manager, simple-nixos-mailserver','',''),(1227,'1980-01-01 00:00:00',5,'en','1112201609','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Suggested by a coworker. Big draw for me was having reproducible system configurations (instead of managing dotfies with stow).','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A2','A1','A9','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'Probably a combination of stow and ansible.','A1','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Suggested by a coworker. The idea of programatically defining my system configuration was a big draw for me.','Y','','Y','','','','','','','','','Probably a combination of stow and ansible.','Y','','','Y','','','','','','','sway','','',''),(1228,NULL,NULL,'en','1246892307',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1230,'1980-01-01 00:00:00',5,'en','134958908','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Came from Debian with Puppet. Liked the power of declarative configuration. Loved the ability to roll-back mistakes.','','Y','','','','','Y','Y','','Y','','','','','','','Y','','','','A2','A7','A1','','','','','','','','A6','','','','','','','','','','','','','','',NULL,'Debian with Puppet','A7','','','','Y','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I do not yet comprehend how to build software with Nix, and nearly everything I want to use is already packaged.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','I can deploy software to a server, evaluate it, and roll back if needed. ','I can share configuration of the software on the server and either bring someone else up to speed or learn a better way, record that in the repository, and keep that benefit','','','Debian with Puppet','Y','','','Y','','','','','','','Sway','','',''),(1231,NULL,2,'en','278550445','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Dynamically generated dotfiles. I had started writing a templating enginge for config files and someone mentioned that it was similar to Nix. Turns out he was right and I love it.','','','','','','Only NixOS','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A9','A2','','','','','','','','A5','A9','A8','','','','','','','','','','','','',NULL,'My aforementioned self written config file templating engine.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','The perception of my current skill level. I\'ve been using Nix for about 4-5 weeks now. I don\'t feel totally ready for making \"production software\" yet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1232,NULL,1,'en','876391580','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1233,NULL,0,'en','1538118592','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1234,'1980-01-01 00:00:00',5,'en','1076458617','A8','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I wanted to move from Windows to Linux ever since Windows 11 came out. I was still on Win10 on my desktop, but Manjaro on my laptop.\r\nAs soon as I found out about NixOS in January I just knew that it was the one for me. Both for learning a new skill but also for easy configuration management.','','','','','','','Y','Y','','','Y','','','','','','Y','','','','A1','A2','A3','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'YAML I guess','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A1','','','','','','','','','','','','','','','','','','','A15','A1','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I wanted to fully switch to Linux from Windows, and as soon as I heard about NixOS I was sold.','Y','','Y','','Y','Y','','easy system configuration','easy reliability and rollbacks','once it builds it just works, no need to worry about future changes','A native GUI that live syncs with my configuration.nix that has live search for options and packages locally.\r\nAnd each option has documentation and resources to deep dive into any option for more details. (could just be a link to a documentation site, but that skips having to google search first. Go right to the relevant page from within the GUI.\r\nThis GUI also has a few wizards for different setups with specific scopes.\r\nThe GUI also can auto format configuration.nix so all similar items are grouped together. ( services = {}; etc, etc...)','Arch','Y','','','','','','','','Y','','','Home Manager','','Keep up the good work.\r\nPlease prioritize hiring documentation admin/management personal, someone who can design a clear path forward to unify all Nix documentation.\r\nAnd try to use a custom AI build that only knows Nix, Nixpkgs and NixOS that we can chat with that helps newbies and veterans alike.\r\n^ I think if an AI can read all the current Nix information and manuals, and we can ask questions that it can answer with links to more detailed pages that would be great.\r\nAlso, a native peer-to-peer cache sharing system builtin to NixOS and enable with an option, so we can share bandwidth and storage with others, saving foundation money and then hiring more documentation maintainers. Win, win, win.'),(1235,'1980-01-01 00:00:00',5,'en','1215682213','A7','A2','male','','Y','Y','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','Y','','','','','Y','Y','','','Y','','','Y','Y','','','Y','','','A1','A3','A8','','','','','','','','A1','A14','A5','','','','','','','','','','','','',NULL,'','A6','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','The difficulty to do so','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','','','','','','','','','','','','Y','','','','','','Y','','','','Nix for ubuntu','Using nixos mobile',''),(1236,NULL,NULL,'en','219236065',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1237,NULL,1,'en','1768533976','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1238,'1980-01-01 00:00:00',5,'en','1265579234','A2','A3','','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','Y','Developer, HPC','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','','','','A2','A10','A3','','','','','','','','A5','A2','A8','','','','','','','','','','','','',NULL,'Guix','A4','','','','','Y','','','','','','','','','','','','','','','','','gitea-action-runner','A4','A2','A15','A18','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','Declarative services','Upgrade rollback','Large repository','','GuixSD','Y','Y','','','','','','Y','','','','niv, mach-nix, nixpkgs-review','flakes',''),(1239,'1980-01-01 00:00:00',5,'en','1486910761','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','','','','A7','','','','','','','','Y','','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1240,'1980-01-01 00:00:00',5,'en','1622641183','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I\'ve searching for a tool to manage a server declaratively and than I\'ve stumbled in, including desk maschines.','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A4','A8','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A5','A2','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time and motivation to dive in','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I\'ve searching for a tool to manage a server declaratively and than I\'ve stumbled in, including desk maschines.','Y','','Y','Y','','','','Declarative sys-config','stateless system','large package base','I\'ve add sane defaults, clear error messages and a working printing setup.','','Y','','','','','','','Y','','','','','',''),(1241,'1980-01-01 00:00:00',5,'en','1151656356','A2','A3','male','','','','','','','','','','','Y','Y','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A9','','','','','','','','A8','A13','A4','','','','','','','','','','','','',NULL,'pacman','A1','','','','Y','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','try out new things','Y','','','','','','','declarative system configuration','reproducibility','','Add static typing to the nix language','Arch','Y','','','','','','','','','','hyprland','','',''),(1242,'1980-01-01 00:00:00',5,'en','869396596','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Some coworkers, who were functional programming fans, discovered NixOS and we took a gamble on launching a new internal service with it using Nixops. From there, we started converting more across other jobs and did things like make repeatable dev environments and eventually running an entire production service infrastructure on nixos with pre-baked AMIs in AWS.','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A2','A7','A1','','','','','','','','A8','A12','A6','','','','','','','','','','','','',NULL,'containers, oci or docker.','A4','','','Y','Y','Y','','','','','','','','','','','','','','Y','','Y','','A15','A2','','','','','','','','','','','','','','','','','','','','A1','A15','A2','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','With a team that was also new to NixOS, developed a small internal (java, webapp) service for the company. It was a vast improvement over the chef based automation that the company was previously using. The pre-existing setup required multiple services to be set up manually and upgrades and maintenance were similarly manual, if they ever happened. From there, I went from using a mixture Centos/Ubuntu strictly over to NixOS for all my server needs.','','Y','Y','Y','','','','atomic upgrade/downgrade','Single configuration source of truth, ie, configuration.nix','repeatability','Add: secrets implementation\r\nChange: a more stream lined disk image generation setup. Being able to craft a disk image/amazon image without needing to boot a VM for some specific setup.\r\n','Likely some other container driven system.','Y','','','','Y','Y','AWS AMI Generation','','','','','sops-nix, crane','nixops, deploy-rs','thanks for everyone\'s hard work. '),(1243,NULL,1,'en','769476694','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1244,'1980-01-01 00:00:00',5,'en','2141513834','A2','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','I heard about it from a colleague and I was hooked when I learned about how reproducible environments work with nix','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A10','A1','A6','','','','','','','','A9','A4','A14','','','','','','','','','','','','',NULL,'Docker','A4','','','','','Y','','','','','','','','','','','','Y','Y','','','','','A15','A3','A25','','','','','','','','','','','','','','','','','','','A15','A25','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','As I\'m working and studying in parallel, I find very little free time to do so','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','The one config file which can rebuild and \"persist\" the whole distro','Y','','','','','','','/etc/nixos/configuration.nix','Nix','','','I used Ubuntu and EndeavourOS and still do, while I\'m learning more about NixOS','Y','','','','','','','Y','','','Hyprland','','',''),(1245,'1980-01-01 00:00:00',5,'en','1904607291','A2','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','When I tried it for the first time years ago I didn\'t quite grasp it. Now I\'m on my second try, this time I\'m closer to grasping the idea, but still not there, yet....','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'Any Distribution, configured using Ansible.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I don\'t understand how everything fits toghether. Documentation is sparse.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Same as with Nix. Went to ConfMgmtCamp and decided to give it another try.','Y','','Y','','','','','Rollbacks','Declarative System Configuration','','I\'ll extend the documentation and replace the nix language with one with a larger user base. Elixir, maybe...','Ansible, Shell Scrips and such, most likely on Debian.','Y','','','','','','','','','','Sway','','',''),(1246,NULL,1,'en','934424884','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1247,'1980-01-01 00:00:00',5,'en','1534507824','A5','A4','-oth-','agender','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','Was having some significant problems with an Ubuntu build that kept locking up my laptop. I decided that it was time for a re-install and happened to be working with one of the Nixpkgs core maintainers, so I decided to give it a whirl. Now I hate going to a system where I don\'t have a single declarative configuration.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','','','','','','','','','','A14','A3','A5','','','','','','','','','','','','',NULL,'Fedora, Ubuntu, or some other mainstream OS.','A2','','','','Y','','','','','','','','','','','','','','','','','','','A3','A9','A15','A1','','','','','','','','','','','','','','','','','','A15','A1','A9','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','Nixpkgs is a calamity of unwritten standards and intensely hard to use tools. The only package that I\'ve contributed in recent memory was a bundle for a commercial application, which requires blessedly little of the Nix tooling.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I started using it at exactly the same time that I started using Nix.','Y','','Y','','','','','System environment defined in a single small group of files','Development shells','','','Fedora, Ubuntu, or some other mainstream OS.','Y','','Y','','','','','Y','','','sway, hyprland','','Every single tool related to building source code. crate2nix, cargo2nix, carnix, buildRustCrate, buildRustPackage, npm2nix, node2nix, buildNodePackage, and so forth.','Please focus on making language-specific tooling consistent. Please focus on making the documentation better. There\'s a huge, vast swath of documentation, and almost all of it is wrong. There\'s rarely reference documentation, and the examples provided seem to always require an overwhelming amount of complexity to do what should be simple things, such as \"hey, I want to use this particular version of my compiler in this expression\".'),(1248,NULL,NULL,'en','168914849',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1249,'1980-01-01 00:00:00',5,'en','1541042191','A2','A3','male','','','','','','','Y','','','','','','','','','Y','Y','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','Tired of syncing all my home configurations across systems.','','Y','','Y','','','Y','Y','Y','','','Y','','Y','Y','','Y','','','','A1','A2','A10','','','','','','','','A8','A2','A13','','','','','','','','','','','','',NULL,'','A1','','Y','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A15','A17','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1250,'1980-01-01 00:00:00',5,'en','396649428','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','HelpDesk Tech','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Distro-hopped from another Linux distribution to see what all the hype was and ended up converting all of my Linux machines to NixOS due to its stability and reproducibility of build.','','Y','','','','','Y','','','','','','','','','','Y','','','','A7','A10','A1','','','','','','','','A10','A14','A5','','','','','','','','','','','','',NULL,'','A4','','','Y','','','','','','','','','','','','','','','','Y','','','','A9','A2','A15','','','','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Working on becoming a better programmer. Might contribute someday.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Heard about it and wanted to see what all the fuss was about.','Y','','','','','','','Stability','Reproducibility of builds','Large repository of software','Nothing that I can honestly think of.','Ubuntu','Y','','','','','','','','Y','','','N/a','N/a','I love NixOS so far, and I’m learning more about it on a daily basis. Thank you for all of your hard work and dedication!'),(1251,NULL,1,'en','1811907530','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1252,'1980-01-01 00:00:00',5,'en','1686668866','A1','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I need a declarative and stateless system configuration tool, so I start using Nix.','','Y','','','','','Y','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','A5','A9','A2','','','','','','','','A11','A12','A8','','','','','','','','','','','','',NULL,'Guix','A2','','Y','','Y','Y','Y','','','','','','','Y','','Y','','','','Y','','','','A15','A13','A3','A4','A2','A1','A9','A25','','','','','','','','','','','','','','A13','A2','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I need a stateless and declarative system configuration tool, so I started using NixOS.','Y','Y','Y','Y','Y','','','Declarative and reproducible','Cross-compilation','Automatic update and rollback','Something like `mkRemove` to remove a value from a list option.\r\n\r\nBetter error message. ','GuixSD','Y','','','Y','','','','Y','','','','nix-direnv, lanzaboote, nil, nix-index, ...','',''),(1253,'1980-01-01 00:00:00',5,'en','169124474','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A7','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','Y','','Y','','','','Y','','','','A15','A3','A5','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','','','','','','','','','llvm stdenv with llvm binutils and lld by default :)','Gentoo or Arch or Fedora','Y','','','','','','','','Y','','','','',''),(1254,NULL,1,'en','265109538','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1255,NULL,2,'en','1420470971','A1','A3','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','iOS ','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I got tired of maintaining Arch installations.','','Y','','','Y','','Y','','Y','','','','','Y','Y','Y','Y','Y','Y','','A2','A3','A10','','','','','','','','A12','A9','A13','','','','','','','','','','','','',NULL,'I refuse to live in that world.','A3','','Y','','Y','Y','Y','','','','','','','Y','','','','','','Y','','','','A7','A15','A17','A23','A24','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1256,'1980-01-01 00:00:00',5,'en','1379892399','A1','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A1','A2','A7','','','','','','','','A8','A12','A4','','','','','','','','','','','','',NULL,'','A3','','Y','','Y','Y','Y','Y','','','','','','','','','','','','','','','','A2','A3','A4','A5','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','Y','','','','','','Hyprland','https://github.com/utdemir/nix-tree','',''),(1257,'1980-01-01 00:00:00',5,'en','1290708875','A1','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I love functional programming, and love Haskell the programming language, and there is friends tell me that NixOS is pure and reproducible and declarative, that\'s exactly what I want.','','Y','','Y','','','Y','Y','Y','','','','','','Y','','Y','','','','A6','A1','A2','','','','','','','','A10','A4','A6','','','','','','','','','','','','',NULL,'apt','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A2','A15','A1','A17','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','same as nix','Y','','Y','','','','','declarative','reproduciable','many software are ready in nixpkgs','1. make NixOS more security. (enable FDE & TPM & SecureBoot by default)\r\n2. GUI configurable.\r\n3. better AMD CPU & iGPU support. (can be used without problems directly without extra config)\r\n','Windows','Y','','','','','','','','Y','','','','',''),(1258,'1980-01-01 00:00:00',5,'en','943381999','A1','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','Y','','','','','Y','Y','','Y','','','','','Y','Y','','','','','A2','A3','A10','','','','','','','','A5','A13','A3','','','','','','','','','','','','',NULL,'guix','A1','Y','','','Y','Y','','','','','','','Y','Y','','','','','','','','','','A7','A15','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1259,'1980-01-01 00:00:00',5,'en','857615750','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','','','','','','Y','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A1','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1260,'1980-01-01 00:00:00',5,'en','1515847189','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A20','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','replace Nix with a mature functional programming language','Guix','Y','','','','','','','Y','','','','','',''),(1261,NULL,3,'en','826030534','A2','A2','male','','','','','','','Y','','','','Y','','','','','','','','','','','','Y','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A1','I started using Nix / NixOs because my friend recommended I should give it ago and said he would help me use it. ','','','','Y','','','Y','Y','','','','','','','','','Y','','','','A1','A6','','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Fedora Workstation','A2','','','','Y','','','','','','','','','','','','','','','Y','','','','A1','A9','A15','','','','','','','','','','','','','','','','','','','A1','A9','A15','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Time','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A1','My friend suggested I should use NixOs and said he would help me with it. ','Y','','Y','','','','','Reproducibility ','','','I don\'t know','Fedora workstation or MacOs','Y','','','','','','','Y','','','',NULL,NULL,NULL),(1262,'1980-01-01 00:00:00',5,'en','1684154354','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Convenient to have recent versions of programs.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A1','A2','A7','','','','','','','','A9','A8','A5','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A25','A13','','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The declarative nature and ease of adapting things.','Y','','','','','','','Declarative','Flexible (add patch to kernel, ...)','Community open to accept contributions','I\'d much prefer to use a proper programming language rather than an ad-hoc primitive one like nix (modules, data structures, ...)','Guix or another Linux distribution','Y','','','','','','','Y','','','','','',''),(1263,NULL,1,'en','1133810786','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1264,'1980-01-01 00:00:00',5,'en','1233219453','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Composer/Musician','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I wanted to stabilize my setups for live-electronics music (e.g. music software like Pure data, etc.).\r\nOften live-electronic setups are difficult to maintain and messy,\r\nbut for the performance they need to be super-stable.\r\nSo i thought nix would be a better for me to handle those cases.','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','','A1','A3','A2','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'buildout (https://github.com/buildout/buildout) on Debian','A4','','','','','','','','','','','','Y','','','','','','','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Time, Lazy','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','easy integration sound from nix-shell environment to host (e.g. if I start \"nix-shell ...\" and I run a music program like REAPER and I play music with this I can directly listen to the music. If, on the other hand, I use \"nix-shell...\" on another distribution like Debian, this doesn\'t work out of the box)','','','','Debian + buildout','Y','','','','','','','','','','Awesome WM','niv','',''),(1265,NULL,2,'en','1209546152','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A3','A8','A4','','','','','','','','','','','','',NULL,'Guix','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A15','A3','A11','','','','','','','','','','','','','','','','','','A13','A15','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1266,NULL,2,'en','1671396391','A5','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','NixOS was reviewed by one of my favorite Linux youtubers and I wanted to check it out. After learning about the configuration.nix I found it similar to Yaml that I use for Ansible and started down the rabbit hole.','','Y','','','','','Y','Y','','','','','','Y','','','Y','','','','A1','A2','A4','','','','','','','','A14','A10','A5','','','','','','','','','','','','',NULL,'Nobara or Nitrux','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I am an administrator not a programmer and I am just learning nix',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1267,'1980-01-01 00:00:00',5,'en','1846047880','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','Y','','','A1','A2','A7','','','','','','','','A8','A9','A3','','','','','','','','','','','','',NULL,'guix','A4','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A9','A15','A1','A2','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','its not flakes ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','Y','','','','declarative system config','customizing packages','rollback','','guix','Y','','','','','','','Y','','','sway','','',''),(1268,'1980-01-01 00:00:00',5,'en','625378065','A2','A3','male','','','','','','','','','Y','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I was introduced to it because many Haskell libraries use Nix (in particular the library Reflex FRP), and I stuck with Nix because I think it solves important problems that few other package managers even attempt to tackle.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','Y','','','A2','A3','A1','','','','','','','','A5','A4','','','','','','','','','','','','','',NULL,'Then I would probably just be using a mainstream package manager which doesn\'t do a good job of automating deployment, as I did before.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A15','A25','A2','A4','A5','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of understanding of Nix/Nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I was already using Arch, so when I started using Nix, there wasn\'t any reason for me not to switch to NixOS, as the distro I tended to use didn\'t offer much beyond its package manager.','Y','','','','','','','Declarative host configuration','','','','','Y','','','','','','','','','','i3','','',''),(1269,'1980-01-01 00:00:00',5,'en','1600534638','A2','A3','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','No more dependency hell','','Y','','Y','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Something like docker','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A5','A9','','','','','','','','','','','','','','','','','','','A15','A5','','','','','','','','','','','','','','','','','','','','','','','','A1','','Experience and a better understanding of the nix language','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Distro hopping and the configuration in one file and the reproducibility were a great feature so I stayed','Y','','','','','','','One config for all the system ','Generations','Reproducibility ','Nothing for now. I don\'t have enough experience to have an opinion on this subject ','Arch or min depending on the usage','Y','','','','','','','Y','','','','Home manager','','Nixos is great 😃'),(1270,'1980-01-01 00:00:00',5,'en','176475063','A2','A4','male','','','','','','Y','Y','','Y','','','','','','','','Y','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Because it looked like a decent solution at the time.','Y','Y','','','','','Y','Y','','Y','','Y','','','Y','Y','Y','','','','A4','A6','A5','','','','','','','','A3','A2','A1','','','','','','','','','','','','',NULL,'','A2','','','','','','Y','Y','','','','','','','','Y','','','','','','','custom systemd units, good enough','A15','A1','A2','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','','','custom package sets that define new scopes','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','','','','','','Y','','Y','','','Y','','Y','','','','','',''),(1271,NULL,2,'en','477343451','A5','A2','male','','','','','','','','','','','','Y','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I saw hlissner on github use NixOs and then tried it!','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'I don\'t know','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A3','A4','A22','A9','A17','A13','A5','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','Complexity of certain packages.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1272,NULL,NULL,'en','212184842',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1274,'1980-01-01 00:00:00',5,'en','1514869034','A8','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Reproducible NixOS config','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','Y','','','A2','A7','A8','','','','','','','','A8','A5','A9','','','','','','','','','','','','',NULL,'Possibly Guix','A7','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Not enough time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Fully reproducible OS without any configuration drift and the ability to configure everything within Nix','Y','','Y','','','','','','','','Remove all reference to nix channels, only have nix flakes in documentation. Better Kubernetes support. Better declarative VM support.','Guix','Y','','','','','','basalt','','','','Hyprland','Home manager','',''),(1275,'1980-01-01 00:00:00',5,'en','1048875701','A3','A2','-oth-','Non-binary transfem','','','','','','','','','','','','','','','','','Y','','','','','Y','','Developer for fun','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','Liked the idea of an OS configured with a file','','','','','','','Y','','','','','','','Y','','','Y','','','','A1','A9','A7','','','','','','','','A7','A3','A9','','','','','','','','','','','','',NULL,'Arch','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','A1','A15','','','','','','','','','','','','','','','','','','','','','','','A1','','I don\'t want to','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I liked the idea of an OS configured with files','Y','','','','','','Home computer','Configurability with a file','Configurability with a file','Configurability with a file','Easy syncing of the configuration with an online file storage (git, or some other service)','Arch','','','','','','','Don\'t','','Y','','','None','None\r\n',''),(1276,NULL,1,'en','1481000423','A5','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1277,'1980-01-01 00:00:00',5,'en','1566019934','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I think I saw NixOS on Hacker News once, and I was tired of Gentoo\'s issues with the package manager.\r\nTried NixOS, loved the concepts behind NixOS, then loved the concepts behind Nix.\r\nUsed it more and more, participated in nixpkgs to fix the issues I stumbled upon (because it was so easy to participate), and then became maintainer of several packages.\r\nIntroduced Nix, then NixOS at work, because its reproducibility guarantees are very interesting for our very long / very stable projects (20~30 years). We\'ll see over time how that goes in the long run, we\'re still in a transition phase.','','Y','','Y','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','','Y','Caching software sources','A7','A1','A6','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'Manual packaging for work? Not sure','A7','','','','Y','Y','','','','','','','','Y','','','','Y','','','','','','A4','A3','A2','A5','A15','A17','A25','','','','','','','','','','','','','','','A5','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','Y','','Configuration as code','Reproducibility','Multiple types of outputs (e.g. toplevel, container, VM, netboot)','Documentation (guides, tutorial, explanations) for every module.\r\nHardened systemd services (but supported upstream).\r\nBetter support for embedded devices (e.g. U-Boot, more cross-compilation tests for packages)','Eh, probably Debian or something for work? Maybe Arch for development machines?','Y','','','','','','','Y','','','sway','home-manager\r\nnixos-hardware','','Thanks a lot! <3'),(1278,'1980-01-01 00:00:00',5,'en','1629686105','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','Y','','A1','I started using Nix because I liked the version management and package management capabilities it offered. I needed it to install a private package, and I really appreciated how the operating system functioned.','Y','Y','','','','','','Y','Y','Y','','Y','','Y','Y','Y','Y','','Y','','A7','A6','A2','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'I don\'t know ','A4','','','','','','','','','','','','','','','','','Y','','','','','','A2','A6','A1','A9','A3','A10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A2','I started using NixOS because I heard a lot about it. People mainly talked about the quality of NixOS configuration and how it could be beneficial for my projects. So, I gave it a try, and I really liked it. Now, I try to implement it as much as possible whenever I can, although I\'m not completely comfortable with Nix yet.','','Y','Y','Y','','Y','','','','','','','Y','','','','','Y','','','','','none','','',''),(1279,'1980-01-01 00:00:00',5,'en','1199457658','A5','A2','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Migrated from Arch. Was fascinated by reproducibility of system configuration and ability to configure entire system through an organized set of configuration files.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'Arch Linux and pacman','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A25','A1','A2','A3','A5','A9','A15','','','','','','','','','','','','','','','A2','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Extensively reproducible/declarative system configurations','Y','','Y','','','','','Nix flakes system configuration ','Nix-shell / nix develop project environment configuration ','Large nixpkgs library with easy ability to contribute through GitHub ','- stabilize a lot of experimental features\r\n- provide more thorough documentation of nix language capabilities','Arch Linux','Y','','','','Y','','','','','','Hyprland','Home-manager\r\nImpermanence\r\nColmena\r\nSops-nix\r\nMicrovm\r\nLanzaboote\r\n','Simple-nixos-mailserver\r\nNixops',''),(1280,NULL,NULL,'en','1654804526',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1281,NULL,NULL,'en','374126033',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1282,NULL,1,'en','504906987','A2','A3','-oth-','','','','','','','','','Y','','Y','','','','','','','','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1283,'1980-01-01 00:00:00',5,'en','1037741867','A5','A1','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','When I started using NixOS, I also began using Nix. I really enjoyed it because there were fewer problems with compatibility between packages, and I could very easily get a development environment up and running.','','Y','','','Y','','Y','Y','','','','Y','','','Y','Y','Y','','Y','','A2','A7','A10','','','','','','','','A2','A7','A5','','','','','','','','','','','','',NULL,'I could answer Guix, but that would be cheating. Maybe direnv could work?','A4','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','A2','A3','A1','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I contribute occasionally to smaller Nix-based projects, like home-manager, but I am not sure where to get started with Nixpkgs. I suppose I have not looked into it too much yet.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I heard that it could be configured declaratively, so I wanted to try it. Then, I switched over to it as much as I could because it was so much more convenient.','Y','','Y','','','Y','','Declarative configuration','Pushing configurations to remote servers','Rollbacks','','I could answer Guix, but that would be cheating. Maybe Git and a hand-written activation script.','Y','Y','','','','','','Y','','','sway','home-manager, fenix','deploy-rs (I just couldn\'t get it working, so I stuck with NixOps)',''),(1284,NULL,0,'en','1591146454','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1285,NULL,NULL,'en','211319812',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1286,'1980-01-01 00:00:00',5,'en','1061277384','A2','A3','male','','','','','','','','Y','','','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was impressed by \r\n\r\nservices.XYZ.enable = true/false; being everything you need to do\r\n\r\nI wanted to have the same programs and settings on my pc\'s.\r\n\r\nI didn\'t want to reinstall computers just because I fucked up installing a driver.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A8','','','','','','','','','','','','','',NULL,'I don\'t know how I could live without it.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A2','','','','','','','','','','','','','','','','','','','','A4','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','The only things i packaged up till know are a bit hacky or concern proprietary code of my company','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','i3wm','','',''),(1287,'1980-01-01 00:00:00',5,'en','442487778','A5','A6','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Retired','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Loved the stability and reproducibility of NixOS.','','','','','','','Y','','','','','','','Y','','','Y','','','','A7','A10','A1','','','','','','','','A8','','','','','','','','','','','','','','',NULL,'Portage','A4','','','','','','','','','','','','','','','','','','','','','','','A3','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','See Nix answer to same question.','Y','','','','','','','stability','reproducibility','declarative configuration','still trying to get my head around flakes and home manager. Perhaps more tutorials on how to accomplish common tasks - of course once flakes is stable.','Guix? Although their rigid licensing turns me away for now. I\'ve used Gentoo for years so I might go back. ','Y','','','','','','','','','','Dwm and i3. ','N/a','n/a',''),(1288,'1980-01-01 00:00:00',5,'en','934205274','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','I have used it years ago at a prior company but recently revisited it due to the Fleek project. I’m now working on going deep into Nix so I can use it for software builds. ','Y','','','','','','Y','','','','','','','Y','Y','Y','','','Y','','A1','A2','A3','','','','','','','','A9','A4','A3','','','','','','','','','','','','',NULL,'macOS, including homebrew, and Docker for deployments. ','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A2','','I did once and would like to again. Just the knowledge barrier keeps me from being more active, as well as family obligations.','N','Y',NULL,'I switched to a Mac, and the Nix knowledge barrier.','Having an available computer on which to run it, which I may have soon.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I love Nix and appreciate all the effort you all put into it! I would absolutely love to see more said about how a proper Nix build out into a Docker image is essentially a FROM SCRATCH Docker image for *any* language. '),(1289,NULL,2,'en','1137987952','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','Fun','A1','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A14','A6','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A2','A9','A15','','','','','','','','','','','','','','','','','','','A15','A9','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Since Nix is so unique, there is significantly less information out there, and I find the learning curve quite steep. So better learning resources would be much appreciated.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1290,NULL,3,'en','1234993898','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1291,NULL,2,'en','25474399','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','NixOS installed as server','','Y','','','','','','Y','','','','','','Y','','','Y','','','','A2','A1','A10','','','','','','','','A8','A4','A3','','','','','','','','','','','','',NULL,'Puppet or Saltstack','A5','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1292,'1980-01-01 00:00:00',5,'en','2035840194','A2','A3','male','','Y','','','','','','','Y','','','','','','','','','Y','','','Y','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','NixOS >>> Ansible -> For serverhosting','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'','A7','','','Y','Y','Y','','','','','','','','','','','','Y','','','','','gitea-ci','A9','A15','A3','A4','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Lack of time.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','NixOS >>> Ansible -> for server hosting','Y','Y','Y','Y','','','','Reproducible','Declarative','','Maybe add better documentation and file templating similar to python\'s jinja2.','Unfortunately, Ansible or Saltstack','Y','','','Y','','','','','','','sway','','',''),(1293,NULL,2,'en','1197599073','A2','A3','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','I got tired of blowing up my configs and my system to be in an unusable state and not being able to go back to a good state.','','Y','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A3','','','','','','','','A5','A14','A9','','','','','','','','','','','','',NULL,'Ansible most likely, although I am not thrilled by it.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','A10','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Pretty new to the scene, but maybe in the future',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1294,'1980-01-01 00:00:00',5,'en','1958522161','A4','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A2','A10','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'Guix','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A22','A1','A15','','','','','','','','','','','','','','','','','','','A22','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','Whole-system declarative configuration','','','Support for other init systems','Guix','Y','','','','','','','','','','Sway','','',''),(1295,NULL,1,'en','441332096','A2','A3','male','','','','','','','','','Y','','Y','Y','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1296,'1980-01-01 00:00:00',5,'en','1287426372','A2','A3','male','','','','','','','','','Y','','Y','Y','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Declarative, reproducible systems and packages with rollback is very powerful and appealing.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A7','A2','A10','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'A standard distro with scripts.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A6','A3','A2','','','','','','','','','','','','','','','','','','A15','A6','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time to polish code.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Reproducible system with rollback, extensive package repository.','Y','','Y','','','','','Reproducibility','Configurability','Rollbacks','I\'d make everything more consistent and intuitive, with one obvious way of doing things: flakes, nix command, standard guidelines on how to structure configuration/package code.','Debian or Arch.','','','','','','','','Y','','','berry','','',''),(1297,'1980-01-01 00:00:00',5,'en','1879600470','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A7','','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A7','A2','A3','','','','','','','','A14','A9','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A1','','','Y',NULL,NULL,NULL,NULL,'A4','Y','Y','','','A1','','Y','','','','','','','Reproducible builds of my Computer','Atomic Commits and Rollbacks','Configuring packages via configuration file','','','Y','','','','','','','','','','Sway, Hyprland','','',''),(1298,'1980-01-01 00:00:00',5,'en','966007176','A8','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Needed a stable Linux desktop OS. Tired of atp-get breaking constantly. ','Y','Y','','','','','Y','','Y','','','','','','Y','Y','Y','','','','A1','A2','A9','','','','','','','','A3','A8','A5','','','','','','','','','','','','',NULL,'PopOS','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','Y','','A1','A15','A5','','','','','','','','','','','','','','','','','','','A5','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I don\'t know enough about the conventions used in nikpkgs. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I got tired of apt-get on Ubuntu being unreliable and lacking packages. \r\nI have had servers and desktops get into a broken state because atp crashes, fills up /boot, or the repo URLs gets taken down.\r\nI also got tired of needing to manually edit random files in /etc, each with their own special syntax. \r\nBeing able to put everything in one place configuration.nix and have it set everything up correctly is amazing.\r\nMoving to new hardware now is just a matter of copy pasting configuration.nix over.','Y','Y','Y','','','','','The safety and simplicity of configuring everything in one place ','Using flakes to get a shell that has the correct versions of the build tools that I can share with other devs.','The amazing availability of packages in nixpkgs, no need to install random third party repos.','configuration.nix for user level config. Its annoying to need sudo to add packages to my user profile, and I would like to avoid using nix-env.\r\nNix-env in general should probably be removed, it goes against the declarative idea that Nix has. \r\n\r\nBetter OS defaults for desktop users, like setting up polkit to allow non root users to mount USB drives and hidraw access so apps like Via/QMK can configure keyboards.\r\nAlso setting sysctl vm.dirty_bytes to a lower value. Enabling SANE and NTFS support. Maybe setup EarlyOOM\r\n\r\nWould be nice if the installer GUI could configure a static IP address.','PopOS, maybe Arch','Y','','','','','','','','Y','','','','dream2nix its a cool idea but I found it was too magical and difficult to understand how it works.\r\nMost of the *2nix packages are in various states of disrepair, a lot of fragmentation. ','Nix is really an amazing project, I think its one of the most important projects in the Linux ecosystem. keep up the good work.'),(1299,NULL,1,'en','1660397936','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1300,'1980-01-01 00:00:00',5,'en','1204842927','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','Y','','Y','Y','','','','','','','Y','','Y','','','arion','A1','A8','A3','','','','','','','','A4','A2','A6','','','','','','','','','','','','',NULL,'Docker, Arch Linux','A2','','','','Y','Y','','Y','','','','','','','','','','','','','','','','A6','A12','A2','','','','','','','','','','','','','','','','','','','A6','A12','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Atomic upgrades','Unified language for building packages and configuring OS','Reproducibility and software isolation ','I would add Build phases caching to reduce iteration time during package derivation development - e.g. don\'t rebuild package from scratch when all I do is just fixing test or install step','Arch Linux','Y','','','','','','','','Y','','','Arion, nixpkgs-review, nix-tree, home-manager, Nix User Repository','',''),(1301,'1980-01-01 00:00:00',5,'en','564510635','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','found out about it from a podcast, was intrigued about the reproducibility of systems.','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A1','A7','A2','','','','','','','','A8','A6','A14','','','','','','','','','','','','',NULL,'probably ansible, dotfile managers and other tools.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','not confident enough packaging software that others may use.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','found out about it from a podcast','Y','','Y','','','','','reproducibility ','amount of packages','atomic rollbacks','i would like better ways to find what I\'m looking for, documentation wise. ','probably another immutable OS with probably a bunch of arch containers.','Y','','','','','','','','Y','','sway','','',''),(1302,'1980-01-01 00:00:00',5,'en','1401446509','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A10','A3','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A2','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','sway','','',''),(1303,'1980-01-01 00:00:00',5,'en','1436163109','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Jupiter Broadcasting suggested NixOS. I found NixOS had better reliability of the OS vs. Arch Linux and Ubuntu.','','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Ansible, Arch and/or Ubuntu.','A4','','','','Y','','','','','','','','','','','','','','','','','','','A13','A2','A9','','','','','','','','','','','','','','','','','','','A13','A15','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Jupiter Broadcasting had some great shows about NixOS and I tried Nix-Bitcoin which worked great for running a Bitcoin node.','Y','','Y','','','','','Stable environment','Easy to maintain','Declarative environment','Better support for remote building environments over SSH with nixos-rebuild. Or documentation on what to use instead of nixos-rebuild.','Ubuntu and/or Arch with Ansible.','Y','','','','','','','Y','','','','Nix-Bitcoin','Nixos on WSL i don\'t use much. I only used it to play around with.','Thanks!'),(1304,NULL,1,'en','1150872026','A8','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1305,'1980-01-01 00:00:00',5,'en','499640805','A3','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','declarative','','','','','','','Y','Y','','','','','','','','','Y','','','','A2','A1','','','','','','','','','A5','A4','A7','','','','','','','','','','','','',NULL,'guix','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','lazy bastard','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Declarative','Y','','Y','','','','','Declarative configuration','','','Good Docs, first class Flatpak support','Guix','Y','','','','','','','Y','Y','','','','','To whichever grand and intoxicated being may have created nix, good job, it sure is declarative.'),(1306,NULL,NULL,'en','783708468',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1307,'1980-01-01 00:00:00',5,'en','1401008924','A4','A3','-oth-','Agender','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I just saw some people using it on reddit, got curious about it, and ended up addicted to it.','','Y','','','Y','','Y','','Y','Y','Y','','','Y','Y','Y','Y','','','','A7','A2','A3','','','','','','','','A5','A13','A14','','','','','','','','','','','','',NULL,'Default distributions package manager or docker','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','A22','A17','','','','','','','','','','','','','','','','','','A15','A22','A9','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Nix language','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I just saw some people using nixos and i just got curious\'','Y','','','','','','','Rollbacks','Declaritive way of defining system','Adhoc environments','Make the language more accessible.','Arch or fedora silverblue','Y','','','','','','','','','','Riverwm','','','♥️'),(1308,'1980-01-01 00:00:00',5,'en','501503297','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','','Y','','','','','Y','','','','','','','','','Y','','','','','A1','A2','A3','','','','','','','','','','','','','','','','','','','','','','',NULL,'','A7','','','','Y','','','','','','','','','','','','','Y','','','','','','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1309,'1980-01-01 00:00:00',5,'en','850423904','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','','','','','','Y','Y','Y','Y','','','A2','A1','A5','','','','','','','','A8','A9','A2','','','','','','','','','','','','',NULL,'apt, docker','A4','','','','Y','Y','','','','','','','Y','','','','','Y','','','','','','A2','A15','A21','','','','','','','','','','','','','','','','','','','A21','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','','','','','','Y','','','','','Y','','','','','i3','NixOS-Compose (https://github.com/oar-team/nixos-compose)','',''),(1310,NULL,1,'en','439189007','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1311,NULL,NULL,'en','1117497243',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1312,'1980-01-01 00:00:00',5,'en','101739091','A2','A3','male','','Y','','','Y','Y','','','','','Y','','','','','','','Y','','','Y','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Reproductible software environments for reproducible research. Control and share environments with dev teams and CI machines','','Y','','','','','Y','','Y','','','','HPC clusters, expérimental testbeds (Grid\'5000)','Y','Y','Y','Y','Y','','','A2','A3','A1','','','','','','','','A9','A2','A8','','','','','','','','','','','','',NULL,'No sane alternative AFAIK','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A4','A15','A3','A21','A2','','','','','','','','','','','','','','','','','A15','A21','','','','','','','','','','','','','','','','','','','','','Y','','Maitaining a NUR','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Rollbacks. Low user maintenance time cost. Avoid package redundancy with Nix','Y','Y','','','','','Expérimental testbeds (Grid\'5000)','Rollbacks','High level abstract system definition','Reproducibility (experiments on distributed systems)','Cache R packages. Build cache (fix ccache, improve Nix/Cargo integration)','Archlinux','','','','','','','NixOS Compose','','','','i3','','',''),(1313,'1980-01-01 00:00:00',5,'en','378941497','A2','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','Y','','','','A7','After a nix workshop given by a colleague','','Y','','','','','Y','','','','','','','Y','','Y','','','','','A3','A6','A10','','','','','','','','A10','A3','A5','','','','','','','','','','','','',NULL,'Docker','A7','','','','','','','','','','','','','','','','','','','','','','','A1','A6','A5','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','There is a person dedicated to Nixpkgs in our service','N','Y',NULL,'I\'m 90% of the time using windows','Installing linux server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1314,'1980-01-01 00:00:00',5,'en','860504288','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Raito_Bezarius converted me','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A3','A7','','','','','','','','A9','A4','','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','','','','','A2','A13','A22','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I\'ve never had the occasion to publish a package','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Raito_Bezarius converted me','Y','','Y','','','','','Declarative','Every stateless information in one place','','Because I\'m trying to do that now : ability to put an evaluated config in nixos-tests and more generally a better support at testing entire configd for nixos-tests (for instance to check that you won\'t loose the ssh connectivity from your server)','No idea','Y','','','','Y','','','','','','Sway','','','Nix/NixOS/Nixpkgs is awesome'),(1315,NULL,3,'en','948341585','A2','A4','male','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','','','N','N','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','a geek in my team forced me',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1316,'1980-01-01 00:00:00',5,'en','1602736957','A4','A1','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','ı was checking on c-plus-plus tag on github then i stumbled Nix over there','','Y','','Y','Y','','','','','','','','','Y','Y','Y','Y','','Y','','A1','A2','A7','','','','','','','','A10','A13','A8','','','','','','','','','','','','',NULL,'Probaly just a regular manager like apt or pacman','A4','','','','Y','Y','','','','','','Y','Y','','','','','','','','','','','A15','A4','A1','','','','','','','','','','','','','','','','','','','A15','A2','A9','','','','','','','','','','','','','','','','','','','','','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Casual','A1','I really liked the idea of declaring the OS in a single file and stability','Y','','','','','','','Declarative Configuration','','','ı would change Nix language\'s syntax','Arch Linux','Y','','','','','Y','','Y','','','','Vix','Home Manager',''),(1317,'1980-01-01 00:00:00',5,'en','1316135182','A5','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','','','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A8','A3','A12','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A13','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','','','','','','Declarative, deterministic build of entire build','Uniform configuration of services','Easier to version control','Better error messages and stability between updates.','Idk','Y','','','','','','','','','','None (Sway)','Home manager','Julia support',''),(1318,'1980-01-01 00:00:00',5,'en','1905714385','A5','A1','male','','','','','','','Y','Y','Y','Y','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I started using nix it cuz my dad told me about it.','','Y','','','Y','','Y','Y','','','Y','','','','Y','Y','Y','Y','Y','','A2','A10','A1','','','','','','','','A8','A5','A4','','','','','','','','','','','','',NULL,'Guix maybe','A7','','Y','Y','Y','Y','','','','','','','','Y','','','','','','Y','','','','A15','A3','','','','','','','','','','','','','','','','','','','','A6','A9','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Some guy showed me some cool stuff he did with his dotfiles so I tried NixOS.','Y','','Y','','','','','System configuration','System rollback','Nix integration','I would make rebuilds faster','Guix maybe','Y','','','','','','','','','','Hyprland','Home Manager','',''),(1319,'1980-01-01 00:00:00',5,'en','731747466','A2','A4','male','','','','','','Y','','Y','Y','','Y','','','Y','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','@Mic92','','Y','','','Y','MicroVMs','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','Y','','A2','A7','A1','','','','','','','','A8','A6','A11','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','Y','','Y','','Y','','','','A15','A2','A13','A24','','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','@Mic92','Y','Y','Y','Y','','Y','','Declarative configuration','Rollback','Image generation','Make Flakes stable','Debian','Y','','','','','Y','','','','','Sway','microvm.nix, deadnix, nix-openwrt-imagebuilder, niv, nix-tree, statix','home-manager',''),(1320,'1980-01-01 00:00:00',5,'en','1600214153','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','Y','','','Y','','','','','','','Y','','','Y','','','','','','','','','','','','','','A5','A9','A4','','','','','','','','','','','','',NULL,'','A1','','','','','','','','','','','','','','','','','','Y','Y','','','','A2','A24','','','','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1321,'1980-01-01 00:00:00',5,'en','311328739','A5','A5','male','','','','','','','Y','','Y','','Y','','','','','','','Y','','','','Y','','','','','','','','','nixOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','nothing but nixos','A2','Moving to open source and establishing a reliable steps towards a configurable OS that i love across all of my machines. ','','','','','','only nixos','Y','','','','','Y','','Y','Y','Y','Y','Y','Y','','A10','A2','A9','','','','','','','','A14','A3','A6','','','','','','','','','','','','',NULL,'ArchLinux, OSX and Windows as before. ','A1','','','','Y','','','','','','','','','','','','','','','','','','Would love to use Hydra for sky360 but need help establishing bootstraping it','A15','A3','A4','A2','A9','A25','','','','','','','','','','','','','','','','A15','A4','A2','','','','','','','','','','','','','','','','','','','','Y','','i still don\'t fully capture it as it feels a hack, i try my best to contribute to packages','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','reliability of my systems over years to come','Y','','','','','','','reliability (Reproducible)','Configuration Management','User Experience via source control','Dev tools are a key for me , is struggle with discovering all the options for everything, Specifically for hardware reliable configuration such as laptops. ','ArchLinux, OSX , Windows as before','','','','','','','I haven\'t gotten to it yet unfurtuannly','','','','Hyprland','','','I\'m trying to get help for sky360.org and how to setup our builds. Will really appreciate help with mentoring on that as well as mentor feedback on my own flakes . I find after a year it became very messy and still not single share across my systems.\r\n\r\nI\'m Ido Samuelson'),(1322,'1980-01-01 00:00:00',5,'en','1213417345','A5','A3','male','','Y','','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','','','','Y','','','','','','hpc systems','Y','Y','Y','','','','','A2','A3','A7','','','','','','','','A3','A8','A5','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','A25','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1323,'1980-01-01 00:00:00',5,'en','2121464232','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A6','A4','A14','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Hyprland','','',''),(1324,'1980-01-01 00:00:00',5,'en','1224044790','A2','A3','male','','Y','','','','','','','','','Y','','','','Y','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Because I love the idea.\r\n\r\nI had to set up a new computer, and decided to make the process reproducible.\r\n\r\nMitchell Hashimoto and Ian Henry (https://ianthehenry.com/posts/how-to-learn-nix/) were major influences.','Y','Y','','','','','Y','','','Y','','','','','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A12','A8','A9','','','','','','','','','','','','',NULL,'brew','A1','','','','Y','','','','','','','','','','','','','','','','','','','A1','A2','A13','A9','A15','A20','A17','A23','A5','A25','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Lack of knowledge.','N','N','Time perhaps? I am pretty stuck in macOS...\r\n\r\nI would love it if it was available in the private cloud infrastructure that I have access to.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1325,'1980-01-01 00:00:00',5,'en','1389930379','A5','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','I became curious after following an avid user on the Fediverse. I started a new project after struggling with dependency versions on a different one and decided to use Nix to help solve the problem.','Y','','','','','','Y','','','','','','','Y','Y','Y','','','','','A2','A6','A1','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'I\'m not sure. Maybe I\'d try containerization with specific package versions installed on the container.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I\'ve only just started to wrap my head around Nix, so contributing has barely crossed my mind. I would like to help create guides in the future, however.','N','N','I will try it eventually on a VM, but for now I\'m just testing out Nix on a per-project basis.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'cachix/devenv?','','Thanks for the hard work! I\'m excited to join this community.'),(1326,'1980-01-01 00:00:00',5,'en','2112905834','A3','A2','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','','','Y','','A1','A9','A3','','','','','','','','A8','A11','A6','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','Y','','','','','','','A13','A23','A15','A24','','','','','','','','','','','','','','','','','','A12','A14','A24','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','','','','','Guix','Y','','','','','','','','','','xmonad','home-manager, comma, nix-index','','Add better documentation for flakes and overlays.'),(1334,NULL,1,'en','1353723270','A8','A2','male','','','','Y','','Y','Y','','Y','Y','Y','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1328,NULL,1,'en','111828472','A5','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1329,'1980-01-01 00:00:00',5,'en','512645242','A5','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Gamer from pen and paper to pc','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','fedora is the new ubuntu dnf is very slow for my taste mint is literaly behind ubuntu\r\nthat left independent distros i looked at nix0s but i was not ready for it i really liked solus but it doesn\'t seem beyond updating packages they have much of a plan beyond lets move to Serpent os with doesnt seem functional or see a lot of activity','','Y','','','','','Y','','','','','','','Y','','','','','','','A7','A2','A1','','','','','','','','A8','A10','A14','','','','','','','','','','','','',NULL,'arch or fedora\r\n','A4','','','','Y','','','','','','','','','','','','','','','','','','i dont believe i use one of thiese','A1','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','flatpacks','A1','','i feel i would be better at getting nixos attention by informing everyone about it','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','im tired of arch breacking and fedora cycle can be murder to keep up with','Y','','','','','','','reproducible systems','there are packages nix os has that most distros only have as flatpaks','atomic updates','more packages, a bigger community, ','arch or fedora','Y','','','','','','','','','Y','im currently playing with hyperland','home-manager its awesome because i have the same base files on all of my machines but they each have a specific purpose so through home manger i can set up gaming, pc gaming, and a pc for documentation and checking on the kids a school','none so far however i am very new a week at most in to nix','great job keep up the awesome work'),(1333,NULL,NULL,'en','666629638',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1330,'1980-01-01 00:00:00',5,'en','287429845','A1','A3','male','','','','','','','Y','Y','Y','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I like Arch Linux but it\'s really bad on versioning, and here I am.\r\nAlso the idea behind Nix is fascinating to me, I like how Nix solving dependency issue in a consistent and composition way. It\'s quite inspiring.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A9','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'Docker I guess','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A15','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Searching for a package that I like and has not yet been owned is hard','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','','','','','','declarative configuration','nixos options is a good way to explore system settings and useful software','','maybe remote channel\r\nmaybe add some kinds of preview for certain system configuration to understand what would happen after nixos-rebuild','Keep using Arch','Y','','','','','','homemanager','Y','','','i3','','','Nix is like the build tool version of lisp: every system (in my job) becomes just like Nix eventually.\r\nHope the idea of Nix could spread widely and inspire more new idea.'),(1331,NULL,NULL,'en','612403374',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1332,'1980-01-01 00:00:00',5,'en','1211103344','A8','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started using it with NixOS 5 years ago','Y','','','','','','Y','Y','Y','','','','','','Y','Y','Y','','Y','Running programs without installing them (nix run)','A2','A6','A10','','','','','','','','A8','A12','A2','','','','','','','','','','','','',NULL,'I would just be sad','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A2','A15','','','','','','','','','','','','','','','','','','','A8','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I\'d kept hearing about NixOS on Hacker News in 2018, and eventually I checked out the webpage and the properties (reproducibility and being declarative) that it advertised sounded so enticing as an Arch user who had broken their system multiple times.','Y','','Y','','','','','Freedom to tinker because you can rollback or generate your system again','Modular which allows users to share their configs and reduce duplicated effort on configuring things, as well as allowing for introducing abstractions/variations','Non-global package manangement, allows you to create isolated development environments, or to allow differing versions of packages and libraries to coexist','Integrate disko natively','Arch','Y','','','','','','','','','','i3, sway','nix-darwin, home-manager, agenix, nil, disko','deploy-rs','I really hope you can stabilise flakes, I think it\'s super important to the future growth of Nix, especially now that any newcomers will see a significant amount of people recommending using experimental features'),(1335,'1980-01-01 00:00:00',5,'en','2141654038','A2','A3','male','','','','','','','','','','','','','','','','Y','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A1','','','Y','','','','','Y','','','Y','','','','','Y','Y','Y','','','','A2','A4','A9','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'Docker','A7','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','A4','A3','','','','','','','','','','','','','','','','','','','A15','A17','A22','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A1','','Y','','','Y','','','','','','','stabilize flakes','Proxmox + Docker','Y','','','','','','','','','','dwm','Home Manager','','Thank you for your amazing work!'),(1336,NULL,1,'en','1431509027','A5','A3','male','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1337,'1980-01-01 00:00:00',5,'en','1631786385','A5','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I needed something with more control compared to Homebrew on MacOS.','Y','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A2','A6','','','','','','','','A13','A8','A9','','','','','','','','','','','','',NULL,'Go back to using Homebrew unfortunately.','A2','','','','Y','','','','','','','','','','','','','','','','','','','A3','A9','','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','','Y','','A2','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','Y','','A1','','Y','','','','','','','Stability (more stable than Arch for me!)','Pin down my environment (with flakes)','Nixpkgs being very good.','More configuration options. Making something like Home-Manager default.','A Nvidia friendly Arch distribution. ','Y','','','','','','','Y','','','','','','Just self host lol.'),(1338,NULL,2,'en','1544757209','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A10','A2','A6','','','','','','','','A3','A4','A8','','','','','','','','','','','','',NULL,'Probably Bazel/Buck2, the other usuals like ansible n co','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A15','A3','','','','','','','','','','','','','','','','','','','A9','A22','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1339,'1980-01-01 00:00:00',5,'en','1015596296','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Heard about it in a conference. They explained how it was possible to package old software that was not installable anymore (used very old libraries that are not maintained/supported).','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A2','A1','A7','','','','','','','','A8','A4','A15','','','','','','','','','','','','',NULL,'Silver blue, even though they are not comparable.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A17','A1','A2','A9','A3','','','','','','','','','','','','','','','','A8','A22','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I have contributed, it’s just not the best description of my involvement. Most of my time is dedicated to programming projects that nix shell packages the dev env for.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Same as with nix','Y','','Y','','','','','Hermitically sealed packages','Rollbacks','Harder to break a working system.','Easier ways to repackage software that requires FHS support.','Same as previous nix question, silverblue.','Y','','','','','','','','','','Hyprland','','',''),(1340,'1980-01-01 00:00:00',5,'en','872325099','A5','A6','male','','','','','','Y','','','Y','','','','','','','','','Y','','','','','','Y','Principal Software Engineer','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A2','','','Y','','','Y','','Y','','Y','','','Y','','Y','Y','Y','Y','','Y','','A6','A2','A1','','','','','','','','A8','A4','A9','','','','','','','','','','','','',NULL,'Guix ... :)','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A4','A2','A5','A1','','','','','','','','','','','','','','','','','','A4','A1','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','','','Y','','','','Y','','Build & cache server','Embedded device OS','','Automatically replace all GPL-V3 packages with something with a less brutal license (for embedded devices)','Heavily customiezed Ubuntu or Guix?','Y','','','','','Y','','Y','','','Sway on Wayland','','','THANK YOU !'),(1341,NULL,1,'en','1764570761','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1343,'1980-01-01 00:00:00',5,'en','1262678367','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','NixOS is my Daily Driver','A1','','','Y','','','','','Y','Y','','','','','','','','Y','Y','','','','A1','A2','A7','','','','','','','','A14','A5','A6','','','','','','','','','','','','',NULL,'Either Gentoo or a custom build of Silverblue','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A4','A13','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I have been meaning to. I just havent goten around to it','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I wanted the declaritive config and my gentoo config was becoming pain to maintain','Y','','Y','','','','','Declarative Config','Rollback','Binary cache','Make it braindead easy to package software.','Probably an image-based os like silverblue (without gnome obviously)','Y','','','','','','','','','','Hyprland','Home-manager','none',''),(1344,'1980-01-01 00:00:00',5,'en','210151371','A5','A3','male','','Y','','','','','','','Y','','','','','','','','','','','','','','Y','','Roboticist','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','Y','','A1','Met some people at Anduril who told me about it. Seemed like a great way to avoid Docker overkill in robotics applications.','','Y','','Y','','','Y','','','','','','','Y','Y','','','','','','A2','A5','A9','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'CMake Package Manager','A4','','','','','','','','','','','','','','','','','','','','','','','A4','','','','','','','','','','','','','','','','','','','','','A4','','','','','','','','','','','','','','','','','','','','','','','','','A2','','I don\'t know how!','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','I wanted a declarative environment without all the excess that Ubuntu has','Y','','','','','Y','','Declarative Operating System','Deep nix integration','Reproducibility','Deploy a NixOS system easily','','','','','','','','','','','','','','','Please give us better docs! It is a really cool system and could be much easier to learn'),(1345,'1980-01-01 00:00:00',5,'en','1901695838','A2','A3','-oth-','non-binary','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I knew about Nix from the hackerspace in Vienna, eventually I went to the NixOS meetup where people helped me setting up a laptop in 2019. Through the NixOS community forum I managed to land my first NixOS job in beginning of 2023','','Y','','','','','Y','Y','Y','Y','','','Hospital Virtual Machines','','Y','Y','Y','Y','Y','','A2','A1','A8','','','','','','','','A2','A11','A12','','','','','','','','','','','','',NULL,'Bazel or Guix','A2','Y','','','Y','Y','','','Y','','','','','','','','','Y','','','','','','A9','A2','A25','A15','A20','A1','','','','','','','','','','','','','','','','A9','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','A2','','Big repository to clone, unclear how to exactly develop certain packages, no incremental builds (like bazel) - making it very hard to build projects like bambu-studio because my computer takes about 45 Minutes to build it each time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I learned about it by fpletz at hackerspace in Vienna, took me several years to finally start using it by going to the NixOS Meetup in Berlin in 2019. Now since beginning of 2023, thanks to NixOS community forum, I have a job where I\'m working with Nix/OS fulltime.','Y','Y','Y','Y','','','Virtual Machines in Hospitals','Reproducible configuration as code','Configuration abstraction and parsing','flakes','The NixOS Wiki\r\n\r\nThe fact NixOS is still on GitHub using Hydra','Guix or Bazel','Y','','','','','','','','','','swaywm with gdm and pipewire','https://github.com/nlewo/nix2container\r\nhttps://github.com/numtide/flake-utils\r\nAlejandra\r\n','nix-shell in favor of nix shell (and many of the other `nix-` commands in favor of nix command)\r\n','<3'),(1346,NULL,NULL,'en','616058964',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1347,'1980-01-01 00:00:00',5,'en','1114735596','A8','A3','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend of mine was using NixOS and so I tried it out as a package manager on MacOS.','Y','Y','','','','','Y','Y','Y','','','Y','','','Y','','','','','','A2','A3','A1','','','','','','','','A8','A13','','','','','','','','','','','','','',NULL,'I\'d probably use Docker, Linux Containers, or some virtualisation.','A6','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A3','A9','A17','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','After using Nix on my Mac system, I tried it out NixOS on a second computer.','Y','','Y','','','','','Declarative configuration','First-class access to nixpkgs','','','I\'d be using Arch Linux or a Debian derivative.','Y','','','','','','','','','','i3','','','thanks for the hard work, pls enjoy purely functional package management'),(1348,'1980-01-01 00:00:00',5,'en','1789168314','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I interned at replit as they started using it so I was a bit familiar, but what caught my attention was nixos.org being linked on Hacker News. ','','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','','','','A1','A3','A7','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'I would use the system package manager (apt etc) ','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A1','A3','A13','A6','A17','','','','','','','','','','','','','','','A13','A17','A1','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','After using nix package manager on my old distro for a while, I was eager to declaratively manage my entire personal system. ','Y','','','','','','','Declarative configuration ','Automatic rollback','access to nixpkgs','Better docs for how to figure out what is keeping a store path from being gced (nix-store -q --roots). Fix jankiness around input modules like fcitx. Add more modules','custom scripts for configuring my system and installing packages, or possibly ansible','','','','','','Y','','','','','lightdm+i3','home-manager, direnv, nix-index','node2nix, luarocks-nix','search.nixos.org should have something like nix-index\'s \"search for bin/$file\" functionality so that you can find what packages provide a given command '),(1349,'1980-01-01 00:00:00',5,'en','604888363','A8','A2','-oth-','bruh it should be man/woman, male/female is sex bruh bruv','','','','','','','','','','','','','','','','','','','','','','','','unemployed neet','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','',' whenever im on the pc','A3','Arch linux is not hip anymore and i wanna hav the linux street cred especially when i post on unixporn','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A3','A2','A1','','','','','','','','A8','A4','A6','','','','','','','','','','','','',NULL,'i cannot imagine a world where nix doesnt exist sry','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A26','A15','A1','A2','A21','','','','','','','','','','','','','','','','','A26','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','im shy + lazy + fear of being rejected + lazy + i havent had a reason to','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','same reason as nix','Y','','','','','','','DECLARATIVE','REPRODUCIBLE','RELIABLE','Make flakes the default, deprecate everything else','VOIDOS or ARCH or windows (:gag:)','Y','Y','','','','','','Y','','','paperWM','flake-parts','flake-utils','pls flakes flakes flakes flakes flakes flakes flakes flakes flakets tflarknse tnaei flakes falrekes!!! pls'),(1350,'1980-01-01 00:00:00',5,'en','510503890','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','The company I started working for in 2016 used Nix and NixOS for their entire infrastructure. When I left that company in 2020, I joined a different company that was introducing Nix to replace Ubuntu\'s APT and Python\'s pip for packaging their software. ','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A3','A9','A7','','','','','','','','A9','A14','','','','','','','','','','','','','',NULL,'Debian APT, cabal install and pip','A1','','','','Y','Y','','','','','','','','','','','','','','','','','Semaphore CI','A13','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','The company I started with in 2016 used it on all servers, raspberry pis and development machines. My development machine was also my personal laptop. When I left, I got to keep that laptop. It still runs NixOS. ','Y','','Y','','','','','Rollbacks','Building from other systems','The ability to build sd card images. If my home server crashes, I can just build a new image and be up and running in no time again. All I lose is state, which is backed up anyway. ','Consistency of the Nix commands. Please, stop giving existing names new meaning. The change of semantics for `nix run` -> `nix shell` in Nix 2.4 caused weeks of work converting build/deploy scripts and explaining to less experienced Nix users in our company. ','Arch, probably','Y','','','','','Y','','','Y','','I3','Nix-tree, nvd, niv','',''),(1351,'1980-01-01 00:00:00',5,'en','1188580463','A2','A3','male','','Y','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','i migrated from Fedora Silverblue because I was dissatisfied with the Flatpak ecosystem.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A5','A8','A7','','','','','','','','','','','','',NULL,'Probably some containerized approach to software development, packaging and distribution like Flatpak.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A2','A20','','','','','','','','','','','','','','','','','','','A2','A20','A5','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','i migrated away from Fedora Silverblue because I was looking for the ability to perform atomic upgrades without having to necessarily restart the computer, as uptime is paramount for my workflow.\r\nThe need for safe atomic upgrades that can be rolled back is a consequence of the fact that I need my computer systems to be operating at any time, as I heavily rely on them for every aspect of my life.\r\nIn addition, reproducibility is very important to me, as I don\'t want to tie my working environment to a particular machine, but be able to migrate easily to a new computer in case the old one breaks.','Y','','Y','','','','','Reproducible system configuration','Atomic upgrades and rollback','Centralized and declarative compile-time software customization','I would really like to see something like AppArmor/SELinux integrated with NixOS, in addition to boot-time security features like Secure Boot, PCR-based measurements and the like.','I would probably stick to some OStree-based distro.','Y','','','','','','','','','','Sway','Home manager, agenix','Disnix','We really need better documentation, as I frequently find myself browsing the Nixpkgs source tree not only to discover new library functions to use for my software development projects, but also for revisiting functions that I know exist but for which I forgot their usage.\r\nIn addition, Nix is not the nicest functional language, and it would really be awesome if it was to be made better (e.g. syntax sugaring around some basic operations, like access to list elements, maybe taking other more mature functional languages as an example).'),(1352,'1980-01-01 00:00:00',5,'en','1459381483','A2','A6','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','','','','','VSCode limitations','Plugins for VSCode that I used before could not be installed ','Y','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Too steep learning courve, not used to it and learning resources were rare and too complicate for me. Don\'t feel comfortable with the Nix language (too many semicolons in strange places, no type safety)','Good tutorial / basic introduction. Real world scenarios.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','My basic feeling is that Nix has solved some very important problems in devops in a elegant, simple way. I need just more time to learn and get hands on experience'),(1353,NULL,2,'en','1460917615','A1','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','','Y','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A6','A1','A3','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'Archlinux','A4','','','','','','','','','','','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','A8','A4','','','','','','','','','','','','','','','','','','','Y','','','','A1','','language + need time learn more',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1354,'1980-01-01 00:00:00',5,'en','976478380','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','The idea of organised and easily configured system spoke to me, especially after having small chaos with personal repos on different systems.','','Y','','','','','Y','Y','','','Y','','','','Y','Y','Y','','','','A2','A10','A1','','','','','','','','A14','A4','A8','','','','','','','','','','','','',NULL,'I would probably manually manage and configure everything. Maybe use gnu stow and bash scripts for package installation.','A2','','','','Y','','','','','','','','','','','','','','','','','','','A15','A20','A2','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Mainly my lack of deeper knowledge of nix-build. I\'ve tried to package some of my applications but after build I wouldn\'t be able to add them to nix store and path.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Stabilty and configurabilty.','Y','','Y','','','','','Stabilty','Configurabilty','Reproduceability','I would like to improve error messages when evaluating configurations and flakes.','Probably archlinux.','Y','','','','','','','','','','qtile','','','Keep up with good work :)'),(1355,NULL,NULL,'en','874874113',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1356,NULL,2,'en','191567507','A3','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','Y','','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1357,'1980-01-01 00:00:00',5,'en','980823440','A5','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A3','A2','A10','','','','','','','','A8','A13','A3','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A7','','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','',''),(1358,'1980-01-01 00:00:00',5,'en','1037143284','A8','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Kind of mixed in with how i started using NixOS, but they both happened at the same time.\r\nI had been using fedora for a few years on my desktop and laptop. I felt an urge to do a little experimenting (wanted to move from gnome to a tiling window manager and do some more customisation mostly...) and so played around with Arch on my laptop for a few days before remembering i had heard about how great nix was some time in the past. I forget where but i think it was on youtube.\r\n\r\nI was doing a course on haskell at uni at the exact same time so was very pleasantly surprised by the nix language. The reproducibility seemed great for setting up a consistent system between laptop, desktop and server. I then set up a server using nix, it was extremely trivial, which i loved. It helped immensely dealing with python package differences between systems (I have to do AI work and my home desktop uses an AMD gpu, so setting it up is extremely extremely finnicky, but now its nice to have a setup that feels like it will always work).','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'I was considering other immutable distributions like silverblue when i found nix, so maybe one of those. Probably just fedora though.\r\nFor dev environments... likely nothing, and if i had to for reproducibility then docker.','A1','','','','Y','','','','','','','','','','','','','','','','','','','A15','A2','A13','A1','A5','A25','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Lack of self percieved skill (probably for good reason) in nix. I would like to, just need to do more learning.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','','Kind of mixed in with how i started using NixOS, but they both happened at the same time.\r\nI had been using fedora for a few years on my desktop and laptop. I felt an urge to do a little experimenting (wanted to move from gnome to a tiling window manager and do some more customisation mostly...) and so played around with Arch on my laptop for a few days before remembering i had heard about how great nix was some time in the past. I forget where but i think it was on youtube.\r\n \r\nI started on my laptop, then eventually put nixos on my desktop in dual boot (but have since moved to only using nixos). I also used it to turn an old PC into a server for a variety of services which has been great.','Y','','Y','','','','','Declarative and Reproducible','Unifies system configuration/customisation','Package availability','Better/unified documentation and learning resources. Im mostly past it now, but that was a real headache getting started.','I would likely be on fedora, maybe silverblue (i was considering it when i found nix because an immutable os seemed interesting)\r\nI doubt it, but i might have used vanilla OS, it was something that fascinated me and set me on the path to finding NixOS.','Y','','','','','','','','','','Hyprland','Home manager','','Thanks for creating the most innovative OS ive ever found.'),(1359,'1980-01-01 00:00:00',5,'en','756137444','A3','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','','','Y','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A10','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A1','A2','A5','','','','','','','','','','','','','','','','','','','A1','A2','A5','','','','','','','','','','','','','','','','','','','','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1360,'1980-01-01 00:00:00',5,'en','1871384056','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A8','A9','A3','','','','','','','','','','','','',NULL,'Possibly GUIX or Fedora Silverblue as a budget version of nix','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A2','A20','A11','','','','','','','','','','','','','','','','','','A13','A20','A11','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','Declarative OS configuration','Portable OS configuration','Rollback NixOS builds','I would add even better error messages and more out of the box configuration for NixOS i.e. support more init systems other than systemd.','Maybe GUIXSD or Fedora Silverblue','Y','','','','','','','','','','i3','Just nix-community stuff like the emacs-overlay','none.',''),(1361,'1980-01-01 00:00:00',5,'en','275473928','A2','A3','male','','','','','','','Y','Y','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I read an article about it and was instantly hooked by the ideas of the package manager','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','A2','A7','A8','','','','','','','','A8','A14','A7','','','','','','','','','','','','',NULL,'Fedora silverblue','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A19','A1','','','','','','','','','','','','','','','','','','','A15','A1','A19','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Getting started to contribute to open source projects always has a steep learning curve. In combination with the sparse learning and \"getting started\" resources for everything but the most common workflows I feel like I can\'t really get started without having to resort to bothering humans directly via discrouse or matrix.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I read an article about the ideas of the nix package manager and was directly hooked.','Y','','Y','','','','','Flakes','Reproducible builds','Safe rollbacks','I would definitely add a huge amount of documentation and \"getting started\" resources. In the best case as extensive as the Arch-Wiki.','Fedora silverblue as workstation and for builds I\'m not sure, I\'d probably just be sad :(','Y','','','','','','','','','','Hyprland','I use home-manager a lot for configuring my workstation. And I recently discovered treefmt-nix.','','Continue the great work!'),(1362,NULL,2,'en','2059981661','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','Because I often get that I have to use different versions for projects that I am working on for university. So I started using flakes. And it works really well.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A7','','','','','','','','A5','A13','A4','','','','','','','','','','','','',NULL,'Yay','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I think I want to use the system for a while and then contribute, when a package doesn’t work.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1363,'1980-01-01 00:00:00',5,'en','1235441464','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','I wanted reproducible builds and declarative. As I have multiple versions of a program on my pc.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A7','','','','','','','','A5','A13','A4','','','','','','','','','','','','',NULL,'Yay','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','I want to use it longer and I want to understand the code before coding. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I wanted reproducible and declarative and reliable builds so it is a perfect fit. As I have two computers who I want to maintain with one file','Y','','','','','','','Reproducible ','Declarative ','Reliable','I would have more options so for instance that the customization that I do to the desktop that I can write that down in one file.','Arch','Y','','','','','','','','Y','','','-','-','-'),(1364,'1980-01-01 00:00:00',5,'en','2091890783','A7','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I joined a Nix \"shop\" (a company with Nix experts / enthusiast)','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','','A1','A3','A2','','','','','','','','A14','A4','A10','','','','','','','','','','','','',NULL,'Guix','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A14','A15','A13','','','','','','','','','','','','','','','','','','','A14','A15','A13','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Nothing really. I just found an OCaml package that isn\'t on Nixpkgs, and I\'m in the process of packaging it.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Joined a Nix \"shop\"','Y','','','','','','','','','','','Arch','Y','','','','','','','Y','','','','','',''),(1365,'1980-01-01 00:00:00',5,'en','1008567054','A5','A3','male','','','','','','Y','Y','Y','Y','Y','Y','','','','','','','Y','','','','','','Y','','','','Y','','','NixOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','Personal desktop','A3','Linux + declarative configuration','Y','Y','','Y','Y','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','Y','','A2','A1','A3','','','','','','','','A4','A14','A5','','','','','','','','','','','','',NULL,'Arch Linux + Ansible or something?','A2','','','','Y','Y','','','','','','','','','','','','','','','','','Other','A15','A3','A2','A1','A9','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Nothing, I have on occasion. Maybe this should\'ve been multi-select?','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','Y','Y','Y','','Nixpkgs','Declarative Configuration','','I\'d invest time in trying to bring the community together on some of the major shortcomings. devnix/hive seems to be making good progress on some things but is largely unknown still.','I guess I\'d go back to Arch Linux for desktop and containers for production systems...','','','','Y','Y','','','','','','i3','devnix/hive and std','devnix/digga',''),(1366,NULL,2,'en','1526241112','A5','A3','male','','','','','','','Y','','','','','','','','','Y','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Having a reproducible way to configure my Linux machines and dev environments.','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'For an OS, I would use an Arch-based distro. For package management I would use pacman on Linux and brew on MacOS.','A2','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Time commitment currently. Would definitely like to contribute at some point.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1369,'1980-01-01 00:00:00',5,'en','2004632330','A6','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A7','Seeking for a way to have simple, reproducible configuration among multiple hosts. Nix also has a a lot of packages. After using Debian, Arch, and recently Fedora, NixOS was a breath of fresh air and was easier to configure and learn than Guix. ','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A6','','','','','','','','A14','A5','A9','','','','','','','','','','','','',NULL,'A toss up between Guix, Fedora, and VanillaOS at the moment. ','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','I suppose I answered this in the previous prompt. Again, to find reproducibility in systems and for package availability. Moreover, NixOS feels \"cleaner\" than other systems. ','Y','','','','','','','The system configuration','Home configuration','','Comprehensive documentation.\r\n\r\nEven though I don\'t use the CLI much I would still rewrite it to be something similar to `guix`. ','Fedora, Guix, or VanillaOS','Y','','','','','','','Y','','','Hyprland','','','Thanks for the great project. It has made setting up my local system a breeze. Providing more use friendly documentation to get people started with Home and Flakes would help with adoption. Once people get over the learning curve they\'ll see that Nix is quite special. '),(1368,'1980-01-01 00:00:00',5,'en','1885703382','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','Y','','','A1','A2','A3','','','','','','','','A8','A6','A3','','','','','','','','','','','','',NULL,'Kubuntu with apt','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A1','A6','','','','','','','','','','','','','','','','','','','A5','A2','','','','','','','','','','','','','','','','','','','','','Y','','','-oth-','I package missing software but doesnt contributed upstream',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','Y','','','','','modules (especially services)','','','','Kubuntu with apt','Y','','','','','','','','Y','','','static code analysis like statix, deadnix, vulnix\r\ndream2nix for packaging javascript/spa\r\ndisko for disk configuration\r\nplasma-manager as home-manager module for kde plasma (https://github.com/dominikstraessle/plasma-manager)','',''),(1370,'1980-01-01 00:00:00',5,'en','590067999','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Saw a youtube video and got really interested.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'Arch linux (or guix i guess)','A2','','Y','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I sometimes do (but not extensively)','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','','','Y','','Y','','','','','Declarative configuration','','','','Arch','Y','','','Y','','','','','','','river','','',''),(1371,'1980-01-01 00:00:00',5,'en','33196293','A6','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I came across a talk about Nix and NixOS which convinced me to give NixOS a try. I used it for quite a while along with home-manager, but the steep learning curve and the fact that it took some time to apply config changes (I couldn\'t just edit a config file managed by Nix or home-manager) made me switch back to other distro (popOS).\r\n\r\nDuring the short time of using popOS, I realised how Nix has spoiled me. The idea of reproducible dev environments (and the whole system with NixOS) is just amazing and it enables me to experiment with my machine more often without the fear of it breaking.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A1','A2','A3','','','','','','','','A9','A4','A14','','','','','','','','','','','','',NULL,'- package managers for every language I write code in (pnpm, cabal, bundler)\r\n- Arch\'s AUR as a replacement for nixpkgs','A7','','','','Y','','','','','','','','','','','','','','','','','','','A1','A3','A7','A13','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I have made one contribution to nixpkgs in the past. I do not get much time to contribute to nixpkgs although I wish to do it in the future.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','Reproducibility: It\'s the fastest to install it on a new system with my configs','Generations: For every new change in NixOS it creates a new generation. It\'s very helpful in cases when I break something, I can always go back to the older generation.','nixpkgs: It has every package that I need','','','Y','','','','','','','','','','i3wm','','',''),(1372,NULL,1,'en','461317822','A5','A6','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1373,NULL,1,'en','1276449374','A6','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1374,'1980-01-01 00:00:00',5,'en','1741602437','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because I started using NixOS.','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A5','A8','A15','','','','','','','','','','','','',NULL,'Whatever is provided by the programming language.','A4','','','','Y','','','','','','','','','','','','','','','','','','','A15','A2','A25','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Unclear or lacking documentation/guides especially about best practices.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I saw it in a university lecture.','Y','','Y','','','','','Declarative, reusable configuration','Very good/vast package ecosystem','shell.nix (with lorri)','Incorporate (parts of) home-manager into NixOS so that declarative user home configuration does not rely on a third-party flake.','Probably Arch Linux.','Y','','','','','','','','','','i3','None','niv',''),(1375,'1980-01-01 00:00:00',5,'en','1210629540','A2','A4','fem','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was fascinated by the idea of declarative, reproducible setups when a colleague introduced Nix/NixOS to me.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A3','A2','','','','','','','','A8','A2','','','','','','','','','','','','','',NULL,'bash scripts, ansible','A4','','','','Y','','','','','','','','Y','','','','','Y','','Y','','','','A15','A4','A2','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','Reproducability','Deployment tools','Modules (incl. custom ones)','','Ubuntu/Fedora','Y','','','Y','','','','','','','i3','home-manager','','I am very happy that Nix and NixOS exist :)'),(1376,'1980-01-01 00:00:00',5,'en','766110661','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','','','Y','','','','','Y','','','Y','','','','','','','Y','','','','A1','A10','','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'apt (nala)','A2','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I\'m new to Nix.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','','','','','Xubuntu and Gentoo','Y','','','','','','','','','Y','','','',''),(1377,NULL,1,'en','1557753443','A2','A5','male','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1378,NULL,3,'en','1305234423','A5','A3','-oth-','N/A','Y','','','','Y','','','','','','','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','Y','Y','Y','Y','Y','My motorcycle runs nixos','Y','Y','Y','Y','','','','A10','A7','A3','','','','','','','','A6','A3','A1','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','Y','','','','','','','','','','Nixos itself works fine','','','','','','','','','','','','','','','','','','','','','','A2','A25','A20','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','Y','Y','My motorcycle','Modules','Config in one place','Rollbacks','A better language than Nixlang.','','','','','','Y','Y','','','','Y','i3',NULL,NULL,NULL),(1379,NULL,NULL,'en','998821542',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1380,'1980-01-01 00:00:00',5,'en','1278891301','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','saw the hype on lemmy, thought it fit my needs due to me wanting a stable os thats impossible to break and has a huge amount of packages while allowing customization! haven\'t looked back! ','','Y','','','','','Y','','','','','','','','Y','Y','','','','','A1','A10','A6','','','','','','','','A3','A12','A5','','','','','','','','','','','','',NULL,'debian, stability and its the os i grew up with.','A4','','','','Y','','','','','','','','','','','','','','','','','','','A3','A2','A10','','','','','','','','','','','','','','','','','','','A3','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','general lack of knowledge, as im new to this whole nix thing.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','','','','','','stability','packages','reproducibility ','faster support for broken or out of date packages.','','Y','','','','','','','','','','enlightenmnent','','',''),(1381,NULL,NULL,'en','762194293',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1382,'1980-01-01 00:00:00',5,'en','319367040','A6','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','Liked the functional aspect + ability to declarative environment.','','Y','','','','','Y','Y','','','','','','Y','Y','','','','','','A2','A6','A7','','','','','','','','A6','A13','A5','','','','','','','','','','','','',NULL,'Chef, ansible, stow?','A2','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Inexperienced.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','','','','','Declarative','Easy to configure','Easy to rollback','- Inconsistencies between methods - there are multiple ways to do one thing, which can be confusing for beginners. \r\n+ Support for secrets in nix language','Arch with some way to make my configs declarative','Y','','','','','','','','','','xmonad','- nix-sops\r\n- home-manager','- firejail + apparmor ( I believe that one of them is supported, but the support for it is limited)','I love nix. Thanks.'),(1383,'1980-01-01 00:00:00',5,'en','1334910253','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I heard it was a \"revolutionary\" package manager and wanted to give it a try. A month later all my devices ran it.','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A10','A7','','','','','','','','A4','A8','A6','','','','','','','','','','','','',NULL,'I genuinely don\'t know. Probably Fedora Silverblue.','A7','','','','Y','','','','','','','','','','','','','','','','','','','A25','A5','A4','A1','A20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Lack of knowledge of Git.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','','','','','','Reproducible.','Declarative.','Functional.','Home-manager into the core.','Probably Fedora Silverblue.','Y','','','','','','','','','','xmonad','','',''),(1384,'1980-01-01 00:00:00',5,'en','434192467','A2','A4','male','','','','','','','Y','Y','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Reproducibility. I started with plain Nix on Ubuntu and shared my configs with my $DAYJOB Mac. I eventually ditched Ubuntu and went full NixOS.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A6','','','','','','','','A5','A8','A2','','','','','','','','','','','','',NULL,'Maybe some concoction of Docker images and Bazel/Buck.','A4','','','','','','','','','','','','','','','','','','','','','','','A9','A15','A1','A2','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','The process seems complex. The huge GH PR template scared me.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Home manager made me do it! I also grew tired of using hacks like NixGL on Ubuntu.','Y','','Y','','','','','Reproducibility','One off dev shells','Home manager and NixOS modules','Stabilize and document flakes.','','','','','','','Y','nix-copy-closure','','Y','','LXDE','','NixGL to run GUI apps on non-NixOS Linux. It needs to be a nixpkgs builtin.',''),(1385,'1980-01-01 00:00:00',5,'en','948018840','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','','','Y','','','','','Y','Y','Y','','Y','','A1','A2','A7','','','','','','','','A12','A9','','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A7','A9','A10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','Y','','','','Declarative system configuration','','','','','','','','','','Y','','','','','xmonad','','',''),(1386,'1980-01-01 00:00:00',5,'en','370307363','A2','A3','male','','','','','','Y','Y','','','','','Y','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','Y','','','A2','A1','A7','','','','','','','','A3','A11','A12','','','','','','','','','','','','',NULL,'','A1','','Y','','','Y','','','','','','','Y','','','','','Y','','','','','','A4','A13','A1','A15','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','Y','','','','stability, atomic upgrades','easy to configure, configuration-as-code','wide availability of packages','','ArchLinux','Y','','','','','','','','','','sway','haskell.nix','home-manager','Thanks for your work!'),(1387,'1980-01-01 00:00:00',5,'en','258957572','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A1','','Y','','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A1','A7','A2','','','','','','','','A4','A14','A7','','','','','','','','','','','','',NULL,'','A6','','','','Y','','','','','','','','','','','','','','','','','','','A22','A7','A5','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Just spending more time trying to understand the internals.','N','N','The moment I buy a non Mac system.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1388,'1980-01-01 00:00:00',5,'en','1701294427','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'GNU Guix','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','A3','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','The complexity of Nixpkgs internal code structure','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I decided to try it after reading all the enthusiast comments on Reddit and, in general, all around the Internet.\r\nFirst of all, I installed NixOS in a VM and in a old computer but, having fallen in love with the single configuration file feature and immutable nature of the distro, I almost immediately installed it on my main machine to use it as my daily-drive.\r\nCurrently, I installed NixOS on two computers and one server.','Y','','Y','Y','','','','Single config file','Immutability','','More like a change in the Nix language itself, but I would love to see compatibility with the language used by Guix (Guile) to write configurations and derivations','GNU Guix','Y','','','','','','','','','','Hyprland','','','The Nix/NixOS project is really fantastic, and I will not stop using its products in the foreseeable future.\r\nHowever, I would like to point out that the (sometimes needless) complexity of the ecosystem makes working with it a real pain. To address this, it would be awesome to see the Flakes support and the new Nix commands getting stabilized and the old interface (along with channels) deprecated and removed, as this would reduce the number of ways available to do exactly the same things, simplifying every interaction.\r\nStabilizing the Flakes support, moreover, would allow a greater number of projects to host their Nix build instructions without having to contribute them to Nixpkgs (an operation that requires studying and comprehending a lot of strange and, at first glance, exoteric code).\r\nSpeaking of the language, I would love to see the possibility to use Guile (or a similar Lisp) as the configuration language introduced at least experimentally; I know that this would undermine my initial goal of simplifying the ecosystem, but having the possibility to replace the Nix language with a Lisp would, in my opinion, make scripts easier and discourage fewer new users (which are often not too eager to learn a completely new language that, as opposed to Lisp, has no use and documentation outside the project itself).\r\nIn any case, thank you for your hard work and for your incredible ecosystem.'),(1389,'1980-01-01 00:00:00',5,'en','1090092795','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','Y','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Tried it, liked it, that about it. It makes a lot of sense, and so far It hasn\'t failed me by becoming unsuable on my moms computer (I\'ve installed NixOS on my laptop, wifes laptop and moms PC, because I\'m the guy who has to deal with all the computer related stuff)','Y','','','','','','','declarative configuration','Ability to rollback','stability','I would add 12 extra hours in a day, that I would use to experiment with nixos at work, in order to migrate my managed CentOS servers to it. However since currently I used ansible to manage servers, it would have to be more than just plain migration.','I would try Debian 12 and fall back to Manjaro. However in ideal world I would use FreeBSD','Y','','','','','','','','Y','','','','','I really which documentation would be better. Currently in many areas it feels half baked at best. Especially about nix language.... in my opinion'),(1390,NULL,2,'en','1734967360','A2','A3','fem','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A7','A3','A2','','','','','','','','A2','A5','A9','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A15','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I don\'t feel like the software I package for myself is worth inclusion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1391,'1980-01-01 00:00:00',5,'en','1850667','A2','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I looked for a stable, open system and was frustrated with how macOS developed ','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A3','A1','','','','','','','','A8','A12','A3','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A21','A2','','','','','','','','','','','','','','','','','','','A13','A2','A21','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','My time constraints. I hope this changes','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I got frustrated with macOS ','Y','Y','Y','Y','','','','Reproducible shells','Flakes','Development shells','Stabilize flakes\r\n\r\nImprove hardware support (incl mobile)\r\n\r\nNixops improvements','Guix','Y','Y','','','','','','','','','Xmonad','Home-manager','-','-'),(1392,NULL,1,'en','1632169696','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1393,'1980-01-01 00:00:00',5,'en','712901749','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','A7','A2','A1','','','','','','','','A12','A8','A9','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','Y','','Y','','','','A15','A9','A2','A1','A3','A10','A7','A5','','','','','','','','','','','','','','A1','A7','A10','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','','Y','Y','Y','Y','','','','Readily available modules','Predictable release cycle and support policy ','Module documentation','','','Y','','','','Y','Y','','','','','sway','home-manager, lanzaboote, poetry2nix, napalm, direnv with flakes, snippets from nixos-hardware, impermanence, crane, flake-parts','flake-utils','Thank you for doing this! :)'),(1394,'1980-01-01 00:00:00',5,'en','278295048','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','When I started using NixOS and had to write some packages myself.','','','','','','','Y','Y','','','','Y','','','Y','Y','Y','','','','A2','A10','A9','','','','','','','','A8','A6','A1','','','','','','','','','','','','',NULL,'Would probably use KISS Linux and go live in the woods','A4','','','','','Y','','','','','','','','','','Y','','','','','','','','A13','A2','A3','','','','','','','','','','','','','','','','','','','A2','A5','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','','','Y','','Unified configuration','Reproducibility','Atomic updates and rollbacks','1. Make `nixos-rebuild` faster with no changes to the configuration\r\n\r\n2. Replace all `extraConfig` with type-checked `settings`\r\n\r\n3. harden all systemd services by default','See Nix answer','Y','','','','','','','','','','bspwm','nixos-mailserver','',''),(1395,'1980-01-01 00:00:00',5,'en','1305012172','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted to switch back to Linux and I liked declarative approach to configuration','Y','Y','','','Y','Nixos','Y','','Y','Y','','','','','Y','Y','Y','','','','A2','A3','A8','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'No idea really. Bash scripts? Guix?','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A12','A15','A17','A6','A1','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Same as with nix','Y','Y','','Y','','','','Declarative configuration and customization ','Remote deployment ','','','','Y','','','Y','','','','Y','','','','Sops-nix, nixos-generators, extra-container, flake-utils ','',''),(1396,'1980-01-01 00:00:00',5,'en','1815828721','A2','A4','male','','','','','Y','Y','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A1','A9','A2','','','','','','','','A9','A8','A13','','','','','','','','','','','','',NULL,'Docker, adsf','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A24','A15','','','','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Laziness :) ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','Declarative configuration','Atomic deployment','','- Add an alternative init system (remove the hard dependency to systems) \r\n- Split nixpkgs into lib, pkgs and nixos modules\r\n- develop a testing framework and best practices for them\r\n- develop a best practices for large scale deployments','Arch, gentoo','','','','Y','','','','','','','Sway','Devenv, cachix, deploy-rs','Nixops',''),(1397,'1980-01-01 00:00:00',5,'en','1382380782','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'m the IT guy in the family; i used to install lots of Windows and Linux machines and created scripts that would install all the desired apps automatically. NixOS does this out of the box and repeatable. It just works.','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A8','','','','','','','','A6','A3','A2','','','','','','','','','','','','',NULL,'Ubuntu with custom setup scripts; maybe Bazel in development for not-quit-as-good-and-lots-of-headaches reproducibility','A4','','Y','','Y','','','','','','','','','','','','','Y','','Y','','','','A15','A2','A13','','','','','','','','','','','','','','','','','','','A15','A2','A13','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','The structure of the nixpkgs setup feels too complicated and time consuming. Also the nix libraries to package software for different programming languages are vastly different and badly documented. Just look at Haskell and Python with several ***2nix libraries and none of them comes without headaches.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','Declarative, repeatable system setup that works for Laptops, Desktops, Servers.','Trying out software is soo damn easy and doesn\'t pollute my system','I can test the whole system easily in a vm before deploying it to a VPS server.','Out of the box easy method to deploy to servers via ssh (there are so many custom, half-maintained Nix deployment tools). I\'m (mis)using Nixos-rebuild for that with lots of quirks.\r\nAlso secret handling is super important for deploying servers (similar story for lots of custom, half-maintained, badly documented Nix secrets libraries).','Ubuntu','Y','','','','','','','','','Y','','','','You\'re doing a great job extending, promoting and improving NixOS! Many thanks.'),(1398,'1980-01-01 00:00:00',5,'en','1695795575','A2','A5','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Learning about Kubernetes and gitops concepts like immutability and declarative configurations .NixOs and Guix caught my attention. Been a NixOS user since :-)','','Y','','','','','Y','Y','','','','','','','Y','','Y','','Y','','A2','A3','A7','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'I would probably use Arch Linux or Alpine.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','N/A','A15','A9','A2','A3','A25','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Time and skill ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','Declarative configuration','','','','Arch or Alpine','Y','','','','','','','Y','','','Sway','','',''),(1399,'1980-01-01 00:00:00',5,'en','1019430292','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','Y','Y','','A6','A9','A2','','','','','','','','A2','A12','A5','','','','','','','','','','','','',NULL,'','A7','','','','','Y','','','','','','','','','','','','','','Y','','Y','','A13','A1','A2','A9','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Time. I do however provide financial support to people contributing.','N','N','On a Mac, but using home-manager.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Cachix, some TVL code (eg. readTree)','',''),(1400,NULL,1,'en','441839183','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1401,'1980-01-01 00:00:00',5,'en','741997341','A8','A6','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','Y','','Y','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','replace homebrew, provide isolated development environments with specific versions of packages per environment, and the hope that it would provide a tenable production build environment and something i could use to give my team production/dev parity, similar to how people now tend to use docker ','Y','','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A14','A4','A8','','','','','','','','','','','','',NULL,'either lots of docker and/or homebrew','A6','','','','','','','','','','','','','','none, my usage is pretty basic. trying to get the courage to use flakes','','','','','','','','none','A7','A1','A15','A14','A17','A24','A20','A6','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','','','','none','A2','','I barely have the IQ to use and manage nix, let alone contribute','N','Y',NULL,'so. much. time. spent. trying. to. make. it .f^&*(IJD. work. ','reason to hope that i might spend more time using it than fixing and configuring it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none. ','flakes\r\nnix-ops','i don\'t know how you\'d fix this, but its just so cryptic. the way packages are named is increadibly confusing. For eg I needed various binutils in a ruby project on darwin. working out what actual packages i needed just to be able to work took all the available time. variations on this are common for me. Also, the nature of nix means its theoretically ideal to be able to pull in old versions of packages when you have to work on legacy projects. I should be able to simply ask for ruby 1.8, but for some reason only the last 3 or versions are available at any time. this kills one of its most compelling use cases. Yes I can specify an old commit , but thats a lot of fooing around.'),(1402,NULL,2,'en','1857697181','A2','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','','','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(1403,'1980-01-01 00:00:00',5,'en','2049527935','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','To manage servers because other configuration tools weren\'t reliable enough. \r\n\r\nhttps://kevincox.ca/2015/12/21/service-management-with-nixos/','','Y','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','Y','','','A1','A10','A3','','','','','','','','A12','A2','A1','','','','','','','','','','','','',NULL,'Puppet + Arch','A1','','','','','Y','','','','','','','','','','','','Y','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','','','','contributing upstream 😉','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I liked it on the server and wondered if it worked well on desktop. Didn\'t like that in my Arch install I was slowly growing configuration cruft. ','Y','','Y','','','','','Declarative configuration ','Easy to customize packages. ','OS rollback ','Somehow to make it easier to keep using an old package when it is broken in a new version. \r\n\r\nFor example if the nixops package fails to build I don\'t want it to hold back my whole system. Right now this is a fairly manual process of pinning the old version with nix-env then uninstalling it in the config. Then you need to remember to do the reverse once it is fixed. ','Arch','Y','Y','','','','','','Y','','','','','',''),(1404,NULL,1,'en','1475246669','A5','A4','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1405,NULL,NULL,'en','744452239',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1406,'1980-01-01 00:00:00',5,'en','1454703575','A2','A3','male','','Y','','','','','','Y','Y','','','Y','','','','','','Y','','','Y','','Y','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','NixOS caught my attention and then slowly caused Nix to invade my whole life. Now I cannot live without it :/','','Y','','Y','','','Y','Y','','','','Y','','Y','Y','Y','Y','','Y','','A2','A5','A1','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'Gentoo, but that\'s not comparable at all.','A2','','Y','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A15','A2','A4','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','After going through 6 years of Gentoo madness, I needed to move on to something better but just as powerful.','Y','Y','Y','','','Y','','Declarative configuration and service management.','State immutability.','Ability to easily discover and compare configurations from other people!','A better standard library and some formatting rules. It\'s all over the place.','Probably guix, while crying.','','','','','Y','','','','','','sway','agenix, agenix-rekey, disko, home-manager, impermanence, microvm.nix','',''),(1407,'1980-01-01 00:00:00',5,'en','1378250298','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','','','Y','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A7','A2','A1','','','','','','','','A2','A3','','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A1','A2','A10','A13','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1408,'1980-01-01 00:00:00',5,'en','1716894089','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','because of cool logo.','','','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A2','A7','A3','','','','','','','','A4','A5','A8','','','','','','','','','','','','',NULL,'','A2','Y','','','Y','Y','','','','','','','','','','','','','','','','','','A24','A23','A13','A2','','','','','','','','','','','','','','','','','','A24','A23','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','asociality','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','cool logo.','Y','','','','','','','reproducibility.','rollbacks.','painless advanced package managment.','i would add adequate documentation.','fedora.','Y','','','','','','','Y','','','sway','','',''),(1409,'1980-01-01 00:00:00',5,'en','116185499','A2','A5','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Easily bring up different environments.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A9','A14','A8','','','','','','','','','','','','',NULL,'docker','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A10','','','','','','','','','','','','','','','','','','','','A10','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','','','Y','','','','','','','Declarative','Snapshots','Reproducible among devices','','Arch','Y','','','','','','','','Y','','','homemanager','',''),(1410,'1980-01-01 00:00:00',5,'en','1614357433','A2','A5','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Heart on it on the \'Functional Geekery\' podcast.','Y','','','','Y','','Y','','Y','Y','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Debian, Docker, …','A4','','','','','','','','','','','','','','','','','','','','','','Drone','A15','A25','A13','A20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Heart of it on the \'Functional Geekery\' podcast','Y','Y','','Y','','','','Declarative servers','Rollback','','Documentation to make it easier to get started with Nix and NixOS','Debian','Y','Y','','','','','','','','','xmonad','','',''),(1411,NULL,1,'en','1488974641','A5','A3','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1412,'1980-01-01 00:00:00',5,'en','150788913','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','A2','A1','A7','','','','','','','','A12','A2','A8','','','','','','','','','','','','',NULL,'I would invent something similar.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A17','A2','A21','A1','','','','','','','','','','','','','','','','','A17','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','','Y','Y','Y','Y','','','','','','','','','Y','','','','Y','','','','','','awesomewm','','',''),(1413,'1980-01-01 00:00:00',5,'en','616066105','A5','A3','male','','','','','','Y','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Had a dream of all my personal system configs in 1 GitHub repo. Nix makes that dream a reality. Jumped from Ubuntu to arch to nixos. Running on my steam deck and I am loving every second of it.','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','','Y','','A2','A1','A4','','','','','','','','A5','A3','A14','','','','','','','','','','','','',NULL,'Docker :(','A7','','','','Y','','','','','','','','','','','','','Y','','','','','','A3','A4','A2','A15','','','','','','','','','','','','','','','','','','A3','A4','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don\'t want to sign up for the complexity of maintaining a package for more platforms than what I am currently using.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','Flake system configuration ','Rollbacks','','The resize nixos bylabel bootloader config within the NixOS vms','Arch :(','','','','','','','','','Y','','','Flake-utils','',''),(1414,NULL,1,'en','1697402336','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1415,'1980-01-01 00:00:00',5,'en','679869238','A2','A2','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','Y','Y','','','','Y','','','iOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Used by friends at local hackspace and proved very useful for packaging and building Haskell projects, gradually got into NixOS.','Y','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','','Y','','A2','A3','A4','','','','','','','','A5','A11','A2','','','','','','','','','','','','',NULL,'Exherbo\'s packaging system','A2','','','','','','','','','','','','','','','','','','','Y','','Y','','A13','A15','A25','A3','A1','A2','A14','A18','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','Impressed with the possibility of having an entire system configured in a single file.','Y','Y','','Y','','','','Declarative Configuration','Rollbacks','','I would add painless modules for all things wayland (including less mainstream compositors like sway, river, …).','ArchLinux, Exherbo, …','Y','','','','','Y','','','','','sway','Niv, cabal2nix, nixpkgs-fmt, direnv, nix-tree, nix-diff, Hydra, nix-serve','',''),(1416,'1980-01-01 00:00:00',5,'en','1868875797','A2','A3','-oth-','Non Binary','','','','','','','','','','','','','','','','','','','','','','','','Silicon Hardware Engineer','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Heard it solves the ansible problem, wanted to learn more','','','','Y','','','Y','Y','','','','','','','Y','Y','Y','','Y','flakes','A2','A1','A3','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'Void Linux, possibly OpenSuse','A2','','','','Y','','','','','','','','','','','','','','','','','','none','A2','A3','A13','A15','A18','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','My Ubuntu lts was running out, void wasn\'t quite working, nix has always been interesting','Y','','Y','','','','','One flake for my system','Rollbacks for fast development ','Easy dependency management ','Better Docs, full move to flakes\r\nKDE config support in home manager (more a fault of KDE)','Ansible','Y','','','','','','','','Y','','','','','Make flakes non experimental'),(1417,'1980-01-01 00:00:00',5,'en','203120975','A5','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','Technical program manager ','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A9','','','','','','','','A8','A2','A14','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A22','A3','A12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','Up to date software','Large collection of software','Easy to stand up a new machine that shares a complex configuration ','','','','','','','','','','Y','','','dwm','','',''),(1418,NULL,1,'en','1170886484','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1419,'1980-01-01 00:00:00',5,'en','1452233461','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted a declarative way of managing my home and development environments. home-manager was my gateway into using Nix more broadly.','Y','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Either Conda or Docker Compose for development environments, and Homebrew and Stow for home management.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A24','A23','A1','A2','A14','A5','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I have not needed to so far; it provides what I need.','N','N','If I managed servers I would consider using NixOS.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Mach-nix',''),(1420,NULL,2,'en','1240599713','A2','A2','-oth-','Unsure','','','','','','Y','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Got hooked by a previous partner of mine, they were using it and told me why it is so good and after some time I tried it and kinda fell in love with it. I really like the declarative approach when it comes to managing my systems configuration combined witht he, for me personally, quite good stability of my systems.','','Y','','','','','Y','Y','','Y','','','','','','Y','Y','','','','A1','A7','A9','','','','','','','','A6','A14','A4','','','','','','','','','','','','',NULL,'I\'ve previously used ansible for my server deployments, but kinda hate(d) it.','A2','','','','Y','','','','','','','','','','','','','','','Y','','','','A2','A15','A10','','','','','','','','','','','','','','','','','','','A10','A1','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1421,'1980-01-01 00:00:00',5,'en','1128037003','A5','A2','male','','Y','','','','','','','Y','','Y','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','Y','','','','','Y','Y','','','','Y','','Y','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'','A1','','Y','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A2','A9','A4','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','Y','','','Y','','','','','','','Y','','','','','','','','Y','','','','',''),(1422,'1980-01-01 00:00:00',5,'en','1180058811','A2','A3','male','','Y','','','','','Y','','','Y','Y','','','','','','','Y','','','Y','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','','Y','','A2','A9','A1','','','','','','','','A1','A8','A2','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A15','A1','A13','A14','A25','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','I3','','',''),(1423,NULL,2,'en','17776575','A2','A4','','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','Interested in NixOS for immutable and declarative OS, previously liked using Fedora Silverblue.\r\n\r\nAlso interested in getting tools on non-NixOS systems via nix packages.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A7','A2','A3','','','','','','','','A8','A5','A13','','','','','','','','','','','','',NULL,'Fedora Silverblue. Toolbox.','A4','','','','','','','','','','','','','','','','','','','','','','','A15','A1','A5','','','','','','','','','','','','','','','','','','','A15','A5','','','','','','','','','','','','','','','','','','','','','','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1424,'1980-01-01 00:00:00',5,'en','1688665655','A3','A2','-oth-','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Needed a declarative GNU/Linux distribution, so I migrated from Arch Linux to NixOS. All the other aspects of Nix such as reproducibility, functional language, came as a plus that today I use including for development, infrastructure as code, etc.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A2','A1','A9','','','','','','','','A3','A8','A12','','','','','','','','','','','','',NULL,'GNU Guix?','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','A2','A19','','','','','','','','','','','','','','','','','','A15','A1','A19','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','Needed a fully declarative by design GNU/Linux distribution (migrated from Arch Linux to NixOS) with many packages available.','Y','','','','','','','declarative','package availability','easy to extend/change configuration','- better support for usage in professional settings: continuous deployment for example.\r\n- a standard reproducible store, making Nix and Guix compatible','GNU Guix System','','','','Y','Y','','','','','','xmonad','home-manager\r\nnix-init\r\nnil\r\nemacs-overlay\r\ndream2nix\r\nrust-overlay\r\nnaersk\r\nnix-cargo-integration\r\nflake-parts\r\nnix-overlay-guix\r\nsops-nix\r\ngpt4all-nix\r\nrednix\r\nhydra-check\r\ncachix\r\nnix-index\r\nnix-tree\r\nmanix\r\nnickel\r\nalejandra\r\nnixfmt\r\nnixpkgs-fmt\r\nstatix\r\nnix-tour','',''),(1425,'1980-01-01 00:00:00',5,'en','478109098','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I read the paper of Eelco and found the concept interesting. Then I did interviews for a company (in 2016) during which we talked about Nix, which motived me to do the real jump into it. Since then I\'ve been using Nixos daily on my computaters, both personnal and for work.','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A7','A1','A10','','','','','','','','','','','','','','','','','','','','','','',NULL,'Archlinux','A4','','','','','','','','','','','','','','','','','','','','','','','A11','A4','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Most of the things I want are already in Nixpkgs','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','','','','','','Atomic update','Rollbacks','Infrastructure as code','','Archlinux','Y','','','','','','','','','','i3','','',''),(1426,NULL,1,'en','249280105','A2','A4','male','','','','','','','','','','','Y','Y','','','','Y','','Y','','','','Y','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1427,'1980-01-01 00:00:00',5,'en','1924032069','A4','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A10','A1','','','','','','','','A8','A13','A5','','','','','','','','','','','','',NULL,'Nothing good','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A15','A1','','','','','','','','','','','','','','','','','','','A2','A1','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','Y',NULL,'Began using a Mac laptop primarily ','Different job',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Home-manager','',''),(1428,'1980-01-01 00:00:00',5,'en','1695188594','A2','A4','male','','','','','','Y','','Y','','','Y','','','Y','','','','Y','','','','','','Y','','','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Read some article on reddit about NixOS iirc and found it to be amazing to quickly switch hardware (which I do way too often) and to deploy development instances. Nowadays everything including my dot files are optimized for NixOS.','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','Y','','A10','A7','A1','','','','','','','','A13','A3','A14','','','','','','','','','','','','',NULL,'Gentoo, Arch, FreeBSD with Ports','A2','','','','Y','','','','','','','','','','','','','Y','','','Y','','','A2','A1','A15','A10','A13','','','','','','','','','','','','','','','','','A1','A10','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','','','','','','','','','','','','','','','','','','','Home manager','',''),(1429,'1980-01-01 00:00:00',5,'en','387077465','A2','A6','male','','','','','','','Y','Y','','Y','Y','','','','','Y','','Y','','','','','','','','','','Y','Y','','RSX-11M','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started using Nix when I first started installing NixOS','','','','','','','Y','Y','','','','','','Y','Y','','Y','','Y','','A2','A1','A3','','','','','','','','A14','A8','A9','','','','','','','','','','','','',NULL,'I would probably be using pacman in an Arch-based distro','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A5','A2','A11','A17','A24','A23','A25','','','','','','','','','','','','','','','A5','A2','A11','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I still don\'t feel that I understand the process well enough yet','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','The idea of declarative configuration was intriguing. I installed NixOS in a VM to try it out and liked it. I switched my home desktop and laptop to Nix from Manjaro after some packages in Manjaro got badly broken for the Nth time. NixOS has been one of, if not the most stable distro I have ever run at home. I won\'t deny there aren\'t times when I struggle to get some things to work, usually through a lack of understanding of the different filesystem structure and read-only Nix store. I am learning all the time although the documentation can be hard to follow sometimes.','Y','','Y','','','','','Rock solid stability','Declarative configuration','Availability of packages','I would add more learning resources to help with learning to administer NixOS.','Probably Arch or an Arch-based distro','Y','','','','','','','','Y','','','Home-Manager\r\nSnowflake Lib','','Thank you for developing an exciting and stable Linux OS that I enjoy learning about every day. Those \'Aha!\' moments when something that seemed incomprehensible suddenly makes sense are priceless.'),(1430,'1980-01-01 00:00:00',5,'en','1057830863','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','General productivity','A1','Discovered the nix package manager through social media.','','','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A10','','','','','','','','A8','A9','','','','','','','','','','','','','',NULL,'Probably flatpak','A7','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','General productivity','A1','Started exploring NixOS after discovering the nix package manager. The declarative model with built in rollback intrigued me.','Y','','','','','','','The declarative build system. The system feels really sturdy since I can easily rollback to a previous derivation. Can also quickly try out different system configurations worry free.','Package availability from nixPkgs','','Add clarity around nix flakes and thorough documentation around flakes.','','Y','','','','','','','Y','','','Hyprland','','',''),(1431,'1980-01-01 00:00:00',5,'en','1713471303','A5','A5','male','','','','','','','Y','Y','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was attracted to the rollback functionality of NixOS compared to Gentoo. I was also interested in the sound technical design.','','','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A1','A7','A2','','','','','','','','A12','A9','A10','','','','','','','','','','','','',NULL,'Maybe I would try Guix?','A2','','','','','Y','','','','','','','','','','','','','Y','Y','','','','A25','A13','A1','A5','A2','','','','','','','','','','','','','','','','','A5','A1','','','','','','','','','','','','','','','','','','','','','','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Its atomic rollbacks were a huge improvement over Gentoo. Its support for sharing declarative configurations across machines was attractive.','Y','','','Y','','','','declarative system configurations','atomic rollbacks','incremental updates','','Gentoo','Y','Y','','','','','','','Y','','','niv, nvd, nixd, lorri, nom, nixpkgs-fmt','nom','Thanks for all the great work on nix/nixpkgs/nixos!'),(1432,'1980-01-01 00:00:00',5,'en','1535442834','A1','A3','male','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','','','','N','N','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','To be honest, I loved chris titus video on it. And wanted a challenge. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None',''),(1433,'1980-01-01 00:00:00',5,'en','1950087179','A5','A3','male','','','Y','','','Y','Y','Y','','Y','Y','Y','','','','','','Y','','','','','','Y','','Y','Y','Y','','Y','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','Needed drivers in a newer kernel than NixOS shipped with at the time (shipped 5.15, needed 5.16), now that 23.05 is out I\'m going to give it another try.','','','','','','','Y','No network access so I wasn\'t able to do anything, same issue I mentiond the kernel for above.','','','','','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I needed a newer kernel than NixOS shipped with at the time, because of that I was not able to get network access with the distro. My laptop doesn\'t have an ethernet port, so if the wifi drivers don\'t work at the box I just can\'t use it.','I\'m going to try it now that a new version has released, to see if my issue was fixed and if I can finally give it a try.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','Nix package manager on Fedora just felt clunky to use. It doesn\'t integrate into the GNOME Software store at all, and I much prefer to have a graphical environment when doing my daily stuff. Terminal for me is when I want to start tinkering around, not when I\'m just trying to get something done.',''),(1434,'1980-01-01 00:00:00',5,'en','1988166985','A8','A6','male','','','','','','','Y','','Y','Y','Y','','','','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','Work, but local machines','A3','Love the philosophy and approach.','Y','','','','','','Y','Y','','','','Y','','Y','Y','','Y','','','','A2','A1','A10','','','','','','','','A14','A7','A6','','','','','','','','','','','','',NULL,'no real idea...','A2','','','','','','Y','','','','','','','','','','','Y','','','','','','A15','A2','A8','A14','A9','A22','','','','','','','','','','','','','','','','A15','A8','A25','','','','','','','','','','','','','','','','','','','Y','','','My own configuration overrides. ','A1','','There appears to be too many ways to create / structure packages, or even configure them / override them. The documentation, while improved, still leaves me confused - as a user of nixpkgs, as a potential contributor, as a nix user. Then add flakes on top and the confusing messaging, etc.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Discovered it via articles by Susan Potter...','Y','','Y','','','Y','','Reproducible systems.','Safe roll forward and reverting.','Package availability','I would make security features and value much more obvious and evident. Being able to use the Linux security features very easily without breaking packages (which would mean they may have to be fixed to be security conscious).','Ansible, RHEL (enterprise), - depressing - I would seek something like NixOS...','Y','','','','','Y','','','','','i3, if graphical','none come to mind','Flakes - feels like a hard switch','Right now nix/nixOS is not palatable to peers and I watch them try to implement immutable and other features - it\'s rather painful. What is more painful is the approachability of nix & nixOS. It is a real shame.'),(1435,NULL,1,'en','1250320641','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1436,'1980-01-01 00:00:00',5,'en','1800906415','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','Y','Y','','','','Y','Y','','Y','','','','A3','A2','A1','','','','','','','','A8','A4','A9','','','','','','','','','','','','',NULL,'Conda, docker, podman','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A11','A2','A6','','','','','','','','','','','','','','','','','','','A11','A6','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','Y','','','','Declarative and reproducible configuration.','','','','Ubuntu','Y','Y','','','','','','','Y','','','','Lorri, manix',''),(1437,'1980-01-01 00:00:00',5,'en','1884765956','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Coming from Debian on the server and Arch on the client, I heard about nix and guix here and there and then started to investigate nix when I created a development environment for a new team. Nix clicked immediately for me when I started to play around with nix shell and later nix develop.','Y','Y','','','','','Y','','','Y','','','','','Y','','Y','Y','Y','','A1','A2','A3','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'Makefiles with dependency checks to ensure that the local development environment is set up properly.','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','skaffold + Argo Workflows','A1','A9','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','I started with nix alongside ArchLinux. At the end of last year, I decided to replace a Debian server with a kubernetes cluster on NixOS and just this weekend I migrated my main laptop to NixOS, too.','Y','','','Y','','','','declaritive configuration','huge package repository','configuration as code','I\'d like to see NixOS container/docker story develop more.','Client: Arch, Server: Kubernetes + Alpine Containers','Y','','','','','','','','Y','','','','','Great work, thank you for the big effort! I\'m really happy about how easy it is to get a package merged and to contribute to Nix. This is actually the thing that I value most about Nix - ease of contribution!'),(1438,'1980-01-01 00:00:00',5,'en','619863575','A1','A2','-oth-','Non-binary','','Y','','','Y','Y','','','Y','Y','','Y','','','','Y','Y','','','','Y','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was looking into a solution to automate server provisioning and discovered NixOS.','Y','Y','','Y','Y','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A7','A2','A3','','','','','','','','A14','A9','A8','','','','','','','','','','','','',NULL,'Docker and a stable Linux distribution like Debian, Ubuntu, SUSE, or RHEL','A7','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','A1','A13','A15','A22','A4','A3','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','','Y','','','-oth-','I contribute to documentation in the Nix ecosystem',NULL,'N','Y',NULL,'I need non free software and making them work is too much of a hassle for me.','Better solution to run software that assumes FHS. Something like what VanillaOS is doing.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix.dev, devenv, home-manager, flake-utils','','Among us'),(1439,NULL,1,'en','933557826','A5','A3','male','','','','','','Y','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1440,'1980-01-01 00:00:00',5,'en','1705507295','A2','A3','male','','','','','','','Y','','','Y','Y','','Y','Y','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I have tried many Linux distributions (Ubuntu, Linux Mint, Debian, Linux Mint Debian Edition, OpenSUSE, Chakra, SolydXK, Raspbian, CentOS and much more… before NixOS)\r\n\r\nIn 2016, i wanted a solution to keep my configuration files, so i created my dotfiles repository\r\n\r\nSoon, i started to have scripts that install everything when i use a new distributions\r\n\r\nBut the scripts didn’t work well depending on the distributions (apt VS rpm, packages named differently depending on the repository, packages not available …)\r\n\r\nThen, in 2017, i discovered the reproductability of Docker\r\n\r\nIn 2018, i tried to put everything in a container… i failed, it was not really usuable\r\n\r\nLater, still in 2018, a friend showed me a magical setup that installs everything needed when entering in a folder (with DirEnv + Nix)\r\n\r\nI thought it was done by the distribution, so i installed NixOS 17.09, and struggled for weeks to get a minimum viable distribution\r\n\r\nThen i used Home Manager to handle packages separatly from the system\r\n\r\nA few years later, i used this Home Manager configuration with Ubuntu at work, then with Mac OS X at work\r\n\r\nA couple of years later, i started using Nix Darwin to better handle the Mac OS X configuration (that i still dislike with it)\r\n\r\nSince then, i have introduced a few colleagues and friends to DirEnv and Nix\r\n\r\nFor several years now, i used to practice Katas in a Dojo, and i hate waiting to have an installation that is only half working and absolutly not reproductible ; so i created a few starters to have a simple setup for many languages\r\n\r\nNow, when i start working on any project, i first add the configuration for Nix Flake and DirEnv','Y','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'bunch of bad scripts and containers to try to have some reproductibility','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A1','A2','A15','A25','','','','','','','','','','','','','','','','','','A2','A25','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I made a PR, which took more than 6 months to merge, a colleague boosted it several times, otherwise I would have given up ; with time, I moved on to other things\r\n\r\nI don\'t want to corner people if there\'s a problem and I\'m not available ; i don\'t want to feel uncomfortable because i could make an effort to be available but i don\'t have the energy right now','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','the story is the same as it is for Nix','Y','','Y','','','','','atomic environment / build / version / derivation','configuration as code','rollback system','when i introduce Nix / NixOS, i always say :\r\n> don\'t reproduce my mistakes:\r\n> 1. start Nixifying a few projects\r\n> 2. then use Home Manager\r\n> 3. then, if you\'ve understood the advantages and constraints: try using NixOS; you can look at my repo and ask your questions.\r\n\r\nthe last step is often too important :\r\n* there\'s little documentation for many tools and a large ecosystem\r\n* there are lots of blogs and forums explaining how to do the same thing, but they don\'t say the same thing or do it the same way\r\n\r\nit\'s really confusing for my nooby friends\r\n\r\nso i would say : simplify the documentation','probably a Linux distribution with many :\r\n* bad scripts\r\n* waste of time\r\n* sadness\r\n* containers','','','','','','Y','pushnix','','Y','','','Home Manager','i tried to many stuff that i don\'t remember','Thanks for bringing us Nix'),(1441,'1980-01-01 00:00:00',5,'en','1884739837','A5','A5','male','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted a better way to manage packages, particularly to be able to roll back to previous system states reliably. Over time I\'ve experimented with using nix to manage development environments, but personally I don\'t think it\'s ready for prime time in that respect. I know a lot of people use it for that purpose, and I do too, but I\'ve experimented with teaching other people in my various organizations and there is a steep learning curve that is not worth climbing. I spent some time using Hydra as a distributed build tool, but I found the code for Hydra to be unstable and I regularly ran into problems with it so I gave it up even though I think it has a lot of potential.\r\n\r\nAs a general rule, I find the nix ecosystem to be that way: steep learning curve (the nix language is weird), major changes appearing somewhat out of nowhere if you\'re not plugged in and following things (e.g., flakes), uneven documentation. I wish you guys would improve that!','','Y','','Y','Y','','Y','Y','','','','','','Y','Y','','','','','','A1','A3','A4','','','','','','','','A13','A5','A9','','','','','','','','','','','','',NULL,'I work mainly in scala, and the sbt build tool + maven binary distribution mechanism works fairly well for my software development purposes. I work largely in Ubuntu and apt is OK, not great. Guix is interesting, but (a) I dislike scheme syntax, and (b) it might not exist if nix didn\'t exist (😃). I think in the absence of nix I\'d fall back on using containers a lot more and throwing them out to \"roll back\", or something along those lines.','A1','','','','Y','Y','','','','','','','','','I didn\'t know about 99% of these','Y','','','','','','','GoCD','A11','A2','A25','','','','','','','','','','','','','','','','','','','A11','A5','A2','','','','','','','','','','','','','','','','','','','','','','I don\'t','A1','','I don\'t have the slightest idea how to even begin doing that. I wouldn\'t know where to find the documentation, and in general nix documentation is so uneven I have little confidence the documentation would help me understand how to do it. I also find several members of the nix community fairly condescending and offputting, so I wouldn\'t be inclined to ask for help.','N','Y',NULL,'I\'ve used NixOS in containers in the past, and that worked well for me. However, I don\'t have much need for it now.\r\n\r\nUsing NixOS as my daily operating system is just feels too painful to me. I think the nix language is weird. It\'s also kind of slow. The documentation is uneven, and the community members can be condescending. ','- Extensive, excellent documentation\r\n- Helpful, available community members who are not condescending\r\n- Some kind of wrapper around nix that allows you to write declarations without using that language',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None I can think of','I used \"nox\" as a way to more easily find and manage packages. I stopped using it because at some point it stopped working.','I\'ve said it a few times in the survey, but I\'d like to reiterate: I think there are high-profile members of the nix development community who are a real impediment to adoption. I\'m basing that on my own experience, obviously, but it is worth thinking about. After two or three negative experiences on e.g. github issues where a well-known nix developer more or less says something can\'t be done, or is the \"wrong way\" to do something, or you just have to persist and learn it better, and I leave. I don\'t have time for that. Please, eradicate the phrase \"the nix way\" from your community, and convince people to stop saying things like \"we can\'t do X/add feature X/whatever because that\'s not the nix way\". This isn\'t a religion or a cult, it\'s a piece of software. You really ought to listen to your users and bend \"the nix way\" into what they want and need, and not try to bend potential users into some sort of shape where nix seems intuitive. '),(1442,'1980-01-01 00:00:00',5,'en','366890587','A2','A5','male','','','','','','','','','','','','','','','','','Y','Y','','','Y','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','To only makes configuration one time, no more.\r\nNo brain upgrade, rollback\r\nAnd : minimalist os, service and user isolation in order to limiting surface attack for vps.','','','','','','none','Y','Y','','Y','','','','','Y','','Y','','','','A1','A2','A7','','','','','','','','A5','A6','A4','','','','','','','','','','','','',NULL,'Archlinux','A4','','','','','','','','','','','','','','','Y','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Learning Nix language and good documentation ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','Atomic update ','Remote build','Minimalist os with easy service isolation ','Add : IoT, arm...','Archlinux ','Y','','','','Y','','','','','','budgie','','',''),(1443,'1980-01-01 00:00:00',5,'en','698670668','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','Y','','Y','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A14','A6','A8','','','','','','','','','','','','',NULL,'Arch Linux','A7','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','Y','Y','','','','','','','','','','Y','','','Y','','','','','','','bspwm','','',''),(1444,'1980-01-01 00:00:00',5,'en','1233046259','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A2','A13','','','','','','','','','','','','',NULL,'Probably something like ansible with whatever OS to get a kind of reproducible environment.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','A13','A2','','','','','','','','','','','','','','','','','','A13','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I already have but it can take too much time. + the auto-updating bot is doing a better than me to keep packages up-to-date.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','For getting a reproducible env.','Y','','Y','','','','','Reproducibility','Ease of deployment','Easy rollbacks','The nix-channel, nix flake are way superior','Fedora Silverblue I guess','Y','','','','Y','','','','','','xmonad','','',''),(1445,'1980-01-01 00:00:00',5,'en','1291994438','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','A friend talks very highly of it and I am curious person','Y','','','','','','Y','','','','','','','Y','Y','','Y','','','','A11','A1','A2','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A2','A12','A19','A23','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','The documentation is lacking tutorials and I don’t understand the example packages I find','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I liked home-manager and I wanted to try something different for my personal laptop','Y','','','','','','','','','','','Ubuntu','Y','','','','','','','Y','','','','home-manager','',''),(1446,'1980-01-01 00:00:00',5,'en','129508814','A5','A3','male','','','','','','','Y','','','','','','','Y','','','','','','','','','','','','Y','','Y','','','Solaris','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Reproducible Linux VMs was the original intention.\r\n\r\nNix later became a solution for CI, flake repositories, deployment pipelines, licensing auditing, and now considering security testing + audits.','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','A2','A10','A7','','','','','','','','','','','','','','','','','','','','','','',NULL,'Spack, or recreate nix.','A4','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A3','A15','A2','A4','','','','','','','','','','','','','','','','','','A24','A23','A22','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','The lack of tools used for testing nixos-modules and option combinations.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Reproducible VMs.','Y','Y','Y','Y','','','','','','','Nixos options should be able to be referenced, when creating new modules.\r\n\r\nExample:\r\n\r\nservices.tty.(submodule tty).option\r\n\r\nWhen creating a new option, if my module is dependent upon services.tty.*.\r\n\r\nThen instead of redefining the options, I should be able to reference submodule.tty \r\n\r\nFurther more, there should be the ability to have modules create multiple services.\r\n\r\nFor example:\r\n\r\nCurrently you may only run 1 SSH server, but what if I need more than 1?','Emacs.','Y','','','Y','','','','Y','','','I3','nix-index\r\n\r\nNaesrk\r\n\r\nComma','NixOps\r\n','Thank you'),(1447,'1980-01-01 00:00:00',5,'en','1324578894','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was tired of hearing some dude speaking of nix every day','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A10','A1','','','','','','','','A8','A3','A6','','','','','','','','','','','','',NULL,'guix lmao','A4','','','','Y','Y','','','','','','','Y','','','','','Y','','Y','','','','A15','A2','A1','A3','A4','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','Y','Y','','','','','','','','','','','','','Y','','','','','','sway','secrets managers','non-flake nixos\r\nnixops\r\nall the language specific weird unmaintained stuff for packages','you should be better at diversity in the nix events, it\'s often 99% of white people'),(1448,'1980-01-01 00:00:00',5,'en','633644075','A2','A2','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A3','','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I don\'t know where to start','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(1449,'1980-01-01 00:00:00',5,'en','684612542','A5','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','Y','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','','A2','A10','A1','','','','','','','','A8','A6','','','','','','','','','','','','','',NULL,'FreeBSD, wouldn\'t use Linux at all.','A7','','','','Y','Y','','','','','','','Y','','','','','Y','','','','','','A9','A15','A17','A22','A1','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A2','','I have before, but mostly lack of free time. I have a lot of other side projects. Also contribute to FreeBSD pkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I loved the idea of having my entire desktop/server in a single configuration.nix file, as someone that does a lot of configuration management at work this made sense to me.','Y','Y','Y','Y','','','','','','','Better docs.','FreeBSD','','','','','Y','','','','','','sway','','','Love you all!'),(1450,'1980-01-01 00:00:00',5,'en','448166095','A2','A4','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Heard about it from Linux Unplugged podcast','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A7','A2','','','','','','','','A5','A6','','','','','','','','','','','','','',NULL,'Ansible, Debian, Flatpaks','A4','','','','','','','','','','','','','','','','','','','','','','','A15','A2','A25','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Haven\'t had the time to learn about making a derivation and connected stuff','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Heard in Linux Unplugged podcast, and integration of Nix in Debian was imperfect','Y','','Y','','','','','Declarative configuration','Verified configuration deployment','Reliability','','Debian + Ansible + Flatpaks','Y','','','','','','','','Y','','','devenv','','As user of only NixOS (not Nix by itself) it was unclear the separation between the nix and the nixos part'),(1451,'1980-01-01 00:00:00',5,'en','1212531501','A2','A3','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','I like to distro hop and have been using arch derivations for the last few years. After hearing about NixOS and the fundamentals of how it operates I decided to give it a go as I like to tinker and atomic updates along with transferable reproducible builds was very interesting and useful to me','','Y','','','Y','','Y','Y','','','','','','','','','Y','Y','','','A7','A2','A9','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'Arch or arch derivation','A4','','','','','','','','','','','','','','None','','','','','','','','None','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','None currently','A1','','Knowledge and skill','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','I like to distro hop and have been using arch derivations for the last few years. After hearing about NixOS and the fundamentals of how it operates I decided to give it a go as I like to tinker and atomic updates along with transferable reproducible builds was very interesting and useful to me','Y','','Y','','','','','Atomic updates and rollback','Reproducible builds through the config.nix','Rebuild testing','GUI or CLI config.nix generator. Just for an example config that I can reference. The docs are mediocre at best and sometimes finding how to do a particular thing is very difficult. If I could select an option (add package and set these settings for this package) and see a resulting output, this would give a great starting point for further research/learning ','Arch or arch derivative','Y','','','','','','','','Y','','','None yet','None yet','Absolutely brilliant OS and extremely well put together. The ideas and the vision is focused enough to provide a versatile and stable Linux dristro'),(1452,'1980-01-01 00:00:00',5,'en','341337817','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The functional nature of the package manager intrigued me','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','','Y','','A2','A5','A6','','','','','','','','A4','A5','','','','','','','','','','','','','',NULL,'Void or Arch','A4','','','','Y','Y','','','','','','','','','','','','','','','','','builds.sr.ht','A24','A15','A13','A9','A25','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I do occasionally contribute, but time is a constraint, and I also feel as if I don\'t have the judgment necessary to approve PR\'s','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I regularly re-install my OS, NixOS made that much easier','Y','','Y','Y','','Y','','Infrastructure as Code','Cross platform builds / pi support','Extensibility','Better error messages','Arch or Void','Y','','','','Y','','','','','','Sway','','NixOps','Thank you for all your hard work, nix & NixOS are some of the best tools I have ever used '),(1453,'1980-01-01 00:00:00',5,'en','847932815','A2','A4','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','Standard config vs flake, only one user desktop don\'t need to over complicate things, module or not...','','','','','','','','','','','Y','Nix language is way too complexe for configuration, please abstract it with something more easy to start','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Playing with it in a vm, never installed on my main devive','Better start resource with minimal exemple on how to configure standard things',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I love nix and nixos, just first step to enter in the game is too hard '),(1454,'1980-01-01 00:00:00',5,'en','329514546','A1','A2','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Solves pain points with packaging, non-reproducible build and dev environments, and dirty Dockerfiles.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A3','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'Docker, guix','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A3','A2','A1','','','','','','','','','','','','','','','','','','A1','A9','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','It solved a lot of pain points with other distributions, eg. non-reproducible systems, configuration files being in multiple places, etc.','Y','','Y','','','','','All system configuration in a single place.','Reproducibility.','','Make nixpkgs / nixos modules more consistent, eg. style/conventions. Also extensive documentation.','guix, Debian','Y','','','','','','','','','','sway','home-manager\r\nimpermanence','',''),(1455,'1980-01-01 00:00:00',5,'en','1789540954','A2','A5','male','','','','','','','','','','','','','','','','','Y','Y','','Y','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Reading about inmutable systems.','Y','Y','','','','','Y','','','','','','','Y','Y','','','','','','A1','A2','A3','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A2','A23','A15','','','','','','','','','','','','','','','','','','A9','A15','A23','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1456,'1980-01-01 00:00:00',5,'en','249378331','A5','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','',' Wireless networking consultant','Y','Y','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','My company uses a proprietary VPN application called Aruba VIA that is only available in .deb or .rpm, the documentation for doing this in Nix/NixOS was not very intuitive','','','','','','','','','','','Y','Fedora worked with my company\'s VPN client binary, also NixOS would not associate to a wpa3-enterprise (AES CCMP128) ESSID out of the box where Fedora 38 (and Debian 12) did','','','','','','','','Y','','','','','Easier integration of binary-only packages created for other distributions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'My company uses a proprietary VPN application called Aruba VIA that is only available in .deb or .rpm, the documentation for doing this in Nix/NixOS was not very intuitive\r\n','Easier integration of binary-only packages created for other distributions\r\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Solving the third party / distribution binary support with an easier / automated solution would make me try Nix/NixOS again'),(1457,NULL,2,'en','1850753855','A5','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','Between Jobs','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Heard about nix many years ago while still new to linux and was scared of it, then promptly forgot. Now with a little more experience I heard someone raving about having their home setup decoratively and painless dev environments I was very interested and dove in. Now I have 2 computers running nixos and am working towards a configuration for my server. I\'m excited to get that running, then see what we decide to nixify next! (probably try building containers with nix, that sounds so nice)','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A10','A8','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'Probably Fedora Silverblue','A1','','','','Y','Y','','Y','','','','','','Y','','','','','','Y','','','','A1','A2','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Too new to the community yet, still learning the ins and outs of the nix language. But I have been lurking around nixpkgs, getting a feel for the workflow. Contributions will come with time :)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1458,'1980-01-01 00:00:00',5,'en','1005163749','A5','','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was looking for improved installation/configuration across personal devices after lots of problems over the years maintaining a stable Linux configuration and keeping particular applications working.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A10','A2','','','','','','','','A5','A6','A4','','','','','','','','','','','','',NULL,'Guix, more bare-bones Linux Distro like TinyCore or Alpine','A4','','','','','','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'ve found it hard enough to modify/build Nixpkgs that I just fall back to using another package manager rather than taking the time to learn it properly.','N','Y',NULL,'I have a laptop that was 7 or 8 years old at the time and the boot time for NixOS was significantly slower than my Arch setup and I found it so hard to manage things like npm package configurations I gave up.','Some combination of everything settling in to make it a better combined experience.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'I use Holochain and Holo who went all-in on using Nix and done so very successfully for both development environments and as servers deployed with NixOS.','','Even for people like me who only use Nix essentially as a consumer, when a particular dev team focusses on it, it works very well and is invaluable for the applications and development environments I use it for.'),(1459,NULL,1,'en','1060602513','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1460,'1980-01-01 00:00:00',5,'en','67877317','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','','','','','','Y','Y','','Y','','','','Y','Y','','Y','Y','','','A8','A7','A2','','','','','','','','A14','A5','A9','','','','','','','','','','','','',NULL,'Debian','A4','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','Y','','','','','','','','','Y','','','','','','','','Y','Y','','','',''),(1461,'1980-01-01 00:00:00',5,'en','48566306','A8','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','','','Y','','Y','','','Y','','','','','','','Y','Y','','Y','','','','A6','A3','A7','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'Arch','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A17','A15','A5','A3','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','nothing','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','Y','','','','','','','','Declarative flatpaks built-in','Arch','Y','','','','','','','Y','','','','','',''),(1462,'1980-01-01 00:00:00',5,'en','237487568','A5','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Homebrew\'s binary distribution was broken when JCenter closed their service at 2021. I originally switched to nix to use it only as a \"working\" package manager on macOS.','Y','Y','','','','','Y','Y','','','','','','Y','','','Y','','','','A2','A1','A9','','','','','','','','A14','A8','A1','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A3','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Lack of learning resources on best practices on packaging software and extending nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Declarative configuration management','Atomic deployment and rollback','Throw-away environments enabled by `nix shell`','A clear guideline on how NixOS modules should behave','There\'s no other choice other than NixOS! :D','Y','','','','','','','','Y','','','homemanager','',''),(1463,NULL,NULL,'en','632515948',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1464,'1980-01-01 00:00:00',5,'en','1851805351','A5','A6','male','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y','','','','N','N','Y','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1465,'1980-01-01 00:00:00',5,'en','598769807','A1','A2','male','','Y','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I hate homebrew, which is slow and not quite reliable. What\'s interesting is that I happened to be a researcher in programming language theory, and the pure nature of nix language, as well as the idea of mapping the whole state of operating systems into a derivation attracted me. As a result, I started managing software packages on MacOS and Archlinux with Nix package manager.','Y','Y','','Y','Y','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A13','A8','A1','','','','','','','','','','','','',NULL,'docker','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','N','Buying a new PC -- nothing more, as I\'m familiar with the nix ecosystem. I\'ve just thrown away the old PC with Archlinux.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Flakes.','Projects related to managing JavaScript dependencies with Nix. They\'re unusable as most Node.js libraries assume you\'re using either NPM or Yarn.','A better UI for search.nixos.org please!! It\'s 2023 and no one should be using Bootstrap 2 now!\r\nAlso, please consider adding type hints and doc strings into the nix language. This can alleviate the need of documentation and plays an important role in optimizing developers\' experience in programming in the nix language.'),(1466,'1980-01-01 00:00:00',5,'en','193796575','A2','A6','male','','','','','','','','','','Y','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I tried every linux distribution, after I tried nixos I didn\'t try another one.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','Y','','','A2','A10','A1','','','','','','','','A14','A4','A8','','','','','','','','','','','','',NULL,'ubuntu','A1','','','','Y','Y','','Y','','','','','Y','','','','','','','Y','','','','A1','A17','A15','','','','','','','','','','','','','','','','','','','A15','A1','A17','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','Declarative configuration','Reproducible builds','Atomic upgrades and immutability','I would delete the flakes dependency on git, the need to git add something to use flakes. I don\'t understand why this is a must ???','ubuntu ?','Y','Y','','','','','','','Y','','','','',''),(1467,'1980-01-01 00:00:00',5,'en','2141388962','A1','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I use docker to manage my daily dev env, which is kinda heavy I think.\r\nOne day, my workmate told me about Nix, which is really good at managing a declaretive and deterministic env, so I start using Nix everyday.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A6','A14','','','','','','','','','','','','',NULL,'Maybe docker for both dev and prod env.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','','','','','','','','','','','','','','','','','','','','A4','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I think I haven\'t mastering writing packages using Nix.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was using Ubuntu for daily work when I just start working. But there are always things like library version conflicts, can\'t boot after upgrading. \r\nOne day, one of my workmates told me about NixOS and Guix, then after some investigating(it\'s hard at the start, the official document didn\'t give me a top-level view of Nix and NixOS), NixOS became my favorite OS.\r\nI use NixOS for daily work and my personal working OS(even on my selfhosted services server).','Y','','Y','','','','','Deterministic and declaretiv building.','Always able to rollback.','Easy to extend/reuse when managing multiple computers.','Adds:\r\n1. A official secrets management tool.\r\n2. Better NixOps for deploy selfhosted services.','I would use Arch for work and use docker for service deployments.','Y','Y','','','','','','','','','i3, hyperland','None','None',''),(1468,'1980-01-01 00:00:00',5,'en','515717302','A1','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','Someone post a video about NixOS, and I want to try that','','Y','','Y','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A6','','','','','','','','A8','A14','A13','','','','','','','','','','','','',NULL,'podman, docker, flatpak, snap, appimage','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A15','A4','A5','','','','','','','','','','','','','','','','','','','','Y','','','A1','','need to learn Nix language','N','Y',NULL,'not followed the Filesystem Hierarchy Standard','the amount of nixpkgs is more than AUR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1469,NULL,3,'en','2087733907','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1470,'1980-01-01 00:00:00',5,'en','1818446425','A5','A3','male','','','','','','','Y','','','Y','Y','','Y','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Building and deploying Haskell code','Y','Y','','','','','Y','','','Y','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'many tears','A6','','','','Y','','','','','','','','','','','','','','Y','Y','','','','A13','A1','A22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Laziness','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Needed to deploy servers. Found NixOps thought it sounded interesting. So I tired it out. ','','','','Y','','','','Declarative configuration','','','Types in Nix','','','Y','','','Y','','','','','','','','',''),(1471,'1980-01-01 00:00:00',5,'en','450787758','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','','Y','','Y','Y','','','','A1','A2','A7','','','','','','','','A6','A9','A14','','','','','','','','','','','','',NULL,'','A4','','','','','Y','','','','','','','','','','','','','','','','','','A2','A7','A9','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1472,'1980-01-01 00:00:00',5,'en','1262410603','A5','A3','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A7','A1','','','','','','','','A12','A4','A11','','','','','','','','','','','','',NULL,'DNF or APT','A4','','','','','','','','','','','','','','Only `nix repl`','','','','','','','','','A15','A14','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Time','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A5','','Y','','','','','','','Good ZFS support','Declarative, centralized whole-system configuration','Boot into an old generation if needed','I would\r\n1. add the content-addressed or intensional store;\r\n2. fix #11908 (don\'t run systemd services as root unnecessarily) and #20186 (apply systemd sandboxing options, see also, e.g., #208780, #208751, #238222); and\r\n3. add more maintainers, especially for the hardened kernel and hardened profile.','maybe Fedora, Debian, or Qubes','Y','','','','','','','','','','i3wm','I don\'t think there are any.','I don\'t think there are any.',''),(1473,'1980-01-01 00:00:00',5,'en','434808196','A2','A4','male','','Y','','','','','Y','','','','Y','','','','','Y','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Came across it in the process of learning Haskell (the recursive rabbit hole method of discovery).','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A8','A4','A5','','','','','','','','','','','','',NULL,'Some kind of mish-mash of other things: bazel for builds?, homebrew for my personal machine config?, cargo, cabal, poetry, etc. etc.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A15','A2','A8','A1','A3','A4','','','','','','','','','','','','','','','A15','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I don\'t believe I\'m at a level of understanding or competency where I can help much.','Y',NULL,NULL,NULL,NULL,'','','Y','','','A1','I wanted a linux environment on my Mac, and ideally a declarative one. NixOS would be the ideal answer. I managed to cobble together a NixOS VM on MacOS, which is (almost) exactly what I want – this really could have been easier (and there\'s so much effort towards it - hat-tip to Gabriella Gonzalez)','Y','','Y','','','','','Declarative system','Declarative packages','Managing about 90% of a system without worrying about state','An easy way to (declaratively) configure drive volumes on a NixOS VM. This seems to be the missing piece from having a single .nix file to declare an entire VM that could be deployed / spun up on *any* compatible hardware.','Probably Ubuntu. Maybe PopOS (heard good things about it)','','','','','','','','','','','','nix-darwin','','Keep up the great work, please!'),(1474,'1980-01-01 00:00:00',5,'en','283224423','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','','','summoned by getchoo','Y','','','','','','N','N','','','Y','Y','proper instructions for people with no braincells',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Making it easier for those that don\'t understand big technical terms or non advanced users',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None (currently, because of the former questions)','None (currently, because of the former questions)','I came here because a friend is really into nix, and I would get into nix if I had more than the brain capacity of a walnut'),(1475,'1980-01-01 00:00:00',5,'en','940983777','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','doom-emacs (https://github.com/doomemacs/doomemacs) got me interested in reproducible systems, and the only two options were either Nix… or GNU Guix… yeah… ','','','','','','N/A','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A3','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'i guess GNU/Guix… 😔','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A4','A3','A5','','','','','','','','','','','','','','','','','','A15','A10','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','lazyness :<','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','ditto as for nix (saw doom-emacs and liked it)','Y','','Y','','','','','a lot of packages that are super reliable','customization','generations and rollback','kde configs 🥺','gnu guix… 😔','Y','','','','','','','','Y','','','n/a','n/a','trans rights'),(1476,'1980-01-01 00:00:00',5,'en','735513201','A6','A2','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','N','','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I was only trying to see and test things out. I wouldnt say I stopped using it. Its more of I\'m considering it less now. But its a good thing to be honest. I fell in love with Nix and Im thinking of using it directly in my own system(ArcoLinux Arch based distro). \r\n\r\nOne of the things was the lack of a software centre. I understand Nix and NixOS run on configuration but its easy for me to click and install and not have to learn Nix before using the OS itself. ','Having a Software centre removes a lot of friction from trying out new tools or the OS. It\'s a little overwhelming to learn Nix all at once before I can start installing and using NixOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Love Nix I want to try more of it. Nix-shell is just freaking cool. I always try a bunch of software, installing everything and trying them but forgetting to uninstall or abandoned files filling up the storage is a mess. Nix-shell solves all of that for me.'),(1477,NULL,1,'en','846503868','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(1478,NULL,1,'en','349648564','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1479,'1980-01-01 00:00:00',5,'en','798139302','A2','A4','male','','','','','','Y','Y','Y','','','','','','Y','','','','Y','','','','','','','','Y','','','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','Since Nix does not work on Windows you can\'t use it in bigger projects','','','Y','','','','','','','','Y','','','','','','','','','','','','cross platform support',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A5','As apt was the answer to LFS, Nix is the answer to apt/etc-managament: type safe configuration using NixOS option system with purely functional package management.','Y','Y','Y','Y','','','','Reproducibility','Nix language with lazy evaluation','The typed option system for configurations','Add cross platform support so nix can be used in Windows and also add nix support in package managers as it is done for haskell.','Gentoo and Docker (or containers in general)','Y','Y','','','','Y','','','Y','Y','','Package/Option search on nixos.org, nixcloud-webservices (I\'m the author)','- the internal mailserver: we created nixcloud.email\r\n- the cert management: we created nixcloud.tls\r\n- the webservice abstraction: we created nixcloud-webservices\r\n\r\nto name a few','Hope to see you succeed.'),(1480,'1980-01-01 00:00:00',5,'en','1833315368','A2','A3','male','','','Y','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','NixOS seemed like an interesting concept, and a friend recommended it for homelab use','','Y','','','','','','Y','','','','','','','','','Y','','','','A1','A7','A8','','','','','','','','','','','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A1','','So far all my needs have been met by others\' contributions','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Friend recommended it for homelab use','','','Y','','','','','Declarative configuration','Easy rollbacks in case of problems','Helpful and informative error messages','','CentOS or RHEL or Ubuntu probably','Y','','','','','','','','','','','','','Keep up the good work, you\'re all lovely people!'),(1481,'1980-01-01 00:00:00',5,'en','1858238415','A2','A2','male','','','','','','Y','','','','','','','','Y','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','to make my laptop configurable via a centralized organized cnfiguration ','','Y','','','Y','','Y','','Y','','','','','','Y','Y','Y','Y','','','A3','A1','A7','','','','','','','','A4','A5','A3','','','','','','','','','','','','',NULL,'probably justfiles','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A1','A25','','','','','','','','','','','','','','','','','','','A5','A1','A25','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','unclear what to contribute. Small number of \"good first issue\", unclear where to ask questions regarding the process. Little information about packaging best-practices.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','one configuration for my laptop that \"just works\"','Y','','','','','','','Atomic Updates/Rollbacks','Declarative unified nix-based Configuration','Easy setup \"from scratch\". ','Add:\r\n- standardized way to organize code into reusable and composable files in a folder structure\r\n- \"official\" opinionated Templates to get started \r\n\r\n\r\n\r\n','something Arch-based like Manjaro, possibly Ansible','Y','','','','','','','','Y','','','flake-parts, nix2container, nurl, nix-output-monitor','',''),(1482,NULL,1,'en','94056249','A1','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1483,'1980-01-01 00:00:00',5,'en','1191339556','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I already answered the same last year: I was tired of having to use different package managers for everything, searched the internet for the package manager to rule them all, found Nix, fell in love, installed NixOS, fell in love and never came back. Now, everybody around me talks about Nix or even uses Nix, but at the time, I had never heard of it.','','','','','','','Y','','Y','','','','','Y','Y','Y','Y','','Y','','A2','A1','A9','','','','','','','','A9','A8','A4','','','','','','','','','','','','',NULL,'Then I would use Guix XD\r\nI guess the question really meant: If Functional Package Management did not exist, what would you use instead?\r\nThen, I would use opam for OCaml package management, pip and venv for Python package and environment management, etc. and my life would not be as fun.','A1','','','','','','','','','','','','','','','','','Y','','Y','','','','A14','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I had already started using Nix and I liked it a lot. I also had never found a Linux distribution that I was satisfied with (at the time, I was on Fedora, after having getting annoyed with Ubuntu and not having managed to install ArchLinux). Installing NixOS went smoothly even if it was in 2016, without the graphical installer, and that my previous attempt at installing a distribution without a graphical installer had failed (said otherwise, the installation documentation was already pretty good). I discovered that this was the Linux distribution I had been looking for all along, never came back.','Y','Y','','','','','','Declarative configuration.','Atomic updates and rollbacks.','Package availability (nixpkgs).','Snap support? But not very important, because I would use it mostly for testing Snaps that I distribute to other people rather than for myself. I guess I should just use a VM more often.','Then, I would use GuixSD XD. But if that\'s not an option either, I suppose I would use Debian or ArchLinux as a Linux distribution.','','','','','','Y','','','','','i3','Coq Nix Toolbox (but I\'m the co-maintainer of it).','cached-nix-shell (lately I can just stand the small delays when running nix-shell).',''),(1484,'1980-01-01 00:00:00',5,'en','1782285186','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Don\'t remember how it came on my radar. Liked the \"infrastructure as code\" concept.','','','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A13','A3','A15','','','','','','','','','','','','',NULL,'Depends on the task. Most prob containers+ansible','A7','','','','Y','Y','','','','','','','Y','','','Y','','','','Y','','','','A15','A4','A2','A3','A1','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','Absence of a vision for the project, and clear management. What does nixpkgs trying to achieve? Is a server os? A desktop os? An academic experiment? Something that should be comfortably be used in actual production? If the answer \"yes\" to all of that, then we have a problem. nixpkgs looks like a collection of psychopathic patches on top of each other, where people just shove the problem to one another, and everyone doing their own thing. At this point I\'d rather extend nixpkgs locally via flake exported modules then trying to contribute back upstream, cause no one knows where this upstream is going','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','Y','Y','','','','Infrastructure as code','Reproducible builds','Development environments (that are same as prod)','I wish nixos would focus on servers. I think this might become a very nice tool to easily manage complex software infra deployed on complex hardware infra reproducibly.','ansible+podman','Y','','','','','Y','','','','','sway','flake-util lanzaboote fenix naersk','home-manager',''),(1485,'1980-01-01 00:00:00',5,'en','1111402504','A2','A6','male','','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','I\'ve been using Ubuntu since 2010 and have become frustrated with snaps and docker images. Several podcasts I listen to said good things about NixOS set up most of my environment in a VM and after getting that working installed it on my laptop (my only PC).','','','','','','','Y','','','','','','','','Y','Y','Y','','','home-manager','A1','A2','A3','','','','','','','','A5','','','','','','','','','','','','','','',NULL,'Probably stick with Ubuntu, maybe try guix.','A4','','','','','','','','','','','','','','','','','','','','','','','A25','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I\'ve been using Ubuntu since 2010 and have become frustrated with snaps and docker images. Several podcasts I listen to said good things about NixOS set up most of my environment in a VM and after getting that working installed it on my laptop (my only PC).','Y','','','','','','','Application isolation','Declarative configuration','','Make the nix language easier to get started with.','Stick with Ubuntu, maybe try guix.','Y','','','','','','','Y','','','','home-manager','',''),(1486,'1980-01-01 00:00:00',5,'en','793110938','','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A1','A7','','','','','','','','A8','A10','A6','','','','','','','','','','','','',NULL,'Something like SuSE MicroOS, i.e. Linux distribution with atomic updates and easy roll-backs','A4','','','','Y','Y','','','','','','','','','','Y','','Y','','Y','','','','A2','A20','A1','A9','A3','','','','','','','','','','','','','','','','','A2','A1','A20','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Absence of clear coding style rules and previous experiences when my coding style was outright rejected for arbitrary reasons.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Long story short, it was a combination of CFEngine, bash scripts and Debian in production.','Y','Y','Y','Y','','','','Declarative configuration that can\'t be (easily) altered on a running system, and that all manual changes will be lost upon reboot (erase your darlings).','Easy rollbacks, especially when remote hands involved.','Flakes.','Make flakes mainstream.','Probably, Ubuntu or Fedora on desktop, and Suse MicroOS or similar in production.','Y','','','','','Y','','Y','','','','Home manager, Devshell.','NixOps.','Thank you for all work on Nix and NixOS!'),(1487,'1980-01-01 00:00:00',5,'en','1120913004','A3','A3','male','','','','Y','','','Y','Y','','Y','Y','','','','','','','Y','','','','','Y','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I found the distro on Distrowatch and the concept of having the whole system configured from a file was really interesting.','','Y','','Y','Y','Android','Y','Y','','','Y','','','','Y','Y','Y','','Y','','A10','A1','A2','','','','','','','','A4','A3','A6','','','','','','','','','','','','',NULL,'Chezmoi for dotfiles and whatever package manager ships with the distro I would use','A2','Y','','Y','Y','Y','','','','','','','','Y','','Y','','','','Y','','','','A15','A9','A1','','','','','','','','','','','','','','','','','','','A22','A9','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','Y','','','','','','','','Y','','','','','','','','Y','','','','',''),(1488,'1980-01-01 00:00:00',5,'en','2007238443','A2','A3','male','','Y','','','','','','','Y','','','','','','','','','Y','','','Y','','','','','Y','','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','It came with NixOS.','','','','','','','Y','Y','Y','','','Y','','','Y','','Y','','','','A2','A10','A1','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'The distro\'s iterative package manager.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Nothing.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','I liked the idea of declaring my system\'s configuration in a set of files and not having to maintain an iterative system state.','Y','Y','Y','','','Y','','Declarative system configuration.','Helpful community.','Great package availability.','Stabilize flakes and make secrets first-class citizens. Add exhaustive documentation and consolidate deployment tools.\r\n\r\nReplace Nix with Lisp. ','GNU Guix or OpenBSD.','Y','','','Y','','','','','Y','','','sops-nix, home-manager','','Keep up the good work.'),(1489,'1980-01-01 00:00:00',5,'en','334065176','A5','A4','male','','Y','','','','','','','','','','','','','','Y','','Y','','','Y','Y','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','My development environments kept breaking and I wanted something reproducible. I also wanted to be able to test a new alternative and revert back to my original state if it didn\'t work out. One of the main areas where I had an issue with this was around docker/podman/nerdctl ','','Y','','','Y','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A3','A1','','','','','','','','A14','A5','A15','','','','','','','','','','','','',NULL,'I was thinking of using silverblue + snapshots or something like that. ','A4','','','','Y','','','','','','','','','','','','','','Y','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I am a beginner and I really don\'t have a full grasp on how Nix really works. I don\'t feel qualified / know the \"best practices\". Hopefully as I learn more, I\'ll be able to get there.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','My develop environment kept breaking when I was using debian - I was switching between docker/podman/nerdctl and was having issues with them stepping on each other. I also was running out of disk space as I would install all these build tools and then they would remain on my system even when I switched to something else. The final straw was when the dockerfile I was building (which uses cuda) was causing my system to run out of disk space and something got corrupted and I had to restart my dev environment from scratch. That\'s when I started to look for an alternative where I could have a declarative environment and if things broke, I could just recreate it.','Y','','Y','','','','','Declarative syntax to reproduce environment','Ability to test a new package and swap back while keeping the minimal system installed (ie post garbage collect) so that I don\'t keep adding unwanted dependencies to my system and eventually having it break','CUDA / Nvidia drivers : Nix can do a better job with this, but I was able to get it running','1. NVIDIA drivers: Make it clear what one has to do to install nvidia drivers in compute mode (ie without a GUI). \r\nTo add nvidia drivers, you have to do `services.xserver.videoDrivers = [\"nvidia\"];`. This made it feel like I had to install X11, but I didn\'t want to do that. That lead me down the rabbit hole of the cuda-maintainers-cache which was more than a year old. I ended up using the xserver.videoDrivers out of desperation, but then realized that it didn\'t actually install x11, which is what I wanted from the beginning\r\n\r\n2. Nerdctl - I switched to podman for nixos, but I use nerdctl / kaniko by default. There doesn\'t seem to be a nerdctl package and installing it doesn\'t seem straightforward as none of the expected files exist where they should be\r\n\r\n3. making flakes route the default. It just makes sense to maintain nix config in a git repo that is checked out in the user directory somewhere instead of /etc. Having home manager and splitting the files also makes sense. I\'m still new and playing around, but this seems like the way to go.','maybe silverblue + ansible start script? I prefer debian, but there wasn\'t an immutable option for that.','Y','','','','','','home manager, flakes','','Y','','headless / no gui','flakes, home manager','','This is a really great project and I appreciate the hard work everyone has put in. It truly appears to be a game-changing solution for development for me!'),(1490,'1980-01-01 00:00:00',5,'en','744175933','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','Y','','','','','','','','','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I didn’t test it just because I didn’t take time ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1491,'1980-01-01 00:00:00',5,'en','909725691','A1','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A3','A1','A6','','','','','','','','A9','A5','A6','','','','','','','','','','','','',NULL,'guix','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A17','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','Y',NULL,'Experimental features like nix-command and flakes are still experimental, poor documentation for it.\r\nHard to find how to use nix to manage system configurations, no idea on how to convert previous \'normal\' configurations into nix style.','Richer documentation like archwiki.\r\nMore mature features set.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','There should be rss or mailing list for announcements'),(1492,NULL,1,'en','1886534434','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1493,'1980-01-01 00:00:00',5,'en','2084113247','A3','A3','male','','','Y','','','Y','Y','','','','','','','','','Y','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend told me about it. I had a lot of pain trying to build C++ projects in my first job, so it looked great to me. Unfortunately I struggled a lot to learn it. Now I work in a company that uses Nix for its dependency management and feel quite fluent.','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A2','A5','A10','','','','','','','','A14','A8','A3','','','','','','','','','','','','',NULL,'Guix? If that wasn\'t available I would just cry on the corner','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A3','A14','','','','','','','','','','','','','','','','','','A15','A2','A3','','','','','','','','','','','','','','','','','','','','Y','','','A2','','It seems like too much effort... I prefer things to be permission-less and decentralized like flakes','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','First I used just Nix. After I learned more about it at work I got the courage to switch to NixOS','Y','','Y','Y','Y','','','Version-controlling the system configuration','Sharing configurations between multiple devices','Making it easy to undo changes to the system','I would add better documentation, also allow flakes to reference other local flakes','Guix or Ubuntu if it wasn\'t available','Y','','','','','','','Y','','','','','',''),(1494,NULL,NULL,'en','957489635',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1495,'1980-01-01 00:00:00',5,'en','899021604','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My boss had shown me the Nix language and then the Nix shell, and I\'ve got rid of all my Docker images that week.','','Y','','Y','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A3','A1','A10','','','','','','','','A4','A5','','','','','','','','','','','','','',NULL,'Docker and Debian','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A1','A15','A13','A8','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A2','','Where do I start?','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Arch wasn\'t cool anymore','Y','','Y','Y','','','','Reproducibility','Ease of installation','It\'s cool','I\'d make all the docs describe \"how to do a thing\" instead of \"how this component functions\".','Debian','','','','','','Y','','','','','xmonad','home-manager','','Thank you too!'),(1496,NULL,2,'en','1786953642','A3','A3','male','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A2','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A2','A3','A10','','','','','','','','A3','A13','A14','','','','','','','','','','','','',NULL,'','A1','','','','','Y','','','','','','','','','','','','','','','','','Internal tool','A2','A15','A3','A4','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1497,'1980-01-01 00:00:00',5,'en','40180923','A3','A3','male','','','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I\'m a fan of functional programming and was thrilled by Nix declarative reproducible approach as someone who teamed Linux systems for some time.','','','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A10','','','','','','','','A4','A5','A13','','','','','','','','','','','','',NULL,'Arch Linux, AUR, Homeshick, Dockerfile','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A15','A1','A2','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I don\'t find many packages missing.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','Reproducible configuration','Sharing config between machines','Rollbacks','I would add native support for secrets and make evaluation faster.','Arch Linux','Y','','','','','','','','','','i3','nix-direnv\r\nnixos-wsl\r\nnil','lorri',''),(1498,NULL,NULL,'en','2135533798',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1499,'1980-01-01 00:00:00',5,'en','73020549','A5','A3','male','','','Y','Y','','Y','','','','','Y','','','','','Y','Y','Y','','Y','','Y','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Reproducible dev + server environments with nix-shell, then later nixos.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A2','A3','A7','','','','','','','','A6','A4','A7','','','','','','','','','','','','',NULL,'','A7','','','','','Y','','','','','','','','','','','','','','','','','custom','A2','A15','A3','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','','','','','','','','','','','','','Y','','','','','xmonad','https://gitlab.com/deltaex/schematic/','',''),(1501,'1980-01-01 00:00:00',5,'en','55992684','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I started to use Nix straight with NixOS. I never used Nix before NixOS.','','','','','','','Y','Y','','Y','','Y','','','Y','Y','Y','','','','A7','A2','A1','','','','','','','','A3','A9','A8','','','','','','','','','','','','',NULL,'Guix','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A3','A25','','','','','','','','','','','','','','','','','','','A13','A15','A1','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','In 2018 I needed to manage development and deployment of Linux software at work. But typical package managers were not focused on easy and reliability and reproducibility. I was already a functional programming devotee, so Nix ideas were easy to understand. Ironically, my first Nix & NixOS experience happened on Raspberry Pi and NanoPi Neo2, what made it harder for a newcomer, but not so much. At work I had two interns (students), who received tasks from me and managed to do most of the packaging work (they knew nothing about Nix before).','Y','','Y','Y','','Y','','Declarative deterministic configuration. All configuration is written in a single language as a whole piece. Git perfectly manages NixOS configuration files (especially compared to other distributions).','Deterministic deployments and updates (although, runtime updates have a bit lower determinism).','Systemd integration with lots of ready to use services (NixOS modules).','Add more services and applications.\r\nAdd interactive editors for configuration, which would take into account current configuration and xdg settings.\r\nAdd mature reliable ways to run unpackaged software or add packaging tool, which does packing in a semi-automatic way.\r\nImprove declarative monitors configuration (current best option is to use `xrandr`).\r\nRemove NixOS channels.\r\nAs for `nix-env` - let is save the changes it does into nix files. It might be useful for newcomers. Otherwise, `nix-env` sometimes makes more confusion by being incompatible with declarative configuration in many ways.','Guix System (GuixSD)','Y','','','','','Y','','','','','xmonad','Home Manager using Nix','','Let\'s make Nix closer to mainstream.'),(1502,'1980-01-01 00:00:00',5,'en','1190637241','A2','A5','male','','','','Y','Y','','','','','','','','','','Y','','','Y','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Got involved at Berlin C-Base.','','Y','','','Y','','Y','Y','','','','Y','Raspberry Pi','','','','','','','Desktop','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'Debian/Ubuntu','A4','','','','','','','Y','','','','','','','','','','','','','','','None','A14','A2','A3','','','','','','','','','','','','','','','','','','','A14','A2','A3','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Lack of time','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Got involved at Berlin C-Base','Y','','','','','','','','','','','Debian/Ubuntu','','','','','','','','Y','','','','','','Keep on the good package manager.'),(1503,'1980-01-01 00:00:00',5,'en','988352749','A2','A4','male','','','Y','','Y','Y','Y','','','Y','Y','Y','','Y','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','Because Hackage listed NixOS under \"Distributions\"','','','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','','Y','','A11','A7','A10','','','','','','','','A8','A1','A7','','','','','','','','','','','','',NULL,'','A2','','Y','Y','Y','Y','Y','Y','','','Y','','','','','Y','','','','','','','','A15','A13','A23','A3','A25','A2','A4','A10','','','','','','','','','','','','','','A5','A6','','','','','','','','','','','','','','','','','','','','','','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','Well, again because it showed up on Hackage - I immediately live-migrated all my machines to NixOS before even playing around with Nix on some other distro.','Y','Y','Y','Y','Y','Y','','The NixOS module system','Comes with all the nice Nix features included ;-)','','My biggest gripe is that networking.firewall.enable is true by default, it should be false ;-)','That\'s hard to say, since I do pretty much everything with Nix and NixOS for so long that it\'s hard to imagine going back to the stone age, err... other distros :-D','Y','Y','','','Y','Y','','','Y','','Hyprland an Wayland and i3 on Xorg','','',''),(1504,NULL,1,'en','1801384428','A5','A5','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1505,NULL,2,'en','1379092155','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','','','Y','','','','','','','','','','Y','','','','A1','A2','','','','','','','','','A14','A8','','','','','','','','','','','','','',NULL,'Arch and arch based Distrobutions','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Time and General Competence. The latter being most important. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1506,'1980-01-01 00:00:00',5,'en','1397477766','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','Y','','','','','','Y','Y','Y','','','','','A2','A1','A11','','','','','','','','A9','A2','A15','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A9','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A1','','hard to get stuff reviewed + committed, have to bug people repeatedly','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','','','','','','Y','krops','','','','notion','','',''),(1507,'1980-01-01 00:00:00',5,'en','116950840','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I got annoyed with how configuration of system utilities and services worked on Linux and started looking for alternatives. Nixos seemed perfect, it makes all the arcaich configuration solutions in /etc a breeze to navigate through. Then i discovered how great nix is to manage my personal projects. ','Y','Y','','Y','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A8','A5','A3','','','','','','','','','','','','',NULL,'I\'d live in a cabin in the woods without internet, on a more serious note, gui but that doesn\'t count as it is forked from nixos so probably just flatpak and different dumb build systems for each task','A2','','','','Y','','','','','','','','','','','','','','','Y','','','','A17','A4','A13','A3','A15','','','','','','','','','','','','','','','','','A17','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time, i want to','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Kinda explained this in the last one about nix.','Y','','','','','','','Managing /etc','Rollbacks','Software availability','Better documentation for different pieces of software and their quirks when paired with nixos. Flakes to stable. ','Open suse. ','Y','','','','','','','','','','Hyprland gaaaaang (desktop portals on nixos are confusing as hell)','Home manager, should probably be part of nixos by now.','Comma. When nix shell exists i see little reason to use comma','Thank you so much for making an amazing operating system and package manager. I cannot state enough how great this is. Something like a voluntary subscription/payment for using nixos/nix whould be appreciated. I\'d pay any day of the week for this. '),(1508,NULL,2,'en','1808882980','A1','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I start using Nix ','','Y','','','Y','','Y','','','Y','Y','','','Y','Y','Y','Y','Y','','','A1','A2','A3','','','','','','','','A3','A8','A9','','','','','','','','','','','','',NULL,'There\'s a twin project called Guix, which works just like Nix. Considering the fact that it builds on top of the store-only Nix, it probably won\'t be available if Nix didn\'t exists.\r\n\r\nIf Nix (and Guix) didn\'t exist, I\'ll continue to use Debian (and therefore apt), trying to stick to the stable channel with updates to avoid breakage, and use Flatpak and Appimage for new versions of projects. I\'ll have to build CERN ROOT (the statistical framework I use daily) manually, which is a pity.\r\n\r\nFor package availability, I might also try Conda.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A4','A3','A2','','','','','','','','','','','','','','','','','','','A2','A1','A9','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1509,'1980-01-01 00:00:00',5,'en','50627500','A2','A6','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Interest ','','','','','','','Y','','','','','','','Y','','','','','','','A1','A3','A7','','','','','','','','A8','A9','','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','','Hyprland, Sway','','',''),(1510,'1980-01-01 00:00:00',5,'en','648244428','A2','A4','male','','','','','','','','','','Y','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I had a lot of positive feedback, and as a programmer, the idea of a declarative OS configuration is amazing.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A14','A5','A6','','','','','','','','','','','','',NULL,'ArchLinux','A2','','','','','','','','','','','','','','','','','Y','','','','','','A1','A24','A19','','','','','','','','','','','','','','','','','','','A1','A24','A13','','','','','','','','','','','','','','','','','','','','','','','A2','','I’m not good enough','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I had a lot of positive feedback and the idea of configuring my system declaratively is amazing','Y','','Y','','','','','configuration.nix','generations','dir-env integration','','ArchLinux','Y','','','','','','','Y','','','','','',''),(1511,'1980-01-01 00:00:00',5,'en','898381300','A2','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','As a way to declare my system.','Y','Y','','','','','Y','Y','','','','','','','','','Y','','','','A1','A2','A9','','','','','','','','A6','A8','A12','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A15','A9','A4','A3','A23','A24','A22','A10','','','','','','','','','','','','','A15','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Sway','','','Keep up the great work!\r\n\r\nThank you!'),(1512,'1980-01-01 00:00:00',5,'en','461014991','A2','A4','male','','','','','','','','','','','','','','','','','Y','Y','','','','','','','','','','Y','Y','','','N','N','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','i got tired of installing linux to each of laptop and trying to make the same environment happen, only to realize that there are small differences, regardless of what i do, due to distribution changes.','Y','','Y','','','','','most of the device configuration comes from config files','','','i think better documentation, to make everyone understand what your configuration.nix is for, and how the pacakge.nix files differ, and if you need to patch a package how to do it.','probably a bunch of docker images with directories config directory for each image.','Y','','','','','','','','','','sway','agenix','dont have any','you guys are doing awesome, thank you and keep up the good work!'),(1513,'1980-01-01 00:00:00',5,'en','257855373','A2','A7','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','N','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','failure of other Linux OS on my machine, which has happened and Im in the process to change over.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none','none','keep it going!'),(1514,NULL,2,'en','648017270','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducibility and the possibility to share config between machines easily','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A3','A7','A10','','','','','','','','A2','A6','A12','','','','','','','','','','','','',NULL,'Guix ;⁠-⁠) or Debian or Arch Linux','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A13','A17','A15','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Almost everything I need is already in there. Other than that the pr backlog is so big that it doesn\'t give me a lot of confidence that my work will be merged.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1515,'1980-01-01 00:00:00',5,'en','2078114802','A2','A3','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I have worked in crypto a long time and one of the early pieces of smart contract tooling I used (dapptools) was developed with Haskell and Nix. I began to deep dive Haskell initially and saw that Nix was a solution to a lot of the package management issues contained there. I eventually abandoned learning Haskell but was very intrigued with Nix and began using it as a daily OS. Currently on my 3rd rewrite of my system configs 4 years later! ','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A4','A8','A12','','','','','','','','','','','','',NULL,'As a developer, just suffer the usage of non-declarative imperative toolchains on Arch/Ubuntu','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','A25','A13','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Not much, just haven\'t enough time. Want to get involved more however','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same as previous answer in the Nix section','Y','Y','Y','','','','','System and user configurations are all declaratively defined','Vm\'s out of the box are useful','','Usage of imperative-like behaviour. `nix profile` and `nix-env` are counter-intuitive, everything should be declared in a file. \r\nWould also be useful to improve tooling to have configuration sources show as type hints in ides but there are obviously limitations. \r\nAdvanced-level, production configs would be useful to advertise to improve nix-fu and share production level system-management techniques. Xe Iaso\'s blogs as an example ','Arch/Ubuntu','Y','','','Y','','','','','','','I3 or hyprland','flake-parts is neat although confusing to grok initially. Would be useful if a more transparent solution was found','flake-utils-plus, just is redundant with the forAllSystems solution',''),(1516,'1980-01-01 00:00:00',5,'en','642210219','A2','A6','male','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','got tired of conflicting packages','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A4','A5','A6','','','','','','','','','','','','',NULL,'language based tools for Rust and Haskell','A4','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A13','A15','A25','','','','','','','','','','','','','','','','','','','A13','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','imposter syndrome','Y',NULL,NULL,NULL,NULL,'A1','','','','','','tired of borked upgrades with Arch linux','Y','','Y','','','','','atomic upgrades','declarative configuration','enormous up to date repository of packages','','guix linux? dunno, never looked back.','Y','','','','','','','','','','xmonad','','nixops',''),(1517,NULL,3,'en','68620664','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1518,'1980-01-01 00:00:00',5,'en','57225332','A2','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I learned that Nix could be used to declaratively configure my system. This is helpful for small projects where state is a hindrance.','','Y','','','','','Y','Y','','','','','','Y','','','Y','','Y','','A2','A1','A10','','','','','','','','A15','A6','A13','','','','','','','','','','','','','Improved reliability of packages. Nix mostly works, but there are a few packages that don\'t work out of the box and are messy to fix. I encountered this in mixed systems (Debian + Nix on top) or niche architectures (e.g., Raspberry Pi).','Virtualization and custom bash scripts to set up the system.','A4','','','','','','','','','','','','','','','','','','','','','','','A15','A1','A25','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','Y','Horrible hacks rewriting package configs','A1','','Not knowledgeable nor confident enough to work on Nix packages. (Arguably because of bad documentation?)','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','','Y','','Y','','','','','Reproducibility','Configs summarize what\'s important in the current system','','I\'d just make everything more reliable.','Virtualization.','','','','','','Y','','','','','','Home Manager.','NixOS on ARM (stopped probably because of hardware limitations).','Thanks for developing Nix!'),(1519,'1980-01-01 00:00:00',5,'en','1847735970','A5','A5','male','','','','','','','','','','','','','','','','','','','','','','','','','Software Engineering Manager','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','As a serial distro hopper, who basically re-creates the same setup on every new distro on every machine, I decided it made sense to build it once in code.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'openSUSE','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Knowledge','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Same reason I started using Nix: reproducing environments across multiple machines. Write once run anywhere.','Y','','Y','','','','','Software installation as code','Configuration as code','Defining hardware as code','Better documentation, convention over configuration','openSUSE','Y','','','','','','','','Y','','','','',''),(1520,'1980-01-01 00:00:00',5,'en','949497853','A5','A2','male','','','Y','','','Y','Y','','','','','','','','','Y','','Y','','','','Y','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I have been using Ubuntu for roughly 3 years. Ubuntu was intended to be my entry-point into Linux before I switched to a more difficult OS. For quite some time, I intended to go with Arch Linux next.\r\nI had a job where I worked primarily in Haskell and I really liked the concept of functional programming. I got a new laptop and was going to install Arch Linux on it, but upon scrolling through the linuxmasterrace subreddit, I saw a post about someone who switched from Arch to NixOS. I had never heard of NixOS before, but the idea of a functional operating system really appealed to me -- I did some research and decided to take the plunge.','','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A10','','','','','','','','A14','A13','A3','','','','','','','','','','','','',NULL,'I probably would be on Arch Linux on this laptop, with my Desktop still running Ubuntu as a backup. I still use it for work as I\'m learning to configure my NixOS laptop.','A4','','','','','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A13','A2','','','','','','','','','','','','','','','','','','','','','','','I use `pip2nix` for my python packages when the dependency tree contains many packages that aren\'t in Nixpkgs.','A2','','I\'m still learning. I would love to add new packages to Nixpkgs and maintain, but the learning curve is steep and frankly, I haven\'t done any research on how to contribute to Nixpkgs since I am worried about not knowing how to contribute properly.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I have been using Ubuntu for roughly 3 years. Ubuntu was intended to be my entry-point into Linux before I switched to a more difficult OS. For quite some time, I intended to go with Arch Linux next.\r\nI had a job where I worked primarily in Haskell and I really liked the concept of functional programming. I got a new laptop and was going to install Arch Linux on it, but upon scrolling through the linuxmasterrace subreddit, I saw a post about someone who switched from Arch to NixOS. I had never heard of NixOS before, but the idea of a functional operating system really appealed to me -- I did some research and decided to take the plunge.','Y','','','','','','','Declarative system. I love that I know what is installed on my device at any time via my `configuration.nix`. No dangling packages to worry about.','Portability. I intend to move my setup to another device, and it is very easy to do so thanks to the declarative system.','Developer environments. nix-shell + direnv makes managing development environments more seamless than I have experienced on any other device.','I would make streamlined ways to add libraries for each programming language (kind of what https://github.com/nix-community/dream2nix is attempting) to Nixpkgs, but also install libraries via pip in a declarative way that doesn\'t require tracking sha256sum, version or anything other than the package name. In theory I should be able to do something like a pip install in my shell.nix and have it only be available within that environment. It is quite a headache having to learn a bit more Nix for each environment that I want to create.','Probably Arch Linux.','Y','','','','','','','','','','i3','pip2nix. I have my own fork that allows overrides for each package.','','I love NixOS, but it\'s so hard to get into it. There should be an online lecture-style webinar series to learn the Nix language, the Nix package manager, Nixpkgs conventions, and the NixOS operating system! I think that would do wonders for Nix/NixOS adoption. It would certainly push me to contribute :)'),(1522,'1980-01-01 00:00:00',5,'en','2040402594','A2','A4','male','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was fascinated by the concept of declarative configuration of NixOS.','','Y','','Y','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A1','A9','A2','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'GNU Guix :P But, most probably, that would not exist without Nix either. I would struggle with Debian apt + flatpak probably.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A3','A20','','','','','','','','','','','','','','','','','','','A2','A20','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I cannot continuously dedicate time to became a reliable maintainer.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was fascinated by the concept of declarative system configuration of NixOS.','Y','','Y','Y','','','','Declarative system configuration','Unified configuration interface to many hardware settings, programs, services','Ability of easy rollback','Better cooperation with Home Manager (no duplicate, incompatible efforts). Establish \"the\" recommended way(s) of system Flake structuring blessed by the NixOS developer team.','Debian Stable + flatpak','Y','','','','','','','','','','sway','Home Manager','NixOps',''); -INSERT INTO `limesurvey_survey_2023` VALUES (1523,'1980-01-01 00:00:00',5,'en','2147241328','A2','A3','male','','','','','','','','','','','Y','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','','','Y','','','','','Y','','','','','','','','','','Y','','','','A1','A2','A10','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A19','A25','','','','','','','','','','','','','','','','','','A19','A2','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','Y','','','','','','','Reproducability','','','','','Y','','','','','','','','','Y','i3','','',''),(1524,'1980-01-01 00:00:00',5,'en','2113164773','A2','A5','male','','','','','','','','','Y','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Fed up with Ubuntu servers that became untouchable over time, plus interested in FP more generally','Y','Y','','','','','Y','Y','','Y','','Y','','Y','Y','Y','Y','','Y','','A2','A9','A1','','','','','','','','A8','A14','A6','','','','','','','','','','','','',NULL,'Ubuntu/debian and crappy automation I guess','A1','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A15','A2','A1','A8','A3','A13','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','Y','','Declarative system definition','Atomic rollbacks','Reproducibility','Make secrets handling easier.\r\nMake rollback easier on raspberry pi, where there is no GRUB menu.\r\nHave more automated garbage collection when disk gets full maybe?','Probably ubuntu and some crappy automation','Y','','','','','','','','','','','direnv + use flake\r\ncachix\r\nnixpkgs-fmt\r\n','various mechanisms for secrets','Nix and NixOS are totally awesome, but I have yet to try to raise awareness at work (despite having the seniority) because it took me years to understand, and I don\'t know how to explain the awesomeness to people in a simple consumable fashion.'),(1525,'1980-01-01 00:00:00',5,'en','1502020396','A3','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A3','A1','A10','','','','','','','','A5','A3','','','','','','','','','','','','','',NULL,'Arch-based distro','A4','','','','Y','','','','','','','','','','','','','','','Y','','','','A1','A2','A15','A11','','','','','','','','','','','','','','','','','','A19','A15','','','','','','','','','','','','','','','','','','','','','','','i don\'t','A1','','Better understanding of nix itself and how to pack','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','','','','Broken packages or old packages listed in search.nixos','Arch based distro','Y','','','','','','','','','','i3','','',''),(1526,'1980-01-01 00:00:00',5,'en','169432055','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Was looking for a way to easily share configurations between multiple machines. I had just picked up Haskell and everyone seemed to be using Nix so I looked into it and NixOS looked very promising so I gave it a try.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A2','A6','A3','','','','','','','','','','','','',NULL,'The standard package manager of the Linux distribution or programming language that I happen to be using.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A2','A1','A13','A15','A17','A9','','','','','','','','','','','','','','','A13','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Most of what I need is already there, and if something breaks it\'s usually fixed before I notice, sometimes I just have to wait for the branch I\'m following (nixos-unstable) to be updated.\r\n\r\nOther than that there is so much going on in the git repository that it is honestly quite intimidating, and I wouldn\'t have a clue where to start. And the pr backlog is so massive and seems to be growing that I worry if it will be worth my time or that my work will never be merged.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as why I started using Nix.','Y','','Y','','','','','Reliability: once I have verified that my system works as expected, I can always reboot that same generation and know that it works. And if my current system is broken I can always roll back to a previous generation.','Modularity + composability give me the ability to reuse and share config between many machines.','It\'s a lot of fun :⁠-⁠)','Have native support for the module system in Nix, so that my infinite recursion stack traces don\'t contain so much noise from the implementation details of the module system, which renders them mostly unusable.','Guix ;⁠-⁠) or Debian','Y','','','','','','','','','','herbstluftwm','Home Manager\r\nSops-nix\r\nImpermanence ','',''),(1527,'1980-01-01 00:00:00',5,'en','1335443359','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','I was using Arch Linux, and it broke (not that uncommon but I wasn\'t in the mood to debug and tinker that night), I needed to get work done but some update caused something to misbehave, so I decided to switch distributions, I found the idea of atomic builds to be interesting, I tried NixOS for some days, and apparently it has more than atomic builds, nix-shell is a delight for (C++) development, declarative configuration is awesome, I just liked what NixOS is or wants to be, so I switched, I like Arch Linux, but sometimes I want my system to work, I need to get work done without hours of debugging and tinkering, in NixOS stuff can break but I can always roll back when I need to use my computer :)','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A3','A9','A10','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'Guix, if Guix also didn\'t exist (since it\'s based on Nix) I\'d use Arch Linux.','A4','','','','','','','','','','','','','','','','','','','','','','','A4','A2','A3','A13','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','I don\'t know how, why, what, I don\'t know if I am competent enough, I don\'t know what type of stuff I\'ll work on, I have no idea.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','See story of using Nix, same thing. Arch breaks, me don\'t want to debug and tinker for that particular moment, decide to get rid of it.','Y','','','','','','','nix-shell','all config in one place','atomic builds','documentation','Guix or Linux Mint','','','','','','','','Y','','','','-','',''),(1528,'1980-01-01 00:00:00',5,'en','552367589','A2','A3','male','','','','','','','','','','','','','','','','Y','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','I\'m tired of installation problems ah work, I want something REPRODUCTIBLE.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'Nothing seems to ne like Nix','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'m too new','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','When I started using Nix, I swaped from Arch to NixOS','Y','','','','','','','Declarative configuration','','','Exhaustive/up to date documentation','Arch','Y','','','','','','','','','','hyprland','','','The documentation is the main issue, I am not always sure I can trust everything from it'),(1529,'1980-01-01 00:00:00',5,'en','2048258678','A8','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','cybersecurity','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','Y','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A6','A2','','','','','','','','A9','A3','A14','','','','','','','','','','','','',NULL,'Spack is probably the next best thing?','A7','','','','Y','Y','Y','','','','','','','','','','','','','Y','','','','A1','A3','A9','','','','','','','','','','','','','','','','','','','A5','A8','A6','','','','','','','','','','','','','','','','','','','','','Y','Upstream first','A3','',NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'devenv','nixops',''),(1530,NULL,NULL,'en','723417370',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1531,NULL,1,'en','778353160','A1','A1','fem','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1532,'1980-01-01 00:00:00',5,'en','980356625','A1','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','On macOS, I used to use Homebrew at first. But some programs installed by brew had some problems. For example, tmux can\'t change the prefix key. Also, brew is slow. Next, I used macports but it is slow too because it would compile every package on your computer. At final, I gave Nix a try. However, I used nix-env -i to install programs at that time. So the experience was a little bad. Few days ago, I reinstalled macOS then installed Nix and nix-darwin. This time, despite the bug in nix-darwin(the bug doesn\'t affect daily use, but it print a log saying sth wrong) , it is very great because I can have the experience the same as NixOS. ','Y','','','','','','Y','','','','','','','Y','','','Y','','','','A1','A6','A9','','','','','','','','A5','A14','A13','','','','','','','','','','','','',NULL,'On macOS, maybe give homebrew one more chance. ','A2','','','','','','','','','','','','','','Maybe none','','','','','','','','Maybe none','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','personal ability. Some programs I want to install are a little outdated so I want to make a package at first, but idk how to do that (well maybe because of laziness.)','Y',NULL,NULL,NULL,NULL,'A1','','','','For entertainment, listening to music and watching live-streaming, etc.','A1','Because I have used other normal distros(ubuntu, debian, manjaro, Arch), it seems that the mechanism of package managers in other distros is almost the same. The declarative configuration in NixOS really appeals to me. Also, learning one more skill is good, isn\'t it ? ','Y','','','','','','','Declarative Configuration','rollback','So many updated packages','I would like to add a mirror of nixpkgs in Taiwan.','archlinux','Y','','','','','','','','','','Hyprland, bspwm, dwm','nix-darwin','nix-env -i (install package) that I have tried and now stopped using it.','A better documentation would be better. Like the use of nix-darwin, flakes and home-manager. Also, the website for the option of nix\'s config is a little hard to find (well, I almost used NixOS a month, I finally found it.)'),(1533,'1980-01-01 00:00:00',5,'en','1434961636','A1','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1534,'1980-01-01 00:00:00',5,'en','1767507893','A3','A3','male','','','','','','Y','Y','','','','Y','','','Y','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','','','Y','','Y','','Y','','','','','Y','Y','Y','Y','','','nix flake','A1','A2','A3','','','','','','','','A1','A13','A8','','','','','','','','','','','','',NULL,'GUIX','A2','','','','Y','Y','','','','','','','','','','','Y','Y','','Y','','','','A11','A13','A15','A2','','','','','','','','','','','','','','','','','','A5','A11','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','','','','','','Atomic Changes','Declarative Configurations','','Support for other kernels like BSDs (FreeBSD, NetBSD, etc) and RedoxOS','GUIX','Y','','','','','','','Y','','','','- Emacs Overlay: https://github.com/nix-community/emacs-overlay/\r\n- nix-direnv: https://github.com/nix-community/nix-direnv\r\n- nix-index: https://github.com/nix-community/nix-index\r\n- vulnix: https://github.com/nix-community/vulnix','NUR: https://github.com/nix-community/NUR/',''),(1535,NULL,2,'en','365630904','A5','A3','male','','','','','','','Y','','','','','','','','Y','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend of mine started using it and kept trying to convince me to try using it. I started using nix shells for various projects while I was still on Arch. Eventually I migrated all my servers and PCs to nixos.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'A bunch of shell scripts to install and configure things in Arch Linux, then chezmoi for dotfile management.','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A9','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1536,'1980-01-01 00:00:00',5,'en','1152017181','A4','A2','-oth-','Non-binary','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','the usual story in broad strokes: I was using Arch and tried NixOS on my laptop before quickly adopting it everywhere I could. my config is 14848 lines now (9811 lines of nix, out of those)','','','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A7','A1','A2','','','','','','','','A4','A6','','','','','','','','','','','','','',NULL,'I previously used Arch with the AUR and lots of suffering. Also docker{,-compose} for servers.','A7','','','','Y','Y','','','','','','','','','I didn\'t realize there were so many features!','','','','','Y','','','','A15','A1','A4','A2','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','reproducibility','atomic rollbacks','abstraction from {systemd,packaging}-hell','Flakes. Please please fix flakes before daring to make them mandatory. There\'s a lot of restrictions, and I do weird things in my config that flakes would break. (And maybe I\'m not right to do those things, but they\'re things /I should be able to do/)\r\n\r\nhttps://github.com/ckiee/nixfiles','','Y','','Y','','','Y','','','','','i3wm','','','contact if needed: https://ckie.dev'),(1537,'1980-01-01 00:00:00',5,'en','478119444','A2','A5','-oth-','','','','','','Y','','','','','','','','','Y','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I have a blog hosted on GitHub, where an org-mode file holds the posts, they get exported and rendered with hugo.\r\nAll this within a GitHub action. For this to work in a pipeline, I had to setup emacs, and I found an action to do just that; it turned out that it used cachix!\r\nThis happened about three years ago.\r\nAround that time also, a friend of mine starting to play with Nix and NixOS, and we got hooked. I set it up on my work laptop, and used it for a few months.\r\nThen the layoffs came, and I had to return that laptop.\r\nAfter long intermission without using NixOS, about three months ago I decided to give it a try again. This time, learning about flakes, home manager, disko, stylix and whatnot. I fell in love hard, and it is my daily driver now. My only driver, actually. I have completely replaced my Arch linux setup with my NixOS flake, and couldn\'t be happier.','','Y','','','','','Y','','','','','','','','','','Y','','Y','','A2','A10','A1','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'Arch Linux + a comprehensive ansible setup (what I used before moving to NixOS).','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Kinda already did :-)','Y','','','','','','','Reproducible environments','Convenient abstraction level for describing a system','Stable-enough unstable channel, which enables rolling release-like experience (similar to Arch Linux).','With Nix flakes stabilized (declaring a wish here), I\'d love to have up-to-date documentation showing \"the flake way\".\r\nAlso, I\'d like for the wizard to support BTRFS out of the box, and possibly leverage disko as well.','Arch Linux with a comprehensive Ansible setup (what I used before).','Y','','','','','','','','','','Hyprland','Home Manager.\r\nStylix.\r\nDisko.','Well, I have moved most of my config from NixOS to Home Manager, leaving on NixOS only what Home Manager cannot manage and/or provide. I\'m quite happy with it.','GNU/Linux has been my daily driver since \'95. Nix and NixOS are a true FP rennaissance for the Linux ecosystem. So happy to be able to be part of this community.'),(1538,NULL,2,'en','1508845520','A2','A3','-oth-','nonbinary','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I started working at a company with a lot of Nix users. They sent me a laptop without an OS installed, so I decided to just take the plunge and go all-in on NixOS.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'Whatever was available, but I wouldn’t be happy about it.','A2','','Y','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','A7','A2','','','','','','','','','','','','','','','','','','A2','A15','A9','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Haven’t needed to yet, but open to doing it when I do.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1539,'1980-01-01 00:00:00',5,'en','1257483287','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Reproducible environments!','','Y','','','','','Y','','Y','','','','','','Y','Y','Y','','','','A1','A3','A10','','','','','','','','A4','A8','A6','','','','','','','','','','','','',NULL,'???','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A2','A1','','','','','','','','','','','','','','','','','','','A2','A1','A13','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Bit complicated.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','To force myself to use nix more.','Y','Y','','','','','','Community Configs for various laptops','Declarative system definition ','Easy way to configure system','Way easier to see what opts can be configured ','Ubuntuq','Y','','','','','','','','','','Xmonad','stacklock2nix\r\nFlake-utils\r\n','Npm to nix things\r\nPoetry2nix\r\nJupyenv',''),(1540,'1980-01-01 00:00:00',5,'en','1630326753','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A2','A10','A4','','','','','','','','A3','A2','A7','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A20','A1','A5','','','','','','','','','','','','','','','','','','','A20','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','Y','','','','','sway','clj-nix\r\ngomod2nix\r\ndevenv','flake.parts\r\ndrv-parts\r\n',''),(1541,'1980-01-01 00:00:00',5,'en','110362617','A2','A4','male','','','','','','','Y','','','Y','Y','','','','','Y','','Y','','Y','','Y','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A6','','','','','','','','A14','A8','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A1','A13','','','','','','','','','','','','','','','','','','','A1','A13','A2','','','','','','','','','','','','','','','','','','','','Y','','','A1','','learning resources + docs as a step-by-step guide to do stuff correctly','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','custom development environments','nix packages collection','feeling that I could do anything if I find the right documentation','I\'d remove all docs which are incomplete, outdated or not best practices','arch or ubuntu','','','','','','','','','Y','','i3/sway','devenv, home-manager','',''),(1542,'1980-01-01 00:00:00',5,'en','1934956604','A2','','','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','home-manager allowed me to replicate the same dev environment between 2 laptops\r\nThere were some quirks integrating home-manger and arch, after a year of using home-manager I\'ve decided to go full OS setup with NixOS','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A10','A7','','','','','','','','A4','A14','','','','','','','','','','','','','',NULL,'I\'ve used stow to replicate dotfiles between machines.\r\nI would probably try Ansible to have some way to replicate my setup between laptops.\r\nAlso would probably use Terraform to configure my home server.','A2','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Lack of knowledge. Simple apps are already packaged, the complex ones require more understanding of Nix and the app build details.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I\'ve been using home-manager with Arch Linux and loved the experience.\r\nBut there were some problems integrating home-manager with Arch and I decided to switch to NixOS','Y','','Y','','','','','version control of system packages and configurations using a single language','ability to rollback to the previous working state','ability to make big system changes by changing a single boolean flag in the configuration file','a simple way to freeze the channels definition to a specific version, something simpler than flakes','maybe ansible','Y','Y','','','','','','','','','xterm with i3wm','cachix','',''),(1543,'1980-01-01 00:00:00',5,'en','1001743055','A7','A5','male','','','','','','','','','Y','','Y','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I\'ve bought into the promise and the design of Nix since I first discovered it on (was it Slashdot!?) more than a decade ago. \r\n\r\nI could not switch to a source distribution at the time, and my local mirrors (here in South Africa) were Debian and RedHat heavy. So I stuck with Debian. \r\n\r\nThis year I our dev team grew a bit and the inconsistencies between environments got to me. We have embedded C++ toolchains, Clojure, all the frontend tooling (NPM, storybook, etc). Developing on OSX and running CI on Linux.\r\n\r\nA mess.\r\n\r\nhttps://devenv.sh was our gateway drug. One afternoon I just smacked it onto our one repo and from there we\'ve grown it out. We now run nix-darwin with consistent environments across all our Macs. With user-custom home-manager settings, all committed to the same repo. \r\n\r\nWe also wrangled all the embedded software IDEs, tools and toolchains into Nix flakes and our own binary cache. This has been a major win - to replicate that finicky environment across different Macs.\r\n\r\nA change or addition of a new tool into our environment has become smooth and obvious. \r\n\r\nIt is lovely.','Y','Y','','','','','Y','','Y','','','','','','','Y','Y','','Y','','A2','A6','A9','','','','','','','','A6','A8','A9','','','','','','','','','','','','',NULL,'We were using a set of Makefiles and bash scripting to sort of replicate our dev environments with https://github.com/Homebrew/homebrew-bundle (a Brewfile in every repository).\r\n\r\nIt was not ideal.','A6','','','','Y','Y','','','','','','','Y','','','','','Y','','','','','','A20','A4','A1','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','The packages I have is proprietary software that we unzip and rebundle into our Nix store. ','N','N','If I went away from OSX, which is not likely right now. My servers are all dumb pre-provisioned EC2 instances as part of a Cloudformation Template I bought which I Do Not Care about: https://docs.datomic.com/cloud/whatis/architecture.html#minimal-admin ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://search.nixos.org/packages','','Thank you all, for this Nix experience. \r\n\r\nThe learning curve remains steep, and it eventually makes sense.'),(1544,'1980-01-01 00:00:00',5,'en','1051174063','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Declarative machine setup','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A8','A13','A5','','','','','','','','','','','','',NULL,'GUIX :) Or Debian','A4','','','','Y','','','','','','','','','','','','','','','','','','','A1','A13','A15','A3','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Nix the language is a painful experience, and I still don\'t know how to configure the tangled soup of a nix pkg.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','Declarative machine config','NixOS exposes the config of the underlying software in a consistent(ish) fashion','','Nix-the-language','Debian, or GUIX','Y','','','','','','','','','','xmonad','','','After several years, I still can\'t abide nix-the-language. It\'s syntactically awkward, but worse, the expected semantics of any given \'thing\' are never clear - the lack of types, and lack of direct output make it feel like programming YAML.'),(1545,NULL,2,'en','632780655','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A14','A1','A12','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A4','A2','A5','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1546,NULL,NULL,'en','1951884909',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1547,NULL,1,'en','1239786521','A8','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1548,'1980-01-01 00:00:00',5,'en','1653886054','A1','A3','male','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','','','','','','','','Y','','Y','','Y','','A1','A3','A2','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'Adhoc scripts, homebrew, asdf','A1','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A2','A15','A9','','','','','','','','','','','','','','','','','','','A2','A17','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Time ','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A4','','Y','','Y','','','','','Declarative environments','Adhoc environments','Source controlled environments ','Add better documentation','Debian or Fedora ','','','','','','Y','','','','','','','',''),(1549,'1980-01-01 00:00:00',5,'en','1848001370','A2','A3','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','Y','','','','','','Y','','','','','','','Y','','','Y','','','','A1','A2','A3','','','','','','','','A9','A4','A14','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A13','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1550,'1980-01-01 00:00:00',5,'en','1177678903','A3','A3','male','','','','','','','Y','','','','Y','','','Y','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted to test what I had read about it in the context of haskell development environments and then had to take over nixops-based infrastructure in a job. Have been using it in work and personal projects ever since.','Y','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A9','','','','','','','','A2','A6','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','Y','','','','A13','A1','A25','','','','','','','','','','','','','','','','','','','A7','A24','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Have to learn better about best practices when contributing. Also the really steep learning curve it can sometime involve to properly elaborate the contribution. What if I’m missing an obvious (to maintainers/advanced users of the package I’m trying to contribute to) alternative?','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I had already used nix for software development and wanted to test NixOS. Was also interested in using home-manager.','Y','','','','','','','Declarative/reproducible configuration','Easy abstractions over system services configuration','Easy rollback changes','','Debian','','Y','','','','','','Y','','','','haskell.nix, direnv, cachix','','Great work on the survey!'),(1551,NULL,3,'en','419280421','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was intrigued by the declarative-ness and reproducibility of the system.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A11','A2','A10','','','','','','','','','','','','',NULL,'Probably a sad, home-made mix of bash and docker.','A2','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A15','A1','A9','A2','A4','A3','A13','A21','','','','','','','','','','','','','','A15','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I\'m not confident enough.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','After seeing the benefits of nix, using NixOS was the next logical step.','Y','','Y','','','','NixOS VMs in UTM on macOS','Declarative configuration ','Configuration via NixOS modules','Reproducibility ','','Ubuntu, maybe Arch ','','','','Y','','','','Y','','','','','',NULL),(1552,'1980-01-01 00:00:00',5,'en','457864542','A2','A4','male','','','','','','Y','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was using Gentoo before. I wanted the ability to build from source to be integrated into the package manager. I got tired of very long Gentoo updates. I was impressed by how well Nix was designed (reproducible builds etc.).','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A3','A7','A1','','','','','','','','A9','A2','A14','','','','','','','','','','','','',NULL,'Guix.','A4','','','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Lack of time, poor health.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same as nix.','Y','','','','','','','Versioned config of the entire system.','','','','','Y','','','','','','','','Y','','','','','I really wanted to learn nix (the language) well enough. I think the best way to do this would be through writing general purpose programs. I found it difficult to start writing general purpose programs last few times I tried (a few years back).'),(1553,'1980-01-01 00:00:00',5,'en','615966973','A2','A2','male','','','','','','','','Y','','','','','','','','','','','','','','','','','Not good at Linux, but now how to install gentoo for example:)','Y','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','Other','my main OS is Windows, so i don\'t use Linux much.','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'I only use linux when I need to, as my main system is Windows, but I can use NixOS too','Better documentation ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None',''),(1554,'1980-01-01 00:00:00',5,'en','272178265','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'ve had a separate work-machine and personal-machine that were getting difficult to synchronize (installed applications, Git configuration, Emacs configuration etc.) - NixOS came to rescue.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A7','A1','A3','','','','','','','','A4','A9','A13','','','','','','','','','','','','',NULL,'For managing servers, I\'d probably use Ansible or Terraform; I\'m not sure what I\'d use for synchronizing configurations (probably just a couple of Bash scripts, though).','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','actually sending patches to nixpkgs 😄','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','I also used to use NixOS for work, but some time ago I switched to Mac M1 for which Linux doesn\'t provide proper GPU support just yet (I\'m using nix-darwin, though)','A3','I wanted to have similar environment on work and personal machines.','Y','','Y','','','','','atomic upgrades','atomic rollbacks','ability to add extra checks and assertions to my configurations (through builtins.throw etc.)','Not sure - there are a few things I\'d change in Nix itself, though (a proper type system, faster evaluation, better docs & marketing).','Ubuntu','Y','','','','','','','','','','I used to use xfce + i5 and kde + sway','Not sure if it was mentioned or not, but: nix-darwin, naersk','NixOps (felt somewhat fragile and I was afraid the stateful approach will bit me one time)','❤️🐧'),(1555,'1980-01-01 00:00:00',5,'en','1712265168','A2','A2','male','','','','','','','Y','','','','','','','Y','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','','Y','','A2','A3','A10','','','','','','','','A2','A7','A6','','','','','','','','','','','','',NULL,'ansible, Desktpop: fedora/arch, server: debian','A4','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','garnix','A15','A2','A1','A3','','','','','','','','','','','','','','','','','','A3','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','knowledge','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','Y','Y','','','','reproducibility','configurability','modular','SELinux','ansible, fedora/arch/debian','Y','','','Y','','','','Y','','','','sops-nix, lanzaboot, disko, home-manager','agenix','Thank you for the amazing work'),(1556,'1980-01-01 00:00:00',5,'en','1291590632','A2','A4','male','','','','Y','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Started learning NixOS looking for a better interface to Linux where I can reason about things, keep config under version control.\r\nNix on other systems came later.','','Y','','Y','Y','','Y','Y','Y','Y','','','','','Y','','Y','','','','A2','A1','A10','','','','','','','','A8','A2','A14','','','','','','','','','','','','',NULL,'Ad-hoc scripts','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','AWS CodeBuild','A2','A1','A6','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same story as Nix','Y','','Y','','','','','Version control for my OS config','Modules','','Being able to run NixOS modules directly on a container','Ubuntu','Y','','','','','','','','','','i3','','',''),(1557,'1980-01-01 00:00:00',5,'en','240399270','A7','A3','male','','','Y','','','Y','Y','Y','','Y','Y','','Y','Y','','','Y','Y','','','','','','Y','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','','Journey is outlined on my personal webpage https://amz-x.com','','','','','','AWS EC2','Y','','','Y','','','','','Y','','Y','','','','A1','A3','A2','','','','','','','','A14','A3','A6','','','','','','','','','','','','',NULL,'Docker, NVM, RVM, etc.\r\nFedora if it had 1st class support for Pantheon DE ','A2','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','Looking into Gitea related solution','A1','A15','A7','A5','A6','A10','A2','','','','','','','','','','','','','','','A15','A7','A1','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Online courses, Nixpkgs structure / documentation & currently looking for work.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Journey on my webpage, https://amz-x.com','Y','','','Y','','','','Nix Flake (System Configuration)','Services & Configurations ','Nixpkgs','Better contribution guidelines\r\nImproved Hydra (linking PR to build / channel)\r\nReduced complexity','I don’t know.','Y','Y','','','','','','','','','Pantheon DE','','','I hope the information I provided was useful! '),(1558,NULL,2,'en','329241726','A2','A6','male','','','Y','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','','Partly out of curiosity, I have an interest in functional programming at that is what first drew my attention though if that was the only aspect I would not have continued to use it. Being able to build and configure systems safely with simple rollback is a big plus and being able to construct isolated development environments for separate projects and development streams is even more so.','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'Possibly back to vmware / vagrant or just a bunch of raspberry pi\'s with individual builds','A4','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A19','A2','A11','A9','A5','','','','','','','','','','','','','','','','','A2','A19','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL),(1559,'1980-01-01 00:00:00',5,'en','2084241361','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','N','N','Y','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','I quickly fell in love with the reproducibility ','Y','','Y','','','Y','','','','','','Debian','Y','','','','','Y','','','','','sway','home-manager','',''),(1560,NULL,1,'en','894592591','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1561,'1980-01-01 00:00:00',5,'en','951024103','A1','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','Y','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','Y','Y','','A2','A3','A8','','','','','','','','A8','A10','A6','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','Bitbucket Pipelines','A13','A19','A1','A11','A2','A5','A3','A4','A17','A15','A14','','','','','','','','','','','A5','A19','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','','Y','Y','Y','Y','Y','Y','','','','','','','Y','','','','','','','','','','Sway','','',''),(1562,'1980-01-01 00:00:00',5,'en','751818093','A2','A6','male','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','N','N','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','distro-hopping; nowadays it\'s the only distro that provides a special package out of the box that I use on my home servers','Y','','Y','','','','','packages','','','immutable','not sure; most likely Kinoite','Y','','','','','','','','Y','','','','','Many thanks for producing the distro!!!\r\n'),(1563,'1980-01-01 00:00:00',5,'en','795404497','A4','A3','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','Coworkers ','Y','Y','','Y','Y','','','Y','Y','Y','','','','','','Y','Y','','','','A4','A1','A10','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'Systemd / docker / git','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A6','A2','A9','A12','A4','A15','A3','A1','','','','','','','','','','','','','','A2','A6','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Complexity','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','Production servers recommended by coworkers ','','Y','Y','Y','','','','Déclarative configuration ','Configurability for services','Stability','Ability to use modules and services on Ubuntu with same config declaratively','Docker, systemd, git','Y','','','Y','','','','','','','None','Sops-nix','Cachix','Make Nixos options / services usable on Ubuntu - same idea like nix package manager can be used to install packages'),(1564,NULL,2,'en','1332554712','A2','A3','male','','','Y','','','Y','','','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','Y','','','','A7','A9','A3','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','Semaphore CI','A2','A13','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1565,NULL,NULL,'en','1446714286',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1566,NULL,1,'en','30251481','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1567,'1980-01-01 00:00:00',5,'en','1153875664','A2','A2','fem','','','','','','Y','','','','','Y','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','','','','','','Y','','','','Y','','','','','','','','',''),(1568,NULL,1,'en','2100874398','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1569,'1980-01-01 00:00:00',5,'en','125894763','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I heard of someone using shell scripts to automatically set up their Gentoo install, and I though that seemed like a good idea. Then I heard of NixOS which functions like that but better, so I decided to make a partition on my Gentoo install to dual boot it, only to mess up and nuke my Gentoo install. So I just installed NixOS as it was during the school year and I wanted my laptop to work, I have been using it ever since.','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A2','A1','A7','','','','','','','','A14','A1','A6','','','','','','','','','','','','',NULL,'I probably would be using Gentoo and nothing like nix/reproducible','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','My knowledge of Nix, as I would like to make my own packages but I don\'t really know what to do. I probably could learn with more time, and most likely I eventually will. but I would like it if learning resources were better.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I heard of someone using shell scripts to automatically set up their Gentoo install, and I though that seemed like a good idea. Then I heard of NixOS which functions like that but better, so I decided to make a partition on my Gentoo install to dual boot it, only to mess up and nuke my Gentoo install. So I just installed NixOS as it was during the school year and I wanted my laptop to work, I have been using it ever since.','Y','','Y','','','','','Reproducability','','','Add support for secrets including at (build?) time. That way it would be possible to hide my factorio token. Not in your control but I would also like if more payed applications would be able to be natively installed on nixos by providing a username and token.','Gentoo','Y','','','','','','','','','','Sway','Home manager','','I really want build time secret support.'),(1570,NULL,NULL,'en','45389318',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1571,'1980-01-01 00:00:00',5,'en','2084206519','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','I used to use Fedora Linux, until Red Hat decided to make CentOS a \"closed source\" OS.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A7','A10','A1','','','','','','','','A14','A5','A13','','','','','','','','','','','','',NULL,'OpenSUSE','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I don\'t know how to contribute.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I used to use Fedora, until Red Hat decided to make CentOS \"closed source.\"','Y','','','','','','','Nix configuration.nix file','sudo nixos-rebuild switch','Reproducibility','Adding the Nix repo to GNOME Software interface.','OpenSUSE','Y','','','','','','','Y','','','','','',''),(1572,'1980-01-01 00:00:00',5,'en','829625168','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted to start using Linux for work. Because I\'ve been using various Linux distributions for years on my personal devices, I knew that it\'s very common that something breaks after an update. For work, this was unacceptable, so I decided to try NixOS to work around this. Because I had to learn Nix anyway, I also started to use nix shells for some projects. After 4 years, almost every project in the company uses nix shell.','Y','Y','','','Y','','Y','Y','Y','Y','','Y','','','Y','','Y','Y','','','A7','A2','A1','','','','','','','','A10','A8','A5','','','','','','','','','','','','',NULL,'Tears and Tissues, and probably some Docker hackery','A2','','','','Y','Y','','','','','','','','','','','','','','','','','Bitbucket Pipelines','A1','A5','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Time & complexity','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Atomic updates & rollbacks, declarative system config','Y','','Y','Y','','Y','','Atomic updates & rollbacks','Reproducibility','Ability to share whole system configurations','A web service to configure and download an image, or an iso that installs nixos directly? ','Windows with WSL 😓','Y','','','','','','','Y','','','','Home Manager\r\nDirenv','','Windows support would be HUGE'),(1573,'1980-01-01 00:00:00',5,'en','1145847533','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','Y','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','I was interested in functional programming, and saw Nix the research project. Got interested and tried it, but felt a bit too early. Got back into it when it was more useable.','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A2','A9','A13','','','','','','','','','','','','',NULL,'','A7','','','','Y','','','','','','','','Y','','','','','','','Y','','','','A11','A13','A25','','','','','','','','','','','','','','','','','','','A11','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same as for Nix.','Y','Y','Y','Y','','','','Declarative config and package management','Good System-D integration','','','','Y','','','','','','','','','','XMonad','nixbuild.net','',''),(1574,'1980-01-01 00:00:00',5,'en','644347924','A2','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A1','','','Y','','','','','','','Y','','','','','','','Y','','','','','A8','A7','A10','','','','','','','','A11','A14','A8','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','woodpecker','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','Y',NULL,'I couldn\'t setup a proper immutable system.\r\nSELinux is not well supported.','Hiring a Nix specialist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1575,'1980-01-01 00:00:00',5,'en','205671876','A8','A3','male','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','Y','','','','','','','','','','','','','','','','','','Y','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1576,NULL,NULL,'en','1103598343',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1577,NULL,1,'en','904696533','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1578,'1980-01-01 00:00:00',5,'en','425392796','A2','A5','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I had tried Mandrake, Gentoo, Ubuntu and Debian and was always disappointed that I couldn\'t install new software without compromising the stability of the system. Specifically, I was running Debian stable and wanted to install the Kdenlive video editor. The first step in the instructions was to install Debian Unstable, which I didn\'t want to do. Luckily I was able to install it via Nix. It didn\'t take too long to switch over to NixOS after that, and I\'ve never looked back.','','','','','','','Y','Y','','Y','','Y','','Y','Y','Y','Y','','','','A7','A2','A1','','','','','','','','A3','A6','A11','','','','','','','','','','','','',NULL,'The closest thing I could find, perhaps OSTree based.','A2','','','','Y','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','A1','','I used to, but I don\'t have as much free time any more. I did try to contribute via a PR fairly recently, but it wasn\'t accepted and I didn\'t really understand the reason why or how to satisfy the reviewer.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','After successfully installing a video editor on Debian Stable I started learning more about Nix and NixOS and very quickly realised that this was the OS I had been looking for.','Y','','Y','Y','','Y','','Atomic upgrades and rollbacks','Declarative configuration','Package isolation (being able to experiment with new libraries and tools and still have a stable, reliable system)','','The closest thing I could find, possibly OSTree based.','Y','','','','','','','','Y','','','','','Thanks so much for your work <3<3<3'),(1579,NULL,1,'en','879739190','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1580,'1980-01-01 00:00:00',5,'en','1578270388','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','Y','','','','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Portable development environment.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A5','','','','','','','','A6','A4','A8','','','','','','','','','','','','',NULL,'emerge/portage\r\npacman\r\nrustup\r\npoetry','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A3','A9','A4','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Ansible replacement','Y','','Y','Y','','','','Declarative pinned system configuration via flakes','extendable. changes can be local (overrides etc) but also easily upsteamed to nixpkgs','Seamless building from source','Make nix evaluation faster.\r\n\r\nMake nixos usable in offline environments. Small config change plus nixos-rebuild needs internet.','gentoo, arch, debian\r\nAnsible','Y','','','','','','','','','','sway','simple-nixos-mailserver','',''),(1581,'1980-01-01 00:00:00',5,'en','1810399832','A5','A4','male','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It was 2017, my background is Haskell development, I was attracted to the concept of pure recipes to build a system. However it took me almost 4 years to get comfortable with Nix lang patterns and coding.','Y','Y','','','','','Y','','Y','','','','','Y','Y','','Y','','Y','','A2','A9','A4','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'Brew, Apt or Emerge','A1','','','','Y','Y','','','Y','','','','','','','','','','','Y','','','concourse ','A9','A15','A13','','','','','','','','','','','','','','','','','','','A15','A13','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','Y',NULL,'Security software (sentry) couldn\'t run it\'s malware effectively in my work computer. For personal use I have a MacBook ','Security companies add support to Nixos in their tooling ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sops-nix','','Keep the great work, hopefully the docs keep improving and people stop being afraid of trying something different '),(1582,'1980-01-01 00:00:00',5,'en','699511760','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A1','A4','A9','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A13','A15','A3','','','','','','','','','','','','','','','','','','','A5','A11','A2','','','','','','','','','','','','','','','','','','','','','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','','','','','','','','','Y','','Y','','Y','Y','','','Y','','','','',''),(1583,NULL,NULL,'en','595106094',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1584,'1980-01-01 00:00:00',5,'en','575347684','A5','A5','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I heard other Lisp nerds talking about it :-) I wanted an OS that allowed me install and rollback packages in a simple and reliable way.','','Y','','','','','Y','Y','','Y','','','','','Y','','Y','','','','A3','A1','A7','','','','','','','','A14','A8','A6','','','','','','','','','','','','',NULL,'Don\'t make me think about it :-) I would probably be using Docker on Debian.','A4','','','','Y','','','Y','','','','','','','','','','','Y','','','','TeamCity','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','A better understanding of the nix language and fundamentals, like overlays. The learning curve is very steep and I just don\'t have the personal time to really overcome it.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Lisp nerds recommended it and I wanted to be cool like them.','Y','','Y','Y','','','','','','','','Debian + Docker','Y','','','','','','','Y','','','','Lorri','Flakes, NIM','Thank you for all of the great work you do maintaining an excellent package manager and OS!'),(1585,'1980-01-01 00:00:00',5,'en','1833514183','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','I used Debian since 2000 and a co worker, haskell lover, try nixos one time and show me his new laptop on Nixos. I try Nixos ... and NixOs adopt me','','Y','','','','','','','','','','','','Y','Y','','Y','','','','A7','A2','A1','','','','','','','','A3','','','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A7','','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Time ^^ I have a autistic children','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A4','','Y','','Y','','','','','rollback/atomic upgrade','stable','','package language','Debian','Y','Y','','','','','','','','','i3','','',''),(1586,'1980-01-01 00:00:00',5,'en','1345665038','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Interest in functional programming and buy-in from that.','Y','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A1','A9','A6','','','','','','','','A5','A10','A15','','','','','','','','','','','','',NULL,'checksums.','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A2','A25','A5','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','I have contributed a couple of patches, but not regularly.\r\nMainly it\'s documentation for Darwin specific steps, since that\'s my main work machine. I also think we need better caching support for Darwin to make the effort worth it.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Used nix-darwin for work, but then installed NixOS on home laptop','Y','','','','','','','More package support/packages up to date','Cross-compilation','Declarative env','Better documentation','Debian.','Y','','','','','','','Y','','','','Nix-darwin, home-manager, sops-nix','nix bundle - > I wish it worked well on aarch64 but it\'s just not very stable on aarch64','My personal laptop runs on x86_64 and using nix is very smooth. By contrast, using it on an aarch64 machine is much worse because of lack of caching.\r\nI would really appreciate it if aarch64 support was at the same level as x86.\r\n\r\nPersonally I very much value the fact that nix derivations work on Darwin, and I would like to see nix improve its Darwin support so that the experience is more stable. '),(1587,'1980-01-01 00:00:00',5,'en','1238180777','A2','A3','-oth-','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was intruiged by some of the concepts, e.g. dependency trees, caching, content-addressibility, declarative configurations, ...\r\n\r\nOne day decided to try NixOS but failed hard to learn it that way (too many new things at once). A few months later decided just to try to set up dev environments & later home-manager, which was an easier entry point. This year I took another shot at NixOS and am now very happy with it 🤘- it was still quite a learning curve, to understand why things work or don\'t work, but it\'s starting to come to a point where it serves me more than it requires. 💜','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','Y','','A2','A1','A7','','','','','','','','A4','A8','A1','','','','','','','','','','','','',NULL,'Dockerfiles 😵‍💫\r\n','A2','','Y','','Y','Y','','','','','','','Y','','','','','Y','','','','','self-made scripts','A1','A15','A25','','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','I am contributing some packages. Sometimes it took a (few) months to get reviewed, but I am not really discouraged by that.\r\n\r\nOtherwise, the unclarity of: adding a flake to the upstream repo might make it easier to maintain but harder to discover & use ...','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I actually tried NixOS as a way to learn Nix, but that was futile. I did not manage to figure out what dodo and why.\r\nBut then I got familiar with Nix in other ways (devenv, home-manager) on Fedora, and this winter gave it another shot, after watching a youtuber showcase of their NixOS setup.\r\n\r\nTook me about a month to get set up and ready on all levels needed for being productive, but it was a lot of fun and learning and now I\'m proud and happy :)','Y','Y','Y','','','','','Declarative / reproducible','Caching','Compatibility with almost all ecosystems & tools','Add: first-class flake registries, software GUI store, built-in ability to easily run/add legacy packaged apps (AppImage, distrobox ...)\r\nChange: waaay better error messages (god help us)\r\n','Fedora probably, maybe Silverblue or some other immutable distro','Y','','','Y','','Y','','Y','','','','Not sure what is part of the nix ecosystem...\r\ndevenv\r\nflake-parts\r\ndeploy-rs','numtide/devshell (now using devenv)','Thank you so much 💜\r\nLove this project & what it might become!'),(1588,'1980-01-01 00:00:00',5,'en','1128951034','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','Y','chief project','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I loved the idea behind nix and nixos','','Y','','','','','Y','Y','','Y','','','','Y','','','Y','','','','A2','A1','A7','','','','','','','','A3','A13','A6','','','','','','','','','','','','',NULL,'Debian','A4','','','','','','','','','','','','','','none','','','','','','','','drone','A25','','','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','nix language ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','reproductible','modularity','rollback','Better how to. Example it\'s difficult for new user to make a derivation. In Arch is very easy','','Y','','','','','','','','','','i3','none','none','please continue'),(1589,'1980-01-01 00:00:00',5,'en','1732526257','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using nix to manage package requirements for dev projects, using nix shell & devenv.','Y','Y','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A7','A10','','','','','','','','A3','A13','A8','','','','','','','','','','','','',NULL,'chezmoi & apk with a word file','A1','','','','Y','Y','','','','','','','Y','','','Y','','','','Y','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I either can\'t contribute packages that I\'m building (corporate/private stuff) or don\'t feel knowledgeable enough to fix quirks in packages already present in nxpkgs (because of my knowledge of the nix DSL)','N','N','I\'m currently trying NixOS (preparing custom images mainly)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'was using niv previously & switched to flakes few weeks ago','nickel, mainly waiting for a broader community adoption',''),(1590,NULL,1,'en','1804725479','A3','A3','male','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1591,'1980-01-01 00:00:00',5,'en','1648860801','A1','A3','male','','','','','','Y','Y','','','','Y','','','Y','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','There was a talk given to a university student group, where the package manager was introduced.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A4','A3','','','','','','','','','','','','',NULL,'Guix sounds like it\'s close enough to Nix. :P\r\n\r\nFor servers, probably cloud-init, or maybe ansible, in order to get a consistent setup.\r\n\r\nFor consistent dev environments? Would likely use various NVM or tools like asdf.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A2','A13','A15','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was apprehensive that using NixOS would be difficult. I worried about situations where \"I need to run some program, but can\'t\".\r\n\r\nInstead, I only started using NixOS once I was more comfortable with writing Nix code.','Y','','','','','','','Declarative','Single file / source of truth','Modularity / Composability','A popular batteries-included \'distribution\' of NixOS.\r\n\r\ne.g. vanilla unconfigured Emacs is abysmal; but Spacemacs or Doom Emacs make for powerful tools.\r\n\r\nAnalogously, NixOS is more of a meta-distribution... many things are one or two lines to add, but some stuff like Bluetooth audio seems more difficult.\r\n\r\nI know this seems under-specified; and many people would want conflicting things.','Depending on my level of enthusiasm, Arch Linux.','Y','','','','','','','Y','','','','home-manager, nixos-generators','',''),(1592,NULL,NULL,'en','595077550',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1593,'1980-01-01 00:00:00',5,'en','2064111147','A5','A5','male','','','','','','','','','','','Y','','','','','Y','','','','Y','','Y','','','','','Y','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A1','the environment setup automation','Y','','Y','','','','Y','','Y','Y','','','','','Y','','','Y','','','A2','A1','A7','','','','','','','','A6','A1','A7','','','','','','','','','','','','',NULL,'ansible','A4','','','','','','','','','','','','','','','','','','Y','Y','','','','A1','A2','A5','A7','','','','','','','','','','','','','','','','','','A19','A2','','','','','','','','','','','','','','','','','','','','','','','','A1','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1594,'1980-01-01 00:00:00',5,'en','5719042','A2','A3','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A9','','','','','','','','A8','A2','A1','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A9','A15','A22','','','','','','','','','','','','','','','','','','A15','A22','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','','wlroots / Hyprland','','',''),(1595,'1980-01-01 00:00:00',5,'en','1976234463','A2','A4','male','','','','Y','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Worked for a company that had an airgapped network for security reason. At that time I thought nix would be a good way to get software on these machines.','','Y','','','','','Y','','','','','','','','Y','','Y','Y','','','A3','A1','A7','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'Docker, Dot file repositories, terraform','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A4','A15','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Avoid Configuration Drift','Y','','','','','','','Reproducability','Rollback','','Dunno, I\'d think having a language with better static types / better tooling would be great. Rust in Vscode doesn\'t really work, which sucks. ','Archlinux','Y','','','','','','','','Y','','','crane','',''),(1596,'1980-01-01 00:00:00',5,'en','790598702','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted to learn Linux, used arch, updated and broke my dm (couldn’t log in to my desktop). So flashed my machine to NixOS and have never had any issues (except the odd debuggable internet connectivity problem).','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','','','','A1','A2','A9','','','','','','','','A8','A5','A9','','','','','','','','','','','','',NULL,'I don’t think anything else suits my requirements!','A1','Y','','','Y','Y','','','','','','','','','','','','','','Y','','Y','','A13','A15','A1','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Familiarity with the project, overwhelmed by the number of issues / pr’s, not understanding the social structures and rituals for contributing','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Used arch linux to learn Linux, it broke on update. Flashed my computer and booted into NixOS. Haven’t looked back since.','Y','Y','','Y','','','','Declarative configuration','Reproducibility','Sharing config across multiple machines','Sometimes I find the home manager / NixOS distinction confusing. I also find the module system hard to understand sometimes. If there could be better UX around user specific configuration that would be amazing, but I’m not exactly sure how to achieve it.','MacOS probably. But I love being on Linux, there is just no other distro that does everything I want.','Y','','','','','','','','','','Sway / wayland','Home manager','','I love nix and nixos! Couldn’t image my day to day without it.'),(1597,'1980-01-01 00:00:00',5,'en','1669156374','A5','A4','male','','','','','Y','Y','Y','','Y','','','Y','','','','','','','','','','','','','','Y','','Y','','','','N','N','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Better help, tutorials, docs, etc.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1598,'1980-01-01 00:00:00',5,'en','176774290','A5','A3','male','','','','','','','','','','','','','','','','','Y','Y','','','','Y','','','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was tired of the mediocracy of the existing distros, package managers, config management, and containerized approaches.','','Y','','','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','Y','','A2','A3','A1','','','','','','','','A12','A6','A4','','','','','','','','','','','','',NULL,'FreeBSD\r\n\r\nBut Ive also considered farming since the remainder of the tech ecosystem is such a dumpster fire.','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','its was easier to get started with nix vs running a traditional distro + nixpkgs. ','Y','Y','Y','Y','','Y','','anti-fragile','maximum configurability','simplicity','','As previous mentioned my two options would be 1) FreeBSD 2) Farming','Y','','','','','','','','','','i3','https://search.nixos.org/packages\r\nhttps://noogle.dev/bn','','Keep up the great work!'),(1599,'1980-01-01 00:00:00',5,'en','1543900197','A6','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','Y','I was just experimenting with different distros and stumbled upon nix. Tried it and was a bit complex to just start using so I moved on. Will definitely try to learn an use in future.','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1600,'1980-01-01 00:00:00',5,'en','1161791058','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was using Gentoo (and beforehands Arch) and thus was familiar with source-based heavily customisable systems. At some point of time, I grew annoyed by having to compile everything by myself.\r\nAdditionally, Mic92 and makefu were constantly talking fondly about NixOS, so I tried it.\r\nThe real perks of declarative and functional package and configuration management only became clear to me later on.','Y','Y','','','','','Y','','','Y','','','','','Y','Y','Y','','Y','install software as a user, but only declaratively via home-manager','A2','A10','A1','','','','','','','','A8','A12','A6','','','','','','','','','','','','',NULL,'I\'d probably still be using Gentoo, or would be victim to the \"containerise everything and ship it as vaguley built binary blob images\" brainworms by now.','A4','','','','Y','Y','','','','','','','','Y','','Y','','','','','','','','A2','A4','A3','A10','A9','A15','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','Y','','-oth-','I am in theory a maintainer of packages in nixpkgs, but currently a bit overwhelmed. Will start contributing back in the near future.',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','see the story for Nix, I first used NixOS, then Nix on other platforms as well','Y','','','Y','','','','declarative system configuration','isolation of dependency, purely functional builds','atomicity','','','Y','','','','','Y','krops, flyingcircus tooling','','Y','','','flyingcircus tooling','',''),(1601,NULL,1,'en','1848526475','A5','A5','male','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1602,'1980-01-01 00:00:00',5,'en','1835197108','A6','A4','male','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','Cyber Security Analyst','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','I started my career as System / Web Administrator','','Y','','Y','Y','','Y','Y','','Y','Y','Y','rPI','Y','Y','','Y','Y','','','A1','A10','A3','','','','','','','','A14','A4','A2','','','','','','','','','','','','',NULL,'commercial products or popular products','A4','','','Y','Y','Y','Y','','','','','','','','','','','Y','Y','Y','','','','A2','A3','A1','A10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A2','','Nothing stops me as I get chance I will alywas contribute.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','AS Sysadmin ','Y','','Y','Y','Y','Y','','Open Source Tools','maintaniable updates','continuos integration','','Diificult to imagine','Y','Y','','','','','','Y','','Y','','Many others like dockers, bottles','',''),(1603,'1980-01-01 00:00:00',5,'en','1229674507','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','disabled','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','Contributing to nixpkgs','A4','Because it came with NixOS.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A7','A1','A3','','','','','','','','A9','A5','A6','','','','','','','','','','','','',NULL,'I used apt-get on Ubuntu, elementary OS and debian. Later, i used Ansible.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','WoodpeckerCI','A2','A4','A3','A9','A15','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','imports = [ ./package.nix ];','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','We replaced Puppet at work with Ansible. It was easy and nicer to use, so i started configuring my computer with it (installing packages etc). Before that i had check lists what to install after reinstalling a computer. Ansible has fundamental issues, like the system shifts over time and can be messed up manually. A haskell person recommended NixOS in Social Media (i used Diaspora* at that time). NixOS really solves config management and that convinced me. Sadly, it\'s still not user-friendly.','Y','','Y','Y','Y','','','declarative configuration','rollback','customizability (it\'s easy to use the latest kernel and patch it)','hide the complexity behind intuitive GUI applications (System settings, ...) made by the design team of Apple (which follow Dieter Rams\' 10 Principles of Good Design). so basically let the elementary OS team develop Snowflake OS and give them the resources Apple has','before i used elementary OS and before that OS X. i would probably kept using elementary OS, but would be unhappy without the huge software collection nixpkgs offers and without the declarative configuration that makes it really easy to manage multiple systems','Y','','','','','','','','','','Pantheon','trustix (runs in the background, sadly abandoned)\r\nnixpkgs-review (essential for PR review)\r\nsnow (user-friendy nix CLI from Snowflake OS)\r\n','not useful yet:\r\n\r\nnix-software-center\r\nnixos-conf-editor (bad UX)','thanks for your work!'),(1604,'1980-01-01 00:00:00',5,'en','621558439','A5','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A8','','','','','','','','','','','','','','',NULL,'anti-depressants','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'N','Y',NULL,'too confusing','better documentation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'fleek\r\ndevbox','','Thank you for Nix <3 <3 <3'),(1605,'1980-01-01 00:00:00',5,'en','1042784823','A2','A3','','','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend of mine didn’t stop plugging it, in the end it got me.','','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','Y','','A1','A3','A2','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'Bazel, Pacman, custom Python tooling','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','Garnix CI','A15','A2','A13','A25','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'N','Y',NULL,'I couldn’t get it to work with full disk encryption on my Raspberry Pi Model 4.','Having to install a new OS — For now Arch + Nix is fine.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Cachix, Naersk','cargo2nix','When I compare some of my old default.nix files to the newer flake.nix ones, it is amazing how much simpler the default.nix ones were. Flakes have so much boilerplate :\'(\r\n\r\nAlso:\r\n\r\n* That updating flake inputs is done with `nix flake lock --update-input` rather than `nix flake update` is ridiculous.\r\n* That the order of flakes is \"inside-out\", with {devShells,packages}.[platform].[package], gets in the way everywhere, because you want to cross-reference between devShells and packages, but you can’t when the platform is in the way. **Every flake** found in the wild imports numtide/flake-utils to fix this problem. Can’t we just fix it in Nix directly and put the platform in front? And then, if the CLI could default to the current platform, that would be really nice because `x86_64-linux` is really annoying to type.'),(1606,'1980-01-01 00:00:00',5,'en','56484736','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A6','A8','A12','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1607,'1980-01-01 00:00:00',5,'en','1526832872','A2','A2','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I like that my config defines exactly how the system looks and does not describe the way how to get there, like Ansible','','Y','','','Y','','','Y','','','','Y','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A6','A4','A14','','','','','','','','','','','','',NULL,'Probably doing a lot of system configuration by hand in Debian or maybe go through the trouble of Ansible ','A4','','','','Y','','','','','','','','','','','','','','','','','','','A9','A2','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A2','','','','Y','Y','','Y','','','','','','','Y','','','','','Y','','','','','','','',''),(1608,'1980-01-01 00:00:00',5,'en','1770554572','A1','A3','male','','Y','','','Y','','Y','','','','','','','','','','','Y','','','Y','','Y','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Friends from an Archlinux telegram group introduced Nix to me.','','Y','','','','','Y','','','','','','VPS','','Y','Y','Y','','Y','','A1','A2','A10','','','','','','','','A6','A11','A14','','','','','','','','','','','','',NULL,'- conda for dev env\r\n- gentoo profiles for mangaing machines\r\n- ansible (maybe)','A2','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A2','A15','A25','A20','A3','','','','','','','','','','','','','','','','','A15','A2','A20','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Friends from an Archlinux telegram group introduced Nix to me.','Y','','','','','','VPS','Declarative config for systems','Infra as code','atomic deploy and rollback','- harden all systemd services\r\n- edtior tools for helping me writing NixOS config\r\n - auto-complete options\r\n - display option docs\r\n - find all usages of one option in nixos/modules of Nixpkgs','gentoo','Y','','','Y','','','','Y','','','','- home-manager\r\n- agenix\r\n- emacs-overlay\r\n- impermanence\r\n- nixgl\r\n- nixos-mailserver\r\n- flake-parts\r\n- nil\r\n- nixd\r\n- noogle\r\n- nixpkgs-unfree\r\n- nix-systems\r\n- harmonia\r\n- attic\r\n- nixago\r\n','- mach-nix','Please find a way to improve the experiences of contributors because current way of contributing and reviewing does not scale:\r\n- More and more open PRs (not to say open issues)\r\n- Many PRs are lack of review and or merge\r\n - either no one is notified\r\n - or requested people are inactive\r\n - or the author does not know who he should request a review\r\n- What a package maintainer can do is limited if he does not have commit bit set\r\n\r\n\r\nSolutions I proposed:\r\n- Try to use the organization which Linux kernel uses\r\n- Improve the enthusiasm of people to review\r\n - bonus\r\n\r\nJust my two cents.'),(1609,'1980-01-01 00:00:00',5,'en','1942729583','A5','A4','male','','','Y','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','I started using nix to solve a complex dependency problem on an Amazon Linux 1 server. I have since expanded my use to scale complex CI infrastructure and other production deployments. ','Y','Y','','','Y','','Y','','Y','Y','','','','Y','Y','Y','','','','','A2','A1','A11','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'Linux containers and friends. ','A1','','','','Y','','','','','','','','','','','','','Y','','','','','','A1','A15','A2','','','','','','','','','','','','','','','','','','','A2','A1','A15','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I no longer use GitHub. I do not know of a trivial way to contribute patches to GitHub projects without a GitHub account. ','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','mach nix','Thank you for all your work to make nix and the related tools and ecosystem better! '),(1610,'1980-01-01 00:00:00',5,'en','1939101481','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A few twitter folks were loud about it and I decided to give it a try','Y','','','','','','Y','','','','','','','','Y','','Y','','','','A3','A1','A2','','','','','','','','A12','A5','A8','','','','','','','','','','','','',NULL,'','A6','','','','Y','','','','','','','','','','','','','','','','','','','A11','A1','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1611,'1980-01-01 00:00:00',5,'en','1815617411','A5','A4','male','','','Y','Y','Y','Y','Y','Y','','','Y','','','','','Y','Y','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Homebrew wouldn\'t support the mix of Java and Python versions I needed to work on Cassandra (and supportive tooling).','Y','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','','A2','A3','A6','','','','','','','','A8','A12','A9','','','','','','','','','','','','',NULL,'RHEL','A6','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A5','A2','A4','A24','A15','A19','A11','A9','A3','A23','A20','A21','A1','A8','','','','','','','','A5','A2','A24','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','Lack of time and energy (which is also why I need Nix).','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I needed nixpkgs on my Mac for work, and so I wanted to use NixOS for my home lab to keep my configurations in sync.','','','Y','','','','','Stability ','Convenience ','Extensibility ','Stable LTS releases as the generally accepted default.','RHEL','Y','','','','','','','','','','i3wm','devenv, mvn2nix, and the determinant systems installer (to help with onboarding colleagues).','Everything related to Python development and packaging needs work.','I\'m very optimistic about Nix\'s potential to take the leadership position as distro of choice. The opportunity is clear!'),(1612,'1980-01-01 00:00:00',5,'en','1385284015','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A3','A7','','','','','','','','A8','A14','A6','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I\'m really a newbie','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','Y','','','','','Declaritive','Reproducible','Rollback','','','Y','','','','','','','Y','','','','','',''),(1613,'1980-01-01 00:00:00',5,'en','873590809','A2','A3','-oth-','','','','','','','','','Y','','','','','','','','','','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','Y','Y','','Y','','Y','Y','Y','Y','','','','A1','A6','A7','','','','','','','','A6','A4','A13','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A3','','','','','','','','','','','','','','','','','','','','A15','A24','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','','Y','','Y','','','','','','','Y','','','','Y','','','','','','Sway','','',''),(1614,'1980-01-01 00:00:00',5,'en','398895816','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A3','A1','A2','','','','','','','','A8','A13','A2','','','','','','','','','','','','',NULL,'','A1','','Y','Y','','Y','','','','','','','','','','','','','','Y','','Y','','A13','A1','A15','','','','','','','','','','','','','','','','','','','A1','A13','','','','','','','','','','','','','','','','','','','','','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','','','','','','','','','','Archlinux ','Y','','','','','','','','Y','','Xmonad','direnv','',''),(1615,NULL,NULL,'en','985128293',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1616,'1980-01-01 00:00:00',5,'en','386140525','A5','A3','male','','','','','','Y','','Y','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Originally, all I wanted was a user-mode package manager for Linux that didn\'t have to compile everything from source. After using Nix that way for a couple years, I tried NixOS and fell in love. :)','Y','Y','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A7','A2','A10','','','','','','','','A6','A8','A10','','','','','','','','','','','','',NULL,'On macOS, I think I\'d be SOL. For basic package management, I\'d use pkgsrc there.\r\n\r\nFor everything else (personal machines, servers, containers in CI, etc.) I would use Guix!','A2','','','','Y','Y','Y','','','','','','','Y','','','','Y','','','','','Azure DevOps','A14','A5','A9','A6','A1','A7','A25','','','','','','','','','','','','','','','A6','A5','A25','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','When I decided to learn NixOS, I decided to dive right in and chose it as my main OS for a work computer at a new job. At that time, there were fewer escape hatches, and package availability was more limited. I had no choice but to learn my way around Nixpkgs to get my system working as desired! Despite the effort that involved, I was hooked. Managing my entire system configuration from a single config file was the dream. Atomic upgrades, rollbacks, and other Nix goodies were icing on the cake.','Y','','Y','Y','','','','Reliable, declarative configuration of virtually everything I use','Sharing configuration (between my systems but also between friends for debugging and demo purposes)','A huge repository of knowledge on how to configure upstream services in the form of the NixOS module system— very helpful to consult even when administering non-NixOS systems','I would like to see most experimental features and ongoing Nix/NixOS work make it over the finish line ASAP. There\'s lots of valuable work going on.\r\n\r\nBut the single thing I would go for if I could only wave that magic wand once is to replace the disparate module systems (and corresponding, separate profile manager for each) of NixOS, Nix-Darwin, Home Manager, and System Manager with a single, unified module system and profile manager.','GuixSD','Y','','','','','','','','Y','','','flake.parts, devenv.sh, nurl, nix-init, determinate Nix installer','flake-utils-plus, fleek, std, niv, pypi2nix, gradle2nix, maven2nix, ',''),(1617,'1980-01-01 00:00:00',5,'en','1570027656','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','RF Systems Design Engineer','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I heard about it on the Linux Unplugged Podcast by Jupiter Broadcasting.','','Y','','','','','Y','','','Y','','','','','','','Y','','','','A7','A2','A1','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'Ubuntu LTS desktop','A4','','','','','','','','','','','','','','','','','','','Y','','','','A2','A1','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','Knowing where to start','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I heard about it on the Linux Unplugged Podcast by Jupiter Broadcasting','Y','','Y','Y','','','','Atomic builds and rollbacks via Grub','Nixpkgs','Declarative environments','Add better documentation that is written for both experienced and new users (separate pages perhaps)','Ubuntu desktop','Y','','','','','','','Y','','','','','','Thank you for what you do.'),(1618,'1980-01-01 00:00:00',5,'en','1015160882','A5','A6','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Arch update crashed boot. I wanted a zfs backend and a large software repo. Nixos fit the bill.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','Y','Y','','A2','A1','A8','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'Fedora silverblue, oci containers, distrobox','A7','','','','Y','Y','','','','','','','','Y','','','','Y','','','','','','A1','A10','A17','A25','','','','','','','','','','','','','','','','','','A1','A25','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Brain power ;-)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Declarative builds','Home manager','ZFS','Finalize flake support','Silverblue + oci + Distrobox','Y','','','','','','','','','','Window Managers (dk, herbstluftwm, hyprland','Cachix ','','Amazing product'),(1619,NULL,1,'en','1621090387','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1620,'1980-01-01 00:00:00',5,'en','1407100084','A2','A3','-oth-','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A7','A2','','','','','','','','A4','A14','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','uhh. i don\'t know nix very well. i don\'t want to be a maintainer, or expect to test software beyond \"works 4 me\". i use overlays with the changes until a pr is created/merged in nixpkgs. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','erase your darlings','Y','','Y','','','','','config-as-code','test/rollbacks','nixpkgs modules/options - make it easy to setup everything','documentation 🤡','a noose, or god forbid guix. third party config management tooling kinda sucks and testing isn\'t straightforward. but a combination of a rolling release distro (arch, rawhide), a decent config management tool (chef - mostly for the surrounding tooling, ansible (maybe)), verification tooling (inspec), and a good way of testing/development (vagrant, kitchen, packer). I think that could cover most of the things I care about.','Y','','','','Y','Y','','','','','i3','disko\r\nimpermanence\r\nhome-manager\r\nnix-darwin\r\nnixos-infect\r\nnixos-anywhere','nixops - terrible documentation. incredibly unclear how to begin, documentation was out of date. afraid of commitment (like most nix tooling) as they haven\'t done a release in a long time, so you\'re expected to raw dog it, which makes things even more confusing.\r\ncolmena - struggled to use the same system config for the colmena config','i want to recommend you, but i can\'t in it\'s current state. the lack of documentation and poor UX (finding what damn package is causing the \"nodejs insecure\" message makes me want to scream. just tell meeee who it issss!!!!!) are the main ones. the language sucks too, mostly due to the lack of documentation, there is nix pills, but i\'m not reading all of that lol.'),(1621,'1980-01-01 00:00:00',5,'en','687126476','A8','A4','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Had tried Ubuntu in years past, but it didn\'t stick. Saw a few open-source projects using this \"nix\" thing, didn\'t get it. Later I got curious about Nix, saw the deterministic benefits, and coincidentally wanted to try Linux OS again. Thought I\'d have an easier time with pure NixOS than nix + some other distro, had a chance to install NixOS, and now I\'ve been using it full-time, far longer than I\'ve used any other Linux distro.','','','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A3','A2','A9','','','','','','','','A4','A8','A15','','','','','','','','','','','','',NULL,'Probably Ubuntu, otherwise WSL2 on Windows.','A3','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A25','A6','A1','A19','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Had tried Ubuntu in years past, but it didn\'t stick. Saw a few open-source projects using this \"nix\" thing, didn\'t get it. Later I got curious about Nix, saw the deterministic benefits, and coincidentally wanted to try Linux OS again. Thought I\'d have an easier time with pure NixOS than nix + some other distro, had a chance to install NixOS, and now I\'ve been using it full-time, far longer than I\'ve used any other Linux distro.','Y','','Y','','','','','Easy rollbacks, making it safe to experiment','Ad-hoc dev environments, so I don\'t end up with a bunch of cruft installed globally','Explicit, version-controllable config, like \"looking for something? start at /etc/nixos/configuration.nix\"','I\'d add an easy-to-use LRU cache for the nix store, so I can run the garbage collector without needing to re-download the things I was using just yesterday.','Probably Ubuntu, otherwise WSL2 on Windows.','Y','','','','','','','','Y','','','','home-manager. The package update process was clunky, and I don\'t think it provided any benefit for me.',''),(1622,NULL,-1,'en','338506042','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1623,NULL,2,'en','325818446','A4','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','office suite','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1624,NULL,NULL,'en','488147373',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1625,NULL,1,'en','643462617','A5','A4','male','','','','','Y','','','','','','','','','','','','','Y','','','','','','','Research software engineer','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1626,'1980-01-01 00:00:00',5,'en','69269909','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','atomic updates, packages support','','Y','','','Y','','Y','Y','','','','','','Y','','','Y','Y','','','A1','A7','A8','','','','','','','','A8','A3','A9','','','','','','','','','','','','',NULL,'Debian, Archlinux','A4','','','','Y','','','','','','','','','','','','','','','','','','','A1','A15','A22','','','','','','','','','','','','','','','','','','','A15','A1','A22','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Nix language','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','Y','','','','','Atomic updates','Rolling and Point release','configuration.nix','easier and more standard programming language','debian','Y','','','','','','','Y','','','','','',''),(1627,NULL,3,'en','1928974312','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Security Engineer ','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Heard about it on Linux Unplugged ','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A6','A1','A2','','','','','','','','A14','A7','A8','','','','','','','','','','','','',NULL,'Ansible','A2','','','','Y','','','','','','','','','','','Y','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Heard about it on Linux Unplugged ','Y','','Y','Y','','Y','','Declarative configuration ','Atomic updates ','Up to date kernel and packages','More amateur radio packages','The best supported Linux or BSD for the hardware with Ansible on top.','Y','','','','','','','Y','','','',NULL,NULL,NULL),(1628,NULL,1,'en','694287393','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1629,'1980-01-01 00:00:00',5,'en','1102849779','A3','A4','male','','','','','','Y','Y','','','Y','Y','','','','','','','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Docker on Mac was absurdly slow. I needed node and java and disliked nvm and friends ','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','','Y','','','','A2','A9','A6','','','','','','','','A6','A12','A14','','','','','','','','','','','','',NULL,'Some combination of Docker, bazel and prozac','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A20','A1','A5','A15','A17','A18','','','','','','','','','','','','','','','','A5','A1','A20','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','N','Straightforward ec2 deployments',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nix direnv\r\nDevenv','',''),(1630,'1980-01-01 00:00:00',5,'en','187079381','A2','A3','male','','','','','','Y','Y','Y','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I was tired of either having dependency issues all the time at work. For example when someone hadn\'t containerized their python project I needed to use or simply when I found a cool new tool that would be helpful but that required other versions of libraries needed by other parts of our work environment. I figured there have to be better ways out there and in search of that I found Nix. Started using it for personal things as I didn\'t want to end up in the same mess we had at work. ','','Y','','Y','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'More containers. Possiblywould try Guix. ','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A14','A2','A22','A17','A3','A15','A1','A20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Currently learning and building confidence that I know how it works (best practices and such). ','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','As I found Nix because of dependency hell at work I started using NixOS in WSL for my personal stuff to try and learn. ','Y','','Y','','','','','Home manager','Declarative, Version controlled and reproducible OS setup for all my servers and systems. ','','','More containers. Probably would run Debian. ','Y','','','','','','','','','','','','',''),(1631,NULL,2,'en','1244438487','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using nix with my Workstation to make my dotfiles reproducibles.','Y','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A7','A1','A2','','','','','','','','A6','A14','A8','','','','','','','','','','','','',NULL,'I would use Guix','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A11','A13','A15','','','','','','','','','','','','','','','','','','','A19','A5','A11','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1632,NULL,3,'en','969597980','A1','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Jupiter Broadcasting!','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','','Y','','','','A10','A7','A2','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'Ansible','A4','','','','Y','','','','','','','','','','','','','','Y','Y','','','Forgejo Actions','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Skill level :)','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Jupiter Broadcasting mentioned it, and RHEL kicking the bucket made me actually move over.','Y','Y','Y','Y','','','','Reproducible configurations','Tons of packages','Lots of documentation','Better documentation.','Ansible','Y','','','','','','','Y','Y','','',NULL,NULL,NULL),(1633,NULL,3,'en','2070694977','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Building Debian packages got old.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A7','A10','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'Some OS tree distro','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Tired of building Debian packages','Y','','Y','','','','','Reproducible','Flakes','Zfs support','Easier to package new applications','Silverblue','Y','','','','','','','','Y','','i3',NULL,NULL,NULL),(1634,NULL,2,'en','198505866','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Jupiter Broadcasting has been covering NixOS for quite some time and I finally decided to take the plunge. It is amazingly simple, yet very complicated.','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A7','A1','A9','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'A combination of openSUSE, Debian, and Ubuntu not necessarily in that order','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','-oth-','Brand new still exploring',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1635,'1980-01-01 00:00:00',5,'en','1320270774','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','Y','','Y','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Atomicity, combination if pkg building and cfg management. Proper language. ','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A7','A1','A9','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','Y','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Same as nix: atomicity, cfg mgm','','Y','Y','Y','','','','Build vs switch separation','Local evaluation with local cfgs on top of channel','','LTS (security updates) for at least release n-1 and more attention to detail regarding upgrade paths for slower moving things. (Libxcrypt -really?). Dont retire EOL versions so quickly.','','Y','','','','','','','','','','','Hydra','',''),(1636,'1980-01-01 00:00:00',5,'en','944863289','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','','Y','','','','','Y','Y','','Y','','','','A2','A7','A1','','','','','','','','A3','A5','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1637,NULL,1,'en','141829147','A5','A2','male','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1638,NULL,1,'en','527305634','A2','A3','male','','Y','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1639,'1980-01-01 00:00:00',5,'en','553290285','A2','A3','male','','','Y','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend had started using it and wouldn\'t shut up about it','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A6','A8','A9','','','','','','','','','','','','',NULL,'Probably Arch Linux','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A10','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend wouldn\'t shut up about it so I had to try it to please them.','Y','','Y','Y','','','','Easy deployments with rollbacks if things goes wrong','','','','Probably ArchLinux','','','','Y','','','','','','','Sway','','','Please do something about the flakes situation.\r\n\r\nThe situation with the RFC that never got approved and how it was *implemented* without the communities support and shoehorned into \"stable\" versions of nix as an experimental feature is just terrible.\r\n\r\nIt shouldn\'t have happened.\r\n\r\nIt looks terrible both internally and for people observing the community from the sidelines.\r\n\r\nWe need to come to a conclusion here.\r\n\r\nMaybe even the foundation need to do a post mortem on how we got here.'),(1640,NULL,1,'en','960532184','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1641,'1980-01-01 00:00:00',5,'en','428085506','A5','A5','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A2','A10','A7','','','','','','','','A2','A9','A4','','','','','','','','','','','','',NULL,'Language-specific environments for dependencies, like python virtualenv. But for system admin, it\'s unclear. Maybe guix but that\'s kind of the same thing.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A4','A13','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','','Y','','','','','Declarative configuration','Discoverability','','','','Y','','','','','Y','','','Y','','','Home-manager\r\nAgenix\r\nNix-darwin','',''),(1642,'1980-01-01 00:00:00',5,'en','1962806657','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','It looked interesting','','Y','','Y','','','Y','','','','','','','Y','Y','','','','','','A1','A3','A9','','','','','','','','A6','A5','A14','','','','','','','','','','','','',NULL,'Fedora','A2','','','','Y','','','','','','','','','','','','','','','Y','','','','A6','A9','A15','A2','A1','A21','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I wanted to force me to usw nix as a package manager','Y','','','','','','','Reproducibility','Home manager','','','','Y','','','','','','','Y','','','','','',''),(1643,'1980-01-01 00:00:00',5,'en','575555426','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A2','A3','A6','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'Homebrew','A1','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A13','A14','','','','','','','','','','','','','','','','','','','','A20','A24','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','Y',NULL,'Because I mainly work on MacOS','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1644,'1980-01-01 00:00:00',5,'en','585042954','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A9','A8','A6','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A11','A15','','','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','','','','','','Reproducibility ','','','','','Y','','','','','','','Y','','','','','',''),(1645,'1980-01-01 00:00:00',5,'en','793780433','A2','A3','fem','','','','','','','','','','','','','','','','','','','','','','','','','Engineer, IT security','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','','','','','','Y','Y','Y','Y','Y','','','','Y','Y','Y','','Y','','A7','A2','A1','','','','','','','','A8','A11','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A15','A6','A2','','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','Y','Y','','','Declarative configuration','Atomic updates','Configuration management for remote machines','','','Y','','','Y','','','','','','','sway, plasma-mobile','nix-output-monitor','',''),(1646,NULL,2,'en','1090865307','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A2','when i cant find package in other distro, and nixos is really small os','','Y','','','','','','Y','','','','','','Y','','','','','','','A1','A2','A6','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'guix','A4','','','','Y','','','','','','','','','','','','','','Y','','','','','A9','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1647,'1980-01-01 00:00:00',5,'en','442066113','A5','A4','male','','Y','','','Y','','Y','','','Y','Y','Y','Y','','Y','Y','','Y','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Haskell is a mess and I need to use nix to keep packages straight.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','','','','','A2','A3','A1','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'Haskell\'s regular build system','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A2','A4','A3','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Terrible documentation and error messages.','N','Y',NULL,'Terrible documentation and error messages.','A major overhaul of the documentation, tools, and error messages.\r\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Please focus on error messages, documentation and tools. Nix is great! Everything about the nix ux is literally the worst of any tool I ever use.'),(1648,'1980-01-01 00:00:00',5,'en','1272788532','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started out out of curiosity and found it to be a perfect tool to reproduce the same setup everywhere','Y','Y','','','','','Y','','','Y','','','','Y','Y','','Y','','','','A7','A1','A6','','','','','','','','A8','A5','A2','','','','','','','','','','','','',NULL,'I don’t know a real alternative ','A2','','','','Y','','','','','','','','','','','','','','','','','','','A9','A2','A1','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I started out out of curiosity and found it to be the most suitable for setting up a robust server. ','Y','','Y','','','','','Rollback ','Configuration centralisation ','Reproducibility ','','Maybe Guix','Y','','','','','','','Y','','','Sway, DWM','','',''),(1649,'1980-01-01 00:00:00',5,'en','151390306','A1','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to be able to have a portal configuration for my development environments that I can put down on any fresh machine and be up and productive in minutes not hours.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A9','A1','A2','','','','','','','','A5','A6','A9','','','','','','','','','','','','',NULL,'Probably a mix of Homebrew and my distro\'s own package manager','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','Garnix.io','A15','A9','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'N','Y',NULL,'I was not comfortable enough with Nix at that point in time to be able to commit fully to an immutable system.','My current OS install breaking down for any reason.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1650,'1980-01-01 00:00:00',5,'en','164534173','A1','A2','male','','','','','','','','','','','Y','','Y','','','','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','Y','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A10','A9','A4','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A15','A1','A19','A2','A9','A4','A3','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1651,NULL,1,'en','1734990993','A2','A4','male','','','','','','','Y','Y','Y','Y','Y','','','Y','','','','Y','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1652,'1980-01-01 00:00:00',5,'en','292865388','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A2','A7','A1','','','','','','','','A8','A4','','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','Y','','A1','A2','A13','A14','A15','A25','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','','','Y','Y','Y','Y','','','','','','','','','Y','Y','','','','Y','','Y','','','sway','','',''),(1653,'1980-01-01 00:00:00',5,'en','125159122','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','declarative configuration and reproducible builds','','Y','','','','','Y','','','','Y','','','Y','','Y','Y','','','','A2','A1','A10','','','','','','','','A14','','','','','','','','','','','','','','',NULL,'archlinux or maybe gnu guix','A4','','','','','','','','','','','','','','','','','','','','','','','A13','A3','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','don\'t feel familiar enough with the nix language and have never contributed to an open source project before.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','declarative configuration and reproducible builds. Prior to nixOS I used archlinux and always felt the need to reinstall every year or two because it felt like enough cruft had built up so i though the declarative nature of NixOS would make that a lot easier. That being said, NixOS\'s approach to packages keeps the filesystem clean and managed in a way that feels clean so I haven\'t felt the need to reinstall.','Y','','','','','','','declarative system configuration','read only filesystem','','','archlinux (with ansible?) or gnu guix','Y','','','','','','','','','','SwayWM','home-manager','','I really love what NixOS is doing. Through out my Linux journey there have only been a few distros that I\'ve used and felt unable to go back; first, was arch with the AUR and then after it was Nix with the fine grained declarative system configuration. it\'s amazing and I can\'t imagine using anything else!'),(1654,NULL,-1,'en','1203871343','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1655,'1980-01-01 00:00:00',5,'en','1180554359','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Because the funktional why of Software delievery seems very great and i wanted to try it out','','','','','','','Y','','','','','','','','Y','','Y','Y','','','A1','A3','A7','','','','','','','','A8','A13','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Not enough experience with Nix and Software Development overall','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','','','','','','','','','Enable partial updates to change everything possible without Internet access','','Y','','','','','','','','','','Sway','','',''),(1656,'1980-01-01 00:00:00',5,'en','501434047','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Thinking functional mate. Kidding, I just googled more difficult Linux distribution ','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A1','A3','A2','','','','','','','','A5','A4','A9','','','','','','','','','','','','',NULL,'Arch Linux ','A1','','','','Y','Y','','','','','','','Y','','','Y','','','','','','','','A2','A3','A4','A13','A20','A25','','','','','','','','','','','','','','','','A2','A20','A25','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Nothing, time','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Same as nix','Y','','','','','','','Bleeding edge','Reproducible builds','Composable','NixOS is rock solid. Some packages need to be polished ','Arch Linux ','Y','','','','','','','','','','Qtile, Xmonad','None','None','Thanks for the awesome work! I will help!'),(1657,'1980-01-01 00:00:00',5,'en','415981037','A5','A4','male','','','','','','','Y','','','','','Y','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A1','A2','A11','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A15','A17','','','','','','','','','','','','','','','','','','','A9','A15','A17','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1658,NULL,NULL,'en','577344885',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1659,'1980-01-01 00:00:00',5,'en','2109800072','A2','A1','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','My friend told me about NixOS. Then I installed NixOS on my laptop. Now I have two NixOS home servers :D','','Y','','','','','Y','Y','','','','Y','','','Y','Y','Y','Y','Y','','A3','A10','A5','','','','','','','','A8','A6','A1','','','','','','','','','','','','',NULL,'I don\'t know','A7','Y','','','Y','Y','','','','','','','','','','Y','','','','','','','WoodPecker','A15','A1','A24','A25','','','','','','','','','','','','','','','','','','A15','A7','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Same as Nix','Y','','Y','','','Y','','Rollbacks','Isolated packages','Declarative config','I would add support for non-systemd environments in NixOS','Gentoo Linux','Y','','','Y','','','','Y','','','Sway ','https://github.com/nix-community/lanzaboote\r\nhttps://github.com/nix-community/home-manager\r\nhttps://github.com/ipetkov/crane','',''),(1660,'1980-01-01 00:00:00',5,'en','262863847','A5','A4','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','','Y','','A1','A2','A7','','','','','','','','A4','A8','A2','','','','','','','','','','','','',NULL,'Gentoo','A4','','','','Y','Y','','','','','','','','','','','','','','Y','Y','','','A13','A3','A9','A15','A4','A2','','','','','','','','','','','','','','','','A13','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','Y','','','','','','','Y','','','','','','','','Y','Y','','','',''),(1661,'1980-01-01 00:00:00',5,'en','181368762','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started out using Guix for declarative package management on top of Arch Linux (i.e. being able to store installed packages in git), then ran into frustrations between system and Guix-managed libraries. Looked at Guix System as a full OS, but decided that the extra maturity and pragmatism of NixOS was a better way to do things.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A4','A3','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A22','A15','A24','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Declarative package and system configuration','Seamless extensibility by adding custom packages','Rollbacks via grub and nixos-rebuild','','Guix System or Arch','Y','','','','','','','','','','Sway','','',''),(1662,'1980-01-01 00:00:00',5,'en','389903509','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A3','A10','','','','','','','','A9','A8','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A13','A25','','','','','','','','','','','','','','','','','','','A2','A13','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A4','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','home-manager','',''),(1663,NULL,NULL,'en','287652610',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1664,NULL,1,'en','753203990','A2','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1665,'1980-01-01 00:00:00',5,'en','1187271827','A2','A3','male','','','','','','','Y','','Y','Y','Y','Y','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Deploying a complex software and configuration stack onto robots and supporting servers.','Y','','','','','','Y','','','Y','','Y','','','Y','','Y','','','Building NixOS and deploying over SSH','A2','A1','A10','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'Docker containers, shell scripts and human tears ','A1','','','','Y','Y','','','','','','','','','','','','','','','','','None','A15','A1','A2','A4','','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','A2','','Contributing requires significant knowledge of nixpkgs arcana and library functions.','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','','','','','Y','','','','nixos-rebuild','Reproducible builds','Configuration as code ','Add official and well-developed support for deployment, and a way to quickly redeploy single applications on a machine during development','Docker containers and some other Linux','Y','','','','','Y','','','','','','crate2nix, arduino-nix, naersk, poetry2nix','','Nix has sharp edges but it can do things that nothing else can.\r\n\r\nIf the project (or a related startup) is able to create a golden, well supported path for a common need (e.g application CI and packaging, building and deploying machine images) it could take off very quickly.'),(1666,NULL,1,'en','932074980','A2','A3','male','','Y','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1667,'1980-01-01 00:00:00',5,'en','470491021','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking for a way to move away from imperative pkg managers to manage my systems and NixOs looked like a suitable solution and I had colleagues who could help me learn','','Y','','','Y','','Y','','','','','','','Y','Y','Y','Y','Y','','','A2','A3','A10','','','','','','','','A6','A14','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','Y','','','','','','A2','A15','A23','A1','A13','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I don\'t have enough time in my life to dedicate time to contribute at the moment ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as for nix pkgs I was looking to move to a declarative way to manage my systems','Y','','','','','','','Declarative','Reproductible on multiple systems','Easy to share with other people ','Either improve the NixOS modules to simplify writing coherent modules or improve the documentation to help discover the features/tools','Archlinux with home grown scripts','Y','','','','','','','','','','i3 or river','Nix-direnv','home-manager','Thank you to the community for all the work and time invested in Nix and NixOS '),(1668,'1980-01-01 00:00:00',5,'en','409176978','A2','A2','male','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A1','A2','A9','','','','','','','','A4','A2','A12','','','','','','','','','','','','',NULL,'Nowadays Guix I guess.','A2','','','','Y','','','','','','','','','','','','','Y','','Y','','','','A2','A15','A9','A13','A26','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','','','','','','','','','Y','','','','','','','sway','flake-utils-plus, simple-nixos-mail-server','',''),(1669,'1980-01-01 00:00:00',5,'en','1084927669','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I love infrastructure as code and like the idea of applying that to my operating system. I started trying to use NixOS for a server for managing a few containers but put that down for now. I have migrated my laptop to NixOS now though. ','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A3','A9','','','','','','','','A14','A8','A15','','','','','','','','','','','','',NULL,'Ansible on Debian or a Debian based distro','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I like declarative configuration and this is pretty much the only game in town. ','Y','','Y','','','','','Declarative configuration','Large package availability ','Great community','Declarative Flatpak installation','Debian or possibly Mint','Y','','','','','','','Y','','','','','',''),(1670,'1980-01-01 00:00:00',5,'en','1233597516','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','With NixOS','Y','','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A9','A7','','','','','','','','A4','A8','A1','','','','','','','','','','','','',NULL,'GNU Stow','A7','','','','Y','','','','','','','','','','','','','','','','','','','A5','A25','A2','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A5','Arch to Gentoo for more control then to Nix for the reproducibility and best of both binary cache and source based.','Y','','','','','','','Reproducibility of system','Overrides and customizing','','Native package major version pinning without gcc7, gcc8 or overlays.\r\n','','Y','','','','','','','','','','i3','','',''),(1671,NULL,NULL,'en','167589849',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1672,NULL,1,'en','1735986820','A2','A3','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1673,'1980-01-01 00:00:00',5,'en','1586760456','A2','A3','male','','','','','','Y','','','','','','','','','','','','Y','','','','','Y','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I like the declarative approach and the option to roll back. Previously I used arch','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A3','A6','','','','','','','','A6','A8','A4','','','','','','','','','','','','',NULL,'Arch Linux, containers','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','My knowledge about nix is not sufficient ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','Rolling Release Option with unstable channel','Declarative configuration of everything via home-manager','Easy rollback','','Arch linux','Y','','','','','','','Y','','','','','',''),(1674,NULL,NULL,'en','633095586',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1675,NULL,1,'en','2040954297','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1676,NULL,4,'en','1793083056','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A2','','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'Fedora CoreOS','A4','','','','','','','','','','','','','','','','','','','','','','','A3','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',NULL),(1677,'1980-01-01 00:00:00',5,'en','1484048739','A2','A2','male','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Android, ChromeOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I stumbled upon a few YouTube videos, watched them, then switched to nixos totally unprepared since I hade gott en borde by Arch and appreciated the theoretic nix benefits. It took me a few months to actually realize the benefits, primarily when I eventually started using home-manager','','','','','','','Y','Y','','','','','I have built containers to run in production','','Y','Y','Y','','','','A2','A9','A1','','','','','','','','A8','A12','A2','','','','','','','','','','','','',NULL,'A bunch of tools for different parts of the use case (arch, a home grown symlink mess and custom scripts, bazel)','A2','','Y','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Laziness, together with doubt that other would find what I package useful (although thinking about it, I am pretty sure people would, at least a little bit)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I entered nix through nixos. I was bored by Arch, felt a desire to pick something I would appreciate long-term (and wow, I did!) and was impressed by NixOS\'s theoretical benefits after stumbling upon it on YouTube','Y','','Y','','','','','Immutability of the running system','Easy config integration through home-manager','Explicitly tracking differences between machines','Add non-root (for security) nixos containers','Immutable Fedora, or maybe just Arch. It would be significantly worse','Y','','','','','','','','','','xmonad','home-manager\r\nnix user repository (for firefox extensions)\r\nflake-utils\r\nrust-overlay\r\ncargo2nix','','Nix/NixOS is the most impressive software I know. I am eternally grateful that Nix and its ecosystem exists'),(1678,'1980-01-01 00:00:00',5,'en','2088800893','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','The ccc darmstadt draw my attention to it\r\nI like the declatitive model of NixOS. On other systems i forgot which programms i configured in what way, now i can look in my configuration file.','','','','','','apart from nixos: none','Y','','','','','','','','','','Y','','','','A2','A10','A3','','','','','','','','A8','A9','A14','','','','','','','','','','','','',NULL,'I dont know if there is a worthy replacement. Maybe guix.\r\nBut maybe i would just use apk from alpine, because it has a package list.','A4','','','','','','','','','','','','','','','','','','','','','','','A5','A15','A2','A21','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I would need a bit deeper understanding of how packages work and even of git for contributing','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','Many up-to-date packages, with carefree dependency managment','Declarative system configuration','Ad-hoc softawar with nix-shell','Stabilise flakes and new cli andadd learning resoirces for them','Idk. Maybe Guix?\r\nMaybe apk from alpine because it uses apk with a package list?','Y','','','','','','','Y','','','','','Flakes, because i dont understand their role in nixos - how they play together with e.g. configuration.nix',''),(1679,'1980-01-01 00:00:00',5,'en','1546574923','A5','A2','male','','Y','','','Y','','','','','','','','','','','','','Y','','','','','','','robotics engineer','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','A company I was working for used the package manager for reliable and secure builds (for compliance reasons related to aviation).','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A3','A9','A2','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A2','A4','A21','A13','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Server on VPS for small FOSS web services like libreddit, nitter, Nextcloud...','','','Y','','','','','Configuration all in one place.','Easy installation of new packages.','Secret management with age','','','Y','','','','','','','','','','none','Lorri, direnv, age','',''),(1680,'1980-01-01 00:00:00',5,'en','411080060','A6','A3','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','To get isolated dev environments. I got sick of homebrews and pips and whatnot','Y','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A4','A5','A9','','','','','','','','','','','','',NULL,'Guix may be. But guix package manager does not work in macos, so dont know ','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A14','A1','','','','','','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A3','Only linux distro I could stick to.','Y','','','','','','','','','','Smoother impure env integration. Not everything can live under the pure ideal NixOS world.','Guix may be, or openSUSE with Nix on top of it','Y','','','','','','','Y','Y','','','','','Add ML-like static types to nix lang'),(1681,'1980-01-01 00:00:00',5,'en','524522992','A2','A3','male','','','','','','','','','','','','','','Y','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','','','','','','Y','','Y','','Y','','A2','A1','A10','','','','','','','','A8','A4','A7','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','','','','','','','','Y','','','','','','','','sway','','',''),(1682,'1980-01-01 00:00:00',5,'en','916452921','A2','A2','fem','','','','','','','Y','Y','','Y','Y','Y','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I was an arch user for around 7 years, and when I learned about NixOS it felt like a match made in heaven.\r\nI like the idea of a reproducible system with \"centralized\" configuration files which define everything.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A8','A4','A14','','','','','','','','','','','','',NULL,'I would not use Guix, I don\'t like GNU. I would just use Arch Linux and be very sad.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A6','A2','','','','','','','','','','','','','','','','','','','','A2','A6','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I liked the idea of a reproducible system with \"centralized\" configurations that define the whole system.\r\nI\'ve been an arch linux user for 7 years before using nixos, and I can\'t go back now.','Y','','Y','','','','','Reproducible System','Modules/Services easily configurable through Nix','Amount of packages','I would improve existing features, better error handling, better CLI tools and outputs (progress bar when using nixos-rebuild, information about which packages will be installed/removed, etc)','Arch Linux. I would be very sad.','Y','','','','','','','','Y','','','Nixos-generators\r\nHome-manager\r\nSops-nix\r\nJovian-nixos','NixOps, no flake support.',''),(1683,'1980-01-01 00:00:00',5,'en','1493035009','A2','A4','male','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','','','Y','','','Android, iOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','The declarative approach brought me over instantly.','','Y','','','Y','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','Y','Y','','A2','A1','A3','','','','','','','','A14','A6','A8','','','','','','','','','','','','',NULL,'Guix, Arch Linux, microOS','A1','','','','Y','Y','','','','','','','Y','Y','','Y','','','','','','','','A15','A17','A2','','','','','','','','','','','','','','','','','','','A2','A3','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Declarative configuration brought me over instantly.','Y','','Y','Y','Y','Y','','Declarative configuration','Immutability','','More convenient language','Guix','Y','','','Y','','','nixos-anywhere','Y','','','hyprland, sway','','','Great work!'),(1684,NULL,1,'en','613728478','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1685,'1980-01-01 00:00:00',5,'en','1288213670','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A7','A1','A3','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'still apt','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Not knowing about how to write derivations best. The \"tools\" are heavily under documented. It\'s not obvious where specific functions are declared, which attributes are allowed/required. At best there is some documentation but it\'s missing examples and descriptions about the why. Examples I have in mind are callPackage or buildEnv.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Used Ubuntu for more then 10 years but lost trust in Canonical and their snaps. Just looked at possible replacements and found NixOS fascinating and promising. It\'s very unique. I need a system that gets software updates regularly (not only bug fixes) but is stable and doesn\'t break it. It seems to be NixOS is build around this promises.','Y','','','','','','','The system can nearly never break due to being able to rollback','','','It should get more examples about how the stuff works. For example setting some configuration options automatically install packages. This isn\'t obvious at first when coming from other distros where all packages need to be installed explicitly. You want to install Python with packages x,y,z, then you need to add that to the configuration.nix.','Probably I would try Arch Linux or switch to Debian instead.','Y','','','','','','','','Y','','','','','Nix and NixOS is very different. Therefore it requires better and more documentation to explain and especially on how to adapt it. As a Software Developer the current documentation is ok for using it or even to create own packages/derivations (thanks to nix pills). It just takes a lot of time to read the code or googling. Without having time and patience I would have switched to something else.\r\n\r\nPersonally after nearly a month using nix and NixOS I still don\'t understand why somebody would use nix-env to install software system wide instead of using the system packages in the configuration.nix and running nixos-rebuild.'),(1686,'1980-01-01 00:00:00',5,'en','1426080453','A1','A3','male','','','','','','','','Y','Y','','','Y','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Configure environment in single file is nice. Sharing build cache is really helpful.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A10','A9','','','','','','','','A11','A13','A2','','','','','','','','','','','','',NULL,'Guix\r\nIf Guix is not there, too.\r\nMaybe just Cargo or pacman(Under Archlinux).','A2','','','Y','','Y','','','','','','','','','','Y','','','','','','','','A15','A13','A4','A3','A14','A17','A25','','','','','','','','','','','','','','','A13','A15','A4','','','','','','','','','','','','','','','','','','','Y','','','','A2','','My project is not ready for open source yet.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Use single piece of code to configure the whole OS is really cool.\r\nAnd everything is quiet steady even in nixos-unstable.','Y','','Y','','','','','Use .nix to configure system','Package works inside a sandbox-like environment makes it quiet unbreakable','Easy to use Nix under different platform, I am quiet willing to try NixOS under ARM/RISC-V hardware.','Making wayland environment more Xorg-free is nice.','Guix\r\nIf Guix is also not exist, then ArchLinux.','Y','','','Y','','Y','','','Y','','sway','','Flake',''),(1687,NULL,NULL,'en','809898246',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1688,NULL,NULL,'en','958205672',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1689,'1980-01-01 00:00:00',5,'en','810364413','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A6','A7','A4','','','','','','','','','','','','',NULL,'Gentoo/Fedora as workstation, something RHEL-based on servers','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','A9','A19','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','Y','Y','','','','Root on tmpfs','Moving my system to other machines in minutes, not hours like with other distros','Usable aarch64 support','Add support for aarch64 for some packages that x86 only (framesh, appflowy, etc)\r\nAdd native support for secrets in /nix/store\r\nAdd support for SELinux\r\nAdd more apparmor profiles for packages\r\nUseful errors instead of meaningless nonsense\r\nAdd native microvm solution like microvm.nix by astro','','Y','','','Y','','','','','','','sway, thinking about moving to gnome','home-manager','deplpy-rs. Now I use nixos-rebuild\r\nmicrovm.nix because it sucks',''),(1690,NULL,NULL,'en','1899331126',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1691,NULL,NULL,'en','1554808569',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1693,'1980-01-01 00:00:00',5,'en','1563433133','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','Y','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','Y','','','A2','A7','A11','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'Guix','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','SourceHut','A24','A15','A13','A25','','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','','Y','Y','','','','','','','','Guix','','','','Y','','','','','','','sway','flake-utils, naersk, fenix','',''),(1692,'1980-01-01 00:00:00',5,'en','1309239941','A2','A3','male','','','Y','','','Y','Y','','','Y','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Just wanted to have a usable/convenient way to install/manage software (compiler toolchains, various SDKs and stuff) and was using Ubuntu at the time and having a subpar experience.','','Y','','','','','Y','Y','','','','','','Y','Y','','','','Y','','A1','A2','A9','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'Fuck me, probably apt','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A1','A20','','','','','','','','','','','','','','','','','','','A13','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Social anxiety','N','N','I don\'t see the point of NixOS for my workstation: Ubuntu + Nix works well enough. Using NixOS on servers pretty much requires the buy-in from my $WORK which is not going to happen.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1694,'1980-01-01 00:00:00',5,'en','1919269200','A2','A4','male','','Y','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I had been hearing about Nix at FOSDEM and such for years. After many false starts due to inherent complexity and dubious documentation, I finally installed NixOS on my desktop machine after reflecting upon the fact that no other operating system was trying to radically improve the state of the art of managing complexity. I was also gently nudged along this path by the Haskell community, in which there is a strong Nix presence.\r\n\r\nNow I also use Nix to ensure reproducibility in CI even on non-NixOS platforms.','','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','Y','','','A2','A3','A1','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'Debian','A2','','','','','Y','','','','','','','','','','','','','','Y','','','','A13','A25','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','Declarative environment','Easy upgrades','Easy to contribute new packages','','Debian','Y','','','','','','','','','','sway','','',''),(1695,'1980-01-01 00:00:00',5,'en','234616935','A7','A3','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A3','','','','','','','','A14','A13','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A13','A24','','','','','','','','','','','','','','','','','','','A13','A24','A23','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','','','','','Archlinux','Y','','','','','','','Y','','','Xmonad','','',''),(1696,NULL,NULL,'en','1140040822',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1697,NULL,NULL,'en','1815169961',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1698,'1980-01-01 00:00:00',5,'en','927752170','A1','A5','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A7','I use functional programming languages, and in that community people kept telling NixOS is good, which I believed since I knew about immutability. Then at some point I tried installing it.','','','','','','','Y','Y','','','','','','','','','Y','','','','A7','A1','','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'I\'ve been using Ubuntu for long.','A4','','','','','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'m new here, just started.','Y',NULL,NULL,NULL,NULL,'A1','','','','','A1','','Y','','Y','','','','','reproducibility','easy configuration','package availability','','Ubuntu','Y','','','','','','','Y','','','','','',''),(1699,'1980-01-01 00:00:00',5,'en','33422657','A8','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Loved the idea. Took the plunge and it’s worked out well so far ','','Y','','','','With plans to use it on mac and containers ','Y','','','','','','','Y','Y','','Y','','','','A1','A3','A2','','','','','','','','A8','A6','A14','','','','','','','','','','','','',NULL,'Brew on Mac, apt on Ubuntu ','A4','','','','Y','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I like trying new software and desktops and Nixos lets me do that without screwing up the entire system','Y','','','','','','','Reproducibility ','','','','Maybe the new fedora offering ','','','','','','','','Y','','','','Home manager','',''),(1700,NULL,NULL,'en','917700289',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1701,NULL,2,'en','1609243676','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A2','I wanted to run a personal server on an old laptop, but in a way which allowed easier changes to which services were running or defined. Took some effort to set up first, but has been working pretty well','','','','Y','','','','Y','','','','','','','Y','','Y','','','','A2','A1','A7','','','','','','','','A8','A4','A14','','','','','','','','','','','','',NULL,'Probably just a plain package manager for whatever linux distro I was using and a notes.txt file describing how to set up or tear down different services running','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'m lazy, afraid of interacting with the public internet using accounts even partially connected to information about me (for why I don\'t set up other accounts, see first point), and I\'m somewhat uncertain on how to interact with github and open source in general',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1702,NULL,2,'en','1456549858','A8','A5','male','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Tried it, loved the principle of deterministic configuration ','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A7','A2','A1','','','','','','','','A8','A13','A4','','','','','','','','','','','','',NULL,'apt','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A17','A13','','','','','','','','','','','','','','','','','','','','A17','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1703,'1980-01-01 00:00:00',5,'en','1944798916','A2','A5','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','A colleague started using Nix at work. I already knew about Nix and found it an interesting project, but never got around using it in earnest before. I then started migrating several of my private machines to NixOS to get more experience with it.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A5','A9','A8','','','','','','','','','','','','',NULL,'Before started using NixOS, i used Fedora and Debian. I also looked into guix, but could not use it due to missing hardware support. I would probably go back to Fedora.','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A2','A9','A3','A1','','','','','','','','','','','','','','','','','A2','A15','A9','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Nothing so far. I am just still very new to Nix. But the community interactions I had so far (on element mostly) were all very supportive and welcoming.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','A colleague started using Nix at work. That brought me to start using Nix at home as well to gain more experience with it.','Y','Y','Y','Y','','','','atomic upgrades and rollback','declarative system and user configuration','creating development environments','I would move all functionality of nix-* commands into appropriate sub commands of the \"nix\" command. Then I would remove/deprecate all nix-* commands.','Fedora, Debian or Guix','Y','','','','','','','Y','','','i3','nix home manager','','It would be nice to have some tool or website to be able to search all nix documentation, similar to the packages and options search.'),(1704,NULL,NULL,'en','1480894460',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1705,NULL,1,'en','1302890856','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1706,NULL,1,'en','857949164','A2','A2','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1707,NULL,NULL,'en','1551349143',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1708,'1980-01-01 00:00:00',5,'en','749001759','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Security Manager','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was intrigued by Nixos, tried an install on my thinkpad and then on my servers','','Y','','','','','Y','Y','','Y','','','','','Y','','Y','','','','A2','A7','A3','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'ansible, arch linux. maybe guix?','A4','','','','Y','','','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A1','','did not find the time yet','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','Y','','','','','Fully defined by configuration files','system state in git','bi anualy major upgrades','secret management','maybe still arch, maybe guix','Y','','','','','','','','','','awesome-wm','','home manager. only managing and syncing configuration between my devices is not enough. i need data sync as well. so i use syncthing to sync specific app folders, e.g. .ssh, vscodium',''),(1709,'1980-01-01 00:00:00',5,'en','13956039','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','friend showed me Nix/NixOS. It solved my problem of managing multiple computers very good.','','','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A2','A4','A9','','','','','','','','A8','A13','A2','','','','','','','','','','','','',NULL,'shell with some templating language. maybe spack. would probably build something like spackOS (which doesn\'t exist yet)','A2','','','','Y','Y','','Y','','','','','Y','','','','','','','Y','','','buildbot','A2','A1','A15','A13','A3','','','','','','','','','','','','','','','','','A15','A5','A2','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','best configuration managment','Y','Y','Y','Y','','','','module system','string templating','availability of modules','remove all-packages.nix\r\nuse modules for package configuration\r\nhaving ability to have mulitple instances of services configured ','spackOS (doesn\'t exist yet, would probably invent that)','Y','','','','','Y','krops','','','','xmonad','','','thanks for your work!'),(1710,'1980-01-01 00:00:00',5,'en','1423476699','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','A friend of mine told me about it, I started using it after ArchLinux.','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','Nix docker images with things like buildDockerImage, and nlewo/nix2container','A1','A9','A7','','','','','','','','A2','A11','A13','','','','','','','','','','','','',NULL,'For the isolated build system part, I would use something akin to Bazel I\'m guessing.\r\nTo provide dependencies, I\'m guessing it would be messy and not very reproducible.','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','Y','','A20','A9','A15','A4','A3','A2','A1','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','','','','','','','','- Better error messages to track errors\r\n- More verbose origins for infinite recursion.\r\n- make flakes better with monorepos (way too locked into one repo / one project thingy)\r\n','Not much else I\'m afraid. NixOS (and its cousin guix) are very weird beast with not much competition. I place it in the \"tool you didn\'t know you needed until you used it, but can\'t live without afterwards\".','Y','','','','','Y','','','','','i3','nlewo/nix2container, home-manager, clj2nix','I stopped using nix-doom-emacs because this prevented usage of configuration auto-reload on Emacs','Keep up the good work!'),(1711,NULL,1,'en','50717447','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1712,'1980-01-01 00:00:00',5,'en','428493204','A7','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I wanted declarative package management that I can use on all my operating systems','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','nix develop','A6','A2','A3','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'The OS package manager, or other tools for CI and remote machine management','A1','','','','Y','Y','','','','','','','Y','','','','','Y','','','','','','A20','A1','A4','A25','','','','','','','','','','','','','','','','','','A20','A25','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Way too Complex','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Wanted to configure my Linux OS configurations like my desktop environment and login shell','Y','','Y','','','','','System-wide configuration','Flake support','Home profile management','Make home-manager a first class citizen.\r\nIntroduce a GUI or TUI that helps with adding/removing/changing packages while keeping your config up to date.','Just linux and the distros package manager I guess. Thought about using Guix','','','','','','','','','Y','','','Home-manager\r\nFlake-utils\r\nDevenv\r\nnix-darwin','Flake-parts\r\nnix-shell','Nix and NixOS is great but needs a major user experience overhaul.\r\nFlakes needs to be stabilised and a new level of documentation and ease of configuration needs to be introduced on top'),(1713,'1980-01-01 00:00:00',5,'en','307758246','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','aggressiv marketing at my local hackerspace','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A7','A3','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'Debian','A4','','','','Y','','','','','','','','','','','Y','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','Flatpaks','A1','','not enough knowledge in nix and programming in general','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Aggressive marketing at my local hackerspace','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1714,'1980-01-01 00:00:00',5,'en','2123924281','A2','A3','male','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','Y','','Y','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A2','A9','A3','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','OCurrent','A14','A15','A1','A13','A2','A12','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','N','Getting a new computer - right not it\'s not worth reinstalling everything.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'In the wider ecosystem:\r\n - opam-nix: https://github.com/tweag/opam-nix\r\n - dream2nix: https://github.com/nix-community/dream2nix/\r\n - naersk: https://github.com/nix-community/naersk','',''),(1715,'1980-01-01 00:00:00',5,'en','282514049','A5','A5','-oth-','Fluid','','Y','','','Y','Y','Y','','Y','Y','','','Y','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted reproducible builds for my novels and flakes lookednthe answer I wanted to produce them.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A10','A1','','','','','','','','A8','A3','A6','','','','','','','','','','','','',NULL,'Guix or a homebrew system.','A2','','','','Y','','','','','','','','','','','','','','','','','','Woodpecker','A6','A15','A1','','','','','','','','','','','','','','','','','','','A6','A15','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Too much knowledge to get started. I submitted a patch to Ceph to fix lua but found out that I had to go to the top level to know it was overridden there instead of having an obvious alias name.\r\n\r\nI have tried six times to package something and failed every time.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Liked nizpkgs, my Ubunto crashed, switched over.','Y','Y','Y','Y','','','','Flakes','Colmena deploys','Declarative services','Flake stability and primary use','Guix','','','','','Y','','','','Y','','','Std (standard is really nice. I use colmena weekly and love it.','I have tried and failed most of the Rust packages, I can\'t figure out how to get then to work.','Please make it easier to submit patches? There is too much to know ehn you have to from the entire top level files just for little changes.'),(1716,'1980-01-01 00:00:00',5,'en','341910508','A5','A2','male','','','','','','','','Y','','','','','','Y','','','','','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Heard about it on Linux Unplugged. I decided finally to try it since it seemed to be highly regarded, and I was plesantly surprised by it.','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A3','A1','','','','','','','','A14','A9','A5','','','','','','','','','','','','',NULL,'Nothing really. Home-brewed solutions. I had used containers before for a development environment. For NixOS, I\'ve used an install script to have a semi-declarative install for Arch Linux.','A4','','','','','Y','','Y','','','','','','','','','','','','','','','','A22','A15','A3','A2','A4','','','','','','','','','','','','','','','','','A22','','','','','','','','','','','','','','','','','','','','','','','','','A2','','Lack of knowledge and confidence. I have a few tools I\'d love to add but I have no idea how.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Linux Unplugged. Same as woth Nix. I installed NixOS a day after trying Nix.','Y','','Y','','','','','Declarative system configuration','Rollback','Having the Nix package manager.','I would love a dotfile manager. I know there\'s home manager, but this can present problems when a package doesn\'t have the config needed, and also usage. with other OSes','I would use Arch. It was what I was using before and it\'s still a great OS.','Y','','','','','','','','','','sway','None. Pretty comprehensive.','Flakes. I just didn\'t get it is all. I\'ll try again some day.','Love your work. Donated a bit to the collective for documentation development, and i\'m excited to see what it brings.'),(1717,'1980-01-01 00:00:00',5,'en','1440457193','A2','A3','male','','','','','','','','','Y','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A2','A9','A10','','','','','','','','A9','A8','A6','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A4','A15','A9','A2','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','emacs-overlay','',''),(1718,'1980-01-01 00:00:00',5,'en','1504842070','A2','A3','-oth-','agender','Y','','','','Y','','','','','','','','','Y','','Y','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','It was a very nice way to create a low-maintenance declarative system with auto-updates','','Y','','','','','','Y','','Y','','Y','','','','','Y','','','','A1','A10','A2','','','','','','','','A4','A13','A1','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','bitbucket','A2','A4','A15','A25','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I contributed before, but for the time being I just don\'t have anything I see myself working on','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A5','I moved to NixOS from Debian because I wanted a declarative system, it worked really well. Later I moved my SoCs from Armbian to NixOS thanks to LUSTRATE','','','Y','Y','','','','Declarative setup','Reliable builds with fixed dependencies','Auto updates',' Completely revamp the Nix language. I\'m sorry, but it\'s really archaic.','Guix','Y','','','','','','','','','','i3','','','Thank you for your work! '),(1719,'1980-01-01 00:00:00',5,'en','209850179','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','','','Y','','Y','','A1','A2','A3','','','','','','','','A6','A8','A9','','','','','','','','','','','','',NULL,'Debian GNU/Linux','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','Y','','','','','i3/sway','Home-manager','',''),(1720,'1980-01-01 00:00:00',5,'en','180105909','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','Y','','','','','Y','','','','','','','','','','Y','','','','A2','A1','A3','','','','','','','','A13','A3','A5','','','','','','','','','','','','',NULL,'Guix','A4','','','','','','','','','','','','','','','','','','','','','','','A9','A3','A2','','','','','','','','','','','','','','','','','','','A9','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','','','','Thank you'),(1721,NULL,NULL,'en','1275220824',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1722,NULL,3,'en','56416936','A2','A2','fem','','','','','','','','','','','','','','','','','','','','','','','','','Technician','Y','','Y','','','','N','N','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Curiosity',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1723,NULL,1,'en','322182089','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1724,NULL,1,'en','944608730','A2','A3','male','','','','','','','Y','Y','Y','Y','','','Y','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1725,NULL,NULL,'en','493445729',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1726,NULL,3,'en','1122756408','A2','A2','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A6','A5','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','','Y','','','','','Declarative system configuration','Rollback','','','','Y','','','Y','','','','','','','',NULL,NULL,NULL),(1727,'1980-01-01 00:00:00',5,'en','1014549106','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A7','','','Y','','','','','Y','','','','','','','','','','Y','','','','A2','','','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'Guix','A1','','','','','','','','','','','','','','','','','','','','','','','A2','A9','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1728,NULL,1,'en','35276195','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1729,NULL,1,'en','325393254','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1730,'1980-01-01 00:00:00',5,'en','119915604','A2','A2','-oth-','nonbinary','Y','','','','','Y','','Y','Y','Y','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','Got it recommended at a furry conference :3\r\n\r\nOne of my friends had also been using it for a while and liked it, and I\'ve always had my eyes on it, but making the switch seemed a bit daunting at first. But at the furcon, I decided to say fuck it and just try it out, and I haven\'t looked back since','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A2','A6','','','','','','','','A5','A2','A14','','','','','','','','','','','','',NULL,'homebrew for mac, whatever the default package manager is for debian or whatever','A1','','','','','Y','','','','','','','','','','','','','','','','','','A2','A15','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Nothing really, just haven\'t had the opportunity yet.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Same as before, got it recommended at a furry conference.','','','Y','','','','','Declarative package and system management','Being able to easily try out software and packages without polluting the global system (nix-shell -p ...)','Wide variety of software','Remove nix-env from history.','Debian','Y','','','','','','','','','','none','darwin-nix','',''),(1731,NULL,NULL,'en','134515492',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1732,NULL,NULL,'en','502000979',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1733,'1980-01-01 00:00:00',5,'en','1703475599','A8','A5','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Distrohopping','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A7','','','','','','','','A5','A14','A15','','','','','','','','','','','','',NULL,'Other Linux distro. Other development environment like asdf','A4','','','','Y','','','','','','','','','','','','','','','','','','','A23','A24','A5','A9','A14','A2','A3','','','','','','','','','','','','','','','A2','A23','A24','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Not enough knowledge ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','It sounded like a neat idea. Once I got it working I don\'t think I can change. Installation, configuration, updates are now so easy and solid','Y','','Y','','','','','Declarative configuration','Upgrade and rollback to various generations','Nixpks and development environment ','One way to do things. There are way to many options. Simplify terminology.\r\nImprove a number of packages. There are too many half dead projects in nixpkg. Improve docker builds so that images are smaller (some packages pull in way more than needed)','No idea. Some other Linux distro','Y','','','Y','Y','','','','','','dwm, i3','','',''),(1734,'1980-01-01 00:00:00',5,'en','1986048602','A2','A4','male','','','','','','','Y','','','','','','Y','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I got tired of homebrew taking over a minute to sync, and read an article about home-manager setup on macOS, so I switched. It was fairly successful. Encouraged by it I read more, and started using nix flakes on some personal projects. Been in love since ','Y','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'Honestly, I don\'t know. For installing packages, probably homebrew. And for individual projects, docker with the language\'s package manager','A1','','','','Y','','','','','','','','','','','','','','Y','','','','','A15','A4','A19','','','','','','','','','','','','','','','','','','','A19','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Not enough knowledge, I\'m still learning','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1735,'1980-01-01 00:00:00',5,'en','973458352','A2','','','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','','','Y','','','','','Y','Y','','','','','','Y','Y','','','','','','A1','A2','A7','','','','','','','','A14','A13','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A25','A9','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1736,NULL,NULL,'en','1592167815',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1737,NULL,NULL,'en','769486581',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1738,NULL,1,'en','388602666','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1739,'1980-01-01 00:00:00',5,'en','1945326748','A5','A2','male','','','','','','Y','Y','Y','','','Y','','','Y','','','Y','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','','','Y','','','Y','','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','Y','Y','','','','','','','','','','','','A1','A2','A8','','','','','','','','','','','','',NULL,'write my own implementation of something similar but worse','A2','','Y','','Y','Y','','','','','','Y','Y','','','Y','','Y','','Y','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','','','','','','','','','Y','','','','','','','sway','','',''),(1740,'1980-01-01 00:00:00',5,'en','1885540703','A2','A5','male','','','Y','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Really nice for reproducible build environments','','Y','','','','','Y','','','','','','','','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A8','A5','','','','','','','','','','','','','',NULL,'Language specific tools... cargo, poetry etc','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of free time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Wanted some fresher than Debian stable, but as reliable as possible','Y','','','','','','','Atomic updates & rollback','Large package library','Nice language for packaging personal stuff','','Debian stable','Y','','','','','','','','','','Awesome','','','Good work! Thanks.'),(1741,NULL,1,'en','269865064','A2','A2','male','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1742,'1980-01-01 00:00:00',5,'en','1338962206','A2','A4','male','','','','','','','Y','Y','Y','Y','Y','','','Y','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I\'ve been a Debian user for 20+ years, and while I\'m still generally happy with it, due to changing circumstances and preferences, I was looking for something that\'s moving slightly faster, yet, is still of great quality. As I\'m also a big fan of functional and declarative programming, Nix and Guix came into my view, as two possible options. While normally I\'d prefer Guix, due to Scheme being a language much closer to my heart than Nix, I developed a heavy reliance on systemd in recent years. Guix does not have systemd, but Nix does.\r\n\r\nSo I started to experiment with Nix, both with NixOS in a VM, and with Nix on top of Debian. I don\'t use it for much yet, still (slowly, very slowly) learning the ropes, Nix - the language - is quite alien to me, and there\'s always this feeling that I could be using Scheme, if Guix would have systemd - this doesn\'t make it easier. I mean, I do like what Nix and NixOS *does*. But I find the Nix language horrible. But the things possible with it are so good, that I\'m willing to learn it despite my dislike.','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','','','','','A2','A3','A5','','','','','','','','A13','A8','A14','','','','','','','','','','','','',NULL,'Probably Guix, if I could pry myself away from systemd. However, as that is very unlikely to happen, I\'d stick with Debian.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','Drone (for now)','A3','A15','A17','A20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','A few things: primarily, the language. I hate it (sorry). Apart from that, I didn\'t encounter anything I felt I could contribute yet. Most things I needed so far, were already there, and the few things that weren\'t, are personal things, for which I just made a flake for.','N','Y',NULL,'I didn\'t exactly stop, I just got stalled. I want to switch away from Debian, to either NixOS or Guix. Guix lacks systemd, Nix has a horrible language (again, sorry, but gotta be honest here). I\'ve been experimenting with both, and decided to go with NixOS, because working with the Nix language is less horrible than prying myself away from systemd. However, due to various IRL circumstances and hardware failures, I have not been able to make the switch yet.\r\n\r\nI got to a point in my experiments that I know I can rebuild my familiar environment on top of NixOS, I just... didn\'t get there yet.','Time. Or if there\'d be a Lisp-y language built on top of Nix. I\'d drop everything and switch instantly, if I could write my configuration in a Lisp-y language.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Keep up the good work!\r\n\r\n(And please make a Lisp-y DSL/language/whatever on top of Nix, thanks! :))'),(1743,NULL,NULL,'en','1125563178',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1744,'1980-01-01 00:00:00',5,'en','413203584','A6','A2','male','','Y','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A5','A3','','','','','','','','A8','A13','A7','','','','','','','','','','','','',NULL,'gLinux','A2','','','','Y','','','Y','','','','','','','','','','Y','','','','','','A15','A22','A9','A17','','','','','','','','','','','','','','','','','','A22','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Ex-Gentoo user ;)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','','','','Better security features','','Y','','','','','','','','Y','','','','','Long live Nix!!!'),(1745,NULL,NULL,'en','872867703',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1746,'1980-01-01 00:00:00',5,'en','111114908','A2','A2','male','','','','','','','','','Y','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Arch btw, plus Ansible. Moved to NixOs.\r\n\r\nWas using nix for multiple versions of node etc','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','A2','A9','A1','','','','','','','','A8','A2','A4','','','','','','','','','','','','',NULL,'Ansible and pacman','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','A1','','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','F for Ansible, computer went kaput. So had to reinstall','Y','','Y','','','','','Rollbacks','Types for options, rip yaml','Pinning across systems (flake.lock)','Log of the changes when switching configuration, and home-manager or user specific configuration integrated in nixos','Ansible','Y','','','Y','','','','Y','','','sway','Home-manager, flake-utils, rust-overlay, nixos-hardware for common systems config.\r\n\r\nNil as nix language server and nixpkgs-fmt for formatter. ','Nix on other systems (Debian) with nixgl and home manager, too complicated/buggy. ','Thank you for providing this great systems and packages <3'),(1747,NULL,NULL,'en','1344850792',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1748,'1980-01-01 00:00:00',5,'en','661896661','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Taffybar did not compile under arch linux','','Y','','','','','Y','Y','','','Y','','','Y','Y','Y','Y','','Y','','A1','A2','A9','','','','','','','','A8','A3','A4','','','','','','','','','','','','',NULL,'pain and suffering','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A24','A2','A9','A13','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','free time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','remember which settings I have applied myself to config files in /etc','Y','','Y','','','','','organized settings','reproducible builds','generations','default options for user accounts (like home-manager, but done for all users by default)','arch linux','Y','','','','','','','Y','','','','home-manager','','Thank you!'),(1749,NULL,4,'en','863468739','A8','A2','male','','','','','','','','Y','Y','','','','Y','','','','','','','','','','Y','','','','','','Y','','','N','N','Y','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(1750,'1980-01-01 00:00:00',5,'en','1454898027','A5','A5','male','','Y','','','Y','','','','','','','','','','','','','Y','','','Y','','','','CyberSecurity','','','Y','Y','Y','','N','N','','','','','I read an article that interested me, reproducibility is a *key* property of a secure system.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I am looking into doing just this on a new machine in late 2023 or early 2024.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N/A','N/A','Nothing at this time.'),(1751,'1980-01-01 00:00:00',5,'en','936628064','A2','A3','-oth-','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Love configuration as code, love guix, love functional programming, hate imperative configuration as code (ansible, docker files, etc) as they\'re so faffy and jank. Dev shells, deploy-rs, flakes and minimal docker builds all seemed and are godly features.','','Y','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A7','A8','A2','','','','','','','','A6','A8','A4','','','','','','','','','','','','',NULL,'Guix, maybe try write something (nix style terraform!). Podman build shells? Be sad generally using things like ansible.','A2','','','','Y','Y','','','','','','','','','','','','Y','Y','Y','','','gitea/forgejo ','A15','A9','A14','A13','A3','A1','A2','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I hope to do so very soon! Maybe some extra document would be nice but mostly just a \'ill get to it soon\' kinda limitation. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Same as nixpkgs reason. (Better) terrafom but for individual systems.','Y','Y','Y','Y','','','','Declarive system','Fully configuration as code.','Reproducibility, bleeding edge stability ','Improve error messages and nixos rebuild switch output logging','Guix and then be sad after with ansible.','Y','','','Y','','','','','','','sway','None yet','None yet','Keep it up, best thing in computing by a mile. If only I could nixify the windows servers I have to maintain but it\'s not worth your amazing effort!'),(1752,NULL,2,'en','1001645435','A2','A2','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A10','A1','','','','','','','','A13','A4','A6','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Complexity',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1753,NULL,NULL,'en','2074765096',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1754,NULL,NULL,'en','1702844521',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1755,'1980-01-01 00:00:00',5,'en','231639100','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Mostly dependency hell. All I want is for my project to run anywhere :)','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A7','A2','A6','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'Docker','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Best practices. I would love a way to generate a mostly-compliant nix file and a checker that catches common pitfalls','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Loved the concept of defining your system once, then being able to reinstall your entire system, barely noticing any changes afterwards. I love being able to define all my program\'s configurations from a single point instead of scouring through 100 different config files. I make good use of home-manager. Rollbacks are extremely useful','Y','','Y','Y','','Y','','Define system once, install it identically on multiple devices','home-manager','Rollbacks fix my mess','Documentation and errors are ass. A simple way to search options in the command line would be great. The nix language seems overly complicated for what 99% of people want to do. I often imagine a NixOS system configured by writing Dhall','Arch','Y','','','','','','','','','Y','i3','Home-manager is essential and should honestly be part of the main nixos install.','I guess you mentioned hydra but I thought it was too complicated and its a huge clump of Perl which I wouldn\'t trust for a business.','Love you byebye'),(1756,NULL,1,'en','1631078140','A2','A3','-oth-','','','','','','Y','Y','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1757,'1980-01-01 00:00:00',5,'en','372371310','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','A colleague spoke about NixOS a lot','','','','','','','','','','Y','','','','Y','Y','','Y','','','','A2','A3','A1','','','','','','','','A5','A9','A8','','','','','','','','','','','','',NULL,'dpkg','A4','','','','','','','','','','','','','','','','','','','','','','','A14','A2','A4','A3','A15','A24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I use Nix since less than a week.','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','A colleague spoke about NixOS a lot.','','','','Y','','','','Reproducible envs','','','','Debian','Y','','','','','','','','','','','','','I want to try NixOS on a desktop computer next.'),(1758,'1980-01-01 00:00:00',5,'en','2054725109','A2','A3','','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A4','','','','','','','','','Y','','','','','','Y','','','Y','','','','A10','A1','A3','','','','','','','','A15','A6','A2','','','','','','','','','','','','','Improved support for application bundles on macOS (Spotlight search)','asdf or rtx for versioned tooling','A4','','','','','','','','','','','','','','','','','','','','','','','A4','A22','','','','','','','','','','','','','','','','','','','','A8','A6','A12','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Randomly read about it on some forum and the idea just clicked.\r\nAfter trying it on a spare laptop I really like the idea for servers.','','','Y','','','','','Declarative configuration','Automatic updates','Ease of migration','','Arch Linux for servers','Y','','','','','','','','','','','','home-manager, it stopped being sufficiently useful after switching to macOS',''),(1759,NULL,1,'en','1569614916','A2','A4','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1760,'1980-01-01 00:00:00',5,'en','1764203402','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A2','','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A14','A3','A5','','','','','','','','','','','','',NULL,'The system\'s package manager.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A2','','','','Y','','','','','Reproducible config','','','','Probably Debian or similar.','Y','','','','','','','','','','','','',''),(1761,'1980-01-01 00:00:00',5,'en','1126997893','A3','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A3','A10','','','','','','','','A1','A2','A4','','','','','','','','','','','','',NULL,'Guix','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A15','A13','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','','','','','','','','','','Guix','Y','','','','','','','','','','Sway','','',''),(1762,'1980-01-01 00:00:00',5,'en','29639943','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A9','A2','A1','','','','','','','','A12','A8','A5','','','','','','','','','','','','',NULL,'pacman + docker','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A3','A2','','','','','','','','','','','','','','','','','','','A2','A3','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','','Y','','','','','Reproducibility','Maintainability','Flexibility','','pacman + docker','Y','','','','','','nixos-anywhere','','','','marswm','','',''),(1763,NULL,NULL,'en','932723796',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1764,NULL,1,'en','800166539','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1765,'1980-01-01 00:00:00',5,'en','1765365338','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Recommendation from friends','','Y','','','','','Y','Y','','Y','','','','','Y','','Y','','','','A1','A9','A10','','','','','','','','A14','A8','A4','','','','','','','','','','','','',NULL,'ArchLinux','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A5','A15','A4','A2','','','','','','','','','','','','','','','','','A15','A1','A5','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Haven\'t needed yet','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Recommendation from a friend','Y','','Y','Y','','','','Declarability','Stability','Reproducibility','','ArchLinux','Y','','','','','','','','','','DWM','Lanzaboote ','',''),(1766,'1980-01-01 00:00:00',5,'en','1822179343','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Did a lot of setting up laptops in a short period, and had heard good things about nox, finally decided to learn it.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','Y','Y','','A7','A2','A9','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'Probably flatpaks, something like fedora silverblue. Or possibly guix?','A1','','','','Y','','','','','','','','','Y','','','','','','','','','','A2','A1','A15','A13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Not enough time!','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','Whole system in one config','Dconf settings in home manager','Ability to roll back system config','Stabilize flakes, and change all the documentation to talk about flakes only.','','Y','','','','','','','Y','','','','I have used devenv.sh a bit for development','Channels','Keep it up, nix and nixos are great '),(1767,NULL,2,'en','1982241272','A2','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','many people around me have been using it (lots of nerds at uni) and the concept seemed interesting. I am already very interested in functional programming and types.','','Y','','','','','Y','','','','','','','','','','Y','','','','A1','A10','A7','','','','','','','','A5','A14','A7','','','','','','','','','','','','',NULL,'some other linux distro with a wide package repository','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'ve not found anything in need of packaging',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1768,'1980-01-01 00:00:00',5,'en','182772110','A2','A3','male','','','','','','','','Y','','','','Y','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A2','I was interested in NixOS. I like the idea of \"building\" my OS with declarative configuration, I see it as Arch but automated.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A10','A7','','','','','','','','A6','A13','A8','','','','','','','','','','','','',NULL,'Since I mostly use Nix in the context of NixOS, I guess it would mean I would use Arch instead. As for Nix itself, probably Docker or some other container system.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A4','A3','A6','A12','','','','','','','','','','','','','','','','','','A6','A12','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I haven\'t found anything I could contribute. Also, lack of time, when I have the chance to look into contributing something there\'s already a PR open about it.','Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A2','I like the idea of \"building\" my OS, kinda like Arch but with declarative configuration.','Y','','','','','','','Declarative configuration','Rolling release nixpkgs channel','Atomic upgrades and rollback','More packages configuration, I like home-manager but I wish some of the options were also available to configure packages system-wide.','Arch with custom scripts','Y','','','','','','','','Y','','','','',''),(1769,NULL,1,'en','458983393','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y','','','Openbsd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1770,'1980-01-01 00:00:00',5,'en','134224127','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','','','','outdated package versions and inactive maintainers','','Y','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'It takes too much time to solve problems','More and better packages in nixpkgs and documentation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1771,'1980-01-01 00:00:00',5,'en','1947654075','A2','A4','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','','','','','','Y','','','','','','','Y','','Y','Y','','','','A1','','','','','','','','','','A14','','','','','','','','','','','','','','',NULL,'Some other Linux distro. ','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','Rebuild ','Update channel','','','Some other Linux distro ','Y','','','','','','','Y','','','','','',''),(1772,'1980-01-01 00:00:00',5,'en','2051970086','A2','A3','male','','','','','','','Y','','','Y','','Y','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','It intrigues me, and I love the principles behind it.','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A7','A2','A3','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'I don\'t know, maybe Fedora Silverblue.','A2','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A1','A9','','','','','','','','','','','','','','','','','','','','A9','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I am a new user of Nix.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','','DWM','','',''),(1773,'1980-01-01 00:00:00',5,'en','446419465','A2','A4','male','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I use it to setup a VPN with a single configuration file.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Not sure, probably Ubuntu / Pop_OS','A1','','','','Y','','','','','','','','','','','','','','','','','','','A4','A22','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','For a personal VPS to setup web server & co.','','','Y','','','','','Configure an entire system from a single source of truth.','Functional paradigme with rollbacks.','','More documentation and tutorials, my knowledge mainly comes from copying others\' configuration and making sense out of it via trial and error.','Linux with custom scripts to configure/sync software.','Y','','','','','','','Y','','','','','',''),(1774,NULL,2,'en','287974118','A2','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','','','','','','','','Y','','Y','','','','A1','A2','A3','','','','','','','','A4','','','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1775,'1980-01-01 00:00:00',5,'en','76231591','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A10','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Sway','','',''),(1776,NULL,NULL,'en','1481260248',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1777,'1980-01-01 00:00:00',5,'en','1389776024','A2','A3','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Because Arch Linux fucked up my installation.','','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A5','A1','A2','','','','','','','','','','','','',NULL,'I would cry I think. Probably Debian because stability.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','Because Arch Linux fucked up my system installation.','Y','Y','','Y','','','','Declarative Installation','','','','Probably Debian because stability.','','','','','','','krops','','Y','','','krops','',''),(1778,'1980-01-01 00:00:00',5,'en','802611391','A2','A3','male','','','','','','','Y','','','','Y','','','','Y','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started work at Tweag and that was a good moment to take a look at Nix. I originally wanted to try it out because it\'s quite popular in the Haskell community, and because I quite fancied the way you configure NixOS.','','','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A14','A2','A10','','','','','','','','','','','','',NULL,'Nix does not have alternatives for what it does, other than maybe Guix.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A5','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','* Navigating nixpkgs sources is hard because it\'s up to your grep skills, afaik\r\n* I do not know the MR process\r\n* I do not know the peculiarities of all the different subcommunities I would contribute to','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to try nix and I fell in love with the declarative system management.','Y','','Y','','','','','Declarative service management','Unified system management (e.g. I have a common.nix module which I use for all my systems)','Easy overriding/patching of packages','Declarative disk management','Debian most likely or Gentoo, might try GuixSD','Y','','','','','','','','','','i3','* nix-direnv \r\n* github.com/tek/hix\r\n* github.com/tek/helic\r\n* flake-utils','','Keep up the good work!'),(1779,'1980-01-01 00:00:00',5,'en','251310237','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','In university we had the ability to SSH into big compute servers to do our work, but they were running CentOS and we were not allowed to install any additional system packages. I spent a bunch of time compiling several things \"from scratch\" but quickly got fed up, then installed Nix in order to benefit from nixpkgs.','','Y','','','','','Y','Y','Y','Y','','','Routers','','Y','Y','Y','','Y','','A7','A1','A10','','','','','','','','A11','A2','A1','','','','','','','','','','','','',NULL,'I\'d probably try Guix. Or maybe flatpak.','A4','Y','Y','','Y','Y','','','','Y','','','','','','','','Y','','','','','','A20','A1','A7','A2','A3','A10','A9','A15','A19','','','','','','','','','','','','','A20','A1','A2','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','For a university project we needed a bunch of raspberry Pis all configured nearly identically, and I figured it would be easier to do this declaratively than set up each of them manually. So I wrote a NixOS configuration and was able to just generate SD card images out of that. It worked great!\r\n','Y','Y','Y','Y','','','Routers','Declarative System Configuration','Availability of modules in nixpkgs','NixOS tests','Speed up evaluation time a ton! (I have a magic wand so let\'s say 1000x)','Probably ansible + suffering.','Y','','','','Y','','','Y','','','','- agenix\r\n- nix linters/formatters (e.g. alejandra)\r\n- vulnix\r\n- lang2nix tools (particularly dream2nix, mach-nix, crane, npmlock2nix, clojure-nix-locker, bundix)','- crate2nix\r\n- rnix-lsp',''),(1780,'1980-01-01 00:00:00',5,'en','1833699838','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','','','/e/ (android fork) on my phone ','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I was exploring new Linux distributions. I came across NixOS and tried it. Because I found it a very interesting approach to packages distribution and system administration, and of the size and quality of the nixpkgs repo, I now started to use it on my personal laptop. Also, I like the reproducibility aspects a lot.','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A7','A5','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'apt, podman, flatpak','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A21','','','','','','','','','','','','','','','','','','','','A15','A2','A13','','','','','','','','','','','','','','','','','','','','','','','A1','','It\'s already excellent, there are probably things I could do like bug reports or packages requests but I cannot complain as it seems to be an easy process.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I was exploring new Linux distributions, and was also interested by reproducibility. I came across NixOS and found it very nice.','Y','','','','','','','Nixpkgs has tons of packages, and they are mostly up-to-date','Reproducibility','This single configuration.nix file to manage my whole computer is something I find very impressive','I would make better learning material, better documentation, and a better UX for the desktop.','Debian, Fedora/ Fedora silverblue, or Arch.','Y','','','','','','','Y','','','','','','Thanks a lot to Nix, Nixpkgs and NixOS makers and contributers. I\'m a very new user but I hope to be able to contribute someday.'),(1781,'1980-01-01 00:00:00',5,'en','1803906873','A2','A3','male','','','','','','','Y','Y','','','Y','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Initially because I wanted a better package manager with more up to date packages then I started using NixOS','','Y','','','','','Y','Y','','','Y','','','Y','Y','Y','Y','','','','A1','A7','A2','','','','','','','','A9','A8','A13','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A5','A20','A2','','','','','','','','','','','','','','','','','','','A5','A20','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was looking for a more robust distribution, than I saw that NixOS has one of the biggest and most up-to date package repository ','Y','','Y','','','','','/etc/nixos/configuration.nix','Stability','Reproducibility','','A normal Linux distribution','Y','','','','','','','Y','','','','home-manager','',''),(1782,NULL,NULL,'en','270191277',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1783,'1980-01-01 00:00:00',5,'en','480201120','A2','A3','male','','','','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A3','','','','','','','','A4','A8','A5','','','','','','','','','','','','',NULL,'','A7','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Not being good enough yet.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','Y','','','','','','','','','','Y','','','Y','','','','','','','','','',''),(1784,'1980-01-01 00:00:00',5,'en','774972949','A2','A2','fem','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Automating my network infrastructure configs','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A2','A3','A5','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'a stone','A1','Y','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A2','A15','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','Y','Y','Y','','','','Module system','Pinned nixpkgs version','Rollback','','Archlinux','Y','','','','Y','','','Y','','','','','',''),(1785,'1980-01-01 00:00:00',5,'en','1158584484','A7','A4','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','Y','Y','','','A2','i found it interesting','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A14','A4','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','A15','A4','A7','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','running it on spare laptop to tinker ','Y','','','','','','','','','','','','','','','','','','','Y','Y','','','','',''),(1786,'1980-01-01 00:00:00',5,'en','1639009828','A2','A4','male','','Y','','','','','','Y','','','','','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','To many Arch updates had broken my system and I wanted an upgrade path that could be trivially rolled back','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','A2','A3','A7','','','','','','','','A8','A10','A6','','','','','','','','','','','','',NULL,'Guix, then Arch','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A4','A13','A15','','','','','','','','','','','','','','','','','','','A1','A23','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Sway','','',''),(1787,NULL,NULL,'en','792178654',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1788,NULL,1,'en','287384783','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1789,NULL,NULL,'en','772657826',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1790,'1980-01-01 00:00:00',5,'en','756897392','A2','A1','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','N','N','Y','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Word of Mouth, apt, an AutoInstaller.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Hydra seems cool'),(1791,NULL,NULL,'en','513729230',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1792,'1980-01-01 00:00:00',5,'en','1611837172','A2','A3','male','','','Y','Y','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','','','','N','N','Y','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A3','Y','Y','','','A3','REBUILDING AN OLD PHP WEB APP FOR URGENT MAINTENANCE','Y','Y','Y','','','','','CONTROL','REPEATABILITY','CONFIDENCE','WRAP THE LANGUAGE INTO SOMETHING A BIT MORE PLEASANT TO WRITE & READ','','Y','','','','','','BENTO','','','Y','','','',''),(1793,NULL,NULL,'en','1374564845',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1794,NULL,NULL,'en','1069224587',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1795,'1980-01-01 00:00:00',5,'en','1833737914','A2','A2','-oth-','Why is this important?','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','Android','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','At the the time I messed around with configs alot so I heard of NixOS as something that could unify all configs into one place. But then when I got into nix and flakes I realized just how better of a system it is.','','Y','','','','NixOnDroid','Y','Y','','','Y','','','','Y','Y','Y','','','','A3','A2','A7','','','','','','','','A12','A8','A5','','','','','','','','','','','','',NULL,'Pacman or dnf, and all the language specific package managers','A1','','','','Y','Y','','','','','','','','','','','','','','','','','Don\'t use a CI','A2','A1','A4','A15','A3','','','','','','','','','','','','','','','','','A20','A14','A17','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','All the packages I need are on it already, the rare ones that are missing are usually missing because they are complicated to package. Also not 100% sure how to.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','To more easily control the software on my system.','Y','','Y','','','','','Powerful options that setup things that would otherwise be complicated','A central repository that contains my configurations','Rollbacks','Even more options, better default options.','Fedora or arch linux','Y','','','','','','','Y','','','','Nil for lsp','','Keep on keeping on'),(1796,'1980-01-01 00:00:00',5,'en','1565521455','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','managing packages under linux was a lot of work. the ones i cared about were more outdated than arch. contributing an upgrade is hard: every package on nixpkg is its own little snowflake (no punto intended)','','','','','Y','logs of problems with locale','Y','','','','','','','','','','Y','Y','','','','','more standard strutture for packages in nixpkg. versione URL and Nash could be stored in a plain data file, possibly even automatically upgraded from repology or something',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Home manager dotfile management is a big mess and eventually i gave up on it and nix\r\n\r\nNix itself is ok I guess but it doesn\'t woke great on a non nixos host. \r\n\r\nUltimately, it was just too much work, docs are scant and I wasnt really benefitting from it as much as I thought I would','Maybe. If package sources on nixpkgs are more uniform, the CLI is more uniform (one way to do things..), and docs are better',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1797,'1980-01-01 00:00:00',5,'en','428891919','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','Y','','A2','A friend of mine recommended it for my dotfiles, especially NixOS, and after considering alternatives and other applications, I decided to learn it.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A7','A10','A1','','','','','','','','A7','A6','A3','','','','','','','','','','','','',NULL,'Dotdrop, flatpak, archlinux, patience and resilience','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A2','A4','A25','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time','N','Y',NULL,'Not much time to configure it entirely.','Having spare time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'flake-utils','Digga, flake-utils-plus, Standard, nvfetcher','A unified and general framework for managing flakes (both system-level and user-level), similar to what digga does, is needed.\r\nCurrently I\'m trying to implement my proof of concept.'),(1798,NULL,NULL,'en','477177907',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1799,'1980-01-01 00:00:00',5,'en','753696951','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Developer, compilers','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Managing systems both personally and in a previous job ','Y','Y','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A6','A3','A13','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'N','Y',NULL,'Stopped maintaining personal servers ','If I wanted to have personal servers again ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','',''),(1800,'1980-01-01 00:00:00',5,'en','1283432289','A2','A2','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Some friends started using NixOS, I was immediately sold on the idea of a declerative way of configuring my system so I switched as soon as I could. This meant I had to start learning Nix. ','','','','','','','Y','Y','','','','','','','Y','','Y','','Y','','A2','A7','A1','','','','','','','','A4','A2','A14','','','','','','','','','','','','',NULL,'Docker or just the default package manager of my system','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Haven\'t had the need to contribute','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Some friends started using NixOS, I was immediately sold on the idea of a declerative way of configuring my system so I switched as soon as I could. ','Y','','Y','','','','','Declarative system config','Easy rollback','','','I would use Arch Linux for my personal machines and Fedora for Servers. ','Y','','','','','','','','','','i3','I use home manager to configure my dot files ','',''),(1801,'1980-01-01 00:00:00',5,'en','195751209','A8','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','','','Y','','','','','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','Y','Y','','A2','A3','A1','','','','','','','','A2','A1','A12','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','Y','','','','','','','custom','A13','A21','A22','A3','','','','','','','','','','','','','','','','','','A2','A13','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','','Y','Y','Y','Y','Y','','','Declarative config','Rollbacks','Remote deployment','','Openbsd','Y','','','','','','','','','','arcan','','',''),(1802,NULL,1,'en','156999344','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','Y','','','','','','','Y','','','Android',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1803,NULL,2,'en','1604203479','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','','','Y','','','Android :/','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I heard about it on a local conference, so I borrowed a VPS to try it out. Over about 1 year I migrated all the things from my old system and shut the other VPS down, so now all my servers are NixOS. I only use Nix on desktop sometimes to install packages not present in Arch repositories.','','Y','','','','','','Y','','','','','','Y','','','Y','','Y','','A7','A1','A9','','','','','','','','A8','A5','A4','','','','','','','','','','','','',NULL,'Probably pyinfra for software defined infrastucture with a lot more containers to avoid version clashes.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A12','','','','','','','','','','','','','','','','','','','','A12','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I don\'t have issues with existing packages, and packaging new software is not that easy',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1804,NULL,NULL,'en','42397746',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1805,NULL,NULL,'en','531335661',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1806,'1980-01-01 00:00:00',5,'en','657725521','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','','','','','','Y','','Y','','','','','','','Y','','','','A7','A1','A10','','','','','','','','A3','A6','A9','','','','','','','','','','','','',NULL,'Debian + Docker','A5','','','','','Y','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','Y','Y','','','','','','','','Debian + Docker','Y','','','','','','','','','','','','',''),(1807,'1980-01-01 00:00:00',5,'en','839562346','A5','A5','male','','','','','','','Y','Y','Y','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','As a replacement for homebrew.','Y','Y','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A3','A1','','','','','','','','A6','A13','A8','','','','','','','','','','','','',NULL,'Ansible, custom shell scripts, asdf-vm','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A2','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','No particular need. Almost nothing I need is not already there.','N','Y',NULL,'Doing python development in sync with people not using Nix was too painful; building python pip modules with C extensions failed in a variety of mysterious ways.','Intending to for home lab usage.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Currently using: alejandra, nix-update, nvd, nix-index, home-manager\r\n\r\nIntending to soon: sops-nix, nixos-anywhere, disko, impermanence.','',''),(1808,'1980-01-01 00:00:00',5,'en','1132468697','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','It allows me to automate things to a great extent. Can be used to solve so many problems, packaging, reproducible development environment, system configuration, deployments, e.t.c.','','Y','','Y','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','Y','','A1','A2','A3','','','','','','','','A8','A9','A2','','','','','','','','','','','','',NULL,'Explore guix/spack or suffer with something like Ansible','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A9','A1','','','','','','','','','','','','','','','','','','','A20','A23','A24','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I am a fan of automation and dislike doing things manually. Before discovering NixOS I went through unpleasant times with Chef, Puppet, Ansible and SaltStack trying to automate much of what comes with maintaining a Linux based operating system. With much effort I managed to get a lot of things automated, but not even close to what NixOS could achieve and with that kind of stability. Discovering NixOS was a game-changer, especially the module system and how it can be used in such a flexible way.','Y','Y','Y','','','','','Configuration as code','Reproducibility','Composability','A transparent abstraction of init systems, to support any init system in the configuration.','Guix? ArchLinux?','Y','','','','','Y','','Y','','','','flake-parts, home-manager, devshell, terranix, NixOS-WSL, pre-commit-hooks.nix, treefmt-nix, cachix, twist.nix, emacs-overlay, nixos-hardware, flake-compat, comma, nil, alejandra','',''),(1809,'1980-01-01 00:00:00',5,'en','1636608227','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was distro hopping and NixOS looked interesting.','','','','','','','Y','Y','','','','','','Y','','','Y','','','','A1','A2','','','','','','','','','A14','A10','A8','','','','','','','','','','','','',NULL,'Fedora or Debian.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','A hand crafted script that calls nix flake update;nixops deploy and then commits the changes','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','I was distro hopping and discovered NixOS','Y','Y','','','','','','Atomic rollback','Package availability','Declarative configuration','','Fedora or Debian','','Y','','','','','','','Y','','','','',''),(1810,NULL,NULL,'en','1848136006',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1811,'1980-01-01 00:00:00',5,'en','1487501865','A2','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I\'ve seen Nix post on HN or lobste.rs and liked the idea, especially the declarative nature compared to apt or Docker. First I tried the package manager on my work Ubuntu system. When I had a free weekend I reinstalled my work laptop to NixOS, to try it out. I wasn\'t sure how to dual boot it with Ubuntu installed fist, so I backed my data and did a clean install and hoped it will be usable. I\'m learning and using Nix and NixOS since.','','Y','','Y','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Ubuntu and Docker. I would probably try Guix or search for something else similar to Nix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A10','A15','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I don\'t understand it that well yet. Also most software I needed is already on nixpkgs and I don\'t maintain any open-source projects that would make sense as nix packages.','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Already told it in previous question about Nix package manager.','Y','','','','','','','declarative configuration','installing multiple versions of PHP, Node, Python, it makes more sense to me compared to update-alternatives and similar in other distros','its fun and exciting compared to regular Linux distributions','I would make it so Flakes are stable and the official way to use Nix/NixOS. So the documentation is not split between flakes and not-flakes.','Ubuntu, it has least problem with hardware/drivers ','Y','','','','','','','','','Y','','home-manager\r\nnix-direnv\r\n','','I was surprised how old Nix is. It feels really modern. I like the new Nix command and Flakes I hope it gets stabilized soon. \r\n\r\nWhat I would like to see in the future is specific official documentation for user stories, for example: \r\n\r\n\"I\'m a developer and want to get the correct versions of my dev dependencies or make a Docker container\"\r\n\"I\'m a package maintainer and want to make a package for nixpkgs\"\r\n\"I\'m a sysadmin and want to deploy server with NixOS\"\r\n\r\nAlso I feel like most information I consumed was from other people blogs and the wiki and not the official docs. It might be just me, but there is something that bugs me about the official docs. It might be combination of long pages and lack of TOC navigation, for a reference-style documentation.\r\n'),(1812,NULL,3,'en','186916731','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','There is a Linux slack channel at work and they were talking about it. The I found out about a nix channel at work and just got curious.\r\nI wasn’t happy with Ubuntu and ansible. \r\nUnfortunately I only use it for personal projects as my work has a mac only policy.','','Y','','','','','Y','','','','','','','','','','Y','','','','A10','','','','','','','','','','A4','A6','A5','','','','','','','','','','','','',NULL,'','A4','','','','','Y','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','',NULL,NULL,NULL),(1813,'1980-01-01 00:00:00',5,'en','2071548070','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','A friend dared me to try it out, and then I stuck with it because I liked it.','','Y','','Y','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A5','A14','A9','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','Y','','','','A2','A10','A9','A12','A13','A14','A18','A22','A25','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I haven\'t had the need yet, until recently, so I\'ll probably soon do so.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','StumpWM','','','I *think* I\'m beginning to understand what flakes are all about, but it still seems a bit overcomplicated to me, and I\'m not sure I really understand it. I\'m currently using the community project niv, which is sufficiently straightforward for me to understand. I want to use flakes, but I haven\'t gotten around to it yet, and it bugs me a bit.'),(1814,NULL,1,'en','1325575658','A2','A3','male','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1815,'1980-01-01 00:00:00',5,'en','946732798','A8','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','Y','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was looking for alternatives for homebrew','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A2','A6','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'stuck with homebrew and build docker images for my CLIs','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A1','','The nikpkgs repo is too big and it is not clear on how to contribute and update packages. Also documentation of nix is really messy so I am not motivated to learn nix language.','N','Y',NULL,'Some softwares are not compatible. For example, Zoom and Microsoft teams failed to run on my hardware and after spending hours to debug I could not get it to work so I gave up.','When the software that I use do not give me trouble on my hardware',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1816,'1980-01-01 00:00:00',5,'en','821031819','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','Linguistics Student','','','Y','','','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1817,NULL,2,'en','1387327817','A1','A4','-oth-','A duck','','','','','Y','Y','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was curious after seeing a few people recommend it. Being able to configure my os (NixOs) so it was deterministic was a big selling point. I found where most people use ansible as a task runner, what they really need is nix. Nix was a big long rabbit hole for me','Y','Y','','','','Creating vms/lxc’s for proxmox','Y','Y','','','','','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A14','A8','A6','','','','','','','','','','','','',NULL,'GUIX, I only use NIX as discovered nix first. If I tried GUIX first I’d probably use that for no reason other than I used it first.\r\n\r\nWithout GUIX or NIX, a bunch of janky shell scripts, ansible, puppet.','A1','','','','Y','','','','','','','','','','','','','','','','','','','A1','A5','A11','A15','A2','','','','','','','','','','','','','','','','','A5','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Accessibility \r\n\r\nI know enough to hack some flakes together but committing to nixpkgs is a different matter. I have actively looked but have read a fair amounts of nix docs but haven’t seen anything on the nix repo structure, guides to adding packages etc.\r\n\r\nWhen packages I use have had issues I’ve tried to patch them and raise prs where I can but for some of the complex things like rust runtimes etc, it’s often been overwhelming. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1818,'1980-01-01 00:00:00',5,'en','252338094','A1','A3','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1819,NULL,1,'en','2143618645','A2','A3','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1820,'1980-01-01 00:00:00',5,'en','865575122','A2','A4','male','','','','','Y','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Replicability and predictability. ','Y','Y','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','','','','A7','A3','A2','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Ubuntu. ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A7','A2','A1','A9','A8','A20','','','','','','','','','','','','','','','','A7','A2','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Time. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Replicability and predictability. ','Y','','Y','Y','','','','Declarative configuration ','Predictive builds ','Stability ','The improvement from Ubuntu was just so great I have no opinion on this yet. ','Ubuntu. ','Y','','','','','','','Y','','','','','',''),(1821,'1980-01-01 00:00:00',5,'en','502549303','A1','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','I had been interested in it, but I did not start using it until a friend used it in his project and I wanted to check it out.','','Y','','','','','Y','','Y','Y','','','','','Y','Y','','','','','A1','A3','A9','','','','','','','','A14','A4','A5','','','','','','','','','','','','',NULL,'Nix is the only real option for my work, using Obelisk/Reflex.','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A2','','Time.','Y',NULL,NULL,NULL,NULL,'A4','Y','','','','A3','I figured using NixOS would make me learn Nix better/faster.','Y','','','','','','','Rollback','Declarative configuration','Nix integration','There is nothing big, just many small issues.','I use Arch as my primary OS because a wide range of software works without hassle and gets timely updates. I am also able to easily experiment with stuff.','Y','','','','','','','','','','i3','Cachix','','Nix takes an incredible amount of work/effort to maintain. Thank you!'),(1822,NULL,1,'en','674511183','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1823,'1980-01-01 00:00:00',5,'en','1668053900','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A7','A3','','','','','','','','A14','A9','A5','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','','','','','A3','A13','A1','','','','','','','','','','','','','','','','','','','A3','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','','XMonad','','',''),(1824,NULL,2,'en','711666328','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','Curiosity ','','','','','','','Y','','','','','','','','Y','','Y','','','','A1','','','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','','','','','A18','','','','','','','','','','','','','','','','','','','','','A18','','','','','','','','','','','','','','','','','','','','','','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1825,NULL,NULL,'en','200143823',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1826,'1980-01-01 00:00:00',5,'en','171813752','A2','A4','male','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because I need reproducible environments for scientific research. Getting the same results in 3 years time is important.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A1','A9','','','','','','','','A12','A8','A3','','','','','','','','','','','','',NULL,'my own half baked solution in this space.','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A21','A10','A18','','','','','','','','','','','','','','','','','A21','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because my ubuntu wouldn\'t upgrade because they deleted the necessary packages. And I was already using nix for scientific environments.','Y','Y','Y','Y','','','','Decelerative configuration','Fearless switching thanks to rollbacks','Shared builds','Free binary caching for the masses.','Ubuntu, I suppose.','','','','','','Y','','','','','i3','mach-nix','',''),(1827,'1980-01-01 00:00:00',5,'en','1676854356','A8','A3','male','','Y','','','Y','','Y','','','','','','','','','Y','','Y','','','Y','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','A critical internal work tool is only compatible with NodeJS 10, which was not avaliable in nixpkgs. No support for running arbitraryu binaries, attempted to compile from source and unfortunately that failed','','','','','','','','','','','','','Y','Given more time, I could learn a bit more nix. Maybe some entry-level devops stuff from the ground-up in nix sould be a useful tutorial?','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Details on last page. To recap, I found installing different versions of packages alongside each other pretty unclear in Nix. Personally I prefer to use the ASDF-vm tool for switching between python and nodejs versions, but this was unsupported in Nix.\r\n\r\nWhile I\'d like to learn the \"proper\" nix way to handle this, I discovered that there\'s hard limits on what versions are avaliable. I had an internal work tool that only works with nodejs version 10, which was deprecated and also unavailable on nixpkgs','More freedom to install anything, even deprecated software (with disclaimers of course).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','It\'s a great project, it may not be for everyone. But I\'m considering using this more regularly on my personal machine! '),(1828,'1980-01-01 00:00:00',5,'en','340022829','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was forced to use nixos for a project I was doing with a friend.','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A10','A3','','','','','','','','A8','A4','A3','','','','','','','','','','','','',NULL,'Probably debian ','A4','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A15','A10','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Unclear guidelines, general chaos, reviews taking months.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was forced to use nixos for a project I was doing with a friend.','Y','','Y','Y','','','','Configuration management','Easy rollbacks','','I\'d make /etc/systemd/system mutable.\r\n\r\nI\'d also work towards better composability of modules, but no concrete proposal here yet.','arch on desktop, debian on servers','Y','','','','','Y','','','','','openbox','','',''),(1829,NULL,2,'en','1073963823','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','Y','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted to build reproducible cross-platform build environments for macOS and Linux for work. When looking in to anix, I decided to also switch to it as my main os.','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','','A1','A2','A10','','','','','','','','A9','A8','','','','','','','','','','','','','',NULL,'Docker and Arch Linux','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','','','','','','','','','','','','','','','','','','','','A9','A3','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','To many options for packaging',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1830,'1980-01-01 00:00:00',5,'en','1570925378','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Dev shells and reproducible dotfiles.','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A3','A6','A1','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'Guix ','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','Sourcehut','A1','A13','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducibility ','Y','','Y','','','','','','','','','','','','','','','','','','','','','','',''),(1831,'1980-01-01 00:00:00',5,'en','153304203','A1','A4','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','declarative','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','Y','','A2','A7','A1','','','','','','','','A4','A6','A12','','','','','','','','','','','','',NULL,'become a farmer','A2','','','','Y','','','','','','','','','','','Y','','','','','','','','A22','A15','A25','','','','','','','','','','','','','','','','','','','A22','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','bloody community has gone woke. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','declarative ','Y','','','','','','','atomic rollback','declarative','source builds','I would remove all the woke people. ','become a farmer','Y','','','','','','krops','Y','','','','','','stop being so woke. '),(1832,NULL,1,'en','747733134','','A3','male','','','Y','','','Y','','','','','Y','','','Y','','','','Y','','','','','','Y','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1833,NULL,NULL,'en','1758769467',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1834,'1980-01-01 00:00:00',5,'en','822822622','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','N','N','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','A somewhat detailed tutorial for getting set up for development. Especially a setup that would either complement or replace the use of version managers for the Ruby language and required gems.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1835,'1980-01-01 00:00:00',5,'en','239915401','A1','A4','male','','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','','Y','Y','Y','Y','Y','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','','Y','','A1','A10','A2','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'','A4','','Y','','Y','Y','','','','','','','Y','','','Y','','','','','','','','A2','A15','A3','A4','A10','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','Y','Y','','','','','','','Y','Y','','','','','','Y','','','','','','Beware of woke shit'),(1836,'1980-01-01 00:00:00',5,'en','988895498','A1','A4','male','','','','','','','','','','','','','','','','','','Y','Y','','','','','Y','','Y','Y','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','Y','','','','','','Y','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1837,NULL,2,'en','640546425','A2','A2','fem','','','','','','','','','Y','','Y','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','my friend telled me about NixOS','','Y','','','Y','','Y','','','','','','','','Y','','Y','','','','A6','A7','A9','','','','','','','','A14','A5','A10','','','','','','','','','','','','',NULL,'docker for containers and just use imperative system','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','A15','A24','','','','','','','','','','','','','','','','','','A2','A15','A24','','','','','','','','','','','','','','','','','','','','','','','A1','','Knowledge of Nix language and my lazyness',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1838,NULL,NULL,'en','166543757',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1839,'1980-01-01 00:00:00',5,'en','791884767','A4','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','Y','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A12','A6','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','','',''),(1840,'1980-01-01 00:00:00',5,'en','95703782','A8','A3','male','','','','','','','Y','','','Y','','Y','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Because I wanted something stable for my home-server, and using it for my home-server also seemed like a good stepping-stone for using it on my desktop/laptop later on.','','Y','','','','','','Y','','','','','','','Y','Y','Y','','','','A2','','','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'Apart from Guix? Probably just Ubuntu/whatever is \"standard\", for my home server. ','A7','','','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A2','','1. I can\'t package my software\r\n2. I don\'t have anything in particular to contribute anyway','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','(I already answered this with Nix)','','','Y','','','','','Declarative configuration','Being able to write custom software and then deploy it to my NixOS system','','1. I would make documentation that assumes I\'m learning *on* NixOS, instead of assuming e.g. that I already know how to e.g. set up an Ubuntu server and am simply trying to transfer existing setup/understanding over to NixOS.\r\n2. I\'d resolve secrets by either A) picking one specific secrets manager and making it the default, or (since people haven\'t come to a consensus on e.g. whether to store secrets encrypted inside nix-store or outside the nix-store entirely) B) creating a standard interface for specifying the secret and hiding the specific secret-manager behind that abstraction (and perhaps then you could just write \"secrets-manager=sops-nix;\" or whatever). Either would be an improvement, I don\'t care which, just make it easy for me to add *some* security and then move on with the configuration.\r\n3. I\'d change the syntax of Nix so that semicolons aren\'t a piece of syntax in the middle of the line, and instead mean \"the things before the semicolon are not connected to the things after the semicolon\" like it does in any *sane* language.\r\n4. I\'d harshly reduce the number of tools used for NixOS instead of having 10 different tools for managing secrets, packaging, etc. (very heavily leaning on that magic wand here)','Guix, or Ubuntu/whatever is \"standard\" for home servers.','Y','','','','','','','','','','','','',''),(1841,'1980-01-01 00:00:00',5,'en','1982189492','A2','A4','male','','','','','','','','Y','','','','','','Y','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','It\'s really nice when the whole system is defined with a single text file. It feels like there is a lot lot less moving parts this way.','','','','','Y','','Y','','','','','','','','Y','Y','Y','','','','A2','A5','A9','','','','','','','','A5','A2','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','Garnix','A19','A8','A1','A5','','','','','','','','','','','','','','','','','','A19','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I feel my skills are not enough to pass PR review, also I don\'t have enough time to be a maintainer','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Read many stories about it is being declarative and finally gave it a try. Tried gnome version, didn\'t like it and switched to KDE/Plasma version.\r\nI really like that the whole system is configured with a single text file, although it is quite hard to configure sometimes. I don\'t use home-manager as it looks like it is not stable enough and can\'t reliably convert KDE configs to a text configuration and vice versa.\r\n','Y','','','','','','','Declarative configuration for the whole system','First-class support for nix package manager','Source distribution with binary caches guaranteed to match the source, and ability to install non-free tools','- Ability to verify that my system exactly match my configuration (for peace of mind and security)\r\n- 100% translation of third-party apps configurations to nix configs and vice-versa, i.e. custom changes from apps UIs/TUIs should not be present after reboot/relogin/relaunch unless I committed them','Ubuntu + bazel/buck/similar hermetic multilanguage build tool','Y','','','','','','','','Y','','','nix-parts\r\nflakes','dream2nix - tried to adapt it for my gradle project, but didn\'t have time to finish\r\nflake-utils - don\'t like looking for docs for it too and mostly can write flakes without them\r\nnix pills - too abstract to finish when I usually have nix-related task at hand I\'d like to understand better','I really miss docs on good practices, pre-made code fragments for common tasks, some interactive web tutorials'),(1842,NULL,NULL,'en','906141699',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1843,NULL,1,'en','1394078773','A2','A4','male','','','Y','','','Y','Y','','','Y','Y','','Y','Y','Y','','Y','Y','','Y','','Y','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1844,NULL,NULL,'en','1041467478',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1845,NULL,NULL,'en','883142555',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1846,NULL,NULL,'en','473265362',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1847,'1980-01-01 00:00:00',5,'en','841265531','A2','A2','-oth-','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A7','A10','A2','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'I\'d probably end up using something like Fedora Silverblue, so rpm-ostree, dnf and toolbox, I guess','A7','','Y','','Y','Y','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I tried it and couldn\'t leave','Y','','Y','Y','','','','The config file(s)','Atomic updates and rollbacks','Ability to relatively easily create new packages','Add documentation, support for indentation with tabs\r\nChange error messages\r\n','Probably Fedora Silverblue','Y','','','Y','','Y','','Y','','','Sway','home-manager, agenix','',''),(1848,NULL,1,'en','1303259655','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1849,NULL,2,'en','1482795448','A1','A5','male','','','','','','','','','','','','','','','','','','','','','','','','','Translator','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','','','NixOS','A4','I switched from Linux Mint to NixOS because I wanted to be able to install recent packages without dependency hell','','','','','','','Y','','','','','','','','','','Y','','','','A1','A7','A10','','','','','','','','A5','A13','A14','','','','','','','','','','','','',NULL,'Flatpak','A4','','','','','','','','','','','','','','','','','','','','','','','A13','A15','A2','','','','','','','','','','','','','','','','','','','A13','A15','A2','','','','','','','','','','','','','','','','','','','','','','','A2','','Lack of documentation and a reluctance to negotiate social interactions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1850,NULL,4,'en','162936086','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','My KDE Neon installation broke (once again) due to a broken update and I heard you could just roll back updates without any problems on NixOS.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A8','A5','','','','','','','','','','','','','',NULL,'No','A7','','','','Y','','','','','','','','','','','','','','','','','','','A13','A25','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Nothing, i already did','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','All of my daily computing','A3','My KDE Neon installation broke (once again) due to a broken update and I heard you could just roll back updates without any problems on NixOS.','Y','','Y','','','','','Extremely stable','Rollback in case of fuckup','Single source fo truth for the state of the system','Some parts of the nix-lang feel a bit clunky to use (maybe a more haskell-like syntax (I\'m not sure though))','Arch linux maybe?','Y','','','','','','','','','','Hyprland','Home-manager','',NULL),(1851,'1980-01-01 00:00:00',5,'en','1064853761','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','A Friend of mine discovered NixOS on the Internet and was fascinated by it, started using it and told me very enthusiastically about it. In the beginning, I was very sceptical about it, like: binaries aren\'t at /usr/bin, wtf! Get that thing out of my face! But then, i realized what you can achieve with it, like configuring your system exactly how you want to and completely apply this config on another machine. I thought that it might be worth a try at some point in the future. Not even a month later, the graphics of my KDE Neon (Ubuntu-based Distro) broke down due to a faulty Update. Exactly the kind of Problem NixOS doesn\'t have. After three days of trying to fix the existing Installation, I decided to reinstall, but I thought, „if not now, then when?“, so I installed NixOS.','','','','','','','Y','Y','','','','','','','','Y','Y','','','','A7','A1','A10','','','','','','','','A8','A4','A1','','','','','','','','','','','','',NULL,'Maybe I\'d have a closer look at GNU Guix. Otherwise, the system package manager (apt/pacman) or the package manager of the respective language.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A2','A15','A3','A22','A9','A6','','','','','','','','','','','','','','','A6','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A Friend of mine discovered NixOS on the Internet and was fascinated by it, started using it and told me very enthusiastically about it. In the beginning, I was very sceptical about it, like: binaries aren\'t at /usr/bin, wtf! Get that thing out of my face! But then, i realized what you can achieve with it, like configuring your system exactly how you want to and completely apply this config on another machine. I thought that it might be worth a try at some point in the future. Not even a month later, the graphics of my KDE Neon (Ubuntu-based Distro) broke down due to a faulty Update. Exactly the kind of Problem NixOS doesn\'t have. After three days of trying to fix the existing Installation, I decided to reinstall, but I thought, „if not now, then when?“, so I installed NixOS.','Y','','Y','','','','','The ability to roll back between generations','The ability to maintain a shared system configuration in one place, applying it to various machines.','Easily extending my system in a reproducible way by customizing existing packages (overrides)','','Maybe I\'d have a closer look at GNU Guix. Otherwise, probably something Debian-based. Maybe Arch.','','','','','','','','','','','i3wm','Nil language server, nix-mode for emacs','','I ❤️ NixOS'),(1852,'1980-01-01 00:00:00',5,'en','857868445','A5','A2','-oth-','','','','','','','','Y','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A7','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A10','A7','','','','','','','','A5','A14','A9','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A2','A1','A5','A4','A15','A26','A17','A19','A20','A9','','','','','','','','','','','A17','A26','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1853,NULL,NULL,'en','1577116509',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1854,'1980-01-01 00:00:00',5,'en','1551788882','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','Daily driver ','A3','Didn\'t like having to redo my whole system and wanted a reproducible OS. Found nixOS, tried it and never went back.','','Y','','','Y','','Y','Y','','Y','','','','Y','Y','','','','','','A2','A1','A4','','','','','','','','A14','A6','A15','','','','','','','','','','','','',NULL,'BlendOS','A7','','','','Y','','','','','','','','','','','','','Y','','','','','','A9','A7','A6','A1','A25','','','','','','','','','','','','','','','','','A9','A7','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Not knowing how to.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','Daily driver ','A3','Same as previous.','Y','Y','Y','Y','','','','Reproducible build','IaC on an OS level','Stability ','Possibility to set software settings in nix config (I know it\'s next to impossible to implement but it\'d be great).','BlendOS ','Y','','','','','','','Y','','','I\'d love official NSCDE support but right now it\'s not the case.','Right now none but I\'d love for more communication about them from the nixOS team.','Hydra. I love the concept but would love a better execution of it.','nixOS improved a lot this last few years and I hope it keeps going. I think it needs to continue improving user friendlyness to attract more people and more devs to keep on making it better.'),(1855,'1980-01-01 00:00:00',5,'en','1430049013','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','','Y','','','','','Y','Y','','Y','','','','','','Y','Y','','','','A1','A2','A10','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A6','A9','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','','Y','','Y','Y','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1856,'1980-01-01 00:00:00',5,'en','146960157','A2','A2','male','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A2','A4','A6','','','','','','','','','','','','',NULL,'guix','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A4','A22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','The opacity of what\'s happening inside nix.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','To replace ansible declarative environments.','','','Y','','','','','Declarative environments','Portability','','','','Y','','','','','','','','','','','','',''),(1857,'1980-01-01 00:00:00',5,'en','1296535653','A8','A3','male','','','','','','','','','Y','','Y','','','','','Y','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Let down by my first love, Arch, after getting the 4-year old install into a half-broken state with the AUR.','','','','Y','Y','','Y','','Y','Y','Y','Y','','Y','Y','Y','Y','Y','Y','','A2','A6','A1','','','','','','','','A12','A1','A5','','','','','','','','','','','','',NULL,'Arch','A4','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A24','A15','A1','A2','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Arch AUR half-broken','Y','','Y','Y','','Y','','Rollbacks','Declarative configuration (tracked by git)','Image generators','Distributed package delivery','Guix?','Y','','','','','','','Y','','','','Nixos-generators','',''),(1858,'1980-01-01 00:00:00',5,'en','530847364','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','Y','','','','Y','Y','Y','','','','','A2','A1','A3','','','','','','','','A4','A8','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A4','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','','','','','','','','','','','','','','','','','','','','','sway','','',''),(1859,'1980-01-01 00:00:00',5,'en','841334003','A4','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A4','Out of curiosity ngl','','Y','','','','','Y','','','','','','','','Y','','','','','','A2','A1','A4','','','','','','','','A8','A7','A11','','','','','','','','','','','','',NULL,'Guix','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A4','A15','A2','A20','','','','','','','','','','','','','','','','','A23','A24','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','Y',NULL,'I had to use software like Vivado and couldn\'t manage to install it with NixOS.\r\n\r\nAlso hard to customize meta packages like GNOME','Better docs to use closed software with niche FHS setups\r\n\r\nAlso, better way to have a minimal GNOME etc. (Like installing gnome-shell only on Arch)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1860,'1980-01-01 00:00:00',5,'en','505618854','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A5','A14','A3','','','','','','','','','','','','',NULL,'Guix? ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','A2','A4','A3','A5','','','','','','','','','','','','','','','','A1','A2','A5','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','Y','Y','','','','Declarative System Management','Easy service management','','','Guix?','Y','','','','','','','','','','i3','','',''),(1861,'1980-01-01 00:00:00',5,'en','1598939776','A2','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','Y','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Because of the package management capabilities.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A3','A8','','','','','','','','A8','A1','A6','','','','','','','','','','','','',NULL,'Arch Linux, Docker','A4','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Lack of time','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','Declerative configuration management.','Y','','','Y','','','','Declarative configuration management.','Remote configuration through SSH.','Simple rollback.','Declarative VM management similar to the nixos-containers.','Arch Linux.','Y','','Y','','','','','','','','i3','','',''),(1862,NULL,NULL,'en','652357772',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1863,'1980-01-01 00:00:00',5,'en','1010814121','A5','','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','curiosity resulting in my switch from Debian, NixOS suited my needs and sensibilities better ','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A8','A6','','','','','','','','','','','','','',NULL,'if it never existed would likely still be using Debian;\r\nnow that I have switched, if it ceased to exist, or I became discontent, would likely explore Guix','A1','','','','Y','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','focus, time, deciding what to do with the software I develop; I guess I answered this one incorrectly as this describes my use rather perhaps than my interaction ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','curiosity lead me to try it, thereafter switched from Debian as NixOS suits the way I like to be able to set things up much better ','Y','','Y','','','','','Deterministic (along with the degree of configurability)','Reproducibility (along with the degree of configurability, and reliability)','Rollback (have not needed much, that it is there adds to peace of mind); actually tied with repeating degree of flexibility and configurability','keep flakes, ensure continued possibilities for a distributed approach to adding packages while keeping the central nixpkg repository; in short not much, maturing without radically altering the status quo ','Guix (unknown to me) or Debian (long time past user)','Y','','','','','','','','','','i3 wm, tmux, etc.','','',''),(1864,'1980-01-01 00:00:00',5,'en','2128136504','A2','A2','male','','','','','','','Y','','Y','','Y','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','','','on m\'y backup server','A1','','','Y','','','','','','Y','','','','','','','','','Y','','','','A7','A2','A10','','','','','','','','A8','A5','A4','','','','','','','','','','','','',NULL,'Ansible on Debian instead of nixos','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Nothing!','Y',NULL,NULL,NULL,NULL,'A2','','','','on m\'y backup server','A1','I thought having a declarative config was cool and wanted to use nixos on my desktop, but didn\'t switch to it for now.','','','Y','','','','','','','','','','','','','','','','','','','','awesomewm','','',''),(1865,'1980-01-01 00:00:00',5,'en','1705099749','A1','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A9','A1','','','','','','','','A5','A4','','','','','','','','','','','','','',NULL,'bazel,docker','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A2','','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','','',''),(1866,'1980-01-01 00:00:00',5,'en','1248691918','A1','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A7','A3','A2','','','','','','','','A9','A8','','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1867,'1980-01-01 00:00:00',5,'en','2083052537','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','I was curious and got interested when I saw I could fully configure my system with it to have reproducible builds.\r\nAlso I am now happy to see that it is a bit easier to change options of some programs as they are all abstracted by nix options (eg. \"boot.loader.grub.splashImage\" - never would I have thought I\'d customize this)','Y','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A10','','','','','','','','A6','A14','A8','','','','','','','','','','','','',NULL,'Some sort of CMDB (ansible, user-script, or a custom post-install shell script)','A2','','','','Y','','','','','','','Y','','','','','','','','Y','','','','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I wanted to create a package for nix (adding support for a new keyboard layout) though I did not understand how to easily put files in the folder created by another package and did not dig further.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','','','','','','reproducible builds','easy to access parameters for some packages','','a language server for nix configuration, or some documentation akin to the archlinux wiki','','Y','','','','','','','Y','','','','','',''),(1868,NULL,NULL,'en','301602608',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1869,'1980-01-01 00:00:00',5,'en','156966912','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I hate having to apt install stuff when downloading some program/library/sdk and have long wanted to have a better way of keeping track of what is installed on my system. I have also been annoyed when having to install some applications separately because I needed relatively recent versions.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A3','A2','','','','','','','','A2','A14','A9','','','','','','','','','','','','',NULL,'Docker/podman mostly','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A9','A2','A15','A22','','','','','','','','','','','','','','','','','A1','A22','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I haven\'t had to and succeeded in building any open source software within nix, and I\'m not sure if contributing binary ninja would be that interesting','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Same as Nix','Y','','Y','','','','','Declarative (and easy!) system config','Syncing config between computers easily','Access to many up to date packages','','Probably arch linux','Y','','','Y','','','','Y','','','i3','','',''),(1870,NULL,-1,'en','1996464828','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1871,'1980-01-01 00:00:00',5,'en','382434922','A2','A4','male','','','Y','','Y','Y','Y','','','','Y','','','Y','','Y','Y','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I love declarative configuration and both NixOS & nix-darwin really grabbed me as a nice way to manage my workstations (Mac/Linux).','Y','','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A7','','','','','','','','A9','A8','A3','','','','','','','','','','','','',NULL,'Bash scripts and manual configuration','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A7','A9','A1','A2','','','','','','','','','','','','','','','','','','A7','A1','A9','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Haven\'t had the need yet, someone else has always beaten me to raising a PR when I have found an issue','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Being able to manage my home server without running puppet-server was a massive attraction. Also being able to bring the OS up from scratch with the old configuration before adding data from backups as a disaster recovery was great.','','','Y','','','','','Declarative Configuration','Applying configuration changes atomically, including boot loader changes','','Either add better support for mirrored grub, or improve the documentation for BIOS (legacy) mirrored grub support. I can\'t get it working.','SmartOS with Ubuntu zones configured by puppet.','','','','','','Y','','','','','Headless server','nix-darwin','deploy-rs, NixOps','Nix.* is bloody awesome.'),(1872,'1980-01-01 00:00:00',5,'en','875319586','A5','A3','-oth-','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A2','A7','','','','','','','','A3','A8','A2','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A11','A15','','','','','','','','','','','','','','','','','','','','A9','A11','A19','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','Easy to install software - the config for most things is already done. ','Rollbacks','','I would make flake based config the default and move away from configuration.nix','Ubuntu','Y','','','Y','','','','','','','i3','flake-parts','',''),(1873,'1980-01-01 00:00:00',5,'en','283899045','A2','A4','male','','','','','','','','Y','Y','','','Y','','','','','','Y','','','','','','','','Y','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Software I needed was only provided as Flatpak or deb, configuring the system was difficult but nice once it worked. ','Not sure. Vaguely, if there is a very obvious simple advantage to using it that another distro can’t match. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','My biggest reason for hesitating to use any part of the Nix ecosystem again is that there seems to be (at the time) a massive gulf between flakes and the legacy way of using nix. And useful information was divided between these things and often times the information was either too shallow to help with a problem or too dense to understand how to take the information and apply it to my system. \r\nThe nix language is not simple enough to really use for its purpose (far too many implicit shapes and effects). It is also quite slow to iterate when you’re trying to accomplish something and failing/learning. This is time not spent doing productive work. \r\nAnd nix doesn’t have a good story for building software that you’d ship to customers. Toolchains and so on, dependencies all expect a nix based runtime. This limits usefulness for me. '),(1874,'1980-01-01 00:00:00',5,'en','182303874','A2','A3','male','','Y','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A1','I was interested in reproducible builds and Docker didn\'t satisfy my requirements','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A2','A8','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Perhaps guix','A4','','','','Y','','','','','','','','','','','','','Y','','Y','','','','A7','A1','A13','','','','','','','','','','','','','','','','','','','A7','A2','A13','','','','','','','','','','','','','','','','','','','','','','','A1','','Nix documentation is poor to the point that I\'m struggling to know what\'s what','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','I found out this cool article that tells you how to setup NixOS in such a way that the rootfs is recreated from scratch on every boot','Y','','','','','','','Declarative configuration','Reproducible builds','Easy rollbacks','I\'d add a better documentation, honestly','Don\'t know','','','','','','','','','Y','','','','',''),(1875,'1980-01-01 00:00:00',5,'en','881689363','A2','A5','male','','','','','','','Y','','','','','','','Y','Y','','','','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','Y','','','','','','Y','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','getting it installed in a VM would help: atm it (or virtualbox) breaks during install and I cannot be bothered to find out',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','flakes: I cannot tell to give me my fish shell ',''),(1876,NULL,NULL,'en','1853298393',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1877,'1980-01-01 00:00:00',5,'en','868349943','A3','A3','male','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Y','Y','','','A3','Started with home-manager and setting up shell.nix for projects.','','Y','','Y','','','Y','','','','','','','Y','Y','','Y','','','','A1','A3','A2','','','','','','','','A14','A9','A6','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','Y','','','','','','','','','','','A2','A7','A1','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Basic familiarity with the language','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','home-manager','Y','','','','','','','nix shell','nix develop','nix-build switch','better support on LLMs - which means more valid examples for different scenarios and a more stable API haha ','Archlinux\r\n\r\nGuix lacks packages.','','Y','','','','','','Y','','','','don\'t know','home-manager','nix is great, is hard to share with people.'),(1878,'1980-01-01 00:00:00',5,'en','1681091937','A6','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I found Nix due to Nix Darwin, saw that it’s purely functional, and couldn’t wait to get my hands on it.','Y','','','','','','Y','Y','','','','','','','Y','','Y','','','','A3','A1','A6','','','','','','','','A6','A8','A9','','','','','','','','','','','','',NULL,'Containers','A6','','','','Y','','','','','','','','','','','','','','','','','','','A13','A11','A25','','','','','','','','','','','','','','','','','','','A11','A8','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I needed a Linux OS for a cloud VM and NixOS is my first choice','','','Y','','','','','Determinism','Purely functional','Declarative','I would change the Nix language syntax, to be a LISP or ML','Containers','Y','','','','','','','','','','Headless','Nix Darwin, Direnv','',''),(1879,'1980-01-01 00:00:00',5,'en','1905863611','A2','A4','male','','','','','','Y','Y','','','Y','Y','','','','','','','Y','','','','Y','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','Y','','Y','Y','Y','','','','','Y','Y','','Y','Y','','','A3','A2','A6','','','','','','','','A6','A3','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A2','A1','A10','A25','','','','','','','','','','','','','','','','','A1','A13','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','','','Y','','','','','','','','','','Y','','','','','','','','','','','poetry2nix\r\nemacs-overlay\r\nnix-direnv\r\nhome-manager\r\nnix-darwin','',''),(1880,'1980-01-01 00:00:00',5,'en','1179046466','A2','A3','male','','','','','','','','','Y','','Y','','','','','','','Y','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I just love the immutability. The ability to always return to a given working state is a game changer. Similar to commits in git.','','','','Y','Y','','Y','','Y','','','','','','Y','Y','Y','','','','A7','A2','A6','','','','','','','','A5','A8','A10','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A2','A19','A4','','','','','','','','','','','','','','','','','','','A2','A19','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Personal time','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A2','','Y','','','','','','','Rollback','Declarative','Ease of configuration','Easier to fix packages that are poorly behaved.','WSL','Y','','','','','','','Y','Y','','','','',''),(1881,'1980-01-01 00:00:00',5,'en','1062330307','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','Y','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted a sane package manager for macOS.','Y','','','','','','Y','','Y','','','','','Y','Y','Y','Y','Y','','','A2','A1','A3','','','','','','','','A8','A13','A5','','','','','','','','','','','','',NULL,'','A6','','','','Y','Y','','','','','','','','','','','','','','Y','','','Google Cloud Build','A11','A9','A15','A24','A1','A14','','','','','','','','','','','','','','','','A11','A9','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Lack of knowledge/not comfortable enough with the process.','N','N','Better hardware support for my laptop.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','',''),(1882,'1980-01-01 00:00:00',5,'en','1656837789','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','Y','','','','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1883,'1980-01-01 00:00:00',5,'en','358076849','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','When I started using NixOS. I used Arch Linux for 8 years, switched to NixOS in 2020 because I found it online (probably Hacker News) and liked the declarative aspect.','','Y','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','','','','','','','','','A5','A14','A13','','','','','','','','','','','','',NULL,'For development environments, probably Docker.','A2','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I did make one or more small patches I think, mainly just find the whole ecosystem, language etc. confusing and intimidating. I\'ve tried reading Nix pills and going through the manual and people\'s configs and I can do some things but I still find it very intimidating. It actually reminds me of an issue I\'ve had at some workplaces, where there are multiple conventions, so you look at some code and you see an example of something but it\'s done differently or uses different syntax or dependencies, and it\'s hard to figure out why they\'re done differently, what\'s the \"best\" way, or if there are trade-offs to the different methods.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My answer about Nix should be here I guess, I started with NixOS not just Nix.','Y','','Y','','','','','Declarative configuration','Declarative configuration again. I much prefer it to administration using shell scripts.','\"Simplicity\" in the sense that, there\'s less overhead compared to the larger abstraction that VM or container-based solutions require (though I\'m not an expert in this stuff so I don\'t even know what the signifance of e.g. container overhead involves).','I guess...tooling? It\'s awkward having to look up manpages or some webpage to find options, it would be much nicer if there was a tool to easily browse the different options for e.g. \'services.sshd\' or whatever.','Guix or Arch I\'d imagine','Y','','','','','','','','','','Sway','','','Since one question listed programming languages: I don\'t use Nix with programming languages libraries, I mainly use it for versioned packages e.g. \"Python 3.10\", but only the language\'s compiler/interpreter and maybe some extra tools. I find the extra effort to get libraries for a programming language e.g. Python \"nix-ified\" is not worth the effort.\r\n\r\nRegarding devops-style stuff such as NixOps, morph: I wanted to but to try using one of these but couldn\'t find much documentation.\r\n\r\nI hope this doesn\'t come across as overly critical, I\'m still a big fan of Nix and NixOS and I do appreciate all the work that\'s put into it.'),(1884,'1980-01-01 00:00:00',5,'en','1305487120','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Honestly, no idea','','Y','','','','','Y','','','','','','','','Y','Y','Y','','Y','','A6','A9','A10','','','','','','','','A2','A8','A12','','','','','','','','','','','','',NULL,'apt/dpkg','A5','','','','Y','','','','','','','','','','','Y','','Y','','Y','','','','A13','A3','A15','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','No idea','Y','Y','','','','','','Setting up a machine as I like it with one (or maybe two) commands','I can roll back when I break it','','Make it easier to compile everything on my system with custom cflags (march=native and some hardening stuff)','Debian or arch, maybe gentoo','Y','','','','','','','Y','','','sway ','','','I wish I could set up cross compilers for windows, or other CPU architectures easily\r\n\r\nI don\'t understand why some packages fail to build (as in, explicitly print an error when you try) with binfmt+qemu'),(1885,'1980-01-01 00:00:00',5,'en','371344647','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','Chimera Linux','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','I remember package installs being really slow, although it\'s been a few years since','','','','','','','','','','','Y','Couldn\'t get any compilers to work, didn\'t know how to diagnose the problem','','','','','','','','','','','If people started talking online about how Nix got some new, REALLY good and intuitive UX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'(Same reasons as the Nix section)','(Same as the Nix section)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','Do not remember',''),(1886,NULL,NULL,'en','991836998',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1887,'1980-01-01 00:00:00',5,'en','654029435','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Because it is cool and declarative','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'GNU Guix','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Laziness','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Because it\'s is cool and declarative','Y','','Y','','','','','Declarative','Reproducible','Reliable','Would add clearer error messages and more packages to nixpkgs','GNU Guix','Y','','','Y','','','','','','','sway','','',''),(1888,NULL,3,'en','1239463054','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','Y','Y','','','','N','N','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1889,'1980-01-01 00:00:00',5,'en','2012022148','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A3','A2','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A24','A15','A2','','','','','','','','','','','','','','','','','','','A24','A5','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','','Y','','','','','','','Declarative system configuration','nixos-rebuild boot --upgrade on a timer for seamless upgrades in the background','','','','Y','','','','','','','','Y','Y','','','',''),(1890,'1980-01-01 00:00:00',5,'en','2067471475','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Declarative configurations in NixOS seemed nice when compared with juggling commands in Ubuntu.','','','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','','Y','','A2','A7','A1','','','','','','','','A9','A8','A15','','','','','','','','','','','','',NULL,'I\'ve heard guix does something similar but their package repo and philosophy seems problematic. So I would probably end up using some form of fedora or arch Linux and various scripts to approximate the declarative config of NixOS ','A7','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A15','A17','A1','A3','A24','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I contributed one or two patches, but besides that nixpkgs has what I need and whenever there is an issue someone seems to have already fixed it. And the areas were it\'s lacking I don\'t have enough expertise to fix it.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','Same reason as nix, declarative configurations and rollback.','Y','Y','Y','','','','','Declarative configuration','Generations and rollback','Easy service configuration','My main problem with NixOS is one with nix, which is the slow eval performance. Otherwise I would change the graphics driver configuration to make more sense.','Same answer as the nix section ','','','','Y','','Y','','','Y','','hyprland','Disco, rust-overlay, simple-nixos-mailserver','','Keep up the good work :)'),(1891,'1980-01-01 00:00:00',5,'en','368207176','A3','A2','male','','Y','','','','Y','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Found out in the internet, experimented with andar three days later jumped to nixos ','','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A10','A7','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'Xubuntu or arch probably','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A1','A3','A9','A17','A12','','','','','','','','','','','','','','','','A1','A15','A2','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I found out about nix and started using nixos three days later','Y','','','Y','','','','Declarative','I update stuff whenever I want','I easily can replicate the same setup granularly in any number of machines','A way to configure services scheduled in a cluster of nixos machines controllable with nix using a overlay network for them to be seen as one network. Kinda like kubernetes services but instead of containers and registries using copy closure and systemd cgroups ','xubuntu or arch I guess','Y','','','','','','Pyinfra','','','','i3wm','nix-colors\r\nnixpkgs-brasil\r\nnur\r\nrust-overlay\r\nnixos-hardware\r\nnix-emacs\r\nnix-vscode\r\nnix-direnv','niv',''),(1892,'1980-01-01 00:00:00',5,'en','106953056','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Working laptop was in repair, got it back with windows, employer said if i want i can try out to evalute it.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A3','A2','A7','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'Archlinux, Debian','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A24','A9','A22','A15','A3','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','i started using nix not long ago','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','was not there the same question before?','Y','','','','','','','declarative system setup','nix shell for projects ','','','debian or archlinux depending on the use case','Y','','','','','','','','','','sway, hyprland','','',''),(1893,'1980-01-01 00:00:00',5,'en','1775592364','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I always wanted a way to declare my system packages and config. I started with dotfiles and scripts; then I found NixOs on online forums','','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A6','A8','A9','','','','','','','','','','','','',NULL,'Regular dotfiles and scripts','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','A15','A25','','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I always wanted a way to declare my system packages and config. I started with dotfiles and scripts; then I found NixOs on online forums','Y','','','','','','','Declarative system packages and config','Possibility of drastically changing packages and config and rollback','Sharing config and packages between computers','Better out of the box support for new programs: it is very difficult to package them for nix properly.\r\nAlso a better support of networking declarative config, while leaving the possibility to connect on the fly.','Regular dotfiles and scripts','Y','','','','','','','','','','i3','','',''),(1896,'1980-01-01 00:00:00',5,'en','227722432','A2','A4','male','','','','','','','Y','','','','','Y','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I like the idea of nix, of being able to specify OS-level dependencies in the same way as I specify package dependencies. I also like the portability of it.','Y','Y','','','','','Y','','','','','','','Y','Y','','','','','','A2','A6','A3','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'I would probably use shell scripts/ansible or similar','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A24','A15','A9','','','','','','','','','','','','','','','','','','','A24','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I don\'t feel like I know enough about how nixpkgs works to be able to contribute anything.','N','Y',NULL,'I tried it on my desktop which had an nvidia graphics card. nvidia caused me to stop. Dammit nvidia. I\'ve since moved to an AMD graphics card so may give it a try again.\r\nI also stopped because I moved to arch as my main distro, which although it\'s not declarative, the rolling nature of it, and not needing to wait for nixpkgs to be updated I felt gave me more control.\r\nI also struggled with home-manager, and where to put packages. Do I put them in /etc/nixos/? Do I put them in my home folder? I\'m not sure. I\'m the only user of the machine, but I feel there are standards...','Perhaps if there was a bit more documentation about flakes/home-manager/etc. and where\'s \"best\" to put things. Or even just something that says \"put them where you want, it\'s up to you\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nothing','Nothing',''),(1895,'1980-01-01 00:00:00',5,'en','1593192542','A5','A3','-oth-','Nonbinary Woman','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I heard about it somewhere ond thought it was cool.','','Y','','','','','Y','Y','Y','Y','Y','Y','','Y','Y','Y','Y','','','','A2','A10','A5','','','','','','','','A15','A13','A4','','','','','','','','','','','','','An actual type system, because that would help with both documentation and error messages','Guix, probably','A1','','Y','','Y','Y','Y','Y','','','','','Y','','','','','','','Y','','','','A15','A4','A3','A2','A1','A10','A24','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Nix, the language, is cumbersome enough to work with that I\'m not really confident contributing to something like Nixpkgs','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I liked Nix and wanted to use it for hosting services on a VPS','','','Y','Y','','Y','','Declarative system configuration','Rollback','','Better support for remotely deploying flakes (or better documentation for existing solutions)','Arch','','','','','','Y','','','','','Sway, configured with home-manager on an Arch machine','home-manager & crane, etc.','','I am begging you for a real type system in Nix'),(1897,'1980-01-01 00:00:00',5,'en','1261465902','A5','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Just curious, heard about it on Xe\'s blog.','Y','','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A6','','','','','','','','A5','A6','A3','','','','','','','','','','','','',NULL,'Combination of home brew and docker on Mac with some dot files repos, and probably Arch Linux with a lot of sad ad hoc configuration for WSL and home servers','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Time','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Curious about it after reading Xe\'s blog','','','Y','','','','','Reproducibility','Having system config all in one place','Huge number of packages available','This may exist already, but I would love for there to be an LSP for nix files that could autocomplete configuration options for NixOS.','Arch Linux, and I would be very sad','Y','','','','','','','','','','','home-manager, nix-darwin, direnv','',''),(1898,'1980-01-01 00:00:00',5,'en','1342089827','A5','A2','fem','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'Guix','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A21','A2','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','','Y','','','','','','','','Better nftables support','Guix SD','Y','','','','','','','','','','Sway','','',''),(1899,NULL,NULL,'en','722302815',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1900,'1980-01-01 00:00:00',5,'en','21994885','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','','','','','Shell/Terminal Emulator issues','When using nix shell / nix-env, bash shell or terminal applications like tmux broke','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Bought new Laptop and wanted to try declarative configs/installs.','Y','','','','','','','','','','Better integration with programming environments of different languages. (Rust/Python)','Arch Linux','Y','','','','','','','Y','','','','','',''),(1901,'1980-01-01 00:00:00',5,'en','2099442241','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Wanted to extend infrastructure as code to the os without resorting to ansible.','','Y','','Y','','','Y','Y','','','','','','Y','Y','','Y','Y','','','A2','A3','A6','','','','','','','','A14','A6','A5','','','','','','','','','','','','',NULL,'Ansible and Homebrew.','A4','','','','Y','','','Y','','','','','','','','','','Y','','Y','','','','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Got bored of long fragile brittle bash scripts to bootstrap a new distro install for my workstation.','Y','','','','','','','Repeatable/shared builds stored in git.','Temporary shell for installing one use tools.','','Comparison to similar tools in the ecosystem to show the benefits over them with examples.','Debian.','Y','','','','','','','','Y','','','','',''),(1902,'1980-01-01 00:00:00',5,'en','861237942','A2','A2','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A10','A1','A9','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','A4','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','','Y','','','','','','','Reproducible system, it\'s nice to be able to copy configuration.nix from one system to another, and it just works.','Painless configuration','','','Arch Linux','Y','','','','','','','','','','i3wm','home-manager','I tried to use flakes, but it broke my config and I stopped.',''),(1903,NULL,NULL,'en','1368044509',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1904,'1980-01-01 00:00:00',5,'en','1211789506','A5','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','The idea of a purely declarative OS peaked my interest and I loved how nix works so I just tried it and never looked back','','Y','','','','','Y','Y','','','','','nix-on-droid on my android device','Y','Y','Y','Y','','Y','','A1','A3','A6','','','','','','','','A8','A9','A1','','','','','','','','','','','','',NULL,'I was on arch linux before, so arch, and docker','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A13','A1','A3','A25','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Nixpkgs is so huge, it\'s a bit scary to comtribute to the monorepo, I would definitely make a few flakes and mention that they exist in some central location if there was that ability','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Saw it as one of the hackage supported oses and it always had the updated version of the haskell packages, so I looked into it, at that point I saw many niche linux OSes and NixOS peaked my interest, the idea of a declarative OS was mindblowing, so I tried it and I haven\'t looked back','Y','','Y','','','','','Reproducibility','Ability to undo operations when experimenting','Automated hardware detection','More users ;) but seriously, I would make dream2nix an official nix project, to push amazing programming language support in nix','Arch linux','Y','','','','','','','','','','xmonad','Nix search is gold','The commamd line search utility, the website just does a much better job','Nix is heading to a great direction :)'),(1905,'1980-01-01 00:00:00',5,'en','2021548160','A2','A4','male','','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A7','A8','','','','','','','','A6','A5','A14','','','','','','','','','','','','',NULL,'Arch Linux ','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','','','','A1','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','',''),(1906,'1980-01-01 00:00:00',5,'en','523124411','A2','A2','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using Nix during my exploration of declarative Linux distrbutions, and after failing to come to terms with Guix\'s staunch free software stance I opted to go with NixOS. After using it for a while, then returning to Windows, I\'ve been happily using it as my main operating system for about a year steady.','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A8','A6','A3','','','','','','','','','','','','',NULL,'Guix on top of Arch Linux','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A2','A15','','','','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','Y','','','','','','','','','Y','','','','','','krops','','Y','','','','',''),(1907,'1980-01-01 00:00:00',5,'en','305362211','A2','A3','male','','','','','','Y','Y','','Y','Y','Y','','','','','','','Y','','','','','','Y','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was sick of \"managing state\" in traditional Linux systems, and wanted something reproducible and declarative. I looked at NixOS and Guix, and chose NixOS as it had a better app selection. I started using Nix as a side-effect of switching to NixOS','','','','','','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A4','A14','A10','','','','','','','','','','','','',NULL,'Probably Docker, which makes me sad','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A24','A1','A15','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Mostly time - I have two young children!','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was sick of \"managing state\" in traditional Linux systems, and wanted something reproducible and declarative. I looked at NixOS and Guix, and chose NixOS as it had a better app selection.','Y','Y','','Y','','Y','','Reproducible systems and environments','Everything as config in an actual language','NixOPs','I\'d improve the ops side...although I haven\'t yet had time to look into non-official solutions','Sweat, blood and tears','Y','Y','','','','','','','','','i3','','','I love NixOS - it has really improved my QoL, both doing development and ops'),(1908,NULL,4,'en','1692182842','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','N','','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL),(1909,'1980-01-01 00:00:00',5,'en','1415991723','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A2','A10','A1','','','','','','','','A9','A8','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A3','A4','A2','A13','A15','A20','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','','','Rollback ','Centralization and version tracking of configuration ','','','','Y','','','','','','','','Y','','xmonad','Cachix','',''),(1910,'1980-01-01 00:00:00',5,'en','1709939019','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','','Y','Y','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A5','A8','A13','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','A13','A1','A2','A9','A5','A15','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1911,NULL,NULL,'en','356937032',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1912,NULL,2,'en','1367119222','A5','A2','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted a reproducible system configuration, and consistent development shells for my team.','Y','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A6','','','','','','','','A6','A5','A3','','','','','','','','','','','','',NULL,'Homebrew, docker, and ansible (or similar)','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A15','A4','A3','A5','A7','A2','','','','','','','','','','','','','','','','A5','A7','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1913,'1980-01-01 00:00:00',5,'en','528996474','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted to try a more declarative approach to configuring some older MacBook airs lying around the apartment. I liked the idea of also being able to configure Linux on them with a similar setup once they got too old for osx updates.','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A7','','','','','','','','A6','A4','A3','','','','','','','','','','','','',NULL,'Maybe guix? I guess I\'d really have to use my hacky bash scripts and chezmoi templates that tend not to work how I thought they would, just when I need them most!','A1','','','Y','Y','Y','','','','','','','','','','','','','','','','','','A1','A3','','','','','','','','','','','','','','','','','','','','A17','A26','A21','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I worry about doing it wrong and looking dumb in front of all the brilliant people who actually understand nix. I also very rarely come across a situation where the existing nixpkgs doesn\'t have what I need.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I kept having to move my homelab/experiment/practice environment around to different junky old hardware and could never remember how I set it up last time. I was very happy with how resource efficient arch was, and wanted to see how nixos was. It turned out just as good if not better! ','Y','','Y','','','','','Declarative configuration ','Nixpkgs having almost anything I need and it almost always being the latest version','Low resource usage','Maybe bootloader configuration? Ooh, bsd integration might be really cool.','Maybe guix system? Probably just arch or void.','Y','','','','','Y','','','','','Hyprland, Awesome, Fluxbox','Nixos wiki, nix search, home manager options search, and nix pills.','Sops/age for secrets','Amazing work! Thank you all so much for such great tools and resources!'),(1914,'1980-01-01 00:00:00',5,'en','864476093','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','For nixos dependency management and homemanager','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A7','A1','','','','','','','','A7','A6','','','','','','','','','','','','','',NULL,'Arch','A4','','','','Y','','','','','','','','','','','','','','','','','','','A15','A5','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Time and my understanding is limited for now ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Arch broke several times. So I switched ','Y','','','','','','','Homemanager ','Nixpkgs','','','Arch','Y','','','','','','','Y','','','','','','Thank you guys'),(1915,NULL,NULL,'en','1279107502',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1916,NULL,1,'en','763056691','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1917,NULL,NULL,'en','1825753997',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1918,NULL,NULL,'en','1967718739',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1919,'1980-01-01 00:00:00',5,'en','1272701875','A2','A4','male','','','Y','','','Y','Y','Y','Y','Y','Y','Y','','Y','','Y','Y','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Unhappy with imperative configuration bashing methods like Ansible or containerized solutions like Docker to make sure stuff I write on my computer, works on any other computer.\r\n\r\nI learned about Nix at Hackerspace Gent, Belgium.\r\nBy coincidence a colleague at work and myself both started using Nix independently for our personal projects. It came up by accident during lunch. Now our entire company infrastructure runs on Nix.','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A6','A8','A9','','','','','','','','','','','','',NULL,'A stone tablet or logic circuits made with physical switches.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A7','A1','A2','A15','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','See Nix story earlier in survey.','Y','','Y','Y','','','','Easily install / remove new services','Worry-free upgrades / rollback','Remote builds','Some mechanism to stay up to date using flakes without having to resort to some third party CI like GitHub actions.','Rock. Solid. Debian.','Y','','','','','','','','Y','','Cinnamon','Cachix','','Alles mag. Nix moet.'),(1920,'1980-01-01 00:00:00',5,'en','1162385339','A2','A3','','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A7','A2','A1','','','','','','','','A8','A2','A6','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A3','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','Sway','sops-nix\r\nHome Manager','',''),(1921,'1980-01-01 00:00:00',5,'en','100291612','A2','A3','male','','Y','','','','','','','Y','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A7','','','Y','','','','','Y','','','','','','','Y','','','','','','','A2','A3','A1','','','','','','','','A14','A13','A4','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','','elementry','','',''),(1922,'1980-01-01 00:00:00',5,'en','1466384330','A2','A4','male','','','','','','','Y','','Y','','','','Y','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got curious from the hype, caught the virus of reproducibility and have never looked back.','Y','Y','','','','','Y','','','Y','','Y','','Y','Y','Y','Y','','','','A6','A2','A3','','','','','','','','A8','A12','A9','','','','','','','','','','','','',NULL,'Guix (maybe, haven\'t used it).','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A3','A4','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A3','Nix is superior way to obtain reproducible builds; extending the Nix idea to the whole OS seemed like the obvious choice.','Y','','Y','','','','','Reproducible configuration','Easy switching between versions from boot menu','','I\'m very happy with NixOS as it is.','Not sure, probably look into Guix. Or running Nix on top of some minimal Linux, just as I do on macOS.','Y','','','','','','','','','','Sway','My projects depend on bit-for-bit reproducible builds of system images for embedded (raspberry pi), regardless of build platform (Linux/macOS). Until recently, that was surprisingly hard to obtain with nixpkgs. I hope that Nixpkgs eventually aim for bit-for-bit reproducibility (also in cross-compilation) instead of the weaker reproducibility property that the build artifacts are semantically equal.','I tried to cross-compile macOS binaries from NixOS. I gave up because quite a few darwin packages are not buildable on Linux.',''),(1923,'1980-01-01 00:00:00',5,'en','1348724891','A5','A4','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','Y','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','Y','','','','','','Y','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'flakes\r\nhome-manager','',''),(1924,'1980-01-01 00:00:00',5,'en','462715690','A2','A5','male','','','Y','Y','','','Y','Y','','Y','Y','','','','','Y','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','Managing my dotfiles in the hope to configure also my non-NixOS environments (WSL, Ubuntu, ...).','','Y','','Y','','','Y','Y','','','','','Server on hosting providers','Y','Y','','Y','Y','','','A2','A3','A6','','','','','','','','A5','A10','A8','','','','','','','','','','','','',NULL,'guix, chezmoi','A1','','','Y','Y','','','','','','','','','','','','','','','','','','','A2','A24','A9','','','','','','','','','','','','','','','','','','','A2','A17','A24','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Finding Nix-the-language just horrible.','N','N','If Nix on non-NixOS doesn\'t work the way imagined. Maybe I\'m alread on the wrong path.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','',''),(1925,'1980-01-01 00:00:00',5,'en','2138333325','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','* After running into issue using different versions of the same dependencies in different problems','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A3','A10','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'Probably a mix of:\r\n* Homebrew\r\n* terraform\r\n* ansible\r\n','A4','','','Y','Y','Y','','','','','','','','','','','','','','Y','','','','A7','A1','A21','A15','A24','A2','A5','A8','A3','','','','','','','','','','','','','A7','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','After getting tired of manually configuring various services on VPS\' running ubuntu/debian/...','','Y','Y','Y','','','','Build targets','easy switching of generation','Easy to work with modules','Better error messages','','Y','','','','','','','','','','','nix-darwin\r\n(r)agenix\r\nflake-utils\r\ndevshell','',''),(1926,NULL,NULL,'en','1884305654',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1927,'1980-01-01 00:00:00',5,'en','1346050012','A5','A2','-oth-','','','','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A1','A2','A9','','','','','','','','A4','A5','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A2','','','','','','','','','','','','','','','','','','','','A2','A9','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','Y','Y','','','','','Switching back to old generations','Ability to build the system on a different PC then deploying it (nixos-upgrade --build-host etc)','Home-manager integration','','','Y','','Y','Y','','','','','','','Sway','I use flake-utils on almost all of my flakes (both packaging and dev environments).','',''),(1928,'1980-01-01 00:00:00',5,'en','1707084054','A2','A3','male','','','','','Y','','Y','','','','','','','','','Y','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Reproducable work/developer environments.','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A3','','','','','','','','A8','A5','A4','','','','','','','','','','','','',NULL,'ASDF + manual configuration','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I don\'t have issues with core nixpkgs as often. Most of my issues are with stuff like poetry2nix.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Reproducable desktop and development environment.','Y','','Y','','','','','Reproducability','Easy patching','Easy rollback ','-','ASDF + manual desktop config','Y','','','Y','','','','Y','','','','poetry2nix','NixOps (wasn\'t there yet last I checked)',''),(1929,'1980-01-01 00:00:00',5,'en','2146832604','A2','A4','male','','Y','','','','Y','Y','','','','','','','','','','','Y','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A8','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'Guix, but if nix doesn\'t exist, does than guix exist??? ;)','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A2','A15','A20','A9','','','','','','','','','','','','','','','','','A20','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','','Y','','Y','','','','','','','','','GuixSD','Y','','','','','','','Y','Y','','sway','','',''),(1930,NULL,NULL,'en','586175996',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1931,'1980-01-01 00:00:00',5,'en','975029384','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','Y','','Y','','','','Y','','','Android','N','N','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I\'ve been watching nix for years, and had to setup a non-dockerised server and I used NixOS','Y','Y','Y','Y','','','','Atomic configuration','Stability','','Selinux\r\nsecure boot','Fedora/RHEL with puppet','Y','','','','','','','','','Y','','nix-sops','','Selinux support would be awesome'),(1932,'1980-01-01 00:00:00',5,'en','1241756033','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','Y','Tried to install nix from distro repos (archlinux) and go into problems. I will not install software from random scripts only. So if not integrated properly I will not use it.','','','','','Y','I was a huge pain trying to understand what the hell were and how it worked the profiles thing at the user home. And channles not working and there was a weird thing about as root working but as user not. Too hard to debug. Should just work.','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I first need to be confident in using and understanding nix as a tool in normal usage in another distro to manage packages and dev environments before I even think of jumping to that deep hole of having to manage a distro while still trying to understand the tool and the language.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','The rust book is the best docs on the web ever. We should have a single place targetting the different user profiles all under the same umbrella linked from the main site. I don\'t want to anytime I need to learn something have to navigate the dozen dispersed blogs and explanations on other peoples sites and around the web. Make a authoritative documentation place that brings all the contents from other places into a single place. And videos and blogs and all that, there really needs to be a much better effort in explaining and creating content around onboarding users and how to slowly grow with the tools. Don\'t just put the baby fully in the water and wait for it to start swimming by itself.'),(1933,'1980-01-01 00:00:00',5,'en','133330532','A5','A3','-oth-','Nonbinary','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I was tired of trying things and breaking my computer (I did a lot of distro-hopping), so a declarative configuration appealed to me.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A7','','','','','','','','','A1','A12','','','','','','','','','','','','','',NULL,'Probably Qubes, actually.','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A3','A13','A22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','A combination of: I rarely encounter software that I want that isn\'t already packaged acceptably. When I do, packaging it is often hard (weird build system, non-source bootstrap, weird runtime environment, dynamic linking). Writing a full package description in nix also feels harder than writing a `shell.nix` to create the appropriate environment, but on reflection that\'s probably not really true.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Same reason I started using Nix.','Y','','Y','','','','','Declarative configuration','Atomic upgrades/rollbacks','Large number of packages','I\'d make flakes the default and update all the documentation. I would also love it to be simpler to share builds/nix store files across machines. I\'ve tried to set one machine up as a build server for another a few times, but sometimes that machine is offline, and there\'s problems with SSH keys and permissions, etc. It would be nice if I could just say \"Hey, you three machines -- trust each other, automatically use each other as build caches and build servers when possible.\" (Like how they\'re all on a Zerotier network -- they just have to be told to trust the network, and then everything works)','Qubes!','Y','','','','','','','','','','sway','None that I\'m aware of','',''),(1934,NULL,NULL,'en','2116857277',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1935,'1980-01-01 00:00:00',5,'en','1833052225','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Started using it to replace Homebrew in macOS. I slowly started using it more and more to the point where now I have NixOS in my main desktop machine and my server runs NixOS VMs.','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A3','A1','','','','','','','','A13','A8','A5','','','','','','','','','','','','',NULL,'I\'d probably still be using Arch Linux.','A1','','','','Y','','','','','','','','','','','','','','','','','','','A1','A2','A9','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I haven\'t really needed to, most of what I use has been there already. There\'s one python package that I had to package recently for nix which I\'ll look into upstreaming soon.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','Declarative','Immutable','Rollbacks','The language, I\'d make it much easier to figure out what\'s available to me in the current context and what shape those things have.','Arch Linux','Y','','','','','','','Y','','','','flake-utils-plus, now flake-parts','digga','If you guys manage to figure out how to make the language better, this is undeniably the best linux distro out there.'),(1936,'1980-01-01 00:00:00',5,'en','366894047','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A14','A6','A3','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A22','','','','','','','','','','','','','','','','','','','','A22','A3','A2','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','','','','','','','reproducability','','','','Arch linux','Y','','','','','','','','','','shod','','',''),(1937,'1980-01-01 00:00:00',5,'en','752929736','A8','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A7','A2','A1','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'Debian, Ubuntu, or something more exotic like Void','A1','','','','Y','','','','','','','','','','','','','','','','','','','A2','A1','A15','A22','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I have no idea what I\'m doing','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','','I wanted to try out the declarative config, and needed a distro as I switched to a non-mac laptop','Y','','','','','','','rollbacks','','','','Debian, Ubuntu, or possibly a non-systemd distro like Void','Y','','','','','','','Y','','','','','',''),(1938,'1980-01-01 00:00:00',5,'en','1454166102','A5','A2','male','','','','','','','','','','Y','','','','','','','','Y','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted a stable and reproducible formula for a system','Y','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A2','A7','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'Likely Guix','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A9','A25','','','','','','','','','','','','','','','','','','','A1','A19','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I have tried contributing but my pull requests are never reviewed','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','Declarative system','Profiles','Rollback','Better support for new packages and services','','Y','','','','','','','','','','sway','N/A','Agenix, sops-nix',''),(1939,NULL,NULL,'en','991103191',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1940,NULL,1,'en','1268209164','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1941,'1980-01-01 00:00:00',5,'en','1714806003','A2','A2','male','','','','','','','Y','','','','','','Y','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','stability ','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A1','A3','A2','','','','','','','','A5','A3','A14','','','','','','','','','','','','',NULL,'opensuse','A4','','','','Y','','','','','','','','','','','','','','','','','','','A9','A2','A1','A25','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','stability \r\n','Y','','','','','','','ad hoc env','flakes','single config to manage all system ','Please add support for Flutter and Android. I\'m spent almost 3 days to configure it, it\'s almost impossible...','opensuse ','Y','','','','','','','','Y','','','flutter and Android development env. it\'s has too much problem ','flutter and Android development env. it\'s has too much problems ','it would be good to add support for Flutter and Android development env. And also guides for newbies how to do things with NixOS'),(1942,'1980-01-01 00:00:00',5,'en','871087125','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','Y','Package development sucks compared to easiness of AUR/pkgbuild','','','','','Y','Setting up flakes? Channels? Adding all this to configuration.nix? I don\'t have time for this.','','','','','Y','Nix is a horrible language compared to bash let alone Rust','','','','','Y','Y','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1943,'1980-01-01 00:00:00',5,'en','1104663125','A2','A3','male','','','','','','','Y','','Y','','','','','','','','','','','','','','','','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','Y','','','Y','Y','','','','Y','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A6','A3','A10','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','','','','','A2','A3','','','','','','','','','','','','','','','','','','','','A2','A20','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','Y','','','Y','','Declarativity','Rollback','First-class container support','Well developed and supported router-focused target, so I could install NixOS on routers and get their features well supported','','Y','','','','','','','','Y','','Xmonad','','',''),(1944,'1980-01-01 00:00:00',5,'en','1107768944','A2','A2','male','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','Y','','','A1','A9','A7','','','','','','','','A12','A11','A2','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','Y','','Y','','','','Y','','','','A15','A6','A2','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','Y','','','Y','','','','','Y','','','','',''),(1945,'1980-01-01 00:00:00',5,'en','571735054','A6','A2','male','','','','','','Y','Y','Y','','Y','Y','','Y','','','','','Y','','','','','Y','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The configuration driven os blowed my mind when i was discovering other tools out there\r\nNixOS can be used locally for multple machine and for production rollout','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','','Y','','','','A2','A10','A9','','','','','','','','A8','A9','A4','','','','','','','','','','','','',NULL,'I dont know lol\r\nI might be using arch linux locally\r\nand some bash scripts,ansible,terraform for servers','A1','','','','Y','Y','','','','','','Y','','Y','','','','','','','','','','A2','A10','A1','A13','A9','','','','','','','','','','','','','','','','','A1','A10','A3','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','Configuration driven','Completely reproducible,open source','Binary Cache','Would add something cool as flake & improve the language\r\nMore people should use it, only people who is smart or passionate about solving problems','Would be using archlinux with shell scripts locally\r\nOn servers ansible,shell script,terraform,etc..','Y','','','','','','','','','','BSPWM','Agenix for secrets \r\nI dont remember them all','','Nope, i just want the nix community to grow & become strong'),(1946,NULL,2,'en','1812453122','A2','A2','male','','','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','Y','','','','N','N','Y','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1947,'1980-01-01 00:00:00',5,'en','750727976','A2','A2','male','','','','','','','','','Y','','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Arch config grew messy, unreproducible. Learned about nix and NixOS. Some friends were using NixOS already and I finally switched my daily driver laptop to it','','Y','','','Y','','Y','','','','','','','','Y','Y','Y','Y','','','A2','A3','A1','','','','','','','','A4','A2','A6','','','','','','','','','','','','',NULL,'Probably still Arch, but maybe also Ansible/Chef/similar','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A3','A2','A4','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Same as with nix. I used to use Arch, got tempted by the option of a almost fully declarative, reproducible setup and switched due to that','Y','','','','','','','Reproducibility of installations','A central, well structured config describing the whole system','A module system for configuring programs/services/system components all in one language','The large amounts of bash/perl scripts that break in funny ways, made worse by useless traces/error messages','Probably still Arch, maybe also Ansible/Chef/similar','Y','','','','','','','Y','','','','nixpk.gs for PR status tracking, the NixOS search for options/packages, the GitHub code search for actually figuring out how stuff works/can be used (for a lack of good structured, versioned docs based on the code)','The manual, it somehow feels hard to find what you want in it (Ctrl+F style) and when you do find something it not too rarely has too little written about it, or you would have to read tok much prose around where you found it mentioned',''),(1948,NULL,1,'en','481856280','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1949,'1980-01-01 00:00:00',5,'en','1101688203','A2','A4','male','','Y','','','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','Having virtually identical environment across Linux, Windows, macOS','Y','Y','','Y','','','Y','','','','','','','Y','Y','Y','','','Y','','A6','A9','A1','','','','','','','','A12','A13','A11','','','','','','','','','','','','',NULL,'','A1','','','','','Y','','','','','','','','','','','','','','','','','','A25','A18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1950,'1980-01-01 00:00:00',5,'en','900578118','A2','A2','male','','Y','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A9','A10','','','','','','','','A8','A6','A10','','','','','','','','','','','','',NULL,'','A2','','','Y','Y','Y','','','','','','','','','','Y','','','','','','','','A4','A3','A2','A15','','','','','','','','','','','','','','','','','','A4','A3','A15','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(1951,NULL,NULL,'en','1991423781',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1952,'1980-01-01 00:00:00',5,'en','1631976046','A2','A3','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','Looking forward to use Nix within CI and building proprietary OS (not linux)','A3','Looking for a way to migrate from one PC to another with Arch. Found NixOs, dig deeper - found the rabbit hole of next-gen OS developement.','','Y','','','','','Y','','','','','Y','','Y','Y','Y','Y','','Y','','A7','A9','A10','','','','','','','','A5','A4','A2','','','','','','','','','','','','',NULL,'Maybe Ansible. Can not choose smth, cause nix is the the many.','A4','','','','Y','','','','','','','','','','','','','','','','','','','A3','A4','A15','A2','A17','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I\'m lazy asshole','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as for Nix','Y','','','','','','','All os environment described within single configurathin','Stability of updating','No way to break because of ro root','Make flakes.nix to be nix, better structure of documentation','Arch maybe','Y','','','','','','','','','Y','','','','Just thank you for your work!'),(1953,'1980-01-01 00:00:00',5,'en','524388083','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','wanna try something new after archlinux','','','','','','','Y','','','','','','','Y','','','Y','','','','A1','A7','','','','','','','','','A6','A14','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'','Y','Y','Y','','A1','wanna try some new system after archlinux','Y','','','','','','','declarative system configuration','rollbacks','','','pacdef with archlinux','Y','','','','','','','','','','hyprland','','',''),(1954,'1980-01-01 00:00:00',5,'en','1837306350','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','','','','','A1','A3','A10','','','','','','','','A13','A9','A6','','','','','','','','','','','','',NULL,'apt + bash/ansible + prayers','A4','','','','','','','','','','','','','','','','','Y','','','','','','A1','A11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A1','','In terms of packages - I do it occasionally, in terms of tools/ecosystem/global code - don\'t have time, lacking ide/tooling support is painful','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got fed up with gentoo','Y','','Y','','','','','One config to rule it all','Availability of packages','Rollbacks','I\'d make usage of external binaries less painful, make universal fit-it-all glib and cpp one :D\r\nMake flakes appear several years earlier and make it default for everything (+ probably would\'ve split nixpks into several flakes)\r\nPer-user configuration, maybe something like home manager','Gentoo, bash and probably lots of sedatives/alcohol/kanabis','Y','','','','','Y','','','','','Awesome wm','','',''),(1955,'1980-01-01 00:00:00',5,'en','315190585','','','','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','a','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1956,'1980-01-01 00:00:00',5,'en','1510045712','A2','A2','-oth-','non-binary','','','','','','Y','Y','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was tired of forgetting to migrate some packages & config when buying a new laptop or reinstalling OS. My server configuration was also a mess.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A13','A7','A4','','','','','','','','','','','','',NULL,'Probably Arch + some manual hacks','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','A13','A3','A4','A17','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as the Nix question.','Y','','Y','','','','','Declarative configuration','Project flakes','Amount of packages','Change Nix language to something better, probably some DSL over Haskell','Arch with some hacks','','','','','','Y','','','','','bspwm','home-manager\r\nMy own classified\r\nfenix\r\nnaersk\r\ncrane','',''),(1957,'1980-01-01 00:00:00',5,'en','1110676975','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','Y','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','To build Haskell applications ','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','','A2','A1','A7','','','','','','','','A5','A6','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A11','A9','','','','','','','','','','','','','','','','','','','A11','A5','A1','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Nothing! I’m just lazy ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted to run a home lab ','Y','','Y','Y','','','','Declarative ','Rollbacks','ZFS support','I’d add Nickel as a first class language','OpenSUSE for Linux and OpenBSD for the BSDs ','','','','Y','','','','Y','','','xmonad for x and gnome for wayland','','',''),(1958,NULL,1,'en','1931752167','A2','A4','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','Y','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1959,NULL,NULL,'en','1589024527',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1960,'1980-01-01 00:00:00',5,'en','354340261','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I saw my teamlead use nix, and heard about it a lot. Read a little bit of Nix pills, but didn\'t move from toy exercises.\r\nIn about 6 month over the New Year holidays I took time to set up NixOS on personal laptop, configured it and used ever since. \r\nOn personal laptop, on toy servers that i run, in personal projects.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A9','A7','A2','','','','','','','','A6','A8','A14','','','','','','','','','','','','',NULL,'I\'d try out Guix, maybe Dockerimages for development, some kinds of automations on top of direnv, i\'m not sure','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A11','A1','','','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I tried to do small contributions, but my small MR was not reviewed for a very long time.\r\nI would have liked to do reviews on small MRs, but not sure how to start','N','Y',NULL,'I only have work laptop for the past 16 months, and I\'m not allowed to use NixOS. If I ever get separate personal laptop, I will use NixOS','Yes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'agenix, sbt-derivation','',''),(1961,'1980-01-01 00:00:00',5,'en','927172895','A2','A2','-oth-','queer','','','','','Y','','','','','Y','','','','','','Y','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I needed a package manager that would not conflict with my Linux distro package manager (for extra software which wasn\'t covered by distribution)','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','','A9','A1','A2','','','','','','','','A3','A6','A4','','','','','','','','','','','','',NULL,'OCI containers with images for distributions suitable for relevant applications','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'N','Y',NULL,'Software reliability in general was (or at least felt) worse than Fedora and maintaining the OS generally felt like unpaid work','NixOS/nixpkgs-supported OS profiles (something that would quickly turn the machine into a software equivalent of Fedora Workstation)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','nixops\r\ndevenv','you guys do a good thing, good luck to you :)'),(1962,'1980-01-01 00:00:00',5,'en','348181199','A2','A3','male','','','','','','','Y','','Y','','','','','','Y','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Switched to NixOS, needed to add some derivations for everyday software and work projects. ','','','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A7','','','','','','','','A12','A2','A6','','','','','','','','','','','','',NULL,'Ansible. ','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A3','A4','A9','A19','A24','A21','','','','','','','','','','','','','','','A24','A2','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got tired of numerous config formats to maintain during upgrades and switches. ','Y','','','','','','','One uniform system config. ','Ability to install older/newer packages easily and without conflicts. ','','Replace Nix with some widespread language. ','Arch + dotfiles + Ansible. ','Y','','','','','','','','','','i3','','',''),(1963,'1980-01-01 00:00:00',5,'en','522355532','A2','A5','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A1','Needed to build C++ software I am working on using gcc10-gcc13 on a linux distro that only has gcc9. \r\nNeeded to use vscode etc. Nix shell seemed like a good option over building the toolchains manually and switching with `update-alternatives`','','Y','','Y','','','Y','','','','','','','','Y','Y','','','','','A2','A1','A10','','','','','','','','A10','A15','','','','','','','','','','','','','',NULL,'','A6','','','','Y','','','','','','','','','','','','','','','','','','','A4','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','N','So far WSL was sufficient for my needs. I might convince my kids to switch from Manjaro :)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I would like to be able to package a proprietary OpenGL app as an binary build packaged as an AppImage to be run on an non-NixOS system. Would be nice if it was possible to enable OpenGL support in the exported AppImage easily. '),(1964,NULL,2,'en','66092006','A2','A2','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I\'ve stumbled on it online, tried it and didn\'t like it at first because I found it needlessly complicated. Later on I got recommended by a friend to try NixOS, which I loved and stuck wit it and Nix since.','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A1','A2','A7','','','','','','','','A7','A6','A2','','','','','','','','','','','','',NULL,'Portage, RPM, Language-specific toolchains, Ansible','A1','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A9','A2','A3','A4','A13','A15','A22','','','','','','','','','','','','','','','A9','A2','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1965,NULL,2,'en','1768425985','A2','A3','male','','','','','Y','','Y','','','','','','','','','Y','','Y','','','','','','','','Y','Y','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Was looking for replacement for Ubuntu because I disagree with canonical point of view. Found NixOS and tried.','','Y','','','','','Y','Y','','','','','','Y','Y','','','','','','A7','A1','A10','','','','','','','','A14','A15','A4','','','','','','','','','','','','',NULL,'I want NixOS have better documentation ','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A3','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1966,'1980-01-01 00:00:00',5,'en','222258114','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I really wanted to configure several devices declaratively, so I installed nixos on a second device, after a few months I switched to nixos almost everywhere','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','Y','','','A2','A1','A10','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'Ansible and docker/podman','A7','','','','Y','Y','Y','Y','','','','','','','','','','','','','','','','A15','A7','','','','','','','','','','','','','','','','','','','','A22','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I really wanted to configure several devices declaratively, so I installed nixos on a second device, after a few months I switched to nixos almost everywhere','Y','','Y','','','','','Declarative configuration of multiple systems with sharing parts of configuration','Generations of system','Reproducibility','remove channels, add flakes as default','ansible','Y','','','','Y','','','','','','bspwm','home-manager','',''),(1967,NULL,1,'en','164756578','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Security admin','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1968,'1980-01-01 00:00:00',5,'en','1014695997','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1969,'1980-01-01 00:00:00',5,'en','236553767','A5','A3','male','','','','','','Y','','','','','','','','Y','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','Y','','Y','Y','Y','','','','','Y','Y','','Y','','','','A3','A2','A10','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Most likely arch or gentoo based package management. I\'d say Guix but if Nix didn\'t exist then neither would Guix','A4','','','','Y','Y','','','','','','','','','','','','Y','Y','','','','','A7','A13','A2','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','I started a new job using MacOS and was looking for a package manager because I hated homebrew at the time. Read Eelco\'s PHD, started using Nix and have never really looked back','Y','','Y','','','','','Declarative Configuration','Rollback','Services packaged by experts (mostly)','Really needs better documentation on how to use NixOS modules from outside \"the\" current nixpkgs channel. There are a lot of ways to do it but one of the most powerful things is being able to use out of branch modules. Please note that I\'m specifically talking about NixOS modules. There is plenty out there about how to use out of branch packages.','Gentoo or Arch. ','','','','','Y','','','','Y','','','None','Hydra. I briefly looked at trying to setup hydra for some CI/CD in my home setup but it\'s not for the faint of heart',''),(1970,'1980-01-01 00:00:00',5,'en','662212600','A1','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Fucking arch broke again and I was too tired of configuring my system manually.','Y','Y','','','','','Y','Y','','','','','','','','','Y','','','nixops','A1','A2','A7','','','','','','','','A14','A8','A6','','','','','','','','','','','','',NULL,'ansible, docker (?)','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','No guides on how to package something. Steep learning curve.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was tired of configuring arch. ','Y','','Y','','','','','declarative configuration','containers + nixops look very promising','wide package availability','','ansible, docker','Y','Y','','','','','','','','','sway','','','please more learning resources and documentation for flakes'),(1971,'1980-01-01 00:00:00',5,'en','1445947407','A5','A5','male','','','','','Y','Y','Y','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I needed to maintain a multiuser (hundreds) environment of modern tools for data science on outdated RHEL Linux servers. Anaconda was a disaster. Nix was a lifesaver.','','Y','','Y','Y','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','Y','','A11','A7','A8','','','','','','','','A8','A2','A6','','','','','','','','','','','','',NULL,'Stow or conda','A1','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A4','A2','A5','A21','','','','','','','','','','','','','','','','','','A4','A21','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I did contribute to nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I switched to NixOS when I became familiar with Nix.','Y','','Y','','','','','Declarative configuration using Nix','Atomic deployment and rollback ','','Merge NixOS-WSL\r\nMore comprehensive testing of the updates, important (for me) parts of unstable are broken too often','Arch','Y','','','','','','','','','','Xmonad','Home manager, emacs-overlay, NixOS-WSL','',''),(1972,NULL,2,'en','2038902129','A2','A5','male','','','','','','Y','','','','Y','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Loved the idea of declarative system configuration.','','Y','','','','','Y','Y','','','','Y','','Y','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A3','A5','A8','','','','','','','','','','','','',NULL,'Arch Linux with puppet or ansible','A2','','','','Y','','','','','','','','','','','Y','','','','','','','','A1','A15','A13','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1973,NULL,NULL,'en','1301197698',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1974,NULL,NULL,'en','1493040131',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1975,'1980-01-01 00:00:00',5,'en','1905903845','A2','A4','male','','','Y','','','Y','','','','','Y','','','','','Y','','Y','','Y','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A10','','','','','','','','A4','A3','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A20','A2','A11','A1','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(1976,NULL,1,'en','1138475803','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1977,NULL,1,'en','1812188519','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1978,NULL,NULL,'en','81752467',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1979,NULL,2,'en','931928847','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','I tried different distributions, but I settled on NixOS because I was attracted by the immutable root, the really cool package management solution, the possibility of declarative configuration description','Y','Y','','','Y','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A6','','','','','','','','A3','A6','A14','','','','','','','','','','','','',NULL,'Toolboxes','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A1','A15','','','','','','','','','','','','','','','','','','','A1','A15','A3','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don\'t think my skills are enough yet',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1980,'1980-01-01 00:00:00',5,'en','925881201','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A9','A1','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','Y',NULL,'Overwhelming to set up without deep documentation ','Better documentation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1981,'1980-01-01 00:00:00',5,'en','522351634','A2','A3','male','','','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','run proprietary software from nix-shell','','Y','','','','','','Y','','','','','','','','','Y','','','','A10','A9','','','','','','','','','A6','A7','','','','','','','','','','','','','',NULL,'apline apk','A4','','','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','no such need, everything is available and works','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','configuration.nix is is the best invention of distro design','','','Y','','','','','easy upgrade ','declarative oci-containers and systemd units for selfhosted services','gentoo-like ability to disable features like sound, X11, etc (without compiling from source)','python-like syntax so that I can actually understand the language ','alpine','Y','','','','','','','','','','','','','thank all the team for such important effort'),(1982,'1980-01-01 00:00:00',5,'en','1719801860','A5','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started using nixos to make my life easier when customizing my desk top\'s linux install. After using it for a few months I started adding flakes to all my personal projects to manage dependencies.\r\n\r\nAfter using it in personal projects I introduced flakes to my repos at work and many people started to use it. ','Y','','','','Y','','Y','Y','Y','','','','','Y','Y','','Y','','','','A2','A1','A10','','','','','','','','A5','A4','A8','','','','','','','','','','','','',NULL,'I would try guix but don\'t love it\'s hard stance on only free software.\r\n\r\nOtherwise would try to use dev containers for my projects and some jank bash scripts for my personal computers ','A2','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','A1','A2','A13','A9','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started using it to make customizg my is config eafier. After using it for a few months I installed it on my home server and laptop. Once I switched to flakes it made life much easier to manager home manger and other plugins','Y','','Y','','','','','Declarative config','The amount of supported programs with many customization options','Rollback/atomic operations','A standard/simple way to handle secret data like passwords. Right now I add a flake input to a nix file with secret info I don\'t check in but it feels jank. ','Maybe guix but don\'t like it\'s vibe much.\r\n\r\nMaybe ansible to setup or some jank setup of bash scripts','Y','','','','','','','','','','I3','Direnv/nix direnv is amazing for project use. It feels like it\'s almost a requirement (especially at work where I setup the flake and people don\'t understand nix much)\r\n\r\nWhen direnv breaks somehow it can be a pain to debug so would be nice if it had more first class support or if nix had some first class solution like it','I have used cacheix a bit but haven\'t gone super in on it for my system config due to dealing with secret data. ','Nix is amazing and want to see it succeed! '),(1983,'1980-01-01 00:00:00',5,'en','2064551490','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','as my home system','A1','I have been used Arch for a year, and saw that some people on the internet were using nix, I had never heard of it before, some of my friends started telling me about it, at that time I started learning about nix and nixos, there were a few failed attempts after which I gave it up, but still when I got into it, I liked it and got interested in it.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A2','A10','A1','','','','','','','','A8','A5','A1','','','','','','','','','','','','',NULL,'Arch, arch based distro\'s','A1','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A17','A15','A22','','','','','','','','','','','','','','','','','','','A17','A22','A15','','','','','','','','','','','','','','','','','','','','','','','A2','','Lack of experience.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','As home system.','A1',' I have been using arch and its derivatives for about a year, I saw people on the internet using nix, I had not heard about it before, then friends started talking about it too, then I started learning about nix.','Y','','','','','','','Сustomizability, especially when using flakes.','Reproducibility, you don\'t need to setup system every update.','Nix repositories, their flexibility, the ability to easily modify packages.','I\'ll add better flakes support, remove old imperative commands live nix-env','Arch, and it\'s derivatives.','Y','','','','','','','','','','Hyprland','Home-manager, third-party repositories like nur, chaotic-cx, nixvim project','None).','nothing.'),(1984,'1980-01-01 00:00:00',5,'en','479509365','A2','A3','male','','','','','','','','Y','','Y','Y','','','','','','','Y','','','','','','','','Y','Y','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','Docs are garbage. And they aren\'t even from the nix devs I think','','','','','','','','','','','Y','Bloated, not consistent:normal stuff/flakes/home manager, the language choise is really strange: some random functional language with barely any docs and which is used nowhere, but in nix (hello vimscript again)','','','','','Y','','','','','','Simplicity. If you like bloated stuff, please make at least a lightweight version for normal people',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Bloated, docs are garbage, language choise','Simpler, less bloated version. Maybe with lua (or any other language which is actually used outside of nix)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','I read about nix ops, but then I saw it\'s deprecated, so I lost my interest',''),(1985,'1980-01-01 00:00:00',5,'en','628735583','A2','A4','male','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','This is funny','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A2','A10','A7','','','','','','','','A13','A4','A8','','','','','','','','','','','','',NULL,'Debian','A2','','','','','Y','','','','','','','','','Didn\'t choose. I learn ','','','','','','','','','A3','','','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time and knowledge ','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','Y','','','','','','','Software installation','Software configuration','Flakes ','Documentation. People leave os without having time to figure out how everything work. ','Debian','','','','','','','','','','','I3','Nix lag\r\nNix- shell\r\nNixos search packages))) ','','I think . Need to make better documentation '),(1986,'1980-01-01 00:00:00',5,'en','1169500774','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking to good enough system to configure my personal linux systems as a code.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A3','A4','A11','','','','','','','','','','','','',NULL,'ArchLinux or Gentoo','A2','','','','Y','','','','','','','','Y','','','','','','','','','','','A9','A19','A2','','','','','','','','','','','','','','','','','','','A2','A4','A9','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','Configuration as a code','Reproducible builds','Rollbacks','Ability to easily install impure unfree applications like some proprietary drivers or corporate security tools','ArchLinux/ Gentoo','Y','','','','','Y','','','','','Hyprland','Home-manager, stylix','deploy-rs, nixops',''),(1987,'1980-01-01 00:00:00',5,'en','1867162203','A2','A3','-oth-','','Y','','','Y','','','','','','','','','','Y','Y','','Y','','','Y','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Because I was interested in NixOS and needed to learn nix. Later I found the benefits of nix on other platforms for managing dotfiles and crwating reproducible development environments','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A9','','','','','','','','A8','A6','A5','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','The search for a reproducible and fast linux lead me to nixos. Previously the I started using ansible, but that was not for me','Y','','Y','','','','','Reproducibility','Rollback functionality','Has newest packages','Add a general template for nixos configs','Arch or fedora with root on zfs and ansible for provisioning','Y','','','','','','','Y','Y','','','Disko, Nixos-generators, ','Digga template (too complex)','Thanks for all the great work! Wish you all the best for the future'),(1988,NULL,1,'en','1132443393','A2','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','pentester','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1989,'1980-01-01 00:00:00',5,'en','1521299335','A5','A4','male','','','','','','','Y','Y','Y','','Y','','','','','','','Y','','Y','','','','Y','','Y','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A7','Got a new laptop for work, FreeBSD doesn\'t support the graphics drivers required to use it as of yet, gave it a spin and things seemed to work well on the desktop.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A3','A2','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'IDK probably debian or arch?','A4','','','','Y','','','','','','','','','','Using flakes, but only because I wanted ZFS support. I have no idea what is going on with them.','','','','','','','','','A25','A2','A9','A13','A15','A1','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I have no idea what I am doing','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A1','Again, FreeBSD lacked video drivers, ZFS seemed possible with this.','Y','','','','','','','ZFS','Reproducibility?','???','Guix makes it more transparent what packages are being installed / updated','Guix? Arch? Debian?','Y','','','','','','','Y','','','stumpwm','common lisp / SBCL','','It seems like a decent project, with a clean initial installer. However stepping outside of the straight-foward leads to a lot of confusion. I tried to use SBCL with a library for https, and ended up having to go down a rabbit hole of trying to build custom environments in nix just to gain access to the OpenSSL library. I don\'t seem to have that problem with Rust, Go, or other languages, but I am worried that I am going to hit that issue again in the future.'),(1990,'1980-01-01 00:00:00',5,'en','1887495569','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Fell down a functional programming rabbit hole, and found Nix, realized it was the right solution to a large set of problems with software engineering practices and then began my slow climb of understanding and using it.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A2','A6','','','','','','','','A6','A4','A5','','','','','','','','','','','','',NULL,'traditional package managers and cry','A2','','','','Y','','','','','','','','Y','','','','','','','Y','','','','A24','A15','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','i\'ve contributed a first package and hope to do more. just something I have to allocate time to.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','Declarative config of machines -- not sure it\'s well understood that this is a new UX as well as new tech.','Rollbacks','nix-ld makes binaries easy.','you can\'t use unfree packages with a flake based configuration. This isn\'t documented anywhere except when Jonas brought up a solution: https://zimbatm.com/notes/nixpkgs-unfree . \"This whole error message is misleading. All the solutions proposed don’t work when using Flakes because Flakes evaluation is pure and doesn’t take your environment variables or config into account.\"\r\nThis sucks, isn\'t documented, and is an important feature. \r\nSecond, what\'s up with profiles vs nix-env? the user path for using one or the other seems broken. Perhaps it\'s that the intended usage pattern of ` nix profile` is unclear.','debian or the like','Y','','','Y','','','','Y','','','','had to start using home-manager to get unfree packages, so using that now. \r\nnix-ld i use a bunch. Super great for binaries without nixify-ing them.\r\n','','Nothing but love <3 \r\nThe community is growing, people are getting it, and they\'re looking for ways to onboard. Worth considering a holistic approach to onboarding and docs that we can reliably point people to. A failure mode here would be a 100 different unofficial resources and ways of doing things.'),(1991,'1980-01-01 00:00:00',5,'en','1415994','A2','A5','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking for an alternative to homebrew on Mac, since that kept breaking Emacs & various python projects whenever there was an update. ','Y','','','','Y','','Y','','Y','','','','','Y','Y','','Y','','','','A2','A3','A1','','','','','','','','A8','A14','A3','','','','','','','','','','','','',NULL,'Homebrew and perhaps (shudder) Docker','A7','','','','Y','','','','','','','','','','','','','','','','Y','','','A20','A9','','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','','Y','Y','','A3','',NULL,'N','N','Unsure if anything, at least on the desktop. Maybe if I had a spare computer and needed to set it up as a server for something? But I would also have to magically become young and/or jobless, as otherwise I\'d be more likely to buy an off-the-shelf solution. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'devenv.sh','','The distinction (if any) between `nix devshell` and `nix develop` is lost on me.'),(1992,NULL,1,'en','646734534','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1993,NULL,NULL,'en','923287277',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1994,'1980-01-01 00:00:00',5,'en','1013002779','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A3','A2','A1','','','','','','','','A10','A4','A5','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(1995,NULL,NULL,'en','1184629973',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1996,NULL,1,'en','206302489','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1997,'1980-01-01 00:00:00',5,'en','127241168','A5','A3','male','','Y','','','Y','','','Y','','','','','','','','','','Y','','','Y','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I read about how Nix could be an alternative to the Python virtual environments, conda environments, HPC modules, and other solutions I had used for my professional research work and personal programming needs across multiple languages. I had tried it, and found it useful but too difficult to use (I blogged about it here: https://jrhawley.ca/2021/10/18/nix-package-manager). Then I came across the nix-direnv (https://github.com/nix-community/nix-direnv) tool as a way to automatically load and unload development environments, and decided to give Nix a second try by making use of Nix flakes.','Y','Y','','Y','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A6','A9','','','','','','','','A5','A9','A8','','','','','','','','','','','','',NULL,'Conda environments for most use cases.','A6','','','','Y','','','','','','','','Y','','','','','','','','','','','A2','A15','A21','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Lack of documentation (or difficulty finding this documentation) describing how to test nixpkgs manifests before submitting a pull request.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I had an old laptop that I wasn\'t using much, and wanted to see if using NixOS had any benefits on top of just installing Nix on a different Linux operating system.','Y','','','','','','','Automatic potential for rollback on startup','Easy upgrades between versions','Every program is installed via Nix','Better error messages when a nixos-rebuild switch command fails. It currently highlights the technical reasons why something failed, but doesn\'t offer any suggestions on how to fix this error. Since most people are not well-experienced with NixOS or the Nix language, this would be extremely helpful for people trying to debug their Nix flakes or NixOS configuration files.','Ubuntu, elementaryOS, or some other Linux OS','Y','','','','','','','Y','','','','https://github.com/nix-community/nix-direnv\r\nhttps://github.com/nix-community/emacs-overlay\r\nhttps://github.com/DeterminateSystems/nix-installer\r\nhttps://github.com/numtide/flake-utils\r\nhttps://github.com/nix-community/rnix-lsp\r\nhttps://cachix.org\r\nhttps://github.com/nix-community/fenix','','Nix has lots of potential in the data science/research setting, too, not just for building software. I wrote a blog post about how Nix could be a foundational tool for doing any research that involves computers that might be of interest (https://jrhawley.ca/2023/04/06/rethinking-nix-for-reproducible-science). Repl.it is a company in this space that is making heavy use of Nix as a foundational tool in their software stack, and there are a lot of ideas here that can be used by research groups, institutions, and companies all around the world. Check out their corporate blog for various technical details and use cases (e.g. https://blog.replit.com/super-colliding-nix-stores).'),(1998,NULL,NULL,'en','1738114038',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1999,'1980-01-01 00:00:00',5,'en','1220075482','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A14','A6','A8','','','','','','','','','','','','',NULL,'GNU Guix if it would appear.','A4','','','','','Y','','','','','','','','','','','','Y','','Y','','','','A2','A5','A15','A9','A4','A3','A11','A1','A14','A22','A26','','','','','','','','','','','A2','A15','A14','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','To simplify migration between machines, to have custom development environment.','Y','','','','','','','configuration as the code','optional rolling updates (install some packages from unstable)','binary cache','Better documentation, not just language and basic operations, but common use case examples.\r\n\r\nInstead of googling about how to properly use something, seeing unanswered threads in discourse and looking for configuration examples on GitHub/GitLab instead of documentation.','GNU Guix','Y','','','','','','','','','','leftwm','nix-direnv, devenv, nix-ld, home-manager','flakes','Thank you all for the great work on our common best Linux distribution!'),(2000,'1980-01-01 00:00:00',5,'en','1261075652','A5','A4','male','','','Y','','','Y','Y','','','Y','','','','','','Y','Y','Y','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted a better solution than the 18 zillion hacked together dotfiles projects and it all kind of snowballed from there','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A6','A8','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'Guix (arguably, would Guix exist without Nix?)','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','A1','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','As a Nix user I have almost zero desire to interact with other Nix users','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Once I got sick of trying to fight w/ home-manager and nix on non-NixOS distributions I gave up and just installed NixOS -- worked great considering I already had most of my configuration nix\'d at this point.','Y','','Y','','','','','Declarative configuration management as a first class feature of the OS','Configuration rollback','Deployment to remote machines','Streamline building & deploying NixOS configurations cross-platform (i.e. I have a low resource aarch64 host and I\'d love to build & deploy a system for it on x86 without too much hassle)','Guix :)','Y','','','','','','','','','','i3','home-manager, flake-utils','sops-nix, agenix',''),(2001,NULL,2,'en','1205850085','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','N','N','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2002,NULL,1,'en','1122263901','A5','A3','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2003,NULL,NULL,'en','1543408640',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2004,'1980-01-01 00:00:00',5,'en','1707191856','A2','A2','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because of NixOS. My friend recommended me to try it.','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A1','A9','A2','','','','','','','','A8','A6','A7','','','','','','','','','','','','',NULL,'GNU Guix, Portage, RPM, Language-speicifc package managers and build systems','A1','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A9','A2','A3','A4','A15','A13','','','','','','','','','','','','','','','','A9','A2','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I started getting interested heavily in IaC. My friend recommended me to try NixOS because of that.','Y','','Y','','','','','Extensible and centralised configuration of multiple hosts.','Fast deployments and environment mirroring between multiple hosts.','Atomic rollbacks.','Add: first-class secrets and ACL support. Change: write Nix around the module system from the ground up fixing all design flaws that we have now, also make configuration options more uniform (RFC042 and etc.). Remove: over-reliance on systemd.','GNU Guix System, Gentoo, Fedora (Silverblue?), MacOS','Y','','','','','Y','','','Y','','','nixos-hardware, NUR, nix-darwin, home-manager, impermanence, simple-nixos-mailserver, agenix, pre-commit-hooks and many more :)','sops-nix, NixOps, hercules-ci','Thank you for Nix and NixOS! These things truly became game changers in my computing life. I can\'t wait for them to gain more industry-wide adoption.'),(2005,'1980-01-01 00:00:00',5,'en','1692116044','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Building from source with caching, reproducibility ','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A5','','','','','','','','A6','A13','A3','','','','','','','','','','','','',NULL,'custom scripts','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A15','A20','A25','','','','','','','','','','','','','','','','','','A5','A15','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','github','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','moving from Archlinux, better configuration ','Y','','Y','','','','','atomic environment','reproducibility ','configuration','remove nix, add scheme','GuixSD','Y','','','','Y','','','','','','i3wm','home manager, emacs overlay, rust overlay','nixops','Great work! Thanks for providing such a great distribution!'),(2006,'1980-01-01 00:00:00',5,'en','323433871','A2','A5','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','It sounded very clever, the next step in the evolution of OS and package management. Figured I had to adopt it.','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A1','A10','A2','','','','','','','','A4','A8','A14','','','','','','','','','','','','',NULL,'Arch, pacman; Ubuntu, apt.','A4','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A24','A9','A26','A22','A15','A23','A14','','','','','','','','','','','','','','','A24','A23','A26','','','','','','','','','','','','','','','','','','','','','','','A1','','Errors. I seem to lack the deeper understanding required to understand them. ie I\'m crap at nix/flakes.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','It looked like the next step in the evolution of OS and package management.','Y','','Y','','','','','Configuration.','','','','Arch, Ubuntu.','Y','','','','','','','','','','','','','Onward!'),(2007,'1980-01-01 00:00:00',5,'en','323257615','A6','A3','male','','','','','','','','','','','Y','','Y','','','','','Y','','Y','','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I got fed up with dependency hell in Haskell ecosystem and I found it very convinient replace Sent for kubernetes and DockerOS. ','','Y','','Y','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A2','A4','A5','','','','','','','','','','','','',NULL,'Arch and custom scripts ','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','A13','A3','','','','','','','','','','','','','','','','','','','A2','A15','A1','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Unclear how to do this, which are the best practicies. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','First I get used to nix on Fedora and then Fedora broke drivers for my nvidia card. NixOS manage to work out of box, so I started diving in. ','Y','Y','Y','Y','','','','Declarative system','Huge amount of packages','Easy to share','Remove flakes, add more typing in language. ','Arch','Y','Y','','','','','','','','','I3','Nixops 1.0','Flakes',''),(2008,'1980-01-01 00:00:00',5,'en','2076370599','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','docker','it was the next step after falling in love with docker & containers','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I like the idea behind it\r\nJust tried in VM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','<3 keep doing what you do'),(2009,'1980-01-01 00:00:00',5,'en','1530070799','A2','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','N','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Set up a new laptop with it out of curiosity and I found it workable','Y','','','','','','','Single-file system config','Monorepo for the OS','ease of switching between / simultaneously usage of different software versions','Better / more unified / more accessible introspection facilities.','Arch Linux','Y','','','','','','','','','','i3 / sway','nix-shell','nix-env','NixOS is still a fringe distrubtion in many ways. I\'m amazed how much is achieved in this status!'),(2010,'1980-01-01 00:00:00',5,'en','1618212993','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','Y','','','N','N','Y','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2011,'1980-01-01 00:00:00',5,'en','1268864619','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Because of NixOS ','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','A10','A1','A8','','','','','','','','A8','A5','A3','','','','','','','','','','','','',NULL,'I have no idea','A7','','','','Y','','','','','','','','','','','Y','','','','','','','','A3','A2','A4','A15','A21','','','','','','','','','','','','','','','','','A15','A2','A21','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of time and knowledge. Contribute small (bug report and fixing) patches to Nixpkgs. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Was transitionning to Linux permanently, heard about a distribution that could help me share configurations across machines. That was NixOS.','Y','','Y','Y','','','','System configuration as files','Composable configurations (modules)','Rollbacks','Rust compilers\' error messages on nixos-rebuild error messages','Arch ? Fedora ? I am trying to not think about it. ','Y','Y','','','','','','Y','','','','Mach-nix','','Good luck ! Thank you for your time !'),(2012,'1980-01-01 00:00:00',5,'en','1492713080','A2','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','Die-hard perfectionist, Back-end developer, Functional Programmer. Got tired of setting up all the things manually again, again and again (been using Linux for 4-5 years now). Gave a shot to NixOS, didn\'t regret it, probably won\'t regret it in the future too. Not going back -- it\'s my home now.','','','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A9','A6','','','','','','','','A9','A14','A8','','','','','','','','','','','','',NULL,'Dreaded shell scripts.','A4','','','','','Y','','','','','','','','','','','','','','','','','','A11','A13','A9','A20','A23','A3','A1','','','','','','','','','','','','','','','A15','A11','','','','','','','','','','','','','','','','','','','','','','','','A2','','I don\'t have enough time.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','Reproducible builds.','Management of packages and configs.','Stability (idk, it is stable for my use cases).','I would change the naming/namespacing of packages. Would add more editor plugins and overall more packages.','Damned shell scripts!','','','','','','','','Y','','','','Home manager. It is good. Hard, but good. Unstable, but good.','','English speaking Telegram community is a joke. Literal home for shitposters and bikeshedders. Can\'t take it seriously. I even prefer to use translator to translate my messages to Russian and ask Russian community about it.'),(2013,NULL,NULL,'en','1280307737',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2014,'1980-01-01 00:00:00',5,'en','1825768391','A2','A2','fem','','Y','','','','','','','Y','','','','','','','','','Y','','','Y','','Y','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','Y','Y','Y','','A1','was recommended at hackspace, now i enjoy and embrace the cult and spread words of wisdom','Y','Y','','','Y','','Y','Y','','','Y','','','Y','Y','','Y','','','','A2','A4','A8','','','','','','','','A4','A5','A6','','','','','','','','','','','','',NULL,'aur/homebrew/apt','A1','','','','Y','','','','','','','','Y','','','','','','','','','','','A3','A15','A25','','','','','','','','','','','','','','','','','','','A3','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','lack of documentation and guides, steep learning curve','N','Y',NULL,'','ability to incrementally apply configurations/flakes one top of existing one, similarly to home-manager configurations',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','nix with docker, quite tedious to use within dockerfiles','Iit would be awesome to have graphic tool for management and writing configurations, perhaps with integration of CI, secrets management, packages and option browser. The only existing one is mynixos.com and it\'s lacking a lot, not to mention bugs. It would drastically improve usability for both newcomers and experienced people. Also it would be awesome to have customisable templates for configurations, development environments and builders/generators.'),(2015,NULL,NULL,'en','1340872729',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2016,'1980-01-01 00:00:00',5,'en','1015591396','A2','A4','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Got sold on the home-manager approach of handling personal configuration files. ','','Y','','Y','Y','','Y','','Y','','','','','Y','Y','Y','Y','','','','A1','A9','A2','','','','','','','','A10','A5','','','','','','','','','','','','','',NULL,'','A1','','','','','Y','','','','','','','','','','','','Y','','','','','','A13','A25','','','','','','','','','','','','','','','','','','','','A13','A25','','','','','','','','','','','','','','','','','','','','','','Y','','A1','','','N','N','I am not quite sure. Right now \"nix-as-package-manager\" on a WSL/Linux machine is largely sufficient for my needs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'direnv with use_nix is my daily driver.','',''),(2018,'1980-01-01 00:00:00',5,'en','342444732','A5','A4','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A3','','Y','Y','','','','','Y','','Y','','','','','','Y','','Y','','','','A2','A1','A9','','','','','','','','A8','A5','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2017,NULL,NULL,'en','617033843',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2019,'1980-01-01 00:00:00',5,'en','400815103','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','Y','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2020,'1980-01-01 00:00:00',5,'en','613899454','A2','A5','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A3','','','','','','','','A5','A6','A4','','','','','','','','','','','','',NULL,'Debian','A2','','','','','Y','','','','','','','','','','','','','','','','','','A1','A2','A15','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A1','','- Time\r\n- All interesting packages are already there','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Because of its fully declarative configuration for the system','Y','','Y','','','','','','','','','Debian','Y','','','','','','','','','','xmonad','','',''),(2021,NULL,NULL,'en','1256883077',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2022,'1980-01-01 00:00:00',5,'en','1070362177','A2','A4','','','','','','','','','','','','Y','','','','','','','Y','','','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Found out about it through a colleague way back when. Was convinced by the model, and stayed for the rollback feature.','','Y','','','','','Y','Y','','Y','','','','Y','Y','','Y','','','','A1','A7','A10','','','','','','','','A6','A8','A4','','','','','','','','','','','','',NULL,'','A7','','','','Y','','','','','','','','','','','','','','','','','','','A1','A10','A2','A24','A15','','','','','','','','','','','','','','','','','A10','A1','A2','','','','','','','','','','','','','','','','','','','','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','','','','','','','','','','Y','','','','','','','','','sway','','lots of python to nix projects that don\'t quite work.','Focus on the tech.'),(2023,NULL,NULL,'en','1254330216',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2024,'1980-01-01 00:00:00',5,'en','1147878032','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was tired of homebrew and managing my neovim config/plugins across multiple hosts','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A6','','','','','','','','A4','A8','A9','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A3','','Y','','Y','','','','','Declarative system','Atomic upgrades','NixOS Containers','A good secure boot implementation','','Y','','','','','','','Y','','','','direnv with `use flake`\r\ncachix','',''),(2025,'1980-01-01 00:00:00',5,'en','1879186223','A5','A3','male','','','','','','','','','','','','','','','Y','','','Y','','','','','','Y','','Y','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A2','A7','A5','','','','','','','','A6','A5','A14','','','','','','','','','','','','',NULL,'Guix or OpenBSD','A4','','','','Y','Y','','','','','','','Y','','','','','','','','','','Laminar','A9','A15','A3','A6','','','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','Y','Y','Y','','Y','','Declarative configuration ','Reproducible builds','Remote deployment (morph)','Better secret management that works well with state','OpenBSD or Guix','Y','','Y','','','','','','','','dwm','Disko and nixos-generators','nix-sops','I really wish size optimizations were possible'),(2027,'1980-01-01 00:00:00',5,'en','1435504857','A5','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','Jumped on the hype train in college, read Eelcos PhD thesis, never looked back. The NixOS experience dominates everything else for managing servers!','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A2','A1','A3','','','','','','','','A12','A13','A1','','','','','','','','','','','','',NULL,'','A2','','','','','Y','Y','Y','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','Way better than Salt!','','','Y','','','','','Whole system declarative config','Atomic rollback/deployment','Module system','','','Y','','','','','Y','','','','','','direnv','Using qemu and binfmt to emulate aarch64 builds on amd64 - way to slow. Running real distributed builds on my RPI 4 instead.',''),(2028,'1980-01-01 00:00:00',5,'en','1149750791','A5','A4','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','As a life-long Linux user, I found the concepts very intriguing and made sense.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A2','A3','A6','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Some combination of Docker, Ansible and shell scripts.','A6','','','','Y','','','','','','','','','','','','','','','','','','','A9','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','Don\'t feel comfortable enough with Nix yet. Still learning...','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Heard about it on social media. Found it very interesting. Installed on laptop.','Y','','Y','','','','','Declarative config','Rollbacks','Learning','Way better documentation','Debian','','','','','','','','','','Y','','','','Nix is really cool. It is just hard to learn and I hope their is better resources for that soon.'),(2029,'1980-01-01 00:00:00',5,'en','1187624179','A5','A5','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','Y','','','','','','','A1','','','','','','','','','','A5','A4','','','','','','','','','','','','','',NULL,'','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','But installation experience and unhelpful devs have turned me off getting more involved with nix.','N','N','Have had subpar experiences with just the nix package manager so I probably won\'t go full nixos.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Tried to install the nix package manager the recommended way (multi-user?) and while the script ran fine and reported *NO ERRORS* it still didn\'t work. Installed the non-recommended way (single-user?) and it worked. Then had a problem with the main package I wanted test my beginner nix experience. Filed a bug against the package (which had maybe one other bug against it) including the @\'s of the maintainers of that package as the template said to do. They never even acknowledged the existence of the bug.'),(2030,'1980-01-01 00:00:00',5,'en','985552245','A2','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I\'m interested in declarative infrastructure.','Y','','','Y','','','Y','Y','','Y','','','','Y','Y','','Y','','','','A1','A2','A10','','','','','','','','A14','A8','A6','','','','','','','','','','','','',NULL,'Debian w/ scripts. Maybe Ansible.','A1','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','Garnix','A15','A20','A23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','A deep understanding of best practices and how to test my changes.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Declarative system management!','Y','','Y','Y','','','','Declarative state management','Nixpkgs','Generations/rollback','The legacy stuff. Have one good way of doing things.','Debian w/ scripts, maybe Ansible.','Y','','','','','','','Y','','','','','',''),(2031,NULL,1,'en','546006291','A2','A4','male','','','','','','','','Y','','','Y','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2032,NULL,NULL,'en','1198175121',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2033,NULL,3,'en','328978716','A2','A4','fem','','','','','','','Y','','','','Y','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','via osmosis','','Y','','','','','Y','','','Y','','','','Y','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','','','','','A2','A23','A1','A24','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2034,NULL,NULL,'en','714163388',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2035,'1980-01-01 00:00:00',5,'en','705659467','A5','','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','N','N','','','','','better integration with guix (though this means dev towards guix more than dev toward nix, of course)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Better integration with GuixSD, though this is more of a \"Guix devs\" problem than a NixOS problem',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2036,NULL,1,'en','1515254053','A2','A3','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2037,'1980-01-01 00:00:00',5,'en','1126655771','A2','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','N','N','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2038,NULL,NULL,'en','283339838',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2039,'1980-01-01 00:00:00',5,'en','74663968','A5','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I have 4 self-managed computers that I might have to use on a daily basis, i.e. . I needed a way to keep the configuration in sync between them. I\'ve used Ansible on Fedora for this before but it\'s too slow and I\'m tired of writing YAML.','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A7','','','','','','','','A13','A4','A8','','','','','','','','','','','','',NULL,'Probably Ansible, Salt, or Puppet.','A4','','','','','','','','','','','','','','','','','','','','','','','A15','A9','A1','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Haven\'t had a reason to yet.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I have 4 self-managed computers that I might have to use on a daily basis, i.e. . I needed a way to keep the configuration in sync between them. I\'ve used Ansible on Fedora for this before but it\'s too slow and I\'m tired of writing YAML.','Y','','','','','','','Configuration can be in source control','Configuration can be reproduced across multiple machines','Stuff just works','','Probably Fedora, Fedora Silverblue, or Arch.','','','','','','','','','','','River','','',''),(2040,NULL,1,'en','911955899','A5','A3','male','','','','','Y','','Y','','','','','','','','','Y','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2041,NULL,NULL,'en','1156053344',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2042,'1980-01-01 00:00:00',5,'en','562206882','A3','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','Y','','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','Y','I use WSL a lot and some important stuff does not work like vscode integrations and docker.','','','','','Y','Documentation is all around the place, you still find super old stuff not using nix flakes in the wiki. The guides always use unecessary complicated language that could be simplified to explain the concepts.','','','','','Y','','','','','','Better WSL2 integration',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Not compatible with WSL2','Better WSL2 compatibility',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nix pkgs','nix shell/dev envs',''),(2043,'1980-01-01 00:00:00',5,'en','1354702568','A2','A4','male','','','','','','Y','','Y','','','Y','','','','','','','','','','','','','','Consultant','Y','','Y','','','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Curiosity','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','','','','A2','A10','A7','','','','','','','','A8','A9','A13','','','','','','','','','','','','',NULL,'OpenBSD, Arch Linux','A7','','','','Y','Y','','','','','','','','','','','','','','','','','GoCD','A5','A2','A1','A25','','','','','','','','','','','','','','','','','','A24','A5','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Limited time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Curiosity','Y','Y','','Y','','','','','','','','OpenBSD, Arch Linux','Y','','','','','Y','nixinate','','','','dwm','','',''),(2044,'1980-01-01 00:00:00',5,'en','187114523','A2','A2','fem','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','Plan 9','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','','','','','','','','','','','','','','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2045,NULL,1,'en','2037828234','A5','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2046,'1980-01-01 00:00:00',5,'en','828311583','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Previously used Arch on many different machines and Ubuntu for simplicity on family machines. I had a newer PC that was not working exactly the way I wanted, so I distro-hopped over to NixOS. After three months of struggling to understand NixOS and learning the bare minimum git, I switched over all of my machines and most family member machines using a flake.','','','','','','','Y','Y','','','','','','Y','','','','','','','A1','A8','A10','','','','','','','','A8','A4','A14','','','','','','','','','','','','',NULL,'Arch','A1','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','No tech background and currently consumed by work and family.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I switched from Arch after realizing how great it is to be able to declare configurations. Ease of use using the NixOS usb installer that was offered.','Y','','','','','','','Configuration options','Latest software while remaining stable','Ease of keeping up-to-date (using flake, but it took a long time to get there)','I would add the ability to use a \"spreadsheet\" to manage all the packages on all machines in my flake. Lists works well, but a spreadsheet would be able to tell me that LibreOffice is on Machine A, B, but I keep it off of C, etc.','Arch','Y','','','','','','','Y','','','hyprland','','',''),(2047,NULL,0,'en','1495099693','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2048,NULL,NULL,'en','1109346764',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2049,'1980-01-01 00:00:00',5,'en','243707656','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A7','Wanted sane package management with reproducibility. ','Y','','','','Y','','Y','','','','','','','Y','Y','','Y','','','','A6','A2','A3','','','','','','','','A5','A6','A14','','','','','','','','','','','','',NULL,'Brew, Debian, Fedora Silverblue, ostree, flatpack','A6','','','','Y','Y','','','','','','','','','','','','','','','','','','A17','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Still learning how Nix works','N','N','Planning to in the future. Still figuring out nix-darwin and home-manager at the moment.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'flakes, nix-darwin, home-manager, nur, nixery','',''),(2050,'1980-01-01 00:00:00',5,'en','560895909','A5','A3','','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','','','','','','Y','','','','','','','','','Y','','','','A10','A1','A7','','','','','','','','A5','A14','A9','','','','','','','','','','','','',NULL,'Debian and Ansible','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','','Y','','','','','Package configuration','Atomic rebuilds/rollbacks','Wide selection of packages','Secure Boot (with custom keys)\r\n\r\nEasier to understand how to compose multiple configuration files (I think this is Flakes? Right now I just have a large configuration.nix, but I\'m only using one machine so far)','Debian with Ansible','Y','','','','','','','','','','','','',''),(2051,NULL,2,'en','943150384','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','N','N','','','','Y','Configuration as code',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2052,'1980-01-01 00:00:00',5,'en','31224509','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A7','A5','','','','','','','','A6','A8','A2','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A22','A2','','','','','','','','','','','','','','','','','','','','A22','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','','Y','','','','','','','Declarative (including for `.config`)','Immutability','Rollbacks','Better errors and build times.','','Y','','','Y','','','','','','','','','',''),(2053,'1980-01-01 00:00:00',5,'en','51135762','A5','A2','male','','Y','','','','','','','','','Y','','','','Y','','','Y','','','Y','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A1','','','Y','','','','','Y','Y','','','','','','','Y','Y','','','','','A10','A1','A3','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2054,'1980-01-01 00:00:00',5,'en','169011518','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Online user blogs mentioning nix a lot.','','','','','','','','Y','','Y','','','','','','','Y','','','','A2','A1','A10','','','','','','','','A6','A4','A14','','','','','','','','','','','','',NULL,'FreeBSD + BastilleBSD/Rocinante','A4','','','','Y','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','It takes time to wrap your head around NixOS and how the community uses it. It seems like it takes a lot of tinkering before you can feel ready to contribute. \r\nI\'ve followed development on github and it seems fast past.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Too reduce strain of maintaining many cloud VMs and servers. ','','','Y','Y','','','','Porting setups to multiple servers and VMs','Automating things like tailscale/zerotier','Git integration with flakes','1. Secrets management to protect ssh keys and other things in the base NixOS\r\n2. Fully embrace NFTtables as default firewall and easier control of per interface, per ipv4 and per ipv6 settings. (I use ipv6 for everything and only need to open a few specific ports on ipv4).\r\n3. Decide on nix-channels or flakes, I\'ve used both and I seen benefits to both. It seems to have caused a soft split of the community and documentation. I am\r\nnot really sure what to do here.\r\n','FreeBSD + BastillleBSD/Rocinante','Y','','','','','','','','','','','','home manager. I would prefer something like that in base nixos.','Good work everyone!'),(2055,'1980-01-01 00:00:00',5,'en','1397405384','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','Y','Y','Y','Y','','GrapheneOS (Android)','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted granular control over my package build process, and BSDs / Void Linux created too much work by avoiding systemd + glibc.','Y','Y','','Y','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','','Y','','A2','A5','A1','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'Debian stable, Ubuntu LTS, proxmox.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','in-house tool','A2','A3','A4','A15','A1','','','','','','','','','','','','','','','','','A2','A15','A22','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','It\'s the only mature choice for declarative systems.','Y','','Y','','','','','Declarative','Source-based','Reproducible','Support Raptor Talos ppc64le machines','Debian stable, Ubuntu LTS, Proxmox. Possibly play with Void, FreeBSD, OpenBSD.','Y','','','Y','','','','','Y','','','','divnix/digga is too complicated; I ended up rolling my own simpler factorization.',''),(2056,NULL,NULL,'en','1830413037',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2057,NULL,3,'en','1967253017','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2058,NULL,1,'en','1100472129','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2059,'1980-01-01 00:00:00',5,'en','1798144798','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','Y','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A6','','','','','','','','A6','A8','A9','','','','','','','','','','','','',NULL,'Bazel for building, not sure about configuration management and probably toolbox for development environments.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A20','','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Config as code and reproducible home server','','','Y','','','','','Config as code','Reproducability','Atomic upgrades and rollbacks','','Probably CoreOS or some virtualization.','Y','','','','','','','','','','None, this is a server.','','',''),(2060,NULL,1,'en','630328543','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Security Engineer','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2061,'1980-01-01 00:00:00',5,'en','948730936','A2','A4','male','','','','','','','Y','Y','Y','Y','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','having the same configuration between mac and linux with home-manager','Y','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A3','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'custom scripts, manual work','A1','','','','Y','','','','','','','','','','I don\'t know??','','','','','','','','','A1','A24','A6','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','no interest','N','Y',NULL,'too hard to get to where I want to get','I don\'t want to put extra work in learning new things and figuring out why things don\'t work',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'home-manager','',''),(2062,'1980-01-01 00:00:00',5,'en','1547146664','A2','A3','male','','Y','','','','','','','Y','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Because NixOS.','','Y','','','','','','','','Y','','','','','','','Y','','','','A7','A1','A10','','','','','','','','A5','A6','A9','','','','','','','','','','','','',NULL,'','A5','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A22','A9','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','','Y','','A3','Required robust server OS for the infrastructure of our student association.','','','','Y','','','','Atomic system updates (Generations)','','','Add ability to generate plain system images for RPis (without nixpkgs).','Debian + Ansible','Y','','','','','','','','','','','','',''),(2063,'1980-01-01 00:00:00',5,'en','1829152881','A5','A7','male','','','','','','','Y','','','','','','','','','','','','','','Y','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Because lots of the cool Haskell people were using it.','Y','','','','','','Y','','','','','','','Y','Y','','','','','','A1','A2','','','','','','','','','A5','A8','A9','','','','','','','','','','','','',NULL,'homebrew','A7','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A13','A15','A1','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Nix is still too hard to use --- despite the ease-of-use layers (like devenv) on top.','N','N','If I had two things:\r\n- a non-MAC laptop\r\n- someone always available to help me when I get stuck\r\n\r\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'devenv','','Nix, when it works, is great.\r\nWhen it doesn\'t, is a nightmare.'),(2064,'1980-01-01 00:00:00',5,'en','880305221','A5','A2','male','','Y','','','','','Y','','','Y','Y','','','','Y','','','Y','','','Y','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Can\'t remember.','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A1','','','','','','','','','A8','A3','A2','','','','','','','','','','','','',NULL,'Tears.','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A25','A11','A13','A14','A15','A22','A1','A24','','','','','','','','','','','','','','A25','A11','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','Can\'t remember.','Y','','Y','Y','','','','Large package selection','Preconfigured services','Configuration storable in git','First-class support in the language for the module system.','Tears.','Y','','','Y','','','','','','','sway','','','I\'m excited for nickel!!'),(2065,'1980-01-01 00:00:00',5,'en','671755135','A5','A3','-oth-','non-binary','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A11','A10','A2','','','','','','','','A12','A11','A2','','','','','','','','','','','','',NULL,'some combination of Ansible (configuration management) & bazel or buck2 (build system)','A4','','','Y','Y','Y','','Y','','','','','','Y','','','','Y','','','','','','A2','A13','A3','A4','A9','A15','','','','','','','','','','','','','','','','A9','A1','A5','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','Y','Y','','','','','stateless, declarative environment configuration','whole-system package configurability','cross-platform support','first-class support for the module system; it\'s currently implemented as a library, however the interface is general enough that i believe it should be integrated more deeply into NixOS and/or Nix itself (e.g. module-based stdenv).','honestly idk; maybe GuixOS, maybe Flatcar & lean into OCI containers more? i would probably just administrate fewer servers and shift back to general backend software development.','Y','','','','','','','Y','Y','','','home-manager, nix-darwin, disko, flake-parts, impermanence','nixops','thanks for all the hard work, open source is thankless and managing a project as large as NixOS sounds grueling.\r\n\r\ni\'ve benefited greatly from all the work that the maintainers have done over the years, far beyond what i\'ve been able to contribute back to the project.'),(2066,'1980-01-01 00:00:00',5,'en','228406048','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I chose NixOS for easy installation of a wide range of software that already has best-practices baked in (like systemd sandboxing). I was exposed to nix via nixery.dev containers.','','','','','Y','','','Y','','','','','','Y','','','','','','','A10','A1','A2','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'Containers, ansible','A4','','','','Y','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I needed a low-maintenance and versatile home server. Initially was impressed by how easy it is to set up Kubernetes with k3s, but I\'ve since removed Kubernetes and have been using nixos modules directly.','','','Y','','','','','Ability to install a wide range of software with sane and secure defaults','Declarative and immutable configuration','Automatic updates','Make it substantially easier to override/patch a specific package/module. Anything to avoid having to interact with nix too much.','Fedora CoreOS + containers','Y','','','','','','','','','','','nixery.dev: a container registry that dynamically builds images from nixpkgs.','',''),(2067,'1980-01-01 00:00:00',5,'en','1560617231','A2','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','N','N','','','','','Reference Documentation, More readable source code, Better configuration language than nix',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I use guix, not nix, because i actually understand it.'),(2068,NULL,1,'en','176163485','A6','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2069,'1980-01-01 00:00:00',5,'en','446440266','A1','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A3','A2','A1','','','','','','','','A8','A14','A4','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2070,NULL,NULL,'en','1531547063',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2071,'1980-01-01 00:00:00',5,'en','1457171708','A2','A2','male','','','','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','','N','N','','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2072,'1980-01-01 00:00:00',5,'en','1752249664','A5','A2','male','','','','','','','Y','Y','','Y','','Y','','','','','','Y','','','','','','','','Y','Y','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','Barely present and consistently outdated documentation paired with abysmal debugging made any unexpected problem eat a night rather than a few minutes','Y','Derivation rebuilds were painful on reasonably powerful hardware, writing new derivations requires lots of rebuilds.','','','','','','','','','','','','','documentation, documentation, and more documentation','nixpkgs is an utter trainwreck and the lack of standardization makes doing anything related to nix require learning an entire subecosystem related to your task, often with even worse documentationk','Y','Y','Y','','Y','Y','strong types',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Took too long to do anything, similar reasons to nix.\r\nClosest thing to documentation is a difficult to navigate manual and an absurdly outdated user wiki.\r\nEasy to accidentally render a system into an unrecoverable state while initially configuring it.','If nix got strong types, better documentation, and nixpkgs was less of a disaster.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','nix is great conceptually but the usage experience was nightmarish.'),(2073,'1980-01-01 00:00:00',5,'en','2007283511','A2','A4','male','','','Y','','','Y','Y','','','','Y','','','','','Y','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted to declaratively install my machines, and also have reproducible development project environments.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A5','A6','A3','','','','','','','','','','','','',NULL,'guix? or docker(-compose), linuxkit, archlinux','A4','','','','Y','','','','','','','','','','','','','','','','','','','A13','A15','A21','A10','','','','','','','','','','','','','','','','','','A13','A10','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','understanding how to build locally and use the CI of nixpkgs','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','as soon as I discovered nix flakes for project development.','Y','','Y','','','','','flakes','versionnable declarative configs','normalize the way to enable and configure services','easier modularity / reuse of setup between systems','guix? archlinux, linuxkit','Y','','','','','','nixinate, disko','','','','i3','','',''),(2074,NULL,1,'en','177724026','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2075,NULL,2,'en','2024194962','A5','A3','fem','','','','','','','Y','','','','Y','','','','','','Y','','','','','','','Y','','','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Wanted to be able to provision cloud machine declaratively so I could replace it easily, and Ansible is so gross','Y','Y','','','','','Y','','','Y','','','','Y','','','Y','','','','A1','A10','A6','','','','','','','','A13','A14','','','','','','','','','','','','','',NULL,'Ansible','A1','','','','','','','Y','','','','','','','','','','','','','','','','A19','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'m scared that packages I\'m interested in will seem to bespoke to be included, or that if I don\'t keep them up to date always in my limited time they\'ll be deleted',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2076,NULL,NULL,'en','181784734',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2077,'1980-01-01 00:00:00',5,'en','1974894985','A2','A5','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','Y','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A6','','','','','','','','','','','','','','','','','','','','','','','',NULL,'Mac ports and apr','A4','','','','','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','N','Y',NULL,'So far from a working desktop. \r\nReverted back to Ubuntu','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2078,'1980-01-01 00:00:00',5,'en','1237775637','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted to have a list of packages installed on my machine so that they can all be easily installed on new laptops','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A4','A3','','','','','','','','','','','','',NULL,'guix or something simpler like asdf','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A15','A2','A1','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Keep an always updated list of packages on my machine to make reinstall easier','Y','Y','Y','','','','','nix-shell','home-manager','nixos','Better error messages and improve packaging situation for electron apps','Ubuntu','','','','','','','','','','','i3','direnv, nix-init, nix-update','niv ',''),(2079,NULL,NULL,'en','1504688971',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2080,'1980-01-01 00:00:00',5,'en','282894104','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','I\'ve been reading about Nix for a while now, and I was curious to try it out. Recently installed NixOS on my laptop (since I was about to format it), as a way to force me to learn Nix (and NixOS), since I knew I wouldn\'t get into it by tinkering just in a VM or just by adopting it locally. It was a forcing function, a good one. So far so good!','','','','','','','Y','','','','','','','','','','Y','','','','A2','A1','','','','','','','','','A8','A13','A4','','','','','','','','','','','','',NULL,'','A7','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Way too noob for that, yet.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I\'ve told that in the Nix section; basically to deep dive into Nix, and to understand what I read people talking about.','Y','','','','','','','System configuration as code','','','','The one I was previously using on this machine (and still use on my desktop): Arch Linux.','','','','','','','','','','','Sway','','','Keep up the good work! :)'),(2081,'1980-01-01 00:00:00',5,'en','526419851','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to try linux on an old thinkpad and every other distro seemed nightmareish to manage correctly. I started with home-manager and nix-darwin on macos before using nixos for the thinkpad and later using it for my desktop and remote devenvs at work.','Y','Y','','','','','Y','','Y','','','','','Y','Y','Y','Y','','','','A2','A1','','','','','','','','','A14','A4','A3','','','','','','','','','','','','',NULL,'direnv and an unholy amount of bash ','A4','','','','Y','Y','','','','','','','','','','','','','','','','Y','','A9','A1','A15','','','','','','','','','','','','','','','','','','','A9','A1','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','if I need a package that\'s not in nixpkgs, it\'s way easier to package it as a one-off for myself than learn about the customs and process of submitting patches to nixpkgs. ','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','my first linux distro. now I use it for managing CI machines and developer vms at work.','Y','Y','','','','','','declarative configuration of everything','package availability','','coalesce on a \"right\" way to do things so that there aren\'t a million \"experimental\" features that I rely on but are hard to get others set up with. The lack of stability makes it really difficult to teach others and learn myself too.','hand-written scripts','Y','','','','','','','','','','sway','nix-direnv, home-manager, nix-darwin','lorri',''),(2082,'1980-01-01 00:00:00',5,'en','2129108129','A5','A2','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Reproducible builds and consistent build environment.','Y','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','','Y','','A2','A1','A6','','','','','','','','A5','A6','A3','','','','','','','','','','','','',NULL,'Other OS package managers (apt, home-brew) and/or language package managers and build systems like bazel.','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A15','A4','A3','A2','A5','A7','','','','','','','','','','','','','','','','A5','A7','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Reproducible system configurations.','Y','Y','Y','Y','','','','Declarative systemd services','Impermanence/tmpfs as root','Declarative containers','I would add a robust secrets management system','Likely some custom Linux distro','Y','','','','','','','','','','','Disko, agenix, impermanence, devshell','',''),(2083,NULL,3,'en','150489895','A2','A4','male','','','Y','','','','Y','','','Y','Y','','Y','','','','','','','','','','','Y','','','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2084,'1980-01-01 00:00:00',5,'en','491653144','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','Y','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Partially upgraded Arch; valgrind stopped working; several friends of mine said \"Nix wouldn\'t let this happen\". Separately I had written a ton of hand-rolled bash code trying to do hermetic local CI runs on my big machine, and friends said \"it sounds like you\'re reinventing Hydra\". So I eventually installed nixos in a VM, and then on my laptop, and then read all the nix pills, and then ported all my scripts into nix (I never did figure out Hydra), and then I was hooked.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','Y','','A4','A3','A2','','','','','','','','A13','A12','A3','','','','','','','','','','','','',NULL,'Arch and hand-rolled bash scripts.','A2','','','','','','','','','','','','','','','','','','','','','','hand-rolled setup','A15','A3','A13','A4','','','','','','','','','','','','','','','','','','A15','A13','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Don\'t want to learn an ad-hoc overlay language built on top of Nix when Nix itself is already a clusterfuck combination of dynamic typing and laziness which is impossible to debug or reason about.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Started using Nix (see other answer). It seemed pretty good. Didn\'t like having multiple package managers and once I\'d learned the language and package manager it seemed like a small step. I did not know going in that configuration.nix was actually yet another ad-hoc overlay language on top of Nix. I would have been more hesitant otherwise.a','Y','Y','Y','','','','','Remote building (sort of, the total lack of resource management/scheduling makes this pretty frustrating and manual to use)','Ability to have multiple versions of software installed','Ability to roll back','Replace the Nix language with something that has static typing and first-class support for the functionality needed for configuration.nix and for nixpkgs.\r\n\r\nReplace the remote build system with something that can keep track of system resources and which can detect and recover from transient failures.','Arch with ad-hoc bash scripts.','Y','','','','','Y','','','','','xmonad','nix-output-monitor','Hydra (couldn\'t figure out where to start)\r\n\r\nconfiguration.nix with pinned nixpkgs (required incredible contortions and still didn\'t really work)\r\n\r\nsetting up local binary cache (never got it to work)\r\n\r\nwayland/wlroots via configuration.nix (couldn\'t figure out how to open a terminal) (OTOH it was *incredibly* easy to back this out, on a live system that I was using for work..)',''),(2085,NULL,1,'en','704726355','A2','A4','male','','','','','','Y','','','Y','','','','','','','','Y','','','','','Y','','Y','','','','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2086,'1980-01-01 00:00:00',5,'en','1009182549','A5','A3','male','','Y','','','Y','','Y','','','','Y','','','','','','','Y','','','','','Y','','','Y','','','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','More free time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Busy','More free time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2087,'1980-01-01 00:00:00',5,'en','2023115482','A5','A5','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I\'d been getting frustrated with Gentoo after many years of running that. I happened to meet Doman Kozar (apologies for the spelling) at a conference in California, who had solid explanations for how e.g. Ruby programs were built on Nix, so I started trying it out','','Y','','','Y','','Y','','Y','Y','','','','Y','Y','','Y','Y','','','A7','A2','A3','','','','','','','','A8','A14','A6','','','','','','','','','','','','',NULL,'I really don\'t know. Ubuntu and NXD, maybe?','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A15','A5','A3','A17','A2','A7','A1','A13','','','','','','','','','','','','','A2','A15','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same time, roughly, I started using Nix','Y','','','Y','','','','Modules','Overrides','Declarative configuration','Easier flake deployment. Easier overrides, especially of sources','No idea. Terraform?','Y','Y','','','','','','','','','Xmonad','Home-manager. Lorri','','I really wish there were a better solution for language library packaging. I largely avoid Python on Nix because the process is so painful, but every language I use has it\'s own wrinkles'),(2088,'1980-01-01 00:00:00',5,'en','580704229','A2','A4','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','Y','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2089,'1980-01-01 00:00:00',5,'en','2095982011','A2','A4','male','','','','','Y','','','','','','Y','','','','','','','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','Y','','','','A1','Multiple envs alongside','','Y','','','','','Y','','','Y','','','','Y','Y','','','','','','A1','A2','A3','','','','','','','','A8','A3','A9','','','','','','','','','','','','',NULL,'Containers','A4','','','','Y','','','Y','','','','','','','','','','','','','','','','A21','A2','A18','','','','','','','','','','','','','','','','','','','A21','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2090,'1980-01-01 00:00:00',5,'en','1914616770','A5','A3','-oth-','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','My friend was into it, and got me to try it. I was using Mac OS X at the time, and had only ever tried a handful of linux distros briefly (ubuntu, arch linux). The declarative configuration of NixOS was a huge selling point, and I\'ve never looked back.','','','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A2','A4','A8','','','','','','','','','','','','',NULL,'If Nix did not exist, it would be necessary to invent it.\r\n\r\nI would probably check out Guix more seriously.','A2','Y','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A7','A20','A1','A22','A3','','','','','','','','','','','','','','','','A22','A1','A20','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','My friend was into it, and got me to try it. I was using Mac OS X at the time, and had only ever tried a handful of linux distros briefly (ubuntu, arch linux). The declarative configuration of NixOS was a huge selling point, and I\'ve never looked back.','Y','Y','Y','Y','','','','Declarative configuration','Leveraging a ton of work that other sysadmins have already done','System hashes (stable under refactoring)','Faster eval time','If NixOS did not exist, it would be necessary to invent it.\r\n\r\nI would probably check out Guix System more seriously.','Y','','','','Y','','','','','','i3, xmonad','nixos-shell\r\nhome-manager','morph\r\nDevOS / DiggaLib',''),(2091,'1980-01-01 00:00:00',5,'en','336017027','A5','A2','fem','','','','','','','','','','','','','','','','','','Y','','','','','','','Application Analyst','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Botched the upgrade from Ubuntu 18 to 20 LTS, then botches a debian install, I heard of NixOS via the Guix community and I knew that guix system at the time was unusable on desktop so I tried it.','','Y','','','','','Y','Y','','','','Y','','','Y','','Y','','','','A1','A3','A7','','','','','','','','A5','A1','A9','','','','','','','','','','','','',NULL,'Docker compose for server, idk for desktop','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Don\'t know how to package things.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Botched upgrade from Ubuntu 18 to 20 LTS and at that time system was a mess with multiple apt repositories, ppas, snaps, flatpaks, appimages, etc','Y','','Y','','','','','Declarative config ','Rollbacks','nixpkgs','better progress bars for nixos-rebuild','fedora silverblue','Y','','','','','','','','Y','','','','',''),(2092,'1980-01-01 00:00:00',5,'en','209045520','A5','A2','male','','','','','','','Y','','Y','','Y','','','Y','','','','Y','','','','','','Y','','','','','','','Linux','N','N','Y','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','Mostly the learning wall makes a soft start a non-starter. It looks cool but I don\'t have the patience right now to pick up another tool with such a steep learning curve. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2093,'1980-01-01 00:00:00',5,'en','1416515845','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I always wanted to use my RPi for some projects but the thought that I would have to maintain (and remember) the setup was dreadful. NixOS just fixed that for me, I can reproduce my setup on my small set of RPi without any additional work, I can experiment with the config knowing that I will be able to recover at any point, this is amazing.','Y','','','','','','Y','','','','','Y','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A8','A4','A9','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A5','A3','A9','','','','','','','','','','','','','','','','','','','A5','A1','A8','','','','','','','','','','','','','','','','','','','','Y','Y','','A2','','Sheer scale of it, currently there are over 4k pull requests. I really want to change/update some packages (and add a few things), but I do not have the time commitment needed for the whole process to happen (there is a reputation, earned or not, that it takes a long time for something to be merged).','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','Got a new laptop and wanted to try something new, Windows pushed me away with updates at very bad times so I went for Linux. NixOS just provided the things I value most.','Y','','','','','Y','','Declarative OS','Immutability','','Gnome config was quite annoying as I couldn\'t declaratively configure it.','Guix','Y','','','','','','','Y','','','','home-manager','',''),(2094,'1980-01-01 00:00:00',5,'en','1705758993','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Recommended by my local Chaos Computer Club (CCC).','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A1','A2','A15','','','','','','','','','','','','','','','','','','','A25','A1','A9','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','The local Chaos Computer Club (CCC) recommended it.','Y','','','','','','','home-manager','NixOS options','nix-shell','Add a Wiki like Arch Linux.','Arch Linux','Y','','','','','','','Y','','','','nixpkgs-update\r\nnixpkgs-review\r\nnixpkgs-hammering','npm2nix\r\nnode2nix','I contributed to the wiki, but the Management is way to strict. I was not allowed to add information that is already mentioned in the Documentation. It feels like it is actively prevented, that the wiki will become as informative as the Arch Linux wiki. '),(2095,'1980-01-01 00:00:00',5,'en','1097379820','A5','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I started using Nix since I had some friends who were enthusiastic about it. I started experimenting with it by using it to package a backup script for my home workstation. I then started using it at work to configure my local environment with home-manager.','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A14','A5','A2','','','','','','','','','','','','',NULL,'Language-specific package managers, e.g. cabal, cargo, pip, etc., or system package managers like pacman, brew, etc.','','','','','Y','Y','','','','','','','','','','','','','','','','','','A25','A13','','','','','','','','','','','','','','','','','','','','A15','A13','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I do not have a reason yet to contribute to Nixpkgs, it meets my needs.','N','N','Curiosity, and unifying package management and configuration between Nix and my system package manager. My workstations are currently configured ad-hoc by hand, and I\'d like to automate some of that to make it more reproducible, perhaps with something like ansible. NixOS would also be able to fit that role, as I understand it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2096,'1980-01-01 00:00:00',5,'en','1828000363','A2','A3','male','','','Y','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','','','','','','','','','A13','A8','A6','','','','','','','','','','','','',NULL,'Debian, managing config with Puppet','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','Y','','Y','','','',''),(2097,'1980-01-01 00:00:00',5,'en','846578973','A5','A2','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Wanting a reproducible build environment for a personal site','','Y','','','','','Y','','','','','Y','','Y','Y','Y','Y','Y','','','A1','A2','A7','','','','','','','','A2','A14','A5','','','','','','','','','','','','',NULL,'Containers','A1','','','','Y','Y','','','','','','','','','','','','','','','','','builds.rs.ht','A2','A4','A1','A13','A15','','','','','','','','','','','','','','','','','A2','A7','A13','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I have ~2PRs open but seemingly stuck in review hell? and I don\'t want to juggle that many open branches','N','N','Better support for running binaries that need a traditional FHS setup, and better documentation around that',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'devenv','',''),(2098,NULL,NULL,'en','1622779943',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2099,'1980-01-01 00:00:00',5,'en','383690929','A2','A3','fem','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','Y','','Y','','Y','','','','','','Y','Y','Y','Y','Y','','A1','A2','A8','','','','','','','','A14','A2','A12','','','','','','','','','','','','',NULL,'','A2','','Y','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','Y','','','','Rollbacks','','','Nickel ','','Y','','','','','','','','Y','','','Lsp','',''),(2100,NULL,1,'en','389776781','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2101,'1980-01-01 00:00:00',5,'en','706428537','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Reproducible system configuration managed by git. Furthermore I have found the deployment of software very reliable.','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A8','A14','A9','','','','','','','','','','','','',NULL,'RPM-ostree','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I looked into management of systems using Ansible and have found NixOs far superior.','Y','','','','','','','Reproducible configuration ','','','','RPM-OSTREE ','Y','','','','','','','','Y','','','Home-manager ','Building don\'t packages',''),(2102,'1980-01-01 00:00:00',5,'en','350980376','A5','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','NixOS provided a community sourced set of best practices and configuration that made it easy to have a secure (enough) linux environment.','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','Y','','A2','A7','A10','','','','','','','','A8','A6','A15','','','','','','','','','','','','',NULL,'nix, as a package manager: homebrew/chocolately/apt\r\nnix, as an OS: arch maybe, but likely nothing for most projects. OpenMediaVault/debian for a NAS','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','I\'ve done it once, for something small: https://github.com/NixOS/nixpkgs/pull/240969\r\nBut the first time I opened a PR to see if something I found locally useful would be wanted upstream, I ended up getting conflicting information and having my contribution declared \"very weird and niche\": https://github.com/NixOS/nixpkgs/pull/219618.\r\n\r\nI have talked with people on the matrix server, and I now have a better idea for how to go about determining if contributions would be wanted upstream, but overall I don\'t have much of a desire to collaborate in this space right now.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Same as with nix: NixOS provided a community sourced set of best practices and configuration that made it easy to have a secure (enough) linux environment. (NixOS was the more compelling reason that Nix, at least as an entry-point into the ecosystem).','Y','','Y','','','','','Community-provided configuration of best practices and integration points','Frequent security and feature upgrades','Easy daemon-ization of scripts and services','https://github.com/svanderburg/nix-processmgmt\r\nand perhaps in particular:\r\n> The ability to deploy multiple instances of the same process, by making conflicting resources configurable.','Arch Linux perhaps, but NixOS was an introduction to self-hosting for me.','Y','','','','Y','','','Y','','','','home-manager\r\nDoes the matrix space count?','NixOps - used it to manage a Digital Ocean box, then migrated off when NixOps 2.0 was going to remove support.','I didn\'t get a chance to plug this cool project: https://www.liminix.org/ (not my project).\r\nI would love to use Nix on a phone, and have considered buying a used pinephone (or something) to use as a home-assistant server (or just a client?) with an integrated UI -- thank you very much for the hard work of the volunteers working on that project\r\nFlakes have really enabled me to nix-ify more and more of my homelab, and I\'d love to convert my whole networking stack to something nix-y.\r\nIt\'s a great project, and I\'m glad it\'s been successful.'),(2103,'1980-01-01 00:00:00',5,'en','238433684','A5','A3','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I have been using Linux distributions such as Arch or Debian as my primary operating system on both servers and workstations for 14 years. I am also in love with functional programming and interacting with computers declaratively. You can connect the dots to Nix.','Y','Y','Y','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A7','A1','A2','','','','','','','','A8','A9','A7','','','','','','','','','','','','',NULL,'I\'d check out Guix before giving up, but I would likely utilize Debian/Arch based distributions and OCI containers.','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','Too many serious/debilitating issues open with Hydra to use it in production','A13','A1','A10','A3','A25','','','','','','','','','','','','','','','','','A10','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I don\'t use GitHub.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I provided an answer to this in a previous section.','Y','Y','Y','Y','','','','Declarative system configuration','Reproducible and atomic builds/rollbacks','Integration with the enormous nixpkgs package repository','- Add Flake/nix-command stability\r\n- Expand on the type system in some way so that a function which returns a string can be used anywhere a string could be (don\'t need true referential transparency)\r\n- Remove the years of old/outdated documentation all across the internet that confuses new users','Debian/Arch.','Y','','','','Y','Y','','','','','i3-gaps','agenix - This dead simple implementation of secrets management in Nix is great. I saw that native secrets management was on the \"wishlist\" in this survey, so if you all do some native secrets management you should keep it as simple as possible like agenix.\r\n\r\nflake-parts - Yup, you know what this is.\r\n\r\nnix-serve-ng - The original nix-serve has serious reliability issues.','NixOps - open PRs that resolve problems for months/years without any movement from maintainers.\r\n\r\nHydra - same deal. There are open PRs that resolve issues people have that are just languishing.','Nix is one of the most important FOSS projects in the world. Thanks for what you\'re doing.'),(2104,NULL,1,'en','606557049','A2','A3','fem','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2105,NULL,1,'en','1035535805','A5','A4','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2106,NULL,1,'en','393136930','A1','A4','male','','Y','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2107,'1980-01-01 00:00:00',5,'en','1458617121','A5','A3','male','','','Y','','','','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A7','A2','','','','','','','','A13','A5','A8','','','','','','','','','','','','',NULL,'Fedora','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A2','A15','','','','','','','','','','','','','','','','','','','A2','A9','A15','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Built a home server and needed an OS for it. Considered something like Fedora or Debian and ansible, but had heard of NixOS and went with it for ease of use in configuring the server and storing configuration in version control, safety in testing changes with rollbacks, and tons of packages available to use.','Y','','Y','','','','','Ease of configuring/testing','Package availability ','Safety of testing out new configurations without fear of FUBAR','Grade AAA docs and discoverability of the Nix language and composing flakes.','Fedora','Y','','','','','','','Y','Y','','','Home Manager','',''),(2108,'1980-01-01 00:00:00',5,'en','152152294','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','As a way to manage project specific dependencies.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A7','A3','A1','','','','','','','','A5','A14','A2','','','','','','','','','','','','',NULL,'maybe pkgsrc?','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A2','A15','A4','A3','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Importing a package directly into home manager config','A1','','Haven\'t had a need to','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','After using nix on a debian install, I installed it on a desktop and a laptop to try things out. I found it worked pretty.','Y','','','','','','','Centralized configuration','Atomic upgrades and rollbacks','','As someone learning how to do things in nix the main thing that I would get rid of are any competing ways to do things.\r\n\r\n\"There should be one-- and preferably only one --obvious way to do it.\"','nix on debian','Y','','','','','','','','Y','','','home-manager','I briefly tried `niv` but I think flakes makes it obsolete.',''),(2109,'1980-01-01 00:00:00',5,'en','480913480','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was interesting in system after I was read an article about it','','Y','','','','','','','','','','','VM','Y','','','','','','','A1','A2','A10','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'keep going with arch I guess','A2','','','','','','','','','','','','','','I am very new, so I dont','','','','','','','','none','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','I do not extend yet','A1','','I dont think about it, guess I need to check some articles about it (howto or some kind of examples maybe)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','wanna check the system after I was read an article about it','','','','','','','VM','all in one config','many pkgs','new sys','nothing I will add free time to myself to learn it','arch','Y','','','','','','','','','Y','','I dont know about other stuff','I dont know about other stuff','thx'),(2110,'1980-01-01 00:00:00',5,'en','1392543270','A5','A4','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A1','','Y','','','','','','Y','','','','','','','Y','Y','','Y','','','','A6','A2','','','','','','','','','A9','A8','A14','','','','','','','','','','','','',NULL,'homebrew','A6','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2111,'1980-01-01 00:00:00',5,'en','979224889','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Being able to create an island of stability by having a declarative config, and being able to develop on top of the island without fear.','Y','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','Y','','A9','A2','A1','','','','','','','','A8','A12','A9','','','','','','','','','','','','',NULL,'','A4','','Y','','Y','Y','','','','','','','','','','','','','Y','Y','','','','A3','A4','A9','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','','','','','','','','','','Y','','','','','','','Y','','','','','','The use of frandom seed currently causes all derivations to vary substantially in their content addressed output if any aspect of their input changes.\r\n\r\nThis threatens any deduplication effort, since things which should be the same may have binaries which are substantially different for no reason. For example frandom seed causes symbols to be reordered, and this means that the compression gain to be had from storing otherwise like-by-like binaries will be harmed, in addition to causing unnecessary content addressed misses.\r\n\r\nhttps://github.com/NixOS/nixpkgs/issues/153793'),(2112,'1980-01-01 00:00:00',5,'en','1136283633','A2','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A1','I was tired of basically every config management system. I strongly dislike Homebrew. I like MacPorts but it doesn\'t have a lot of traction. For servers I tended to prefer FreeBSD but that\'s getting harder and harder as most things assume Linux or Docker or Kubernetes these days; however I also don\'t really get on with any Linux distribution. They all have their issues.\r\nI love the _idea_ of Nix. Being declarative for everything makes total sense and is very appealing.','','Y','','','','','','Y','','','','','','Y','Y','','Y','','','','A2','A6','A1','','','','','','','','A14','A13','A9','','','','','','','','','','','','',NULL,'MacPorts on macOS. Salt or Ansible on anything else.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Mostly no need. Also the language. I feel like I\'m re-learning it every time I touch it.','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A2','Fed up with every configuration management system, and foibles with basically every Linux distro. I love the idea of having a fully declarative system.','','','Y','','','','','Declarative system','','','Make home manager native?','Maybe Arch or Debian.','Y','','','','','','','','','','','','','Nix-the-language needs a LOT of improvement. It\'s too hard to learn and the official guides don\'t help at all. Some simplification would be great, otherwise I find myself with a NixOS system that, after maybe a few months of not having to touch, I have to try and re-learn the language and syntax all over again.'),(2113,'1980-01-01 00:00:00',5,'en','975677451','A5','A4','male','','','','','','','','','','Y','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted to manage my dotfiles across multiple hosts and platforms in a reproducible way. I was using GNU Stow but found it limiting. I knew of a few \"dotfiles management frameworks\" or techniques, but all of them had some frustrating drawbacks. I came across home-manager and it looked great, but I didn\'t understand Nix so I bookmarked home-manager for later. Around May 2020 I started using Doom Emacs. I came across the dotfiles of that project\'s maintainer, Henrik Lissner, which presented a clear and simple demonstration of using Nix and NixOS to manage systems and dotfiles. The readme also linked to some other reference points, and those became my primary jumping off point...','Y','Y','','Y','','','Y','','Y','','','','','Y','Y','Y','Y','','Y','','A2','A6','A7','','','','','','','','A4','A5','A6','','','','','','','','','','','','',NULL,'Since I came from macOS, I used Homebrew before using Nix. I started a media server in mid-2020 before I started using Nix for everything. Since my dotfiles used Homebrew on macOS, and Homebrew is also available as Linuxbrew, I was using that to keep things in sync. I don\'t know if I would still use it, but it\'s the only other cross-platform package manager that I know of.','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A1','A10','','','','','','','','','','','','','','','','','','','','A10','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Many/most people using home-manager for their publicly-available dotfiles also published their NixOS configurations. It was a logical extension. I\'ve also found that NixOS\' available options and others\' configurations gave a better sense of what is *possible* with Linux. Prior to using NixOS, I never used Linux regularly for personal daily-use computing (i.e. not servers, minimal customisation). It seems to me like the declarative nature of NixOS ushers users into sharing more of their system configurations in an organised way than any other Linux distro. So it has provided much opportunity for learning by referencing what others have done.','Y','','','','','','','Declarative configuration','Affordance of possible configuration options via module source/docs','Introspectability: in contrast to other distros, I can see the guts of _everything_ and feel confident that I\'m not missing something important in some weird off-the-beaten-track config file or state somewhere','- Type system\r\n- Better official or semi-official living demonstrations of \"best practices\", reference architectures/projects, real-world non-contrived examples\r\n- Some way to visualise configuration changes / relationships between module options','Probably a combination of Ubuntu for servers and Arch Linux for personal machines','Y','','','','Y','','','Y','','','','- https://github.com/divnix/std\r\n- https://github.com/hercules-ci/flake-parts\r\n- https://github.com/numtide/devshell\r\n- https://github.com/numtide/srvos\r\n- https://github.com/nix-community/nix-direnv\r\n- https://github.com/nix-community/home-manager\r\n- https://github.com/nix-community/haumea\r\n- https://github.com/Mic92/sops-nix\r\n- https://github.com/nix-community/nix-init\r\n- https://github.com/oxalica/nil\r\n- https://github.com/astro/deadnix\r\n- https://github.com/nix-community/emacs-overlay\r\n- https://git.sr.ht/~rycee/mozilla-addons-to-nix/\r\n- https://github.com/nix-community/nixago\r\n- https://github.com/numtide/flake-utils\r\n- https://github.com/kamadorueda/alejandra\r\n- Cachix\r\n- https://github.com/maralorn/nix-output-monitor\r\n- https://github.com/nerdypepper/statix','- https://github.com/divnix/digga\r\n- https://github.com/ryantm/agenix\r\n- https://github.com/serokell/deploy-rs\r\n- https://github.com/danth/stylix\r\n- https://github.com/Misterio77/nix-colors',''),(2114,NULL,1,'en','737248954','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2115,'1980-01-01 00:00:00',5,'en','875538087','A1','A4','male','','','','','','','','','','Y','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','','','','A3','I like FP, was recommended it, & I needed my OS + builds to break less','','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','Y','','A1','A7','A4','','','','','','','','A8','A6','A1','','','','','','','','','','','','',NULL,'Guix','A1','','','','Y','Y','','','','','','','','','','','','','','','','','builds.sr.ht','A1','A25','A14','A13','A17','A15','A3','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started using Nix via home-manager to prepare for my new laptop to come in where I was to install NixOS','Y','Y','Y','','','','','Declare my system','Wide range of packages','Often easy to override or patch broken packages (though sometimes more difficult)','I would remove Python. Every broken package seem to always be Python so lets rewrite and move on.','Guix','Y','','','','','','','','','','Xmonad (sway if Wayland would have color management)','home-manager','devenv',''),(2116,'1980-01-01 00:00:00',5,'en','1633429117','A5','A3','-oth-','','','','','','','Y','Y','','','Y','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','I heard that NixOS offered a framework for programatically-configuring linux machines. I had several linux virtual machines that I wanted to be able to configure remotely and store the configuration in version control. NixOS worked reasonably well for this so eventually I also started using Nix to build software and also home-manager for dotfiles configuration.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A7','A2','A1','','','','','','','','A14','A6','A4','','','','','','','','','','','','',NULL,'For me, Nix primarily replaces 1) infrastructure as code tools like Ansible, and 2) dotfile manager tools like chezmoi','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A1','A13','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','Not a primary developer of any software meant for widespread open-source release at the moment. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','Y','','','','','Programatic configuration of virtual machines','','','','Ansible','Y','','','','Y','','','','','','','home-manager','',''),(2117,'1980-01-01 00:00:00',5,'en','1066983612','A5','A2','male','','Y','','','','Y','Y','','','','','','','','','Y','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','','A1','A2','A5','','','','','','','','A14','A15','A8','','','','','','','','','','','','',NULL,'alpine linux','A1','','','','Y','','','','','','','','','','','','','','','','','','','A3','A9','A15','A25','A22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','','','sway','','','support for other init systems\r\n'),(2118,'1980-01-01 00:00:00',5,'en','62347745','A5','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I semi-frequently had to bootstrap new machines and new distros on my workstations and laptops. I missed configs here and there and had to spend days fixing up the environment every time. Nix made it quick and painless.','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A1','A4','','','','','','','','A4','A3','A2','','','','','','','','','','','','',NULL,'I don\'t know; I\'d probably have a terrible time with bash scripts and a wide collection of tools to replace the Nix feature set.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','Y','','A9','A1','A2','A15','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Uncertainty about the process and a desire to avoid inconveniences. I should probably find a comprehensive guide and get over myself.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','After I became comfortable enough with Nix and home-manager, I wanted to extend the benefit of Nix to my entire computer. So I did.','Y','','Y','Y','','','','Deterministic build/rebuild','Service configurations','','Add secrets management','Debian with home-manager','Y','','','','','','','','','','i3','','','Thanks!'),(2119,NULL,1,'en','205580830','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2120,'1980-01-01 00:00:00',5,'en','131104943','A6','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','N','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I probably just need to read some resources and try it out in a VM (I\'d use a spare device if I had one)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2121,NULL,NULL,'en','1818095429',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2122,NULL,1,'en','1369293344','A2','A5','male','','','','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2123,NULL,NULL,'en','1241920911',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2124,'1980-01-01 00:00:00',5,'en','1354993438','A6','A4','male','','','','','','','Y','','','','','','','','','Y','','Y','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','Y','','','Y','','','','','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A8','A6','A2','','','','','','','','','','','','',NULL,'Guix','A2','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A13','A15','','','','','','','','','','','','','','','','','','','','A1','A5','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Describe systems with a programming language expression','Y','','','','','','','','','','Lisp','Guixsd','Y','','','','','','','','','','Stumpwm','Emacs','Common lisp',''),(2125,'1980-01-01 00:00:00',5,'en','1534112753','A5','A3','male','','','','','','','','','','Y','Y','Y','','','','','','Y','','','','','','','','Y','Y','Y','Y','','Android, NixOnDroid','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Config in a single place','Y','Y','','','','Android via NixOnDroid','Y','','','','Y','','','Y','Y','','Y','','','','A2','A1','A9','','','','','','','','A4','A5','A13','','','','','','','','','','','','',NULL,'Arch / OpenSUSE','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A2','A22','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','','','','Use as-is','A1','',' Complexity of the language, build tools (nix), aim for defining whole in nix lang instead of adjusting existing configurations or building up on top them e.g.:\r\n I want my docker images to be built via docker build (Dockerfile), not a custom DSL even if it is better at some point.\r\n To my knowledge nix doesn\'t provide such opportunity. Instead it complicates images build to the highest. There are a lot of people who can understand Dockerfile syntax and not so much who understands nix.\r\n The urge to replace de-facto standard tools hurts, I won\'t be doing it unless it\'s far more convenient and it is just for me, not for everybody I\'m working with.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I got tired of pacman at some point. I used Void, then Solus, and thought Nix would be the best package manager for Linux.\r\n\r\nTo me it is, but at the huge cost: language is not intuitive and I constantly have issues with my dev environments due to bad docs and lack of knowledge from my end.\r\n\r\n','Y','','','','','','','Stable','Easy to configure','Portability to some extent','Redo nix to be able to use native tools: cargo, npm, pip. It\'d make it wore in some aspects, but will greatly improve packaging DX to my mind. As well as reduce effort supporting nix platform. We could use nix to make specific tools to track dependencies of these tools, but altering other languages packaging is really ugly and unstable solution.\r\nI\'d make nix to rely more on tools rather then providing its own solutions: like containerd/runit for containers build or support Dockerfile syntax for nix built containers.\r\nIt all will cost a lot of features nix has, but it\'d make it better for users to my mind.\r\nI bet all these steps could help regular users. E.g. what if you don\'t need appimage-run to run appimages? That\'d be great to me.\r\nI\'d enforce FHS by default, so apps can interact as if it\'s regular Linux OS, not something special. Maybe have some configuration and scoping for user/apps with different FHS envs. We do have something similar but UX of this feature isn\'t great at this point. ','OpenSuse A/B root, idk','','','','','','','','Y','','','','NixOnDroid. Very powerful thing to me.','','Be yourself, be Nix :)'),(2126,'1980-01-01 00:00:00',5,'en','423910455','A5','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','','Y','','','','','','Y','','','','','','','','Y','','','','','','A3','A2','A1','','','','','','','','A3','A14','A5','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','Y',NULL,'I liked Guix better','I don\'t know.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2127,NULL,1,'en','34511278','A2','A3','male','','','','','','Y','Y','Y','Y','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2128,'1980-01-01 00:00:00',5,'en','852336640','A5','A4','male','','','','','','Y','Y','','Y','','','','','','','','Y','Y','','','','Y','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I tried out nixpkgs on Debian, then got pulled into NixOS and haven\'t looked back.','Y','Y','','Y','','','Y','Y','','Y','','Y','','Y','Y','Y','Y','Y','','','A1','A7','A8','','','','','','','','A8','A10','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','Drone','A15','A1','A4','A9','A2','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Ceremony and use of what I consider legacy (non-flake) Nix structure','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','Structured configuration (no templates or envvars needed)','Atomic, rollback-capable updates','Huge repository of up-to-date packages','Make the existence of the Nix store transparent to non-Nix-enabled tools (no more wrestling with e.g. LD_LIBRARY_PATH, patchelf, etc.)','Clear Linux (which I\'ve used in the past) or CoreOS/Flatcar','Y','','','Y','','','','','Y','','sway','Fenix, cachix','Devbox',''),(2129,NULL,1,'en','1906838929','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2130,NULL,1,'en','69866791','A5','A4','male','','','','','','','Y','Y','','Y','Y','','','','','','','Y','','','','','','Y','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2131,'1980-01-01 00:00:00',5,'en','668197621','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','Y','','','Y','Y','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A2','Don\'t want anything to do with MacOs','Y','','','','','','Y','','','','','','','','Y','','Y','','','flakes','A2','A6','A3','','','','','','','','A8','A2','A12','','','','','','','','','','','','',NULL,'FreeBSD','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A2','A3','','','','','','','','','','','','','','','','','','','A13','A2','A15','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','Y',NULL,'PC died','New PC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2132,NULL,NULL,'en','1066787680',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2133,'1980-01-01 00:00:00',5,'en','33957524','A4','A2','male','','','','','','','','','','Y','','','','','','','','Y','','','Y','','','','Software Engineer','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Reproducibility of setup','','','','','','','Y','','','Y','','','','','Y','','Y','','','','A1','A10','A9','','','','','','','','A4','A14','A5','','','','','','','','','','','','',NULL,'Fedora Silverblue','A4','','','','Y','','','','','','','','','','','','','','','','','','','A9','A15','A2','','','','','','','','','','','','','','','','','','','A9','A2','A15','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I don\'t know how to','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','Y','','','','','','','Better documentation','Fedora Silverblue','','','','','','','','Y','','','i3wm','','',''),(2134,'1980-01-01 00:00:00',5,'en','391261249','A2','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'Y','','Y','','','','','','Y','','Y','','','','Y','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2135,'1980-01-01 00:00:00',5,'en','1829801856','A2','A3','male','','','','','','','Y','','','','','','','','','','Y','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I was a Void Linux on Ext4 user and wanted to write a package that would install my base system from a private repo. It really spiralled out of control, and now I use Ephemeral NixOS on ZFS.','Y','Y','','','','','Y','','Y','Y','','','','Y','Y','Y','Y','','','','A1','A3','A2','','','','','','','','A6','A5','A14','','','','','','','','','','','','',NULL,'Guix (LOL), or I would use Docker for deployments and develop on Void Linux','A2','','','Y','Y','Y','Y','','','','','','','','','','','','','Y','','','','A2','A15','A24','A17','A1','A25','','','','','','','','','','','','','','','','A2','A8','A25','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','It has the packages I use','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Void Linux was a little too easy to fuck up and render unbootable','Y','','Y','Y','','','','declarative, version-controlled configuration (nixos-rebuild --flake)','service options','environment.systempackages ','I would add a straightforward way to run programs that expect a Linux FHS in some kind of wrapper that provides a FHS overlay on the base system in a container, but really all the reads/writes are symlinked','Guix or Void Linux','Y','','','Y','','','','Y','','Y','','flake-utils, devenv (https://devenv.sh)','NixOps','i love u! \r\n'),(2136,'1980-01-01 00:00:00',5,'en','1914883439','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A3','A2','','','','','','','','A4','A8','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A23','A2','A5','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time and laziness','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','Declarative ','Stability','Amount of packages','More security features such as secure boot','Debian, Arch or Void','Y','','','','','','','','','Y','I3','','',''),(2137,NULL,1,'en','648802538','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2138,'1980-01-01 00:00:00',5,'en','1794181711','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','A fellow student gave me a short talk about NixOS.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A10','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Same as nix','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(2139,'1980-01-01 00:00:00',5,'en','1674762463','A5','A4','male','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','When I starting using Zig lang, I saw that several prominent contributors used Zig to do builds and manage dev environments. I also found it useful, as I wanted to keep Zig pinned for a project, and there isn\'t much of a version manager.\r\n\r\nFor work, I\'ve found it useful even for Rust projects, as there\'s often a dependency here and there (like dhall) that falls outside the ecosystem. I use it mostly locally, but it\'s also worked fine in CI.','','Y','','','','','Y','','Y','','','','','','Y','','','','','','A2','A1','','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'kludge of system package manager and language package managers','A1','','','','Y','','','','','','','','','','','','','','','Y','','','','A22','A15','','','','','','','','','','','','','','','','','','','','A15','A22','A25','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Haven\'t thought about trying yet.','N','N','It would be a big jump, as I don\'t want to have a pain point that requires a difficult workaround. With ubuntu + nix, I know that most things will just work, and I can use nix where it is most useful to me.\r\n\r\n(I\'m also not somebody who enjoys fiddling with their OS)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2140,NULL,1,'en','226395458','A5','A2','male','','','','','','','','Y','','','Y','','','','','','','','','','','','','','','Y','Y','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2141,NULL,NULL,'en','1785606880',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2142,'1980-01-01 00:00:00',5,'en','1560614307','A2','A3','male','','','','','','','','','Y','','','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','My arch install was getting messy, I longed for something kinda declarative that would allow for something essentially like the nix store.\r\nI looked at nixos and it looked perfect, I bought a new laptop and decided that that would be the distro I use on it.\r\n\r\nAfter a while (a loooong while) of getting used to nix, I found myself finding friends who also used nix, and they new it better than me. I learned more about the repl and other things. I now have the hang of it and deploy servers with colmena, have my own custom flakes with custom package derivations....\r\n\r\nI use nix practically everywhere now.','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A6','A1','A2','','','','','','','','A6','A3','A2','','','','','','','','','','','','',NULL,'I have no idea, perhaps fedora?','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','garnix','A9','A15','A2','A1','A3','A22','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','messy arch install, I desperately longed for a declarative system, and something like the nix store. I found nixos, it rocks.','Y','','Y','Y','','','','Declarative system configuration','frequently updated packages','','I would improve the story around not being connected to the network for rebuilds, or needing a proxy. It\'s often unclear how to correctly configure nixos or perhaps just the nix daemon and/or builds to use a proxy that\'s not the system default one.','probably fedora.','Y','','','','Y','','','','Y','','sway','rust-overlay, fenix, crane','','I want to get more involved with the roadmap or plans for nixpkgs, since I do a lot of my package building out of tree, because I feel I have more control over how my packages are built.\r\n\r\nIt\'s not quite clear to me where I can look to see what the plans are for nixpkgs (I don\'t mean nix, or the daemon or cli), as I\'d like to see if there\'s areas I can contribute. I care specifically about cross-compilation, and toolchains.'),(2143,'1980-01-01 00:00:00',5,'en','1136640769','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I saw in Nix a solution to reproducibility as well as maintaining stable development/build environments for software that goes \"dormant\" for months or years.\r\n\r\nWe have been using Python with pex and Docker. We started using Go. But the fundamental problems we\'re dealing with are larger than can be solved with a new language or more containers. We really need a systemic solution that enables us to put a project down for a long time, come back, and be able to work on projects with different versions of the same languages concurrently. Only Nix can give you this, really. And the performance is much better with Nix than with the almost-there solution of containerization.','Y','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A9','A8','A6','','','','','','','','','','','','',NULL,'We were using Homebrew on Mac and Docker. I think we would be doubling down on Docker instead if we couldn\'t have Nix.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A9','A4','A3','A5','A13','A15','','','','','','','','','','','','','','A2','A1','A5','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I have made a few contributions but there is some ambiguity about whether it is better to focus attention on flakes for Python software or the Nixpkgs repo, and since my packages are currently working as flakes, it isn\'t as necessary for me to contribute.\r\n\r\nI anticipate as adoption proceeds at work, I will probably contribute more to Nixpkgs, since the process was extremely smooth and rewarding.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I had a sense that only by adopting NixOS itself could I really \"dogfood\" Nix to the degree that I would become comfortable and self-sufficient with it.\r\n\r\nIn fact it has helped me comprehend the fullness of the Nix ecosystem, and see that while it is probably a solution for my personal machines, other elements of the ecosystem are going to provide more value to the rest of my team at work (especially Nix flakes and to a somewhat lesser extent NixPkgs).','Y','','','','','','','Versioning','Reproducibility','NixPkgs :)','Probably I would make it easier to install NixOS with Home Manager and as a flake.','I used many Linux distros before but the existence of NixPkgs means that almost all of them are functionally identical to me now. I would probably be using Ubuntu or Pop!_Os. Or possibly FreeBSD although the laptop experience is better with Linux mostly.','Y','','','','','','','Y','','','','Home Manager','flake-utils ;)\r\n\r\nI do wish that the flake templates or built-in libraries required less boilerplate for the things that flake-utils does.','I love Nix and I am advocating for its use. Thank you for all your hard work! I really appreciate it!'),(2144,'1980-01-01 00:00:00',5,'en','1329379043','A2','A2','male','','','','','','','','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was already using NixOS','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A3','A7','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'Asible ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A1','A3','A5','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Eveything I need is already in there!','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','','','','','','Reproducible configuration','Rollbacks if something break','Package availability','Make home-manager integrate with NixOS','Ansible','Y','','','','','','','','','','Hyprland','agenix for storing encrypted secrets inside git repos','',''),(2145,NULL,3,'en','687812678','A5','A3','male','','','','','','','Y','Y','Y','Y','Y','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A1','I was looking for an alternative to ansible ','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'Guix','A4','','','Y','Y','Y','','','','','','','','','','','','','Y','Y','','','','A1','A2','A13','','','','','','','','','','','','','','','','','','','A1','A15','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Not ready to personally invest in ecosystem yet ','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A2','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(2146,'1980-01-01 00:00:00',5,'en','1846430653','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I started using it at the same time as NixOS. I was interested in the declarative system configuration.','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'Manjaro I think?','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A13','','','','','','','','','','','','','','','','','','','A13','A1','A2','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Two reasons: \r\n1) The package I want exists already\r\n2) When I try to package something for common use, I fail','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Declarative system configuration','Y','','Y','Y','','','','Declarative system configuration','Reproducible environments','all the packages!','I would standardize the DRV file format, so that it could become a target for any language environment to output derivations. I think a lot more people would adopt Nix if they could avoid Nixlang','Manjaro','Y','','','','','','','Y','','','','mach-nix, yarn2nix','NixOps, various Haskell tools',''),(2147,'1980-01-01 00:00:00',5,'en','364763095','A5','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','','','','','','','','','Y','Y','Y','Y','','','A2','A10','A1','','','','','','','','A6','A14','A11','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A13','A7','A2','A1','A3','A15','A9','A4','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','Declarative configuration','Easy rollbacks','The ability to have global overlays to patch my system','','I would probably use debian or one of it\'s derivatives. I previously used debian unstable for personal machines, and debian stable for servers.','Y','','','','','','','','','','xmonad','','',''),(2148,'1980-01-01 00:00:00',5,'en','68505891','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A10','A6','','','','','','','','A8','A10','A4','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','Y','','','','','','','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(2149,'1980-01-01 00:00:00',5,'en','1035159439','A2','A3','male','','','Y','','','Y','','','','','Y','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','reproducibility','Y','Y','','','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','','A2','A10','A6','','','','','','','','A5','A8','A7','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A9','A15','A2','','','','','','','','','','','','','','','','','','','A15','A9','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Still learning','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','','','','','','Y','','','','','Y','','Y','','','','','',''),(2150,'1980-01-01 00:00:00',5,'en','1954996918','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I wanted to have a reproducible desktop Linux','Y','','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A3','A6','','','','','','','','A8','A13','','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A13','A15','A1','A17','A7','A8','','','','','','','','','','','','','','','','A13','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','','','','','','','','','','','','','','','','','','Home-manager, nix-darwin, flake.parts','Devenv, devshell',''),(2151,'1980-01-01 00:00:00',5,'en','2030888964','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','','Recovering Academic','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Leaving Ubuntu','','Y','','','','','Y','','','','','','','','Y','','Y','','Y','','A1','A10','A2','','','','','','','','A5','A14','A7','','','','','','','','','','','','',NULL,'Debian','A4','','','','','','','','','','','','','','','','','','','','','','','A1','A2','A3','A4','A5','A6','A9','A11','A15','A17','A19','A21','A22','A25','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Insufficient documentation','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Leaving Ubuntu','Y','','','','','','','reusable system configuration','package configuration','nix tools','Add: reference documentation, secrets and ACL support, unifying CLI tools\r\nChange: improve security support\r\nRemove:','Debian','Y','','','','','','','Y','','Y','','https://search.nixos.org/packages\r\nhttps://search.nixos.org/options\r\nhttps://nixos.wiki/\r\nhttps://github.com/NixOS/nixpkgs\r\nhttps://lazamar.co.uk/nix-versions/\r\n','','Thank you for maintaining NixOS!'),(2152,'1980-01-01 00:00:00',5,'en','1349629647','A5','A4','male','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was previously a Gentoo user because I liked the rolling releases, but all binary based rolling releases often ended up in weird states where a specific .so files would end up conflicting with projects that weren\'t getting regular updates. It was still far from perfect, and came with a significant amount of sysadmin work.\r\n\r\nIn addition, we were starting to use docker a lot more at work, and I was frustrated with sketchy reproducibility due to \"apt-get update\" being the first line in nearly every Dockerfile.\r\n\r\nNixOS solves both the dynamic linking issue *and* significantly reduces sysadmin work by having a declarative configuration. It also has more options for reproducible build and production environments.\r\n\r\nI started using Nix to \"dip my toes\" into NixOS, with the intent of eventually switching.','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','Y','','','A1','A2','A3','','','','','','','','A3','A15','A8','','','','','','','','','','','','',NULL,'Does Guix count as an option? If not, then probably still would be on Gentoo or similar\r\n\r\nAlso, docker for development environments.','A4','','','','Y','','','','','','','','','','','','','','Y','','','','','A3','A2','A4','A25','A1','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was using Gentoo because source-based distros were the best way to avoid a lot of the dynamic-linking issues that plague any linux that isn\'t using only lockstep releases. I was not happy with the significant amount of systems administration required (and lots of choice paralysis, because there were very few defaults).\r\n\r\nNixOS offered both a better solution to dynamic-linking issues and significantly less systems administration (with bonus of declarative configuration!). From the moment I heard about it, I knew that if it was even remotely usable as a daily-driver I was going to switch.','Y','','Y','Y','','','','Consistent dynamic linking (no upgrading one thing breaking another)','Declarative configuration','Broad package support','Python packaging is very mediocre. There are a dozen tools that claim to take a requirements.txt file and spit out a working nix package, none of them have worked for me when I tried them. I\'ve fallen back on manually resolving the recursive dependencies by pulling in expressions from past versions of nixpkgs. I know this is a hard problem to solve, but it feels like everybody has made their own 20% solution that sucks.','Almost certainly Guix.\r\n\r\nIf we are eliminating anything from the NixOS \"family tree\" then probably still be using a source-based distribution like Gentoo.','Y','Y','','','','','','','Y','','','','I tried several python nix packaging tools. I was dissatisfied with all of them.','My \"other\" for the question about I\'d like added to Nix reflects a desire for a proper MAC(Mandatory Access Control) solution. Most of the existing ones rely on extended-attributes which make them unsuitable for the nix store. Having a MAC database that isn\'t inextricably tied to the filesystem seems to be a requirement for such a thing.'),(2153,'1980-01-01 00:00:00',5,'en','487869503','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','I was drawn to NixOs for declarative system configuration, thus came in contact with Nix and after (ongoing) initial struggles fell in love having a projekt, a flake.nix and boom, it builds and i have my development env everywhere where nix is installed.','','Y','','','Y','','Y','','Y','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A5','A8','A2','','','','','','','','','','','','',NULL,'Handkerchief to wipe away the tears.\r\n','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A14','A2','A21','A10','A3','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','Y','','A2','','Time.','Y',NULL,NULL,NULL,NULL,'A2','','Y','Y','','A2','Reproducible system config.\r\nI have all my data stored in my Nextcloud but still wouldn\'t wanna nuke my laptop since I\'d lose my configs. Tried managing dotfiles with git, but that doesn\'t cover the which spftware is installed.\r\n\r\nNixOs solves this, even though its sometimes tedious.\r\n\r\nThe advantage of reproducible buils and hermetic shell envs is also really nice, so those feature drew me to Nix.','Y','','','','','','','Declarative package management','Declarative system config','','Make it easier to use / flatten the learning curve.','Again: handkerchiefs to wipe away the tears.\r\nProbably arch, dotfiles in a git repo and living with the fact that my system is fragile someday I\'ll have to rebuild it.','Y','','','','','','','Y','','','','Home manager','','You\'re doing great. I\'m still in the process of contributing a package to nixpkgs and the community is great.\r\n\r\nI think that it simply takes time to develop patterns of how to do everything, and then everything will be great.\r\n\r\nAnd pls more problem-focused guides, not just wiki/manual.\r\nLike the great blog posts of Xe Iaso.\r\nGuides that answer things like \"how to build a $LANG project with nix\" or \"how to setup up your daily driver with NixOs and home manager\" (E.g. I was/am confused which parts should be handled by home manager and which by NixOs. Do I want to Integrate them or not? ...)'),(2154,'1980-01-01 00:00:00',5,'en','49622847','A2','A3','male','','','','','','','Y','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A14','A8','A6','','','','','','','','','','','','',NULL,'Containers','A1','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of free time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','Y','Y','Y','','','','Being able to store system configuration in a VCS','Sharing parts of the configuration between machines','Rollbacks','','ansible, hand-written deployment scripts','Y','','','Y','','','','','','','xmonad','home-manager, sops-nix, poetry2nix','',''),(2155,'1980-01-01 00:00:00',5,'en','791456292','A5','A2','fem','','','','','','','Y','Y','','','','','','','','','','Y','','','','','Y','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','I learned primarily how to write programs with newer languages that have some guarantees about build determinism, and I needed something that would let me accomplish that with C programs easily. I was already familiar with Nix, to an extent, so I started using it regularly.','','','','Y','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A2','A1','A10','','','','','','','','A8','A10','A2','','','','','','','','','','','','',NULL,'Language-specific package managers or docker','A1','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A9','A3','A13','A15','A22','','','','','','','','','','','','','','','','','A9','A13','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I had tried it a few times before out of curiosity, when I was looking for distributions with novel approaches, and I gave up because I couldn\'t figure out the language/nixos modules. I finally started using it regularly when I realized how many random files scattered all across the filesystem I had to edit to setup and maintain my systems. I switched and never looked back.','Y','','Y','Y','','','','Declarative configuration','Determinism','Modules','LTS releases','I\'d either move to the country and become a goat farmer or use ansible or something, probably the former','Y','','','','','','','','','','','home-manager','',''),(2156,'1980-01-01 00:00:00',5,'en','504323090','A2','A4','','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','Not great for Python development','I was hired by a company that in the Python ecosystem, there is too much friction using Python with Nix, especially in machine learning.','','','','','','','Probably when I move to a position that allows it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Difficult to do Python package development (for non-NixOS users) in NixOS.','When I have another position that doesn\'t require deep integration in the Python package ecosystem.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Keep up the good work!'),(2157,'1980-01-01 00:00:00',5,'en','1727751694','A5','A2','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Python radicalized me into Nix for reproducible builds and development environments...','','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','','','','A2','A9','A8','','','','','','','','A5','A2','A8','','','','','','','','','','','','',NULL,'I would continue suffering trying to integrate everything imperatively/impurely like I was before.','A2','','','','Y','Y','','','','','','','','','','','','Y','Y','Y','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I switched to NixOS because I liked the idea of applying Nix\'s guarantees to the whole system.','Y','Y','Y','','','','','Declarative system configuration','Extensive support for various programs through NixOS modules','Easy updates and rollbacks','I would add more contributors','I\'d still be using Arch Linux','Y','','','','','Y','','','','','Hyprland','Crane, Fenix, Poetry2Nix, flake-utils','Naersk (poor support for git dependencies), Cargo2Nix (not a fan of checking in a massive Cargo.nix)','Nix and NixOS are awesome and I hope to see them gain popularity and improvements!'),(2158,'1980-01-01 00:00:00',5,'en','2096564751','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','','Y','Y','','','Y','','Y','Y','','Y','','','','Y','Y','Y','','','Y','','A7','A2','A8','','','','','','','','A4','A6','','','','','','','','','','','','','',NULL,'','A7','','','','Y','','','','','','','','','','','Y','','','','Y','','','','A15','A17','','','','','','','','','','','','','','','','','','','','A17','A7','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','Y','','','','','','','','','','','','','Y','','','','','','sway','','',''),(2159,NULL,1,'en','1608234421','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2160,'1980-01-01 00:00:00',5,'en','890372978','A5','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I started using Arch, then distrohopped for a while, then got tired of stuff breaking so went to NixOS.','','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A3','A2','A1','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'Probably a lot of per-language tooling.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','Nothing really, other than maybe a lack of documentation? I have not really felt the need to because of how extensive nixpkgs already is.','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','I got tired of other Linux systems breaking occasionally and thought it looked interesting.','Y','','Y','','','','','Having a configuration file in one spot that can be shared across computers easily.','Ease of setting up new services.','Reproducibility (less so in the strict sense of exactly the same outputs, more so in the sense of the same end-user experience).','I would add better documentation on how to use flakes.','Probably arch or something, combined with ad-hoc service setup. I used GNU stow beforehand to manage my config files, so probably that as well.','Y','','','','','','','','','','i3wm','Home manager.','','Thanks so much for all your hard work!'),(2161,NULL,NULL,'en','772134142',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2162,'1980-01-01 00:00:00',5,'en','1583499438','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Engineering manager ','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','Got tired of my server OS breaking on updates. ','Y','','','','','','Y','Y','','','','','','','','','Y','','','','A2','A1','A7','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'Ubuntu. ','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','No pressing issue I want to see fixed. ','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(2163,'1980-01-01 00:00:00',5,'en','64519951','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Got a brand new laptop at work and as NixOS was on my radar for a while I installed it.','Y','','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A2','A8','A6','','','','','','','','','','','','',NULL,'I guess Guix is not a good answer so I\'ll answer Debian since I\'m still using it a lot.','A4','','','','Y','Y','','','','','','','Y','','','','','Y','','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same as Nix, got a new laptop and installed it.','Y','','Y','Y','','','','Services','Declarative configuration','Mixing channels','','GuixSD / Debian','','','','Y','','','','','','','bspwm','','','Thanks for everything!'),(2164,'1980-01-01 00:00:00',5,'en','1621837460','A2','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','Y','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'agenix\r\nflake utils','',''),(2165,NULL,NULL,'en','424866433',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2166,'1980-01-01 00:00:00',5,'en','1768402165','A2','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','','Y','','','','','','Y','Y','Y','','','','A1','A2','A10','','','','','','','','A8','A5','A6','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','','','','builds.sr.ht','A9','A1','A10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(2167,'1980-01-01 00:00:00',5,'en','272013727','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Curiosity.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A1','','','','','','','','A8','A13','A6','','','','','','','','','','','','',NULL,'APT or GUIX','A2','','','','Y','','','','','','','','','','','','','','','','','','','A5','A13','A3','A15','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Not enough skills','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Curiosity.','Y','','Y','','','','','Declarative config','Rollbacks (generations)','Number of available apps','I would add ability to configure all apps using declarative configs.','GUIX or Debian','Y','','','','','','','','','','Sway','','',''),(2168,NULL,NULL,'en','580851954',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2169,'1980-01-01 00:00:00',5,'en','1298138621','A5','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Home manager on osx','','','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A9','A7','','','','','','','','A12','A6','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','Y','Y','','','argocd','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','',''),(2170,NULL,NULL,'en','1582982053',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2171,'1980-01-01 00:00:00',5,'en','1351903434','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','','IT Pro','Y','','','','','iOS, Android','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','Lacked on easy quick start','','','','','','','','','','','','','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Lacked an easy quick start','More GUI-based configurations',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2172,NULL,NULL,'en','1086557783',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2173,NULL,NULL,'en','1108007956',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2174,'1980-01-01 00:00:00',5,'en','1978988197','A5','A4','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Nix-shell is invaluable for working with our dev stack especially switching between different iterations of the stack (jdk 8 vs jdk 17 etc) ','','Y','','','','','Y','','','','','','','','Y','','','','','','A2','A3','A1','','','','','','','','A3','A14','A13','','','','','','','','','','','','',NULL,'','A1','','','','','','','','','','','','','','','','','','','','','','Azure','A20','A1','A11','A2','A15','A26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Lack of knowledge :-)','N','N','Time to investigate it for personal use (I\'m generally too busy :-/)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'niv','I haven\'t managed to get the hang of flakes yet... ',''),(2175,NULL,NULL,'en','522844279',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2176,NULL,NULL,'en','1350314023',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2177,NULL,2,'en','1340863070','A2','A4','male','','','Y','','','','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A3','','','','','','','','','Y','','','','','','','','','Y','','','','A2','A7','A10','','','','','','','','A4','A8','A5','','','','','','','','','','','','',NULL,'debian + containers + k3s','A4','','','','','','','','','','','','','','','','','','','','','','','A9','A2','A15','','','','','','','','','','','','','','','','','','','A9','A19','A2','','','','','','','','','','','','','','','','','','','','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2178,'1980-01-01 00:00:00',5,'en','1228077363','A2','A7','male','','','','','','','','','','','','','','','','','','Y','','','','','','','retired','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','','','','','','','','Y','','','','','','','Y','','','','','','','A1','A7','','','','','','','','','','','','','','','','','','','','','','','',NULL,'wouldn\'t be using NIXOS at all','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','not sufficiently knowledgeable','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I was looking for a similar immutable system (previously using Fedora Kinoite spin, a rpm-ostree based system with KDE). I was surprised ( amazed really) that the NIXOS ISO loaded and dropped me into the installation. I have a dual monitor system on my desktop which is only rarely detected by other Linux distros. NIXOS detected this before installation. I was impressed. Aside from learning an entirely new way to set up a Linux system things have gone very smoothly. The manual and the on-line posts have answered all of my questions. I now have a working system with all of the software that I use on a more or less regular basis.\r\n ','Y','','','','','','','immutable system','easy rollback to a previous system','all of my associated hardware just works','Several items seem to require sudo use ( edit configuration.nix) which I am working my way around at present. Have not managed yet to run KDE with Wayland.','Fedora Kinoite ','Y','','','','','','','','Y','','','none','none','Amazed how accomplished this distro is. Many other distros have been tried and rejected because of relatively minor problems that proved difficult to fix. I am not a developer by any stretch of the imagination but NIXOS has impressed me a great deal.'),(2179,NULL,NULL,'en','1859149313',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2180,'1980-01-01 00:00:00',5,'en','1492682970','A5','A4','male','','','','','','Y','Y','Y','','','Y','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I was sick of configuration management resulting in unmanageable servers with diverging configuration over time. NixOS gave me declarative tooling for server configuration that produces configurations that reliably match my intent, and continue to do so over time.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A6','A11','A5','','','','','','','','','','','','',NULL,'Debian or Ubuntu for the breadth of packages and developer awareness. One of puppet/chef/ansible/saltstack for config management.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A2','','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same story as starting with Nix. I was actually interested in NixOS first as a better form of declarative config management than the incumbent puppet/chef/ansible/etc. . Nix the package ecosystem and language came along for the ride. Frankly, nix-the-language was more of an obstacle that I suffered through because NixOS was so good, but I would not have lamented its absence.','Y','','Y','','','','','Declarative configuration','Trivial rollbacks','Breadth of supported services/system facilities','I would remove Nix the language. My ideal system would be a melding of Guix and NixOS: guix\'s lisp DSL, guix\'s grafts, guix\'s operator niceties like automagic cache fill from LAN peers, with NixOS\'s breadth of packages and modules and mindshare.\r\n\r\nI would also focus down on making NixOS more operable: have first-party tooling for managing fleets of machines (to stop the insane proliferation of nixops-type tools), secrets management, and better abilities to introspect current system configuration vs. desired config (i.e. first class \"OS diff\" that\'s better than what 3p tools can currently extract from nix core).','On servers, Debian or Ubuntu because of their mindshare and developer support, probably combined with puppet/chef/ansible/something. On desktop, either Debian/Ubuntu, or maybe Arch, which is what I used prior to NixOS for fresh software, breadth of software, and flexibility.','','','','','','Y','','','','','Sway','nix-diff to produce barely readable diffs between running system config and proposed new config.\r\nagenix to handle secrets management as a layer on top of nixos.','Various nixops tools, none of which were significantly better enough or well enough maintained that they were worth ditching a janky hand-rolled shell script.',''),(2181,'1980-01-01 00:00:00',5,'en','137775533','A5','A2','male','','','Y','','','','Y','Y','Y','Y','','','','','Y','','','Y','','','','','','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A12','A2','A11','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','Y','','','','','Y','Y','','Y','','','','','','','','A15','A2','A13','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(2182,NULL,NULL,'en','2068633616',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2183,'1980-01-01 00:00:00',5,'en','2037398839','A2','A5','male','','','','','Y','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','','','','','','Y','','','','','','','','','Y','','','','A1','A2','A3','','','','','','','','A6','A14','A5','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','',''),(2184,'1980-01-01 00:00:00',5,'en','702124266','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','Y','','','Y','','Y','Y','','','','','','','','Y','Y','','','','A1','A2','A7','','','','','','','','A6','A9','A8','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A2','A9','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','','','','','','','','','','','','','','Y','','','','','',''),(2185,NULL,1,'en','1032489113','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2188,'1980-01-01 00:00:00',5,'en','862543405','A2','A2','male','','','','','','','','Y','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','To manage my tools with home manager and be able to reproduce my setup on any machine','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A1','A2','A6','','','','','','','','A8','A4','A14','','','','','','','','','','','','',NULL,'Brew or guix probably, i also used zinit (zsh plugin manager) to download binariea and do simple builds for programs i use','A2','','','','Y','','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2187,NULL,NULL,'en','220675686',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2186,'1980-01-01 00:00:00',5,'en','2146776344','A2','A3','male','','','','','','','','Y','','','','','','','','','','','','','','','','','quant dev','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Got fed up with Debian that had many minor occasional breakages and bugs that manifested when some dependency is upgraded (to fix another bug).\r\n\r\nI wanted the tool that could pin something (e.g. a version of xfre that works for me and I\'m happy about) so that it will work the same way after any number of system upgrades.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A4','A8','A10','','','','','','','','','','','','',NULL,'Debian, Ubuntu. Maybe Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A3','A4','A15','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Review process, I have pretty vague idea about it though. Getting hold of reviewers to actually look at your PR seems to be problematic too.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','System config stored in git and can be applied without reboot','Ability to have multiple versions of packages not conflict with each other (e.g. no global libc)','Ability to experiment with system knowing I can roll back most of the time','Probably would improve nixpkgs since it\'s the repository wherebsoftware comes from in the OS.','Debian, Ubuntu. Maybe try Guix (didn\'t yet)','Y','','','','','','','','Y','','','','',''),(2189,'1980-01-01 00:00:00',5,'en','1403724925','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A2','','','','','','','','Y','Y','Y','','','','','Y','Y','','','','','','A1','A3','A6','','','','','','','','A14','A5','A13','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','Y','','','','','A5','A4','A3','','','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2190,'1980-01-01 00:00:00',5,'en','1364947764','A2','A3','male','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','','','','','','','','','','Y','','','','A1','A7','A2','','','','','','','','A6','A8','A12','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A5','A19','A2','A4','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Lack of free time and knowledge','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','Declarative configuration','Large number of packages','Reproducibility','Better FHS support','','Y','','','','','','','','Y','','','Home-manager','','Thank you to all Nix/NixOS contributors and developers. You rock!'),(2191,'1980-01-01 00:00:00',5,'en','1599139928','A5','A4','male','','','','','','','','','','','Y','','','','','','Y','','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A1','A7','','','','','','','','A8','A11','A2','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A2','A14','A25','A15','A13','A3','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','Y','Y','','','','','','','Y','Y','','','','Y','','','','','','','',''),(2192,'1980-01-01 00:00:00',5,'en','119740102','A2','A5','male','','','Y','','','','Y','Y','','Y','Y','','Y','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Haskell / FP enthusiast, heard about \"an OS designed using FP principles\", and how that helped managing dependency hell, and decided to try it out.','Y','Y','','','','','Y','','','Y','','','','Y','Y','','Y','','','','A3','A7','A10','','','','','','','','A2','A4','A13','','','','','','','','','','','','',NULL,'Debian.','A4','','','','','','','','','','','','','','','','','','','','','','','A13','A25','A1','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','','Package management with Nix, of course.','Declarative system configuration.','','Have the nix language be more discoverable, as well as typed.','Debian','Y','','','','','','','','','','Xmonad','lorri, direnv.','',''),(2193,NULL,3,'en','781864144','A1','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I tried NixOS as a replacement for my own Puppet setup, and was amazed how much simpler and better it was.','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A7','A2','A3','','','','','','','','A5','A4','A12','','','','','','','','','','','','',NULL,'Puppet and Bash.','A4','','','','','Y','','','','','','','','','','','','Y','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as above.','Y','','Y','','','','','Simple configuration of the whole system','Configuration modularity (`import`)','Reproducibility','I\'d add more resources to create and run tests, so that the unstable channel could be as stable as Arch Linux.','Arch Linux.','Y','','','','','','','Y','','','',NULL,NULL,NULL),(2194,NULL,1,'en','114221126','A2','A3','male','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2195,NULL,1,'en','497916300','A8','A5','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2196,'1980-01-01 00:00:00',5,'en','820370590','A2','A4','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','To simplify smart home projects. ','','Y','','','Y','','','Y','','','','','','Y','','','Y','Y','','','A2','A1','A10','','','','','','','','A6','A8','A3','','','','','','','','','','','','',NULL,'Guix ','A4','','','','Y','','','','','','','','','','','','','','','','','','','A4','','','','','','','','','','','','','','','','','','','','','A4','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','','','','Y','','','','','','','','','','','','','','','','','','','','','','',''),(2197,NULL,1,'en','1614289409','A2','A5','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2198,NULL,1,'en','254688834','A2','A6','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2199,NULL,NULL,'en','1074066319',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2200,NULL,2,'en','1260189948','A5','A3','male','','','Y','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','Y','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A2','A10','A7','','','','','','','','A5','A9','A8','','','','','','','','','','','','',NULL,'','A4','','','','','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2201,NULL,NULL,'en','1451981101',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2202,'1980-01-01 00:00:00',5,'en','1177683366','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Sick of the dealing with the problems that Nix solves','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','Y','Y','','A1','A3','A6','','','','','','','','A6','A3','A2','','','','','','','','','','','','',NULL,'I guess guix? I don\'t know it would be pretty horrible.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A19','A7','A15','A2','A5','A11','A25','','','','','','','','','','','','','','A5','A7','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted a better Arch, and I bailed after a while. Then after using nix for a while I wanted my OS to work like that.','Y','','Y','','','','','Declarative configuration for all my machines in the same repo as my home configuration','One-command upgrade of everything','Deterministic = widespread testing = doesn\'t seem to break much','','Guix? I\'d cry','Y','','','','','','','Y','','','','home-manager! Plugins for direnv','',''),(2203,'1980-01-01 00:00:00',5,'en','1932433227','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','a friend of mine organized the first NixOS meetups in Tokyo and told me about it. I was interesting by the ability to run several versions of php without containers by using nix-shell. As I was on Ubuntu, it was really a good point that nix could be setup in any GNU/Linux distribution.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','Y','','','A2','A3','A8','','','','','','','','A9','A14','A15','','','','','','','','','','','','',NULL,'ability to build an android project without allowing non free software.','A4','','','','','','','','','','','','','','','','','Y','','','','','','A10','A2','A25','','','','','','','','','','','','','','','','','','','A10','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','my friend from Tokyo. the ability to use declarative configurations.','Y','','Y','','','','','rollbacks in bootloader','declarative configuration','build/install as a simple user and not as root','','Debian','Y','','','','','','','Y','','','','','','thank you for this amazing OS !'),(2204,'1980-01-01 00:00:00',5,'en','876206030','A2','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','','Y','','','','A2','A3','A7','','','','','','','','A5','A14','A9','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','Y','','','','','','A11','A15','A2','','','','','','','','','','','','','','','','','','','A15','A11','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','','','','Y','','','','','','','Secrets support. Faster rebuilds.','','Y','','','','','','','','','','','','',''),(2205,'1980-01-01 00:00:00',5,'en','301203868','A5','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','Y','','','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was reading Xe\'s blog (xeiaso.net/blog), and I think xe was talking about switching from Kubernetes to Nix. I was new to software at the time, so I wanted to give everything a shot, especially the new hotness. Once I got the classic \"nix-shell -p python39\" demo, with that beautiful, beautiful encapsulated path, I was hooked. \r\n\r\nFrom there I used it for desktop stuff, development stuff, everything.','Y','Y','','Y','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A8','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Some kind of docker thing.','A1','','','','Y','Y','','','','','','','','Y','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A9','A2','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','Y','','Y','','','','','modules ecosystem','rollback','declarative environment','Faster builds that take up less space. You said I had a magic want.','Some kind of rolling Arch distro, I bet.','','','','Y','Y','','','','','','sway','','nix-on-droid (Android). Just didn\'t see the point.','Thank you for this amazing software!!'),(2206,NULL,NULL,'en','1450835661',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2207,'1980-01-01 00:00:00',5,'en','344858272','A2','A3','male','','Y','','','','','','','','','','','','','Y','','','','','','Y','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','To configure NixOS and maintain academic software, where reproducibility is important.','','Y','','','Y','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A3','A10','','','','','','','','A14','A8','A4','','','','','','','','','','','','',NULL,'Guix, but if nix didn\'t exist Guix wouldn\'t exist, so probably Makefiles.','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A5','A2','A13','A15','A3','','','','','','','','','','','','','','','','','A5','A13','A15','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','If I contribute a package, I\'d be responsible for maintaining it, for which I\'m not sure I\'d have time.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I was using arch but was afraid of updating so the rollback feature was one of the features that made me switch. Additionally I like the whole declarative configuration story.','Y','','Y','','','','','Declarative Configurations','Reproducibility','Rollbacks','','Guix, but with no NixOS, there would be no Guix, so likely arch linux + some configuration tool.','Y','','','','','','','','','','no environment/xmonad','home-manager, nix-tree','',''),(2208,'1980-01-01 00:00:00',5,'en','927732199','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','Y','','','','A7','Coworker recommends it. Haven’t really dabbled much further into it other than running “nix develop …”','','Y','','','','','Y','','Y','','','','','','Y','','','','','','A6','A2','A1','','','','','','','','A10','A5','A8','','','','','','','','','','','','',NULL,'cmake FetchContent, vcpkg, conan, …','A1','','','','Y','Y','','','','','','','','','','','','','','','','','Drone','A5','A4','A1','','','','','','','','','','','','','','','','','','','A4','A3','A5','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Time','N','N','Turn it into the premium C++ package manager',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None, too little time','None, too little time',''),(2209,'1980-01-01 00:00:00',5,'en','1553630866','A5','A5','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted a faster, better package manager for MacOS than homebrew. Like what I\'ve heard about Nix at a high level, but the sharp edges put me off until \'fleek\' then \'DevBox\' came along.','Y','','','','','','Y','','','','','','','Y','','','','','','','A1','A10','A3','','','','','','','','A9','A6','A3','','','','','','','','','','','','',NULL,'homebrew','A7','','','','Y','','','','','','','','','','','','','','','','','','','A13','A2','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Seems too hard.','N','N','If it were easier to install and get started with than Manjaro, I\'d try it. I don\'t like a steep learning curve to get started using an OS--I want to get value out of it quickly, then I get sucked into the ecosystem as a encounter things that are missing.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DevBox','fleek, homemanager, flakes','You could 10x or 100x the popularity of Nix, if you care to, by focusing on usability for non-engineers.'),(2210,'1980-01-01 00:00:00',5,'en','1596145280','A2','A4','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Too lazy to keep track of different config files all over the place.','Y','Y','','','','','Y','Y','Y','Y','Y','Y','','','Y','Y','Y','','','','A2','A7','A6','','','','','','','','A6','A5','A4','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','TeamCity ','A6','','','','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I got tired of maintaining config files all over the place. ','Y','Y','Y','Y','Y','','','Declarative system','Atomic installs with rollback','Easily patchable','','','Y','','','','','Y','','','Y','','Plasma Mobile','','',''),(2211,NULL,NULL,'en','1829339592',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2212,'1980-01-01 00:00:00',5,'en','136579812','A5','A3','male','','','','','','','','','','','Y','','','Y','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A3','A7','A10','','','','','','','','A1','A12','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A2','A9','A1','A17','A10','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','Y','','Easily share X with flakes','get started easier with nix develop','Highly reliable','','','Y','','','','','','','','','','sway','','',''),(2213,NULL,1,'en','1859888778','A2','A3','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2214,NULL,NULL,'en','1693297706',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2215,'1980-01-01 00:00:00',5,'en','1655780699','A2','A3','male','','','','','','','','','','Y','','','','','','','','Y','','','','','Y','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Novel approach, at least for me. Seemed interesting. Makes it unique and useful for my style of operating system management. Development environments are easily created and it cut\'s down a lot of tools I would be using otherwise. Tried it out for testing purposes. It was so easy to manage and setup that I just didn\'t need to go back to the old system. Takes time to learn things and find right resources though...','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A10','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Arch and AUR','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A7','A1','','','','','','','','','','','','','','','','','','','','A7','A24','A15','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Language mostly','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Declarative setup and easy ways to manage the system.','Y','','','','','','','configuration.nix','flakes','nix-shell','Easy way to reference any version of a package through out it\'s history when desired. More customization for packages and better support for language specific packages.','Arch, AUR','Y','','','','','','','','Y','','','','',''),(2216,'1980-01-01 00:00:00',5,'en','636655933','A5','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A2','I had been loosely aware of nix as a project for several years, but each time I looked at it the documentation left something to be desired. A couple of trusted coworkers endorsed it as \"getting quite usable,\" so I dove back in and would consider myself a user and evangelist now.','Y','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A7','','','','','','','','A4','A14','A5','','','','','','','','','','','','',NULL,'shell scripts, git, homebrew/yum, asdf and a whole lot of love.','A6','','','','Y','Y','','','','','','','','','','','','','','','Y','','','A2','A25','A1','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Nothing, have not felt a need to as yet - my needs have already been satisfied with the existing work in nixpkgs.','Y',NULL,NULL,NULL,NULL,'A3','','Y','','','A1','Fedora released a new version, I was bored, declarative and reproducible whole-OS configuration is extremely appealing.','Y','','','','','','','Entirely declarative/reproducible: no more \"what was that package I installed to get this?\"','nixos-rebuild build-vm so I can test out changes to my config without breaking my stuff','large amount of pre-packaged convenience: there was already a configuration for my laptop that was as simple as adding a module to my configuration\'s flake. Magic!','Better documentation around getting started - where to put your nix config, how to switch from /etc/nixos to your own configuration\r\n\r\n\r\nMore opinionated guides on how to use/structure a nixos configuration - I want to know the best practices without having to read a ton of other peoples\' github repos','Fedora.','Y','','','','','','','Y','','','','home-manager got me into nix','','My experience with nix has been bipolar: I am either totally elated with the ease of installing packages and building a declarative configuration for my machine/my project OR I am completely confounded by the error messages and stack traces that I see.\r\n\r\nI am a seasoned software developer, and I would love to roll nix out to a broader audience at work to give our local developer environments reproducibility superpowers. However, each time I encounter an infinite recursion error message with a totally inscrutable stack trace, I have to step back because I don\'t feel comfortable forcing more junior developers to learn another (frankly rather alien) system.\r\n\r\nI think if we want to see nix gain broader adoption, some serious work needs to be put into the interpreter\'s error messages and documentation. We need to support the use case of someone who is not totally invested in nix making drive-by changes to nix code without a lot of external reading or worse having to read potentially outdated Discourse/Stack Overflow threads.\r\n\r\nDesigning the UX of nix around a developer who hasn\'t read the nixos.org documentation and needs to add a package to a project at work would enormously increase nix\'s reach: the system has already solved many hard problems around software reproducibility and packaging, user experience refinement is comparatively easy from that perspective.\r\n\r\nFlakes make this a lot better, but I think there is still much to do around documentation (e.g. \"so you\'ve been handed a shell.nix file, here is how to read it\" on nixos.org) and intelligible, actionable errors and stack traces from the interpreter (e.g. \"you added this line to flake.nix and it is causing infinite recursion. Did you mean ...?\") would create a software packaging juggernaut the likes of which we have never seen.\r\n\r\nThat said, I have personally witnessed the documentation get MUCH MUCH better in the past year or so, and the determinate systems installer makes getting going a breeze. I am optimistic about the future.'),(2217,'1980-01-01 00:00:00',5,'en','74210107','A5','A4','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','Developer, smart contracts','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Tired of losing and breaking my /etc changes.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','Y','','A1','A2','A3','','','','','','','','A1','A8','A6','','','','','','','','','','','','',NULL,'Guix, I guess. :( Hard to go back to the old paradigm.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A2','A1','A25','A15','','','','','','','','','','','','','','','','','A9','A15','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Got tired of losing and breaking my /etc changes. ','Y','','','','','','','Declarative configuration with comments that is easy to maintain.','Atomic switches with easy rollbacks, for fearless upgrades.','Very active community with well-maintained package ecosystem.','Make nix (the language) less scary to newcomers. It took me years to become proficient, and I\'m happy with it now, but the functional nature of it is hard for most people I run into. ','Guix, I guess. :(','Y','','','','','','','','','','i3','','','Nix and NixOS has been lifechanging to me, I can never go back to a traditional Linux distro. Thank you for existing.'),(2218,'1980-01-01 00:00:00',5,'en','193985974','A1','A4','fem','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A8','A9','A11','','','','','','','','','','','','',NULL,'','A2','','','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','github','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','','Y','','','','declarative configfuration','rollback','','','','Y','','','','','','','','','','herbstluftwm','','',''),(2219,'1980-01-01 00:00:00',5,'en','1077047810','A5','A2','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A friend told me about how they use NixOS and I decided to try it for declarative, atomic system configuration.','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A7','A2','A3','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'I used to use Ansible, Arch, and Ubuntu','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A24','A3','A4','A2','A9','A5','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I don\'t have anything currently worth contributing and am also unfamiliar with the contribution process.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','A friend told me about how they use NixOS and I decided to try it for declarative, atomic system configuration.','Y','','Y','','','','','Declarative configuration','Atomic deploy / rollback','Package availability','I would remove channels and replace them with flakes','I used to use Ansible, Arch, and Ubuntu','Y','','','','','','','','','Y','','home-manager, simple-nixos-mailserver','nix-doom-emacs, nix-xilinx',''),(2220,NULL,NULL,'en','1054890071',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2221,'1980-01-01 00:00:00',5,'en','1048957094','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A7','A3','A1','','','','','','','','A4','A6','A5','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A25','','','','','','','','','','','','','','','','','','','','A9','A23','A24','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','Flake-utils-plus','',''),(2222,NULL,NULL,'en','2118774735',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2223,'1980-01-01 00:00:00',5,'en','506378833','A5','A3','-oth-','Choose not to specify','','','','','Y','','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Y','','','A2','Interest in functional programming and devops - nix was a nice intersection ','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','','','A3','A2','A7','','','','','','','','A8','A4','A6','','','','','','','','','','','','',NULL,'Probably something like docker but maybe silverblue','A2','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A15','A1','A9','A2','','','','','','','','','','','','','','','','','','A1','A15','A9','','','','','','','','','','','','','','','','','','','','Y','Y','','A2','','Commitment to becoming a maintainer vs simply packaging any one of dependencies I need for my projects. Sometimes it is hard to get stuff working in pure nix but it works fine with the right shell environment ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Read a tweet by Mitchell H. and copied his setup installing NixOS in a VM. Eventually moved to it as my sole distro. ','Y','Y','Y','Y','','','','Generations on boot is amazing','Reproducible builds','Hardware support','Package pinning, or somehow making it so I don’t have to think about patchelf','Fedora','Y','','','','','','Cachix deploy','','','','i3+none','Home-manager \r\nnix-ld\r\nSops-nix\r\nNixos-hardware ','Flake-Utils\r\nCachix-deploy','Thanks for all y’all do! '),(2224,'1980-01-01 00:00:00',5,'en','1897133975','A2','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I don’t remember how I heard about Nix. But I know I didn’t like how every “dotfiles” repository had a custom shell script to update the configuration. Ansible sucks. When I heard about declarative OS, I was all in. ','','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','Y','Y','','A2','A3','A8','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'I would cry. A lot. A then went back to a mix of Python virtual envs, containers, Ansible.','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A15','A9','','','','','','','','','','','','','','','','','','','A2','A15','A9','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I maintain a single simple package. I wish I could contribute more. Lack of understanding of nix stops me. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','Y','','','','Declarative configuration','Easy rollbacks','Reproducibility ','Better docs and learning materials. ','Debian or Arch','Y','','','','','','','','','','i3','','','I love you folks!'),(2225,'1980-01-01 00:00:00',5,'en','1520276139','A1','A3','male','','','','','','','','','','','Y','','','','','Y','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A14','A13','A5','','','','','','','','','','','','',NULL,'arch','A4','','','','','Y','','','','','','','Y','','','','','','','','','','','A2','A3','A4','A9','','','','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','','','Y','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','','','','','','','','','','','','','','','','sway','','',''),(2226,NULL,2,'en','840150537','A2','A5','male','','','','','','','','','','','','','','Y','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','','','','','','','','Y','','','','','','','Y','Y','','Y','','','','A7','A1','A2','','','','','','','','A14','A9','A7','','','','','','','','','','','','',NULL,'OS package manager + virtual envs','A4','','','','','Y','','','','','','','','','','','','','','','','','','A2','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2227,'1980-01-01 00:00:00',5,'en','1245905374','A2','A2','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A3','A1','A7','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A10','A26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','','Arch','Y','','','','','','','','','','Sway','','',''),(2228,NULL,1,'en','596628573','A2','A4','-oth-','non-binary','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2229,NULL,NULL,'en','1011260115',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2230,'1980-01-01 00:00:00',5,'en','823570757','A5','A2','-oth-','Bigender','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','Y','','Y','','','','','','','','','','Y','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2231,'1980-01-01 00:00:00',5,'en','184608194','A3','A4','male','','Y','','','Y','Y','','','Y','','','','','','Y','','','Y','','','Y','','','','','','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','Y','Thought that Guix System (+ nonguix) was better adapted to my workflow','Y','The language and the lack of comprehensive documentation were prohibitive to me','','','','','Y','','','','','','More cohesive language would be great!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Small bugs on software distributed w/out them in another distros, docs not comprehensive ','Good to great documentation, a more cohesive language would also help',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Thanks for NixOS! I think is a great distro, but not for me currently. It seems that a better-than-average manual (think FreeBSD Handbook, Arch wiki) would help the community a lot. I love the idea of Nix, but I feel I would have to change a lot of my current workflow to use it (using Fedora Silverblue for work currently). Nevertheless, I feel I should get back to Nix... gonna format a machine today and play a little bit with it ☺️'),(2232,NULL,2,'en','1376244515','A2','A4','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Heard from multiple people I respect independently, that they enjoy Nix and NixOS and got curios!','','Y','','','','','Y','','','Y','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A8','A5','A4','','','','','','','','','','','','',NULL,'Arch Linux and Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A3','A2','A7','A21','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2233,NULL,NULL,'en','2085838546',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2234,NULL,NULL,'en','592394169',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2235,'1980-01-01 00:00:00',5,'en','1068178262','A8','A3','male','','','Y','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I wanted to have reproducible development environments for my projects.','Y','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A7','','','','','','','','','','','','','','','','','','','','','','',NULL,'Docker','A4','','','','Y','','','','','','','','','','','','','Y','','','','','','A2','A14','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I don\'t know flakes or the language.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I have a very idiosyncratic setup that used to often drift from my dotfiles. NixOS lets me have the same setup across devices and it\'s always in sync with the dotfiles.','Y','','','','','','','Declarative system configuration','Reproducibility','Ad-hoc shells','','Ansible and bash scripts.','Y','','','','','','','','','','spectrwm','','',''),(2236,'1980-01-01 00:00:00',5,'en','1370860203','A5','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','A friend recommended it to me.','','Y','','Y','','','Y','Y','','','','','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'Git repos','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I don\'t develop any software that is interesting enough to add to nixpkgs','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','A friend recommended it.','Y','','Y','','','','','Declarative system configuration ','','','','Git repos','Y','','','','','','','Y','','','','','',''),(2237,NULL,NULL,'en','1192216863',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2238,NULL,2,'en','1493492654','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','','','A2','A10','A3','','','','','','','','A9','A2','A7','','','','','','','','','','','','',NULL,'Arch ','A4','','','','','','','','','','','','','','','','','','Y','','','','','A2','A3','A9','A4','A5','','','','','','','','','','','','','','','','','A9','A13','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I am not interested in the social aspects of open source software ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2239,'1980-01-01 00:00:00',5,'en','599538552','','A3','-oth-','','','','','','Y','Y','','','','','Y','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Read a lot about NixOS over time from blogs and decided to try it.','Y','','','','Y','','Y','Y','','','','Y','','','Y','Y','Y','','Y','','A7','A10','','','','','','','','','A9','A4','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A9','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A4','Read a lot about NixOS over time from blogs and decided to try it.','Y','','Y','','','Y','','Declarative config','Extensibility','Rollback','','','Y','','','','Y','Y','','','','','Sway','','Arion','<3'),(2240,NULL,2,'en','12326344','A6','A4','male','','Y','','','','','','','','','','','','','Y','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A2','','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A5','A6','','','','','','','','A5','A13','A9','','','','','','','','','','','','',NULL,'','A4','','Y','Y','','','Y','Y','','','','','','','','','','','','Y','','','','A6','A18','A21','','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2242,'1980-01-01 00:00:00',5,'en','583354857','A1','A4','male','','','','','','Y','Y','','','Y','','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','read an intriguing blog post (https://xeiaso.net/blog/nix-flakes-1-2022-02-21) then asked a friend I respect about his opinion on Nix. Found out he uses it daily and he had high praise for it. Started to look into the language more and liked what I saw.','Y','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A8','A14','A9','','','','','','','','','','','','',NULL,'docker, vagrant, and email(to communicat what versions of software to use when developing). I love the project level configuration i can do with nix flakes.','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A1','A20','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','don\'t feel like I understand it all well enough yet. I am mostly building off other\'s work to get my own environments set up. When I understand nix language better, I would contribute more I think.','N','N','Understanding it\'s usecases better. Just need to learn more about it, I think.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Really love nix!'),(2243,NULL,1,'en','127971256','A2','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2244,NULL,2,'en','1017452094','A5','A4','male','','','','','Y','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','Y','Boss asked me to stop using it','','','','','','','Y','Couldn’t get some things to compile despite compilers on the path','','','','','Y','','','Y','','','Better documentation, and make flakes not experimental',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2245,NULL,NULL,'en','1132320520',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2246,'1980-01-01 00:00:00',5,'en','618600613','A2','A4','male','','','','','','','','','Y','','Y','Y','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I switch my distro to NixOS.','','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A10','A6','','','','','','','','A5','A9','A6','','','','','','','','','','','','',NULL,'guix ;)','A4','','','','','','','','','','','','','','','','','','','','','','','A3','A2','A25','A15','','','','','','','','','','','','','','','','','','A15','A25','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I have opened PR but did not finalize due to the lack of time. If I remember correctly comments I received were not so clear.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Tired of packages recompilation in Gentoo. Wanted an easy solution to reproduce my environment on multiple hosts.','Y','','Y','','','','','Stability','Reproducible config','Active community','I want an easy way to isolate proprietary SW in NixOS containers like in Flatpak.','GuixSD ;)','Y','','','','','','','Y','','','','home-manager','cachix & nix-community for emacs-overlay (finally there is pgtk version in nixpkgs-stable)',''),(2247,'1980-01-01 00:00:00',5,'en','2035633117','A5','A4','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','Designer','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','The reproducibility story is really compelling to me. Additionally the wealth of packages made replicating a work environment in multiple OS\'s straightforward.','Y','Y','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A1','A2','A3','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Ansible? Docker probably.','A1','','','','Y','Y','','','','','','','Y','','','','','','','','','','','A2','A7','A1','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Haven\'t tried. Nix as a language seems complex/difficult to me and I\'m not sure I would be able to do it right.','N','Y',NULL,'Felt more comfortable on macOS.','Needed a linux server running somewhere.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Keep it up! And please keep supporting nix on macos!'),(2248,NULL,NULL,'en','1538799196',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2249,NULL,2,'en','1659344015','A1','A6','fem','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A3','Supervisor is a fan. Major team system built in nix, and I need to work with and in it','Y','Y','','','','','Y','','Y','','','','','Y','','Y','','','Y','','A1','A3','A7','','','','','','','','A5','A8','A7','','','','','','','','','','','','',NULL,'Nextflow','A7','','','','Y','','','','','','','','','','','','','','','','','','','A21','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2250,'1980-01-01 00:00:00',5,'en','1129943223','A5','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','nix shell was super convenient','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A7','A6','A2','','','','','','','','A14','A5','A3','','','','','','','','','','','','',NULL,'Ansible, Debian, Docker, HomeBrew. ','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A9','A2','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Home router and bastion servers on AWS','Y','','Y','Y','','','','Rollback','Reproducibility','Everything as Code','Comprehensive documentation. Although at this point the best way to figure out what options are available is to just look at the source anyways.','Debian, Ansible','Y','','','','','','','Y','','','','nix-darwin','',''),(2251,'1980-01-01 00:00:00',5,'en','651257466','A5','A3','male','','','','','Y','','','Y','','','','','','','','','','','','','Y','','','','','Y','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Heard everyone online talking about it. Thought I\'d give NixOS a try on VMWare. Fell in love quick. ','Y','','','','Y','','Y','','','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A14','A8','A10','','','','','','','','','','','','',NULL,'cmake','A1','','','','Y','','','','','','','','','','','','','','Y','','','','','A4','A3','A22','','','','','','','','','','','','','','','','','','','A6','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I don\'t know how.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','','','','','','nix shell','','','','cmake','Y','','','','','','','Y','','','','','',''),(2252,NULL,1,'en','1831778603','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2253,'1980-01-01 00:00:00',5,'en','50453616','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Wanted stability with my desktop. Was using arch and a coworker started talking about nix and how it solves dependency hell.','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A1','A2','A10','','','','','','','','A14','A9','A8','','','','','','','','','','','','',NULL,'Probably Mac and just not give a shit like everyone else. Its nice some people care to solve the problem :D ','A4','','','','Y','Y','','','','','','','Y','','','Y','Y','Y','','Y','','','','A13','A2','A9','','','','','','','','','','','','','','','','','','','A21','A15','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','Was using Arch but was having issues with my packages and managing my dot files. Co-worker introduced me to nix and the rest is history.','Y','Y','Y','Y','','','','Derivations','Flakes','Reproducible development environments (including my entire system)','','Probably macOS and just not give a shit like everyone else. Its nice that there are others out there that care :D','Y','','','','','Y','','Y','','','i3','','Home Manager. You really dont need it and I dont understand why wayland is built under it. ',''),(2254,'1980-01-01 00:00:00',5,'en','1122244436','A8','A5','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','Y','','','','N','N','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2255,NULL,1,'en','1781194846','A5','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2256,NULL,NULL,'en','2060111909',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2257,'1980-01-01 00:00:00',5,'en','1179012190','A5','A2','-oth-','non-binary','','','','','','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A4','Programmable, repeatable package management','Y','Y','','Y','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A6','A1','','','','','','','','A8','A14','A11','','','','','','','','','','','','',NULL,'Guix wouldn\'t exist either, so probably just Debian packages?','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','Garnix','A15','A9','A1','','','','','','','','','','','','','','','','','','','A7','A5','A20','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','Single source of truth for system configuration','','','Y','','','','','','','','','','Y','','','Y','','','','','','','','','',''),(2258,'1980-01-01 00:00:00',5,'en','335365633','A5','A4','male','','','','','','','Y','Y','','Y','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Was using ansible to configure Linux boxes and liked the idea of something \"like\" ansible but more integrated with the package manager/os','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A10','A1','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'Ansible, but nothing really replicates all the features of nix e.g. knowing the setup is (mostly) deterministic ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A10','A3','A9','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I\'m actively considering doing so, just haven\'t gotten around to it','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Same reasons as using nix-the-package-manager... I was also getting irritated with Ubuntu forcing users into using Snap and so was amenable to trying something new ','Y','','Y','','','','','One stop configuration of my machines','Deterministic(-ish) packaging','Easy configuration with modules','Integrate some of the functionality from home-manager, especially populating user homedir with configuration files','Like mentioned earlier, Ansible plus some more \"boring\" Linux distribution. I was getting frustrated with Ubuntu snapification so probably arch linux.','Y','','','','','','','','','','i3','Home-manager','',''),(2259,'1980-01-01 00:00:00',5,'en','1039428073','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','Y','','','','','','','Y','Y','','NetBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I had tried to use Nix several times on macOS but found it truly difficult. My complete inability to use Nix as a Homebrew replacement was a big disappointment. However, I started using NixOS when I had cause to rebuild my house server. Since then, I\'ve been a real convert to the wisdom of declarative configuration. That said, the Nix expression language is horrendous and I hate it.\r\n\r\nIt\'s still very useful, and I do use it for containers with some frequency.','Y','','','','Y','','Y','Y','','','','','','Y','','','Y','Y','','','A2','A1','A7','','','','','','','','A13','A3','A4','','','','','','','','','','','','',NULL,'I would likely still be using Debian on my home server and hoping for the best with something like Ansible or whatever else comes along.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A24','A2','A1','','','','','','','','','','','','','','','','','','A15','A24','A2','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I don\'t know how, or if I would even want to. I\'m not sure what sort of help is needed!','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I needed to rebuild my house server.','Y','','Y','','','','','Declarative config','Good package selection','Atomic rollback for when I inevitably make a mistake','I would make the language better. Dhall sounds like a fantastic option to look at, at least.','Likely Debian also.','Y','','','','','','','','','','','','Nix on macOS, mostly. That never worked as it should have!',''),(2260,'1980-01-01 00:00:00',5,'en','604635681','A1','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Replaced a Puppet setup for my personal and work machines with Nix, and jubilation ensued on the *second* try, after a few broken packages were fixed in nixpkgs.','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A5','A4','A12','','','','','','','','','','','','',NULL,'','A4','','','','','Y','','','','','','','','','','','','Y','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as above.','Y','','Y','','','','','Simple but powerful configuration','Huge package repository','','I\'d add more resources to testing, so that the unstable channel could be as stable as Arch Linux.','Arch Linux.','Y','','','','','','','Y','','','','poetry2nix, niv','home-manager, flakes',''),(2261,'1980-01-01 00:00:00',5,'en','167047276','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','N','N','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','In 2019, I was looking for a system for a virtual router. Considered VyOS. I liked the configuration of the system with hints of available options.\r\nSomewhere I found information that NixOS can also. Since then I have been using NixOS.\r\n\r\nP.S.: Sorry for use online-translate.','Y','Y','Y','Y','','','','Configure the system in one place.','Provides a hint of the available options for configuration.','-','-','I would come to the conclusion that it is necessary to create NixOS','','','','','','','while manual','','','Y','','-','-','I wish you development!'),(2262,NULL,1,'en','1815462837','A3','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2263,NULL,NULL,'en','1416528887',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2264,'1980-01-01 00:00:00',5,'en','1597598519','A5','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','Y','','Y','','Y','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Only used it seriously as part of NixOS.','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A1','A2','A3','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'The native package manager','A4','','','','','Y','','','','','','','','','','','','','','','','','','A3','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Seduced by the possibility of easily maintaining a (mostly) common configuration on multiple machines.','Y','','Y','','','','','nix, but for everything','','','Add: user-friendly solution(s) for applications needing FHS.\r\nRemove: systemd (yeah I know that\'s a stretch...)','Other Linux distributions and *BSD.','','','','','','','','','Y','','None (servers)','None','None',''),(2265,'1980-01-01 00:00:00',5,'en','842389477','A5','A5','male','','','Y','','','','Y','','','','Y','','','','','Y','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Last month, I decided to go for a fully declarative Linux system. I\'ve been using redhat and debian systems for over 20 years. I\'ve got a lot of workflows to port over to nix so I\'m doing it as a personal project on a slow burn. So far, it\'s been fun but frustrating at times. ','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A8','A4','A3','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A4','A9','A1','A21','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Googling for documentation on how to do something as basic as override a package version is not clear (see \"How do you extend NixPkgs\"). That should be the very first doc page after the install - how to edit a pkg version locally, test it, and (optionally) contribute it back. As it stands, I still don\'t know how to do that. I arrived at flakes which seem somewhat incompatible with nixpkgs. I think. It\'s confusing.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','see nix','Y','','','','','','','nixos-rebuild switch','fully declarative flake-based configuration','home config management','The hardest challenge so far is that every project needs lots of work to be ported from docker/bazel/conda/cmake/shell scripts -> flakes. I\'d love an \"eject\" button that would allow me to drop into a stateful debian virtual machine so I can get stuff done in a supported environment. Until then, I can\'t really rely on it for work because I don\'t get paid to solve Nix problems :-) ','Debian or some derivative.','Y','','','','','Y','','Y','','','','flakes, they really should be the default. or at least the encouraged route for a fully declarative system.','I basically ignore anything that uses nix-env or any imperative commands. If wanted to write long shell scripts, I\'d just keep using debian. AFAIC, nixos-rebuild switch --flake is pretty much the only command I plan to use.','Thanks! I love Nix - keep up the great work - hope to understand this thing well enough to contribute some day'),(2266,NULL,2,'en','1595283577','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','','','Y','','','','','','','','','','Y','','','','A2','A7','A9','','','','','','','','A5','A8','A6','','','','','','','','','','','','',NULL,'','A1','','','','Y','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2267,NULL,1,'en','1531978404','','','','','','','','','','','','','','','','','','','','','','','','','','','','Engineer, Security','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2268,'1980-01-01 00:00:00',5,'en','144571700','A2','A2','male','','Y','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Found nix as a tool for project dependencies management, gave it a try, can’t use anything else now','Y','Y','','','Y','','Y','Y','','Y','','','','','Y','Y','Y','','Y','','A3','A2','A1','','','','','','','','A9','A8','A12','','','','','','','','','','','','',NULL,'… guix? ;(','A7','','','','Y','Y','','','','','','','','Y','','','','','','Y','','','','A11','A13','A9','A15','A12','A1','','','','','','','','','','','','','','','','A11','A1','A12','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','Wanted to try full declarative systems after living nix','Y','Y','Y','Y','','','','Declarative services','X11 stuff from home manager works well','Rollbacks','Make it easier to run multiple instances of the same service','Arch Linux','Y','','','Y','','','','','','','Sway','sops-nix, the whole X2nix ecosystem','Nix non root ','Thanks for nix'),(2269,'1980-01-01 00:00:00',5,'en','1500732797','A5','A3','male','','','','','','Y','Y','Y','','','Y','','','','','','Y','Y','','','','','','Y','','','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','I definitely blame me being a new, but trying to install python packages I needed for work was something I couldn\'t get figured out.','','','Y','see above','','','','','','','Y','Nix and/or NixOS weren\'t something I was able to easily grasp.','','','','','Y','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'See previous page\'s form entries. I recently resumed using it, but not weekly yet and am very excited!','Mostly if any of my issues with nix get significant improvements! But I\'m already trying again.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None','Nix and NixOS are awesome projects. Thank you for your work and for putting this survey out there!'),(2270,'1980-01-01 00:00:00',5,'en','1622384273','A2','A3','-oth-','','','','','','','Y','','Y','Y','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I mostly wanted a package manager that would let me build my own packages from source. I used to use Homebrew because it was configured using Ruby instead of weird shell scripts, and Nix came with NixOS so when I started using NixOS I also ended up with Nix.','','Y','','Y','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A3','A4','','','','','','','','A5','A10','A3','','','','','','','','','','','','',NULL,'Linuxbrew for package management outside of the system packages and creating my own configurable packages.','A7','Y','','','Y','Y','','','','Y','','','','Y','','','','','','','','','','A15','A14','A1','A7','A12','A3','','','','','','','','','','','','','','','','A12','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I often just don\'t want to make the effort to publish my packages and modules in a way that is reusable for other people because I feel like nixpkgs has a high standard of quality. I am thinking of contributing a couple of packages though.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','I was looking for a distro I could install on my computer or on my server that would let me track all the small tweaks to the configuration I made over time.\r\nI often leave my laptops and servers alone for months at a time and then come back to make some changes, and before I used NixOS I would struggle to figure out what I\'d need to change to fix something or to add a service. Every so often I would distro-hop or just reinstall everything to have a clean slate.\r\nI decided to install NixOS on my laptop and, while it did take me a while to get comfortable with it, I never installed anything else on it.','Y','','Y','','','','','Declarative system configuration that can be checked into source control','Packaging my own software easily and in a first-class way along with the rest of the system','Building a server\'s configuration on another computer and not letting me deploy it there\'s any errors','- Less bash scripts (I don\'t know exactly what I would replace them with)\r\n- Add a type system to the Nix language (Nickel looks nice!)','Probably Fedora or Arch on my computers (because they have up-to-date packages), something like Docker for servers I guess?','Y','','','','','','','','','','Hyprland','home-manager','',''),(2271,'1980-01-01 00:00:00',5,'en','1562070893','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A3','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','Y','','','A7','A15','','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','PRs often get no response from maintainers','N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2272,'1980-01-01 00:00:00',5,'en','1752790180','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','Y','Y','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A3','','','','','','','','A8','A12','A6','','','','','','','','','','','','',NULL,'Homebrew','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','The nix language','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A4','A co-worker of mine showed his laptop running NixOS to me and he kept telling about all the advantages. I tried it and got totally stuck, removed and didn\'t look back until a year later. It took a few more tries before I confortably let a system run NixOS for my daily tasks.','','','Y','','','','','Declarative configuration','Native services (Radarr, Sonarr, etc)','Reproducible upgrades','Remove the nix language, it\'s really hard to ramp up on it.','Fedora with homebrew','Y','','','','Y','','','Y','','','','Devbox and devenv, both are awesome.','',''),(2273,'1980-01-01 00:00:00',5,'en','1101525664','A5','A4','male','','','','','','','','','','','Y','','Y','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','I was attracted to the idea of a package manager where it was possible to upgrade one package without affecting any others.','Y','Y','','','','','Y','Y','','','','','','Y','Y','','','','','','A1','A2','A10','','','','','','','','A14','A5','A9','','','','','','','','','','','','',NULL,'Homebrew','A1','','','','','Y','','','','','','','','','','','','','','','','','','A13','A21','','','','','','','','','','','','','','','','','','','','A8','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'N','N','Tutorials that made me confident that I would be able to both set up and maintain a NixOS server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lorri','',''),(2274,NULL,1,'en','1498392853','A8','A2','fem','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2275,NULL,2,'en','254603572','A2','A4','male','','Y','','','','','','','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','N','N','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2276,'1980-01-01 00:00:00',5,'en','224296315','A5','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','It was being used at work for dev environments, inspired me to install NixOS as main OS on my personal computer','','','','','','','','Y','','','','','','Y','Y','','Y','','','','A2','A3','A7','','','','','','','','A14','A8','A5','','','','','','','','','','','','',NULL,'painfully maintained bash scripts','A4','','','','Y','','','','','','','','','','','','','','','','','','','A11','A2','A5','A15','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I have once or twice. I don\'t know how to make a new package from scratch.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Installed it on my main home computer to better learn nix','Y','','Y','','','','','declarative setup','easy adhoc experiments','rollbacks','','ubuntu','','','','','','','','','','Y','','','','You\'re doing great!'),(2277,'1980-01-01 00:00:00',5,'en','897336038','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','','','','','Y','','','','','','','','Y','','Y','','','','A2','A10','A1','','','','','','','','A14','A8','A9','','','','','','','','','','','','',NULL,'Docker et al ','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A13','','','','','','','','','','','','','','','','','','','','A8','A13','A15','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I don’t get any benefits from upstreaming and the community seems unfriendly based on the GitHub issues and pull requests I see ','N','N','If I could easily use a VM or cross compile a cloud AMI/Droplet ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','The documentation is horrible. I just use ChatGPT when I have questions ',''),(2278,NULL,2,'en','1026905822','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I saw a friend using it and decided to try it','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A7','A1','A9','','','','','','','','A13','A14','A8','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2279,'1980-01-01 00:00:00',5,'en','989678037','A1','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A7','I thought it will be useful for making development environments.','','Y','','','','','Y','','','','','','','','Y','','','','','','A1','A9','A2','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Linux distro package manager and specific developer tools','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I\'m still learning ','N','N','runit init system support ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2280,'1980-01-01 00:00:00',5,'en','1071921922','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A2','A1','','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A5','A1','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','','','','','','Y','','Y','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(2281,'1980-01-01 00:00:00',5,'en','1626289554','A5','A3','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A6','A9','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','river','','',''),(2282,'1980-01-01 00:00:00',5,'en','1350265259','A1','A3','male','','','','','','','','','','Y','','','','','','','','Y','','','','','','','','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Lack of documentation. Difficult to understand the Nix language.','Use the existing markup language (yaml, json, xml...) instead of inventing a new one.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Flakes and Home manager.',''),(2283,NULL,1,'en','972356173','A6','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','hardware engineer ','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2284,NULL,NULL,'en','431492880',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2285,NULL,2,'en','1978085571','A5','A4','male','','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','Y','Y','Y','','','','Y','Y','','','','','','Y','Y','','Y','','','','A7','A1','A2','','','','','','','','A13','A4','A3','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A15','A2','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2286,NULL,NULL,'en','253331748',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2287,'1980-01-01 00:00:00',5,'en','1919561062','A5','A4','male','','','Y','','','','','','','','Y','','','','','','Y','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Love declarative config.','','Y','','','','','Y','Y','Y','','Y','','','Y','Y','','Y','Y','','','A2','A1','A7','','','','','','','','A5','A8','A3','','','','','','','','','','','','',NULL,'Guix','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A2','A1','A17','A15','A25','','','','','','','','','','','','','','','','A17','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Time','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started using Nix, soon wanted it for the whole machine.','Y','','Y','','','','','Stability','Easy upgrades & rollback','Package selection','Better docs','Guix','Y','','','','','Y','','Y','','','Sway','','',''),(2288,'1980-01-01 00:00:00',5,'en','1062076402','A5','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','','','','','','Y','Y','Y','Y','','','','','Y','Y','Y','','','Nixos generators','A2','A7','A3','','','','','','','','A8','A12','A2','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','Y','','','','','Y','','','','','A3','A24','A15','A2','','','','','','','','','','','','','','','','','','A24','A23','A25','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','','','Module system','Rollbacks, version control','Reproduceability','','Debian','Y','','','','Y','','','Y','','','','Nixos generators\r\nNumtide devshells\r\nFlake-parts\r\nSops-nix','Niv - replaced with flake.lock',''),(2289,'1980-01-01 00:00:00',5,'en','1929923885','A3','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was looking for functional alternatives in devops, since the infrastructure world sucks','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','Y','','A2','A3','A7','','','','','','','','A13','A8','A6','','','','','','','','','','','','',NULL,'Guix/Guile','A1','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A12','A13','A2','A1','A15','A20','A6','A3','','','','','','','','','','','','','','A12','A6','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I was memed into it and started enjoying it unironically','Y','Y','Y','','','','','Declarative setup','Flakes','Rollbacks','Better tooling for managing large fleets of servers in a cloud-agnostic way','Guix','Y','','','Y','','','','Y','','','Sway','home-manager\r\ndevenv','Nixops',''),(2290,'1980-01-01 00:00:00',5,'en','441374575','A5','A2','-oth-','','','','','','','','','','','Y','','','','','','Y','','','','','','','Y','','','Y','','','','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Initially through NixOS, but as a development tool it started when I really didn\'t want to install a specific version of Python and learned how to write a shell.nix to have it when I needed it.','','Y','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A2','A3','A7','','','','','','','','A8','A2','A12','','','','','','','','','','','','',NULL,'Standard, language-specific tools. Maybe Bazel.','A5','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A15','A13','A1','A3','A9','','','','','','','','','','','','','','','','A1','A2','A13','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','An attempt at reproducibility after losing everything in a hard drive failure on my home server.','Y','','Y','','','','','Declarative','Rollbacks','Deployments','Built-in support for ephemeral root storage','Debian and Ansible','Y','','','Y','','','','Y','','','','Cachix','',''),(2291,'1980-01-01 00:00:00',5,'en','1637534300','A5','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','','Y','','','A1','The promise of reproducibility and rollbacks. I love the idea of slowly building up my work environment and services and polishing it over time. Similar to why I use Emacs.','','Y','','','','','','Y','','','','','','Y','','','Y','','','','A7','A10','A9','','','','','','','','A14','A5','A9','','','','','','','','','','','','',NULL,'Ubuntu, probably.','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I find the documentation and learning resources difficult to follow or out of date. It\'s been hard to wrap my head around the concepts.','N','Y',NULL,'I was struggling configuring my laptop to a usable state. I ended up wiping it, putting arch on it, and just installing Nix','I\'d love to use NixOS again when I feel confident with Nix. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','I love you <3'),(2292,'1980-01-01 00:00:00',5,'en','1571323761','A8','A3','male','','','','','','','','Y','Y','','','Y','','','','','','Y','','','','','','','A/V/Kinetics Artist','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was attracted by the ability to declare native, reproducible, system installations for our large-scale A/V artworks and installations. Today, I continue to use it at work for distribution of our language and ecosystem tooling.','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','Y','','A2','A7','A9','','','','','','','','A2','A12','A8','','','','','','','','','','','','',NULL,'I\'d make something like Nix, perhaps with a nicer language like nickel, tackle CA early with enabling distributed caching in mind.','A7','','Y','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A13','A4','','','','','','','','','','','','','','','','','','','A15','A13','A4','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Fully declarative systems for A/V artworks and installations. Continued use for server management and package/language/dev-environment distribution at work.','Y','Y','Y','Y','','','','Declarative Configuration','Reproducibility','Cache-ability','Most changes I\'d make would be with Nix itself, e.g. better distributed caching and content addressing, stabilized flakes and nix command, full support for a better language like Nickel, etc.','Arch or macOS with Nix.','Y','','','','','','','Y','','','','Cachix, though I\'d prefer some way of doing distributed, trusted caching (e.g. using IPFS or iroh).\r\n\r\nnil (nix language server) from oxalica.\r\n\r\nagenix for securely managing secrets during deployment.','morph, colmena - I found it easier (and useful for learning) to use nixos-rebuild directly.\r\n\r\nrust-overlay from mozilla - I switched to oxalica\'s rust-overlay. Ideally something like this would be integrated in nixpkgs directly.\r\n\r\n','I love Nix! Thanks so much for all your work on it <3'),(2293,NULL,NULL,'en','1283651353',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2294,'1980-01-01 00:00:00',5,'en','1154570159','A5','A3','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A2','A3','A10','','','','','','','','A4','A5','A3','','','','','','','','','','','','',NULL,'Guix','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A3','A15','A1','A22','','','','','','','','','','','','','','','','','A2','A15','A1','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(2295,NULL,NULL,'en','535311963',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2296,'1980-01-01 00:00:00',5,'en','583438804','A1','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A7','my mate raves about it so giving it a go','Y','','','','','','Y','Y','','','','','','','','','Y','','','','A1','A2','','','','','','','','','A5','A8','A14','','','','','','','','','','','','',NULL,'homebrew','A1','','','','','','','','','','','','','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2297,NULL,1,'en','1893610736','A5','A3','male','','Y','','','Y','','','','Y','','','','','','Y','','','Y','','','Y','','Y','','','Y','Y','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2298,NULL,1,'en','231254748','A1','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2299,NULL,NULL,'en','2108166619',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2300,'1980-01-01 00:00:00',5,'en','1277105552','A5','A3','male','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking for a better way to manage dotfiles, and that led me to Nix and NixOS.','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','Y','','A7','A1','A10','','','','','','','','A6','A14','A8','','','','','','','','','','','','',NULL,'Guix maybe?','A1','','Y','','Y','Y','','','','','','','','','','','','','','Y','','','Cirrus CI','A7','A24','A1','A23','','','','','','','','','','','','','','','','','','A7','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I wanted a better way to manage my home servers. I used to use Ubuntu but was frustrated with reproducibility.','','Y','Y','','','','','Reproducibility','Cached binaries','Developer environments','First class support for secrets! Please!','Ubuntu and Puppet, I think.','Y','','','Y','','','','','','','','digga','NixOps. I ran into so many bugs (that I reported) and issues with AWS deployments.',''),(2301,'1980-01-01 00:00:00',5,'en','1169689874','A6','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','N','N','','','Y','','Documentation and Books',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'Lack of documentation','Yes, If good beginner resources are available',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None',''),(2302,NULL,1,'en','1928020936','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2303,NULL,0,'en','1369648329','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2304,NULL,NULL,'en','1134592638',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2305,'1980-01-01 00:00:00',5,'en','604301848','A5','A4','male','','','','','','','','','','','','','','','','','','Y','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I wanted a reproducible OS but I didn\'t want to use Ansible','Y','Y','','','','','Y','Y','Y','','','','','Y','Y','Y','Y','','Y','','A1','A2','A10','','','','','','','','A8','A14','A4','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A1','A3','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A2','','I have contributed some but it is not enough for me to say I contribute to nixpkgs.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I started with Arch but it was not stable and eventually broke. I switched to Linux Mint for several years so I could focus on developing and not being my own sysadmin. Eventually I wanted to look at something with more control again and something I could deploy easily and quickly if my OS broke. While searching around on the internet I saw some people talking about Ansible + Arch, but in that same discussion somebody mentioned NixOS and I was instantly hooked.','Y','Y','Y','','','','','A declarative OS','Easy roll backs','','','Some flavor of Linux','','','','','','','','','','','Sway','','',''),(2306,'1980-01-01 00:00:00',5,'en','1060573225','A5','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','','','','A2','A6','A7','','','','','','','','A6','A12','A10','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','Y','','Y','','','','Y','Y','','','A15','A9','A22','A26','A4','A3','A1','','','','','','','','','','','','','','','A15','A22','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','Y','Y','','Y','','','','','','','Y','','','','','Y','','','','','sway','','',''),(2307,'1980-01-01 00:00:00',5,'en','1017362539','A8','A3','male','','','','','','','','','','Y','','','','','','','Y','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Customising my dev environment without making it fragile (to great success)','Y','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A6','A1','A2','','','','','','','','A8','A4','A6','','','','','','','','','','','','',NULL,'Probably a mixture of ansible, bash, and gnu stow ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A17','A15','A25','A2','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I tried a couple times, but not especially hard, there was a nodejs build script that failed after 4 hours? This wasn’t documented anywhere. It’s hard to know where to start, so much convention seems unwritten.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Reproducibility','Y','','Y','','','','','Being able to commit config for a whole machine into git ','Rollbacks via boot loader if I break something','ZFS support ','Convert all nix lang to nickel ','Arch with a bunch of scripts, maybe ansible to','Y','','','','','','','','','','Sway','','I tried to use nix on nixos on a server as a replacement for docker and docker compose. Rebuild switch times got really long really fast, and the services in nixpkgs are really hard to configure, poorly documented, and inconsistent. Have gone back to docker compose','I love nix, can’t wait until it’s more mature so I can recommend it to friends'),(2308,'1980-01-01 00:00:00',5,'en','1731579685','A5','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A1','','','','','','','','','A5','A3','','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','Y','','','','A11','A1','A5','A10','','','','','','','','','','','','','','','','','','A11','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','','Y','Y','','','','','','','','','Y','Y','','','','','','','','','Xmonad','','',''),(2309,NULL,1,'en','1029639734','A5','A2','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2310,NULL,2,'en','2141998224','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2311,'1980-01-01 00:00:00',5,'en','859080048','A5','A4','male','','Y','','','Y','','Y','Y','','','','','','','','Y','','','','','Y','Y','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','','Y','','','Y','Y','Y','','','','','','Y','Y','Y','','','','A1','A3','A2','','','','','','','','A5','A8','A12','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A2','A4','A3','A5','A12','A1','A14','A13','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I dont understand the idioms, rules and expectations.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','','','','','Declarative setup','','','','','','','','','','','','','Y','','wmii','','',''),(2312,NULL,NULL,'en','50364134',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2313,'1980-01-01 00:00:00',5,'en','2024374916','A5','A3','male','','','','','','','Y','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','fell into it through home-manager as a way to more robustly keep my shell environments in sync between work and personal machines. fell deeper and deeper into the rabbit hole, dragging a few other coworkers along with me. hit the \"no turning back\" point of installing NixOS on a personal laptop in early 2020 or so.','Y','Y','','','','','Y','Y','Y','Y','','','','','Y','','Y','','','','A2','A8','A7','','','','','','','','A5','A3','A8','','','','','','','','','','','','',NULL,'Dockerfiles','A7','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A1','A24','A25','','','','','','','','','','','','','','','','','','','A1','A24','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Lack of documentation and no pressing need for a package that hasn\'t already been contributed to the package index.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Tired of configuration hell. Already liked home-manager. No-brainer to try NixOS, have never looked back.','Y','','Y','','','','','Declarative configuration','nixops','atomic rollbacks','Hm, I\'m pretty satisfied overall---I think the gnome configuration story was a little busted due to a recent major version change on the gnome side, but I don\'t blame NixOS for that. I would like to understand better how to log system errors (have been dealing with random total system shutdowns that I haven\'t been able to diagnose)---so I guess my magic wand would be to suddenly add better documentation.','Guix, i guess...?','Y','Y','','','','','','Y','','','','I\'m glad flakes allowed me to avoid niv. I use direnv in every project, both personal and professional.','None! I\'ve been well satisfied with what I\'ve tried so far.',''),(2314,NULL,1,'en','1991199506','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2315,NULL,2,'en','1371904866','A2','A4','male','','','','','','','','','','','','','','','','','','','','','','','','Y','IT Support, Entry Level','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','Y','','','Y','Y','','','','','','Y','Y','','','','','','A2','A3','A7','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'Plain Debian, more containers, FS level snapshots','A4','','','','','','','','','','','','','','','','','','','','','','','A9','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2316,'1980-01-01 00:00:00',5,'en','497666979','A2','A4','male','','','','','','Y','Y','','','','','','','','','Y','','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I\'ve joined a company that was developing a network security application that needed incredibly complex environments for testing and development. They were using Nix to manage all that and I was able to read through the code and understand and change it all by myself as someone that didn\'t know Nix before. This contrasted with the rube-goldberg nightmares I had encountered in much simpler systems before, so it was mostly love at first sight for me. With Nix(OS) I feel like the OS and the whole open source ecosystem is just a runtime for my code.','Y','Y','','','Y','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','','','A1','A2','A9','','','','','','','','A11','A8','A3','','','','','','','','','','','','',NULL,'docker','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A13','A1','A2','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','When I reflect on why I don\'t contribute back things I package with Nix, I see the following reasons:\r\n* I don\'t know the best practices for nixpkgs, what sort of testing is needed/what platforms to target and how etc. Feels like screaming into a void not knowing who\'s on the other side.\r\n* For brand new packages, I don\'t know what belongs in nixpkgs (plus the previous point).','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A3','I\'ve started using NixOS as an extension of my Nix journey. If I\'m in full control of a software environment, I opt for NixOS to get the smoothest experience with the rest of my Nix stack.','','','','Y','','','','The wide collection of existing modules ','Easily defining my own modules building on top of the existing ones','The wide range of ways in which I can deploy a NixOS system and the architectural patterns this allows.','','Ubuntu, most probably ','Y','','','','','Y','','','','','','devenv, terranix, haskell.nix','','I love Nix!'),(2317,NULL,NULL,'en','1493131054',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2318,NULL,NULL,'en','567684318',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2319,NULL,1,'en','1321591563','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2320,'1980-01-01 00:00:00',5,'en','133375848','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Because some of my favorite packages were missing from the repos.','','Y','','','','','Y','','','','','','','','','','Y','','','','A1','A7','A10','','','','','','','','A8','A4','A10','','','','','','','','','','','','',NULL,'I would Arch or Gentoo with Homebrew','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A25','A3','A2','A15','A17','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Nix as language being a mess','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','','','','','','Rollbacks','Immutability','Flakes','I would add better support for V','Arch or Gentoo','Y','','','','','','','','','','I3','None','Deploy-rs',''),(2321,'1980-01-01 00:00:00',5,'en','1149436015','A6','A5','male','','','Y','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','','','','','','Y','Y','','','','','','','Y','','Y','','','','A7','A2','A10','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'Debian','A4','','','','Y','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','Debian','','','','','','','','','','','sway','','',''),(2322,NULL,2,'en','414020839','A2','A4','male','','','','','','Y','Y','Y','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','','','','A2','A7','A10','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A3','A4','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2323,NULL,1,'en','92412401','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2324,NULL,1,'en','1761986276','A5','A3','fem','','','','','','','','Y','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -INSERT INTO `limesurvey_survey_2023` VALUES (2325,NULL,NULL,'en','1660330764',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2326,NULL,1,'en','1708430312','A3','A3','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y','Y','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2327,NULL,NULL,'en','1014508678',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2328,'1980-01-01 00:00:00',5,'en','1247130770','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','Y','','','A7','A2','A1','','','','','','','','A8','A5','A13','','','','','','','','','','','','',NULL,'GNU guix','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','','Y','','','','','','','','','','','','Y','','','','','','','','Y','','','','',''),(2329,NULL,NULL,'en','1588810795',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2330,'1980-01-01 00:00:00',5,'en','862109588','A5','A4','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','','Y','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A8','A3','A13','','','','','','','','','','','','',NULL,'Guix','A7','','','','Y','','','','','','','','','','','','','','','','','','','A15','A2','A3','','','','','','','','','','','','','','','','','','','A15','A2','A9','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','','','','','','Y','','','','','','','','','','i3','','',''),(2331,'1980-01-01 00:00:00',5,'en','309230963','A2','A4','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','Y','','','','','Y','Y','','','','','','','','','Y','','','','A1','A2','A3','','','','','','','','A5','A6','A4','','','','','','','','','','','','',NULL,'Arch Linux','A2','','','','','','','','','','','','','','','','','','','','','','','A15','A2','A4','A3','A10','A17','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','Declarative configuration','Atomic updates & rollbacks','Possibility to have root on tmpfs','','','Y','','','','','','','','Y','','','','',''),(2332,'1980-01-01 00:00:00',5,'en','1723561450','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','Y','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','ops/ci','A3','hated docker, also home-manager on nixos lets me manage my multiple personal machines','Y','Y','','','Y','','Y','Y','Y','Y','','Y','','Y','Y','Y','Y','Y','','','A1','A8','A2','','','','','','','','A13','A9','A14','','','','','','','','','','','','',NULL,'custom sync scripts, shell','A4','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','confidence of using the nix language','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','ci','A4','curiosity & liking the concept','Y','Y','Y','Y','','Y','','determinism/reproducability','easy of use for dev environments','','better docs expkaining from the ground up','shell, custom sync','Y','','','','','Y','','','','','i3','','',''),(2333,'1980-01-01 00:00:00',5,'en','1487296532','A2','A3','male','','','','','','Y','Y','','','','Y','','','','','','','','','','','','','','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was looking for a way to manage config files and after several iterations came upon home manager ;)','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','','Y','','','','A1','A2','A7','','','','','','','','A9','A4','A5','','','','','','','','','','','','',NULL,'Mixture of Ruby, Bash, Puppet and ArchLinux (for AUR instead of nixpkgs)','A1','','','','Y','Y','','','','','','','Y','','','','','Y','','Y','','','','A7','A2','A1','','','','','','','','','','','','','','','','','','','A20','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A3','I wanted to go back to Linux as Dev machine, found out about Framework laptop. Fedora installer gave up so I tried out NixOS and it worked fine :)','Y','','Y','','','','','Atomic rollbacks','Safety of experimentation','User-installable software','Improve errors and finish lanzaboote project ;d','Arch?','Y','','','','','','','','Y','','','devshell','devbox','Love Nix <3 Solves a very unique set of problems and is very malleable - I recenty migrated dev setup from Docker to nix with s6 and all devs praised it - because now its fully local and native - even on M1.'),(2334,'1980-01-01 00:00:00',5,'en','1232279869','A2','A4','male','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A6','A1','','','','','','','','A6','A8','A12','','','','','','','','','','','','',NULL,'Guix','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A4','A2','','','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','declarative configuration','rollback','','','Guix','Y','','','','','','','','','','i3wm','home-manager','','Nix is awesome!:)'),(2335,'1980-01-01 00:00:00',5,'en','1824949734','A6','A2','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','N','N','Y','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','I\'m just want to make my system easy to build.\r\nI want stable and daily usage system without breaking anything.\r\nIf i want to reinstall i don\'t want to spend time on install apps and services.\r\nMy settings/Configurations should be easy to access anytime if my system breaks.\r\nI want to steal other people\'s Config with reproducible build.\r\nI want to create environment for different development and disable if I\'m not developing.\r\nI want to switch like a mode, gaming mode(only games), development mode(only develop) in single system(don\'t know how to achieve). \r\nDocumentation is mess, i don\'t how to achieve above. but i know it is possible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'i want to use nix develop for flake.\r\nit should create environment for my whole system like nginx, programming language and all.','','Please make some easy to understand things better in NixOS.\r\nnew comer will feel very difficult to understand things.\r\nI have been facing so many issues, because error message is not understandable.\r\nand Thank you making this amazing OS for solving so many issues in linux world'),(2336,'1980-01-01 00:00:00',5,'en','272375848','A7','A2','male','','','','','','','Y','Y','','Y','Y','','Y','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','','Y','','','','','Y','','','','','','','Y','Y','Y','','','','','A2','A6','A9','','','','','','','','A8','A14','A5','','','','','','','','','','','','',NULL,'chroot jails\r\n','A1','','','','Y','Y','','','','','','','Y','','','','','','','Y','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','N','Y',NULL,'difficulty','the promise of nix\r\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','nix good. but nix complex and not easy to learn.'),(2337,NULL,NULL,'en','1036688398',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2338,'1980-01-01 00:00:00',5,'en','1961156002','A2','A3','male','','','','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','All personally owned computers run NixOS','A1','Liked the idea for years. Pulled the plug when Arch blew up with the driver issue and NixOS had fixed a different driver issue which was blocking me.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'Arch with scripts to install packages from a list and and set it up.','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','Haven’t got to it yet.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','','','','','','','','','Make the consequences of enabling options more clear. Sometime I feel like there is action at a distance. Not a very big deal so far, though.','','Y','','','','','','','','','','I3','','',''),(2339,'1980-01-01 00:00:00',5,'en','1401728878','A2','A3','fem','','','','','Y','Y','Y','','','','','','','','','','','Y','','','','','','','','Y','Y','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','please resolve the split about using flakes vs not using flakes. there shouldnt be multiple ways. you\'ll end up like the madness of python packaging :P',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','nix/nixos is cool, with better docs i want to test it'),(2340,NULL,NULL,'en','761736534',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2341,'1980-01-01 00:00:00',5,'en','1669658749','A2','A4','','','','','','','','Y','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Liniux Unplugged from JupiterBroadcasting has several Nix enthusiasts on staff. I tried NixOS for myself to see what the fuss was about and now I have it running on 3 servers and my girlfriend\'s desktop.','','Y','','','','','Y','Y','','Y','','','','Y','','','Y','','','','A2','A1','A7','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'Probably Ansible.','A5','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A10','A1','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I am just starting out with making packages; the documentation could be improved to improve onboarding.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Linux Unplugged is a podcast by JupiterBroadcasting- they talk about Nix & NixOS a lot. I loved it on my servers and now my girlfriend\'s computer is testing the desktop side for me.','Y','Y','Y','Y','','','','Declarative configuration','Atomic rollbacks','Relatively big package ecosystem','I\'d love for all NixOS documentation resources to be unified into one extensive resource that would challange Arch\'s documentation. Maybe a few tiers (beginner/enthusiast/professional)?','Ubuntu on the server and Arch on the desktop.','Y','','','','','','','','Y','','','','','I appreciate your work.'),(2342,NULL,NULL,'en','964098248',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2343,'1980-01-01 00:00:00',5,'en','1216457611','A2','A4','male','','','','','','Y','Y','Y','Y','Y','Y','','Y','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','NixOS looked like something interesting and actually thought through, so I installed it on a seconday machine and started learning Nix as a way to configure NixOS and home-manager. It did not hurt that it provided most of the benefits of Gentoo Linux without the time requirements.\r\n','','Y','','','','LXC Containers on Proxmox','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A6','','','','','','','','A4','A8','A3','','','','','','','','','','','','',NULL,'Debian','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A11','A15','','','','','','','','','','','','','','','','','','','A11','A15','A4','','','','','','','','','','','','','','','','','','','','Y','','','A2','','The one patch to an existing module I sent to nixpkgs ended up merged, but it took way too long to keep track of it.\r\nEven with posting to discourse as ready to review.\r\n\r\nMultiple people reviewed it (all without commit access), and some time later finally someone with commit access reviewed it and found things to change that earlier reviewer considered ok.\r\nThat is _not_ criticism of the reviewer with commit access, the code in Nixpkgs should be as good as possible!\r\nIt is just that having to rework a patch after \"passing a review\" and few weeks passing to forget most of the context of the patch does not make contributing that enjoyable.\r\n\r\nAny chance of making module maintainership somewhat more prominent ? e.g. see review queue for a module ? at the momemt it is almost impossible to find what other pull request for given module are in the pipeline...','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Started using NixOS \"before\" Nix, or more likely learned Nix to be able to configure NixOS and home-manager.\r\nThe ability to have more or less immutable /etc and other config files is impressive.','Y','','Y','','','','','easily reboot to previous configuration','nixos-rebuild (with flakes)','home-manager configuration as part of machine\'s configuration','Ability to run on Illumos kernel','Debian','Y','','','','','','github.com/numtide/terraform-deploy-nixos-flakes','','Y','','','https://search.nixos.org/options\r\nhttps://search.nixos.org/packages\r\n\r\nif there is some TUI / GUI application that provides that functionality locally, it is well hidden and not discoverable.','non-flake configurations, it was hard to reason about it. even as beginner the experimental flakes were much easier to learn','It would be great if there were something like NixOS Weekly used to be (the occasional summary send by discourse is not really enough),\r\nideally NixOS + Nix in one newsletter.\r\n\r\nSee what is going on - which files / parts of the tree have most pull requests in the queue, which pull requests are looking for testers, etc... it is currently rather hard to figure out where to _effectively_ help.\r\n\r\nAlso JVM languages (or mixing of languages) support is not that great, e.g. still have not figured out how to use nix flake to build Scala Play application (using sbt build tool) that also builds JavaScript frontend as part of the build (i.e. sbt calls to npm or some other flavor-of-the-month javascript build tool using a sbt plugin).\r\nIt probably is possible, just not documented. There is a chain of archived almost working repositories of \"build language X app using Nix\" abandoned in favor of just-created \"build language Y or Z app using Nix\" repositories.\r\n\r\nNewsletter would be great for that - i.e. get notified when default/recommended tools changed. The Wiki is great, but still small.\r\n\r\nAnd of course, thanks to everyone working on NixOS/Nix, given the software landscape today, NixOS still seems like something borrowed from the future.'),(2344,'1980-01-01 00:00:00',5,'en','1806637775','A2','A3','male','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I switched from Arch linux to NixOS because of the following reasons:\r\n- I wanted a reliable system for real-time sound synthesis allowing me to experiment without breaking the whole system (trying pipewire, switching back to jack, etc). NixOS was attractive because of the musnix project (for having real time audio without the need to tweak much) and because of its rollback feature.\r\n- Alongside the stability for audio, I desired up-to-date packages for the rest of my system.\r\n- Intellectual curiosity motivated me to explore Nix and its inner workings.\r\n- I was interested in researching the potential benefits of using Nix for packaging libre games in a distribution-agnostic manner.','','','','','','just NixOS','Y','','','','','','','','Y','Y','Y','','','','A5','A1','A3','','','','','','','','A3','A5','A14','','','','','','','','','','','','',NULL,'Guix','A2','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','A1','A6','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I switched from Arch linux to NixOS because of the following reasons:\r\n- I wanted a reliable system for real-time sound synthesis allowing me to experiment without breaking the whole system (trying pipewire, switching back to jack, etc). NixOS was attractive because of the musnix project (for having real time audio without the need to tweak much) and because of its rollback feature.\r\n- Alongside the stability for audio, I desired up-to-date packages for the rest of my system.\r\n- Intellectual curiosity motivated me to explore Nix and its inner workings.\r\n- I was interested in researching the potential benefits of using Nix for packaging libre games in a distribution-agnostic manner.','Y','','','','','','','Nixpkgs availability.','Reproducible configuration. Knowing that I can go back to any previous state.','Nix develop/Nix shell. Being able to start a developing environment for a certain package.','# nixpkgs\r\n## Better nixpkgs testing\r\n\r\nAs a desktop user I found that many packages were broken (in NixOS, not upstream) and even had been broken for years and nobody noticed.\r\nSometimes regressions are introduced by the bot that automatically upgrades packages which is not ideal.\r\n\r\n## Stricter licensing information in nixpkgs\r\n\r\nThe accuracy of licenses in nixpkgs is very hit and miss. It would be nice to have a stricter process like Debian\'s especially for packages that are tagged as free but are really non-free or have some non-free components.\r\n\r\n# nix develop\r\n\r\n- Being able to call the phases in a more streamlined way. \r\n- Some kind of wrapper for creating a customized package. You can write a patch and have an overlay. You can have a directory with your own source and add that package. The process for changing a piece of software could be wrapped in a nicer way. nix fork software. Change source. nix ??. Now you have the package with your changes.\r\n\r\n# Programatic changes for configuration.nix\r\nRight now the process of configuring your system is very manual. Some of those actions could be wrapped in commands. For example if you want to install a program, it\'s really just adding an entry to a list, there\'s no need to do this manually.\r\n\r\n# Magic\r\nMany times being a NixOS user turns into being a package maintainer/developer. I want to be able to try software on the internet which isn\'t on nixpkgs without dealing with packaging pains, especially for software which has a non standard build system (or a non-standard use of a standard build system). Sometimes it\'s possible to work around the packaging hell by just building it locally in a shell but even that is an annoying process (figuring out all of the dependencies and the names of the packages to use in the shell).\r\nMore tools that figure out the dependencies. More tools that create packages automatically. Maybe something intermediate like having a meta-packages that group common dependencies.\r\n\r\n# Github\r\nOpen source projects shouldn\'t be relying on Github. Nixpkgs being on Github isn\'t ideal and forces anybody who values software freedom to either not contribute to nixpkgs or use github reluctantly.','Arch Linux or GuixSD (maybe, I haven\'t tried it yet)','Y','','','','','','','','Y','','','','',''),(2345,NULL,-1,'en','129979109','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2346,'1980-01-01 00:00:00',5,'en','1679420452','A2','A2','male','','','','','Y','','Y','Y','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','Y','','','','Y','','','Y','Y','Y','Y','','','A2','A6','A7','','','','','','','','A8','A9','A6','','','','','','','','','','','','',NULL,'','A1','','Y','Y','Y','Y','','','','Y','','','Y','','','','','Y','','','','','','A15','A1','A18','A2','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','Y','','Y','','','','','','','','','','','','','https://github.com/CertainLach/fleet','','Y','','','','',''),(2347,NULL,NULL,'en','1775244990',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2348,'1980-01-01 00:00:00',5,'en','817868471','A8','A4','male','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','Wanted to have reproducible, easy to provision toolchain so that we could have reproducible environment.','','Y','','','Y','','Y','','Y','','','','','','Y','','','Y','','','A1','A3','A8','','','','','','','','A9','A14','A5','','','','','','','','','','','','',NULL,'Guix or would rolly own for a small set of packages','A1','','','','','Y','','','','','','','','','','','','','','','Y','','','A2','A1','','','','','','','','','','','','','','','','','','','','A1','A7','','','','','','','','','','','','','','','','','','','','','','','I don\'t ','A2','','I haven\'t needed to, all packages I need are there','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N/A','N/a','Nix is really amazing but quite complicated. It provides great benefits but the learning curve is steep and understanding how it works is for only the most technical of developers. We get a lot of value from it at work, but almost no one understands what it is or how it works!'),(2349,'1980-01-01 00:00:00',5,'en','2074619936','A2','A3','male','','','Y','','','','Y','Y','Y','Y','Y','','','','','Y','','Y','','','','','','Y','','','Y','Y','','','','N','N','','','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2350,NULL,NULL,'en','107024703',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2351,NULL,1,'en','1779091605','A2','A6','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2352,'1980-01-01 00:00:00',5,'en','1270390433','A2','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','When I was tinkering with Linux a lot, I\'d often end up with an unbootable system. I didn\'t want to choose between a stable system or rapid iteration and experimentation though, and NixOS is the only operating system I know that let\'s you have both.\r\n\r\nI was also frustrated with the state of developer tooling, and still am. In 2023 it\'s still really hard to provide a reproducible developer environment for each project that doesn\'t require you to install lots of tools globally or develop from inside a Docker container. Nix flakes plus devShells are perfect for this.\r\n\r\nI want to mention specifically that, in my line of work, using Nix to build actual applications is the area where Nix is _least_ useful to me. Javascript and Python are so messy, that adding yet another abstraction layer on top of that ended up being more pain than gain in all cases I\'ve seen so far.','Y','','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A6','','','','','','','','A15','A13','A4','','','','','','','','','','','','','Develop the ecosystem. Want to build an application written in Python? The Wiki page (https://nixos.wiki/wiki/Python) is a mess. One of the most prominent tools https://github.com/DavHau/mach-nix is unmaintained and the other (https://github.com/nix-community/dream2nix) is highly experimental. The situation for Javascript is arguably even worse, since there are so many competing solutions.\r\n\r\nhttps://github.com/NixOS/npm2nix -> use https://github.com/svanderburg/node2nix\r\nor maybe https://github.com/nix-community/npmlock2nix/ is better? This seemingly basic requirement (https://github.com/svanderburg/node2nix/issues/202) is still open. How about https://github.com/nix-community/napalm\r\n\r\nhttps://github.com/nix-community/yarn2nix is part of Nixpkgs so I guess that\'s the blessed tool? Actually https://nix-community.github.io/dream2nix/subsystems/node.html also has a NodeJS sub-system.\r\n\r\nI don\'t need help building Go or Rust applications since those already have a really good build & packaging story on their own. I do need help with JS and Python since those are a mess but unfortunately that also makes it so much harder to build Nix tooling for these languages.','A mix of Docker containers and README instructions on which software to install to manage project environments.\r\n\r\nArch Linux for my desktop computer and just hope that things don\'t break and \"git gud\" at debugging from a USB stick.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A2','A13','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I like tinkering with Linux and NixOS is the only OS that let\'s me do so without worrying about breaking stuff','Y','','','','','','','Roll back to previous version','Remove software without leaving traces','','Nothing comes to my mind','Arch','','','','','','','','Y','','','','- Home Manager\r\n','- Nix purescript tooling ended up being too much work for too little gain\r\n- The Haskell tooling in Nix: if you just use the nixpkgs infrastructure then you\'re stuck with a single version of every package and need to play human dependency solver or you use something like haskell.nix which is a huge project on its own. I went back to just using Cabal.\r\n- dream2nix mach-nix and all the {npm,node,yarn}2nix: they all seem to handle something between 50% 75% of what I need to manage work projects using JS and/or Python but the remaining functionality is beyond my capabilty to implement so I went back to just npm/yarn',''),(2353,'1980-01-01 00:00:00',5,'en','1649651599','A2','A2','male','','','','','','','Y','','','','','','Y','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I was dissatisfied with using the Homebrew package manager on MacOS so I switched to Nix','Y','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A1','A2','A7','','','','','','','','A6','A5','A8','','','','','','','','','','','','',NULL,'pacman + aur','A2','','','','Y','Y','','','','','','','','','','','','','Y','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I don\'t maintain any open-source packages','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','My work started using NixOS for production servers, so I decided to run NixOS on my home server. After that I also started daily-driving NixOS on my personal computers.','Y','Y','Y','Y','','','','Declarative system configuration','','','','Arch Linux and MacOS','Y','','','Y','','','','','','','Hyprland','sops-nix','',''),(2354,'1980-01-01 00:00:00',5,'en','35700732','A2','A4','male','','','','','','','Y','','','','','','','','','','Y','','','Y','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Determinate Nix installer, seems to be having some kind of critical mass','Y','Y','','','','','Y','','','','','','','Y','Y','Y','','','','','A1','A2','A3','','','','','','','','A8','A9','A5','','','','','','','','','','','','',NULL,'Homebrew, Buck','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A1','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','No way to learn anything, exploding complexity ','N','N','Zero interest in this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2355,NULL,NULL,'en','1581966383',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2356,'1980-01-01 00:00:00',5,'en','101044891','A5','A4','male','','','','','','Y','Y','','','Y','Y','','','','','','Y','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Determinate package management and configuration ','Y','','','','','','Y','','','','','','','Y','','','Y','','','','A1','A8','A2','','','','','','','','A7','A5','A6','','','','','','','','','','','','',NULL,'','A1','','','','','','','','','','','','','','','','','','','','','','','A9','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','I don’t know ','A1','','Not sure if I know enough ','N','N','Unsure',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2357,'1980-01-01 00:00:00',5,'en','303213558','A2','A2','male','','','','','','','Y','Y','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Juste because I\'m lazy to backup my config. NixOs is perfect to do that.','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A4','A13','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','A4','A3','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Same as previous','Y','','','','','','','','','','','ArchLinux, I guess','Y','','','','','','','','','','sway','','','<3'),(2358,'1980-01-01 00:00:00',5,'en','1859804009','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A3','','','','','','Y','','','','','Y','','','','','','','Y','','','','A2','A1','A6','','','','','','','','A4','A13','A5','','','','','','','','','','','','',NULL,'A custom bespoke shell script','A5','','','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A1','','The Nix language is still hard for me to grok, so I haven\'t wanted to work much with it.','Y',NULL,NULL,NULL,NULL,'A4','','Y','','','A3','','','','','Y','','','','','','','','','Y','','','','','','','','','','','','',''),(2359,'1980-01-01 00:00:00',5,'en','1909226287','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','','','','','','','Y','','','','Y','','','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','Community Work','A4','Read about it in 2016 and thought it wouldn\'t break my xserver. Reproducible server configuration followed and kept me hooked.','','','','','','','Y','','Y','Y','','','','','Y','Y','Y','','Y','','A3','A7','A10','','','','','','','','A5','A9','A4','','','','','','','','','','','','',NULL,'Ansible or Puppet with some scripting.','A4','','','','','','','','','','','','','','','','','','','Y','','','Drone','A2','A3','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','Community projects','A5','The yellow webpage said it was cool and Arch broke my system.','Y','','','Y','','','','Full system configuration','Reproducibility and rollback','Package availability','Unify module configuration and upstream software configuration.','Some GNU/Linux distribution or OpenBSD bundled with Ansible.','Y','','','','','Y','','','','','dwm','','','Please merge my PRs. I stopped creating some as they are being ignored anyway.'),(2360,NULL,NULL,'en','1700093910',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2361,NULL,NULL,'en','1753289783',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2362,NULL,NULL,'en','1406840992',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2363,'1980-01-01 00:00:00',5,'en','1355782212','A1','A3','male','','','','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I have an interest in reproducibility and I kept seeing Nix come up in tech circles (Hacker News, Lobsters). I decided to test it on a spare laptop I had and I was hooked after a few weeks. All my systems run NixOS now.','','','','','Y','','Y','Y','','','','','','Y','Y','Y','Y','Y','Y','','A2','A7','A1','','','','','','','','A8','A6','A7','','','','','','','','','','','','',NULL,'Bazel.','A4','','','','Y','','','','','','','','','','','','','','','','','','','A15','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I tried opening up a PR for something I thought was a problem but wasn\'t actually a problem. I also have a few package derivations defined in a local flake that I haven\'t contributed yet because I don\'t think they\'re ready to share yet. I suppose it\'s possible I\'m overestimating what\'s required to be mergable.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I\'ve had a long interest in declarative configuration management systems, like Ansible, Terraform, Salt. NixOS kept appearing in tech circles (Hacker News, Lobsters) so I decided I\'d try it. I was immediately hooked.','Y','','Y','','','','','Declarative configuration','System rollback at boot menu','The ability to install any package from any channel and modify packages on the fly if I need to','SELinux. SecureBoot.','Fedora Silverblue.','Y','','','','','','','','','','sway','Home Manager.','','NixOS has changed my life. I\'ve been using Linux for over 15 years and NixOS is the only Linux distribution that has actually impressed me and restored my faith in the tech community\'s ability to innovate. Fantastic work.'),(2364,'1980-01-01 00:00:00',5,'en','1213266333','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was enthousiastic about the declarative way NixOS uses to be configures.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A1','A10','A8','','','','','','','','A8','A6','A7','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','My small child ;)','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Declarative OS management','Y','','','','','','','','','','','','','','','','','','','','','','Sway','','','Keep up the great work!'),(2365,'1980-01-01 00:00:00',5,'en','157300306','A5','A4','male','','','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','I didn\'t want to have to manually manage tooling, like Node versions','Y','','','','','','Y','','','','','','','','Y','','','','','','A1','A2','','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','A25','A1','A2','A15','A13','A22','','','','','','','','','','','','','','','','A15','A13','A22','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Understanding how packages work','N','N','I\'m happy where I\'m at with my OS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None',''),(2366,'1980-01-01 00:00:00',5,'en','153898829','A2','A3','male','','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','I wanted to have a reliable and well-documented setup for my home server, coming from arch. ','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A7','A3','A2','','','','','','','','A8','A1','A6','','','','','','','','','','','','',NULL,'Arch Linux, maybe ansible.','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','A3','A13','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A5','Wanting a reliable home server setup. ','Y','','Y','','','','','Generations accessible from the boot loader','Atomic upgrades','','Better documentation ','Arch Linux','Y','','','','','','Nixinate','','','','XMonad','mach-nix, home-manager, stylix, nixinate','colmena, nixops','Thank you for your great work <3'),(2367,NULL,NULL,'en','600472204',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2368,NULL,NULL,'en','1369348583',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2369,'1980-01-01 00:00:00',5,'en','657948443','A4','A2','male','','','','','','','','','','','','Y','','','Y','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Heard about it and it seemed cool so I messed around with it in a VM','','Y','','','','','Y','Y','','','','','','','Y','','','','','','A2','A3','A7','','','','','','','','A8','A2','A14','','','','','','','','','','','','',NULL,'Just install packages from my distro (Fedora) repos','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A13','A6','A19','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A2','','Lack of knowledge and understanding of nix. I\'ve tried to fix / update some packages but ended up giving up and just filing an issue','N','Y',NULL,'It was quite a frustrating experience. I really wanted to like NixOs but just couldn\'t get comfortable on it.','Flake stabilization, and better documentation and learning resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2370,'1980-01-01 00:00:00',5,'en','311647394','A2','A3','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','To manage/install newer versions of packages onto an Ubuntu machine and for development environments.','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A1','A2','A7','','','','','','','','A3','A4','','','','','','','','','','','','','',NULL,'Some hacked together method of manually installing packages locally','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A3','A15','A4','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Most issues I have already have PRs/discussions open or are too complex for me to start getting into.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I wanted to be able to declaratively manage my desktop/laptop/servers including packages + configuration to ease my administrative burden and make them more reproducible.','Y','','Y','','','','','Declarative Configuration','\"Atomic\" upgrades/rollback','System configurability + management','','Either still gentoo or maybe Guix','Y','','','Y','','','','','','','sway','home-manager, direnv, devshell','',''),(2371,'1980-01-01 00:00:00',5,'en','944251007','A2','A3','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','Strategy consultant','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Wanted to build static executables from Haskell code and stabilize CI for many different versions of PostgreSQL','','Y','','Y','','','Y','','Y','Y','','','','Y','Y','Y','Y','','','','A2','A1','A9','','','','','','','','A14','A4','A9','','','','','','','','','','','','',NULL,'Docker :-( ','A1','','','','','Y','','','','','','','','','','','','','','Y','Y','','','A2','A13','A25','','','','','','','','','','','','','','','','','','','A2','A13','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Installed on personal laptop, set up mail server','Y','','','Y','','','','','','','','Ubuntu','Y','','','','','','','Y','','','','','',''),(2372,NULL,NULL,'en','1918382489',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2373,NULL,NULL,'en','698142696',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2374,NULL,NULL,'en','1869151806',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2375,'1980-01-01 00:00:00',5,'en','191495801','A7','A5','male','','','','','','','Y','Y','Y','Y','Y','','Y','','','Y','Y','Y','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','Y','Y','','','A1','Brew sucks, so I tried nixpkgs and it stuck.','Y','Y','','','','','Y','Y','','','','','','Y','Y','','','','','','A1','A6','A2','','','','','','','','A9','A14','','','','','','','','','','','','','',NULL,'Homebrew, native linux package manager','A1','','','','','','','','','','','','','','','','','','','','','','','A2','A1','A17','A7','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A3','',NULL,'N','Y',NULL,'There isn\'t a binary cache 32-bit build of NixOS for RPi, can\'t be bothered building it myself.','I get a new machine or a 32-bit binary build for Raspberry Pi becomes available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','Love Nix and NixOS. Documentation is not great though, it scares outsiders away. Would be great to have documentation without Nix jargon that progresses from just using Nix and nixpkgs as a package manager replacement only (e.g. instead of homebrew on Mac or apt on Debian), then adds in declarative shell, then adds in NixOS, etc.'),(2376,'1980-01-01 00:00:00',5,'en','541524835','A3','A3','male','','','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A7','I was looking for a stable linux distro and a easy way to work in multi disciplinary projects without mess my OS.','','Y','','','','','Y','','','','','','','Y','Y','','','','','','A2','A1','A10','','','','','','','','A6','A14','A13','','','','','','','','','','','','',NULL,'asdf','A4','','','','','','','','','','','','','','','','','','','','','','','A1','A2','A9','A19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I was looking for a stable linux distro.','Y','','','','','','','Reproducible','Stable','Control','to early to say something','Fedora / Manjaro / Void Linux ','Y','','','','','','','','','','Pantheon, Awesome','to early to say something','to early to say something','Thanks for develop nix and nixOS'),(2377,'1980-01-01 00:00:00',5,'en','1317650449','A2','A4','male','','','','','','Y','','','','','','','','','','','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was interested in deterministic and reproducible systems.','Y','','','','','','Y','Y','','','','','','Y','Y','Y','Y','','Y','','A7','A2','A3','','','','','','','','A7','A6','A8','','','','','','','','','','','','',NULL,'Debian and Arch','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A17','','','','','','','','','','','','','','','','','','','','A17','A23','A2','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','I have contributed in the past and would like to do so in the future, but at the moment I do not have enough bandwidth.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','I was using Arch and started using nix on top of it, once I felt familiar enough with nix I decided to move to NixOS.','Y','','Y','','','','','Rollbacks','Deterministic configuration','Modules','I would make it easier to develop modules. The module system is very powerful but also very complex. I write modules from time to time and each time I have to relearn how to do it. I would also make it easier to *test* the modules, again, each time I get to work on a new module, I need to relearn how the test framework works and often it\'s not just worth the time.\r\n\r\nI would also make it easier to manage secrets, I am currently trying to make it easier using systemd-creds.\r\n\r\nDebugging in case of errors is also painful, the stack trace is always very long and there are so many anonymous functions that it\'s really hard to understand what\'s going on. Often it\'s easier just to change something and retry than trying to understand what\'s actually going on.\r\n\r\nAdditionally, I would like to have first class support for AppArmor, SELinux and secure boot: not only they are good security mitigations, but not having them is a blocker from introducing nix/NixOS at work.','Arch for personal use/development and Debian for servers.','Y','','','','','Y','','','','','AwesomeWM','','NixOps, but it was too buggy and badly maintained. Eventually I decided that I was better off with my own solution that I could understand than any other solution proposed by others. For my personal project that\'s what is working right now. But I\'d love to have a simple and well maintained deployment tool.','Thanks for working on nix and NixOS!'),(2378,'1980-01-01 00:00:00',5,'en','1886447712','A2','A4','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','N','N','','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2379,'1980-01-01 00:00:00',5,'en','1281389354','A2','A3','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A9','','','','','','','','A8','A14','A2','','','','','','','','','','','','',NULL,'asdf\r\nprobably guix','A1','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A24','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','Colleague and friends advertised nixos to me. Haven\'t gone back ever since.','Y','','','','','','','Declarative configuration','Rollbacks to previous versions','Configuration of multiple machines under a same repo','','','Y','','','','','','','','','','qtile','','',''),(2380,'1980-01-01 00:00:00',5,'en','1973802280','A2','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','The phylosophy of declarative configuration and reproducibility is really appealing to me','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A8','A4','A5','','','','','','','','','','','','',NULL,'Dotdrop for dotfiles, Ansible for system configuration ','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','I plan to in the future but I\'ve only recently started with Nix','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','The declarative configuration and reproducibility is really appealing to me ','Y','','','','','','','Declarative system configuration','','','','Arch Linux','','','','','','','','','','','i3','','','You rock!'),(2381,'1980-01-01 00:00:00',5,'en','307080520','A5','A2','-oth-','Non-binary','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A7','I used to use NixOS years ago when it was a little more immature and I was getting a little bored with Arch and wanted to give it another go.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A10','','','','','','','','A14','A8','A5','','','','','','','','','','','','',NULL,'Probably a hack job of half a dozen different version control systems haha.','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A15','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Unfamiliarity with the Nix language (working on that though)','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','Y','','','','','','','Rollbacks','Configuration through one centralized system ','Package availability','I would add better documentation and learning resources.','Arch Linux or Gentoo','','','','','','','','','Y','','','','NixOps (confusing documentation based on two separate versions of the software v1 and v2 still being used)',''),(2382,NULL,1,'en','1143692205','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2383,NULL,NULL,'en','1697746092',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2384,'1980-01-01 00:00:00',5,'en','1685086522','A5','A6','male','','','','Y','Y','','','','','','','','','Y','','Y','','','','','','','','Y','','Y','','','','','RHEL, NixOS','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I always wanted to learn Linux but did not know where to start. My work had me working on RHEL servers but I wanted to learn more. I was introduced to NixOS by a coworker (now my manager). Over the past few years, I learned enough to install NixOS on a couple of old personal laptops. The documentation is daunting and sometimes is missing basic steps. So it does take me time to figure out what I missed or did not properly understand.','','','','','','RHEL','Y','','','Y','','','','Y','','','Y','','','','A1','A2','A8','','','','','','','','A14','A5','A4','','','','','','','','','','','','',NULL,'I do not know enough to say...','A4','','','','','','','','','','','','','','I stay safe at this time...','','','','','','','','','A21','','','','','','','','','','','','','','','','','','','','','A21','','','','','','','','','','','','','','','','','','','','','','','','','A1','','My lack of knowledge. I do want to contribute someday but there is a lot to learn yet.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','Y','','','','Ease of setup when internet access is open','','','When the operational environment is restrictive, e.g. no direct internet access, setting up NixOS is difficult for me.','I do not know enough to answer the question','Y','','','','','','nix-build','','Y','','','I primarily pull in Posit Workbench for my personal work, building the necessary packages for R.','I am still learning so I have not reached this point yet.','Just a newbie trying to learn as much as I can.'),(2385,NULL,NULL,'en','1061508211',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2386,'1980-01-01 00:00:00',5,'en','2056175825','A2','A3','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','','','','','','Y','Y','','OpenBSD','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I\'m mainly using as part of NixOS but I want to learn it so I can contribute packages. Plus it\'s a cool language (love that it\'s actually purely functional in that it doesn\'t have I/O) and it\'s a really neat idea to use it to declare all package definitions and dependencies.','','','','','','','Y','','','','','','','','Y','Y','','','Y','','A3','A7','A10','','','','','','','','A9','A8','A5','','','','','','','','','','','','',NULL,'Probably whatever package manager the OS has or Brew for Mac.','A1','','','','','','','','','','','','','','','','','','','','','','','A4','A2','A15','','','','','','','','','','','','','','','','','','','A3','A4','','','','','','','','','','','','','','','','','','','','','','','','A1','','The documentation :(\r\nLike even now, there\'s llama.cpp which is a C++ port of the LLama model. I can compile it without dependencies just fine, but as soon as I want to enable blascl or ROCm OpenCL I\'m lost:\r\n- Can I do that from the command line? or do I need to define a nix.shell? The project has a flake.nix, how exactly do I invoke it?\r\nWould love to contribute / maintain packages which is why I\'m hoping to climb the very steep learning curve :)','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','AFAIK NixOS is the only rolling-release distro that doesn\'t break (or if it does, being able to rollback to a previous generation is a life saver).\r\n\r\nUbuntu is stable but it you want recent packages you need to compile them yourself (and I don\'t want to manage them all their updates)\r\n\r\nArch is bleeding edge but each `pacman -Suy` might require you to cancel all weekend plans to fix it. Also it has packages so if you want to compile software you need to use things like AUR(?) \r\n\r\nGentoo is nice, but you waste a lot of energy re compiling stuff (I don\'t need to compile my own kernel)\r\n\r\nNot sure what else?','Y','','','','','','','Stable base os (nixos-stable), but bleeding edge userspace (nixpkgs-unstable)','all the system is defined in a single file. No more tweaking configs and having to redo it if reinstalling on new machine.','Massive amounts of packages','1. Make the documentation / man pages as good as OpenBSDs.\r\n2. Write a book that would explain everything there is to understand about nix. Think Absolute OpenBSD by Michael W. Lucas\r\n','Probably would have to use something like Ubuntu because of its stability. I really like Linux but I can\'t risk the instability caused by a rolling release.','Y','','','','','','','Y','','','i3 / regolith (though that is an Ubuntu distro)','n/a','n/a','Love the idea of a survey! Thanks also for all the great work!\r\n\r\nConsider asking about the community as well given this is a \"community survey\". For example:\r\n\r\n- do you use all of the community channels - discourse, element etc\r\n- would you rather have more or less community channels\r\n- do you attend any local meetups? do you have any nearby ones?\r\n- are you aware of the Nix Foundation activities? Would you be able / have you considered donating (not sure about the last one but maybe something to think about)'),(2387,'1980-01-01 00:00:00',5,'en','439906440','A2','A3','male','','Y','','','','','','','','','Y','','','','Y','','','Y','','','Y','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','Y','','','A2','A1','A7','','','','','','','','A8','A2','A12','','','','','','','','','','','','',NULL,'guix','A2','','Y','','Y','Y','','','','','','','','','','','','Y','','','','','','A15','A2','A3','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','','','','','freedom to experiment','a degree of immutability','system composed in an understandable way','An out of the box feature to lock the OS down so that it is not able to run any code that is not part of the configuration.','fedora','Y','','','Y','','','','','','','sway','naersk, fenix','',''),(2388,'1980-01-01 00:00:00',5,'en','744058274','A5','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Using NixOS required starting to use Nix.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A7','','','','','','','','A5','A4','A14','','','','','','','','','','','','',NULL,'I would try Guile Scheme for use with Guix.','A2','','Y','','','Y','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A13','A12','A14','','','','','','','','','','','','','','','','','','','','','','','A1','','Software I need is either already packaged, or gets packaged or patched quickly enough such that I don\'t need to contribute.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','NixOS\' feature set promised simpler and safer GNU/Linux desktop management.','Y','','','','','','','Package availability','Declarative configuration and environments','Rollbacks','','Another immutable OS.','Y','','','','','','','','','Y','','Comma.','','Keep up the good work! I don\'t want to imagine a future without NixOS (or similar immutable operating systems) simplifying GNU/Linux desktop management.'),(2389,NULL,2,'en','359383272','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A3','Some recommendations on YouTube and also I was bribed by the fact that the entire system can be described in one configuration file, and then it started.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A7','A6','','','','','','','','A5','A13','A14','','','','','','','','','','','','',NULL,'Ansible, Docker, Kubernetes, maybe Fedora Silverblue or similar distro','A2','','','','','Y','','','','','','','','','','','Y','','','','','','','A1','A3','A2','','','','','','','','','','','','','','','','','','','A5','A9','A2','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2390,'1980-01-01 00:00:00',5,'en','869621696','A5','A4','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','','Application Architect','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','','','','A3','Once the build works it keeps working.','Y','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A8','','','','','','','','','A12','A6','A3','','','','','','','','','','','','',NULL,'multiple different tools like docker, language-specific package managers (e.g., pyenv)','A4','','','','Y','Y','','','','','','','','','','','','','Y','Y','','','','A4','A5','A1','A15','A2','','','','','','','','','','','','','','','','','A5','','','','','','','','','','','','','','','','','','','','','Y','','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Broken my Debian install. Enjoy functional programming, and found NixOS to be a convenient way to specify a desktop OS.','Y','Y','','','','Y','','NixOS Modules','NixOS Tests','','Nothing','I\'d cry and learn Guix','Y','Y','','','','Y','','','Y','Y','','nixpkgs-fmt (https://github.com/nix-community/nixpkgs-fmt)','mavenix (https://github.com/nix-community/mavenix)',''),(2391,'1980-01-01 00:00:00',5,'en','1856140926','A5','A4','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Originally, I was looking for a way out of homebrew dependency hell. The way that Nix manages its dependencies made Nixpkgs a fantastic replacement for my use cases. ','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A9','A1','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Tough to say at this point.','A6','','','','','','','','','','','','','','','','','','','','','','','A10','A1','A2','A17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Really enjoyed Nixpkgs and home-manager, and had been using those on macOS and a GNU/Linux machine. I wanted to install NixOS on my personal laptop (2013 MacBook Pro) and had a blast figuring that out! At a later date I put NixOS on my Raspberry Pi as well. ','Y','','Y','','','','','Declarative configuration','Rollbacks','Easy upgrades','','','Y','','','','','','','','','','Sway','nil\r\nnix-update\r\nnixpkgs-fmt\r\nnixpkgs-review','','Nix is great, I would love to see a real emphasis put on documentation/onboarding/learning resources. '),(2392,NULL,NULL,'en','913914409',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2393,'1980-01-01 00:00:00',5,'en','1592170629','A5','A3','male','','','Y','','','Y','','','','','','','','','','Y','','Y','Y','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','Y','','','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','','Y','','A1','A6','A2','','','','','','','','A12','A6','A8','','','','','','','','','','','','',NULL,'','A7','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A2','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','-oth-','I maintain and write flakes for originally non nix projects',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','New laptop, wanted to try something new.','Y','','Y','','','','','Hermetic and reproducible builds','Cross compilation','World pinning','','Gentoo','Y','','','Y','','','','','','','Hyprland','Agenix, flake parts, devshell, naersk','Flake utils',''),(2394,NULL,NULL,'en','1805078147',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2395,NULL,NULL,'en','1489806400',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2396,'1980-01-01 00:00:00',5,'en','1409067753','A5','A4','male','','','','','','','Y','','Y','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','I was intrigued by the declarative configuration, and I had a spare chromebook (an Asus C720, I think) and decided to give it a go.','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A3','','','','','','','','','A5','A4','A7','','','','','','','','','','','','',NULL,'apt. ','A2','','','','Y','','','','','','','','','','','','','Y','','','Y','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Lack of time.','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A5','Same as Nix.','Y','','','','','','','Declarative configuration.','Manage and backup system config with git.','Builtin tools for restoring and backing up the system configuration.','I would probably coalesce all the subcommands into one, in the style of apt.','Ubuntu.','Y','','','','','','','','','','i3., stumpwm','','',''),(2397,NULL,1,'en','564652211','A5','A3','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2398,NULL,NULL,'en','2833455',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2399,'1980-01-01 00:00:00',5,'en','680900802','A5','A2','-oth-','Non-binary','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','Alpine Linux!','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A2','Zach Latta from Hack Club introduced me to it! ','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A6','A2','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Guix!','A1','','','','Y','','','','','','','','','','','','','','','','','','','A15','A9','A13','A22','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','Documentation being so bad, sorry. I just have to copy paste other projects and hope my edits work.','N','Y',NULL,'Switched to M1 macs','Better M1 support!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2400,'1980-01-01 00:00:00',5,'en','207819755','A3','A3','male','','Y','','','','','','Y','','','','Y','','','','','','','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','Y','Y','','Y','Y','Y','','','','','Y','Y','Y','Y','Y','','','A2','A3','A8','','','','','','','','A13','A8','A10','','','','','','','','','','','','',NULL,'','A4','','Y','','Y','','','','','','','','','','','','','Y','Y','Y','','','','A4','A3','A20','A26','','','','','','','','','','','','','','','','','','A4','A20','A26','','','','','','','','','','','','','','','','','','','','Y','','','A2','','','Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(2401,'1980-01-01 00:00:00',5,'en','2009849142','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A7','','','Y','','','','','Y','','','','','','','Y','','','Y','','','','A1','A5','A10','','','','','','','','A5','A14','A3','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A3','A13','A2','A17','A15','','','','','','','','','','','','','','','','','A3','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','','dwm','','',''),(2402,'1980-01-01 00:00:00',5,'en','1981324509','A5','','male','','','','','','','','','Y','','Y','','','','Y','','','','','','Y','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','A friend suggested that my config and system management woes could be solved by this OS. Linux already lacked and still lacks an Apple Time Machine like feature and NixOS felt like a middle ground. ','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A2','A10','','','','','','','','A4','A13','A2','','','','','','','','','','','','',NULL,'macos','A7','','','','Y','','','','','','','','','','','','','','','','','','','A15','A3','A2','','','','','','','','','','','','','','','','','','','A15','A9','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Ability to see how to quickly test something new. ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','','','','','','','','','','','','','Y','Y','','','','',''),(2403,'1980-01-01 00:00:00',5,'en','1588768397','A5','A2','-oth-','','','','','','','Y','','','Y','Y','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','I started using Nix because I was fascinated by the ability to configure my whole system in a single file, as well as quickly install programs I need for tasks without interfering with the rest of my system.','','','','','','','Y','','','','','','','','Y','','Y','','','','A10','A1','A3','','','','','','','','A4','A5','A8','','','','','','','','','','','','',NULL,'Guix or Debian','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A15','A3','','','','','','','','','','','','','','','','','','','A22','','','','','','','','','','','','','','','','','','','','','','','Y','None, because overlays are difficult','A1','','Poor documentation and the confusing configuration language.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','Same as Nix','Y','','','','','','','','','','I would add comprehensive documentation via something like manpages.','Guix or Debian','Y','','','','','','','','','','Sway','','',''),(2404,'1980-01-01 00:00:00',5,'en','647970487','A2','A3','fem','','','','','','','Y','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','a friend of mine used it and well, \"infected\" me with it. and to be honest, it makes a sysadmins life a lot easier. ','Y','Y','','','','','Y','Y','','Y','','','','Y','Y','Y','Y','','','','A2','A7','A3','','','','','','','','A14','A4','A6','','','','','','','','','','','','',NULL,'Ansible and maybe docker ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A1','A10','A26','A9','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','I don\'t have a github account, and i don\'t want one ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','a friend of mine used it, shoed it to me and since i was sick of using ansible i tried it - and failed because of lacking documentation and really bad error messages.\r\nwent back to ansible but after a few was finally so sick of it that i finally switched to nix(os) it was a really hard learning curve but eventually i made it ','Y','','Y','Y','','','','Reproducibility of systems with just a few files in a git repo ','painless rollbacks','','','archlinux ','','','','','Y','','','','','','','nix-darwin','',''),(2405,'1980-01-01 00:00:00',5,'en','433457567','A5','A3','-oth-','','','','','','','Y','','Y','','','','','','','','Y','','','','','','','','','','','Y','Y','','illumos','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','','Y','','','','','','Y','','Y','','','','','','','Y','','Y','','A2','A1','A10','','','','','','','','A9','A4','A13','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A15','A9','A2','A1','A10','','','','','','','','','','','','','','','','','A26','A15','A25','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','Y','Y','','','','','','','','','','','','','','Y','','','','','','https://github.com/nix-community/impermanence','',''),(2406,NULL,NULL,'en','1810021631',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2407,'1980-01-01 00:00:00',5,'en','334820858','A5','A3','-oth-','these aren\'t gender identities','','','','','','Y','','','','','','','','','','Y','Y','','','','','','','','Y','','Y','','','BSD BusyBox/Linux','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I got sick of provisioning my laptops with Ansible and wanted something better than YAML. Unfortunately Guile and Guix was too ideological to use well and I got stuck with Nix lang','','Y','','','Y','','Y','Y','','Y','','Y','','','Y','Y','Y','','','','A1','A2','A3','','','','','','','','A14','A4','A3','','','','','','','','','','','','',NULL,'Probably whatever the KDE version of Fedora Silverblue is called','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A17','A24','A25','A1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','-oth-','every time I\'ve tried to contribute to nixpkgs my contributions have been ignored and then superceded by one of the NixOS superfriends or a package maintainer without crediting me.',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I told this already.','Y','','Y','Y','','','','Declarative builds','Binary cache','Rollbacks even of user managed software ','','','','','Y','','','Y','','','Y','','','All the 2nix suck.','Flakes. Being so tightly tied to git is not a pattern I want to adopt for personal projects.',''),(2408,'1980-01-01 00:00:00',5,'en','1660008667','A5','A3','-oth-','Nonbinary','','','','','','Y','','','','Y','','','','','','','Y','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was tired of my combination of Homebrew/ASDF/rbenv/nodenv/etc etc etc\r\n\r\nI wanted a tool that I could define software with once and have that definition as applicable for a development toolchain as it would be for running in production.\r\n\r\nI wanted to share those definitions to enable collaboration.','Y','Y','','','','','Y','','','','','','','','Y','','Y','','','','A2','A3','A1','','','','','','','','A3','A9','A13','','','','','','','','','','','','',NULL,'Homebrew+ASDF for development, Docker for deployments','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A24','A23','A2','A15','A19','','','','','','','','','','','','','','','','A2','A1','A24','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Nothing; I\'ve contributed in the past, I just haven\'t recently.','N','Y',NULL,'I develop primarily on an M1 Mac; container support is pretty finicky and my employer doesn\'t use Nix at all. Being the only user of Nix at my company I don\'t have a lot of need to force our current application stack into Nix.','My employer adopting NixOS; which would mean a much easier packaging/developer experience to the point that adoption makes sense over tossing everything into Docker containers because that\'s what people know and AWS has looots of examples and support for Docker.\r\n\r\nIt\'s also finicky getting NixOS containers running on a Mac–I know of several solutions but I\'m not sure the level of support for them other than \"they work now\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Direnv, the nil Language Server','Python packaging. I spent several days trying various ways of building an older version of dbt (Data Build Tool) which makes use of some Rust extensions. I felt like I was so close to fixing the build process multiple times but I just kept running into problems I didn\'t know how to solve.\r\n\r\nIt\'s really hard to get packages build if they don\'t fit nicely into one of the buildXPackage helpers and it\'s turned me off of converting any of the Docker images we use today at into NixOS containers.\r\n\r\nI WANT to. I\'d love to be able to take those definitions and say, \"spin these up under a simple supervisor\" or \"throw these into a local k8s cluster\".','Appreciate all the work you all do <3'),(2409,NULL,3,'en','593673910','A5','A3','fem','','','','','','','Y','','','Y','Y','','','','Y','','Y','Y','Y','','','','','Y','','Y','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I was nerd-sniped by a friend.','Y','Y','','Y','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A3','A7','','','','','','','','A8','A6','A3','','','','','','','','','','','','',NULL,'Probably Guix or Arch\'s AUR','A2','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A9','A15','A17','A3','A13','A22','A1','','','','','','','','','','','','','','','A9','A1','A22','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I got nerd-sniped by a friend and it was all downhill from there.','','Y','Y','Y','','','','Reproducibility','Extendability','Secret support','I\'d love a way to bake-in secret support so I don\'t have to keep reinventing it.','Probably Guix or Arch Linux','','','Y','Y','','','','Y','','','',NULL,NULL,NULL),(2410,'1980-01-01 00:00:00',5,'en','103224501','A2','A3','-oth-','idc','Y','','','','','','','','','','','','','','','','','','','','','Y','','suffering from computers','','','Y','','','android,ios','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A2','got annoyed with state changing','','Y','','','','','','','','','','','','','Y','Y','Y','','Y','','A2','A9','A7','','','','','','','','A5','A8','A2','','','','','','','','','','','','',NULL,'smartos, arch,fedora silver/blue','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','Y','','Y','Y','','','','declarative systems (stateless)','ability to rollback','','','','Y','','','Y','Y','','','','','','sway','doom-emacs\r\ndisco\r\nnixos-anywhere\r\nnix-infect\r\nflake-utils','','meow'),(2411,NULL,2,'en','1867383283','A5','A2','fem','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was bored and wanted a better way to standardize configuration across my hosts','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A7','A1','','','','','','','','A6','A12','A9','','','','','','','','','','','','',NULL,'Ansible','A7','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2412,NULL,NULL,'en','992892368',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2413,NULL,NULL,'en','789567237',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2414,'1980-01-01 00:00:00',5,'en','73334439','A5','A4','male','','','','','','','Y','Y','','','','','','','','Y','','Y','','Y','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','I wanted an isolated environment to build a project and the OS specific versions of the software were incompatible. Nix allowed me to run the build without interfering with the local system.','','Y','','','','','Y','','','','','','','','Y','','','','','','A3','A6','A2','','','','','','','','A14','A4','A12','','','','','','','','','','','','',NULL,'Probably distrobox with hand-rolled shell scripts. (To replace nix-shell features)','A4','','','','','','','','','','','','','','','','','','Y','','','','','A15','A2','A3','A13','A25','','','','','','','','','','','','','','','','','A14','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I didn\'t know I could, or how to go about it. But also, I haven\'t found it lacking enough to pursue such a thing.','N','Y',NULL,'The big selling point for me was nix-shell which I can use elsewhere. Using the whole OS was just less convenient and familiar.','I do test it out periodically, and my familiarity is increasing. I will likely switch one of my machines to it full time at some point.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'My main workflow is just a set of nix-shell configs I keep in my repo. When I want to work on a project, I just shell into that specific environment and work inside of a predictable space. I don\'t mingle my projects with the local nix store. ','Flakes. I get why people like them, and the reproducible builds are compelling, but the interactive approach of setup, building, and locking state, doesn\'t feel declarative. I also work in a monorepo and can\'t add flakes to the root of my repo.','Keep up the good work. While there may be things to improve within Nix, there is a lot that has been done well and I appreciate that it\'s already a tool I use regularly (even if not to the fullest extent).'),(2415,NULL,1,'en','35340600','A6','A3','male','','Y','','','Y','','Y','','Y','Y','Y','Y','Y','','','','','Y','','','','','','','','','','Y','Y','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2416,'1980-01-01 00:00:00',5,'en','847180535','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Watched a youtube video about nix package manager by ChrisTitusTech went into the comments and\r\nHeard about nixos, was curious so i gave it a try','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A10','A7','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'I was using fedora but since vanillaOS and blendOS exist now I would\'ve given them a try','A2','','','','Y','Y','','','','','','','Y','','','Y','','','','','','','','A15','A2','A9','','','','','','','','','','','','','','','','','','','A15','A17','A2','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','Same as nix watched the video about nix by ChrisTitusTech went into the comments and heard about nixos and gave it a try','Y','','','','','','','Declarative ','Reproducibility ','Easier to package apps that are not it the repo also i can create options ','Declarative disk partitioning','Was using fedora but since vanillaOS and blendOS exist will try those ','Y','','','','','','','','','','Hyprland','','',''),(2417,'1980-01-01 00:00:00',5,'en','1070601192','A5','A4','male','','','','','','Y','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','I wanted declarative management of my machines, stepping up from automation using shell scripts and home brew. ','Y','','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A4','A8','A13','','','','','','','','','','','','',NULL,'Shell scripts and homebrew','A1','','','Y','Y','Y','','','','','','','Y','','','','','','','','','','','A8','A9','A1','A2','','','','','','','','','','','','','','','','','','A8','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time, need, work policies','N','N','Macos disappearing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nix-darwin','',''),(2418,'1980-01-01 00:00:00',5,'en','1191262210','A2','A3','male','','','','','','','Y','','Y','','','','','','','Y','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I fell in love with the idea of \"dotfiles on steroids\" and isolated dev environments.','Y','Y','','','','','Y','Y','','','','','','','Y','Y','','','','','A1','A2','A7','','','','','','','','A4','A8','A1','','','','','','','','','','','','',NULL,'Adhoc shell scripts, Docker','A4','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A4','A2','A7','A15','A24','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Unaware of a \"best practices\" merge request example. Unsure of how to verify QA of my work.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','','Y','','Y','','','','','Atomic OS upgrades','Infrastructure as code','One config that works for many devices','','Ubuntu','Y','','','','','','','Y','','','','','','Very satisfied with the Nix MacOS installer by Determinate Systems.\r\n\r\n'),(2419,'1980-01-01 00:00:00',5,'en','450734413','A5','A2','fem','','','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A1','It seems like a better way of doing things ','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A6','','','','','','','','A5','A10','A4','','','','','','','','','','','','',NULL,'Arch Linux and containers','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','A3','A4','A1','','','','','','','','','','','','','','','','','A1','A2','A15','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I don\'t sufficiently understand Nixpkgs','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','It sounds like a better way of doing things','Y','','Y','','','','','Declarative system configuration','Reproducibility','Extensibility/customizablility','I would make it not use bash for building stuff. A Nix only build solution would be wonderful ','I\'d just go back to Arch Linux and containers','Y','','','','Y','','','','Y','','','','','Many things require simply looking at the nixpkgs source. That would be a much better experience with better commented code, which would also mitigate documentation problems'),(2420,NULL,1,'en','120304387','A2','A5','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2421,'1980-01-01 00:00:00',5,'en','747362142','A5','A3','male','','','','','','','Y','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A3','devops introduced it at work','','Y','','','','','Y','','Y','','','','','Y','Y','','','','','','A7','A9','A2','','','','','','','','A4','A8','A2','','','','','','','','','','','','',NULL,'building huge debians that contain our dependencies','A7','','','','Y','Y','','','','','','','','','','Y','','Y','Y','','','','dispatch from jenkins/gitlab to hydra','A4','A2','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','mostly time, figuring out how to test upstream patches thoroughly, not fully understanding the implications. Works for me, but not sure how much time it would take to make it work for everyone.','N','N','My next install will likely try it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nixpkgs-fmt','','Huge shoutout to the nix community, it has solved real problems for our company.'),(2422,NULL,1,'en','443388869','A5','A5','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2423,'1980-01-01 00:00:00',5,'en','1315086829','A6','A2','male','','Y','','','Y','','','','','','Y','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','','','Y','','','','','Y','','','','','','','Y','Y','','Y','','Y','','A1','A7','A3','','','','','','','','A5','A14','A9','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','Rollback support','configuring system from a single file','high number of package available','Better Documentation and better learning resources','','','','','','','','','','','','Hyprland','','',''),(2425,'1980-01-01 00:00:00',5,'en','580568091','A2','A4','male','','','','','','Y','','','','','','','','','','','Y','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','As someone fully bought in to infrastructure as code, Nix seemed intriguing. I\'ve had a couple of attempts at NixOS, first as a server OS which didn\'t quite pan out, then as a casual desktop, which is going better. During that time I adopted Nix on Ubuntu for my work desktop system instead of Homebrew, and I\'ve experimented with the same on MacOS more recently.','Y','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A1','A2','A7','','','','','','','','A14','A8','A9','','','','','','','','','','','','',NULL,'Homebrew, which kinda sucks on Linux, but is convenient.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','Inexperience','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','Same as answer for Nix, in fact started with NixOS first.','Y','','','','','','','Declarative configuration of the entire system','Ready availability of broad range of up to date packages','Ease of rollback to previous states','','Probably Ubuntu or Arch','Y','','','','','','','Y','','','','','',''),(2426,NULL,NULL,'en','45523678',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2427,'1980-01-01 00:00:00',5,'en','585421438','A2','A3','fem','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I needed to reinstall my OS because the buildup of cruft was getting unmanageable, so I switched to nixos where that simply doesn\'t happen! I then fell in love and now run nixos on all my machines and my home server runs nixos containers.','','','','','Y','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A14','A4','A8','','','','','','','','','','','','',NULL,'debian. I value stability and reliability over being on the cutting edge, and while nixos doesn\'t have a true lts channel the safe upgrades make up for that and give me both, which is wild to me still.','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A6','A1','A12','A2','A3','','','','','','','','','','','','','','','','','A2','A6','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Spoons and knowledge. I\'m learning. I\'ll hopefully end up submitting a PR for a module for prismatik in a few months.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Same as I started using nix, it just spoke to me.','Y','','Y','','','','','A centralised configuration that describes my systems ','The ability to try out new things and then cleanly fiddle or roll back without leaving cruft','The ability to share configuration between machines and deploy to all at once ','A graphical tool for configuration management. It doesn\'t need to be able to do everything and I probably wouldn\'t even use it because my configuration is well organised by now, but I want to recommend this to less technical users and while the story is \"okay so open your text editor and...\" I can not.','debian!','','','','','Y','','','','','','bspwm','','',''),(2428,NULL,1,'en','1712510733','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','','Y','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2429,'1980-01-01 00:00:00',5,'en','1112702109','A2','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','','Ordinary end/desktop user.','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','','','','','Y','','','','','','','Y','','','','','','','A1','A7','','','','','','','','','A14','A5','','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Been using Debian for a while and just felt like I wanted something new, something else.','Y','','','','','','','Rollback','Easy to \"clone\" between my machines.','','Make the documentation about everything more welcoming for new users/amateurs/ordinary desktop users.\r\nMaybe some up to date and easy to follow guides about setting up a tiling system with flakes, home manager, modules and all that.\r\nWil T made some good content on youtube but they are pretty old by now. ','Debian.','','','','','','','','','','','Hyprland.','','','Keep up the good work. Even tho I\'m just a regular desktop/gaming/end user I really appreciate everything you guys are doing for the community.\r\nThank you.'),(2430,NULL,1,'en','203204124','','','','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2431,'1980-01-01 00:00:00',5,'en','1496089657','A2','A5','male','','','Y','','','Y','Y','','','','Y','','','','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A4','I was admins sys for a engineering school at the time, and was searching for a solution to allow users to freely install software.','','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','','','A1','A2','A8','','','','','','','','A14','A4','A13','','','','','','','','','','','','',NULL,'guix','A1','','','','Y','Y','Y','','','','','','','','','','','Y','','','','','','A13','A2','A15','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Lack of clear documentation','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I was using home-manager on a debian, so was already sold on the module system. I switched to nixos when I changed my laptop.','Y','Y','Y','Y','','','','reproductibility','module system','','use nixos module inside containers','guixsd','Y','','','','','','terraform','Y','','','','home-manager','',''),(2432,NULL,2,'en','120321005','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','N','N','','Y','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2434,'1980-01-01 00:00:00',5,'en','1147262646','A6','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','N','N','','Y','Y','','A beginner friendly documentation for new upcoming linux user.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','A beginner friendly documentation would attract a lot more not only linux user but also a lot non-linux user as well.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'None','None','I think creating a discord channel like other popular distro will help to communicate with other power user more easily and grow as a community as well.'),(2435,NULL,1,'en','1155087207','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2436,'1980-01-01 00:00:00',5,'en','297185739','A2','A3','male','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','The servers of our workplace run it. I adopted it after seeing how effective my advisor can work with it. ','Y','Y','','','Y','','Y','Y','Y','Y','','','','','Y','Y','Y','','Y','','A2','A7','A1','','','','','','','','A5','A8','A11','','','','','','','','','','','','',NULL,'ansible, vagrant, docker...','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','Y','','A15','A3','A4','A2','A1','A5','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I directly used nix with nixos because i wasnt convinced yet that this wouldnt irritate my existing system. ','Y','Y','Y','Y','','','','dependencies: pinning, install conflicting versions at the same time','enabling modules asserts settings of related options','good infrastructure to integrate self-packaged software','nixos config option diffing','archlinux','Y','','','','','','','Y','','','','sops-nix','',''),(2437,'1980-01-01 00:00:00',5,'en','1591193071','A2','A3','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A8','A3','A9','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A1','A15','','','','','','','','','','','','','','','','','','','','A15','A1','','','','','','','','','','','','','','','','','','','','','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','Y','','','','','','','','','','Y','','','Y','','','','','','','sway','','',''),(2438,NULL,1,'en','1921620745','A5','A5','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2439,'1980-01-01 00:00:00',5,'en','1420417855','A2','A4','male','','','','','Y','','Y','','','','','','','','','Y','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','','','','','Y','','','','','','','','','','Y','','','','A2','A7','','','','','','','','','A5','A8','','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','Y','','','','','',''),(2440,'1980-01-01 00:00:00',5,'en','500738309','A2','A4','male','','','','','','Y','Y','','','','Y','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','','Y','','','Y','','Y','Y','Y','','','','','','Y','Y','Y','Y','','','A3','A2','A11','','','','','','','','A6','A8','A14','','','','','','','','','','','','',NULL,'Aptitude, Snap, Container','A3','','','','Y','','','','','','','','','','','','','','','Y','','','','A15','A2','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Tried, but got no reaction on my merge request.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','In order to replace my Ansible roles.','Y','Y','Y','','','','','declarative','home-manager is awesome (even if not especially part of NixOS)','','- add secret management\r\n- finish https://github.com/zhaofengli/attic','Arch-Linux, Docker, Ansible, Terraform','Y','','','','','Y','','','','','sway','https://github.com/numtide/nixos-anywhere\r\nhttps://github.com/nix-community/disko\r\nhttps://github.com/Mic92/sops-nix','https://www.cachix.org/','don\'t be evil'),(2441,NULL,1,'en','1184121862','A2','A5','fem','','','','','','','','','','','','','','','','','Y','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2442,NULL,1,'en','107601100','A2','A3','male','','Y','','','','','','','','','Y','','','','','','','Y','','','Y','','Y','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2443,'1980-01-01 00:00:00',5,'en','1517442230','A2','A3','male','','Y','','','','','','','','','Y','','','','','','','Y','','','Y','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','','Y','','','','','Y','Y','Y','Y','','','','Y','Y','Y','Y','','Y','','A11','A7','A10','','','','','','','','A4','A8','A13','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','Gitea Actions','A13','','','','','','','','','','','','','','','','','','','','','A13','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A5','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','','Y','Y','Y','Y','','','','Declarative System Configuration','Reproducible System Configuration','','','Arch?','','','','','','Y','','Y','','','','nix-output-monitor\r\nhome-manager\r\ninstall-nix-action\r\nnvd\r\ndisko\r\n','nix-installer-action\r\nnixos-containers\r\nniv\r\n',''),(2444,NULL,NULL,'en','2125297348',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2445,'1980-01-01 00:00:00',5,'en','900978081','A2','A2','-oth-','NB','','','','','','','','','','','','','','','','','','','','','','','','Whore (Sexworker)','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Found out about it from the rust community server. It seemed neat and solved some of the issues we have with other linux distros / package managers.','','Y','','','','','Y','','','','','','','Y','','','Y','','','Building consistent multi user multi machine setups for the polycule.','A1','A10','A2','','','','','','','','A4','A14','A5','','','','','','','','','','','','',NULL,'','A1','','','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A1','','A lack of documentation and easy to follow learning resources on how to add shit to nixpkgs.','N','Y',NULL,'Installations errors relating to non en_US-utf8 char sets.\r\nAlso painfully long builds on slow internet. ','Better documentation, learning resources and slightly more stability.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Home-manager.','',''),(2446,'1980-01-01 00:00:00',5,'en','197078904','A5','A2','-oth-','Non-binary','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','wanted to host multiple minecraft servers & other software and it seemed like a good way to help juggle java versions','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A2','A3','A10','','','','','','','','A8','A5','A2','','','','','','','','','','','','',NULL,'probably just a regular linux package manager, or maybe my own kind of package manager that does something vaguely similar?','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A3','A5','A17','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','','','','','A2','','no real need to change anything about nixpkgs','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','same as nix - it\'s what\'s on my server & now it\'s on my laptop','Y','','Y','','','','','Nix (package management)','declarative system configuration','it\'s got a fun vibe to it','system configuration (configuration.nix) is kinda a mess (it\'s all just random configuration options), i\'d probably replace that with like a list of packages + making changing configuration of a package (like override/overrideAttrs stuff) easier','probably arch or alpine or some other linux','Y','','','','','Y','','','Y','','','home-manager','','nix is fun :)'),(2447,'1980-01-01 00:00:00',5,'en','2074669462','A5','A3','male','','','','','','Y','','','','','Y','','','','','','','','','','','','Y','','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','Found out it was possible to configure everything in one file. Got confused by flakes. Slowly getting there but it\'s a rabbithole!','Y','Y','','Y','','','Y','Y','','','','','','Y','Y','','Y','','','','A7','A1','A6','','','','','','','','A6','A14','A8','','','','','','','','','','','','',NULL,'UbuntuMate','A2','','','','Y','','','','','','','','','','','','','','','Y','','','','A10','A1','A15','A5','','','','','','','','','','','','','','','','','','A10','A5','A15','','','','','','','','','','','','','','','','','','','','','','?','A2','','Not enough information on where to start, what\'s needed. Still figuring Nix out. ','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','Y','','Y','','','','','Central located config for build','Rebuild cache','Packages','A GUI for Nix config would be a gamechanger for the world.','WSL2 / UbuntuMate','Y','','','','','','','','Y','','','','',''),(2448,'1980-01-01 00:00:00',5,'en','119340214','A2','A2','male','','','','','','','','','','','','','','','Y','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Managing servers is pain','','','','','','','','Y','','','','','','Y','','','Y','','','','A2','A10','A9','','','','','','','','A8','A6','A4','','','','','','','','','','','','',NULL,'CentOS Stream with some containers','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','','','','Y','','','','','Centralised config','Package availability','','','CentOS Stream','','','','','','','','','','','','','',''),(2449,'1980-01-01 00:00:00',5,'en','928070034','A5','A4','male','','','','Y','','','','','','','','','','','','','','Y','','','','','','','Call Center Management','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','','','Just evaluating at this time ','A7','I like the idea of stability and the way packages and configuration were handled.','','Y','','','','','Y','','','','','','','Y','','Y','','','','','A4','A1','A7','','','','','','','','A14','A4','A8','','','','','','','','','','','','',NULL,'Unsure','A7','','','','','','','','','','','','','','','','','Y','','','','','','A5','A1','','','','','','','','','','','','','','','','','','','','A15','A4','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Education ','N','N','I’m looking at it now. I want to be sure of an easy install process into new laptops.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N/A','N/A','Thanks for your time! A lot of interesting ideas!'),(2450,NULL,NULL,'en','866973151',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2451,'1980-01-01 00:00:00',5,'en','645634558','A2','A3','male','','','','','','','','','','','Y','','','','Y','','','Y','','','','Y','','Y','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A4','','','','','','','','','Y','','','','','','','','','Y','','','','A7','A10','A1','','','','','','','','A14','A4','A6','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A15','A10','A1','A5','','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A5','','','','Y','','','','','','','','','','Y','','','','','','','','','','','','Nixops',''),(2452,'1980-01-01 00:00:00',5,'en','1963513399','A3','A2','male','','','','','','','Y','','','','Y','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','It allows me to create a reproducible system, in my case I\'m constantly changing my computers and it makes my life so much easier and also I\'m able to see what impact would have some features that I\'m using with Nix over all my system.','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','A1','A10','A6','','','','','','','','A4','A14','A5','','','','','','','','','','','','',NULL,'I\'d use scripts to setup everything, a worst world for me of course, with Nix I\'m saving lots of hours for each new computer','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A1','A2','','','','','','','','','','','','','','','','','','','A3','A14','A15','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','','','','','','','','','','','','','','','','','','','','','','','','','','',''),(2453,'1980-01-01 00:00:00',5,'en','1094123893','A5','A4','male','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','','','','','','','','','','','','','','','Y','Y','','Y','','','','A2','A4','A1','','','','','','','','A14','A4','A5','','','','','','','','','','','','',NULL,'','A2','','','','Y','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Currently too new, still trying to learn.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','I first heard of nixos from this post 19 days ago: https://lemmy.world/post/296390. Any time I\'ve been making system changes on my Ubuntu machine, I\'d keep some notes on the commands I wrote and steps I took all the while kinda wishing my desktop system was a docker session. So the concept was immediately appealing and the first time in something like 15 years I\'ve tried a distro other than ubuntu and redhat. I did experiment with gentoo when I first got into linux, but eventually wanted to settle for something reliable whose issues could be fixed with a quick google search.','Y','','','','','','','','','','Better documentation and better learning resources, just in general a better on-boarding process. For example, I\'ve spent time learning about nix-env only to read another article \"You may not immediately stumble upon a mention, that nix-env or channels are a no-go, and you simply should not waste your time trying to learn those\". It was just so hard to tell which concepts I needed to learn about or which ones should be learned first and often trying to process all the new commands/features without having much context for what that aspect of nixos will do for me. Even now rereading the flakes wiki page, I\'m still not entirely grasping what it is flakes does for me that makes it preferable to other methods. They don\'t spend any time motivating the concept. Why was this tool created? How are people using it to their advantage? How is it better than other options?\r\n\r\nAnother thing that was a little jarring was how easy it is to make changes, say in gnome settings, that won\'t be captured in your nixos config files and how, comparably harder, it is to then try to bring those into your nixos config files. I ended up finding a workflow using `dconf watch /` (which there was no easy way for me to discover this trick) and manually rewriting those to be nix syntax. There is no reason this couldn\'t largely be done for you simply upon changing a setting in gnome and have it generate a nix file with all settings that currently differ from default.','I\'d still just be using Ubuntu, the same thing I\'ve been using for over a decade.','Y','','','','','','','Y','','','i3','','',''),(2454,'1980-01-01 00:00:00',5,'en','1623032646','','','','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','Y','','Y','','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','','','','','','','','','','','','','No benefit','Most likely because I don\'t understand what problem nix solves.','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','Y',NULL,'See previous answer','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2455,NULL,2,'en','1402413731','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A1','It solves the problems of dependency hell and allows easy rollbacks.','','Y','','','','','Y','','','','','','','','','Y','Y','','','','A1','A10','A7','','','','','','','','A5','A2','A8','','','','','','','','','','','','',NULL,'archlinux, and ansible playbooks.','A7','','','','Y','Y','Y','Y','','','','','','Y','','','','','','','','','','A2','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A1','','I don\'t currently have the time to maintain packages. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2456,'1980-01-01 00:00:00',5,'en','80806174','A5','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','its concept intrigued me','','','','','','','Y','','','','','','','','Y','Y','Y','','','','A2','A3','A7','','','','','','','','A5','A8','A7','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A9','A17','A3','A24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','no reason to contribute','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','like nix, its concept intrigued me. so i installed it for something to do, and ended up in a place where i want to use alpine linux for its minimalism as i have terrible hardware, yet want to use nixos because it\'s usually a pleasure to use. it\'s nice to git clone your config and have a full system up and running in 5 minutes','Y','','','','','','','declarative configuration','starting from a clean slate on every boot','the ability to roll back to a previous known-good configuration','systemd to something else, such as s6, glibc to musl, github to something else, preferably hosted in house','alpine linux','Y','','','','','','','','','','awesome','home-manager\r\nlorri','','focus on flakes'),(2457,'1980-01-01 00:00:00',5,'en','1822485645','A5','A2','male','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A4','A3','','','','','','','','','','','','',NULL,'','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A26','A2','A6','','','','','','','','','','','','','','','','','','','A26','','','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A2','','Y','','Y','','','','','knowing exactly what I configured and installed on my system','Easy rollbacks','config de-duplication across systems','','arch linux','Y','','','','','','nixinate','','Y','','','','',''),(2458,'1980-01-01 00:00:00',5,'en','570914145','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Hate dealing with dependences in homebrew or other package manager.','Y','Y','','','','','Y','Y','','Y','','','','','Y','Y','Y','','','','A1','A2','A6','','','','','','','','A13','A3','A6','','','','','','','','','','','','',NULL,'homebrew on macOS and arch linux','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A13','A25','','','','','','','','','','','','','','','','','','','','A14','A13','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Don\'t know where to start','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A1','Because I use nix on macOS.','Y','','Y','','','','','Declarative configuration','Nixpkgs modules','','Improving discoverability of options','Arch','Y','','','','','','nixinate','','Y','','','','','Need improvements on the language. Modules or other way of organising codes need to be builtin the language. Better support of tooling around the language such as language server.'),(2459,NULL,1,'en','668719525','A2','A3','male','','','','','','Y','','','','','Y','','','','','','','Y','','Y','','','','Y','','Y','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2460,'1980-01-01 00:00:00',5,'en','1587643187','A8','A6','male','','','','','','','Y','','','','','','','Y','','','','','','','','','','','','','','Y','Y','Y','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I want full control over the software I run. All other Linux distributions have a poor model for achieving this.','Y','Y','','','','','Y','Y','','','','','','','','','Y','','','','A1','A2','A6','','','','','','','','A8','A12','A2','','','','','','','','','','','','',NULL,'GUIX.','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','A3','A5','A7','A2','A13','A15','A9','','','','','','','','','','','','','','','A5','A19','A1','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I don\'t override the existing nixpkgs definitions all that much.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','I use it to configure a small fleet of Raspberry Pis I run in a home lab. I then also started using nix-darwin and home-manager to manage my macOS laptop.','Y','','Y','','','','','A single, consistent, declarative configuration language.','Safe rollback.','Reproducible deployment.','FreeBSD support.','GUIX.','Y','','','','','','','','','','','nix-darwin\r\nhome-manager','Direct use of channels (I always use flakes).','Keep going.'),(2461,'1980-01-01 00:00:00',5,'en','2053089778','A2','A3','male','','','','','','Y','Y','','','','','','','Y','','','Y','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','Y','','','Y','','Y','','Y','Y','','Y','','Y','Y','Y','Y','','','','A1','A2','A4','','','','','','','','A8','A6','A13','','','','','','','','','','','','',NULL,'Debian Gnu/Linux with Docker, managed over Ansible.','A2','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A13','A15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I tried NixOS when I had to reinstall an OS on my private laptop after I broke my Frankenbian setup there again.','Y','Y','Y','Y','','Y','','Declarative configuration','Portability of configuration between different machines or even architectures (x86_64 vs. aarch64)','Generation rollback in case of misconfiguration or other mishaps','improve remote builder protocol','Debian Gnu/Linux','Y','','Y','','','','','','Y','','','','NixOps','Thanks for all the hard work!'),(2462,'1980-01-01 00:00:00',5,'en','1862528731','A8','A4','male','','','','','','','Y','','Y','Y','Y','','Y','Y','','','','','','','','','','','','','','Y','Y','','','N','Y',NULL,NULL,NULL,NULL,NULL,'','','','','','','Y','','Y','MacOS support, iOS building support','','','','','','','','','','','','','','Y','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2463,'1980-01-01 00:00:00',5,'en','330420717','A2','A4','male','','','','Y','','','','','','','','','','','','','','','','Y','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Ubuntu didn\'t do it','Y','','','Y','Y','','Y','','','','','','','Y','Y','Y','Y','','Y','','A1','A3','A10','','','','','','','','A5','A8','A13','','','','','','','','','','','','',NULL,'arch','A4','','','','Y','Y','','','','','','','','','','','','Y','','','','','','A2','A21','A1','A9','','','','','','','','','','','','','','','','','','A2','A1','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','documentation about effective and efficient debugging','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','','','','','','','# of packages','Possibilities to adjust packages/inputs/elements','','structured and clear documentation for debugging\r\nproper python support !','arch','','','','','','','','','Y','','','','proper docu',''),(2464,NULL,2,'en','373005337','A2','A3','male','','','Y','','','Y','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A7','was curious to see why nixos is mentioned often by linux users, but i never saw anyone who using it in production or desktop','','Y','','','','','','Y','','','','','routers','','','','Y','','','','A2','A7','A1','','','','','','','','A5','A14','','','','','','','','','','','','','',NULL,'chef or ansible','A4','','','','','','','','','','','','','','none','','','','','','','','yet none','A2','','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','i am not yet competent',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2465,'1980-01-01 00:00:00',5,'en','95705183','A8','A4','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I tried Nixos because I was intrigued by the idea of a totally declarative system configuration that built from source but had effective caching.','','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A1','A10','A9','','','','','','','','A9','','','','','','','','','','','','','','',NULL,'','A7','','','','','Y','','','','','','','','','','','','','','','','','','A15','A2','A7','A3','A4','','','','','','','','','','','','','','','','','A15','A7','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','','','','','','fix the lack of pull request reviewers so that the backlog could be cleared and my old PRs wouldn\'t be stuck in limbo forever','','Y','','','','','','','','','','bspwm','','',''),(2466,'1980-01-01 00:00:00',5,'en','2088367309','A2','A4','male','','','','','','','','','','','','','','','','','','Y','Y','Y','','Y','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A4','','Y','','','A7','','','Y','','','','','Y','','','','','','','Y','','','','','','','A1','A10','A6','','','','','','','','A5','A14','A9','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','','N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2467,NULL,1,'en','1860555523','A2','A3','male','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2468,'1980-01-01 00:00:00',5,'en','2112144387','A2','A3','male','','','','','','','','','','','','','','','','','','','','Y','','Y','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','Y','Y','','Y','','','Y','Y','Y','','','','A2','A3','A6','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Ansible ','A5','Y','','','Y','','','','','','','','','','','Y','','','','','','','','A2','A1','A4','A10','A26','A15','','','','','','','','','','','','','','','','A2','A10','A1','','','','','','','','','','','','','','','','','','','','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','Y','Y','Y','Y','','Y','','','','','','','','','','','','Y','','','','','I3','','',''),(2469,NULL,1,'en','1126135070','A5','A4','male','','','','','','Y','','','','','','','','','','','Y','Y','','','','Y','','Y','','','','Y','Y','','OpenBSD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2470,NULL,2,'en','1832126999','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','','','','A1','It seems the \"right\" tool to describe software properly ','','Y','','','','','Y','','','','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','','','','','','','','','','','','','','','',NULL,'','A4','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A15','A13','A2','','','','','','','','','','','','','','','','','','','','','','','A2','','Low experience in the overall system',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2471,'1980-01-01 00:00:00',5,'en','17325679','A2','A3','male','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A2','I wanted to build the latest version of Zig (a programming livestream) but it requires LLVM which is a pain to get to build/link properly normally. I looked at the creator\'s previous livestreams and saw he was using Nix, so checked it out.','Y','Y','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A3','A2','A1','','','','','','','','A4','A5','A8','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A22','','','','','','','','','','','','','','','','','','','','','A22','A9','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','I have no idea how and I am not sure I would want to become responsible for it','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A2','','Y','','','','','','','','','','','','','','','','','','','','','','','','','Nix flakes is really painful for large repos, and it stops me using it at work (a monorepo)'),(2472,'1980-01-01 00:00:00',5,'en','1312585233','A5','A7','male','','Y','','','Y','','','','','','','','','','','','','','','','Y','','','','','','','','','','linux on chromebook','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','I started using Nix in about 2016 to have access to a package manager at Los Alamos National Laboratory (LANL). At LANL users aren\'t allowed to have root access and the technical software is generally way out of date and or broken. Nix enabled me to build an up to date development environment. I quit LANL in 2020, but I\'ve continued using Nix.','','','','','','Linux on chromebook','Y','Y','','','Y','','','','Y','','Y','','','','A2','A7','','','','','','','','','A14','','','','','','','','','','','','','','',NULL,'Debian','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A3','A21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A2','','In order of importance, I am missing: 1. Expertise; 2. Confidence; 3. Time.','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A5','','','','','','','','','','','','','Debian','Y','','','','','','','','','Y','','','','Thanks'),(2473,'1980-01-01 00:00:00',5,'en','336268602','A2','A3','male','','','','','','Y','Y','','','','','','','','','','','','','','','','','Y','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I got fed up with ASDF and Homebrew','Y','','','','','','Y','Y','','','','','','','Y','Y','Y','','','','A2','A1','A3','','','','','','','','A5','A8','A4','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','Y','','Y','','','','A24','A23','A15','A13','A22','','','','','','','','','','','','','','','','','A23','A24','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'N','N','I use NixOS on servers, but on my daily machine I prefer Darwin/macOS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',''),(2474,NULL,NULL,'en','1184993644',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2475,NULL,1,'en','1123532062','A2','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','It was mostly personal interest. The Nix way was very unusual, but some of the features caught my attention, mainly declarative package management and the ability to have only one place for all system configuration. Now I\'m using NixOS as my daily driver, currently learning to use flakes and make packages.','','Y','','','','','Y','','','','','','','','Y','Y','Y','','','','A1','A3','A7','','','','','','','','A5','A14','A8','','','','','','','','','','','','',NULL,'Arch or Void Linux, or maybe even Fedora','A2','','','','Y','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Still learning the ropes','Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A1','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL),(2476,NULL,3,'en','1646609034','A5','A5','male','','','','','','Y','Y','Y','Y','Y','Y','','Y','','','','','Y','','','','','','Y','','','','Y','Y','','','N','N','','','','Y','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','N','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2477,'1980-01-01 00:00:00',5,'en','908280472','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','','','Cybersecurity Specialist','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','Because of the recent popularity in youtube ','','Y','','','','','Y','','','','','','','Y','Y','Y','Y','','','','A2','A3','A1','','','','','','','','A9','A11','A14','','','','','','','','','','','','',NULL,'','A1','','','','Y','Y','','','','','','','','','','','','','','Y','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','A9','A18','','','','','','','','','','','','','','','','','','','','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','','Y','','','','','','','','','','','','Y','','','','','','','','','','Hyprland ','','',''),(2478,'1980-01-01 00:00:00',5,'en','363094466','A2','A4','male','','','','','','Y','','','','','','','','','','','','','','','','','','Y','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A3','I love declarative, reproducible Systems.','Y','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A7','A3','','','','','','','','A6','A5','A4','','','','','','','','','','','','',NULL,'I\'d check out guix but I\'m not sure if it\'s comparable. ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Time, and knowledge ','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','I like to be able to restore my system from a declarative description. I hate to document procedures. ','Y','','Y','','','','','','','','A language less confusing than nix','Guix','Y','','','','','','Bento','','','Y','I3','Bento','',''),(2479,NULL,2,'en','1827816011','A8','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A7','Recommend it by the Linux Unplugged Podcast, wanted to try it out.','','Y','','','','','Y','Y','','','','Y','','Y','','','Y','','','','A1','A3','','','','','','','','','A14','A5','A6','','','','','','','','','','','','',NULL,'Ansible','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2480,'1980-01-01 00:00:00',5,'en','599662050','A5','A3','male','','','','','','','','','','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A3','Wanted a self-documenting server that I could redeploy with easy','','Y','','','','','Y','Y','','','','','','','Y','','Y','','','','A2','A1','A7','','','','','','','','A5','A14','A4','','','','','','','','','','','','',NULL,'Ansible + Tumbleweed/MicroOS','A1','','','','Y','Y','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','Spare time and learning resources','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Hearing accounts from the Jupiter Network podcasts about a reproducible environment and getting tired of servers that I slowly forgot what changes I made over the years','','','Y','','','','','One config file','Reproducible systems','High package availability','Less boilerplate for ZFS enablement, better documentation (Such as more details on what options do for certain services, and examples of those services for several use cases), make flake/nix-command enablement default, better secret management that doesn\'t rely on external flakes (E.g. sops, agenix)','A combination of either Tumbleweed or Alpine, with Ansible','Y','','','','','','','','Y','','','','',''),(2481,'1980-01-01 00:00:00',5,'en','41277758','A5','A3','male','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Full declarative management of my configuration was the start -- being able to use it on macOS as well as NixOS has been a revelation. ','Y','','','','','','Y','Y','','','Y','','','Y','Y','Y','Y','Y','Y','','A1','A6','A2','','','','','','','','A14','A5','A8','','','','','','','','','','','','',NULL,'Homebrew, Ansible.','A2','','','','Y','Y','','','','','','','','','','Y','','','','Y','','','','A2','A9','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Same as nix in general -- declarative management.','Y','','Y','','Y','','','Declarative management','Easy reversion of configuration','Modules','Improve documentation','macOS, Windows?','Y','','','','Y','','','','Y','','','sops-nix, home-manager, Jovian-NixOS','',''),(2482,'1980-01-01 00:00:00',5,'en','1103462222','A5','A2','male','','','','','','','','','','','','','','','','','','Y','','','','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','Y','','A3','I first used `nix` because I wanted to try NixOS.\r\nThen, I started using `nix` to build my projects and (relatively) easily automate their builds with my own hydra instance.\r\n','','Y','','','','','Y','Y','Y','','','','','','Y','Y','Y','','Y','','A10','A2','A3','','','','','','','','A8','A9','A12','','','','','','','','','','','','',NULL,'There is no equivalent alternative that I know of. (except for Guix ;)\r\nFor ad-hoc environments, I would use `distrobox`.','A4','','','','Y','Y','','','','','','','','','','Y','','','','','','','','A15','A2','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A3','My Debian server was starting to get hard to manage. I was sometimes afraid to make major version upgrades, because I did not know which config files I changed in case I had to reinstall. My docker-compose setup was starting to get messy and hard to maintain.\r\n\r\nThe \"define all the system from a single place\" aspect of NixOS was what brought me to it.\r\n\r\nThe first time I installed NixOS was on a Raspberry Pi 4 from an ISO I built on Alpine Linux (on that same machine).\r\n`nixos-install` being able to install NixOS from any system capable of running `nix` was very nice to learn.','Y','Y','Y','','','','','Version-controllable whole-system configuration','Easy custom patches to packages (overlays and overrides)','Atomic upgrades','Add:\r\n- Incremental upgrades to reduce (re)download size (also for the nixpkgs source tarball)\r\nChange:\r\n- Less RAM usage from the initial `nix search`','Docker-compose, and maybe Ansible, on either Debian or Alpine Linux.','Y','','','','','','','','Y','','','agenix','I stopped using `nix-env` to search for packages. It was too slow and gobbled too much RAM. Especially compared to the new `nix search` when it\'s using the eval cache.','Even if imperfect, NixOS is so good it made me stop distro-hopping. I can\'t go back to imperative package management.\r\n\r\nBTW, thank you for taking the time to read free-form survey answers :)'),(2483,'1980-01-01 00:00:00',5,'en','255970825','A5','A5','male','','Y','Y','Y','','Y','Y','Y','','','','','','','','Y','','Y','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Needed to auto update linux nodes with packaged software','Y','Y','','','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A1','A2','A3','','','','','','','','A9','A8','A11','','','','','','','','','','','','',NULL,'Don\'t know','A1','','','','','','','','','','','','','','','Y','Y','','','Y','Y','','','A24','A1','A2','A3','A4','A5','A7','A9','A10','A11','A14','A15','A17','A13','A18','A20','A21','A23','','','','A24','A20','A19','','','','','','','','','','','','','','','','','','','Y','Y','','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A5','','Y','Y','Y','Y','','','','','','','','','Y','','Y','Y','','','','Y','','','','','',''),(2484,'1980-01-01 00:00:00',5,'en','1299868131','A3','A2','male','','','','','','','','','','','','','','','','','','','','','','','','','Technical Suport','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','','Y','','','A7','Because i wanted to get the latest software and nix looked really rolling release.','','Y','','','','','Y','','','','','','','','','','Y','','','','A1','','','','','','','','','','A1','A4','A5','','','','','','','','','','','','',NULL,'Arch Linux','A7','','','','','','','','','','','','','','','','','','','','','','','A1','A2','A15','A9','A17','','','','','','','','','','','','','','','','','A1','A2','A14','','','','','','','','','','','','','','','','','','','','','','','A2','','I am still configuring everything in my laptop, also i am still learning everything nix-related ( have not idea what are flakes for ).','Y',NULL,NULL,NULL,NULL,'A2','','Y','','','A1','Because it seemed complicated and i love difficult things xD. Plus i wanted to build my OS from scratch and NixOS seems very hacky.','Y','','','','','','','Big package repository','My system is configured in a file','User environment installs','','Arch Linux','Y','','','','','','','','','','Window Manager specifically Hyprland','Home Manager','','Thank you all for the hard work, will the OS support the niquel language after all? . '),(2485,'1980-01-01 00:00:00',5,'en','480455558','A5','A3','male','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Guy at work wouldn\'t shut up about it until I tried it out. Installed on a separate hdd on my personal desktop, worked on it until it could do everything I needed and haven\'t switched back. Still using the same install from 2020. ','Y','','','','','','Y','Y','','','','','','','Y','','Y','','','','A7','A1','A2','','','','','','','','A4','A5','A9','','','','','','','','','','','','',NULL,'Bash scripts and make files ','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A20','A1','A18','A3','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','A2','','Nothing significant to contribute. I never run into bugs or missing configuration items. I don\'t maintain software that would go in nixpkgs','Y',NULL,NULL,NULL,NULL,'A1','','Y','','','A3','Same story as before. Guy at work hounded me about it until I used it. ','Y','','Y','','','','','Services configuration for home server ','Roll back changes when I break my config','Portability of my config between desktop and laptop','Faster nix search command, not much to complain about. ','Arch Linux ','Y','','','','','','','','','','Lxde','','',''),(2486,NULL,1,'en','1076597130','A2','A4','male','','','','','','','','Y','','','Y','','','','','','','','','Y','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2487,NULL,1,'en','798872031','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2488,NULL,NULL,'en','383740348',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2489,NULL,NULL,'en','1364775669',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2490,'1980-01-01 00:00:00',5,'en','1024978083','A2','A5','male','','','','','','','','','','','','','','','','','','','','','','','','','Software architect','','','','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I originally tried it a few years ago to install and manage my son\'s PC.\r\nLately (more than 1 year ago), I started using it more broadly, all my workstations, home and work, are installed based on a personal flake.\r\nThe flake is in charge of the install media and all workstations\' deployments.','','','','','','','Y','Y','','','','Y','','Y','Y','Y','Y','','Y','','A2','A3','A5','','','','','','','','A8','A5','A14','','','','','','','','','','','','',NULL,'Guix','A7','','','','Y','','','','','','','','','','','','','','','','','','','A25','A17','A13','','','','','','','','','','','','','','','','','','','A17','A15','A9','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','Time, blended family, 7 children.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Same story than for Nix.','Y','','Y','','','Y','','\"Reproducible builds and deployments.\" is exactly what I want. I cannot spare time on things that breaks apart after a while.','Tweaking pkgs when I need to.','Eventually starting custom packages right from the code source.','Documentation, documentation, documentation.','Guix','Y','','','','','','home-manager','','','','XMonad','home-manager','','I just want to thank the whole Nix/NixOS community and in particular Eelco Dolstra for the impressive work that has been done so far.'),(2491,NULL,NULL,'en','1926216767',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2492,'1980-01-01 00:00:00',5,'en','329344375','A8','A4','male','','','','','','','','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A7','Heard about it from the Linux Unplugged Podcast, and liked the idea of a reproducible config driven OS.','','Y','','','','','Y','','','Y','','Y','','Y','','','Y','','','','A7','A1','A10','','','','','','','','A5','A14','A6','','','','','','','','','','','','',NULL,'Ansible','A4','','','','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','','','','','A1','','Not enough knowledge yet','Y',NULL,NULL,NULL,NULL,'A2','Y','Y','','','A1','','Y','','Y','Y','','','','Reproducible ','Roll back capability ','','Not sure yet, I’m only new to NixOS','Debian','Y','Y','','','','','','Y','','','','','','Really enjoying learning NixOS, it’s a refreshingly different approach to Linux. Even small wins are fun. '),(2493,'1980-01-01 00:00:00',5,'en','1498395137','A2','A2','male','','Y','Y','','','','Y','','Y','','Y','','','','','','','Y','','','Y','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A2','','','Y','','','','','Y','Y','','Y','','','','Y','Y','','Y','','','','A2','A1','A7','','','','','','','','A6','A3','','','','','','','','','','','','','',NULL,'On the OS-level: Arch for home machine and debian for servers\r\n\r\nDocker to build images / packages and package applications with their dependencies','A5','','','','','Y','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','A7','','','','','','','','','','','','','','','','','','','','','Y','','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A2','Y','','','','A3','','','Y','','Y','','','','','','','simple way to build previous version of a package, i.e. using a specific nixpkgs commit to build only one single package but nothing else, meaning the channel stays untouched','arch and debian','Y','','','','','Y','','','','','','https://search.nixos.org/','NixOps, unfortunately... I\'d like to see it improved and ready for productive use','you folks are doing a great job <3'),(2494,NULL,NULL,'en','473999000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2495,NULL,NULL,'en','2074348859',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2496,'1980-01-01 00:00:00',5,'en','643743688','A2','A2','male','','','','','','','','','','','','','','','','','','','','','','','Y','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Started with NixOS and fell in love with the isolated installs of packages specific to whatever directory I\'m currently in.','','Y','','','Y','','Y','','','','','','','','Y','','Y','','','','A1','A3','A7','','','','','','','','A4','A5','A14','','','','','','','','','','','','',NULL,'Guix','A1','','','','Y','','','','','','','','','','','','','','','','','','','A1','A2','A5','','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','','Y','Y','','A2','Liked the concept of having a unique approach to setting up your system where everything is neatly declared in files.','Y','','','','','','','Deterministic system configuration','Per directory package installation','Large package repository','Add more documentation','Guix','Y','','','','','','','','','','I3','Home manager, nix-direnv','',''),(2497,'1980-01-01 00:00:00',5,'en','347209105','A2','A3','male','','','Y','','','Y','Y','','','','','','','','','','','Y','','','','','','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Managing my dotfiles was too difficult. At first I decided to use home-manager to replace Linuxbrew, then my usage grew to replace my dotfiles management.\r\nMy plan is to get experience on my laptop to allow me to use it comfortably in a server setting, to build my personal server.\r\nI\'m also introducing it in my personal and work project to manage development environments.','','Y','','','','','Y','Y','Y','','','','','Y','Y','','','','','','A1','A2','A7','','','','','','','','A8','A3','A4','','','','','','','','','','','','',NULL,'Ansible, Homebrew/Linuxbrew, chezmoi, shell scripting ','A2','','','','Y','','','','','','','','Y','','','','','','','Y','','','','A9','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','','','','A2','','I did in a couple of occasions, the complexity of nix makes it a bit daunting. I still don\'t feel comfortable enough with my Nix experience but I hope to get better and contribute!','N','N','Building my home server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kubernetes','','Thank you!'),(2498,NULL,2,'en','1681568824','A3','A4','male','','','','','','','','','','','','','','','Y','','','Y','','','','','','','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A1','I own a School of music, where every room is a home studio, to record the classes, and produce music, I tried Nixos a year ago, cause is easier to make every machine with the same configuration etc, Im backing to nixos in this last months, im my home and in my work, I dont know if I can manage to solve somre problems in Nixos, its not an easy task to me, im just a musician, composer and business man, I thin nixos is not so easy for people like me, but im trying','','Y','','','','','Y','','','','','','','Y','','','','','','','A1','A2','A7','','','','','','','','A5','A14','A10','','','','','','','','','','','','',NULL,'flatpak','A4','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2499,NULL,1,'en','1998523259','A6','A2','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','','','Y','','','Y','Y','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2500,'1980-01-01 00:00:00',5,'en','616505868','A2','','','','','','','','Y','','','','','','','','','','','Y','Y','','','','Y','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','As a Gentoo user, the reproducability piece just made more sense','','Y','Y','','Y','','Y','Y','Y','Y','Y','','','Y','Y','Y','Y','Y','Y','','A2','A6','A8','','','','','','','','A6','A7','A8','','','','','','','','','','','','',NULL,'Gentoo & mgmt','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A15','A10','','','','','','','','','','','','','','','','','','','','A15','A9','A10','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','Duplicate question','Y','Y','Y','Y','Y','','','Flakes + home-manager + pinned inputs -> reproducable system & user configurations','Pre-built and inspection of system configs via VMs','daily driver for all my desktop software needs','','','','','','','Y','','nixos-anywhere','','','Y','hyprland','','','Thanks for all the Work. NixOS makes my life much easier!'),(2501,NULL,2,'en','1141851760','A3','A4','male','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','Gaming','A7','','','Y','','','','','Y','','','','','','','','','','Y','','','','A2','A7','A10','','','','','','','','A8','A13','A5','','','','','','','','','','','','',NULL,'','A4','','','','','','','','','','','','','','','','','','','','','','','A8','A4','A3','A2','A15','','','','','','','','','','','','','','','','','A8','A15','A4','','','','','','','','','','','','','','','','','','','','','','','A1','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2502,'1980-01-01 00:00:00',5,'en','796116231','A2','A3','-oth-','NB','Y','','','','','','','','','','','','','','','','Y','','','Y','','Y','Y','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A3','I started out wanting to have a reproducible environment for a molecular simulations course.\r\nAfter a couple months I installed nixOS.','','Y','','','','','Y','Y','','','','','','Y','Y','Y','Y','','','','A1','A2','A9','','','','','','','','A6','A8','A5','','','','','','','','','','','','',NULL,'Probably guix','A2','','','','Y','Y','Y','Y','','','','','Y','','','Y','','','','','','','','A2','A15','','','','','','','','','','','','','','','','','','','','A25','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','As a sysadmin I was really intrigued by the declarative configuration interface.','Y','','Y','','','','','Declarative OS configuration','Home manager ','`nix shell` for one-off program usage','I would add support for secrets','GNU guix','Y','','','','','','','','','','sway','','','Thanks to everyone in the nix community.\r\n\r\nI would love proper Julia support for nix.'),(2503,'1980-01-01 00:00:00',5,'en','1898985120','A2','A3','male','','','','','','','','','','','','','','','','','','','','','','','','','Developer experience','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Peer pressure from friends :\')','Y','Y','','Y','Y','','Y','','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A6','A7','A4','','','','','','','','A8','A12','A9','','','','','','','','','','','','',NULL,'Guix','A2','Y','Y','Y','Y','Y','','','','','','Y','','Y','','Y','','','','Y','','Y','','A13','A15','A14','A1','A2','','','','','','','','','','','','','','','','','A14','A13','A1','','','','','','','','','','','','','','','','','','','Y','Y','Y','','A6','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','Peer pressure from friends :\')','Y','Y','','Y','','','','Rollbacks (particularly the ability to choose an old generation in Grub menu)','GC /nix/store (by that I mean the ability to download a lot of developer environments on my machine without carrying about disk space)','Ease of systemd management (NixOS is a first distribution that makes writing a systemd service simple to me)','- remove the callPackage design pattern in nixpkgs, and replace it by proper types or builtins constructs ;\r\n- makes nix-daemon smaller, simpler, with fewer features but more stable and well documented ;\r\n- put new users on the track to learn Nix language before discovering NixOS options which confuse the understanding of the simple syntax of this well-made language ...','Guix','Y','Y','','','','Y','','','','','Sway','Haskell.nix, flake-utils, oxalica\'s rust overlays, cachix, etc …','LSP implementations … I hope someday to have a default / officially maintain IDE support for Nix :)','Nix is one of the greatest tools I used in the past year, and community survey is a really good practice! Keep going the good work :)'),(2504,NULL,1,'en','1301828115','A2','A3','male','','','','','','','','Y','','','','','','','','','','Y','','','','','','','','Y','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2505,'1980-01-01 00:00:00',5,'en','1112624773','A2','A4','male','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A2','Y','Y','','','A6','','','Y','','','','','Y','Y','','','','','','Y','Y','','Y','','','','','','','','','','','','','','A6','A10','','','','','','','','','','','','','',NULL,'','A4','','','','Y','Y','','','','','','','','','','','','','','','','','','A4','A3','A15','A1','','','','','','','','','','','','','','','','','','A1','A2','','','','','','','','','','','','','','','','','','','','Y','','','','A1','','I did in the past.\r\nNo time to allocate to Nix lately.','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A6','','Y','','Y','','','','','Modularity','Services','','Make all services a turn-key solution for the most basic/default use cases.','','Y','','','','','','','','','','AwesomeWM','None','',''),(2506,'1980-01-01 00:00:00',5,'en','1190297570','A5','A3','-oth-','Non-binary','','','Y','','','','','','','','','','','','','','','','','','','Y','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A7','I\'m a computer science student, and I work as a system administrator by day, so I\'m interested in new technology, and I\'m interested in learning new programming languages. However, I don\'t always have the motivation to learn a new language. With NixOS, you have to learn the language or your system either won\'t work or won\'t work as you\'d like, so that\'s a great motivator. I\'m also fascinated by the immutability and atomicity of NixOS, which I didn\'t even know was possible until coming across it. I have been using Linux for maybe two or three months now, after I became disenchanted with the lack of control Windows gave me. I started on Ubuntu, as I\'m sure most people do, and I used that occasionally for about a week. I then moved to Mint (I liked Cinnamon), which I used for about a month. Then I intermittently, frustratedly, installed Arch. A constant sticking point for me was that it doesn\'t support ZFS by default, and it is an enormous pain to try to set up on Arch, although it\'s possible. I liked Arch because it was barebones when you started out with it and you could customize it completely. Although NixOS has a bit more built-in, it still feels just as customizable, if not more so, but since I just started using it a few days ago, I am still learning all the ways to customize and configure it. I have managed to successfully install ZFS on NixOS with Flakes with RAIDZ1, though, and I\'m super happy about that. :) I used a combination of resources to achieve this, and if I\'m being honest, it took a lot of persistence and retries before I could manage it. But I\'m so glad to be here now that it\'s done!','','Y','','','','','Y','','','','','','','','','','Y','','','','A7','A2','A1','','','','','','','','A4','A8','A3','','','','','','','','','','','','',NULL,'Arch, no question. Arch and Nix are so far the only Linux distributions I have tried (out of Ubuntu, Mint, Alpine, Arch, and Nix) that have really resonated with me and fulfilled my desire for near-total control of my machine.','A4','','','','Y','Y','','','','','','','','','','','','','','','','','I honestly don\'t know what this means.','A2','A5','','','','','','','','','','','','','','','','','','','','A2','','','','','','','','','','','','','','','','','','','','','','Y','','','A1','','I don\'t know enough about Nix to contribute yet. I started using it three days ago. I\'m also nervous about whether I will stick with it long-term if I\'m being honest. It took me about two full days to install a system that I was happy with that had ZFS support and a hostname I liked and the core programs I want. I sort of enjoyed the challenge of learning a language at the same time that I was building a new system since it was over the weekend, but I\'m not sure if I can deal with that sort of challenge if I\'m in the middle of a workday, you know?','Y',NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A1','','','','','','','','','','','','','','','','','','','','','','','','','','Teams. Both of the versions that I tried did not work and I didn\'t have the patience to troubleshoot them, so I just use the web version now--but I do still hope to get a working version of a dedicated application installed at some point.',''),(2507,'1980-01-01 00:00:00',5,'en','964639962','A5','A4','male','','','','','','','','','','','Y','','','','','','','Y','','','','','','','','Y','Y','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','I was very interested in Haskell years ago. Stumbled across Nix in some repos, and everything just clicked. Such an easy way to setup software.\r\nI\'ve since used Nix in anger, and run all my systems with NixOS. Except a Windows dualboot for gaming.\r\nIt feels like knowledge that actual builds atop previous knowledge, it\'s sublime and hard to explain if you don\'t already get it','','Y','','Y','Y','','Y','Y','Y','Y','','','','Y','Y','Y','Y','Y','Y','','A2','A7','A5','','','','','','','','A8','A6','A2','','','','','','','','','','','','',NULL,'I don\'t want to consider this possibility\r\nI\'d probably switch careers and tune pianos','A2','','','','Y','Y','','','','','','','','Y','','Y','','Y','Y','Y','','','','A13','A1','A25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','After finding Nix, NixOS seemed like a no-brainer.\r\nBack in my day we didn\'t have a graphical installer, and we partitioned memory ourselves! It sucked and was annoying but I learned a lot.\r\nHaving my whole config setup between two files, configuration.nix and home.nix, was incredible.\r\nI\'ve since branched out to have my multiple systems specified with flakes, the power is intoxicating.','Y','Y','Y','Y','','','','The same developer experience everywhere','Fine-grained control of software that is installed, along with traceability','Rollbacks. When I inevitably mess something up, and don\'t have time to fix, I can live in an earlier snapshot for weeks till I can address the problem.','I would magically get a better desktop with AMD, because NVidia graphics are a pain','If NixOS suddenly didn\'t exist I would be compelled to create it','Y','','','','','Y','','','Y','','none+XMonad','dream2nix','','Nix rules, it\'s worth whatever pain you think it\'ll cause. Everyone is friendly, just ask questions on Discourse!'),(2508,'1980-01-01 00:00:00',5,'en','57703485','A2','A3','male','','','','','','','','','','','Y','','','','','','Y','','','','','Y','','','','','','','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A3','Y','','','','A3','Because we wanted to use nixos for our servers','Y','Y','','','Y','','Y','','Y','Y','','','','Y','Y','','Y','Y','','','A2','A1','A10','','','','','','','','A8','A4','A2','','','','','','','','','','','','',NULL,'I don\'t even want to imagine a world without nix','A4','','','','Y','Y','','','','','','','','','','','','','Y','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A1','','We do not have anything to upstream yet','Y',NULL,NULL,NULL,NULL,'A1','Y','','','','A3','I was really fed up with the mess of imperative server/service management. At work we were using ansible. All the lineinfiles and other nonsense, including lack of certainty that all aspects of systems are managed in code, made me uneasy about reproducibility and security of our systems. Adopting terraform and k8s solved part of the problem, but due to nature of our work we cannot run exclusively in big clouds with managed k8s. So we need a way to run k8s ourselves.\r\n\r\nInitially I was looking into Fedora CoreOS. But it didn\'t really seem prod ready or that convenient. Then I found out about nix/nixos and it\'s a godsend. For the first time ever I feel really good and really sure about our infra, it\'s a similar change compared to traditional OSs as clicking in cloud consoles vs using terraform, but to an even larger extent.\r\n\r\nThe combination of nixos for the OS layer, hosting k8s and all stateful services (DBs/object storage) is perfect for us. I feel more at ease when stateful services are outside k8s, this means that even if we get a cluster to a very bad state we can always kill all of it and recreate. k8s with e.g. fluxcd is more convenient to keep in sync with code than nixos – you can always lock yourself out with changes, and it\'s better have SREs manage deployments. So we end up using nixos for things that change rarely and k8s for things that change more often. I really like this setup.','','','','Y','','','','Declarative configuration','Stable builds','Reusable config across machines','Haven\'t used it enough to notice any pain points','I\'d sit in a corner and cry (I\'m only slightly joking)','','','','Y','','','','','','','','-','-','THANK YOU!!'),(2509,'1980-01-01 00:00:00',5,'en','1587308059','A2','A4','male','','','','','','','','','Y','','','','','','','','','Y','','','','','','','','','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','','Y','','','','','Y','Y','','','','Y','','','Y','Y','Y','','','','A2','A6','A7','','','','','','','','A6','A8','','','','','','','','','','','','','',NULL,'guix','A1','','','','Y','Y','','','','','','','','','','Y','','Y','','','','','','A4','A15','A1','A2','A17','','','','','','','','','','','','','','','','','A15','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A3','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A3','','Y','','Y','','','Y','','','','','','guix','Y','','','','','Y','','','','','swaywm','','',''),(2510,NULL,2,'en','284312408','A2','A2','male','','','','','','','Y','','Y','','','','','','','','','Y','','','','','Y','Y','','Y','Y','Y','Y','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','Y','Y','Y','','A4','TODO:','Y','','','Y','','','Y','Y','','Y','','','','Y','Y','Y','Y','','Y','','A2','A3','A4','','','','','','','','A6','A10','A4','','','','','','','','','','','','',NULL,'','A7','','Y','','Y','Y','Y','Y','Y','','','','','','','','Y','','','Y','','','Gitea Actions','A15','A14','A1','A9','','','','','','','','','','','','','','','','','','A1','','','','','','','','','','','','','','','','','','','','','Y','Y','','','A2','','Dont have the time and energy to commit to maintaining something as public as on Nixpkgs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2511,NULL,3,'en','726371132','A2','A3','male','','','','','','Y','Y','','','','','','','','','','Y','Y','','','Y','','','Y','','Y','','Y','','','','Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A1','','Y','','','A4','','','Y','','','','','Y','','Y','Y','','','','','Y','Y','Y','','','','A2','A1','A7','','','','','','','','A5','A13','A3','','','','','','','','','','','','',NULL,'GUIX','A2','','','','Y','Y','','Y','','','','Y','','','','Y','','','','Y','','','','A13','A20','A25','','','','','','','','','','','','','','','','','','','A13','A20','','','','','','','','','','','','','','','','','','','','','','','','A4','',NULL,'Y',NULL,NULL,NULL,NULL,'A1','Y','Y','','','A4','','','','','','','','','','','','','','Y','Y','','','','','','','Y','','',NULL,NULL,NULL),(2512,NULL,1,'en','639963780','A6','A4','male','','','','','','','','','','','','','','','','Y','','Y','','','','','','Y','','Y','','Y','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2513,NULL,NULL,'en','1019670576',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2514,NULL,1,'en','1920791357','A3','A3','male','','','','','','','','','','Y','Y','','','','','','Y','','','','','','','','','','','','Y','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -/*!40000 ALTER TABLE `limesurvey_survey_2023` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_survey_239157` --- - -DROP TABLE IF EXISTS `limesurvey_survey_239157`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_survey_239157` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `submitdate` datetime DEFAULT NULL, - `lastpage` int(11) DEFAULT NULL, - `startlanguage` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, - `seed` varchar(31) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `239157X41X801` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `239157X41X802SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `239157X41X802SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `239157X41X802SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `239157X41X802SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `239157X41X802SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `239157X41X802SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `239157X41X802other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `239157X41X810` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `239157X41X811` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `239157X41X815` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `239157X41X816` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `239157X41X819` decimal(30,10) DEFAULT NULL, - `239157X41X820` decimal(30,10) DEFAULT NULL, - `239157X42X812` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `239157X42X813` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `239157X42X814` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `239157X42X817` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `239157X42X818` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `239157X42X821` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `239157X42X822` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `239157X42X823` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `239157X42X824` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=158 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_survey_239157` --- - -LOCK TABLES `limesurvey_survey_239157` WRITE; -/*!40000 ALTER TABLE `limesurvey_survey_239157` DISABLE KEYS */; -INSERT INTO `limesurvey_survey_239157` VALUES (1,'1980-01-01 00:00:00',2,'en','1085185437','49.85784;8.65128','Y','','','','','','','A1','N','5','5',0.0000000000,0.0000000000,'A1','A2','5','4','1','','It was a great first NixCon for me. Thank you so much!','','A2'),(2,NULL,1,'en','187204625','49.87167;8.65027','','Y','','','','','','A1','N','5','5',0.0000000000,0.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3,NULL,NULL,'en','1886280034',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,NULL,1,'en','2112133349','48.17969;11.23618','','Y','','','Y','Y','','A3','N','','',1.0000000000,0.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(5,NULL,1,'en','1013137213','50.79465;7.0101','','','','','Y','','','A2','N','4','2',0.0000000000,0.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(6,'1980-01-01 00:00:00',2,'en','1789167558','49.87167;8.65027','','Y','','','','','','A1','N','5','5',0.0000000000,0.0000000000,'A1','A2','5','5','5','Almost no volunteers to help with tasks on the event.','Nice atmosphere, approachable people, great venue, excellent catering and amazing orga-team.','ice truck','A2'),(7,'1980-01-01 00:00:00',2,'en','2023730267','48.13743;11.57549','','','','','Y','','','A3','Y','3','3',1.0000000000,1.0000000000,'A2','A3','5','4','2','From the professional side, I feel like last year\'s hiring happy hour was better handled.\r\n1. \"Hiring\" stickers for badges, which helped people know who to approach\r\n2. Right before the scheduled time, ron let people looking for work know where the ones hiring are and how to distinguish them.\r\n\r\nNeither of these seemed to have happened this year, making things for my anti social ass much harder than it already was. It\'s not like my company sent me as a hiring manager, I\'m just a nix nerd and on the side I\'m taking the opportunity to talk to people.','Much nicer venue. Shirts\' quality seemed to be better. Also, food options were a bit more varied, though did not see any dessert :(\r\nGreat vibes too!','Didn\'t get a brick, tho I\'m now the proud owner of some nixcoins (hopefully by next year we are all nixcoin crypto millionaires)','A2'),(8,NULL,1,'en','860008013','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(9,NULL,1,'en','1650249135','49.00937;8.40444','','','','','Y','','','A2','N','5','3',0.0000000000,0.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(10,'1980-01-01 00:00:00',2,'en','489418709','47.36667;8.55','Y','Y','','','Y','Y','','A3','N','4','3',1.0000000000,0.0000000000,'A2','A2','4','4','4','','','','A2'),(11,'1980-01-01 00:00:00',2,'en','1804215168','52.48127;13.383','','','','','Y','','','A3','N','5','5',1.0000000000,1.0000000000,'A3','A1','4','4','4','andi- being grumpy','andi- being happy','','A2'),(12,NULL,NULL,'en','1582023019',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(13,'1980-01-01 00:00:00',2,'en','1534560380','50.3836;8.0503','','','Y','','','','','A1','Y','5','5',1.0000000000,5.0000000000,'A1','A3','5','5','2','Nothing','Catering was awesome.\r\nThe people and atmosphere were great.','Nothing','A3'),(14,'1980-01-01 00:00:00',2,'en','419413777','27.84195;-15.44369','','Y','','Y','Y','','','A7','N','3','1',1.0000000000,1.0000000000,'A2','A2','5','4','1','The hiring happy hour event was too confusing to join','','','A2'),(15,'1980-01-01 00:00:00',2,'en','380496587','52.52701;13.36237','','Y','','','Y','','','A3','N','5','4',1.0000000000,1.0000000000,'A1','A2','4','5','5','The drama around the Anduril sponsorship ','Good food. Well organized. ','','A2'),(16,'1980-01-01 00:00:00',2,'en','101777481','59.91273;10.74609','','','Y','Y','','Y','','A3','Y','3','2',1.0000000000,6.0000000000,'A1','A3','4','4','1','','','','A2'),(17,NULL,NULL,'en','1818917369',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18,NULL,1,'en','726354020','51.93643;5.84035','Y','','','','Y','Y','','A3','N','','',1.0000000000,0.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19,'1980-01-01 00:00:00',2,'en','318422282','49.61747;6.21552','','','','','Y','','','A3','N','3','4',1.0000000000,1.0000000000,'A2','A3','5','4','3','','','','A2'),(20,'1980-01-01 00:00:00',2,'en','635767802','49.67569;9.00373','','Y','','','Y','','','A2','N','5','5',0.0000000000,0.0000000000,'A1','A2','4','4','2','','','','A2'),(22,'1980-01-01 00:00:00',2,'en','1085652664','49.2;16.6','','','','','Y','Y','','A6','N','5','5',1.0000000000,0.0000000000,'A2','A3','4','4','2','','People.','Air conditioning?','A2'),(23,'1980-01-01 00:00:00',2,'en','691951175','51.31366;-0.00875','','','Y','Y','','','','A3','N','','',1.0000000000,0.0000000000,'A4','A3','5','4','1','I think the event should have been larger, lots of people were unable to come since it sold out so fast. There was also not much room for talks (ours was rejected), I think multiple tracks would help that. ','Overall good quality of talks, venue was good, food and drink provision was great. ','','A2'),(24,'1980-01-01 00:00:00',2,'en','780400031','45.50018;9.38782','','','Y','Y','','Y','','A3','N','2','4',1.0000000000,1.0000000000,'A1','A3','4','4','1','- food/catering could be better (quality/organization)\r\n- all the talk in a single track, with almost to pause, i think that having at least two track (even not at the same time) and give some time off (10/15\') between talks helps.','talks/lightening talks','more gadget!','A2'),(25,'1980-01-01 00:00:00',2,'en','405887016','49.19337;16.61447','','','','','Y','Y','','A5','N','4','4',1.0000000000,-0.5000000000,'A2','A2','4','4','3','','','','A2'),(26,NULL,NULL,'en','179865854',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27,'1980-01-01 00:00:00',2,'en','873500570','49.84014;8.81289','Y','Y','','','','','Tram','','','','2',NULL,NULL,'A1','A2','4','5','1','','','','A2'),(28,NULL,NULL,'en','392240229',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(29,'1980-01-01 00:00:00',2,'en','1143289119','52.52437;13.41053','','','','','Y','','','A4','N','3','3',1.0000000000,1.0000000000,'A1','A3','3','5','1','The hackcenter was very loud','- Comfy atmosphere\r\n- Friendly people\r\n- very good lunch\r\n- good selection of drinks','- Something non-sweet (e.g. Pretzels) offered in the morning\r\n- A quiet room (a room where someone can calm down and recharge their social batteries)\r\n- The Hiring Happy Hour. It wasn\'t announced after the last talk which confused me.','A2'),(30,'1980-01-01 00:00:00',2,'en','849068512','38.83388;-104.82136','','','','Y','','','','A7','N','','',NULL,NULL,'A2','A1','','3','','Talks about hobby topics that didn\'t feel professional or relevant to the software industry','Hearing about the challenges people are facing in the community and how they\'re solving or hoping to solve them.','',''),(31,NULL,1,'en','1559455881','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(32,NULL,NULL,'en','51137431',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(33,NULL,NULL,'en','239194463',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34,NULL,NULL,'en','1937434370',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(35,NULL,1,'en','8171586','40.04595;-105.28687','','Y','','Y','Y','Y','','A6','N','','',3.0000000000,2.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(36,NULL,1,'en','564457888','51.05089;13.73832','','','','','Y','','','A3','N','','',1.0000000000,1.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37,'1980-01-01 00:00:00',2,'en','673790807','49.00937;8.40444','','Y','','','Y','Y','','A2','N','5','4',1.0000000000,1.0000000000,'A1','A2','4','5','3','','','','A2'),(38,NULL,NULL,'en','613647350',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(39,'1980-01-01 00:00:00',2,'en','552988267','49.88247;8.65721','Y','Y','','','','','','A1','N','4','5',0.0000000000,0.0000000000,'A1','A3','5','','2','','','','A2'),(40,NULL,NULL,'en','548005963',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41,'1980-01-01 00:00:00',2,'en','312234843','50.54772;9.67419','','','','','Y','','','A2','N','4','5',0.0000000000,1.0000000000,'A1','A2','4','5','1','To warm.\r\nItchy line yard.','Nice venue, Chaos-Style event','Place for interaction and cosy hang-out','A2'),(42,'1980-01-01 00:00:00',2,'en','1514067869','49.75565;6.63935','','','','','Y','','','A3','N','5','4',1.0000000000,1.0000000000,'A1','A3','4','4','2','','','','A2'),(43,'1980-01-01 00:00:00',2,'en','1774131424','54.12826;-8.38133','','','Y','Y','','Y','','A4','N','4','4',1.0000000000,1.0000000000,'A1','A3','5','4','3','Nothing really','Meeting everyone and hacking on cool shit','Longer deep dives might have been nice, 25 mins is a bit short ','A2'),(44,'1980-01-01 00:00:00',2,'en','629748555','47.49835;19.04045','','','','Y','','Y','','A2','N','3','3',1.0000000000,1.0000000000,'A1','A1','4','4','','There were some talks which were not interesting for me at all. Especiall talks about private projects eg bootstrapping a separate nix or forking the whole stuff for their own purpose. These are private projects.','Lots of superstars, eg to see the main contributers to nix/nixpkgs on the stage and in person.','','A2'),(45,'1980-01-01 00:00:00',2,'en','746610457','48.15656;11.55212','','','','','Y','','','A3','N','4','',1.0000000000,1.0000000000,'A5','A3','5','4','4','','Seeing everyone again, well organised, internet worked really well','A water fountain rather than only bottled water!','A2'),(46,'1980-01-01 00:00:00',2,'en','2008511124','45.2318;-86.26057','','','','Y','','','swam','A6','Y','','',3.0000000000,5.0000000000,'A2','A3','5','4','4','Sensory overload (no fault of Orga)','Random chats and happy coincidences. Chaos. Venue Audio. Too many things to list. Open innovation, culture of hackers and makers','wissentlich','A3'),(47,NULL,1,'en','1455328564','50.85045;4.34878','','','','','Y','Y','','A3','N','4','3',0.0000000000,0.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(48,'1980-01-01 00:00:00',2,'en','957980283','48.85341;2.3488','Y','Y','','','Y','','','A3','Y','4','5',1.0000000000,1.0000000000,'A2','A2','5','5','1','Nothing so far, besides the fact the Wi-Fi code wasn\'t simple to find.','Reusable mugs, unlimited drinks, good food, perfect area, good organization so far, I could say everything. I wish there could be more time to exchange on how we can work on making Nix/NixOS better/enhance or sprints that would be organized.','I couldn\'t interact with everyone I wished, I did.','A2'),(49,NULL,1,'en','336307190','49.87074;8.65276','','Y','Y','','','','','A3','N','3','3',1.0000000000,3.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(50,'1980-01-01 00:00:00',2,'en','1052049364','48.02109;7.84044','','','','','Y','','','A2','Y','5','4',1.0000000000,1.0000000000,'A1','A2','4','4','3','','Meeting other nix people. The food.','','A2'),(51,NULL,1,'en','222939282','40.71427;-74.00597','','Y','','Y','Y','','','A5','N','4','3',1.0000000000,0.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(52,'1980-01-01 00:00:00',2,'en','1992706859','59.87516;10.78857','','','Y','Y','Y','','','A3','N','4','4',1.0000000000,1.0000000000,'A1','A2','5','4','2','Too short','Everything else','My children','A2'),(53,'1980-01-01 00:00:00',2,'en','406606143','52.82393;-7.4707','','Y','','Y','Y','','','A3','N','4','3',1.0000000000,1.0000000000,'A1','A1','4','4','3','The schedule was somewhat confusing, overall: the main website didn\'t show when the talks would end, so figuring out the breaks was quite some guesswork. In addition to that, the first day schedule had a lot of overruns.\r\n\r\nThe organisational notes like the wifi password should have been more visible. I only saw it in between the memes by accident on day 2.','The atmosphere was great, the people were great, lots and lots of useful discussions happening. And having the lunch on-site was such a saver.','','A2'),(54,'1980-01-01 00:00:00',2,'en','2019445997','50.73972;7.09298','','','','','Y','Y','','A2','N','4','4',0.0000000000,1.0000000000,'A1','A3','3','5','2','Loudness in the Hackcenter\r\nHackcenter too large\r\n','Talks\r\nRed/Purple lanyards\r\nVegetarian food','Quiet room','A2'),(55,'1980-01-01 00:00:00',2,'en','1708860163','51.61802;11.77734','','','','','Y','','','A3','N','5','4',1.0000000000,1.0000000000,'A1','A2','4','5','2','Back to back schedule and even some breaks were filled with talks.','Talks, meeting people','','A2'),(56,'1980-01-01 00:00:00',2,'en','1982026870','41.38917;2.16431','','','','Y','','','','A3','N','3','3',1.0000000000,1.0000000000,'A3','A1','5','5','4',' Bit hard to find the bus to Darmstadt at the Frankfurt airport, better instructions would’ve been nice. Coca-cola could’ve been replaced with Fritz Cola or something.','Great food, very good talks, nice hall, great people','Non sweet beverages (apple juice and the like), non-sweet breakfast food.\r\n\r\nIn general, breakfast could’ve been better','A2'),(57,'1980-01-01 00:00:00',2,'en','1725093531','43.18925;-81.40037','','','','Y','','Y','','A5','N','5','5',1.0000000000,0.0000000000,'A2','A3','5','5','2','I thought this year was great and I have no complaints. Good job everyone!','I really liked the selection of talks. The food was very nice, even if you\'re not a vegetarian!','','A2'),(59,'1980-01-01 00:00:00',2,'en','1163485339','49.86;8.65','','Y','','','Y','','','A1','N','','',NULL,NULL,'A1','A2','5','5','2','The line for food usually got very long.\r\nDon\'t know how well this would work but there was two grippers per plate so it might be possible to have two lanes walking along left/right side of food table.','people, event design, talks, memes on infoboard','the people','A1'),(60,'1980-01-01 00:00:00',2,'en','432146037','51.05245;13.71423','','','','','Y','','','A4','N','','',1.0000000000,0.0000000000,'A2','A3','4','3','3','The lecture hall was very noisy. It was hard to switch to the hallway track when my attention level dropped.','Friendly people, delicious food','A collective social event','A2'),(61,'1980-01-01 00:00:00',2,'en','754086527','48.17655;11.24904','','','','','Y','Y','','A3','N','','',1.0000000000,0.0000000000,'A1','A3','5','3','1','Some IMO low-quality talks (esp. \"How to teach Nix in 5 Minutes\")','Good food, many interesting talks, great cheatsheet by nixcademy','','A2'),(62,'1980-01-01 00:00:00',2,'en','1032279582','51.53609;12.43652','','Y','','','Y','','','A3','N','3','2',0.0000000000,0.0000000000,'A2','A2','4','4','1','Handling of sponsors, too many talks in a row (consider parallelity)','Good food, good talks, met friends, good merch, nice venue','','A2'),(63,'1980-01-01 00:00:00',2,'en','447569429','','','','','','Y','','','A2','N','4','3',0.0000000000,0.0000000000,'A2','A3','4','3','3','I feel like NixCon should give us the possibility of seeing new faces in the community. There was too much reuse of previous year speakers, even openers and closers. ','Very well organized, nice venue.','','A2'),(64,'1980-01-01 00:00:00',2,'en','2032254615','49.87167;8.65027','','Y','','','','','','A1','N','5','5',0.0000000000,0.0000000000,'A1','A2','5','4','3','Some rooms were a bit loud\r\nThe scheduling of the talks was off. Too little and too short breaks, and heralds trying to fill those few breaks with minute talks for some reason. Also lightning talks should probably be 10 min instead.\r\nThe venue feels like it\'s almost at capacity, any more people in there and it would get uncomfortable','Food very good\r\nTalks good, and talk length good too\r\nOnly one track','More outside space\r\nMore comfy space for chilling (the beach chairs were good)\r\nTransparency when buying the ticket about what information will be shown on the badge, and maybe some way of customizing the text\r\nA pronouns field on the badge','A2'),(65,'1980-01-01 00:00:00',2,'en','1823094633','59.3425;18.06447','','','','Y','','','','A3','Y','5','5',1.0000000000,0.0000000000,'A2','A3','5','5','3','','','','A2'),(66,'1980-01-01 00:00:00',2,'en','1401955645','51.05089;13.73832','','','Y','','','','','A5','N','5','5',10.0000000000,1.0000000000,'A1','A2','3','4','3','The eating room was getting very crowded and loud at lunch time.\r\nNo Ethernet ports.','Everything you would want to get to (hotel, hackspace, venue) was in walking distance.','A second track ','A2'),(67,NULL,NULL,'en','770328622',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(68,NULL,NULL,'en','2029296664',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(69,NULL,NULL,'en','264375064',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70,'1980-01-01 00:00:00',2,'en','1598055492','40.71427;-74.00597','','','Y','Y','Y','','','A6','Y','4','4',6.0000000000,0.0000000000,'A1','A3','5','4','4','','The people, conversations, talks, putting faces to handles','Some good talks while chatting with people.','A2'),(71,'1980-01-01 00:00:00',2,'en','1954352389','55.67594;12.56553','','','','Y','Y','Y','','A3','N','','',1.0000000000,0.0000000000,'A2','A1','4','4','2','No/few breaks between talks made it awkward to change to hallway track during not personally-interesting talks without disturbing a ton of people','Great venue, volunteers, food, location!','','A2'),(72,NULL,1,'en','475790621','48.78232;9.17702','','','Y','','','','','A2','N','4','4',0.0000000000,0.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(73,'1980-01-01 00:00:00',2,'en','1056103574','51.08102;13.7286','','','','','Y','','','A3','N','4','4',1.0000000000,0.0000000000,'A1','A3','4','4','3','','the influence of chaos','','A2'),(74,'1980-01-01 00:00:00',2,'en','1976826145','49.50429;10.99637','','Y','Y','','Y','Y','','A2','N','5','5',1.0000000000,0.0000000000,'A2','A2','4','4','1','The line at the food was a bit chaotic','Was organised pretty well','Nothing','A1'),(75,'1980-01-01 00:00:00',2,'en','798572552','48.85229;2.34689','','Y','','','Y','','','A3','N','3','3',0.0000000000,0.0000000000,'A2','A2','2','3','3','You have to fill the survey before taking stickers!!!!\r\nJust kidding :)\r\n\r\nFucking Deutsche Bahn','Meeting again with the community\r\nVery practical venue \r\nDiner with the community\r\nGovernance meeting: what a different way to do tech compared to big tech\r\nNice side room for discussions\r\nVegan food options\r\n\r\nOverall, many thanks for the organizers!!! Organizing such an event is so much work and the result is really good.','More academic style talks, not just talks showcasing cool projects. I\'d love to see more talks give new deep insights.\r\n\r\nBeginners workshop to include nix users in the community before the start of the conference. We are missing feedback from users.\r\n\r\nDiversity is imperfect and we should try to include more underrepresented sub cultures.\r\n\r\nSome people found social interactions and bounding hard. It would be great to experiment with social dating stuff to help people join the community.\r\n\r\nMore food during the hackday, but that\'s a minor point.','A2'),(76,'1980-01-01 00:00:00',2,'en','2081853173','51.05089;13.73832','','','','','Y','','','A3','N','','',1.0000000000,1.0000000000,'A1','A3','5','5','3','','The food was great. Special thanks for vegan offers!\r\nThe level of commercial sponsorship was bearable and not disrupting the community atmosphere too much (nicely integrating instead)\r\nHackday was inspiring.\r\n\r\nI liked that the sponsorship woes ended up with an ethical result of throwing out the military company working on autonomous weapons.','','A2'),(77,'1980-01-01 00:00:00',2,'en','678875908','52.53093;13.35938','','','','','Y','','','A4','Y','5','3',1.0000000000,0.0000000000,'A1','A3','5','5','4','','many friendly people','','A2'),(78,'1980-01-01 00:00:00',2,'en','1703261605','38.95827;-120.55957','','Y','Y','Y','','','','A7','N','','',1.0000000000,1.0000000000,'A1','A3','5','4','4','Nothing!','Meeting all the lovely people I\'ve interacted with online and just chatting.','Nothing.','A2'),(79,NULL,NULL,'en','1525731457',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(80,'1980-01-01 00:00:00',2,'en','1873168518','55.67594;12.56553','','','','Y','','','','A3','N','5','5',1.0000000000,0.0000000000,'A1','A3','5','5','3','The rooms were hot. Especially the downstairs one (room 24). Coffee was sometimes not available.','It was phenomenal. Talks were great, community is awesome, well structured ','Should have been a full group dinner on Sat night.','A2'),(81,NULL,NULL,'en','228480792',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(82,NULL,1,'en','1569090466','49.40768;8.69079','','','','','Y','Y','','A2','N','5','',0.0000000000,0.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83,'1980-01-01 00:00:00',2,'en','61905438','45.81444;15.97798','','','','Y','','','','A2','N','3','3',1.0000000000,0.0000000000,'A2','A1','5','5','3','','','','A2'),(84,'1980-01-01 00:00:00',2,'en','989137116','50.93333;6.95','','Y','','','Y','Y','','A2','N','4','4',1.0000000000,0.0000000000,'A1','A2','3','3','1','','','','A2'),(85,'1980-01-01 00:00:00',2,'en','535361340','49.00937;8.40444','','','','','Y','Y','','A2','Y','5','5',0.0000000000,0.0000000000,'A1','A2','4','4','3','- Masks were not required \r\n- The main meeting/food room downstairs was extremely crowded.','Nearly all talks were interesting, meeting people was great, and the event itself was organized well.','','A2'),(86,'1980-01-01 00:00:00',2,'en','359308218','48.139;11.56947','','','','','Y','','','A4','N','5','4',1.0000000000,0.0000000000,'A4','A3','5','5','','ventilation of the hackcenter','well organized, catering was good, just one track','never entered the workshop room','A2'),(87,'1980-01-01 00:00:00',2,'en','338605452','51.48158;11.97947','','Y','','','Y','','Taxi','A3','N','5','5',1.0000000000,1.0000000000,'A1','A3','5','5','5','too little coffee\r\nbad airflow','vegan/vegetarian food\r\ngreat community','','A2'),(88,'1980-01-01 00:00:00',2,'en','1980419119','51.04914;13.7371','','','Y','','','','','A3','N','','3',1.0000000000,0.0000000000,'A1','A2','4','5','3','Hackcenter was very loud when crowded\r\n','Talks, people orga, food','','A1'),(89,NULL,NULL,'en','1554098848',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90,NULL,1,'en','1257094914','-36.84853;174.76349','','','','Y','','','','A7','','1','3',30.0000000000,0.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(91,'1980-01-01 00:00:00',2,'en','112499612','53.55073;9.99302','','','','','Y','','','A3','N','','',1.0000000000,1.0000000000,'A2','A3','5','4','4','Very little and too late advance communication. The date and location of the event should be fixed at least 5 months in advance.','Meeting a lot of amazing people, good food, smooth video streaming and prompt publishing of recordings','More quiet places to sit down and talk/hack ','A2'),(92,'1980-01-01 00:00:00',2,'en','554203464','49.89361;8.67491','Y','','','','','','','A1','N','5','',NULL,NULL,'A3','A3','','','1','','','','A2'),(93,'1980-01-01 00:00:00',2,'en','911472089','48.20849;16.37208','','','','Y','','','','A3','N','4','4',1.0000000000,0.0000000000,'A1','A2','5','5','2','Nothing really','Met interesting people, made new contacts, learned a lot new and awesome things! Big shoutout to the awesome barista at the hackday! Also the pizzas where really good!','-','A1'),(94,'1980-01-01 00:00:00',2,'en','74439715','49.87256;8.65141','','Y','Y','','','','','A3','N','3','3',1.0000000000,3.0000000000,'A2','A3','3','4','4','- It felt more like a Darmstadt user meetup. Which, it\'s great to meet the Nix scene in Germany/Darmstadt, but it had a different feeling compared to NixCon Paris because of that\r\n\r\n- The reception looked extremely overloaded on the first day\r\n\r\n- The response of the community to the dropping of Anduril as a sponsor, note: not the act of dropping the sponsor, rather the response to it\r\n\r\n- There was no buildup in the timeline of talks, NixCon started with 3—in my opinion—extremely heavy talks for the audience to process\r\n\r\n- Some of the speakers didn\'t respect the time of the audience and the other speakers\r\n\r\n- Almost no beginner talks, the workshop is in a different category for me\r\n\r\n- Perhaps too many talks? I think NixCon could\'ve done with a bit more breaks, since the 2nd day looked fairly empty throughout the day','- Got to meet and talk to some absolutely great people\r\n\r\n- Drinks and food, big 👍\r\n\r\n- The hallway track\r\n\r\n- The diversity in this year\'s NixCon','','A3'),(95,NULL,1,'en','1156411541','-37.814;144.96332','','','','Y','Y','Y','','A7','Y','3','3',2.0000000000,1.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(97,'1980-01-01 00:00:00',2,'en','621774278','49.87167;8.65027','','Y','','','','Y','Tram','A1','N','5','5',1.0000000000,1.0000000000,'A1','A2','','','1','','','','A2'),(98,'1980-01-01 00:00:00',2,'en','132278579','36.17497;-115.13722','','','Y','Y','','Y','','A6','N','3','5',1.0000000000,2.0000000000,'A1','A3','5','5','2','I didn\'t know there would be food. As a speaker, I wished my microphone could have been set up before my talk.','The talks were great. The venue was great.','','A2'),(99,'1980-01-01 00:00:00',2,'en','1274274749','35.5358;-97.50916','','','','Y','','','','A5','Y','3','4',1.0000000000,2.0000000000,'A1','A1','4','4','2','','','','A2'),(100,'1980-01-01 00:00:00',2,'en','1167630977','49.55283;8.15735','Y','','Y','','','','','A2','N','5','4',1.0000000000,0.0000000000,'A1','A2','4','3','3','In the main areas and floor the acoustics were bad with many people.','At the last day more and more was outside with much less noise.','','A2'),(101,'1980-01-01 00:00:00',2,'en','1245809631','-37.814;144.96332','','','','Y','Y','Y','','A7','Y','3','3',2.0000000000,54.0000000000,'A1','A2','4','3','4','not enough spaces for everyone who wanted to come, the governance meeting was too early on the last day meaning a lot of people didn\'t come','I enjoyed meeting everyone and enjoyed the hack day','','A2'),(102,NULL,1,'en','1546666687','51.05089;13.73832','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(103,'1980-01-01 00:00:00',2,'en','666460207','51.05089;13.73832','','','Y','','','','','A5','N','2','2',1.0000000000,0.0000000000,'A1','A2','4','4','4','too few tickets (maybe because of me a suitable (contribution) person did not get a ticket.)\r\nno chance to order no regular merch (shirt, zipper, …)\r\nno discussion (and no statement) on the problem case that a military company should have been a sponsor of an event in our (project) community.\r\nno (simple) dinner\r\nno opportunity (no space) to do things (hack on and with nix(os)) into the (and over) night (together with other participants)\r\nno opportunity (no space) to sleep and taking a shower (undemanding accommodation for thrifty people)\r\ntoo few women\r\nnearly no caffeine drinks','ccc flair\r\n\"rainbow culture\" (i am not part of it.)\r\nnice (useful) and (nearly plain) merch from companies (simple nixos sticker, shrits, cheat sheet, …)\r\nfree drinks\r\nsame foo for breakfast (with a lot of sugar only)\r\ncan interact with known experts directly (for me it is not important to see them locally. but it is nice to can talk to them in person.)\r\n…','at \"What did you dislike about the event?\"','A2'),(104,NULL,NULL,'en','851389770',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(105,'1980-01-01 00:00:00',2,'en','1414487159','51.41872;7.32925','','','Y','','','','','A2','N','5','3',0.0000000000,0.0000000000,'A1','A2','3','4','2','Tight schedule of talks, not that easy to connect with people','Great talks','Evening activities','A2'),(106,'1980-01-01 00:00:00',2,'en','1245059004','53.34727;-6.31214','','','','Y','','Y','','A4','N','5','',1.0000000000,1.0000000000,'A2','A3','5','5','1','','','','A2'),(107,'1980-01-01 00:00:00',2,'en','1182747079','49.94109;8.58032','','','','','','','didn\'t attend','','N','','',NULL,NULL,'','A3','1','1','1','military sponsoring, general inability of the community to agree on things','','','A2'),(108,'1980-01-01 00:00:00',2,'en','1812323066','60.60294;10.00384','','Y','Y','Y','Y','Y','','A3','N','3','3',1.0000000000,1.0000000000,'A3','A3','5','5','4','The all vegan food','Seeing all my peeps','I missed the k8s talk and the trainign','A2'),(109,NULL,NULL,'en','824514000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(110,NULL,NULL,'en','970932873',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(111,'1980-01-01 00:00:00',2,'en','1937181823','48.85341;2.3488','','','','','Y','','','A3','N','4','',1.0000000000,0.0000000000,'A2','A1','4','4','3','','nice venue, well organized','','A2'),(112,NULL,1,'en','1911955415','48.9225;-0.79102','','','','','Y','','','A5','N','3','3',1.0000000000,1.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(113,'1980-01-01 00:00:00',2,'en','306268589','48.32407;9.09668','','','','','Y','','','A3','N','5','5',1.0000000000,0.0000000000,'A2','A1','4','4','1','','','','A2'),(114,NULL,NULL,'en','1901005011',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(115,'1980-01-01 00:00:00',2,'en','1848405835','51.51182;-0.11104','','','','Y','','','','A2','N','3','2',1.0000000000,1.0000000000,'A1','A1','4','4','2','','','','A2'),(116,'1980-01-01 00:00:00',2,'en','620240543','49.87167;8.65027','','','Y','','','','','A1','N','5','5',0.0000000000,0.0000000000,'A1','A2','5','4','','','the workshop','more workshops','A1'),(117,NULL,NULL,'en','1716251779',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(118,'1980-01-01 00:00:00',2,'en','762560804','46.20222;6.14569','','','','','Y','','','A3','N','4','4',2.0000000000,1.0000000000,'A5','A3','5','3','4','It looked like most talks were given by the same three companies. I was hoping to hear about other perspectives and experiences.\r\n\r\nI don\'t think it\'s really solvable but the vegan food didn\'t have enough protein in it.','The community, everybody was friendly.','sleep :)','A2'),(119,NULL,NULL,'en','1933516991',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(120,'1980-01-01 00:00:00',2,'en','1412864949','48.51224;9.23401','','','Y','','','','','A3','Y','5','5',0.0000000000,0.0000000000,'A3','A1','5','5','1','Audio setup did not work well and when it worked the Q/A from the audience they held the mic in the wrong way. The schedule on talks, in case of delays, should be a dynamic one (not a static webpage).','Meeting developers and connecting. The talks were great. The food was great.','','A2'),(121,NULL,NULL,'en','1327810584',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(122,'1980-01-01 00:00:00',2,'en','937900019','59.28578;15.19893','','','','Y','','Y','','A3','N','3','4',0.0000000000,0.0000000000,'A7','A3','4','3','3','','','Didn\'t get time to talk to all people I would have wanted.','A2'),(123,NULL,1,'en','315384816','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(124,NULL,NULL,'en','1645249986',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(125,'1980-01-01 00:00:00',2,'en','934922770','52.52437;13.41053','','','','','Y','','','A3','N','4','3',1.0000000000,1.0000000000,'A1','A3','4','5','1','# The downstairs room was way too loud.\r\nSeparate rooms for lunch/hangout and desk space would be nice.\r\nAlso: Outside area! Especially since covid is a thing and won\'t go away in the foreseeable future.\r\n\r\n# Sponsors\r\nThe event needs a sponsor code of conduct.\r\nNixCon should not be a cheap advertising space for the companies that work hard to accelerate the downfall of the world.\r\n\r\n# Diversity\r\nMaybe have a budget for travel/accommodation for underrepresented people who don\'t have high paid jobs at the companies that eat the world?','# Food\r\nAs a vegan I\'m used to being hungry at conferences, not this time. Thanks <3 <3 <3\r\n\r\n# Talks\r\nThe talks were super organized. Awesome heralds, good time planning.\r\n\r\n# Video Streaming\r\n<3','Comfortable Area. (Couches or something.)','A2'),(126,NULL,NULL,'en','575635205',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(127,NULL,NULL,'en','2073980706',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(128,NULL,NULL,'en','1481347457',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(129,'1980-01-01 00:00:00',2,'en','73758033','60.1657;24.90326','','Y','','Y','Y','Y','','A6','N','2','3',1.0000000000,1.0000000000,'A1','A2','4','5','2','Dark-roasted coffee','People, topics, initiative, video ops','I didn\'t get to talk to as many people as I\'d have liked to, but the fault is mine. Sometimes I wasn\'t sure if it\'s OK to join certain activities','A2'),(130,NULL,NULL,'en','2079596831',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(131,NULL,NULL,'en','1031722557',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(132,NULL,NULL,'en','326132144',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(133,NULL,NULL,'en','480927537',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(134,NULL,NULL,'en','15004251',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(135,NULL,1,'en','1677380045','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136,'1980-01-01 00:00:00',2,'en','285003581','','','','','','','','','','','','',NULL,NULL,'','','','','','','','',''),(137,NULL,NULL,'en','535982009',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138,'1980-01-01 00:00:00',2,'en','1809639559','','','','','Y','','Y','','A5','N','4','4',1.0000000000,0.0000000000,'A2','A3','4','3','1','','','I have a rare gene where my body is not able to digest plant cholesterol. Non vegan options for the food would have been great.','A1'),(139,'1980-01-01 00:00:00',2,'en','887844658','27.16474;44.01123','','','Y','Y','Y','Y','','A7','','','',NULL,NULL,'','A2','','','','','','',''),(140,NULL,NULL,'en','396776556',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(142,'1980-01-01 00:00:00',2,'en','1410122629','48.57479;2.43896','','','','','','','Internet','','','','',NULL,NULL,'A4','A2','','3','1','','Thanks to the CCC for providing a video recording which can be watched live!','Being in person.\r\nNot knowing ahead where the event would be.\r\n','A2'),(143,'1980-01-01 00:00:00',2,'en','1790180970','53.88972;7.10907','','','','Y','Y','','','','','','',NULL,NULL,'','','','','','','','',''),(144,NULL,NULL,'en','1758829082',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(145,'1980-01-01 00:00:00',2,'en','1499663877','51.36578;-0.08789','','','Y','Y','','','','A2','N','','',1.0000000000,3.0000000000,'A2','A1','3','3','','some talks were so technical, they were hard to understand what was being said or even the point of the talk / work.','Talking with people, seeing people from last year, a few of the talks I thought were really good. \r\nThe facilities were very clean, unlike last year.','Didn\'t like how Andril were treated, I wish the inner group was more friendly, less judgemental and generally less far, far left.','A2'),(146,NULL,NULL,'en','1960026538',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(147,'1980-01-01 00:00:00',2,'en','900089856','51.50853;-0.12574','','','','Y','','','','A2','N','4','4',1.0000000000,0.0000000000,'A1','A3','4','4','3','','','','A2'),(148,'1980-01-01 00:00:00',2,'en','603233148','','','','','','','','','','','','',NULL,NULL,'','','','','','','','',''),(149,'1980-01-01 00:00:00',2,'en','1098141414','55.67594;12.56553','','','','Y','','Y','','A3','N','','',1.0000000000,NULL,'A3','A3','4','4','5','The dinner / commuity area was to small - special at food time ','Best talks so far out out my 3 nixcons. Really nice small culture trip to show us around in the town the day before start','There was no tea at all. I do not drink coffee so ...','A2'),(150,'1980-01-01 00:00:00',2,'en','1895306301','53.01995;-7.59155','','','','','','','remote','A1','N','5','5',0.0000000000,0.0000000000,'A3','A3','3','5','1','Single Track.\r\n\r\nThis needs to change. \r\n\r\nNixcon has to become a multi track conference... there is just too much to talk about on a single track...','internet stream high quality.. ','nixxers.','A2'),(151,'1980-01-01 00:00:00',2,'en','304211901','51.8575;5.88593','Y','','','','Y','Y','','A3','N','','',1.0000000000,0.0000000000,'A3','A3','4','4','4','- There was no buffer time between talks, causing them to run over.\r\n- The air in the room with the tables was a bit stale and the room was loud.\r\n','- Great crowd, great questions. It felt much smaller than it was.\r\n- I also liked the badges with the avatars.\r\n- Videos for all the talks released very quickly.','- Fruit and other snack selections\r\n- More guidance for speakers.','A2'),(152,NULL,1,'en','2133267537','49.87167;8.65027','Y','','','','Y','Y','','A1','Y','5','4',1.0000000000,1.0000000000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(153,'1980-01-01 00:00:00',2,'en','1456283793','50.85045;4.34878','','','','','Y','','','A3','N','1','1',0.0000000000,0.0000000000,'A2','A3','2','3','4','While the event came across as a tight-knit community where many attendees seemed to know each other, I often felt isolated. Although part of this could be attributed to my non-native English proficiency, it was challenging for me to approach others. The event did not seem particularly inclusive for those who are not neurotypical or are simply shy ... also, not a lot of attendees were AFAB or non-white :\'(','I thoroughly enjoyed the venue\'s location and the catering, especially the quality of the vegan options. The video teams did an outstanding job, and the info beam added a fun element. The proximity of CCC Darmstadt and the train station, both within walking distance from the venue, was a plus. The pleasant weather, allowing for outdoor hacking, was another highlight.','The hack day was inadequate for me to genuinely connect and collaborate with others. I would have appreciated a \"first contributions\" or \"beginners-friendly\" hacking session. There\'s a noticeable gap between being a comfortable Nix/NixOS user and being a part of the project\'s core contributor team. I wish the hack day had been structured to welcome and incorporate more members into the core team, similar to what was the GHC Contributors Workshop organized just before ZuriHac this year.','A2'),(154,'1980-01-01 00:00:00',2,'en','1279892087','40.07303;-105.28748','','Y','','Y','Y','Y','','A6','N','','',3.0000000000,2.0000000000,'A1','A3','4','4','2','I don’t think there was anything. It seems there is good emphasis on things like consent and diversity / inclusion, and I would just like to say “great, do even more!” But that’s not so much a dislike as it is something I would like to see continue and improve.','Talks were great – I took many pages of notes and have rewatched and shared various talks.','I’m not quite sure how to parse this question. Either “what happened at the event that you felt like you missed out on” or “what was the event missing”. I’m going to answer the second one.\r\n\r\nI would like to see an “intermediate” training. I think I fall into a large group of developers (although maybe a bit ahead of the curve – this group is still growing) who have been “Nix adjacent” for possibly years – working on projects where they occasionally have to cargo-cult some Nix config, maybe even using Home Manager to manage some packages and write some dotfiles, etc. But who haven’t “figured out” Nix yet.\r\n\r\nThis training would probably be pretty audience-driven, but would cover stuff like using `nix repl` to explore configs, how some of the internals actually work (overlays, system activation, etc.) to help users see how to make their own changes to deeper parts of the system. Maybe a dive into the way derivations work, IFD, etc. … I’m trying to think of the various “a-ha!” moments I’ve had over the years.','A2'),(155,NULL,NULL,'en','1191289300',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(156,NULL,NULL,'en','866590930',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -/*!40000 ALTER TABLE `limesurvey_survey_239157` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_survey_248687` --- - -DROP TABLE IF EXISTS `limesurvey_survey_248687`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_survey_248687` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `submitdate` datetime DEFAULT NULL, - `lastpage` int(11) DEFAULT NULL, - `startlanguage` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, - `seed` varchar(31) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X44X855` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X44X856` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X44X857` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X44X858` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X44X859` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X44X859other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X44X860` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X44X860other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X44X861` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X44X861other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X44X862` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X44X881` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X47X863SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X47X863SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X47X863SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X47X867` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X47X867comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X47X868` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X47X869` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X49X870SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X49X870SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X49X870SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X49X870SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X49X875` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X49X876` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X49X877` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X49X878` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `248687X49X879` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=83 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_survey_248687` --- - -LOCK TABLES `limesurvey_survey_248687` WRITE; -/*!40000 ALTER TABLE `limesurvey_survey_248687` DISABLE KEYS */; -INSERT INTO `limesurvey_survey_248687` VALUES (1,NULL,2,'en','1993929693','Software Engineer ','Amazon','Friend\'s referral (Archit Gupta, @accelbread from flakelight)','Curiosity, talking tech, and career exploration.','A1','','A2','','A1','','A3','A6','5','5','5','A1','','Xe\'s talk on Docker images was also a great intro to Nix','A \"beginner room\" and an \"advanced room\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,NULL,1,'en','1772276548','Firmware Engineer','Rivos','Nix addicted coworker','Learn more about Nix and meet other people who use it.','A1','','A1','','A1','','A3','A6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3,NULL,NULL,'en','1994592612',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,NULL,NULL,'en','582237208',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(5,NULL,NULL,'en','1051598398',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(6,'1980-01-01 00:00:00',3,'en','712508871','Sr Architect IT applications ','American Airlines ','Linux unplugged ','Get an intro to Nix','A2','','A2','','A2','','A4','A8','5','5','5','A1','','Many','More intro/intermediate talks','5','4','5','5','','','','A3',''),(7,NULL,1,'en','1451532572','DevOps Manager','Vivint','Been using nix for personal stuff for years. ','Just couldn\'t resist. Looking for insights into enterprise deployments and innovative uses.','A1','','A1','','-oth-','On my work laptop.','A2','A4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8,'1980-01-01 00:00:00',3,'en','779777547','Silicon Design Verification Engineer','Rivos','Stove','Sounded fun','A1','','A1','','A2','','A4','A7','3','4','3','A1','','Substitutes and remote builders','Using Nix as a build tool to replace the likes of Mak or Bazel','5','5','4','4','Talking with others about nix','How much entry level or information most of the talks were about','Do more talks with industry people','A1','Nix can be very powerful'),(9,NULL,1,'en','861432713','Student','','Through the Nix discourse, as well as other community announcement channels','I really enjoy Nix, and I\'ve always wanted to attend a conference, so attending NixCon and SCALE was a great opportunity','A1','','A1','','-oth-','Student, but I use it at school too','A1','A4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(10,'1980-01-01 00:00:00',3,'en','1164192484','Student','','Nix discord users posted the survey for Nixcon NA','Look for Nix jobs','A1','','A1','','A2','','A2','A6','5','5','3','A1','','','','5','5','5','2','','Website could be better and more emphasized across the conference. QR codes for the sessionize','Hold more talks and be more clear about the audience. For example, separate talks by difficulty. The systemd talk was for Linux experts but the Xe docker and case for home server were targeted to nix beginners. This should be reflected in the Scale programs book somehow. ','A1',''),(11,NULL,NULL,'en','1675545748',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(12,NULL,NULL,'en','1627194030',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(13,'1980-01-01 00:00:00',3,'en','347954388','Software Engineer','AWS, but came on vacation, not sponsored, lol','Nix Discourse','Fun, talking with folks','A1','','A1','','A1','','A1','A5','5','4','4','A1','','Hallway talks','more advanced topics\r\nexperimental stuff like recusive nix and content-addressed derivations.','5','5','5','5','Meeting people','Hdmi','Displayport\r\n','A1',''),(14,'1980-01-01 00:00:00',3,'en','1510474263','Software Manager Infrastructure ','Luminar Technologies ','From Alexandre Prestele / tweag','I wanted to learn how to use nix store in an ephemeral CI environment, mission accomplished ','A1','','A2','','A1','','A4','A7','5','5','5','A1','','Bazel and Nix for robots','','5','5','5','5','','','','A1',''),(15,'1980-01-01 00:00:00',3,'en','706232427','retired','self','Linux Unplugged Podcast','See if I could pick up knowledge on how to better self host services','A1','','A1','','A2','','A4','A7','4','4','4','A1','','','\r\nMore blockchain devops','4','4','4','4','','','We ran into build issues with github API rate limiting with everyone on WiFi pulling at the same time. Someone should coordinate with github, get the IPs whitelisted','A1','Nix is cool'),(16,NULL,NULL,'en','289389209',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17,NULL,2,'en','1641383671','Senior Software Developer ','Symless Ltd.','SCaLE and Jupiter Broadcasting.','I am interested in using nix for personal and work.','A1','','A1','','A2','','A3','A7','4','5','3','A1','','Building NixOS modules','Workshop for building and compiling software with nix',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18,'1980-01-01 00:00:00',3,'en','294253529','Platform Engineer','Yummly','NIXOS Discourse','To interact with the community, watch talks','A1','','A1','','A2','','A2','A5','3','3','2','A2','','','','4','3','3','5','','','','A1',''),(19,'1980-01-01 00:00:00',3,'en','927072898','Member of Technical Staff','Anthropic','NY Nix Meetup','Meet Nix users to put faces to names. Pick people\'s brains about their experiences using Nix, ahead of deploying it at work.','A1','','A1','','A1','','A1','A1','4','4','4','A1','','Susbtituers talk','Nix in production/stories of when things when awry','5','5','4','4','Meeting people! Getting excites about Nix things','','','A1',''),(20,NULL,1,'en','21511031','Engineering Manager','Antithesis','Been following the foundation for a few years.','We love nix, and I came to help man our sponsor table','A1','','-oth-','I have it installed, but not on my primary device','A1','','A2','A4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(21,'1980-01-01 00:00:00',3,'en','2085488504','Freelancer','Me','I don\'t remember','I like nix','A1','','A1','','A1','','A2','A2','5','3','4','A1','','substituters','Intermediate/advanced workshops, any non-beginner interactive stuff','4','3','3','2','Informality, easygoing approach. Tables everywhere on the first day was a very comfortable setup, liked that a lot more than day 2.','Cold session rooms, first day projector screen super hard to read. ','Would have been nice to have an event forum for persistent comms somewhere. I\'m in the matrix room but just chat makes it easy to lose stuff. SCALE not having an event-wide forum is an annoyance as well.','A3','Unsure'),(22,NULL,NULL,'en','1539439551',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(23,NULL,1,'en','1113343173','Cybersecurity engineer','Yubico','NixOS Discourse, NixOS Unofficial Discord, etc.','Because I wanted to:\r\n- meet more people that use NixOS and are generally cool tech people / feel more connected to the NixOS (and related) communities\r\n- learn new things about NixOS / solve some problems that I am having\r\n- discover opportunities to contribute','A1','','A1','','','','A2','A6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24,'1980-01-01 00:00:00',3,'en','1577152714','','','Through SOCAL 21x.','Because I use Nix!','A1','','A1','','-oth-','only on personal machines','A2','A5','4','5','4','A1','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(25,'1980-01-01 00:00:00',3,'en','1539606487','Staff Software Engineer','','Mastodon post from Zach Mitchell','To learn more intermediate to advanced Nix knowledge and meet other Nix users','A1','','A1','','-oth-','I was a (mildly successful) advocate for Nix at my previous employer','A1','A6','5','4','3','A1','','Xe\'s talk about building Docker','','4','2','5','4','','','','A3',''),(26,'1980-01-01 00:00:00',3,'en','822611306','Editor','Linux Weekly News','I first heard about it when investigating SCaLE.','I was being paid to attend SCaLE by my employer to cover the talks, and I\'ve been a fan of Nix for a long time, so I was glad to fit some Nix talks in.','A1','','A1','','A2','','A1','A2','','2','3','A3','Yes in some talks, no in others','The talk about systemd in stage 1. But the others were interesting, they just contained less information that was actually new to me.','Many of the same topics. But I\'m especially interested in novel, technically challenging work.','5','5','4','5','It was nice to see so many other visibly gendernonconforming people. It was a pleasant surprise. Also, the presence of lots of charging outlets.','Scheduling. Seeing both Nix talks and SCaLE talks was hard, because they were on different schedules.','Standardized scheduling.','A3','I should try out the systemd stage 1 stuff. Also, apparently the nix foundation is more approachable than I had thought.'),(27,NULL,NULL,'en','747986257',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(28,'1980-01-01 00:00:00',3,'en','1710593220','Software Engineer','Beeper','Matrix I think','I like nix and nixos and I help maintain home manager','A1','','A1','','A1','','A2','A4','5','4','5','A1','','Systemd in stage 1','','5','5','5','5','The talks','The workshops. I would have liked them to provide more context and guide people to a specific goal rather than being so open ended','More hype talks at the beginning and then workshops later.','A1','Nix is awesome!!!'),(29,NULL,NULL,'en','366969223',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(30,'1980-01-01 00:00:00',3,'en','798343711','Firmware Engineer','Rivos','Nix loving coworker','I am trying out NixOS and I think it would be helpful at work. Hoped coming would help me learn new things and meet cool people.','A1','','A1','','A1','','A3','A6','4','3','4','A1','','I enjoyed the Looker session the most, as they gave good details on using Nix in a professional setting','- Overviews of more esoteric or newer features\r\n- discussions of using Nix in professional settings','4','4','4','5','Learning about all sorts of cool things about Nix and meeting other people who use it','I think the first day\'s sessions weren\'t as well structured. Second day was very good.','Running some advanced session topics in parallel with beginner ones would be nice, for those who don\'t need a from-zero overview ','A1','Nix definitely has what we need at my workplace, just gotta evangelize it'),(31,'1980-01-01 00:00:00',3,'en','570681946','Nix Engineer','Modus Create','Through work','To meet people interested in Nix','A1','','A1','','A1','','A2','A5','5','5','4','A1','','','','5','5','5','5','','','','A1',''),(33,'1980-01-01 00:00:00',3,'en','882528533','Staff Software Engineer ','Sure','Self hosted and Linux unplugged podcasts','Wanted to meet other nic users irl','A1','','A1','','A2','','A2','A5','5','4','4','A1','','','','5','5','5','5','','','Having a local binary cache from the beginning haha. ','A1','Nix is a cult and I\'m here for it'),(34,'1980-01-01 00:00:00',3,'en','983591218','Senior SRE','LTN Global ','Podcasts from Jupiter Broadcasting ','To learn more about Nix','A1','','A1','','A2','','A2','A7','4','4','5','A1','','“A Quick Introduction to Nix” followed by “Nix is a better Docker image builder than Docker\'s image builder”','Managing Nix at scale (1000’s of nodes)','4','5','5','4','The variety of perspectives ','Lack of communication about schedule changes ','Communicate schedule changes, pre plan based on CFP to minimize things falling because of rate limits or bandwidth by using local options and reaching out to 3rd parties like GitHub, Fastly, and Docker ahead of time. ','A1','If the foundation can solve the funding side of things, Nix is well positioned to grow immensely. '),(35,NULL,2,'en','565297370','Software Engineer','Amazon','Discourse','Love Nix, working on migrating some of our folks and I\'d like to contribute more.','A1','','A1','','A1','','A2','A5','5','5','4','A1','','[High|Low]Lights of Adopting Nix at Looker (Google Cloud)','Would be nice to have some more advanced topics in the future. Especially just sharing some of the tribal knowledge/new features/big plans etc.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(36,NULL,1,'en','1928059314','','','Discourse','To give a talk','A1','','A1','','-oth-','N/A','A1','A2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37,NULL,NULL,'en','2009090770',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(38,'1980-01-01 00:00:00',3,'en','928906099','Everything','Midstall Software','Discord, Matrix, and Discourse','Because I wanted to see what it was like.','A1','','A1','','A1','','A1','A6','5','5','4','A1','','Workshop','Asahi Linux, SELinux','5','5','5','5','Meeting people','Travel','Keep doing this','A1','Connections'),(39,'1980-01-01 00:00:00',3,'en','1730282565','Software / Infra Consultant','Femtodata','discourse.nixos.org','to meet other nixos users, and maybe my heroes (wimpy, xe, raito, etc)','A1','','A1','','A1','','A2','A3','5','5','5','A1','especially enjoyed the open foyer area discussions','xe\'s docker builder talk','application / language specific deep dives, e.g., ML stack, golang.','5','5','5','4','meeting people','not easy to find single source of truth for info, where presentations are hosted (if they are), live feed, etc','single source of truth for event, linking to matrix room for real time comms','A1','will try to get involved in the community, contribution to nixpkgs, etc'),(40,'1980-01-01 00:00:00',3,'en','1548461764','Master\'s Student','UCSB','The Jupiter Broadcasting Linux Unplugged podcast.','Because I LOVE nix.','A1','','A1','','A1','','A2','A3','4','3','3','A1','','I think the lightning talks where people showed off their cool nix projects + Pierre\'s presentation about module contracts were most interesting to me.','I would like to see more \"advanced\" nix stuff, i.e. more cool things you can do with nix like nixos-tests and such.','5','5','5','5','I liked the karaoke the most about the event and the opportunity to socialize and meet new people.','The workshops weren\'t as interesting to me as the ones from past years that I watched on YouTube, but that\'s OK.','Have more HDMI cables :D','A1','My biggest takeaway is the friends I made along the way :D'),(41,'1980-01-01 00:00:00',3,'en','292267496','Staff Engineer','NoRedInk','Xe tweeting about it','I happened to be near by. Plus I feel I don\'t learn all the cool new stuff happening in nix, and thought the con could help (it did)','A1','','A1','','A1','','A2','A3','4','4','3','A1','','Looker\'s','More real world use cases like looker\'s, badi\'s talk. Lightning talks were fun too. Perhaps a mediated exploration mapping out how people use nix at work, what for, pain points and highlights.','4','4','3','4','Talking to other nix users and learning about tools and concepts I was never exposed to. I\'m bringing back a big list of things to Google for, read about and test out.','Too many beginner talks. I know it was a big focus of the con, I\'m just not the target audience :<','Perhaps turn intro talks into workshops. More opportunities to learn how different companies are using nix.','A3','There\'s indeed a lot happening in nix that I just never hear about (we need a newsletter (preferably with an RSS feed))'),(42,'1980-01-01 00:00:00',3,'en','1272120299','Software engineer ','Tweag','Everywhere!','- Socialise other community members\r\n- Discuss Nix and community related issues with them\r\n- Talk to clients/prospects','A1','','A1','','A1','','A1','A2','5','5','4','A1','','By far: The hallway track','- Some more crazy advanced stuff\r\n- More industrial stories','5','4','5','5','- Many new faces (either NA people who couldn\'t attend the European NixCons or new community members)\r\n- The colocation with Scale. Both because attending both was slick, and because of all the random curious people who just showed up\r\n- The venue (top notch)','','','A1',''),(43,NULL,NULL,'en','1452860714',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44,'1980-01-01 00:00:00',3,'en','1243766009','Staff Engineer','Fastly','From a post in the discourse meetup topic','To meet other Nixers and to give a talk','A1','','A1','','-oth-','I’m using it myself, yes, but still working on making others adopt it','A1','A5','5','5','5','A1','','I really liked the docker one','More advanced topics. Not necessarily niche topics. Maybe with an angle of “we solved this issue we had with nix” and then explaining how it fixed it.','5','4','5','5','The networking aspect. I really liked manning the booth too on Saturday. Spreading the love of Nix was awesome.','It was hard finding time to talk with the nix core team.','Maybe 3 days would allow more time to connect?','A1','The nix community is so friendly and hard working it confirms I want to be part of it.'),(45,'1980-01-01 00:00:00',3,'en','92936228','','','I first learned about NixCon last year and was excited to learn that there was one taking place in North America.','Interested in learning more about Nix and joining the community.','A2','','A2','','A2','','A4','A8','5','5','5','A1','','\"A Quick Introduction to Nix\"','I thought the workshops on day one were fantastic, incl encouraging existing community members to help others.','5','4','5','5','The overviews were helpful as a beginner. And karaoke!','','','A1','I have a fairly narrow understanding of Nix going into the event, and I thought the event did a good job featuring the range of efforts across the ecosystem. My biggest takeaway was that there\'s a wide variety of ways to engage with the project and to get involved.'),(46,'1980-01-01 00:00:00',3,'en','2106853596','Software Engineer','n/a','','To meet other Nix users and help make Nix awesome!','A1','','A1','','A1','','A2','A5','5','5','5','A1','','','','5','5','5','5','','','','A1',''),(47,'1980-01-01 00:00:00',3,'en','1923420489','Software Engineer','Government','I saw it come up on the forum and started following it from there.','A chance to meet up with other Nix nerds and talk about Nix? Count me in. \r\n\r\nMost of the talks were intro, but even those usually had a small nugget I\'d never seen or heard of. It was great!','A1','','A1','','-oth-','Only on my work machine, not on servers','A2','A6','5','4','4','A1','','I hugely enjoyed Xe\'s talk about Docker images, as well as Matthew\'s talk Nix the Planet (which wasn\'t technically NixCon, but was Nix-oriented)\r\nThe self-hosting modules one was also interesting, as I\'ve only written a few modules for myself thus far.','Secret handling (which isn\'t special to nix, but does have interesting implications wrt the nix store and keeping them encrypted there, i.e. sops or agenix)\r\nMaybe something a bit deeper on derivations?\r\nI think a talk that goes through NixOS setup could be interesting, potentially with flakes. One of the \"click\" moments for me was being able to just casually switch DE to try them out when I first started.','5','4','5','5','Getting to talk to a bunch of other Nix enthusiasts (and experts) was a phenomenal experience. It\'s always so interesting to see the different ways people use Nix.','Probably just the room setup, which might not even be a problem with the con itself. The projector on the wall (first day) was hard to see, especially with the lighting. The second day was marginally better on the screen, at the cost of being a bit smaller.','I can\'t think of anything off the top of my head, overall it seemed to go pretty well. I saw a few requests for assistance in the Matrix, but it seemed to always get covered.','A1','Nix has a much larger user-base than I would have expected. Of course it\'s bigger than any given event, but the amount of people who came *specifically* for NixCon was a big surprise. \r\nI\'m glad to see such an active community.'),(48,NULL,1,'en','1663088243','Student','Boston University','discourse.nixos.org','To meet fellow nixos users.','A1','','A1','','A1','','A1','A3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(50,'1980-01-01 00:00:00',3,'en','2014426668','Student','Boston University','nixos discourse','To meet fellow nix users and learn latest development on nix.','A1','','A1','','A1','','A1','A3','4','3','4','A2','','Building Robots with Nix and Bazel','Nix internals','4','5','4','3','The lightning talk','The depth of the content','Have a separate advanced track','A1',''),(51,NULL,0,'en','1436779893','','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(52,'1980-01-01 00:00:00',3,'en','1112436074','Director of DevOps Engineering','Xevo','discourse, matrix','Nix/NixOS are amazing. Want to learn more and meet other like-minded invididuals. ','A1','','A1','','-oth-','in testing, but nowhere in production (yet)','A2','A5','4','3','4','A2','The talks were definitely squished together, with a tiny amount of time between. Lunch was only an hour, and the exhibit hall was only open during time when I wanted to be attending talks or syncing with folks in the common area. The only time there was enough time for discussion was the unconf at the end of day 2. ','I can\'t choose just 1. I got several things out of about half of the talks. The beginner talk was great, not for me, but as a video I can refer others to in the future. It really needed to be split up into at least 2 talks as there was so much more for him to say. ','I would like to see more intermediate (selfish reason!!!). The talk on NixOS module dev was great, but still too basic. ','5','5','5','3','The networking. I met so many great people. ','Technical difficulties are always a possibility. We had network issues, external rate limiting, projector issues, the sound quality wasn\'t too great for those of us that are hard of hearing. On day 1 the screen was so small compared to the room size that even with 20/10 vision I could barely see from about half way down. ','See above \"like least about the event\"','A1','I have a lot to learn, and that Nix is growing like crazy. I\'m happy to be along for the ride. '),(53,'1980-01-01 00:00:00',3,'en','1255692574','Professional In Residence','Kent','','Meet some of my fellow contributors. ','A1','','A1','','A2','','A2','A6','4','2','3','A1','','','','4','4','4','4','The people. ','Too many talks for beginners. ','Alternate between East and West coasts ','A3',''),(54,NULL,NULL,'en','1356560539',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(55,'1980-01-01 00:00:00',3,'en','52334542','Software Engineer','AWS','Discourse','I love Nix and wanted to get more involved with the community','A1','','A1','','A1','','A2','A5','5','5','5','A1','','Nix the World! Learned about a lot of cool tools that I wasn\'t aware of at all. Definitely going to be looking more into nixos-anywhere in the future.','Always up for new cool tech and maybe some deeper dives on developing with Nix, such as using the new debugger or `builtins.withErrorContext` etc.','5','5','5','5','Meeting all of the Nix folks!','','Some collaborative dev sessions might be fun in the future.','A1','Learned a lot about parallel efforts involving making Flakes more project-friendly, and I\'m looking forward to contributing upstream to those efforts as well.'),(57,'1980-01-01 00:00:00',3,'en','1632136295','Founder','Flakery','not sure.','Interested generally in nix, wanted to promote my product','A1','','A1','','A1','','A2','A6','5','4','4','A1','','Lightening talks','NixOs Integration test framework ','5','5','5','5','Karoke!','Wasn\'t long enough','I would have liked more sessions with advanced topics. first day was beginner focused but i can understand why','A1','Nix has a great growing community that i\'m proud to. be a member of '),(58,'1980-01-01 00:00:00',3,'en','137767519','Staff Engineer','','Discourse post','I was going to attend Scale anyway but it was conveniently colocated','A1','','-oth-','I use it on some of my machines for some of my projects','A2','','A3','A5','5','4','4','A1','','Xe Iaso’s talk about building docker images and the nix state of the union were both interesting','More advanced packaging scenarios or language features/idioms that have to be used','5','4','5','3','The best part was seeing all the energy about Nix in person. Also got to see a lot of people in person who I had only known via GitHub/discourse/YouTube','The program got off track from the published schedule which is honestly not that big a deal because it still worked out. I know some of it was due to AV or github rate limiting but it also seemed like 1 hour was too short for some of the workshops. The only thing that was actually annoying about this was that it was difficult to mix in other scale events with nixcon stuff, but this was as much on other events not necessarily following schedule either','smaller group breakouts during workshops','A1','People are excited about nix!'),(60,'1980-01-01 00:00:00',3,'en','533971590','Security engineer','Yubico','Discourse, Discord, Matrix, potentially others','- To meet people the other cool people who use Nix and who probably have more Nix experience than I do\r\n- To learn new things about Nix\r\n- To potentially help others with Nix\r\n- To solve some Nix problems of mine\r\n- To become more connected to the Nix community','A1','','A1','','A2','','A2','A6','4','4','4','A3','Generally i felt like I had enough time outside of talks to ask questions that I had and to meet new Nix folk. I certainly wouldn\'t aim for less, and I think more could be good so long as people don\'t get bored and leave. I think having semi-structured ways to foster discussion might be valuable additions to the conference.','Hard to answer! I listened to most the talks and took some different value away from each one. As an experienced Nix user, I think I probably got the most out of the substituters and remote builders presentation, though I definitely don\'t remember everything I need from it. I also really valued the state of the union talk.','My answers today probably (hopefully) won\'t be reflective of what I would say approx. a year from now, but current me would love to hear some insight from the docs team (e.g., how new users can contribute, what they\'re up to, etc.), some workshop-style material on how to do secrets management, some in-depth packaging tutorials (for nixpkgs or personal use). ','5','4','4','5','Opportunities to connect with awesome people in the Nix community. And the NixCon NA 2024 website that made it super easy to plan for attending the conference.','The SCaLE Wi-Fi.','Please continue to co-locate with SCaLE unless there is somehow some other more compelling option. As for actual improvements, none come to mind. It was awesome!\r\n','A1','I need more Nix events in my life.'),(61,NULL,NULL,'en','1430458633',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(62,NULL,NULL,'en','621380118',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(63,'1980-01-01 00:00:00',3,'en','1200517281','','','The SNUG','To learn more about nix and meet people','A1','','A1','','A2','','A2','A2','4','4','4','A1','','The one about home manager','More 3rd party projects, more self hosting','5','5','5','5','Meeting a lot of different people','Could use a bit more hallway track/hack session','','A1','Nix good'),(64,'1980-01-01 00:00:00',3,'en','800146042','DevOps','A healthcare startup','Rob','I was at SCaLE already','A1','','A1','','A1','','A3','A6','4','4','4','A1','','Dan’s module talk','- Deep dive flakes\r\n- managing a fleet of NixOS in production','4','5','5','4','Community vibe','Political issues related to sponsorship','More advertising, bigger rooms for talks','A1','There’s more Nix users in NA than I realized'),(65,'1980-01-01 00:00:00',3,'en','533345701','Software Engineer','2U','I\'m an organizer lol','I wanted to see the first North American nixcon happen 🙏😭🙏😭','A1','','','','A1','','A2','A7','5','4','4','A1','','Xe\'s session ','I would like to see a place where beginners can congregate and ask questions freely ','5','4','5','3','Talks','Registration felt disorganized','','A1',''),(66,'1980-01-01 00:00:00',3,'en','1089373465','Staff Engineer','Populus Inc','Jupiter Broadcasting show','Love NIX and recently started using it at home a lot','A1','','A1','','A2','','A3','A7','5','5','5','A1','','state of the union\r\nmaking docker images in nix','','5','4','5','5','','','','A1',''),(67,'1980-01-01 00:00:00',3,'en','1526418160','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),(68,NULL,NULL,'en','572597897',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(69,'1980-01-01 00:00:00',3,'en','797320634','SRE','ngrok','google','Learn about nix ecosystem, How to use nix for CI, and form connections','A1','','','','A1','','','A7','5','3','4','A2','Yes and No. Yes we had discussion time, but it wasn\'t structured. I suggest using the Birds of a Feather method or Hallway Talks to schedule time for specific follow-up discussions wrt talks or topics.','Nix + CI','Migrating to Nix, Nix vs. Typescript as a configuration language','5','4','4','4','','','','A1',''),(70,'1980-01-01 00:00:00',3,'en','283720571','Software Engineer','','Dan Baker and David Nuon','To support/help David and Dan where I could, get more general knowledge about Nix and its applications(which according to Matthew is probably limitless), and network','A1','','A1','','A2','','A3','A7','3','3','4','A1','I\'m not sure if this means discussion after a talk or discussion within the convention itself. If it\'s the latter than I think, yes, there was a lot of time to talk to people about what they are working on and how they use nix.','I didn\'t attend the talk but probably Xe\'s talk about building Docker Images with Nix','Any topics that people are passionate about talking on with respect to the convention','5','5','3','3','Meeting/talking to people and learning from them through conversation','I think in general, a Thursday-Friday event is tough. There were some people who came later in the evening expressing interest in Nix but unable to attend due to work.','Perhaps a dedicated information booth for how to get more involved with the community could be beneficial. I think that could provide a good bridge between people who are new/are not involved with the community and those who are. While providing links to matrix spaces and other forums is probably sufficient I think front-loading the information never hurts if the resources are available.','A1','Technically not part of Nix Con itself but \"Nix The Planet\"'),(71,NULL,1,'en','1661446588','Firmware Engineer','Rivos Inc.','A coworker who is a big Nix fan','I\'m using NixOS on my desktop to force myself to learn it, and use it a bit at work but would like to use it more.','A1','','A1','','A1','','A3','A6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(72,'1980-01-01 00:00:00',3,'en','719803705','Editor-in-Chief','Jupiter Broadcasting','I was invited by Zach and others.','I am very interested in networking with the Nix community and building a deeper understanding of its future and market fit.','A1','','A1','','A1','','A2','A6','5','4','4','A1','','I found the workshopping happening out in the made area the most impressive, and it seemed quite valuable. The meme was people were debating packaging at Ubucon, while folks were getting work done at NixCon.','Onboarding tracks are always great, maybe a local cache to reduce load on GitHub.','5','4','5','5','Casual yet productive vibe.','Not much...','Very selfish of me - but I\'d love to see some structure around media. IE, someone who could work with media to identify folks that would make for good interviews, perhaps facilitate a small space to conduct those interviews. Because becoming in, we don\'t always know who is who, and who might be the unquie person from the community that made it to the event, who might be a big contributor, etc.','A1','I was impressed with the companies building around Nix. Equally, it feels like the market has only recently woken up to its value. While Nix itself has been around for a long time, the market fit is new. \r\n\r\nSo, seeing faces from the foundation and these companies around Nix was very reassuring. It felt like intelligent people were on the job.'),(73,NULL,NULL,'en','1013413173',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(74,NULL,1,'en','1654261415','CTO','Zeko Labs','Friend in community','I love Nix and I was invited to speak at SCALE','A1','','A1','','A1','','A1','A3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(75,'1980-01-01 00:00:00',3,'en','1442284064','Senior Software Engineer','United Health Group','A combination of the nix discourse forum and NY nix users meet up events.','I use NixOS as the operating system for my personal computer. I also use it to build and package personal, public, and (more rarely but not never) professional software projects.\r\n\r\nI\'m really excited about the nix ecosystem of projects and I attended NixCon because I wanted to engage with the community, learn more about nix, and start to figure out how I can best contribute.','A1','','A1','','-oth-','Technically yes, but rarely. There\'s no effort to adopt nix at my organization and I the number of users I am aware of is very small.','A2','A5','5','5','4','A3','I don\'t have an opinion on this.','Probably the Nix State of the Union. It\'s really interesting to understand the organizational and community dynamics around nix, which are just as important to making the nix project work as the underlying research and technical implementation of the tools is.','I would love to see topics that serve as an introduction of a project to potential new contributors. I\'m interested in contributing. Talks that explore the internals of an ecosystem tool, but in way that js approachable and friendly to intermediate users who are unfamiliar with the given tool\'s codebase, would be really helpful to me personally and also, I think, to the longevity of these tools and the broader community.','5','5','5','5','The karaoke. Whose idea was this??? Also damn some people were really good?','The unconference was cool, though I wish there would have been more opportunities that prompt conversations between strangers -- but it\'s also easy to overly cultivate that. The center area with tables was a good space for that. I guess I can\'t think of something I liked least...\r\n\r\nHonestly, although I loved colocating the event with SCaLE, the location was kind of hard to get to if you weren\'t in the area and didn\'t have a car. LA traffic sucks, and going to the airport Sunday I almost missed my flight because of bizarrely timed road work. Maybe you all can fix that for next time? :)','Force more people to sing karaoke.','A1','The people behind nix are as cool as the technology.'),(76,'1980-01-01 00:00:00',3,'en','432262592','Software Engineer','Arista Networks','Discourse','Community!','A1','','A1','','A1','','A1','A2','','','','A1','','I liked the state of the union, the Google experience report, and the unconference - not necessarily in that order.','I\'d like to see more real world experience reports.','5','4','5','4','I loved seeing my friends and community members and chatting with them.','I thought some of the talks were a little outside of my interests. A bit too basic I thought.','More speakers! More attendees!','A1','What a lovely conference! It was great to catch up with everyone!'),(77,'1980-01-01 00:00:00',3,'en','819629665','Senior Software Engineer ','Mission Secure, Inc','Linux Unplugged podcast ','I was interested in learning more about Nix OS','-oth-','I used the package manager before NixCon and installed Nix Os first night of conference ','A1','','A2','','A3','A7','5','4','4','A1','','','','5','4','3','4','Meeting so many great people. The community was really welcoming, and it was also a great learning opportunity ','','','A1','I was really impressed with the community and the enthusiasm '),(78,'1980-01-01 00:00:00',3,'en','861639896','software developer ','dod','I follow Nix and heard thru many channels such as discord, element, and discourse.','For the love of Nix, to support, and learn from many great people.','A1','','A1','','-oth-','Eventually ','A3','A6','5','5','5','A1','','the workshop on ci/cd','more security focused and besy practices discussions.','5','5','5','5','The discussions and also how nice everyone was. I am a person with high anxiety in social settings but I found this not bad.','so short and network','workshop on packing modules and best practices in writing nix configs','A1','That nix can do everything and there is a need for it'),(79,NULL,NULL,'en','412853034',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(80,'1980-01-01 00:00:00',3,'en','1724960778','I do not have a job','I am unemployed','My father, he got me into Nix','I love Nix','A1','','A1','','-oth-','Unemployed ','A3','A7','5','5','5','A1','','Probably the ones aimed at people just getting into Nix/showing you how to do stuff, the possibilities of things you can do with Nix are insane','More of the unusual stuff you can do with Nix, it’s super cool','5','5','5','5','It’s Nix!!! Also I met a lot of really nice people who showed me a lot of things I’ll probably use every time I use Nix.','I didn’t explicitly dislike anything, it would’ve been cool if it was a bit longer though.','Just keep doing what you’re doing!! It’s amazing','A1','That Nix is awesome and I’ll never use another OS again '),(81,'1980-01-01 00:00:00',3,'en','2106701233','Software Engineer','Martincoit Networks','Discourse','Because I love nix','A1','','A1','','A1','','A2','A2','5','4','5','A3','Unsure, didnt make it to many of the talks','','Nix in production and war stories','5','5','5','5','Everyone was approachable and the \"hallway track\" conversations were fantastic.','Projector and lighting of the speakers','Closer after hours events','A1','Meeting Eelco'),(82,'1980-01-01 00:00:00',3,'en','454790034','Software Engineer','D. E. Shaw','From Ron','Because Nix is awesome.','A1','','A1','','A1','','A1','A2','3','2','2','A1','This was probably the best part for a Nix expert. I spent most of the time talking with people, not listening to talks.','','As a more advanced user, I\'d like more advanced topics.','3','5','5','4','Networking','Disorganization, talks going late, etc. The talks were also very beginner focused and it wasn\'t apparent.','Mark each talk as \"beginner/intermediate/advanced\" so we know which ones to go to.\r\nI personally didn\'t find the workshop format helpful. I\'d focus more on talks and then make time/space for people to collaborate where there are no talks.','A1',''); -/*!40000 ALTER TABLE `limesurvey_survey_248687` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_survey_346552` --- - -DROP TABLE IF EXISTS `limesurvey_survey_346552`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_survey_346552` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `token` varchar(35) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, - `submitdate` datetime DEFAULT NULL, - `lastpage` int(11) DEFAULT NULL, - `startlanguage` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, - `seed` varchar(31) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `startdate` datetime NOT NULL, - `datestamp` datetime NOT NULL, - `refurl` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X825SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X825SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X825SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X825SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X825other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X838SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X838SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X838SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X838SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X838SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X838other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X846SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X846SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X846SQ003` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X846SQ004` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X846SQ005` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X846SQ006` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X846SQ007` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X846SQ008` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X826` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X826other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X827` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X827other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X828` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X829` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X829other` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X830SQ001` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X830SQ002` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X833` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `346552X43X834` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `idx_survey_token_346552_34322` (`token`) -) ENGINE=MyISAM AUTO_INCREMENT=417 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_survey_346552` --- - -LOCK TABLES `limesurvey_survey_346552` WRITE; -/*!40000 ALTER TABLE `limesurvey_survey_346552` DISABLE KEYS */; -INSERT INTO `limesurvey_survey_346552` VALUES (1,NULL,NULL,NULL,'en','1342805011','2023-09-26 21:34:36','2023-09-26 21:34:36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,NULL,'2023-09-26 22:00:25',1,'en','1138393869','2023-09-26 21:48:57','2023-09-26 22:00:25','https://discourse.nixos.org/','','','Y','Y','','Y','','','Y','','','A3','A3','A3','A3','A1','A2','A4','A4','A62','','A5','','','A4','','Y','Y','A2',''),(3,NULL,NULL,NULL,'en','1616346177','2023-09-26 21:49:15','2023-09-26 21:49:15',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,NULL,'2023-09-26 21:50:39',1,'en','963440235','2023-09-26 21:49:30','2023-09-26 21:50:39','https://discourse.nixos.org/','','','Y','Y','','Y','','','Y','','','A3','A4','A4','A2','A2','A2','A3','A3','','','A5','','','A5','','Y','Y','A3',''),(5,NULL,'2023-09-26 21:54:52',1,'en','234471081','2023-09-26 21:53:17','2023-09-26 21:54:52',NULL,'','','Y','','','Y','','Y','Y','','','A1','A2','A2','A2','A2','A2','A3','A3','A6','','A3','','Las Vegas','A5','','','Y','A2','Excited about this! '),(6,NULL,'2023-09-26 21:56:23',1,'en','1314173236','2023-09-26 21:53:54','2023-09-26 21:56:23','https://discourse.nixos.org/','','','Y','Y','','Y','','','','','','A1','A4','A4','A2','A2','A2','A2','A2','A48','','-oth-','anywhere except most red states. I will not spend a single penny in Florida, Missouri, etc.','not really','A5','','Y','Y','A2','I guess it\'s a selfish ask, but please, please don\'t pick a red state. '),(7,NULL,NULL,NULL,'en','1484116091','2023-09-26 21:54:33','2023-09-26 21:54:33','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8,NULL,'2023-09-26 22:29:43',1,'en','1097698873','2023-09-26 21:55:10','2023-09-26 22:29:43','https://discourse.nixos.org/','Y','','Y','Y','NixOS user','Y','','Y','','','Discuss major development efforts (flakes stabilization, distributed nix cache, systemd networking, secure boot, etc)','A3','A2','A2','A1','A2','A3','A3','A3','A22','','A2','','','A5','','','Y','A2','Re. the conversations on Discourse: Organizers should prioritize the needs of North American attendees over the needs of attendees from other continents. We should welcome everyone, but it is ultimately an event for the region.'),(9,NULL,'2023-09-26 21:57:27',1,'en','1357207695','2023-09-26 21:55:55','2023-09-26 21:57:27','https://discourse.nixos.org/','','','Y','Y','','Y','','','Y','Y','','A1','A2','A2','A3','A3','A4','A4','A4','A7','','A3','','Denver','A4','','','Y','A2',''),(10,NULL,'2023-09-26 21:59:49',1,'en','321361327','2023-09-26 21:56:54','2023-09-26 21:59:49',NULL,'','','Y','Y','','Y','','','Y','Y','','A2','A1','A3','A2','A2','A3','A4','A4','A15','','A4','','Chicago','A5','','Y','Y','A2',''),(11,NULL,'2023-09-26 21:59:30',1,'en','1927439456','2023-09-26 21:58:23','2023-09-26 21:59:30',NULL,'','Y','Y','','','Y','','Y','','','','A1','A2','A2','A2','A3','A4','A4','A4','A48','','A3','','Tacoma, WA','A2','','Y','Y','A1',''),(12,NULL,NULL,NULL,'en','901790451','2023-09-26 21:58:26','2023-09-26 21:58:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(13,NULL,NULL,NULL,'en','1790299957','2023-09-26 21:59:10','2023-09-26 21:59:10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(14,NULL,NULL,NULL,'en','778579','2023-09-26 22:01:22','2023-09-26 22:01:22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(15,NULL,'2023-09-26 22:03:08',1,'en','1268577783','2023-09-26 22:01:39','2023-09-26 22:03:08',NULL,'','','Y','Y','','Y','','Y','Y','','','','A2','','','A2','A3','A4','A4','A52','','A6','','Edmonton','A4','','','Y','A2',''),(16,NULL,'2023-09-26 22:03:12',1,'en','537162466','2023-09-26 22:01:51','2023-09-26 22:03:12',NULL,'','','Y','Y','','','','','','','Organize I guess :>','A2','A2','A2','A2','A4','A1','A2','A2','-oth-','France','A8','','Mexico City?','A5','','','Y','A1',''),(17,NULL,'2023-09-26 22:08:16',1,'en','1299700765','2023-09-26 22:02:41','2023-09-26 22:08:16',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A2','A1','A1','A1','A2','A2','A2','A2','A36','','A2','','St Louis, Missouri ','A4','','','Y','A2',''),(18,NULL,'2023-09-26 22:07:55',1,'en','2805615','2023-09-26 22:06:30','2023-09-26 22:07:55',NULL,'','','Y','','','Y','','','','','','A2','','A3','A3','','A1','A4','A4','A6','','A3','','','A5','','','Y','A3','Do it!'),(19,NULL,'2023-09-26 22:09:37',1,'en','1178405789','2023-09-26 22:07:04','2023-09-26 22:09:37',NULL,'','','','Y','','Y','','Y','','Y','','A1','A2','A3','A2','A3','A4','A4','A4','A6','','A3','','','A5','','Y','Y','A2',''),(20,NULL,'2023-09-26 22:09:32',1,'en','889436557','2023-09-26 22:07:40','2023-09-26 22:09:32',NULL,'','','','Y','','Y','','','Y','','','','','A3','','','','','','A7','','','','','A5','','Y','','A2',''),(21,NULL,'2023-09-26 22:10:04',1,'en','1291984418','2023-09-26 22:08:34','2023-09-26 22:10:04',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A3','','A4','A1','A2','','','','A33','','A2','','','A4','','','Y','A2',''),(22,NULL,'2023-09-26 22:11:55',1,'en','2068706316','2023-09-26 22:10:21','2023-09-26 22:11:55',NULL,'','Y','','','','','Y','','','','','A1','','','','','','','','A6','','A3','','Pasadena, CA','A1','','','Y','A1',''),(23,NULL,NULL,NULL,'en','1482207498','2023-09-26 22:10:26','2023-09-26 22:10:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24,NULL,'2023-09-26 22:13:20',1,'en','18307132','2023-09-26 22:10:37','2023-09-26 22:13:20','https://www.reddit.com/','','','','Y','','Y','','Y','Y','','','A2','A3','A3','A1','A1','A3','A3','A3','A44','','A2','','','A5','','Y','Y','A2',''),(25,NULL,NULL,NULL,'en','1646844491','2023-09-26 22:11:05','2023-09-26 22:11:05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(26,NULL,NULL,NULL,'en','1515085289','2023-09-26 22:12:43','2023-09-26 22:12:43','https://t.co/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27,NULL,'2023-09-26 22:17:13',1,'en','145629253','2023-09-26 22:15:20','2023-09-26 22:17:13',NULL,'','Y','','','','Y','','Y','','Y','','A2','A3','A3','A2','A2','A2','A4','A4','A6','','A3','','','A5','','Y','Y','A2',''),(28,NULL,NULL,NULL,'en','1424644320','2023-09-26 22:16:53','2023-09-26 22:16:53','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(29,NULL,'2023-09-26 22:26:20',1,'en','75856913','2023-09-26 22:17:37','2023-09-26 22:26:20',NULL,'','','Y','','','Y','','Y','Y','','','A1','A2','A3','A2','A2','A2','A3','A3','A7','','A3','','Denver','A5','','Y','Y','A2','Strongly consider requiring masks at the conference for those of us that either are or live with immunocompromised individuals.'),(30,NULL,NULL,NULL,'en','425490903','2023-09-26 22:17:48','2023-09-26 22:17:48',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(31,NULL,'2023-09-26 22:21:59',1,'en','1567109833','2023-09-26 22:20:28','2023-09-26 22:21:59',NULL,'','','Y','Y','','Y','','Y','','','','A3','','','A2','A4','A4','A4','A4','A22','','A2','','Boston','A3','','','Y','A2',''),(32,NULL,'2023-09-26 22:25:38',1,'en','1175242613','2023-09-26 22:23:55','2023-09-26 22:25:38',NULL,'','','','Y','','Y','','','','Y','','A4','A4','A3','A3','A1','A3','A3','A3','','','A5','','','A5','','','Y','A2',''),(33,NULL,NULL,NULL,'en','1211972069','2023-09-26 22:27:09','2023-09-26 22:27:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34,NULL,'2023-09-26 22:33:23',1,'en','1253827470','2023-09-26 22:28:17','2023-09-26 22:33:23',NULL,'','','Y','Y','','Y','','','Y','Y','','A1','A2','A3','A2','A3','A3','A4','A4','A3','','A3','','','A5','','Y','Y','A2',''),(35,NULL,'2023-09-26 22:29:54',1,'en','1723147952','2023-09-26 22:28:22','2023-09-26 22:29:54',NULL,'','Y','','','','','','','','','','','','','','','','','','','','','','','A2','','','Y','',''),(36,NULL,NULL,NULL,'en','1766866719','2023-09-26 22:29:16','2023-09-26 22:29:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37,NULL,'2023-09-26 22:32:53',1,'en','1148191634','2023-09-26 22:30:33','2023-09-26 22:32:53','https://t.co/','','','','','I have been using NixOS on my personal laptop for 6 months now','Y','Y','Y','','Y','','A2','A2','A2','A3','A2','A4','A4','A4','A33','','A2','','New York','A5','','Y','Y','A2','Really excited for this to happen'),(38,NULL,NULL,NULL,'en','971692462','2023-09-26 22:30:35','2023-09-26 22:30:35','https://www.reddit.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(39,NULL,'2023-09-26 22:34:25',1,'en','1170968824','2023-09-26 22:32:53','2023-09-26 22:34:25','https://old.reddit.com/','','Y','','','','Y','Y','Y','','Y','','A2','A1','','A2','A2','A3','A4','A4','A14','','A4','','Chicago','A3','','Y','Y','A3',''),(40,NULL,'2023-09-26 22:35:42',1,'en','143048875','2023-09-26 22:33:26','2023-09-26 22:35:42','https://t.co/','','','','Y','','Y','','','Y','','','A3','A3','A2','A2','A1','A1','A2','A2','-oth-','Slovenia','A5','','Montreal','A5','','Y','','A1',''),(41,NULL,NULL,NULL,'en','629337759','2023-09-26 22:33:47','2023-09-26 22:33:47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(42,NULL,'2023-09-26 22:38:44',1,'en','223512692','2023-09-26 22:37:00','2023-09-26 22:38:44',NULL,'','','Y','Y','','Y','','','','','','A2','A2','A2','A2','A2','A3','A3','A3','A60','','A5','','','A5','','Y','Y','A3',''),(43,NULL,NULL,NULL,'en','1698131682','2023-09-26 22:38:14','2023-09-26 22:38:14','https://www.reddit.com/r/NixOS/comments/16t1n3p/nixcon_north_america_survey/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44,NULL,'2023-09-26 22:45:19',1,'en','1504850510','2023-09-26 22:38:40','2023-09-26 22:45:19',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A2','A2','A3','','A2','','','','A53','','A6','','Vancouver, or even better, Victoria on Vancouver Island. Otherwise, the best options are likely Seattle, Portland, and SF on the US west coast, Boston or NYC on the US east coast. Toronto or Montreal are OK options for Canada east.','A4','','Y','Y','A1','Remember that we are still in a global pandemic, and despite our wishes otherwise, SARS2 has its name for a reason; it would be unwise to ignore the science here, and would inevitably lead to real harm to individuals in the Nix community, as well as the collective.'),(45,NULL,NULL,NULL,'en','1439034748','2023-09-26 22:40:47','2023-09-26 22:40:47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(46,NULL,NULL,NULL,'en','1082752894','2023-09-26 22:41:56','2023-09-26 22:41:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(47,NULL,NULL,NULL,'en','1927254040','2023-09-26 22:42:23','2023-09-26 22:42:23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(48,NULL,'2023-09-26 22:46:04',1,'en','1235966155','2023-09-26 22:44:33','2023-09-26 22:46:04',NULL,'','Y','Y','','','Y','','Y','','Y','','A2','A3','A4','A3','A1','A4','A4','A4','A53','','A6','','Vancouver','A1','','','Y','A2',''),(49,NULL,'2023-09-26 22:49:32',1,'en','16187760','2023-09-26 22:48:07','2023-09-26 22:49:32',NULL,'','Y','','','','Y','Y','','Y','','','A1','A2','A2','A3','A4','A4','A4','A4','A48','','A3','','Seattle','A3','','Y','Y','A2','Please make this happen!'),(50,NULL,NULL,NULL,'en','1086563190','2023-09-26 22:48:16','2023-09-26 22:48:16','https://www.reddit.com/r/NixOS/comments/16t1n3p/nixcon_north_america_survey/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(51,NULL,NULL,NULL,'en','291584192','2023-09-26 22:48:23','2023-09-26 22:48:23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(52,NULL,'2023-09-26 22:50:49',1,'en','1821970245','2023-09-26 22:49:24','2023-09-26 22:50:49','https://t.co/','','','','Y','','','','Y','','','','','','A4','','A2','','','','A60','','A5','','','A2','','','Y','A2',''),(53,NULL,NULL,NULL,'en','1292729946','2023-09-26 22:50:37','2023-09-26 22:50:37','https://t.co/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(54,NULL,NULL,NULL,'en','69911666','2023-09-26 22:52:06','2023-09-26 22:52:06','https://www.reddit.com/r/NixOS/comments/16t1n3p/nixcon_north_america_survey/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(55,NULL,NULL,NULL,'en','1462690285','2023-09-26 22:56:02','2023-09-26 22:56:02','https://www.reddit.com/r/NixOS/comments/16t1n3p/nixcon_north_america_survey/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(56,NULL,NULL,NULL,'en','897987932','2023-09-26 23:00:11','2023-09-26 23:00:11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(57,NULL,NULL,NULL,'en','1266452544','2023-09-26 23:00:12','2023-09-26 23:00:12','https://old.reddit.com/r/NixOS/comments/16t1n3p/nixcon_north_america_survey/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58,NULL,NULL,NULL,'en','1861302896','2023-09-26 23:00:26','2023-09-26 23:00:26','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(59,NULL,NULL,NULL,'en','47737293','2023-09-26 23:07:37','2023-09-26 23:07:37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(60,NULL,NULL,NULL,'en','1704511152','2023-09-26 23:08:12','2023-09-26 23:08:12','https://www.reddit.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(61,NULL,'2023-09-26 23:10:56',1,'en','1427913409','2023-09-26 23:09:34','2023-09-26 23:10:56',NULL,'','Y','','','','Y','Y','Y','Y','Y','','','A2','','A1','','A3','','A4','A23','','A2','','Chicago','A5','','Y','Y','A1','Would love to join!'),(62,NULL,NULL,NULL,'en','744585451','2023-09-26 23:11:42','2023-09-26 23:11:42','https://t.co/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(63,NULL,'2023-09-26 23:15:38',1,'en','1311121897','2023-09-26 23:14:12','2023-09-26 23:15:38',NULL,'','Y','','','','Y','Y','','','','','A3','A2','A3','A1','A2','A4','A4','A4','A22','','A2','','','A5','','Y','Y','A2',''),(64,NULL,'2023-09-26 23:18:31',1,'en','1959886089','2023-09-26 23:17:03','2023-09-26 23:18:31',NULL,'','','Y','Y','','Y','','Y','','','','A2','A3','A3','','','','','','A33','','A3','','','A4','','Y','Y','A3',''),(65,NULL,'2023-09-26 23:19:51',1,'en','179745711','2023-09-26 23:18:14','2023-09-26 23:19:51',NULL,'','Y','','','','Y','Y','','','','','A3','A2','A2','A2','A3','A4','A4','A4','A33','','A2','','','A4','','Y','Y','A3',''),(66,NULL,'2023-09-26 23:22:02',1,'en','196406795','2023-09-26 23:20:46','2023-09-26 23:22:02','https://www.linkedin.com/','','Y','','','','','Y','','','','','A2','A3','A3','A1','A1','A2','A2','A2','A33','','A5','','Toronto','A5','','Y','Y','A3',''),(67,NULL,'2023-09-26 23:27:22',1,'en','1539043741','2023-09-26 23:22:31','2023-09-26 23:27:22',NULL,'','Y','','','','','','Y','','Y','','A1','','','','A2','A3','A3','A3','A45','','A3','','Salt Lake City','A5','','','Y','A2',''),(68,NULL,NULL,NULL,'en','1195159075','2023-09-26 23:24:46','2023-09-26 23:24:46',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(69,NULL,'2023-09-26 23:26:07',1,'en','216610956','2023-09-26 23:24:51','2023-09-26 23:26:07','https://www.reddit.com/r/NixOS/comments/16t1n3p/nixcon_north_america_survey/','','','','Y','','Y','','','Y','Y','','A1','A4','A2','A2','A4','A4','A4','A4','A6','','A3','','San Fransisco','A3','','','Y','A2',''),(70,NULL,NULL,NULL,'en','1160531970','2023-09-26 23:28:23','2023-09-26 23:28:23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(71,NULL,NULL,NULL,'en','1987209614','2023-09-26 23:30:18','2023-09-26 23:30:18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(72,NULL,'2023-09-26 23:35:45',1,'en','259163034','2023-09-26 23:33:45','2023-09-26 23:35:45','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','','','','A2','A2','A2','A1','A3','A4','A4','A4','-oth-','','A2','','','A5','','Y','Y','A2',''),(73,NULL,'2023-09-26 23:37:04',1,'en','2066734145','2023-09-26 23:34:17','2023-09-26 23:37:04',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A3','A2','A2','A2','A2','A4','A4','A4','-oth-','','A2','','','A5','','Y','Y','A2',''),(74,NULL,NULL,NULL,'en','234214317','2023-09-26 23:39:19','2023-09-26 23:39:19',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(75,NULL,NULL,NULL,'en','1563954122','2023-09-26 23:40:07','2023-09-26 23:40:07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(76,NULL,'2023-09-26 23:44:54',1,'en','864004802','2023-09-26 23:43:35','2023-09-26 23:44:54','https://www.reddit.com/','','Y','','','','Y','Y','Y','','','','A2','A1','A3','A2','A3','A3','A3','A3','A7','','A3','','','A2','','Y','Y','A2',''),(77,NULL,NULL,NULL,'en','85605169','2023-09-26 23:43:56','2023-09-26 23:43:56','https://www.reddit.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(78,NULL,NULL,NULL,'en','442805739','2023-09-26 23:46:48','2023-09-26 23:46:48','https://www.reddit.com/r/NixOS/comments/16t1n3p/nixcon_north_america_survey/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(79,NULL,NULL,NULL,'en','1734657181','2023-09-26 23:54:25','2023-09-26 23:54:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(80,NULL,'2023-09-26 23:58:35',1,'en','2126042841','2023-09-26 23:57:37','2023-09-26 23:58:35',NULL,'','Y','','','','','','Y','','','','A2','A2','A2','A2','A2','A3','A3','A3','A33','','A2','','','','','Y','','A2',''),(81,NULL,NULL,NULL,'en','1016040175','2023-09-26 23:58:53','2023-09-26 23:58:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(82,NULL,'2023-09-27 00:06:11',1,'en','119316692','2023-09-27 00:01:40','2023-09-27 00:06:11',NULL,'Y','Y','','','Used some older versions but didn\'t stick. Trying again with flakes and the latest.','Y','Y','Y','','','','A1','','','A3','A2','','A4','','A6','','A3','','For non-US, Vancouver is the top of the list for me personally.','A5','','','Y','A3',''),(83,NULL,'2023-09-27 00:10:04',1,'en','1912974098','2023-09-27 00:07:50','2023-09-27 00:10:04',NULL,'','Y','','','','','','Y','Y','','','A3','A1','A1','A1','A4','A4','A3','A4','A21','','A2','','','A3','','Y','Y','A2',''),(84,NULL,NULL,NULL,'en','826496735','2023-09-27 00:13:34','2023-09-27 00:13:34',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(86,NULL,NULL,NULL,'en','2061572894','2023-09-27 00:16:35','2023-09-27 00:16:35','https://www.reddit.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(87,NULL,'2023-09-27 00:28:29',1,'en','1146933380','2023-09-27 00:27:44','2023-09-27 00:28:29',NULL,'','','Y','','','Y','','Y','','','','','','','','','','','','A44','','','','','A5','','Y','','A1',''),(88,NULL,NULL,NULL,'en','346770120','2023-09-27 00:40:28','2023-09-27 00:40:28','https://old.reddit.com/r/NixOS/comments/16t1n3p/nixcon_north_america_survey/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(89,NULL,'2023-09-27 01:05:45',1,'en','1451200135','2023-09-27 01:03:25','2023-09-27 01:05:45',NULL,'','Y','','','','','Y','Y','Y','','','A2','A3','A3','A2','A1','A4','A4','A4','A60','','A5','','Toronto','A2','','Y','Y','A3',''),(90,NULL,'2023-09-27 01:12:18',1,'en','226202974','2023-09-27 01:10:02','2023-09-27 01:12:18','https://survey.nixos.org/','','','','Y','','Y','','Y','Y','Y','','A2','A3','A2','A2','A1','A2','A2','A3','A62','','A5','','Montreal','A5','','Y','Y','A2','Montreal, Toronto, Vancouver are obvious choices, but Waterloo, Ontario could be another great option. Airport nearby, renowned computer science school, and lots of tech companies in the area.'),(91,NULL,NULL,NULL,'en','998411233','2023-09-27 01:12:48','2023-09-27 01:12:48','https://www.reddit.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(92,NULL,'2023-09-27 01:17:01',1,'en','1367697694','2023-09-27 01:15:57','2023-09-27 01:17:01',NULL,'','Y','','','','Y','Y','Y','','','','A2','','','A1','','','A3','','A22','','A2','','','A5','','Y','Y','A3',''),(93,NULL,'2023-09-27 01:22:51',1,'en','12919989','2023-09-27 01:20:35','2023-09-27 01:22:51',NULL,'','Y','','','','Y','','Y','','','','A2','','A1','A2','A2','A3','A4','A3','A44','','A3','','Austin ','A5','','Y','Y','A2',''),(94,NULL,'2023-09-27 01:26:20',1,'en','5269721','2023-09-27 01:23:46','2023-09-27 01:26:20','https://www.reddit.com/','','','','Y','','Y','','Y','Y','Y','','A2','A2','A2','A2','A3','A3','A4','A4','A14','','A4','','','A4','','Y','Y','A2','Have you broadcast Nix in the past?'),(95,NULL,NULL,NULL,'en','1427320655','2023-09-27 01:35:18','2023-09-27 01:35:18','https://www.reddit.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(96,NULL,NULL,NULL,'en','1598689840','2023-09-27 01:58:40','2023-09-27 01:58:40',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(97,NULL,'2023-09-27 02:31:26',1,'en','1353299574','2023-09-27 02:10:07','2023-09-27 02:31:26','https://old.reddit.com/','Y','Y','','','','Y','Y','Y','','','','A4','A4','A4','A1','A4','A4','A4','A4','A31','','A2','','Any city accessible by public transit from NYC, the closer and safer the better','A3','','','Y','A2',''),(98,NULL,'2023-09-27 02:16:06',1,'en','947533596','2023-09-27 02:14:52','2023-09-27 02:16:06','https://www.reddit.com/','','','','Y','','','Y','Y','Y','','','A4','A4','A4','','A1','A4','A4','A4','A60','','A5','','Toronto','A1','','','Y','A2',''),(99,NULL,'2023-09-27 02:19:30',1,'en','832595200','2023-09-27 02:15:55','2023-09-27 02:19:30',NULL,'','','','Y','','Y','','','Y','Y','','A3','A1','A2','A2','A3','A4','A4','A4','A36','','A2','','','A3','','','Y','A3',''),(100,NULL,NULL,NULL,'en','49993271','2023-09-27 02:15:56','2023-09-27 02:15:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(101,NULL,'2023-09-27 02:18:24',1,'en','2075545682','2023-09-27 02:16:28','2023-09-27 02:18:24','https://t.co/','','','Y','Y','','Y','','Y','Y','','','A1','A2','A2','A2','A2','A2','A3','A3','A6','','A3','','Las Vegas','A5','','Y','Y','A1','Make it happen!'),(102,NULL,'2023-09-27 02:19:43',1,'en','1436131007','2023-09-27 02:17:10','2023-09-27 02:19:43','https://www.reddit.com/','','','Y','','','Y','','Y','','Y','','A2','A1','A3','A3','A2','A2','A3','A3','A7','','A4','','Denver','A3','','Y','Y','A2',''),(103,NULL,'2023-09-27 02:32:23',1,'en','1074065743','2023-09-27 02:26:43','2023-09-27 02:32:23',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A2','A2','A1','A2','A2','A3','A4','A4','A44','','A4','','Houston, TX','A4','','Y','Y','A1',''),(104,NULL,'2023-09-27 02:28:41',1,'en','1216926492','2023-09-27 02:27:20','2023-09-27 02:28:41',NULL,'','Y','','','','Y','','Y','','','','','','','','A2','','','','A60','','A5','','','A2','','Y','Y','A3',''),(105,NULL,'2023-09-27 02:38:14',1,'en','2101132455','2023-09-27 02:35:38','2023-09-27 02:38:14','https://www.reddit.com/','','','Y','Y','','Y','','','Y','Y','','A2','A3','','A1','','','','','A21','','A2','','Baltimore or Philly (Cheaper than NY and DC, centrally placed)','A3','','','Y','A2','Cool!'),(106,NULL,'2023-09-27 02:44:27',1,'en','1606154563','2023-09-27 02:43:00','2023-09-27 02:44:27',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A1','A2','A2','A2','A4','A4','A4','A4','A6','','A3','','','A2','','Y','','A2',''),(107,NULL,'2023-09-27 03:14:29',1,'en','714443841','2023-09-27 03:13:10','2023-09-27 03:14:29',NULL,'','','Y','','','','','Y','','','','','A1','A3','','A4','A4','A4','A4','A14','','A4','','','A1','','Y','','A3',''),(108,NULL,'2023-09-27 03:39:13',1,'en','753733046','2023-09-27 03:36:46','2023-09-27 03:39:13',NULL,'','','','Y','','','','Y','Y','','','A2','A2','A2','A2','A2','A3','A4','A4','A6','','A3','','San Francisco','A5','','','Y','A1',''),(109,NULL,'2023-09-27 03:42:57',1,'en','354774166','2023-09-27 03:41:23','2023-09-27 03:42:57',NULL,'','Y','','','','Y','Y','','','','','A3','A2','A2','A2','A4','A4','A4','A4','A33','','A4','','','A2','','','Y','A2',''),(110,NULL,NULL,NULL,'en','538804264','2023-09-27 03:55:04','2023-09-27 03:55:04','https://old.reddit.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(111,NULL,NULL,NULL,'en','2064222518','2023-09-27 04:06:54','2023-09-27 04:06:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(112,NULL,'2023-09-27 04:12:12',1,'en','406651087','2023-09-27 04:09:57','2023-09-27 04:12:12','https://www.reddit.com/','','','Y','','','','','Y','Y','','','A2','A2','A3','A3','A1','A3','A3','A4','A53','','A6','','Vancouver','A4','','Y','Y','A3',''),(113,NULL,'2023-09-27 04:49:30',1,'en','1201902857','2023-09-27 04:46:49','2023-09-27 04:49:30','https://www.reddit.com/','','','','Y','','Y','','Y','Y','','','','','','A2','A3','A3','A4','A4','A33','','A2','','New York City','A2','','Y','Y','A2',''),(114,NULL,NULL,NULL,'en','1782757058','2023-09-27 05:01:44','2023-09-27 05:01:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(115,NULL,'2023-09-27 05:04:58',1,'en','1768780116','2023-09-27 05:03:33','2023-09-27 05:04:58',NULL,'Y','','Y','Y','','Y','','Y','Y','Y','','A2','A4','A4','A3','A4','A4','A4','A4','A6','','A3','','','A4','','Y','Y','A2',''),(116,NULL,NULL,NULL,'en','1212961626','2023-09-27 05:44:02','2023-09-27 05:44:02',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(117,NULL,NULL,NULL,'en','496608640','2023-09-27 05:59:49','2023-09-27 05:59:49','https://t.co/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(118,NULL,NULL,NULL,'en','1511319355','2023-09-27 06:11:15','2023-09-27 06:11:15',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(119,NULL,NULL,NULL,'en','1915125838','2023-09-27 06:17:31','2023-09-27 06:17:31','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(120,NULL,NULL,NULL,'en','1086998228','2023-09-27 06:18:44','2023-09-27 06:18:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(121,NULL,NULL,NULL,'en','254898065','2023-09-27 06:23:16','2023-09-27 06:23:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(122,NULL,NULL,NULL,'en','1766882650','2023-09-27 06:31:40','2023-09-27 06:31:40',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(123,NULL,NULL,NULL,'en','1075240468','2023-09-27 06:59:26','2023-09-27 06:59:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(125,NULL,NULL,NULL,'en','963144280','2023-09-27 07:17:14','2023-09-27 07:17:14','https://www.reddit.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(126,NULL,'2023-09-27 07:21:56',1,'en','1726512531','2023-09-27 07:19:37','2023-09-27 07:21:56',NULL,'','','Y','','','Y','','Y','','Y','','A3','','','','','','','','-oth-','','','','','','','','','A3',''),(127,NULL,NULL,NULL,'en','477748047','2023-09-27 07:28:48','2023-09-27 07:28:48',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(128,NULL,NULL,NULL,'en','1353356819','2023-09-27 07:33:53','2023-09-27 07:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(129,NULL,'2023-09-27 07:51:29',1,'en','989353723','2023-09-27 07:49:38','2023-09-27 07:51:29',NULL,'','','Y','Y','','Y','','','','','','A4','A4','A4','A4','A1','A3','A3','A3','A53','','A6','','Vancouver','A3','','Y','Y','A1',''),(131,NULL,'2023-09-27 08:13:56',1,'en','1043929534','2023-09-27 08:12:16','2023-09-27 08:13:56','https://old.reddit.com/r/NixOS/comments/16t1n3p/nixcon_north_america_survey/','Y','Y','','','','Y','Y','Y','','','','A4','A1','A3','A2','A4','A4','A4','A4','A15','','A4','','','A3','','Y','','A2',''),(132,NULL,NULL,NULL,'en','1092789394','2023-09-27 08:27:12','2023-09-27 08:27:12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(133,NULL,'2023-09-27 08:53:07',1,'en','20315917','2023-09-27 08:50:29','2023-09-27 08:53:07',NULL,'','','Y','','','Y','','Y','','','','A4','A4','A4','A4','A1','A4','A4','A4','A60','','A5','','Toronto, Ontario','A2','','Y','Y','A1',''),(134,NULL,NULL,NULL,'en','1709285097','2023-09-27 09:04:24','2023-09-27 09:04:24','https://www.reddit.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(135,NULL,NULL,NULL,'en','2009863637','2023-09-27 09:05:11','2023-09-27 09:05:11','https://www.reddit.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136,NULL,'2023-09-27 09:16:52',1,'en','568941073','2023-09-27 09:15:05','2023-09-27 09:16:52',NULL,'','','','Y','','Y','','Y','','Y','','A3','A2','A2','A1','A2','A4','A4','A4','A34','','A2','','Raleigh','A2','','','Y','A2',''),(137,NULL,'2023-09-27 09:32:20',1,'en','781975101','2023-09-27 09:28:12','2023-09-27 09:32:20',NULL,'','','Y','Y','','Y','','Y','Y','','','A2','A2','A2','A2','A2','A2','A2','A2','-oth-','Europe','A8','','','A5','','Y','Y','A2',''),(138,NULL,NULL,NULL,'en','503434051','2023-09-27 09:36:59','2023-09-27 09:36:59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139,NULL,NULL,NULL,'en','1946601064','2023-09-27 09:40:04','2023-09-27 09:40:04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(140,NULL,NULL,NULL,'en','1748354201','2023-09-27 09:40:28','2023-09-27 09:40:28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(141,NULL,NULL,NULL,'en','1000012848','2023-09-27 09:45:22','2023-09-27 09:45:22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(142,NULL,'2023-09-27 09:47:55',1,'en','917513654','2023-09-27 09:46:07','2023-09-27 09:47:55','https://www.reddit.com/r/NixOS/comments/16t1n3p/nixcon_north_america_survey/','','','Y','Y','','Y','','Y','Y','Y','','A2','A2','A2','A1','A2','A3','A3','A3','A21','','A2','','','A3','','Y','Y','A2',''),(143,NULL,NULL,NULL,'en','772767330','2023-09-27 10:00:53','2023-09-27 10:00:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(144,NULL,NULL,NULL,'en','524372737','2023-09-27 10:21:15','2023-09-27 10:21:15',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(145,NULL,NULL,NULL,'en','411723923','2023-09-27 10:28:41','2023-09-27 10:28:41',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(146,NULL,NULL,NULL,'en','1256837877','2023-09-27 10:34:36','2023-09-27 10:34:36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(147,NULL,NULL,NULL,'en','172242035','2023-09-27 10:38:23','2023-09-27 10:38:23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(148,NULL,NULL,NULL,'en','889356095','2023-09-27 10:40:01','2023-09-27 10:40:01','https://t.co/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(150,NULL,NULL,NULL,'en','95153251','2023-09-27 11:28:25','2023-09-27 11:28:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(151,NULL,NULL,NULL,'en','645415546','2023-09-27 11:29:16','2023-09-27 11:29:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(152,NULL,'2023-09-27 12:16:14',1,'en','1490571947','2023-09-27 12:14:27','2023-09-27 12:16:14',NULL,'','','Y','Y','','Y','Y','Y','','','','A3','A2','','','','A4','','','A23','','A2','','','A4','','Y','Y','A3',''),(153,NULL,'2023-09-27 12:42:50',1,'en','376886520','2023-09-27 12:32:14','2023-09-27 12:42:50',NULL,'','','','Y','','Y','','Y','','','','A2','A2','A2','A2','A2','A2','A2','A2','A33','','A2','','','A5','','','Y','A2',''),(154,NULL,NULL,NULL,'en','167664165','2023-09-27 12:34:42','2023-09-27 12:34:42',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(155,NULL,NULL,NULL,'en','1688146917','2023-09-27 12:38:58','2023-09-27 12:38:58','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(156,NULL,NULL,NULL,'en','940482150','2023-09-27 12:41:31','2023-09-27 12:41:31',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(157,NULL,NULL,NULL,'en','1047313322','2023-09-27 12:50:15','2023-09-27 12:50:15',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(158,NULL,'2023-09-27 13:24:33',1,'en','1548239304','2023-09-27 13:21:06','2023-09-27 13:24:33',NULL,'','Y','','','','Y','Y','Y','Y','','','A2','A1','A3','A2','A4','A3','A3','A3','A26','','A4','','','A5','','','Y','A2',''),(159,NULL,'2023-09-27 13:59:10',1,'en','550999367','2023-09-27 13:58:09','2023-09-27 13:59:10',NULL,'','','','Y','','Y','','Y','','','','A2','A2','A3','A2','A2','','','','A33','','A2','','','A5','','','Y','A2',''),(160,NULL,NULL,NULL,'en','1941457838','2023-09-27 14:17:36','2023-09-27 14:17:36','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(161,NULL,'2023-09-27 15:21:35',1,'en','2119337921','2023-09-27 14:31:51','2023-09-27 15:21:35',NULL,'','','','Y','','Y','','Y','','','','A2','A2','A2','A1','A2','A3','A3','A3','A33','','A2','','New York','A4','','Y','Y','A2',''),(162,NULL,NULL,NULL,'en','1254144789','2023-09-27 14:32:00','2023-09-27 14:32:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(163,NULL,'2023-09-27 14:59:03',1,'en','407987425','2023-09-27 14:33:54','2023-09-27 14:59:03',NULL,'','Y','','','','Y','','Y','','','','A1','A2','A3','A2','A2','A2','A3','A3','A6','','A3','','','A5','','Y','Y','A2',''),(164,NULL,NULL,NULL,'en','1179563741','2023-09-27 14:34:32','2023-09-27 14:34:32','https://www.google.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(165,NULL,NULL,NULL,'en','1850490624','2023-09-27 14:40:21','2023-09-27 14:40:21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(166,NULL,'2023-09-27 15:07:37',1,'en','425287224','2023-09-27 15:05:59','2023-09-27 15:07:37','https://discourse.nixos.org/','','','Y','Y','','Y','','','Y','Y','','A2','A2','A2','A1','A3','A3','A3','A3','A22','','A2','','Boston','A5','','','Y','A2',''),(167,NULL,'2023-09-27 15:19:05',1,'en','1422416119','2023-09-27 15:07:17','2023-09-27 15:19:05',NULL,'','','','Y','','Y','','Y','Y','Y','','A2','A3','','A2','A2','A4','A4','A4','A47','','A2','','Washington DC','','','','Y','A1',''),(168,NULL,NULL,NULL,'en','1641727199','2023-09-27 15:08:03','2023-09-27 15:08:03',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(170,NULL,'2023-09-27 15:11:41',1,'en','2050501159','2023-09-27 15:08:26','2023-09-27 15:11:41',NULL,'','','Y','Y','','Y','','','Y','','','A2','A2','A2','A1','A2','A2','A2','A2','A33','','A2','','','A5','','Y','Y','A2','Once I have to get in a plane, I don\'t really care how far I have to go. That said, if I can travel by train up and down the northeast to get there that would be great!'),(171,NULL,NULL,NULL,'en','1315950048','2023-09-27 15:15:01','2023-09-27 15:15:01',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(172,NULL,NULL,NULL,'en','1864615771','2023-09-27 15:23:54','2023-09-27 15:23:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(173,NULL,'2023-09-27 15:28:20',1,'en','542643636','2023-09-27 15:26:48','2023-09-27 15:28:20','https://discourse.nixos.org/','','Y','','','','','Y','Y','','','','A2','A3','A3','A3','A1','A4','A4','A4','A53','','A6','','','A3','','','Y','A3',''),(174,NULL,NULL,NULL,'en','53707164','2023-09-27 15:36:59','2023-09-27 15:36:59','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(175,NULL,'2023-09-27 16:01:17',1,'en','863960145','2023-09-27 15:59:53','2023-09-27 16:01:17',NULL,'Y','','Y','','','Y','','Y','Y','Y','','','','A1','','','','','','A2','','A4','','','A3','','Y','Y','A1',''),(176,NULL,'2023-09-27 16:29:09',1,'en','1238468338','2023-09-27 16:27:04','2023-09-27 16:29:09','https://www.linkedin.com/','','Y','Y','','','Y','Y','Y','Y','Y','','A4','','A2','','','','','','A44','','A4','','Houston','A1','','Y','Y','A1','Looking for nix groups in Houston '),(177,NULL,NULL,NULL,'en','1436033838','2023-09-27 16:28:37','2023-09-27 16:28:37','android-app://com.linkedin.android/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(178,NULL,NULL,NULL,'en','1537460146','2023-09-27 16:33:00','2023-09-27 16:33:00','https://t.co/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(179,NULL,NULL,NULL,'en','2137234608','2023-09-27 16:33:14','2023-09-27 16:33:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(180,NULL,'2023-09-27 16:39:25',1,'en','308469782','2023-09-27 16:38:37','2023-09-27 16:39:25',NULL,'','','','Y','','Y','','Y','','Y','','A1','A2','A4','A2','A2','A3','A3','A3','A6','','A3','','Portland','A4','','Y','Y','A2',''),(181,NULL,'2023-09-27 16:47:46',1,'en','1174666765','2023-09-27 16:45:36','2023-09-27 16:47:46',NULL,'','Y','','','','Y','','','','','Showcase a Nix-based product','A2','A2','A1','A1','A2','A3','A3','A4','A10','','A2','','','A5','','Y','','A1',''),(182,NULL,'2023-09-27 16:47:44',1,'en','1173958350','2023-09-27 16:45:45','2023-09-27 16:47:44','https://t.co/','','','','Y','','Y','','Y','Y','','','','A1','','A2','','','','','A37','','A4','','','A5','','','Y','A3',''),(183,NULL,'2023-09-27 16:58:05',1,'en','1711067878','2023-09-27 16:56:39','2023-09-27 16:58:05',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A2','A2','A3','A2','A1','A2','A2','A4','A53','','A3','','Vancouver','A3','','','Y','A2',''),(184,NULL,'2023-09-27 17:01:16',1,'en','719136522','2023-09-27 16:57:49','2023-09-27 17:01:16','https://t.co/','','','Y','Y','','Y','','Y','','','','A2','A3','A2','A3','A2','A2','A2','A2','-oth-','','','','','A5','','Y','Y','A3',''),(185,NULL,NULL,NULL,'en','413495194','2023-09-27 17:06:17','2023-09-27 17:06:17','android-app://com.linkedin.android/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(186,NULL,NULL,NULL,'en','264177831','2023-09-27 17:06:49','2023-09-27 17:06:49','https://t.co/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(187,NULL,NULL,NULL,'en','1054315988','2023-09-27 17:28:21','2023-09-27 17:28:21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(188,NULL,NULL,NULL,'en','1241250270','2023-09-27 17:46:29','2023-09-27 17:46:29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(189,NULL,'2023-09-27 17:57:56',1,'en','1647828141','2023-09-27 17:55:34','2023-09-27 17:57:56','https://discourse.nixos.org/','','','Y','','','Y','Y','Y','Y','Y','','A1','A2','A3','A2','A1','A2','A3','A3','A52','','A6','','Toronto or Vancouver (both have good flight connections)','A5','','','Y','A2','It\'s important to be easy to reach by flight, i.e., a hub'),(190,NULL,NULL,NULL,'en','1168693546','2023-09-27 17:59:56','2023-09-27 17:59:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(191,NULL,'2023-09-27 18:34:45',1,'en','853774170','2023-09-27 18:32:08','2023-09-27 18:34:45','https://www.linkedin.com/','','','Y','Y','','Y','','Y','Y','','','A2','A2','A2','A2','A3','A2','A2','A2','','','A2','','New Orleans','A5','','','Y','A3',''),(192,NULL,NULL,NULL,'en','198507837','2023-09-27 18:37:36','2023-09-27 18:37:36','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(193,NULL,NULL,NULL,'en','1141882258','2023-09-27 19:20:04','2023-09-27 19:20:04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(194,NULL,'2023-09-27 19:31:17',1,'en','1431359671','2023-09-27 19:29:04','2023-09-27 19:31:17','https://discourse.nixos.org/','','','Y','','','Y','','Y','Y','Y','','A1','A2','A2','A2','A2','A2','A2','A2','A6','','A3','','Long Beach','A5','','','Y','A2','SCaLE? :)'),(195,NULL,'2023-09-27 19:33:54',1,'en','937488760','2023-09-27 19:29:07','2023-09-27 19:33:54',NULL,'','','Y','','','Y','Y','Y','Y','','','A2','A2','A4','A1','A2','A2','A2','A2','-oth-','Washington, DC','A2','','Washington, DC','A4','','','Y','A1',''),(196,NULL,NULL,NULL,'en','2044303295','2023-09-27 19:46:25','2023-09-27 19:46:25','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(197,NULL,'2023-09-27 19:57:40',1,'en','293492437','2023-09-27 19:56:22','2023-09-27 19:57:40','https://discourse.nixos.org/','','Y','','','','Y','','Y','','','','A1','','','','A2','','A4','A2','A6','','A3','','','A5','','Y','Y','A3','No!'),(198,NULL,'2023-09-27 20:06:53',1,'en','2137871632','2023-09-27 20:01:15','2023-09-27 20:06:53',NULL,'','Y','','Y','','Y','','Y','','','','A2','A2','A2','A1','A3','A3','A3','A3','A33','','A2','','New York City','A4','','','Y','A3',''),(199,NULL,NULL,NULL,'en','406610441','2023-09-27 20:30:48','2023-09-27 20:30:48','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(200,NULL,'2023-09-27 20:44:47',1,'en','992578762','2023-09-27 20:39:47','2023-09-27 20:44:47',NULL,'','','','Y','','Y','','Y','Y','Y','','A1','A4','A4','A4','','','','','-oth-','None','A3','','Portland ','-oth-','Coming from Australia ','Y','Y','A2','Highly reconned Portland as an affordable and accessible location.'),(201,NULL,'2023-09-27 20:41:37',1,'en','1878313561','2023-09-27 20:40:25','2023-09-27 20:41:37','https://discourse.nixos.org/','','Y','','','','Y','Y','Y','','','','A1','A2','A4','A4','A2','A4','A4','A4','A53','','A6','','Vancouver','A5','','','Y','A2',''),(202,NULL,NULL,NULL,'en','1026087200','2023-09-27 20:49:26','2023-09-27 20:49:26','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(203,NULL,'2023-09-27 21:02:05',1,'en','861056119','2023-09-27 20:53:47','2023-09-27 21:02:05','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','Y','Y','','A2','A1','A3','A1','A2','A2','A1','A1','A7','','A3','','','A5','','Y','','A2',''),(204,NULL,NULL,NULL,'en','113336358','2023-09-27 20:54:24','2023-09-27 20:54:24',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(205,NULL,NULL,NULL,'en','1620316474','2023-09-27 20:59:45','2023-09-27 20:59:45','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(206,NULL,NULL,NULL,'en','1332698376','2023-09-27 21:04:29','2023-09-27 21:04:29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(207,NULL,NULL,NULL,'en','791747003','2023-09-27 21:09:35','2023-09-27 21:09:35','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(208,NULL,'2023-09-27 21:18:11',1,'en','1665808220','2023-09-27 21:16:32','2023-09-27 21:18:11','android-app://com.linkedin.android/','','','Y','Y','','Y','','Y','','','','A4','A3','A2','A2','A4','A4','A4','A4','A8','','A2','','New haven ','A2','','','Y','A2',''),(209,NULL,'2023-09-27 21:39:50',1,'en','65144489','2023-09-27 21:26:23','2023-09-27 21:39:50',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A3','A2','','A2','A1','A2','A3','A3','A62','','A5','','','','','Y','Y','A2',''),(210,NULL,'2023-09-27 21:40:22',1,'en','1916785587','2023-09-27 21:38:58','2023-09-27 21:40:22','https://discourse.nixos.org/','','','','Y','','Y','','Y','Y','Y','','A2','A2','A3','A1','A2','A2','A3','A3','A22','','A2','','','A3','','Y','Y','A2',''),(211,NULL,NULL,NULL,'en','1616140601','2023-09-27 21:39:15','2023-09-27 21:39:15','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(212,NULL,'2023-09-27 21:43:45',1,'en','843227537','2023-09-27 21:40:09','2023-09-27 21:43:45',NULL,'','','','Y','','Y','','Y','','','','A1','A2','A3','A2','A2','A4','A4','A4','A48','','A3','','','A5','','Y','Y','A3','Please require negative Covid tests the day before the conference and require masks be worn the entire time. \r\n\r\nCovid is not over and requiring masks is one fantastic way to ensure people do not get sick'),(213,NULL,'2023-09-27 21:46:08',1,'en','616331120','2023-09-27 21:43:09','2023-09-27 21:46:08','https://discourse.nixos.org/','','','','Y','','Y','','','Y','','','','','A2','A2','A1','A4','A4','A4','A62','','A5','','Montreal','-oth-','4 hours or less ','Y','Y','A2','Find a non-woke venue this time. How would you handle the Andruil situation this time?'),(214,NULL,'2023-09-27 21:50:24',1,'en','650507681','2023-09-27 21:48:52','2023-09-27 21:50:24','https://discourse.nixos.org/','','','','Y','','Y','Y','Y','Y','Y','','','A1','','','','','','','A50','','A4','','','A1','','Y','Y','A2',''),(215,NULL,NULL,NULL,'en','628748321','2023-09-27 21:52:31','2023-09-27 21:52:31','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(216,NULL,'2023-09-27 21:59:34',1,'en','327592883','2023-09-27 21:57:59','2023-09-27 21:59:34','https://discourse.nixos.org/','','','','Y','','','Y','Y','','','','','','','A2','A3','','A4','','A60','','A5','','','A5','','Y','','A2',''),(217,NULL,'2023-09-27 22:03:29',1,'en','1688537230','2023-09-27 22:02:30','2023-09-27 22:03:29','https://discourse.nixos.org/','','','','Y','','Y','','Y','','','','A1','A4','A4','A4','A4','A4','A4','A4','A6','','A3','','San Francisco','A1','','Y','','A3',''),(218,NULL,NULL,NULL,'en','1406273196','2023-09-27 22:10:49','2023-09-27 22:10:49','https://www.linkedin.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(219,NULL,'2023-09-27 22:21:29',1,'en','731206465','2023-09-27 22:20:41','2023-09-27 22:21:29',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A2','A2','A2','A2','A2','A2','A2','A2','A33','','A2','','NYC','A3','','Y','Y','A1',''),(220,NULL,'2023-09-27 23:11:22',1,'en','120576106','2023-09-27 23:08:02','2023-09-27 23:11:22',NULL,'','Y','','','nix user for years but still feel like a beginner. ','','Y','','','Y','','A2','A3','A3','','A2','A4','A4','A4','A53','','A6','','Vancouver ','A5','','Y','','A1','no'),(221,NULL,'2023-09-27 23:16:47',1,'en','745968387','2023-09-27 23:14:50','2023-09-27 23:16:47',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A3','A2','A1','A1','A2','A3','A4','A4','A11','','A2','','','A4','','','Y','A2',''),(222,NULL,'2023-09-27 23:17:53',1,'en','1255487096','2023-09-27 23:16:00','2023-09-27 23:17:53','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','','','','A1','A1','A3','A2','A4','A4','A4','A4','A14','','A4','','Chicago','A1','','','Y','A3',''),(223,NULL,'2023-09-27 23:22:52',1,'en','1881877846','2023-09-27 23:21:16','2023-09-27 23:22:52','https://t.co/','','','Y','Y','','Y','','Y','Y','','','A1','A2','A2','A2','A2','A2','A3','A3','A29','','A3','','Las Vegas','A5','','','','A2',''),(224,NULL,'2023-09-27 23:23:41',1,'en','838998455','2023-09-27 23:21:37','2023-09-27 23:23:41','https://discourse.nixos.org/','','','','','Using for a couple years but still a lot to learn','Y','Y','Y','','','','A1','A2','A2','A2','A2','A3','A3','A3','A48','','A3','','Seattle area','A5','','Y','Y','A2',''),(225,NULL,'2023-09-27 23:46:21',1,'en','892769452','2023-09-27 23:44:53','2023-09-27 23:46:21','https://discourse.nixos.org/','','Y','','','','','Y','Y','','','','','','A1','A2','','','','','A41','','A2','','','A2','','','Y','A3',''),(226,NULL,'2023-09-28 00:11:56',1,'en','731109741','2023-09-28 00:10:03','2023-09-28 00:11:56','https://discourse.nixos.org/','','','','Y','','Y','Y','Y','Y','','','A2','A2','A3','A3','A4','A4','A4','A4','A11','','A2','','','A4','','','Y','A1',''),(227,NULL,NULL,NULL,'en','209827724','2023-09-28 00:10:14','2023-09-28 00:10:14','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(228,NULL,NULL,NULL,'en','1784336616','2023-09-28 00:21:29','2023-09-28 00:21:29','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(229,NULL,NULL,NULL,'en','738751711','2023-09-28 00:21:51','2023-09-28 00:21:51','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(230,NULL,NULL,NULL,'en','1260360177','2023-09-28 00:23:14','2023-09-28 00:23:14','https://www.linkedin.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(231,NULL,'2023-09-28 00:34:14',1,'en','1998266901','2023-09-28 00:27:43','2023-09-28 00:34:14','https://discourse.nixos.org/','','','Y','','','Y','','Y','Y','Y','','A2','A3','A3','A2','A1','A3','A3','A3','A60','','-oth-','Central Canada','Winnipeg, Manitoba','A4','','','Y','A2',''),(232,NULL,'2023-09-28 00:52:45',1,'en','1358457356','2023-09-28 00:49:26','2023-09-28 00:52:45','https://discourse.nixos.org/','','','','Y','','Y','','Y','Y','','','A2','A2','A3','A3','A2','A2','A3','A3','A53','','A3','','','A5','','Y','','A3',''),(233,NULL,NULL,NULL,'en','1292795433','2023-09-28 01:22:53','2023-09-28 01:22:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(234,NULL,NULL,NULL,'en','1604792097','2023-09-28 01:37:30','2023-09-28 01:37:30','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(235,NULL,'2023-09-28 01:40:51',1,'en','1850597220','2023-09-28 01:38:05','2023-09-28 01:40:51','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','Y','','','A2','A3','A2','A2','A4','A4','A4','A4','A10','','A2','','Miami','A5','','Y','Y','A2',''),(236,NULL,'2023-09-28 01:42:14',1,'en','2002815300','2023-09-28 01:38:37','2023-09-28 01:42:14','https://www.reddit.com/','','Y','','','','Y','','Y','','','','A1','A2','A3','A3','A4','A4','A4','A4','A45','','A3','','Salt Lake City','A5','','','Y','A3',''),(237,NULL,'2023-09-28 01:44:56',1,'en','2088799124','2023-09-28 01:43:46','2023-09-28 01:44:56','https://discourse.nixos.org/','','','','Y','','Y','','','','Y','','A4','A1','A3','A1','A4','A4','A4','A4','','','A2','','','A4','','','Y','A3',''),(238,NULL,'2023-09-28 01:52:58',1,'en','2062233475','2023-09-28 01:49:06','2023-09-28 01:52:58',NULL,'','','Y','Y','','Y','','Y','Y','','','A1','','','','','','','','A6','','A3','','San Francisco ','A4','','','Y','A2','Think we will get the highest attendance if in San Francisco or Bay Area. \r\n\r\nMaybe relocating with another conference is an option for reduced cost and higher attendance '),(239,NULL,'2023-09-28 01:52:39',1,'en','563527589','2023-09-28 01:51:45','2023-09-28 01:52:39','https://discourse.nixos.org/','Y','','','','','Y','Y','Y','','','','A4','A4','A4','A4','A4','A4','A4','A4','A50','','A4','','','','','','','',''),(240,NULL,'2023-09-28 02:06:36',1,'en','1164691907','2023-09-28 02:04:19','2023-09-28 02:06:36','https://discourse.nixos.org/','','','Y','Y','Maintainer','Y','','','Y','','','A3','A3','A2','A2','A1','A2','A2','A3','','','A5','','','A5','','Y','Y','A3',''),(241,NULL,NULL,NULL,'en','1485338521','2023-09-28 02:10:25','2023-09-28 02:10:25','https://www.linkedin.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(242,NULL,NULL,NULL,'en','1540948287','2023-09-28 02:24:44','2023-09-28 02:24:44','https://t.co/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(243,NULL,NULL,NULL,'en','858560499','2023-09-28 02:46:57','2023-09-28 02:46:57','https://www.linkedin.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(244,NULL,'2023-09-28 02:58:20',1,'en','1387408996','2023-09-28 02:54:07','2023-09-28 02:58:20',NULL,'','','Y','Y','','Y','Y','Y','','','','A4','A4','A4','A4','A2','A4','A4','A4','A60','','A5','','Toronto','A5','','Y','Y','A2',''),(245,NULL,'2023-09-28 03:13:16',1,'en','419433352','2023-09-28 03:12:26','2023-09-28 03:13:16','https://discourse.nixos.org/','','','Y','Y','','Y','Y','Y','Y','','','A1','A1','A2','A3','A4','A4','A4','A4','A6','','A3','','San Diego','A5','','','Y','A2',''),(246,NULL,'2023-09-28 03:23:37',1,'en','176447849','2023-09-28 03:20:44','2023-09-28 03:23:37','https://discourse.nixos.org/','','Y','','','','Y','','Y','Y','Y','','A2','A1','A2','A2','A2','A2','A3','A4','A26','','A4','','Kansas City or Omaha','A4','','Y','Y','A1',''),(247,NULL,'2023-09-28 03:59:39',1,'en','620028752','2023-09-28 03:51:50','2023-09-28 03:59:39','https://discourse.nixos.org/','','Y','','','','Y','Y','Y','Y','','','A2','A2','A2','A2','A2','A3','A3','A3','A40','','A2','','North Stonington','A3','','Y','Y','A1','Yes.'),(248,NULL,'2023-09-28 03:55:48',1,'en','1195658552','2023-09-28 03:52:30','2023-09-28 03:55:48','https://discourse.nixos.org/','','Y','','','','','Y','','Y','','Figure out how to help in the community ','A1','','A3','A2','A2','A2','','A4','A6','','A3','','San Diego','A5','','Y','Y','A2','presentations but hands on would be great!'),(249,NULL,NULL,NULL,'en','766509999','2023-09-28 04:12:07','2023-09-28 04:12:07','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(250,NULL,'2023-09-28 04:24:26',1,'en','2018567599','2023-09-28 04:16:40','2023-09-28 04:24:26','https://www.reddit.com/','','','Y','Y','','Y','Y','Y','Y','Y','','A2','','A1','','','A4','A4','A4','A44','','A4','','Austin Tx','-oth-','I wouldn\'t mind travelling for the event in general','Y','Y','A1','Excited for it to happen, thanks for extending nix events into NA'),(251,NULL,'2023-09-28 04:33:55',1,'en','982547207','2023-09-28 04:32:43','2023-09-28 04:33:55','https://discourse.nixos.org/','','','','Y','','Y','','','','Y','','A1','A4','','A2','A4','A3','A4','A4','A6','','A3','','','A2','','Y','Y','A2',''),(252,NULL,'2023-09-28 04:41:52',1,'en','448672506','2023-09-28 04:39:54','2023-09-28 04:41:52',NULL,'','','Y','Y','','Y','','Y','Y','','','A2','A3','A3','A1','A2','A2','A4','A4','A31','','A2','','Philadelphia','A4','','Y','','A3',''),(253,NULL,NULL,NULL,'en','1534060094','2023-09-28 04:59:32','2023-09-28 04:59:32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(254,NULL,'2023-09-28 05:04:50',1,'en','431384787','2023-09-28 05:03:26','2023-09-28 05:04:50',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A3','A2','A2','A2','A4','A4','A4','A4','A44','','A4','','Houston','A4','','Y','','A3',''),(255,NULL,'2023-09-28 05:16:39',1,'en','1091832132','2023-09-28 05:15:12','2023-09-28 05:16:39','https://discourse.nixos.org/','','','','Y','','Y','','Y','Y','','','','','A2','A1','A2','','','','A33','','A2','','New York, New York, U.S.A','A2','','','Y','A2',''),(256,NULL,NULL,NULL,'en','578999309','2023-09-28 05:19:32','2023-09-28 05:19:32','https://old.reddit.com/r/NixOS/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(257,NULL,NULL,NULL,'en','1368373154','2023-09-28 06:49:50','2023-09-28 06:49:50','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(258,NULL,NULL,NULL,'en','607939375','2023-09-28 06:58:49','2023-09-28 06:58:49','https://www.linkedin.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(259,NULL,NULL,NULL,'en','273601281','2023-09-28 09:52:29','2023-09-28 09:52:29','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(260,NULL,NULL,NULL,'en','144774536','2023-09-28 10:08:17','2023-09-28 10:08:17','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(261,NULL,'2023-09-28 11:19:31',1,'en','1828121176','2023-09-28 11:16:24','2023-09-28 11:19:31','https://discourse.nixos.org/','','Y','','','','Y','','','','','','A2','A2','A2','A1','A2','A4','A4','A4','-oth-','Washington DC','A2','','','A5','','','Y','A3',''),(262,NULL,NULL,NULL,'en','2107965851','2023-09-28 12:15:45','2023-09-28 12:15:45','android-app://com.slack/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(263,NULL,'2023-09-28 12:31:30',1,'en','2080787055','2023-09-28 12:29:11','2023-09-28 12:31:30','https://discourse.nixos.org/','','Y','','','','Y','Y','','','','','A2','A1','A1','A2','A3','A4','A4','A4','A44','','A4','','','A3','','Y','Y','A3',''),(264,NULL,NULL,NULL,'en','234484970','2023-09-28 14:23:30','2023-09-28 14:23:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(265,NULL,'2023-09-28 14:28:17',1,'en','2009429236','2023-09-28 14:25:28','2023-09-28 14:28:17',NULL,'','','Y','','','','','Y','','','','','','','','A1','','','','A52','','A6','','Calgary, AB','A1','','','Y','A2',''),(266,NULL,NULL,NULL,'en','1313425933','2023-09-28 15:00:45','2023-09-28 15:00:45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(267,NULL,'2023-09-28 15:17:59',1,'en','461688183','2023-09-28 15:17:08','2023-09-28 15:17:59',NULL,'','Y','Y','','','Y','Y','Y','Y','','','A1','A2','A3','A2','A2','A2','A2','A2','A6','','A3','','','A5','','Y','Y','A2',''),(268,NULL,'2023-09-28 16:40:36',1,'en','2070132408','2023-09-28 16:38:47','2023-09-28 16:40:36',NULL,'','','','','Been using to manage my personal systems off and on for several years','','Y','Y','Y','','','A3','A3','A2','A1','A4','A4','A4','A4','A10','','A2','','','A3','','','Y','A3',''),(269,NULL,NULL,NULL,'en','166710584','2023-09-28 16:52:02','2023-09-28 16:52:02',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(270,NULL,'2023-09-28 17:06:56',1,'en','1666368571','2023-09-28 17:03:18','2023-09-28 17:06:56','https://discourse.nixos.org/','','','','','Been using NixOS for about 9 months now.','Y','Y','Y','Y','Y','','A2','A3','A4','A2','A1','A4','A3','A4','A60','','A5','','New York or Toronto','A3','','','Y','A3',''),(271,NULL,'2023-09-28 17:27:33',1,'en','496434486','2023-09-28 17:23:29','2023-09-28 17:27:33','https://discourse.nixos.org/','','Y','','','','Y','Y','Y','','Y','','A1','A2','A3','A3','A3','A4','A4','A4','A38','','A3','','Portland Oregon ','A5','','Y','Y','A1',''),(272,NULL,NULL,NULL,'en','1354521734','2023-09-28 18:07:38','2023-09-28 18:07:38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(273,NULL,'2023-09-28 18:19:21',1,'en','701439709','2023-09-28 18:10:01','2023-09-28 18:19:21',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A3','A2','A3','A1','A1','A3','A3','A3','A62','','A5','','','A3','','Y','Y','A2',''),(274,NULL,NULL,NULL,'en','78897980','2023-09-28 18:31:22','2023-09-28 18:31:22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(275,NULL,NULL,NULL,'en','696701889','2023-09-28 20:34:36','2023-09-28 20:34:36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(276,NULL,'2023-09-28 21:07:33',1,'en','472333716','2023-09-28 21:05:53','2023-09-28 21:07:33','https://discourse.nixos.org/','','Y','','','','','Y','','','','','A2','','A3','A1','A2','A4','A4','A4','A62','','A2','','Nyc','A3','','','Y','A2',''),(277,NULL,'2023-09-28 21:31:26',1,'en','1016239465','2023-09-28 21:29:20','2023-09-28 21:31:26','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','Y','','','A3','A1','A2','A3','A3','A3','A3','A3','A14','','A4','','Chicago, IL or Indianapolis, IN or Detroit, MI or Milwaukee, WI or St. Louis, MO.','A3','','Y','','A2',''),(278,NULL,NULL,NULL,'en','162504336','2023-09-28 21:39:54','2023-09-28 21:39:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(279,NULL,'2023-09-28 21:52:10',1,'en','110222972','2023-09-28 21:49:51','2023-09-28 21:52:10','https://discourse.nixos.org/','','','','Y','','','','Y','','','','A3','A1','A1','A3','A4','A4','A4','A4','A5','','A4','','','A3','','Y','Y','A3',''),(280,NULL,'2023-09-28 22:02:13',1,'en','665378189','2023-09-28 21:59:58','2023-09-28 22:02:13','https://t.co/','','Y','','','','Y','Y','Y','Y','','','','A1','A2','','','','A4','A3','A7','','A4','','Boulder or Denver','A3','','Y','','A2','Bootable USB sticks with nix as vendor conversation and bootstraps for folks'),(281,NULL,'2023-09-28 22:04:40',1,'en','1852529976','2023-09-28 22:02:01','2023-09-28 22:04:40','https://discourse.nixos.org/','','','Y','','','Y','','Y','','','','A2','A2','A2','A2','A2','A2','A3','A3','A62','','A5','','','A5','','','','A2',''),(282,NULL,'2023-09-28 23:10:50',1,'en','1238166076','2023-09-28 23:09:45','2023-09-28 23:10:50','https://discourse.nixos.org/','','Y','','','','Y','Y','Y','Y','','','A2','','A3','A3','A3','A4','A4','A4','A6','','A3','','Long Beach','A2','','','Y','A2',''),(283,NULL,NULL,NULL,'en','15744536','2023-09-28 23:37:52','2023-09-28 23:37:52','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(284,NULL,NULL,NULL,'en','1994391933','2023-09-28 23:47:27','2023-09-28 23:47:27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(285,NULL,NULL,NULL,'en','293944601','2023-09-29 04:31:45','2023-09-29 04:31:45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(286,NULL,NULL,NULL,'en','500792575','2023-09-29 04:48:05','2023-09-29 04:48:05','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(287,NULL,NULL,NULL,'en','1324511198','2023-09-29 05:15:46','2023-09-29 05:15:46',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(288,NULL,'2023-09-29 05:25:47',1,'en','1421635980','2023-09-29 05:21:21','2023-09-29 05:25:47',NULL,'Y','','','','','','Y','','','','','','','','A2','','','A3','A4','-oth-','South Africa','A2','','','A1','','','Y','A3','Have an online broadcast/stream of the event and talks'),(289,NULL,'2023-09-29 05:41:44',1,'en','724579616','2023-09-29 05:40:31','2023-09-29 05:41:44',NULL,'','Y','','','','','','Y','','','','','A2','A1','','A3','','','A4','A44','','A4','','','A2','','Y','','A3',''),(290,NULL,'2023-09-29 08:01:53',1,'en','1153120333','2023-09-29 07:59:47','2023-09-29 08:01:53','https://discourse.nixos.org/','','','','Y','','Y','','','','','','A1','A4','A4','A4','A4','A4','A4','A4','A6','','A3','','San Jose, CA (or elsewhere in Silicon Valley)','A3','','Y','Y','A3',''),(291,NULL,NULL,NULL,'en','2075868284','2023-09-29 09:37:58','2023-09-29 09:37:58','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(292,NULL,NULL,NULL,'en','869298371','2023-09-29 09:54:17','2023-09-29 09:54:17','https://www.linkedin.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(293,NULL,NULL,NULL,'en','1196582365','2023-09-29 10:27:00','2023-09-29 10:27:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(294,NULL,'2023-09-29 11:37:03',1,'en','1412658947','2023-09-29 11:35:52','2023-09-29 11:37:03','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','Y','Y','','A3','A2','A2','A1','A2','A3','A4','A4','A30','','A2','','Boston, NY, DC','A2','','','Y','A2',''),(295,NULL,NULL,NULL,'en','802783920','2023-09-29 11:42:55','2023-09-29 11:42:55','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(296,NULL,NULL,NULL,'en','815003315','2023-09-29 12:21:58','2023-09-29 12:21:58','http://lnkd.in/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(297,NULL,'2023-09-29 12:24:24',1,'en','222769814','2023-09-29 12:22:44','2023-09-29 12:24:24',NULL,'','','Y','Y','','Y','','Y','','Y','','A1','A2','A2','A2','A2','A3','A3','A3','A48','','A3','','','A3','','','Y','A3',''),(298,NULL,'2023-09-29 13:05:53',1,'en','1082260186','2023-09-29 13:03:53','2023-09-29 13:05:53','https://www.reddit.com/','','','Y','Y','','','','Y','Y','Y','','A2','A2','A3','A1','A1','A2','A2','A2','A33','','A5','','Toronto','A2','','Y','Y','A2',''),(299,NULL,'2023-09-29 13:37:39',1,'en','1549736150','2023-09-29 13:35:28','2023-09-29 13:37:39','https://discourse.nixos.org/','','Y','','','','Y','Y','','Y','','','A2','A2','A2','A2','A2','A2','A2','A2','A10','','A2','','Washington D. C.','A5','','','Y','A2','Excited for the NixCon'),(300,NULL,'2023-09-29 14:23:20',1,'en','125261034','2023-09-29 14:20:16','2023-09-29 14:23:20',NULL,'','Y','','','','Y','','','','','','A3','A3','A3','A1','A3','A3','A3','A3','A22','','A2','','bahhhhhhston','A1','','Y','Y','A1','Boston is a good time, could organize some elements if needed, given the occasion.'),(301,NULL,NULL,NULL,'en','1022856821','2023-09-29 14:20:20','2023-09-29 14:20:20',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(302,NULL,NULL,NULL,'en','190673647','2023-09-29 15:51:10','2023-09-29 15:51:10','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(303,NULL,'2023-09-29 16:38:56',1,'en','212652243','2023-09-29 16:37:31','2023-09-29 16:38:56',NULL,'Y','Y','','Y','','Y','Y','Y','Y','Y','','A1','A1','A1','A1','A1','A1','A1','A4','A11','','A5','','Chicago','A5','','Y','Y','A2','No'),(304,NULL,'2023-09-29 18:06:00',1,'en','1649011319','2023-09-29 18:02:08','2023-09-29 18:06:00',NULL,'','','Y','','','Y','','Y','Y','Y','','A1','A2','A2','A2','A2','A2','A3','A3','A6','','A3','','San Diego','A5','','Y','Y','A1',''),(305,NULL,'2023-09-29 18:42:05',1,'en','2030054661','2023-09-29 18:38:19','2023-09-29 18:42:05','https://discourse.nixos.org/','Y','Y','Y','','','Y','Y','Y','','','','A4','A4','A3','A1','A2','A4','A4','A4','A22','','A2','','Boston','A3','','','Y','A2',''),(306,NULL,'2023-09-29 18:47:10',1,'en','234435119','2023-09-29 18:42:45','2023-09-29 18:47:10','https://discourse.nixos.org/','','','','Y','','Y','','Y','Y','Y','','A3','A3','A1','A1','A3','A3','A4','A4','A10','','A2','','Orlando','A5','','Y','Y','A2',''),(307,NULL,'2023-09-29 19:03:36',1,'en','118033299','2023-09-29 19:01:37','2023-09-29 19:03:36','android-app://com.linkedin.android/','','','','Y','','','','Y','','Y','','A3','A2','A1','A3','A4','A4','A4','A4','A44','','A4','','','A3','','Y','Y','A1',''),(308,NULL,'2023-09-30 00:33:23',1,'en','1719305976','2023-09-30 00:31:41','2023-09-30 00:33:23','https://discourse.nixos.org/','','Y','','','','Y','Y','','','','','A2','A2','A1','A1','A4','A4','A4','A4','A33','','A2','','','A5','','','Y','A1',''),(309,NULL,'2023-09-30 00:40:26',1,'en','685924896','2023-09-30 00:38:55','2023-09-30 00:40:26','https://discourse.nixos.org/','','','','Y','','Y','','Y','Y','','','A2','A2','A3','A2','A2','A3','A3','A3','A6','','A3','','','','','Y','Y','A2',''),(310,NULL,'2023-09-30 01:32:50',1,'en','1988485654','2023-09-30 01:31:00','2023-09-30 01:32:50','https://www.linkedin.com/','','','Y','Y','','Y','','Y','Y','','','A3','','','A2','A1','','','A4','A23','','A2','','Montreal, Quebec, Canada','A5','','Y','Y','A1',''),(311,NULL,'2023-09-30 02:12:36',1,'en','1577782759','2023-09-30 02:07:33','2023-09-30 02:12:36',NULL,'','Y','','','','Y','Y','Y','','','','A4','A4','A2','A2','','','','','A11','','A2','','Atlanta, GA, Orlando, FL, Nashville, TN, Knoxville, TN','A3','','Y','Y','A1',''),(312,NULL,'2023-09-30 05:04:17',1,'en','2074000284','2023-09-30 05:00:40','2023-09-30 05:04:17',NULL,'','Y','Y','','','Y','Y','Y','Y','','','A1','A1','A2','A2','A2','A3','A3','A4','A6','','A3','','Las Vegas','A5','','Y','Y','A2','Great idea to broaden the appeal and marketing of Nix and NixOS to the North American market. It definitely seems to be heavily EU focused at the moment.'),(313,NULL,'2023-09-30 06:35:02',1,'en','1944415694','2023-09-30 06:13:46','2023-09-30 06:35:02',NULL,'','','Y','','','Y','Y','Y','Y','Y','','','','','','','','','','A10','','A2','','Pensacola, FL','A5','','','Y','A1','Maybe we could host at my local university?'),(315,NULL,NULL,NULL,'en','283160674','2023-09-30 09:27:46','2023-09-30 09:27:46','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(316,NULL,NULL,NULL,'en','313645320','2023-09-30 10:03:27','2023-09-30 10:03:27','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(317,NULL,'2023-09-30 13:43:34',1,'en','637408486','2023-09-30 13:41:44','2023-09-30 13:43:34',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A4','A4','A4','A4','A2','A3','A3','A3','','','A5','','','A5','','Y','Y','A2',''),(318,NULL,'2023-09-30 15:03:21',1,'en','1724045420','2023-09-30 15:00:54','2023-09-30 15:03:21','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','','Y','','A1','A1','A1','A1','A1','A1','A2','A4','A34','','A2','','','A5','','Y','Y','A2',''),(319,NULL,'2023-09-30 15:08:33',1,'en','2099836746','2023-09-30 15:03:12','2023-09-30 15:08:33','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','Y','','','A3','A2','A2','A1','A2','A3','A3','A3','-oth-','','A2','','New York, NY','A5','','Y','Y','A2',''),(320,NULL,'2023-09-30 17:12:57',1,'en','1595813535','2023-09-30 16:59:42','2023-09-30 17:12:57','https://www.linkedin.com/','Y','Y','','','Intermediate Nix user','Y','','Y','Y','','','A1','A2','A3','A2','','A3','A3','A3','A6','','A3','','Anywhere in the bay area','-oth-','I have family in boston so travelling there would be more convenient','Y','Y','A2',''),(321,NULL,'2023-09-30 17:12:43',1,'en','107883468','2023-09-30 17:11:05','2023-09-30 17:12:43',NULL,'','','','Y','','Y','','Y','Y','Y','','A1','A1','A2','A3','A4','A4','A4','A4','A4','','A3','','Phoenix Arizona','A2','','Y','Y','A1',''),(322,NULL,'2023-09-30 17:51:42',1,'en','1879014884','2023-09-30 17:45:51','2023-09-30 17:51:42',NULL,'','','Y','Y','','Y','','','','','','A3','A4','A4','A1','A3','A2','A3','A2','A33','','A2','','New York, Rio de Janeiro','A5','','Y','','A1','Ping me (@lovesegfault) if you want to do it in Rio :)'),(323,NULL,'2023-09-30 20:29:38',1,'en','1934808780','2023-09-30 20:26:23','2023-09-30 20:29:38',NULL,'','Y','','','','Y','Y','Y','','Y','','A2','A1','A2','A2','','','','','A26','','A4','','','A5','','Y','Y','A1',''),(324,NULL,'2023-09-30 21:53:16',1,'en','428958210','2023-09-30 21:51:06','2023-09-30 21:53:16','https://discourse.nixos.org/','','','','Y','maybe more intermediate than advanced','Y','','Y','Y','Y','','A1','A2','A2','A3','A1','A2','A3','A3','A52','','A6','','Vancouver','-oth-','','','Y','A2',''),(325,NULL,'2023-10-01 01:38:09',1,'en','389321938','2023-10-01 01:33:49','2023-10-01 01:38:09',NULL,'','','','Y','','Y','','Y','Y','','','A1','A2','A2','A2','A3','A3','A4','A4','A48','','A3','','Seattle','A5','','Y','Y','A2',''),(326,NULL,NULL,NULL,'en','1616099262','2023-10-01 01:42:10','2023-10-01 01:42:10','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(327,NULL,'2023-10-01 02:02:07',1,'en','1659348335','2023-10-01 02:01:00','2023-10-01 02:02:07',NULL,'','','Y','','','Y','','','','','','A1','A2','A4','A4','A4','A4','A4','A4','A6','','A3','','','A1','','','Y','A2',''),(328,NULL,'2023-10-01 05:24:18',1,'en','157330445','2023-10-01 05:22:47','2023-10-01 05:24:18','https://www.reddit.com/','','Y','','','','Y','Y','Y','','','','A2','A2','A2','A2','A2','A2','A2','','A53','','A6','','Vancouver','A5','','Y','','A2',''),(329,NULL,'2023-10-01 06:12:43',1,'en','1516466618','2023-10-01 06:10:58','2023-10-01 06:12:43','https://www.linkedin.com/','','','','Y','','Y','Y','Y','','','','A3','A4','','','A2','','','','A53','','A6','','','A1','','Y','','A2',''),(330,NULL,NULL,NULL,'en','581383858','2023-10-01 06:38:36','2023-10-01 06:38:36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(331,NULL,NULL,NULL,'en','1362247306','2023-10-01 11:44:12','2023-10-01 11:44:12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(332,NULL,NULL,NULL,'en','1838370783','2023-10-01 17:04:25','2023-10-01 17:04:25','https://www.linkedin.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(333,NULL,'2023-10-01 18:26:03',1,'en','2145641776','2023-10-01 18:24:18','2023-10-01 18:26:03','https://discourse.nixos.org/','','Y','','','','Y','Y','Y','','Y','','A2','A1','A4','A3','A4','A4','A4','A4','A27','','A3','','Seattle','A5','','Y','Y','A1',''),(334,NULL,'2023-10-01 19:11:06',1,'en','1379544986','2023-10-01 19:10:07','2023-10-01 19:11:06',NULL,'','','Y','Y','','Y','Y','Y','Y','Y','','A1','A3','A3','A2','A2','A3','A3','A3','A6','','A3','','San Jose','A5','','Y','Y','A2',''),(335,NULL,'2023-10-01 19:38:43',1,'en','1307160324','2023-10-01 19:37:23','2023-10-01 19:38:43',NULL,'','Y','','','','','Y','','','','','A2','A2','A2','A2','A2','A2','A2','A2','-oth-','uk','-oth-','all/none','no','A5','','','Y','A3',''),(336,NULL,NULL,NULL,'en','481321630','2023-10-01 23:07:15','2023-10-01 23:07:15','https://www.linkedin.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(337,NULL,NULL,NULL,'en','1738570990','2023-10-02 10:56:08','2023-10-02 10:56:08',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(338,NULL,'2023-10-02 11:06:16',1,'en','751963340','2023-10-02 11:02:16','2023-10-02 11:06:16','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','Y','','','A2','A2','A2','A2','A1','A2','A2','A2','-oth-','United Kingdom','A5','','Montreal, Ottawa, Toronto','A5','','Y','Y','A2',''),(339,NULL,NULL,NULL,'en','1001722541','2023-10-02 11:10:31','2023-10-02 11:10:31','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(340,NULL,'2023-10-02 13:31:54',1,'en','1825098699','2023-10-02 13:27:44','2023-10-02 13:31:54','https://discourse.nixos.org/','','','Y','Y','','Y','','','','','','A2','A2','A2','A1','A4','A4','A4','A4','A21','','A2','','','A5','','','Y','A2',''),(341,NULL,'2023-10-02 15:00:51',1,'en','1401617365','2023-10-02 14:59:31','2023-10-02 15:00:51','https://discourse.nixos.org/','','','Y','','','','','','','','Job asks me to','A4','A4','A4','A4','A1','A4','A1','A1','A53','','A6','','','A4','','Y','','A3',''),(342,NULL,'2023-10-02 16:44:41',1,'en','2135147522','2023-10-02 16:43:39','2023-10-02 16:44:41','https://www.linkedin.com/','','Y','','','','Y','Y','Y','Y','Y','','A1','A2','A3','A2','A4','A4','A4','A4','A6','','A3','','San Diego','A2','','Y','Y','A2',''),(343,NULL,'2023-10-02 17:50:54',1,'en','87000221','2023-10-02 17:49:06','2023-10-02 17:50:54',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A2','A2','A1','A1','A2','A2','A2','A2','A10','','A2','','','A5','','Y','Y','A1',''),(344,NULL,NULL,NULL,'en','849183590','2023-10-02 17:58:21','2023-10-02 17:58:21','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(345,NULL,'2023-10-02 18:02:07',1,'en','2142617003','2023-10-02 18:00:41','2023-10-02 18:02:07',NULL,'','','Y','Y','','Y','','Y','Y','Y','','A1','A3','A3','A3','A3','A4','A4','A4','A6','','A3','','San Francisco','A3','','Y','Y','A2',''),(346,NULL,NULL,NULL,'en','1254996374','2023-10-03 14:25:52','2023-10-03 14:25:52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(347,NULL,NULL,NULL,'en','189717887','2023-10-03 14:54:12','2023-10-03 14:54:12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(348,NULL,'2023-10-03 16:36:59',1,'en','754977714','2023-10-03 16:34:14','2023-10-03 16:36:59','https://discourse.nixos.org/','','','','Y','','Y','','Y','','Y','','A3','A2','A4','A2','A2','A3','A3','A4','A33','','A2','','','-oth-','750 miles, but only by train','Y','Y','A2',''),(349,NULL,'2023-10-03 16:56:35',1,'en','490320588','2023-10-03 16:53:46','2023-10-03 16:56:35','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','Y','Y','','A4','A4','A4','A1','A4','A4','A4','A4','A22','','A2','','Boston or NYC','A3','','Y','Y','A1','I\'d be happy to volunteer for this NixCon if it\'s in Boston or NYC and it\'s during weekends'),(350,NULL,'2023-10-03 19:01:45',1,'en','1909640682','2023-10-03 18:58:22','2023-10-03 19:01:45','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','Y','','','A3','A3','A3','A2','A1','A3','A3','A3','A60','','A5','','','','','','','A3',''),(351,NULL,'2023-10-04 04:53:27',1,'en','1565981135','2023-10-04 04:51:26','2023-10-04 04:53:27','https://discourse.nixos.org/','','','Y','','','','','Y','Y','','','A1','A2','A2','A2','A2','','','','A38','','A3','','Denver','A5','','Y','','A3',''),(352,NULL,'2023-10-04 07:08:03',1,'en','1374308467','2023-10-04 07:06:30','2023-10-04 07:08:03',NULL,'','Y','Y','','','Y','','','','','','A2','A2','A2','A2','A2','A2','A2','A2','-oth-','Sweden','A3','','','A5','','Y','Y','A2',''),(353,NULL,'2023-10-04 10:38:47',1,'en','189569135','2023-10-04 10:37:11','2023-10-04 10:38:47','https://discourse.nixos.org/','','','','Y','','','','Y','Y','','','A3','A2','A1','A1','A3','A3','A4','A4','A10','','A2','','Orlando, FL','A3','','','Y','A1',''),(354,NULL,NULL,NULL,'en','512679034','2023-10-04 16:55:47','2023-10-04 16:55:47','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(355,NULL,'2023-10-04 20:29:54',1,'en','2083019617','2023-10-04 20:08:33','2023-10-04 20:29:54','https://discourse.nixos.org/','','','','','normal nixos user (and kind of preacher)','Y','Y','Y','','','feeling the community','','','','','','','','','-oth-','Germany','-oth-','cheap traveling (flights from anywhere)','','A5','','','','A1','travel grands (from the foundation (and maybe companies)) would be nice\r\nno \"bad\" sponsoring (like military industry) please'),(356,NULL,NULL,NULL,'en','251650498','2023-10-05 00:23:00','2023-10-05 00:23:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(357,NULL,'2023-10-05 01:37:51',1,'en','588498686','2023-10-05 01:36:08','2023-10-05 01:37:51',NULL,'','Y','','','','Y','','Y','Y','','','A1','A3','A4','A3','A1','A4','A4','A4','A53','','A6','','Vancouver','A3','','Y','Y','A2',''),(358,NULL,NULL,NULL,'en','1760096810','2023-10-05 06:15:41','2023-10-05 06:15:41',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(359,NULL,NULL,NULL,'en','1936468235','2023-10-05 15:14:05','2023-10-05 15:14:05','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(361,NULL,'2023-10-05 21:19:11',1,'en','991763946','2023-10-05 21:17:45','2023-10-05 21:19:11','https://survey.nixos.org/346552','','','Y','Y','','','','Y','Y','','','A2','A2','A3','A2','A2','','','','A22','','A2','','Boston, MA','A4','','Y','','A1',''),(362,NULL,'2023-10-05 22:11:00',1,'en','1672627181','2023-10-05 22:09:42','2023-10-05 22:11:00','https://discourse.nixos.org/','','','','Y','','Y','','Y','Y','Y','','A2','A2','A2','A2','A2','A3','A3','A3','A14','','A4','','Chicago','A2','','','Y','A1',''),(363,NULL,NULL,NULL,'en','1618440066','2023-10-05 22:57:04','2023-10-05 22:57:04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(364,NULL,'2023-10-06 14:40:11',1,'en','1723224375','2023-10-06 14:29:25','2023-10-06 14:40:11','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','Y','Y','','A2','A3','A1','A1','A3','A2','A2','A2','A34','','A2','','Durham, NC','A5','','Y','Y','A1','I would like to suggest Durham, NC as a potential location. Pretty good weather, nice downtown (relaxed atmosphere, good restaurants, cafes, etc), good tech scene. I could help secure a venue!'),(365,NULL,'2023-10-07 00:57:06',1,'en','1299339267','2023-10-07 00:55:19','2023-10-07 00:57:06','https://discourse.nixos.org/','Y','Y','','','','Y','Y','Y','Y','','','A3','A2','A2','A2','A2','A4','A4','A4','A22','','A2','','Boston','A3','','Y','Y','A3',''),(366,NULL,'2023-10-07 05:04:04',1,'en','382285446','2023-10-07 05:02:38','2023-10-07 05:04:04',NULL,'','Y','','','','Y','Y','Y','','','','A3','A3','','A1','','','','','A47','','A2','','','A2','','','Y','A3',''),(367,NULL,'2023-10-07 10:04:35',1,'en','2061053386','2023-10-07 10:00:33','2023-10-07 10:04:35','https://discourse.nixos.org/','','','','','wouldnt call myself an advanced user, but not really a beginner either.','Y','','Y','Y','','','A3','A3','A3','A1','A4','A4','A4','A4','A33','','A2','','nyc!','A2','','','Y','A2',''),(368,NULL,NULL,NULL,'en','1803340551','2023-10-07 16:08:39','2023-10-07 16:08:39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(369,NULL,'2023-10-07 18:26:22',1,'en','199997692','2023-10-07 18:24:33','2023-10-07 18:26:22',NULL,'','','','Y','','','Y','Y','','','','A2','A4','A4','A4','A4','A4','A4','A4','A48','','A3','','Seattle','A2','','','Y','A3',''),(370,NULL,NULL,NULL,'en','434568389','2023-10-07 19:55:50','2023-10-07 19:55:50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(371,NULL,'2023-10-07 21:40:53',1,'en','210710680','2023-10-07 21:39:39','2023-10-07 21:40:53',NULL,'','Y','','','','Y','Y','Y','Y','Y','','A1','A2','A3','A3','A3','A3','A4','A4','A45','','A3','','','A2','','','Y','A1',''),(372,NULL,NULL,NULL,'en','1896780595','2023-10-07 23:29:25','2023-10-07 23:29:25','https://www.linkedin.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(373,NULL,'2023-10-08 03:20:07',1,'en','793909913','2023-10-08 03:18:13','2023-10-08 03:20:07',NULL,'','','','Y','','Y','','Y','Y','','','A2','A2','A2','A2','A2','','A4','','A23','','A4','','','','','','','',''),(374,NULL,NULL,NULL,'en','1250244402','2023-10-08 15:11:48','2023-10-08 15:11:48','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(375,NULL,'2023-10-08 17:50:13',1,'en','1187393290','2023-10-08 17:19:49','2023-10-08 17:50:13','https://discourse.nixos.org/','','','','','I wouldn\'t say \"Advanced\" but definite experienced user and love it for the OS and for project toolchains.','Y','','Y','','Y','(My skills as an end user are better than my skills with the language and the libraries.)','A3','A1','A3','A3','A4','A4','A4','A4','A36','','A4','','Someone in the Discourse thread mentioned Cincinnati, which actually sounds like a great idea (full disclosure: definitely in driving distance for me). I know it\'s a fairly safe (varies a little by which end of town you\'re on like any city, but tech workers go out for an evening downtown all the time and most of the suburbs are ordinary as midwest suburbs go), small to medium sized city that hosts a surprising number of events already (for example, Ohio\'s anime and comics convention), and is relatively affordable, plus having its own major airport. Cincinnati also has a bit of a tech scene – not quite like a coast city, but there are several consulting companies that serve all the businesses in the area, some of those area businesses are the headquarters of national enterprises such as a major grocery chain (Kroger), and many of the larger businesses such as GE have dedicated software divisions. It is also about an hour\'s drive (give or take) from Dayton, the home of the Wright brothers which hosts a lovely aviation museum – a perfect side stop for history, technology and aviation geeks!','-oth-','up to 150 if scheduling is such that I don\'t need a hotel; otherwise, I could theoretically do it anywhere in the country, but only if it\'s over a weekend and I can fit the flight into my schedule or, otherwise, if I can get the time or convince my employer to send me.','','Y','A2','If you do pick Cincinnati, don\'t schedule it for the weekend of the Flying Pig Marathon (first Sunday in May generally), nobody will be able to drive anywhere downtown.'),(376,NULL,'2023-10-08 18:17:33',1,'en','729298107','2023-10-08 18:15:30','2023-10-08 18:17:33',NULL,'','Y','','','','Y','Y','Y','Y','','','A3','A3','A3','A1','A1','A2','A2','A2','A60','','A5','','','-oth-','Depends on flight costs','','Y','A2',''),(377,NULL,'2023-10-09 01:29:45',1,'en','1536558205','2023-10-09 01:27:31','2023-10-09 01:29:45','https://www.linkedin.com/','Y','','','','','Y','Y','','','','','A2','','','','A3','A4','A4','A4','A6','','A3','','San Francisco ','A1','','Y','','A1',''),(378,NULL,NULL,NULL,'en','220739687','2023-10-09 08:55:59','2023-10-09 08:55:59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(379,NULL,'2023-10-09 10:33:03',1,'en','870595691','2023-10-09 10:28:19','2023-10-09 10:33:03','https://www.linkedin.com/','','','','','nix user','Y','Y','Y','Y','Y','arm westle tom and win!','A1','A1','A3','A1','A4','A3','A1','A1','A6','','-oth-','gotta be San Diego','San Diego','A5','','Y','Y','A1','lets make it cheap.\r\n\r\nThe bay is far too expensive for normal engineers.\r\n\r\nSandiego\r\n\r\nor\r\n\r\nmexico are great alternatives.\r\n\r\nsee you soon.\r\n'),(380,NULL,'2023-10-09 16:54:01',1,'en','68548553','2023-10-09 16:47:21','2023-10-09 16:54:01','https://discourse.nixos.org/','','','Y','','','Y','','Y','Y','Y','','A2','A1','A2','A1','A1','A4','A4','A4','A23','','A2','','','A5','','Y','Y','A1','For me personally, I want to volunteer more time at NixCon North America.\r\nA shorter travel distance will make that easier, but don\'t locate the conference from one anec-data point!\r\n\r\nI\'m very excited about the potential of a conference in North America to meet other nixers on this side of the planet. :)'),(381,NULL,'2023-10-09 16:59:40',1,'en','254663698','2023-10-09 16:55:14','2023-10-09 16:59:40',NULL,'','','','Y','','Y','','Y','','Y','','A1','A2','A1','A3','A2','A4','','A4','A4','','A3','','Kansas City (MO side)','A5','','Y','Y','A2',''),(382,NULL,'2023-10-09 17:09:30',1,'en','1890540289','2023-10-09 17:07:52','2023-10-09 17:09:30',NULL,'','Y','','','','Y','Y','Y','Y','','','A1','A2','A2','A2','A2','','A4','A4','A6','','A3','','Los Angeles','A3','','Y','Y','A2',''),(383,NULL,'2023-10-09 21:40:45',1,'en','226782219','2023-10-09 21:39:21','2023-10-09 21:40:45','https://www.linkedin.com/','','Y','','','','Y','','Y','','','','A4','A2','A4','A1','A2','A4','A4','A4','A39','','A2','','','','','','Y','A2',''),(384,NULL,NULL,NULL,'en','721843717','2023-10-09 23:16:47','2023-10-09 23:16:47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(385,NULL,'2023-10-10 01:24:26',1,'en','753861615','2023-10-10 01:22:55','2023-10-10 01:24:26',NULL,'','','','Y','','','','','','Y','','A4','A1','A4','A4','A4','A4','A4','A4','A14','','A4','','Chicago','A1','','Y','Y','A2','Don\'t bring cat ears on stage.'),(386,NULL,NULL,NULL,'en','1553790427','2023-10-10 05:07:11','2023-10-10 05:07:11','https://duckduckgo.com/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(387,NULL,'2023-10-10 10:30:04',1,'en','249449754','2023-10-10 10:28:23','2023-10-10 10:30:04','https://discourse.nixos.org/','','','Y','Y','','Y','','Y','Y','Y','','A2','A2','A2','A2','A2','A3','A3','A4','-oth-','France Paris','A6','','Montréal ','A5','','Y','Y','A1','Make it as good as NixCon 2023'),(388,NULL,'2023-10-10 11:34:18',1,'en','891310812','2023-10-10 11:31:47','2023-10-10 11:34:18','https://discourse.nixos.org/','Y','Y','','','','Y','Y','Y','','','','A2','A2','A1','A2','A2','A4','A4','A4','A44','','A4','','Houston, TX','A2','','Y','Y','A3',''),(389,NULL,'2023-10-10 13:05:06',1,'en','278097976','2023-10-10 13:01:58','2023-10-10 13:05:06','https://discourse.nixos.org/','','','','Y','','Y','','Y','','','','A4','A4','A4','A1','A4','A4','A4','A4','A39','','A2','','Philadelphia, New York, D.C.','A3','','Y','','A3','Thanks for considering North America! I have trouble going far these days but would greatly appreciate an in-person event geographically closer to me. '),(390,NULL,NULL,NULL,'en','441222636','2023-10-10 16:26:43','2023-10-10 16:26:43','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(391,NULL,NULL,NULL,'en','1956816525','2023-10-10 20:19:19','2023-10-10 20:19:19','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(392,NULL,NULL,NULL,'en','2109547519','2023-10-10 21:24:22','2023-10-10 21:24:22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(393,NULL,'2023-10-12 14:25:24',1,'en','458472813','2023-10-12 14:23:46','2023-10-12 14:25:24','https://discourse.nixos.org/','','','','Y','','Y','','Y','Y','Y','','A3','A3','A2','A1','A4','A4','A4','A4','A47','','A2','','','A3','','Y','Y','A1',''),(394,NULL,'2023-10-12 23:26:56',1,'en','344035982','2023-10-12 23:25:41','2023-10-12 23:26:56','https://discourse.nixos.org/','','','','Y','','Y','Y','Y','','','','A2','A3','A4','A2','A1','A2','A4','A4','A60','','A5','','Ottawa','A5','','Y','Y','A2','Good luck in your efforts!'),(395,NULL,'2023-10-13 06:39:00',1,'en','187579851','2023-10-13 06:37:51','2023-10-13 06:39:00',NULL,'','Y','','','','Y','Y','Y','','Y','','A2','A3','A3','','','','','','A6','','A3','','','A1','','Y','Y','A2',''),(396,NULL,'2023-10-13 13:56:16',1,'en','253888271','2023-10-13 13:53:58','2023-10-13 13:56:16','https://discourse.nixos.org/','','','Y','','','Y','','Y','','','','A1','A1','A1','A1','A2','A2','A3','A3','A7','','A2','','','A5','','','Y','A2',''),(397,NULL,NULL,NULL,'en','797500278','2023-10-13 17:13:55','2023-10-13 17:13:55','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(398,NULL,'2023-10-13 19:48:31',1,'en','1775832701','2023-10-13 19:41:39','2023-10-13 19:48:31','https://discourse.nixos.org/','','','','Y','','Y','','Y','','Y','','A2','A2','A2','A1','A3','A3','A3','A3','A34','','A2','','','-oth-','Within the US','Y','','A3',''),(399,NULL,NULL,NULL,'en','2077493524','2023-10-13 20:25:54','2023-10-13 20:25:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(400,NULL,NULL,NULL,'en','1509933677','2023-10-13 22:02:49','2023-10-13 22:02:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(401,NULL,'2023-10-13 22:47:17',1,'en','1074774103','2023-10-13 22:45:41','2023-10-13 22:47:17','https://discourse.nixos.org/','','','Y','Y','','Y','','','','','','','','','','A2','','','','A62','','A5','','Montréal','A2','','','Y','A3',''),(402,NULL,NULL,NULL,'en','1475995511','2023-10-14 02:40:56','2023-10-14 02:40:56','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(403,NULL,'2023-10-14 17:49:09',1,'en','2046656507','2023-10-14 17:47:20','2023-10-14 17:49:09','https://t.co/','','Y','','','','Y','Y','Y','','','','A1','A2','A3','A1','A1','A4','A4','A4','A44','','A3','','Seattle','A5','','Y','','A2',''),(404,NULL,'2023-10-14 18:21:10',1,'en','1942127919','2023-10-14 18:19:55','2023-10-14 18:21:10',NULL,'','','Y','Y','','Y','','Y','','Y','','A2','A2','A2','A2','A2','A3','A3','A3','A62','','A5','','Montreal','A5','','Y','Y','A3',''),(405,NULL,NULL,NULL,'en','1519142534','2023-10-14 20:10:02','2023-10-14 20:10:02',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(406,NULL,'2023-10-15 22:22:48',1,'en','697173508','2023-10-15 22:14:53','2023-10-15 22:22:48',NULL,'Y','Y','','','','Y','','Y','Y','','','A1','A2','A3','A2','A2','A2','A2','A2','A29','','A3','','','A5','','Y','Y','A1',''),(407,NULL,'2023-10-16 23:47:22',1,'en','643654718','2023-10-16 23:46:07','2023-10-16 23:47:22',NULL,'Y','','','','','','','','Y','Y','','A4','A4','A4','A4','A1','A4','A4','A4','A52','','A6','','calgary','A1','','','Y','A2',''),(408,NULL,'2023-10-17 01:01:45',1,'en','1581521307','2023-10-17 00:55:21','2023-10-17 01:01:45','https://discourse.nixos.org/','Y','','Y','','I have made a small number of contributions to nixpkgs (fewer than 10 commits)','Y','','Y','Y','Y','','A1','A1','A2','A2','A2','A2','A3','A3','A4','','-oth-','Central and Western US are closest to me','','A5','','','Y','A2',''),(409,NULL,NULL,NULL,'en','629553283','2023-10-17 08:30:40','2023-10-17 08:30:40',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(410,NULL,'2023-10-17 17:18:54',1,'en','1958392792','2023-10-17 17:16:54','2023-10-17 17:18:54','https://discourse.nixos.org/','','','','Y','','Y','','Y','','Y','','A4','A3','A2','A3','A4','A4','A4','A4','A18','','A5','','Cincinnati ','A2','','Y','Y','A1',''),(411,NULL,'2023-10-17 17:31:58',1,'en','1023479375','2023-10-17 17:30:50','2023-10-17 17:31:58',NULL,'','Y','','','','','Y','','','','','A3','A1','A3','A2','A4','A4','A4','A4','A23','','A4','','','A5','','Y','','A3',''),(412,NULL,NULL,NULL,'en','1213505308','2023-10-17 23:37:47','2023-10-17 23:37:47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(413,NULL,NULL,NULL,'en','186551568','2023-10-19 08:07:25','2023-10-19 08:07:25','https://discourse.nixos.org/',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(414,NULL,NULL,NULL,'en','384079947','2023-10-23 01:23:07','2023-10-23 01:23:07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(415,NULL,'2023-10-24 01:01:28',1,'en','589824554','2023-10-24 00:58:40','2023-10-24 01:01:28','https://discourse.nixos.org/','','','','Y','','Y','','Y','Y','','','A1','A3','A3','A3','A3','','','','A6','','A3','','Bay Area','A2','','','Y','A2',''),(416,NULL,NULL,NULL,'en','1209406663','2023-10-24 19:31:57','2023-10-24 19:31:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -/*!40000 ALTER TABLE `limesurvey_survey_346552` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_survey_links` --- - -DROP TABLE IF EXISTS `limesurvey_survey_links`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_survey_links` ( - `participant_id` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, - `token_id` int(11) NOT NULL, - `survey_id` int(11) NOT NULL, - `date_created` datetime DEFAULT NULL, - `date_invited` datetime DEFAULT NULL, - `date_completed` datetime DEFAULT NULL, - PRIMARY KEY (`participant_id`,`token_id`,`survey_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_survey_links` --- - -LOCK TABLES `limesurvey_survey_links` WRITE; -/*!40000 ALTER TABLE `limesurvey_survey_links` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_survey_links` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_survey_url_parameters` --- - -DROP TABLE IF EXISTS `limesurvey_survey_url_parameters`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_survey_url_parameters` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `sid` int(11) NOT NULL, - `parameter` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, - `targetqid` int(11) DEFAULT NULL, - `targetsqid` int(11) DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_survey_url_parameters` --- - -LOCK TABLES `limesurvey_survey_url_parameters` WRITE; -/*!40000 ALTER TABLE `limesurvey_survey_url_parameters` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_survey_url_parameters` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_surveymenu` --- - -DROP TABLE IF EXISTS `limesurvey_surveymenu`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_surveymenu` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `parent_id` int(11) DEFAULT NULL, - `survey_id` int(11) DEFAULT NULL, - `user_id` int(11) DEFAULT NULL, - `name` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `ordering` int(11) DEFAULT 0, - `level` int(11) DEFAULT 0, - `title` varchar(168) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `position` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'side', - `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `showincollapse` int(11) DEFAULT 0, - `active` int(11) NOT NULL DEFAULT 0, - `changed_at` datetime DEFAULT NULL, - `changed_by` int(11) NOT NULL DEFAULT 0, - `created_at` datetime DEFAULT NULL, - `created_by` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `limesurvey_surveymenu_name` (`name`), - KEY `limesurvey_idx2_surveymenu` (`title`) -) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_surveymenu` --- - -LOCK TABLES `limesurvey_surveymenu` WRITE; -/*!40000 ALTER TABLE `limesurvey_surveymenu` DISABLE KEYS */; -INSERT INTO `limesurvey_surveymenu` VALUES (1,NULL,NULL,NULL,'settings',1,0,'Survey settings','side','Survey settings',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(2,NULL,NULL,NULL,'mainmenu',2,0,'Survey menu','side','Main survey menu',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(3,NULL,NULL,NULL,'quickmenu',3,0,'Quick menu','collapsed','Quick menu',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0); -/*!40000 ALTER TABLE `limesurvey_surveymenu` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_surveymenu_entries` --- - -DROP TABLE IF EXISTS `limesurvey_surveymenu_entries`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_surveymenu_entries` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `menu_id` int(11) DEFAULT NULL, - `user_id` int(11) DEFAULT NULL, - `ordering` int(11) DEFAULT 0, - `name` varchar(168) COLLATE utf8mb4_unicode_ci DEFAULT '', - `title` varchar(168) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `menu_title` varchar(168) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `menu_description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `menu_icon` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `menu_icon_type` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `menu_class` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `menu_link` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `action` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `template` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `partial` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `classes` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `permission` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `permission_grade` varchar(192) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `data` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `getdatamethod` varchar(192) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `language` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en-GB', - `showincollapse` int(11) DEFAULT 0, - `active` int(11) NOT NULL DEFAULT 0, - `changed_at` datetime DEFAULT NULL, - `changed_by` int(11) NOT NULL DEFAULT 0, - `created_at` datetime DEFAULT NULL, - `created_by` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `limesurvey_surveymenu_entries_name` (`name`), - KEY `limesurvey_idx1_surveymenu_entries` (`menu_id`), - KEY `limesurvey_idx5_surveymenu_entries` (`menu_title`) -) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_surveymenu_entries` --- - -LOCK TABLES `limesurvey_surveymenu_entries` WRITE; -/*!40000 ALTER TABLE `limesurvey_surveymenu_entries` DISABLE KEYS */; -INSERT INTO `limesurvey_surveymenu_entries` VALUES (1,1,NULL,1,'overview','Survey overview','Overview','Open the general survey overview','list','fontawesome','','admin/survey/sa/view','','','','','','','{\"render\": { \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(2,1,NULL,2,'generalsettings','General survey settings','General settings','Open general survey settings','gears','fontawesome','','','updatesurveylocalesettings_generalsettings','editLocalSettings_main_view','/admin/survey/subview/accordion/_generaloptions_panel','','surveysettings','read',NULL,'_generalTabEditSurvey','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(3,1,NULL,3,'surveytexts','Survey text elements','Text elements','Survey text elements','file-text-o','fontawesome','','','updatesurveylocalesettings','editLocalSettings_main_view','/admin/survey/subview/tab_edit_view','','surveylocale','read',NULL,'_getTextEditData','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(4,1,NULL,4,'datasecurity','Data policy settings','Data policy settings','Edit data policy settings','shield','fontawesome','','','updatesurveylocalesettings','editLocalSettings_main_view','/admin/survey/subview/tab_edit_view_datasecurity','','surveylocale','read',NULL,'_getDataSecurityEditData','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(5,1,NULL,5,'theme_options','Theme options','Theme options','Edit theme options for this survey','paint-brush','fontawesome','','admin/themeoptions/sa/updatesurvey','','','','','surveysettings','update','{\"render\": {\"link\": { \"pjaxed\": true, \"data\": {\"surveyid\": [\"survey\",\"sid\"], \"gsid\":[\"survey\",\"gsid\"]}}}}','','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(6,1,NULL,6,'presentation','Presentation & navigation settings','Presentation','Edit presentation and navigation settings','eye-slash','fontawesome','','','updatesurveylocalesettings','editLocalSettings_main_view','/admin/survey/subview/accordion/_presentation_panel','','surveylocale','read',NULL,'_tabPresentationNavigation','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(7,1,NULL,7,'tokens','Survey participant settings','Participant settings','Set additional options for survey participants','users','fontawesome','','','updatesurveylocalesettings','editLocalSettings_main_view','/admin/survey/subview/accordion/_tokens_panel','','surveylocale','read',NULL,'_tabTokens','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(8,1,NULL,8,'notification','Notification and data management settings','Notifications & data','Edit settings for notification and data management','feed','fontawesome','','','updatesurveylocalesettings','editLocalSettings_main_view','/admin/survey/subview/accordion/_notification_panel','','surveylocale','read',NULL,'_tabNotificationDataManagement','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(9,1,NULL,9,'publication','Publication & access control settings','Publication & access','Edit settings for publication and access control','key','fontawesome','','','updatesurveylocalesettings','editLocalSettings_main_view','/admin/survey/subview/accordion/_publication_panel','','surveylocale','read',NULL,'_tabPublicationAccess','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(10,2,NULL,1,'listQuestions','List questions','List questions','List questions','list','fontawesome','','admin/survey/sa/listquestions','','','','','surveycontent','read','{\"render\": { \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(11,2,NULL,2,'listQuestionGroups','List question groups','List question groups','List question groups','th-list','fontawesome','','admin/survey/sa/listquestiongroups','','','','','surveycontent','read','{\"render\": { \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(12,2,NULL,3,'reorder','Reorder questions/question groups','Reorder questions/question groups','Reorder questions/question groups','icon-organize','iconclass','','admin/survey/sa/organize/','','','','','surveycontent','update','{\"render\": {\"isActive\": false, \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(13,2,NULL,4,'responses','Responses','Responses','Responses','icon-browse','iconclass','','admin/responses/sa/browse/','','','','','responses','read','{\"render\": {\"isActive\": true, \"link\": {\"data\": {\"surveyid\": [\"survey\", \"sid\"]}}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(14,2,NULL,5,'participants','Survey participants','Survey participants','Go to survey participant and token settings','user','fontawesome','','admin/tokens/sa/index/','','','','','tokens','update','{\"render\": { \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(15,2,NULL,6,'statistics','Statistics','Statistics','Statistics','bar-chart','fontawesome','','admin/statistics/sa/index/','','','','','statistics','read','{\"render\": {\"isActive\": true, \"link\": {\"data\": {\"surveyid\": [\"survey\", \"sid\"]}}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(16,2,NULL,7,'quotas','Edit quotas','Quotas','Edit quotas for this survey.','tasks','fontawesome','','admin/quotas/sa/index/','','','','','quotas','read','{\"render\": { \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(17,2,NULL,8,'assessments','Edit assessments','Assessments','Edit and look at the assessements for this survey.','comment-o','fontawesome','','admin/assessments/sa/index/','','','','','assessments','read','{\"render\": { \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(18,2,NULL,9,'surveypermissions','Edit survey permissions','Survey permissions','Edit permissions for this survey','lock','fontawesome','','admin/surveypermission/sa/view/','','','','','surveysecurity','read','{\"render\": { \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(19,2,NULL,10,'emailtemplates','Email templates','Email templates','Edit the templates for invitation, reminder and registration emails','envelope-square','fontawesome','','admin/emailtemplates/sa/index/','','','','','surveylocale','read','{\"render\": { \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(20,2,NULL,11,'panelintegration','Edit survey panel integration','Panel integration','Define panel integrations for your survey','link','fontawesome','','','updatesurveylocalesettings','editLocalSettings_main_view','/admin/survey/subview/accordion/_integration_panel','','surveylocale','read','{\"render\": {\"link\": { \"pjaxed\": false}}}','_tabPanelIntegration','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(21,2,NULL,12,'resources','Add/edit resources (files/images) for this survey','Resources','Add/edit resources (files/images) for this survey','file','fontawesome','','','updatesurveylocalesettings','editLocalSettings_main_view','/admin/survey/subview/accordion/_resources_panel','','surveylocale','read',NULL,'_tabResourceManagement','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(22,2,NULL,13,'plugins','Simple plugin settings','Simple plugins','Edit simple plugin settings','plug','fontawesome','','','updatesurveylocalesettings','editLocalSettings_main_view','/admin/survey/subview/accordion/_plugins_panel','','surveysettings','read','{\"render\": {\"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','_pluginTabSurvey','en-GB',0,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(23,3,NULL,1,'activateSurvey','Activate survey','Activate survey','Activate survey','play','fontawesome','','admin/survey/sa/activate','','','','','surveyactivation','update','{\"render\": {\"isActive\": false, \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(24,3,NULL,2,'deactivateSurvey','Stop this survey','Stop this survey','Stop this survey','stop','fontawesome','','admin/survey/sa/deactivate','','','','','surveyactivation','update','{\"render\": {\"isActive\": true, \"link\": {\"data\": {\"surveyid\": [\"survey\",\"sid\"]}}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(25,3,NULL,3,'testSurvey','Go to survey','Go to survey','Go to survey','cog','fontawesome','','survey/index/','','','','','','','{\"render\": {\"link\": {\"external\": true, \"data\": {\"sid\": [\"survey\",\"sid\"], \"newtest\": \"Y\", \"lang\": [\"survey\",\"language\"]}}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(26,3,NULL,4,'surveyLogicFile','Survey logic file','Survey logic file','Survey logic file','sitemap','fontawesome','','admin/expressions/sa/survey_logic_file/','','','','','surveycontent','read','{\"render\": { \"link\": {\"data\": {\"sid\": [\"survey\",\"sid\"]}}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0),(27,3,NULL,5,'cpdb','Central participant database','Central participant database','Central participant database','users','fontawesome','','admin/participants/sa/displayParticipants','','','','','tokens','read','{\"render\": {\"link\": {}}}','','en-GB',1,1,'2022-02-02 21:47:15',0,'2022-02-02 21:47:15',0); -/*!40000 ALTER TABLE `limesurvey_surveymenu_entries` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_surveys` --- - -DROP TABLE IF EXISTS `limesurvey_surveys`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_surveys` ( - `sid` int(11) NOT NULL, - `owner_id` int(11) NOT NULL, - `gsid` int(11) DEFAULT 1, - `admin` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `active` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', - `expires` datetime DEFAULT NULL, - `startdate` datetime DEFAULT NULL, - `adminemail` varchar(254) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `anonymized` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', - `faxto` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `format` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `savetimings` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', - `template` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'default', - `language` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `additional_languages` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `datestamp` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', - `usecookie` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', - `allowregister` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', - `allowsave` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', - `autonumber_start` int(11) NOT NULL DEFAULT 0, - `autoredirect` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', - `allowprev` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', - `printanswers` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', - `ipaddr` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', - `refurl` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', - `datecreated` datetime DEFAULT NULL, - `showsurveypolicynotice` int(11) DEFAULT 0, - `publicstatistics` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', - `publicgraphs` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', - `listpublic` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', - `htmlemail` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', - `sendconfirmation` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', - `tokenanswerspersistence` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', - `assessments` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', - `usecaptcha` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', - `usetokens` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N', - `bounce_email` varchar(254) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `attributedescriptions` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `emailresponseto` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `emailnotificationto` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `tokenlength` int(11) NOT NULL DEFAULT 15, - `showxquestions` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT 'Y', - `showgroupinfo` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT 'B', - `shownoanswer` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT 'Y', - `showqnumcode` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT 'X', - `bouncetime` int(11) DEFAULT NULL, - `bounceprocessing` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT 'N', - `bounceaccounttype` varchar(4) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `bounceaccounthost` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `bounceaccountpass` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `bounceaccountencryption` varchar(3) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `bounceaccountuser` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `showwelcome` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT 'Y', - `showprogress` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT 'Y', - `questionindex` int(11) NOT NULL DEFAULT 0, - `navigationdelay` int(11) NOT NULL DEFAULT 0, - `nokeyboard` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT 'N', - `alloweditaftercompletion` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT 'N', - `googleanalyticsstyle` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `googleanalyticsapikey` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`sid`), - KEY `limesurvey_idx1_surveys` (`owner_id`), - KEY `limesurvey_idx2_surveys` (`gsid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_surveys` --- - -LOCK TABLES `limesurvey_surveys` WRITE; -/*!40000 ALTER TABLE `limesurvey_surveys` DISABLE KEYS */; -INSERT INTO `limesurvey_surveys` VALUES (2022,1,1,'','Y','2022-04-01 16:00:00',NULL,'barry@floxdev.com','Y','','G','N','fruity','en','','N','N','N','Y',0,'N','Y','N','N','N','2022-02-28 20:53:48',0,'N','N','Y','Y','Y','N','N','N','N','barry@floxdev.com',NULL,'','',15,'N','B','Y','X',NULL,'N',NULL,NULL,NULL,NULL,NULL,'Y','Y',0,0,'N','N','',''),(239157,8,1,'admin','Y','2023-10-25 19:40:37',NULL,'webmaster@nixos.org','Y','','G','N','fruity','en','','N','N','N','Y',0,'N','N','N','N','N','2023-09-05 13:50:16',0,'N','N','N','Y','Y','N','N','N','N','webmaster@nixos.org',NULL,'','',15,'Y','B','N','X',NULL,'N',NULL,NULL,NULL,NULL,NULL,'Y','Y',0,0,'N','N','',''),(346552,1,1,'admin','Y','2023-10-25 19:40:48',NULL,'webmaster@nixos.org','N','','G','N','fruity','en','','Y','N','N','Y',0,'N','N','N','N','Y','2023-09-22 16:09:14',0,'N','N','N','Y','Y','N','N','N','N','webmaster@nixos.org',NULL,'','',15,'Y','B','N','X',NULL,'N',NULL,NULL,NULL,NULL,NULL,'Y','Y',0,0,'N','N','',''),(2023,1,1,'admin','Y','2023-09-22 15:58:36',NULL,'personal@ilanjoselevich.com','Y','','G','N','vanilla','en','','N','Y','N','Y',1,'N','Y','N','N','N','2023-05-10 20:05:42',0,'N','N','Y','Y','Y','N','N','N','N','personal@ilanjoselevich.com',NULL,'','',15,'N','B','Y','X',NULL,'N',NULL,NULL,NULL,NULL,NULL,'Y','Y',0,0,'N','N','',''),(964172,1,1,'admin','N',NULL,NULL,'webmaster@nixos.org','N','','G','N','fruity','en','','N','N','N','Y',0,'N','N','N','N','N','2024-02-13 10:28:58',0,'N','N','N','Y','Y','N','N','N','N','webmaster@nixos.org',NULL,'','',15,'Y','B','N','X',NULL,'N',NULL,NULL,NULL,NULL,NULL,'Y','Y',0,0,'N','N','',''),(248687,1,1,'admin','Y','2024-04-09 23:17:25',NULL,'daniel.n.baker@gmail.com','Y','','G','N','fruity','en','','N','N','N','Y',0,'N','N','N','N','N','2024-02-28 20:55:26',0,'N','N','N','Y','Y','N','N','N','N','daniel.n.baker@gmail.com',NULL,'','',15,'Y','B','N','X',NULL,'N',NULL,NULL,NULL,NULL,NULL,'Y','Y',0,0,'N','N',NULL,NULL),(2024,7,1,'admin','N','2023-09-22 15:58:36',NULL,'rok@garbas.si','Y','','G','N','vanilla','en','','N','Y','N','Y',1,'N','Y','N','N','N','2024-05-20 09:13:07',0,'N','N','Y','Y','Y','N','N','N','N','rok@garbas.si',NULL,'','',15,'N','B','Y','X',NULL,'N',NULL,NULL,NULL,NULL,NULL,'Y','Y',0,0,'N','N','',''); -/*!40000 ALTER TABLE `limesurvey_surveys` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_surveys_groups` --- - -DROP TABLE IF EXISTS `limesurvey_surveys_groups`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_surveys_groups` ( - `gsid` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL, - `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `template` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT 'default', - `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `sortorder` int(11) NOT NULL, - `owner_id` int(11) DEFAULT NULL, - `parent_id` int(11) DEFAULT NULL, - `created` datetime DEFAULT NULL, - `modified` datetime DEFAULT NULL, - `created_by` int(11) NOT NULL, - PRIMARY KEY (`gsid`), - KEY `limesurvey_idx1_surveys_groups` (`name`), - KEY `limesurvey_idx2_surveys_groups` (`title`) -) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_surveys_groups` --- - -LOCK TABLES `limesurvey_surveys_groups` WRITE; -/*!40000 ALTER TABLE `limesurvey_surveys_groups` DISABLE KEYS */; -INSERT INTO `limesurvey_surveys_groups` VALUES (1,'default','Default',NULL,'Default survey group',0,1,NULL,'2022-02-02 21:47:15','2022-02-02 21:47:15',1); -/*!40000 ALTER TABLE `limesurvey_surveys_groups` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_surveys_languagesettings` --- - -DROP TABLE IF EXISTS `limesurvey_surveys_languagesettings`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_surveys_languagesettings` ( - `surveyls_survey_id` int(11) NOT NULL, - `surveyls_language` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', - `surveyls_title` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, - `surveyls_description` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `surveyls_welcometext` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `surveyls_endtext` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `surveyls_policy_notice` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `surveyls_policy_error` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `surveyls_policy_notice_label` varchar(192) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `surveyls_url` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `surveyls_urldescription` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `surveyls_email_invite_subj` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `surveyls_email_invite` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `surveyls_email_remind_subj` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `surveyls_email_remind` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `surveyls_email_register_subj` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `surveyls_email_register` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `surveyls_email_confirm_subj` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `surveyls_email_confirm` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `surveyls_dateformat` int(11) NOT NULL DEFAULT 1, - `surveyls_attributecaptions` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `email_admin_notification_subj` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `email_admin_notification` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `email_admin_responses_subj` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `email_admin_responses` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `surveyls_numberformat` int(11) NOT NULL DEFAULT 0, - `attachments` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`surveyls_survey_id`,`surveyls_language`), - KEY `limesurvey_idx1_surveys_languagesettings` (`surveyls_title`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_surveys_languagesettings` --- - -LOCK TABLES `limesurvey_surveys_languagesettings` WRITE; -/*!40000 ALTER TABLE `limesurvey_surveys_languagesettings` DISABLE KEYS */; -INSERT INTO `limesurvey_surveys_languagesettings` VALUES (239157,'en','NixCon 2023','We would like to receive feedback from you regarding your time at NixCon, the journey to it and your general thoughts on the event.','','',NULL,NULL,NULL,'','','Invitation to participate in a survey','Dear {FIRSTNAME},
\n
\nyou have been invited to participate in a survey.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}
\n
\nIf you are blacklisted but want to participate in this survey and want to receive invitations please click the following link:
\n{OPTINURL}','Reminder to participate in a survey','Dear {FIRSTNAME},
\n
\nRecently we invited you to participate in a survey.
\n
\nWe note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}','Survey registration confirmation','Dear {FIRSTNAME},
\n
\nYou, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.
\n
\nTo complete this survey, click on the following URL:
\n
\n{SURVEYURL}
\n
\nIf you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of your participation in our survey','Dear {FIRSTNAME},
\n
\nthis email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.
\n
\nIf you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.
\n
\nSincerely,
\n
\n{ADMINNAME}',1,NULL,'Response submission for survey {SURVEYNAME}','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}','Response submission for survey {SURVEYNAME} with results','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}
\n
\n
\nThe following answers were given by the participant:
\n{ANSWERTABLE}',0,NULL),(346552,'en','NixCon North America 2024 Exploratory Survey','','','','','','','','','Invitation to participate in a survey','Dear {FIRSTNAME},
\n
\nyou have been invited to participate in a survey.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}
\n
\nIf you are blacklisted but want to participate in this survey and want to receive invitations please click the following link:
\n{OPTINURL}','Reminder to participate in a survey','Dear {FIRSTNAME},
\n
\nRecently we invited you to participate in a survey.
\n
\nWe note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}','Survey registration confirmation','Dear {FIRSTNAME},
\n
\nYou, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.
\n
\nTo complete this survey, click on the following URL:
\n
\n{SURVEYURL}
\n
\nIf you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of your participation in our survey','Dear {FIRSTNAME},
\n
\nthis email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.
\n
\nIf you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.
\n
\nSincerely,
\n
\n{ADMINNAME}',1,NULL,'Response submission for survey {SURVEYNAME}','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}','Response submission for survey {SURVEYNAME} with results','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}
\n
\n
\nThe following answers were given by the participant:
\n{ANSWERTABLE}',0,NULL),(964172,'en','User experience survey: user types and information architecture','','','','','','','','','Invitation to participate in a survey','Dear {FIRSTNAME},
\n
\nyou have been invited to participate in a survey.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}
\n
\nIf you are blacklisted but want to participate in this survey and want to receive invitations please click the following link:
\n{OPTINURL}','Reminder to participate in a survey','Dear {FIRSTNAME},
\n
\nRecently we invited you to participate in a survey.
\n
\nWe note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}','Survey registration confirmation','Dear {FIRSTNAME},
\n
\nYou, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.
\n
\nTo complete this survey, click on the following URL:
\n
\n{SURVEYURL}
\n
\nIf you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of your participation in our survey','Dear {FIRSTNAME},
\n
\nthis email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.
\n
\nIf you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.
\n
\nSincerely,
\n
\n{ADMINNAME}',1,NULL,'Response submission for survey {SURVEYNAME}','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}','Response submission for survey {SURVEYNAME} with results','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}
\n
\n
\nThe following answers were given by the participant:
\n{ANSWERTABLE}',0,NULL),(248687,'en','NixCon North America 2024 Feedback','','','',NULL,NULL,NULL,'','','Invitation to participate in a survey','Dear {FIRSTNAME},
\n
\nyou have been invited to participate in a survey.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}
\n
\nIf you are blacklisted but want to participate in this survey and want to receive invitations please click the following link:
\n{OPTINURL}','Reminder to participate in a survey','Dear {FIRSTNAME},
\n
\nRecently we invited you to participate in a survey.
\n
\nWe note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}','Survey registration confirmation','Dear {FIRSTNAME},
\n
\nYou, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.
\n
\nTo complete this survey, click on the following URL:
\n
\n{SURVEYURL}
\n
\nIf you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of your participation in our survey','Dear {FIRSTNAME},
\n
\nthis email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.
\n
\nIf you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.
\n
\nSincerely,
\n
\n{ADMINNAME}',1,NULL,'Response submission for survey {SURVEYNAME}','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}','Response submission for survey {SURVEYNAME} with results','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}
\n
\n
\nThe following answers were given by the participant:
\n{ANSWERTABLE}',0,NULL),(2023,'en','Nix Community Survey 2023','

Welcome to the second Nix Community Survey!

\r\n\r\n

Please take 5-10 minutes to fill out this survey with info about yourself and how you use projects in the Nix ecosystem. We hope to use your responses to develop Nix, Nixpkgs, and NixOS to better match your needs and come up with new ideas for serving and growing the community. We\'ll publish major findings on Discourse and nixos.org.

\r\n\r\n

 

\r\n','','

Thank you for taking time to participate! This helps making the Nix ecosystem better for everyone.

\r\n\r\n

Keep an eye out for the survey summary on Discourse.

\r\n','','','','','Nix Community Survey 2023','Invitation to participate in a survey','Dear {FIRSTNAME},
\n
\nyou have been invited to participate in a survey.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}
\n
\nIf you are blacklisted but want to participate in this survey and want to receive invitations please click the following link:
\n{OPTINURL}','Reminder to participate in a survey','Dear {FIRSTNAME},
\n
\nRecently we invited you to participate in a survey.
\n
\nWe note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}','Survey registration confirmation','Dear {FIRSTNAME},
\n
\nYou, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.
\n
\nTo complete this survey, click on the following URL:
\n
\n{SURVEYURL}
\n
\nIf you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of your participation in our survey','Dear {FIRSTNAME},
\n
\nthis email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.
\n
\nIf you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.
\n
\nSincerely,
\n
\n{ADMINNAME}',1,NULL,'Response submission for survey {SURVEYNAME}','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}','Response submission for survey {SURVEYNAME} with results','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}
\n
\n
\nThe following answers were given by the participant:
\n{ANSWERTABLE}',0,NULL),(2022,'en','NixOS Community Survey 2022','

Welcome to the first NixOS Community Survey!

\r\n\r\n

Please take 5-10 minutes to fill out this survey with info about yourself and how you use projects in the Nix ecosystem. We hope to use your responses to develop Nix, NixOS, and Nixpkgs to match your needs and come up with new ideas for growing the community. We\'ll publish major findings on Discourse and nixos.org. We will not collect any personal information (e.g. IP address, name, GitHub handle).

\r\n\r\n

 

\r\n','','

Thank you for participating! We\'re grateful for your time and contribution!

\r\n\r\n

Keep an eye out for the survey summary on Discourse.

\r\n','','','','','NixOS Community Survey 2022','Invitation to participate in a survey','Dear {FIRSTNAME},
\n
\nyou have been invited to participate in a survey.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}
\n
\nIf you are blacklisted but want to participate in this survey and want to receive invitations please click the following link:
\n{OPTINURL}','Reminder to participate in a survey','Dear {FIRSTNAME},
\n
\nRecently we invited you to participate in a survey.
\n
\nWe note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}','Survey registration confirmation','Dear {FIRSTNAME},
\n
\nYou, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.
\n
\nTo complete this survey, click on the following URL:
\n
\n{SURVEYURL}
\n
\nIf you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of your participation in our survey','Dear {FIRSTNAME},
\n
\nthis email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.
\n
\nIf you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.
\n
\nSincerely,
\n
\n{ADMINNAME}',1,NULL,'Response submission for survey {SURVEYNAME}','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}','Response submission for survey {SURVEYNAME} with results','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}
\n
\n
\nThe following answers were given by the participant:
\n{ANSWERTABLE}',0,NULL),(2024,'en','Nix Community Survey 2024','','

Welcome to this year\'s Nix Community Survey!

\r\n\r\n

This survey will take 5 to 10 minutes to complete. We will ask you questions about yourself and how you interact with the Nix ecosystem.

\r\n\r\n

We hope to use your responses to develop Nix, Nixpkgs, NixOS, and better serve the community.

\r\n','

Thank you for taking time to participate. Your inputs are key to improving the Nix ecosystem!

\r\n\r\n

The results and analysis will be published on Discourse.
Stay tune!

\r\n','','','','','Nix Community Survey 2024','Invitation to participate in a survey','Dear {FIRSTNAME},
\n
\nyou have been invited to participate in a survey.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}
\n
\nIf you are blacklisted but want to participate in this survey and want to receive invitations please click the following link:
\n{OPTINURL}','Reminder to participate in a survey','Dear {FIRSTNAME},
\n
\nRecently we invited you to participate in a survey.
\n
\nWe note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.
\n
\nThe survey is titled:
\n\"{SURVEYNAME}\"
\n
\n\"{SURVEYDESCRIPTION}\"
\n
\nTo participate, please click on the link below.
\n
\nSincerely,
\n
\n{ADMINNAME} ({ADMINEMAIL})
\n
\n----------------------------------------------
\nClick here to do the survey:
\n{SURVEYURL}
\n
\nIf you do not want to participate in this survey and don\'t want to receive any more invitations please click the following link:
\n{OPTOUTURL}','Survey registration confirmation','Dear {FIRSTNAME},
\n
\nYou, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.
\n
\nTo complete this survey, click on the following URL:
\n
\n{SURVEYURL}
\n
\nIf you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of your participation in our survey','Dear {FIRSTNAME},
\n
\nthis email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.
\n
\nIf you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.
\n
\nSincerely,
\n
\n{ADMINNAME}',6,NULL,'Response submission for survey {SURVEYNAME}','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}','Response submission for survey {SURVEYNAME} with results','Hello,
\n
\nA new response was submitted for your survey \'{SURVEYNAME}\'.
\n
\nClick the following link to see the individual response:
\n{VIEWRESPONSEURL}
\n
\nClick the following link to edit the individual response:
\n{EDITRESPONSEURL}
\n
\nView statistics by clicking here:
\n{STATISTICSURL}
\n
\n
\nThe following answers were given by the participant:
\n{ANSWERTABLE}',0,NULL); -/*!40000 ALTER TABLE `limesurvey_surveys_languagesettings` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_template_configuration` --- - -DROP TABLE IF EXISTS `limesurvey_template_configuration`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_template_configuration` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `template_name` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL, - `sid` int(11) DEFAULT NULL, - `gsid` int(11) DEFAULT NULL, - `uid` int(11) DEFAULT NULL, - `files_css` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `files_js` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `files_print_css` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `options` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `cssframework_name` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `cssframework_css` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `cssframework_js` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `packages_to_load` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `packages_ltr` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `packages_rtl` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `limesurvey_idx1_template_configuration` (`template_name`), - KEY `limesurvey_idx2_template_configuration` (`sid`), - KEY `limesurvey_idx3_template_configuration` (`gsid`), - KEY `limesurvey_idx4_template_configuration` (`uid`) -) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_template_configuration` --- - -LOCK TABLES `limesurvey_template_configuration` WRITE; -/*!40000 ALTER TABLE `limesurvey_template_configuration` DISABLE KEYS */; -INSERT INTO `limesurvey_template_configuration` VALUES (1,'vanilla',NULL,NULL,NULL,'{\"add\":[\"css/ajaxify.css\",\"css/theme.css\",\"css/custom.css\"]}','{\"add\":[\"scripts/theme.js\",\"scripts/ajaxify.js\",\"scripts/custom.js\"]}','{\"add\":[\"css/print_theme.css\"]}','{\"ajaxmode\":\"off\",\"brandlogo\":\"on\",\"container\":\"on\", \"hideprivacyinfo\": \"off\", \"brandlogofile\":\"./files/logo.png\",\"font\":\"noto\"}','bootstrap','{}','','{\"add\":[\"pjax\",\"font-noto\",\"moment\"]}',NULL,NULL),(2,'fruity',NULL,NULL,NULL,'{\"add\":[\"css/ajaxify.css\",\"css/animate.css\",\"css/theme.css\",\"css/custom.css\",\"css/variations/skyline_blue.css\"]}','{\"add\":[\"scripts/theme.js\",\"scripts/ajaxify.js\",\"scripts/custom.js\"]}','{\"add\":[\"css/print_theme.css\"]}','{\"ajaxmode\":\"off\",\"brandlogo\":\"on\",\"brandlogofile\":\"upload/themes/survey/generalfiles/5p0i8p7png554y2rkdwdm9ngv40dg16s-nixos-lores.png\",\"container\":\"on\",\"backgroundimage\":\"off\",\"backgroundimagefile\":null,\"animatebody\":\"off\",\"bodyanimation\":\"fadeInRight\",\"bodyanimationduration\":\"500\",\"animatequestion\":\"off\",\"questionanimation\":\"flipInX\",\"questionanimationduration\":\"500\",\"animatealert\":\"off\",\"alertanimation\":\"shake\",\"alertanimationduration\":\"500\",\"font\":\"noto\",\"bodybackgroundcolor\":\"#ffffff\",\"fontcolor\":\"#444444\",\"questionbackgroundcolor\":\"#ffffff\",\"questionborder\":\"on\",\"questioncontainershadow\":\"on\",\"checkicon\":\"f00c\",\"animatecheckbox\":\"on\",\"checkboxanimation\":\"rubberBand\",\"checkboxanimationduration\":\"500\",\"animateradio\":\"on\",\"radioanimation\":\"zoomIn\",\"radioanimationduration\":\"500\",\"zebrastriping\":\"off\",\"stickymatrixheaders\":\"off\",\"greyoutselected\":\"off\",\"hideprivacyinfo\":\"off\",\"crosshover\":\"off\",\"showpopups\":\"1\",\"fixnumauto\":\"off\"}','bootstrap','{}','','{\"add\":[\"pjax\",\"font-noto\",\"moment\"]}',NULL,NULL),(3,'bootswatch',NULL,NULL,NULL,'{\"add\":[\"css/ajaxify.css\",\"css/theme.css\",\"css/custom.css\"]}','{\"add\":[\"scripts/theme.js\",\"scripts/ajaxify.js\",\"scripts/custom.js\"]}','{\"add\":[\"css/print_theme.css\"]}','{\"ajaxmode\":\"off\",\"brandlogo\":\"on\",\"container\":\"on\",\"brandlogofile\":\"./files/logo.png\"}','bootstrap','{\"replace\":[[\"css/bootstrap.css\",\"css/variations/flatly.min.css\"]]}','','{\"add\":[\"pjax\",\"font-noto\",\"moment\"]}',NULL,NULL),(4,'fruity',556787,NULL,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL),(5,'fruity',NULL,1,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL),(6,'fruity',934921,NULL,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL),(7,'fruity',171737,NULL,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL),(8,'fruity',987549,NULL,NULL,'{\"add\":[\"css/ajaxify.css\",\"css/animate.css\",\"css/theme.css\",\"css/custom.css\",\"css/variations/black_pearl.css\"]}','inherit','inherit','{\"font\":\"inherit\",\"bodybackgroundcolor\":\"inherit\",\"fontcolor\":\"#474747\",\"questionbackgroundcolor\":\"inherit\",\"checkicon\":\"inherit\",\"backgroundimagefile\":\"inherit\",\"brandlogofile\":\"upload/themes/survey/generalfiles/5p0i8p7png554y2rkdwdm9ngv40dg16s-nixos-lores.png\",\"bodyanimation\":\"inherit\",\"bodyanimationduration\":\"inherit\",\"questionanimation\":\"inherit\",\"questionanimationduration\":\"inherit\",\"alertanimation\":\"inherit\",\"alertanimationduration\":\"inherit\",\"checkboxanimation\":\"inherit\",\"checkboxanimationduration\":\"inherit\",\"radioanimation\":\"inherit\",\"radioanimationduration\":\"inherit\",\"container\":\"inherit\",\"questionborder\":\"inherit\",\"questioncontainershadow\":\"inherit\",\"showpopups\":\"inherit\",\"fixnumauto\":\"inherit\",\"zebrastriping\":\"inherit\",\"stickymatrixheaders\":\"inherit\",\"greyoutselected\":\"inherit\",\"hideprivacyinfo\":\"inherit\",\"crosshover\":\"inherit\",\"backgroundimage\":\"inherit\",\"brandlogo\":\"on\",\"animatebody\":\"inherit\",\"animatequestion\":\"inherit\",\"animatealert\":\"inherit\",\"animatecheckbox\":\"inherit\",\"animateradio\":\"inherit\"}','inherit','inherit','inherit','inherit',NULL,NULL),(9,'fruity',2022,NULL,NULL,'{\"add\":[\"css/ajaxify.css\",\"css/animate.css\",\"css/theme.css\",\"css/custom.css\",\"css/variations/black_pearl.css\"]}','inherit','inherit','{\"font\":\"inherit\",\"bodybackgroundcolor\":\"inherit\",\"fontcolor\":\"#474747\",\"questionbackgroundcolor\":\"inherit\",\"checkicon\":\"inherit\",\"backgroundimagefile\":\"inherit\",\"brandlogofile\":\"upload/themes/survey/generalfiles/5p0i8p7png554y2rkdwdm9ngv40dg16s-nixos-lores.png\",\"bodyanimation\":\"inherit\",\"bodyanimationduration\":\"inherit\",\"questionanimation\":\"inherit\",\"questionanimationduration\":\"inherit\",\"alertanimation\":\"inherit\",\"alertanimationduration\":\"inherit\",\"checkboxanimation\":\"inherit\",\"checkboxanimationduration\":\"inherit\",\"radioanimation\":\"inherit\",\"radioanimationduration\":\"inherit\",\"container\":\"inherit\",\"questionborder\":\"inherit\",\"questioncontainershadow\":\"inherit\",\"showpopups\":\"inherit\",\"fixnumauto\":\"inherit\",\"zebrastriping\":\"inherit\",\"stickymatrixheaders\":\"inherit\",\"greyoutselected\":\"inherit\",\"hideprivacyinfo\":\"inherit\",\"crosshover\":\"inherit\",\"backgroundimage\":\"inherit\",\"brandlogo\":\"on\",\"animatebody\":\"inherit\",\"animatequestion\":\"inherit\",\"animatealert\":\"inherit\",\"animatecheckbox\":\"inherit\",\"animateradio\":\"inherit\"}','inherit','inherit','inherit','inherit',NULL,NULL),(10,'fruity',2023,NULL,NULL,'inherit','inherit','inherit','{\"font\":\"inherit\",\"bodybackgroundcolor\":\"inherit\",\"fontcolor\":\"#474747\",\"questionbackgroundcolor\":\"inherit\",\"checkicon\":\"inherit\",\"backgroundimagefile\":\"inherit\",\"brandlogofile\":\"upload\\/themes\\/survey\\/generalfiles\\/5p0i8p7png554y2rkdwdm9ngv40dg16s-nixos-lores.png\",\"bodyanimation\":\"inherit\",\"bodyanimationduration\":\"inherit\",\"questionanimation\":\"inherit\",\"questionanimationduration\":\"inherit\",\"alertanimation\":\"inherit\",\"alertanimationduration\":\"inherit\",\"checkboxanimation\":\"inherit\",\"checkboxanimationduration\":\"inherit\",\"radioanimation\":\"inherit\",\"radioanimationduration\":\"inherit\",\"container\":\"inherit\",\"questionborder\":\"inherit\",\"questioncontainershadow\":\"inherit\",\"showpopups\":\"inherit\",\"fixnumauto\":\"inherit\",\"zebrastriping\":\"inherit\",\"stickymatrixheaders\":\"inherit\",\"greyoutselected\":\"inherit\",\"hideprivacyinfo\":\"inherit\",\"crosshover\":\"inherit\",\"backgroundimage\":\"inherit\",\"brandlogo\":\"on\",\"animatebody\":\"inherit\",\"animatequestion\":\"inherit\",\"animatealert\":\"inherit\",\"animatecheckbox\":\"inherit\",\"animateradio\":\"inherit\"}','inherit','inherit','inherit','inherit',NULL,NULL),(11,'vanilla',2023,NULL,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL),(12,'vanilla',NULL,1,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL),(13,'fruity',239157,NULL,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL),(14,'fruity',346552,NULL,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL),(15,'fruity',964172,NULL,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL),(16,'fruity',248687,NULL,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL),(17,'fruity',2024,NULL,NULL,'inherit','inherit','inherit','{\"font\":\"inherit\",\"bodybackgroundcolor\":\"inherit\",\"fontcolor\":\"#474747\",\"questionbackgroundcolor\":\"inherit\",\"checkicon\":\"inherit\",\"backgroundimagefile\":\"inherit\",\"brandlogofile\":\"upload\\/themes\\/survey\\/generalfiles\\/5p0i8p7png554y2rkdwdm9ngv40dg16s-nixos-lores.png\",\"bodyanimation\":\"inherit\",\"bodyanimationduration\":\"inherit\",\"questionanimation\":\"inherit\",\"questionanimationduration\":\"inherit\",\"alertanimation\":\"inherit\",\"alertanimationduration\":\"inherit\",\"checkboxanimation\":\"inherit\",\"checkboxanimationduration\":\"inherit\",\"radioanimation\":\"inherit\",\"radioanimationduration\":\"inherit\",\"container\":\"inherit\",\"questionborder\":\"inherit\",\"questioncontainershadow\":\"inherit\",\"showpopups\":\"inherit\",\"fixnumauto\":\"inherit\",\"zebrastriping\":\"inherit\",\"stickymatrixheaders\":\"inherit\",\"greyoutselected\":\"inherit\",\"hideprivacyinfo\":\"inherit\",\"crosshover\":\"inherit\",\"backgroundimage\":\"inherit\",\"brandlogo\":\"on\",\"animatebody\":\"inherit\",\"animatequestion\":\"inherit\",\"animatealert\":\"inherit\",\"animatecheckbox\":\"inherit\",\"animateradio\":\"inherit\"}','inherit','inherit','inherit','inherit',NULL,NULL),(18,'vanilla',2024,NULL,NULL,'inherit','inherit','inherit','inherit','inherit','inherit','inherit','inherit',NULL,NULL); -/*!40000 ALTER TABLE `limesurvey_template_configuration` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_templates` --- - -DROP TABLE IF EXISTS `limesurvey_templates`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_templates` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL, - `folder` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, - `creation_date` datetime DEFAULT NULL, - `author` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `author_email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `author_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `copyright` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `license` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `version` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `api_version` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL, - `view_folder` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL, - `files_folder` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL, - `description` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `last_update` datetime DEFAULT NULL, - `owner_id` int(11) DEFAULT NULL, - `extends` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `limesurvey_idx1_templates` (`name`), - KEY `limesurvey_idx2_templates` (`title`), - KEY `limesurvey_idx3_templates` (`owner_id`), - KEY `limesurvey_idx4_templates` (`extends`) -) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_templates` --- - -LOCK TABLES `limesurvey_templates` WRITE; -/*!40000 ALTER TABLE `limesurvey_templates` DISABLE KEYS */; -INSERT INTO `limesurvey_templates` VALUES (1,'vanilla','vanilla','Vanilla Theme','2022-02-02 21:47:15','Louis Gac','louis.gac@limesurvey.org','https://www.limesurvey.org/','Copyright (C) 2007-2017 The LimeSurvey Project Team\\r\\nAll rights reserved.','License: GNU/GPL License v2 or later, see LICENSE.php\\r\\n\\r\\nLimeSurvey is free software. This version may have been modified pursuant to the GNU General Public License, and as distributed it includes or is derivative of works licensed under the GNU General Public License or other free or open source software licenses. See COPYRIGHT.php for copyright notices and details.','3.0','3.0','views','files','LimeSurvey Bootstrap Vanilla Survey Theme
A clean and simple base that can be used by developers to create their own Bootstrap based theme.',NULL,1,''),(2,'fruity','fruity','Fruity Theme','2022-02-02 21:47:15','Louis Gac','louis.gac@limesurvey.org','https://www.limesurvey.org/','Copyright (C) 2007-2017 The LimeSurvey Project Team\\r\\nAll rights reserved.','License: GNU/GPL License v2 or later, see LICENSE.php\\r\\n\\r\\nLimeSurvey is free software. This version may have been modified pursuant to the GNU General Public License, and as distributed it includes or is derivative of works licensed under the GNU General Public License or other free or open source software licenses. See COPYRIGHT.php for copyright notices and details.','3.0','3.0','views','files','LimeSurvey Fruity Theme
A fruity theme for a flexible use. This theme offers monochromes variations and many options for easy customizations.',NULL,1,'vanilla'),(3,'bootswatch','bootswatch','Bootswatch Theme','2022-02-02 21:47:15','Louis Gac','louis.gac@limesurvey.org','https://www.limesurvey.org/','Copyright (C) 2007-2017 The LimeSurvey Project Team\\r\\nAll rights reserved.','License: GNU/GPL License v2 or later, see LICENSE.php\\r\\n\\r\\nLimeSurvey is free software. This version may have been modified pursuant to the GNU General Public License, and as distributed it includes or is derivative of works licensed under the GNU General Public License or other free or open source software licenses. See COPYRIGHT.php for copyright notices and details.','3.0','3.0','views','files','LimeSurvey Bootwatch Theme
Based on BootsWatch Themes: Visit BootsWatch page ',NULL,1,'vanilla'); -/*!40000 ALTER TABLE `limesurvey_templates` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_tutorial_entries` --- - -DROP TABLE IF EXISTS `limesurvey_tutorial_entries`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_tutorial_entries` ( - `teid` int(11) NOT NULL AUTO_INCREMENT, - `ordering` int(11) DEFAULT NULL, - `title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `content` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `settings` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`teid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_tutorial_entries` --- - -LOCK TABLES `limesurvey_tutorial_entries` WRITE; -/*!40000 ALTER TABLE `limesurvey_tutorial_entries` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_tutorial_entries` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_tutorial_entry_relation` --- - -DROP TABLE IF EXISTS `limesurvey_tutorial_entry_relation`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_tutorial_entry_relation` ( - `teid` int(11) NOT NULL, - `tid` int(11) NOT NULL, - `uid` int(11) DEFAULT NULL, - `sid` int(11) DEFAULT NULL, - PRIMARY KEY (`teid`,`tid`), - KEY `limesurvey_idx1_tutorial_entry_relation` (`uid`), - KEY `limesurvey_idx2_tutorial_entry_relation` (`sid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_tutorial_entry_relation` --- - -LOCK TABLES `limesurvey_tutorial_entry_relation` WRITE; -/*!40000 ALTER TABLE `limesurvey_tutorial_entry_relation` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_tutorial_entry_relation` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_tutorials` --- - -DROP TABLE IF EXISTS `limesurvey_tutorials`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_tutorials` ( - `tid` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `title` varchar(192) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `icon` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `active` int(11) DEFAULT 0, - `settings` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `permission` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, - `permission_grade` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`tid`), - UNIQUE KEY `limesurvey_idx1_tutorials` (`name`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_tutorials` --- - -LOCK TABLES `limesurvey_tutorials` WRITE; -/*!40000 ALTER TABLE `limesurvey_tutorials` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_tutorials` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_user_groups` --- - -DROP TABLE IF EXISTS `limesurvey_user_groups`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_user_groups` ( - `ugid` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, - `description` text COLLATE utf8mb4_unicode_ci NOT NULL, - `owner_id` int(11) NOT NULL, - PRIMARY KEY (`ugid`), - UNIQUE KEY `limesurvey_idx1_user_groups` (`name`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_user_groups` --- - -LOCK TABLES `limesurvey_user_groups` WRITE; -/*!40000 ALTER TABLE `limesurvey_user_groups` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_user_groups` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_user_in_groups` --- - -DROP TABLE IF EXISTS `limesurvey_user_in_groups`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_user_in_groups` ( - `ugid` int(11) NOT NULL, - `uid` int(11) NOT NULL, - PRIMARY KEY (`ugid`,`uid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_user_in_groups` --- - -LOCK TABLES `limesurvey_user_in_groups` WRITE; -/*!40000 ALTER TABLE `limesurvey_user_in_groups` DISABLE KEYS */; -/*!40000 ALTER TABLE `limesurvey_user_in_groups` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `limesurvey_users` --- - -DROP TABLE IF EXISTS `limesurvey_users`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `limesurvey_users` ( - `uid` int(11) NOT NULL AUTO_INCREMENT, - `users_name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `password` text COLLATE utf8mb4_unicode_ci NOT NULL, - `full_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, - `parent_id` int(11) NOT NULL, - `lang` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `email` varchar(192) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `htmleditormode` varchar(7) COLLATE utf8mb4_unicode_ci DEFAULT 'default', - `templateeditormode` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', - `questionselectormode` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', - `one_time_pw` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `dateformat` int(11) NOT NULL DEFAULT 1, - `created` datetime DEFAULT NULL, - `modified` datetime DEFAULT NULL, - PRIMARY KEY (`uid`), - UNIQUE KEY `limesurvey_idx1_users` (`users_name`), - KEY `limesurvey_idx2_users` (`email`) -) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `limesurvey_users` --- - -LOCK TABLES `limesurvey_users` WRITE; -/*!40000 ALTER TABLE `limesurvey_users` DISABLE KEYS */; -INSERT INTO `limesurvey_users` VALUES (1,'admin','$2y$10$PECcneHfrMp9zI5htuHElOHvsut.tVUABmZ9YrQ2QcCG7Ja.IY7PC','admin',0,'auto','webmaster@nixos.org','default','default','default',NULL,1,NULL,'2023-05-10 21:52:36'),(10,'ron','$2y$10$zt9vzJ6ETKbULIUKokJMquZIIxQeU.7N09OSrkYojb.M3BOyOXl4a','Ron Efroni',1,'auto','ron@floxdev.com','default','default','default',NULL,1,'2023-09-22 18:37:59','2023-09-22 22:47:35'),(9,'tomberek','$2y$10$hdCjtYADf01akso6NMqRK.T0gfCKZGxlDc3I73hZu8svWPmN1QsDC','Tom Bereknyei',1,'auto','tomberek@gmail.com','default','default','default',NULL,1,'2023-09-22 18:30:47','2023-09-22 18:39:13'),(8,'andir','$2y$10$o5GDywqNYpO3Bp07J.81nO54CyO6xt12mXB5hR9tK5PbsGfQt9xMC','Andreas Rammhold',1,'auto','andreas@rammhold.de','default','default','default',NULL,1,'2023-09-09 09:50:06','2023-09-09 12:50:48'),(7,'gdesforges','$2y$10$rztO/P2S47j2qVpn64MTPerNsuhe/sVpLIhhdPEiXgiOoywwXs2iu','Guillaume Desforges',1,'auto','guillaume.desforges.pro@gmail.com','default','default','default',NULL,1,'2023-06-01 11:21:08','2023-07-11 21:12:20'),(6,'Kranzes','$2y$10$SUaUMOEs9rWU4.jlfc0Gm.iIdnU99in84/u.Bz4rSbxveSmukIhnq','Ilan Joselevich',1,'auto','personal@ilanjoselevich.com','default','default','default',NULL,1,'2023-05-10 21:56:22','2023-12-01 01:46:45'),(11,'ksaunders','$2y$10$ruGYSeo.rnvhKjBNamUHge6p0ci.psrOT1bnJyI54qXce7DkHcokO','Katherine Saunders',1,'auto','katherine@floxdev.com','default','default','default',NULL,1,'2023-09-22 22:59:26','2023-09-22 22:59:45'),(12,'fricklerhandwerk','$2y$10$6DzRxAGAoNGWrkpBf6QxU.F9/5esyc/kbMTqfh33CJgafgY1O4l1C','Valentin Gagarin',1,'auto','valentin@gagarin.work','default','default','default',NULL,1,'2024-02-13 11:27:00','2024-02-13 11:41:49'),(13,'djacu','$2y$10$Pw1CXp6MrjfS23cQ674epeiXBQVj5uUW6gIEpNq4kgERKKRJa/z62','Daniel Baker',1,'auto','daniel.n.baker@gmail.com','default','default','default',NULL,1,'2024-02-28 21:52:42','2024-02-28 21:54:23'); -/*!40000 ALTER TABLE `limesurvey_users` ENABLE KEYS */; -UNLOCK TABLES; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2024-07-15 14:02:01 diff --git a/terraform/dns.tf b/terraform/dns.tf index 06e20cb..9cf848b 100644 --- a/terraform/dns.tf +++ b/terraform/dns.tf @@ -96,16 +96,6 @@ locals { type = "AAAA" value = "2a01:4f8:162:71eb::" }, - { - hostname = "survey.nixos.org" - type = "A" - value = "54.72.253.2" - }, - { - hostname = "survey.nixos.org" - type = "AAAA" - value = "2a01:4f8:c0c:6e2c::1" - }, { hostname = "reproducible.nixos.org" type = "CNAME" @@ -302,7 +292,7 @@ locals { value = "v=DMARC1; p=none" }, { - hostname = "survey.staging.nixos.org" + hostname = "survey.nixos.org" type = "CNAME" value = "caliban.nixos.org" },